diff --git a/cri/apis/v1alpha2/api.pb.go b/cri/apis/v1alpha2/api.pb.go index 20d297cd45..29cf91ab4c 100644 --- a/cri/apis/v1alpha2/api.pb.go +++ b/cri/apis/v1alpha2/api.pb.go @@ -129,6 +129,8 @@ limitations under the License. MemoryUsage ReopenContainerLogRequest ReopenContainerLogResponse + RemoveVolumeRequest + RemoveVolumeResponse */ package v1alpha2 @@ -447,6 +449,8 @@ type Mount struct { SelinuxRelabel bool `protobuf:"varint,4,opt,name=selinux_relabel,json=selinuxRelabel,proto3" json:"selinux_relabel,omitempty"` // Requested propagation mode. Propagation MountPropagation `protobuf:"varint,5,opt,name=propagation,proto3,enum=runtime.v1alpha2.MountPropagation" json:"propagation,omitempty"` + // Name of volume + Name string `protobuf:"bytes,100,opt,name=name,proto3" json:"name,omitempty"` } func (m *Mount) Reset() { *m = Mount{} } @@ -488,6 +492,13 @@ func (m *Mount) GetPropagation() MountPropagation { return MountPropagation_PROPAGATION_PRIVATE } +func (m *Mount) GetName() string { + if m != nil { + return m.Name + } + return "" +} + // NamespaceOption provides options for Linux namespaces. type NamespaceOption struct { // Network namespace for this container/sandbox. @@ -3822,6 +3833,29 @@ func (m *ReopenContainerLogResponse) Reset() { *m = ReopenCon func (*ReopenContainerLogResponse) ProtoMessage() {} func (*ReopenContainerLogResponse) Descriptor() ([]byte, []int) { return fileDescriptorApi, []int{104} } +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"` +} + +func (m *RemoveVolumeRequest) Reset() { *m = RemoveVolumeRequest{} } +func (*RemoveVolumeRequest) ProtoMessage() {} +func (*RemoveVolumeRequest) Descriptor() ([]byte, []int) { return fileDescriptorApi, []int{105} } + +func (m *RemoveVolumeRequest) GetVolumeName() string { + if m != nil { + return m.VolumeName + } + return "" +} + +type RemoveVolumeResponse struct { +} + +func (m *RemoveVolumeResponse) Reset() { *m = RemoveVolumeResponse{} } +func (*RemoveVolumeResponse) ProtoMessage() {} +func (*RemoveVolumeResponse) Descriptor() ([]byte, []int) { return fileDescriptorApi, []int{106} } + func init() { proto.RegisterType((*VersionRequest)(nil), "runtime.v1alpha2.VersionRequest") proto.RegisterType((*VersionResponse)(nil), "runtime.v1alpha2.VersionResponse") @@ -3928,6 +3962,8 @@ 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((*RemoveVolumeRequest)(nil), "runtime.v1alpha2.RemoveVolumeRequest") + proto.RegisterType((*RemoveVolumeResponse)(nil), "runtime.v1alpha2.RemoveVolumeResponse") proto.RegisterEnum("runtime.v1alpha2.Protocol", Protocol_name, Protocol_value) proto.RegisterEnum("runtime.v1alpha2.MountPropagation", MountPropagation_name, MountPropagation_value) proto.RegisterEnum("runtime.v1alpha2.NamespaceMode", NamespaceMode_name, NamespaceMode_value) @@ -5008,6 +5044,72 @@ var _ImageService_serviceDesc = grpc.ServiceDesc{ Metadata: "api.proto", } +// Client API for VolumeService service + +type VolumeServiceClient interface { + // RemoveVolume removes the volume. + RemoveVolume(ctx context.Context, in *RemoveVolumeRequest, opts ...grpc.CallOption) (*RemoveVolumeResponse, error) +} + +type volumeServiceClient struct { + cc *grpc.ClientConn +} + +func NewVolumeServiceClient(cc *grpc.ClientConn) VolumeServiceClient { + return &volumeServiceClient{cc} +} + +func (c *volumeServiceClient) RemoveVolume(ctx context.Context, in *RemoveVolumeRequest, opts ...grpc.CallOption) (*RemoveVolumeResponse, error) { + out := new(RemoveVolumeResponse) + err := grpc.Invoke(ctx, "/runtime.v1alpha2.VolumeService/RemoveVolume", in, out, c.cc, opts...) + if err != nil { + return nil, err + } + return out, nil +} + +// Server API for VolumeService service + +type VolumeServiceServer interface { + // RemoveVolume removes the volume. + RemoveVolume(context.Context, *RemoveVolumeRequest) (*RemoveVolumeResponse, error) +} + +func RegisterVolumeServiceServer(s *grpc.Server, srv VolumeServiceServer) { + s.RegisterService(&_VolumeService_serviceDesc, srv) +} + +func _VolumeService_RemoveVolume_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) { + in := new(RemoveVolumeRequest) + if err := dec(in); err != nil { + return nil, err + } + if interceptor == nil { + return srv.(VolumeServiceServer).RemoveVolume(ctx, in) + } + info := &grpc.UnaryServerInfo{ + Server: srv, + FullMethod: "/runtime.v1alpha2.VolumeService/RemoveVolume", + } + handler := func(ctx context.Context, req interface{}) (interface{}, error) { + return srv.(VolumeServiceServer).RemoveVolume(ctx, req.(*RemoveVolumeRequest)) + } + return interceptor(ctx, in, info, handler) +} + +var _VolumeService_serviceDesc = grpc.ServiceDesc{ + ServiceName: "runtime.v1alpha2.VolumeService", + HandlerType: (*VolumeServiceServer)(nil), + Methods: []grpc.MethodDesc{ + { + MethodName: "RemoveVolume", + Handler: _VolumeService_RemoveVolume_Handler, + }, + }, + Streams: []grpc.StreamDesc{}, + Metadata: "api.proto", +} + func (m *VersionRequest) Marshal() (dAtA []byte, err error) { size := m.Size() dAtA = make([]byte, size) @@ -5228,6 +5330,14 @@ func (m *Mount) MarshalTo(dAtA []byte) (int, error) { i++ i = encodeVarintApi(dAtA, i, uint64(m.Propagation)) } + if len(m.Name) > 0 { + dAtA[i] = 0xa2 + i++ + dAtA[i] = 0x6 + i++ + i = encodeVarintApi(dAtA, i, uint64(len(m.Name))) + i += copy(dAtA[i:], m.Name) + } return i, nil } @@ -5421,7 +5531,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] @@ -5541,7 +5651,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] @@ -5558,7 +5668,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] @@ -5899,7 +6009,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] @@ -5916,7 +6026,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] @@ -5961,7 +6071,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] @@ -6035,7 +6145,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] @@ -6124,7 +6234,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] @@ -6141,7 +6251,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] @@ -6297,7 +6407,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 @@ -7028,7 +7138,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] @@ -7045,7 +7155,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] @@ -7389,7 +7499,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] @@ -7500,7 +7610,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] @@ -7517,7 +7627,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] @@ -7685,7 +7795,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] @@ -7702,7 +7812,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] @@ -7737,7 +7847,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 @@ -7825,7 +7935,7 @@ func (m *ContainerStatusResponse) MarshalTo(dAtA []byte) (int, error) { i += n46 } if len(m.Info) > 0 { - for k := range m.Info { + for k, _ := range m.Info { dAtA[i] = 0x12 i++ v := m.Info[k] @@ -8361,7 +8471,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 @@ -8487,7 +8597,7 @@ func (m *ImageStatusResponse) MarshalTo(dAtA []byte) (int, error) { i += n55 } if len(m.Info) > 0 { - for k := range m.Info { + for k, _ := range m.Info { dAtA[i] = 0x12 i++ v := m.Info[k] @@ -8906,7 +9016,7 @@ func (m *StatusResponse) MarshalTo(dAtA []byte) (int, error) { i += n62 } if len(m.Info) > 0 { - for k := range m.Info { + for k, _ := range m.Info { dAtA[i] = 0x12 i++ v := m.Info[k] @@ -9181,7 +9291,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] @@ -9262,7 +9372,7 @@ func (m *ContainerAttributes) MarshalTo(dAtA []byte) (int, error) { i += n68 } if len(m.Labels) > 0 { - for k := range m.Labels { + for k, _ := range m.Labels { dAtA[i] = 0x1a i++ v := m.Labels[k] @@ -9279,7 +9389,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] @@ -9464,6 +9574,48 @@ func (m *ReopenContainerLogResponse) MarshalTo(dAtA []byte) (int, error) { return i, nil } +func (m *RemoveVolumeRequest) 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 *RemoveVolumeRequest) MarshalTo(dAtA []byte) (int, error) { + var i int + _ = i + var l int + _ = l + if len(m.VolumeName) > 0 { + dAtA[i] = 0xa + i++ + i = encodeVarintApi(dAtA, i, uint64(len(m.VolumeName))) + i += copy(dAtA[i:], m.VolumeName) + } + return i, nil +} + +func (m *RemoveVolumeResponse) 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 *RemoveVolumeResponse) MarshalTo(dAtA []byte) (int, error) { + var i int + _ = i + var l int + _ = l + return i, nil +} + func encodeFixed64Api(dAtA []byte, offset int, v uint64) int { dAtA[offset] = uint8(v) dAtA[offset+1] = uint8(v >> 8) @@ -9586,6 +9738,10 @@ func (m *Mount) Size() (n int) { if m.Propagation != 0 { n += 1 + sovApi(uint64(m.Propagation)) } + l = len(m.Name) + if l > 0 { + n += 2 + l + sovApi(uint64(l)) + } return n } @@ -11353,6 +11509,22 @@ func (m *ReopenContainerLogResponse) Size() (n int) { return n } +func (m *RemoveVolumeRequest) Size() (n int) { + var l int + _ = l + l = len(m.VolumeName) + if l > 0 { + n += 1 + l + sovApi(uint64(l)) + } + return n +} + +func (m *RemoveVolumeResponse) Size() (n int) { + var l int + _ = l + return n +} + func sovApi(x uint64) (n int) { for { n++ @@ -11424,6 +11596,7 @@ func (this *Mount) String() string { `Readonly:` + fmt.Sprintf("%v", this.Readonly) + `,`, `SelinuxRelabel:` + fmt.Sprintf("%v", this.SelinuxRelabel) + `,`, `Propagation:` + fmt.Sprintf("%v", this.Propagation) + `,`, + `Name:` + fmt.Sprintf("%v", this.Name) + `,`, `}`, }, "") return s @@ -11472,7 +11645,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) @@ -11507,7 +11680,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) @@ -11517,7 +11690,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) @@ -11643,7 +11816,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) @@ -11653,7 +11826,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) @@ -11680,7 +11853,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) @@ -11711,7 +11884,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) @@ -11743,7 +11916,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) @@ -11753,7 +11926,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) @@ -11809,7 +11982,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) @@ -11982,7 +12155,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) @@ -11992,7 +12165,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) @@ -12118,7 +12291,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) @@ -12151,7 +12324,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) @@ -12161,7 +12334,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) @@ -12210,7 +12383,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) @@ -12220,7 +12393,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) @@ -12230,7 +12403,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) @@ -12275,7 +12448,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) @@ -12430,7 +12603,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) @@ -12477,7 +12650,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) @@ -12626,7 +12799,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) @@ -12729,7 +12902,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) @@ -12761,7 +12934,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) @@ -12771,7 +12944,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) @@ -12843,6 +13016,25 @@ func (this *ReopenContainerLogResponse) String() string { }, "") return s } +func (this *RemoveVolumeRequest) String() string { + if this == nil { + return "nil" + } + s := strings.Join([]string{`&RemoveVolumeRequest{`, + `VolumeName:` + fmt.Sprintf("%v", this.VolumeName) + `,`, + `}`, + }, "") + return s +} +func (this *RemoveVolumeResponse) String() string { + if this == nil { + return "nil" + } + s := strings.Join([]string{`&RemoveVolumeResponse{`, + `}`, + }, "") + return s +} func valueToStringApi(v interface{}) string { rv := reflect.ValueOf(v) if rv.IsNil() { @@ -13515,6 +13707,35 @@ func (m *Mount) Unmarshal(dAtA []byte) error { break } } + case 100: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field Name", 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.Name = string(dAtA[iNdEx:postIndex]) + iNdEx = postIndex default: iNdEx = preIndex skippy, err := skipApi(dAtA[iNdEx:]) @@ -28178,6 +28399,135 @@ func (m *ReopenContainerLogResponse) Unmarshal(dAtA []byte) error { } return nil } +func (m *RemoveVolumeRequest) 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: RemoveVolumeRequest: wiretype end group for non-group") + } + if fieldNum <= 0 { + return fmt.Errorf("proto: RemoveVolumeRequest: illegal tag %d (wire type %d)", fieldNum, wire) + } + switch fieldNum { + case 1: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field VolumeName", 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.VolumeName = 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 *RemoveVolumeResponse) 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: RemoveVolumeResponse: wiretype end group for non-group") + } + if fieldNum <= 0 { + return fmt.Errorf("proto: RemoveVolumeResponse: 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 skipApi(dAtA []byte) (n int, err error) { l := len(dAtA) iNdEx := 0 @@ -28286,319 +28636,323 @@ var ( func init() { proto.RegisterFile("api.proto", fileDescriptorApi) } var fileDescriptorApi = []byte{ - // 5018 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xd4, 0x5c, 0xcd, 0x73, 0x1b, 0x47, - 0x76, 0x27, 0x3e, 0x48, 0x02, 0x0f, 0x04, 0x09, 0xb6, 0x28, 0x11, 0x82, 0x2c, 0x9a, 0x1c, 0xc9, - 0xd6, 0x87, 0x2d, 0xca, 0xa2, 0x77, 0x65, 0xeb, 0x63, 0x65, 0x53, 0x24, 0x25, 0x21, 0x2b, 0x81, - 0xcc, 0x80, 0xb4, 0xec, 0xf5, 0x56, 0xcd, 0x0e, 0x31, 0x4d, 0x70, 0x4c, 0x60, 0x7a, 0x3c, 0x33, - 0x20, 0xc5, 0x1c, 0x52, 0x5b, 0x95, 0xca, 0x56, 0x2a, 0xa7, 0x9c, 0xf7, 0xb8, 0x39, 0xe4, 0x90, - 0x5b, 0xaa, 0x72, 0xca, 0x29, 0xa9, 0xad, 0xd4, 0x5e, 0xb6, 0x2a, 0xa7, 0xad, 0x7c, 0x5c, 0x62, - 0xa7, 0x72, 0xc9, 0x21, 0x95, 0x3f, 0x21, 0xd5, 0x5f, 0x83, 0xf9, 0xc4, 0x07, 0x2d, 0xaf, 0xbd, - 0x27, 0x4c, 0xbf, 0x79, 0xef, 0xf5, 0xeb, 0xee, 0x37, 0xaf, 0x5f, 0xff, 0xde, 0x0c, 0xa0, 0xa8, + // 5079 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xd4, 0x7c, 0xcd, 0x73, 0x1b, 0x47, + 0x76, 0x38, 0xf1, 0x41, 0x12, 0x78, 0x20, 0x48, 0xb0, 0x45, 0x91, 0x10, 0x64, 0xd1, 0xe2, 0x48, + 0xd6, 0xd7, 0x5a, 0x94, 0x45, 0xef, 0xca, 0xd6, 0xc7, 0xca, 0xa6, 0x48, 0x4a, 0xc2, 0x6f, 0x25, + 0x90, 0xbf, 0x01, 0x69, 0xd9, 0xeb, 0xad, 0x9a, 0x1d, 0x62, 0x9a, 0xe0, 0x98, 0xc0, 0xf4, 0x78, + 0x66, 0x40, 0x8a, 0x39, 0xa4, 0xb6, 0x2a, 0x95, 0xad, 0x54, 0x4e, 0x39, 0xef, 0x71, 0x73, 0xc8, + 0x21, 0xb7, 0x54, 0xe5, 0x94, 0x53, 0x52, 0x5b, 0xa9, 0xbd, 0x6c, 0x55, 0x4e, 0xa9, 0x7c, 0x5c, + 0x62, 0xa7, 0x72, 0xd9, 0x43, 0x2a, 0x7f, 0x42, 0xaa, 0xbf, 0x06, 0xf3, 0x89, 0x0f, 0x5a, 0x5e, + 0x3b, 0x27, 0x4c, 0xbf, 0x79, 0xef, 0xf5, 0xeb, 0xee, 0xd7, 0xaf, 0xdf, 0x47, 0x0f, 0xa0, 0xa8, 0xdb, 0xe6, 0xaa, 0xed, 0x10, 0x8f, 0xa0, 0x8a, 0xd3, 0xb3, 0x3c, 0xb3, 0x8b, 0x57, 0x8f, 0xef, - 0xe8, 0x1d, 0xfb, 0x50, 0x5f, 0xab, 0xdd, 0x6a, 0x9b, 0xde, 0x61, 0x6f, 0x7f, 0xb5, 0x45, 0xba, - 0xb7, 0xdb, 0xa4, 0x4d, 0x6e, 0x33, 0xc6, 0xfd, 0xde, 0x01, 0x6b, 0xb1, 0x06, 0xbb, 0xe2, 0x0a, - 0x94, 0x9b, 0x30, 0xfb, 0x09, 0x76, 0x5c, 0x93, 0x58, 0x2a, 0xfe, 0xb2, 0x87, 0x5d, 0x0f, 0x55, - 0x61, 0xfa, 0x98, 0x53, 0xaa, 0x99, 0xe5, 0xcc, 0xf5, 0xa2, 0x2a, 0x9b, 0xca, 0xdf, 0x64, 0x60, - 0xce, 0x67, 0x76, 0x6d, 0x62, 0xb9, 0x38, 0x9d, 0x1b, 0xad, 0xc0, 0x8c, 0x30, 0x4e, 0xb3, 0xf4, - 0x2e, 0xae, 0x66, 0xd9, 0xed, 0x92, 0xa0, 0x35, 0xf4, 0x2e, 0x46, 0xd7, 0x60, 0x4e, 0xb2, 0x48, - 0x25, 0x39, 0xc6, 0x35, 0x2b, 0xc8, 0xa2, 0x37, 0xb4, 0x0a, 0xe7, 0x24, 0xa3, 0x6e, 0x9b, 0x3e, - 0x73, 0x9e, 0x31, 0xcf, 0x8b, 0x5b, 0xeb, 0xb6, 0x29, 0xf8, 0x95, 0xcf, 0xa1, 0xb8, 0xd9, 0x68, - 0x6e, 0x10, 0xeb, 0xc0, 0x6c, 0x53, 0x13, 0x5d, 0xec, 0x50, 0x99, 0x6a, 0x66, 0x39, 0x47, 0x4d, - 0x14, 0x4d, 0x54, 0x83, 0x82, 0x8b, 0x75, 0xa7, 0x75, 0x88, 0xdd, 0x6a, 0x96, 0xdd, 0xf2, 0xdb, - 0x54, 0x8a, 0xd8, 0x9e, 0x49, 0x2c, 0xb7, 0x9a, 0xe3, 0x52, 0xa2, 0xa9, 0xfc, 0x2a, 0x03, 0xa5, - 0x1d, 0xe2, 0x78, 0x2f, 0x74, 0xdb, 0x36, 0xad, 0x36, 0xba, 0x0b, 0x05, 0x36, 0x97, 0x2d, 0xd2, - 0x61, 0x73, 0x30, 0xbb, 0x56, 0x5b, 0x8d, 0x2e, 0xcb, 0xea, 0x8e, 0xe0, 0x50, 0x7d, 0x5e, 0xf4, - 0x16, 0xcc, 0xb6, 0x88, 0xe5, 0xe9, 0xa6, 0x85, 0x1d, 0xcd, 0x26, 0x8e, 0xc7, 0xa6, 0x68, 0x52, - 0x2d, 0xfb, 0x54, 0xda, 0x0b, 0xba, 0x04, 0xc5, 0x43, 0xe2, 0x7a, 0x9c, 0x23, 0xc7, 0x38, 0x0a, - 0x94, 0xc0, 0x6e, 0x2e, 0xc2, 0x34, 0xbb, 0x69, 0xda, 0x62, 0x32, 0xa6, 0x68, 0xb3, 0x6e, 0x2b, - 0xbf, 0xcb, 0xc0, 0xe4, 0x0b, 0xd2, 0xb3, 0xbc, 0x48, 0x37, 0xba, 0x77, 0x28, 0x16, 0x2a, 0xd0, - 0x8d, 0xee, 0x1d, 0xf6, 0xbb, 0xa1, 0x1c, 0x7c, 0xad, 0x78, 0x37, 0xf4, 0x66, 0x0d, 0x0a, 0x0e, - 0xd6, 0x0d, 0x62, 0x75, 0x4e, 0x99, 0x09, 0x05, 0xd5, 0x6f, 0xd3, 0x45, 0x74, 0x71, 0xc7, 0xb4, - 0x7a, 0xaf, 0x34, 0x07, 0x77, 0xf4, 0x7d, 0xdc, 0x61, 0xa6, 0x14, 0xd4, 0x59, 0x41, 0x56, 0x39, - 0x15, 0x6d, 0x42, 0xc9, 0x76, 0x88, 0xad, 0xb7, 0x75, 0x3a, 0x8f, 0xd5, 0x49, 0x36, 0x55, 0x4a, - 0x7c, 0xaa, 0x98, 0xd9, 0x3b, 0x7d, 0x4e, 0x35, 0x28, 0xa6, 0xfc, 0x5d, 0x06, 0xe6, 0xa8, 0xf3, - 0xb8, 0xb6, 0xde, 0xc2, 0xdb, 0x6c, 0x49, 0xd0, 0x3d, 0x98, 0xb6, 0xb0, 0x77, 0x42, 0x9c, 0x23, - 0xb1, 0x00, 0x6f, 0xc6, 0xb5, 0xfa, 0x32, 0x2f, 0x88, 0x81, 0x55, 0xc9, 0x8f, 0xee, 0x40, 0xce, - 0x36, 0x0d, 0x36, 0xe0, 0x11, 0xc4, 0x28, 0x2f, 0x15, 0x31, 0xed, 0x16, 0x9b, 0x87, 0x51, 0x44, - 0x4c, 0xbb, 0xa5, 0x28, 0x00, 0x75, 0xcb, 0xbb, 0xfb, 0x83, 0x4f, 0xf4, 0x4e, 0x0f, 0xa3, 0x05, - 0x98, 0x3c, 0xa6, 0x17, 0xcc, 0xd8, 0x9c, 0xca, 0x1b, 0xca, 0x57, 0x39, 0xb8, 0xf4, 0x9c, 0xce, - 0x57, 0x53, 0xb7, 0x8c, 0x7d, 0xf2, 0xaa, 0x89, 0x5b, 0x3d, 0xc7, 0xf4, 0x4e, 0x37, 0x88, 0xe5, - 0xe1, 0x57, 0x1e, 0x6a, 0xc0, 0xbc, 0x25, 0x35, 0x6b, 0xd2, 0x35, 0xa9, 0x86, 0xd2, 0xda, 0xca, - 0x00, 0x23, 0xf8, 0x14, 0xa9, 0x15, 0x2b, 0x4c, 0x70, 0xd1, 0xb3, 0xfe, 0xba, 0x49, 0x6d, 0x59, - 0xa6, 0x2d, 0x61, 0x48, 0xcd, 0x2d, 0x66, 0x99, 0xd0, 0x25, 0x17, 0x56, 0x6a, 0x7a, 0x08, 0xf4, - 0xa9, 0xd6, 0x74, 0x57, 0xeb, 0xb9, 0xd8, 0x61, 0x13, 0x53, 0x5a, 0x7b, 0x23, 0xae, 0xa5, 0x3f, - 0x05, 0x6a, 0xd1, 0xe9, 0x59, 0xeb, 0xee, 0x9e, 0x8b, 0x1d, 0x16, 0x04, 0x84, 0x2f, 0x69, 0x0e, - 0x21, 0xde, 0x81, 0x2b, 0xfd, 0x47, 0x92, 0x55, 0x46, 0x45, 0xb7, 0xe1, 0x9c, 0xdb, 0xb3, 0xed, - 0x0e, 0xee, 0x62, 0xcb, 0xd3, 0x3b, 0x5a, 0xdb, 0x21, 0x3d, 0xdb, 0xad, 0x4e, 0x2e, 0xe7, 0xae, - 0xe7, 0x54, 0x14, 0xbc, 0xf5, 0x94, 0xdd, 0x41, 0x4b, 0x00, 0xb6, 0x63, 0x1e, 0x9b, 0x1d, 0xdc, - 0xc6, 0x46, 0x75, 0x8a, 0x29, 0x0d, 0x50, 0xd0, 0x7b, 0xb0, 0xe0, 0xe2, 0x56, 0x8b, 0x74, 0x6d, - 0xcd, 0x76, 0xc8, 0x81, 0xd9, 0xc1, 0xdc, 0xfb, 0xa7, 0x99, 0xf7, 0x23, 0x71, 0x6f, 0x87, 0xdf, - 0x62, 0xcf, 0xc1, 0x23, 0x16, 0xd3, 0xe8, 0x48, 0x59, 0xe7, 0xd5, 0xc2, 0x08, 0x43, 0x05, 0x36, - 0x54, 0x66, 0x92, 0xf2, 0xab, 0x2c, 0x9c, 0x67, 0x33, 0xb9, 0x43, 0x0c, 0xb1, 0xcc, 0x22, 0x48, - 0x5d, 0x81, 0x72, 0x8b, 0xe9, 0xd4, 0x6c, 0xdd, 0xc1, 0x96, 0x27, 0x1e, 0xd2, 0x19, 0x4e, 0xdc, - 0x61, 0x34, 0xf4, 0x29, 0x54, 0x5c, 0xe1, 0x15, 0x5a, 0x8b, 0xbb, 0x85, 0x58, 0xb3, 0x5b, 0x71, - 0x13, 0x06, 0xf8, 0x92, 0x3a, 0xe7, 0xc6, 0x9c, 0x6b, 0xda, 0x3d, 0x75, 0x5b, 0x5e, 0x87, 0x47, - 0xbb, 0xd2, 0xda, 0x0f, 0x52, 0x14, 0x46, 0x0d, 0x5f, 0x6d, 0x72, 0xb1, 0x2d, 0xcb, 0x73, 0x4e, - 0x55, 0xa9, 0xa4, 0x76, 0x1f, 0x66, 0x82, 0x37, 0x50, 0x05, 0x72, 0x47, 0xf8, 0x54, 0x0c, 0x8a, - 0x5e, 0xf6, 0x1f, 0x02, 0x1e, 0x6b, 0x78, 0xe3, 0x7e, 0xf6, 0xc3, 0x8c, 0xe2, 0x00, 0xea, 0xf7, - 0xf2, 0x02, 0x7b, 0xba, 0xa1, 0x7b, 0x3a, 0x42, 0x90, 0x67, 0xdb, 0x08, 0x57, 0xc1, 0xae, 0xa9, - 0xd6, 0x9e, 0x78, 0x78, 0x8b, 0x2a, 0xbd, 0x44, 0x6f, 0x40, 0xd1, 0x77, 0x74, 0xb1, 0x97, 0xf4, - 0x09, 0x34, 0xa6, 0xeb, 0x9e, 0x87, 0xbb, 0xb6, 0xc7, 0x5c, 0xac, 0xac, 0xca, 0xa6, 0xf2, 0xbf, - 0x79, 0xa8, 0xc4, 0xd6, 0xe4, 0x63, 0x28, 0x74, 0x45, 0xf7, 0xe2, 0x41, 0xbb, 0x9a, 0x10, 0xd8, - 0x63, 0xa6, 0xaa, 0xbe, 0x14, 0x8d, 0x9b, 0x34, 0x86, 0x06, 0xf6, 0x3f, 0xbf, 0x4d, 0x57, 0xbc, - 0x43, 0xda, 0x9a, 0x61, 0x3a, 0xb8, 0xe5, 0x11, 0xe7, 0x54, 0x98, 0x3b, 0xd3, 0x21, 0xed, 0x4d, - 0x49, 0x43, 0xf7, 0x01, 0x0c, 0xcb, 0xa5, 0x8b, 0x7d, 0x60, 0xb6, 0x99, 0xd1, 0xa5, 0xb5, 0x4b, - 0x71, 0x23, 0xfc, 0xcd, 0x4e, 0x2d, 0x1a, 0x96, 0x2b, 0xcc, 0x7f, 0x0c, 0x65, 0xba, 0x67, 0x68, - 0x5d, 0xbe, 0x4f, 0xf1, 0x27, 0xa5, 0xb4, 0x76, 0x39, 0x69, 0x0c, 0xfe, 0x6e, 0xa6, 0xce, 0xd8, - 0xfd, 0x86, 0x8b, 0x9e, 0xc0, 0x14, 0x0b, 0xde, 0x6e, 0x75, 0x8a, 0x09, 0xaf, 0x0e, 0x9a, 0x00, - 0xe1, 0x11, 0xcf, 0x99, 0x00, 0x77, 0x08, 0x21, 0x8d, 0xf6, 0xa0, 0xa4, 0x5b, 0x16, 0xf1, 0x74, - 0x1e, 0x68, 0xa6, 0x99, 0xb2, 0xf7, 0x47, 0x50, 0xb6, 0xde, 0x97, 0xe2, 0x1a, 0x83, 0x7a, 0xd0, - 0x8f, 0x60, 0x92, 0x45, 0x22, 0xf1, 0x20, 0x5e, 0x1b, 0xd1, 0x69, 0x55, 0x2e, 0x55, 0xbb, 0x07, - 0xa5, 0x80, 0xb1, 0xe3, 0x38, 0x69, 0xed, 0x11, 0x54, 0xa2, 0xa6, 0x8d, 0xe5, 0xe4, 0x2a, 0x2c, - 0xa8, 0x3d, 0xab, 0x6f, 0x98, 0xcc, 0xbe, 0xee, 0xc3, 0x94, 0x58, 0x6c, 0xee, 0x71, 0xca, 0xf0, - 0x39, 0x52, 0x85, 0x84, 0xf2, 0x23, 0x38, 0x1f, 0xd1, 0x29, 0x92, 0xb4, 0xab, 0x30, 0x6b, 0x13, - 0x43, 0x73, 0x39, 0x59, 0x33, 0x0d, 0x19, 0x5d, 0x6c, 0x9f, 0xb7, 0x6e, 0x50, 0xf1, 0xa6, 0x47, - 0xec, 0xb8, 0x4d, 0xa3, 0x89, 0x57, 0xe1, 0x42, 0x54, 0x9c, 0x77, 0xaf, 0x7c, 0x04, 0x8b, 0x2a, - 0xee, 0x92, 0x63, 0x7c, 0x56, 0xd5, 0x35, 0xa8, 0xc6, 0x15, 0x08, 0xe5, 0x9f, 0xc1, 0x62, 0x9f, - 0xda, 0xf4, 0x74, 0xaf, 0xe7, 0x8e, 0xa5, 0x5c, 0x64, 0xb0, 0xfb, 0xc4, 0xe5, 0xab, 0x54, 0x50, - 0x65, 0x53, 0xb9, 0x11, 0x54, 0xdd, 0xe0, 0x09, 0x03, 0xef, 0x01, 0xcd, 0x42, 0xd6, 0xb4, 0x85, - 0xba, 0xac, 0x69, 0x2b, 0xcf, 0xa0, 0xe8, 0xef, 0xb8, 0xe8, 0x41, 0x3f, 0x75, 0xcc, 0x8e, 0xba, - 0x3f, 0xfb, 0xd9, 0xe5, 0x6e, 0x6c, 0x87, 0x10, 0x5d, 0x3e, 0x00, 0xf0, 0x23, 0x99, 0xdc, 0xf8, - 0x2f, 0x0d, 0x50, 0xac, 0x06, 0xd8, 0x95, 0x7f, 0x0f, 0xc5, 0xb7, 0xc0, 0x20, 0x0c, 0x7f, 0x10, - 0x46, 0x28, 0xde, 0x65, 0xcf, 0x14, 0xef, 0x3e, 0x80, 0x49, 0xd7, 0xd3, 0x3d, 0x2c, 0x92, 0xa3, - 0x95, 0x41, 0xe2, 0xd4, 0x08, 0xac, 0x72, 0x7e, 0x74, 0x19, 0xa0, 0xe5, 0x60, 0xdd, 0xc3, 0x86, - 0xa6, 0xf3, 0xe0, 0x9c, 0x53, 0x8b, 0x82, 0xb2, 0xee, 0xa1, 0x8d, 0x7e, 0x82, 0x37, 0xc9, 0x0c, - 0xbb, 0x31, 0x48, 0x73, 0x68, 0xa9, 0xfa, 0xa9, 0x9e, 0x1f, 0x2c, 0xa6, 0x46, 0x0c, 0x16, 0x42, - 0x01, 0x97, 0x0a, 0x84, 0xc2, 0xe9, 0xe1, 0xa1, 0x90, 0x8b, 0x8e, 0x12, 0x0a, 0x0b, 0xc3, 0x43, - 0xa1, 0x50, 0x36, 0x30, 0x14, 0x7e, 0x97, 0xb1, 0xec, 0xdf, 0x32, 0x50, 0x8d, 0x3f, 0x83, 0x22, - 0xf6, 0xdc, 0x87, 0x29, 0x97, 0x51, 0x46, 0x09, 0x68, 0x42, 0x56, 0x48, 0xa0, 0x67, 0x90, 0x37, - 0xad, 0x03, 0xc2, 0xce, 0x66, 0x89, 0x29, 0x49, 0x5a, 0xaf, 0xab, 0x75, 0xeb, 0x80, 0xf0, 0x49, - 0x62, 0x1a, 0x6a, 0x1f, 0x40, 0xd1, 0x27, 0x8d, 0x35, 0xb6, 0x6d, 0x58, 0x88, 0xb8, 0x2c, 0xcf, - 0xe1, 0x7d, 0x4f, 0xcf, 0x8c, 0xe7, 0xe9, 0xca, 0xcf, 0xb3, 0xc1, 0x27, 0xf1, 0x89, 0xd9, 0xf1, - 0xb0, 0x13, 0x7b, 0x12, 0x1f, 0x4a, 0xed, 0xfc, 0x31, 0x7c, 0x7b, 0xa8, 0x76, 0x9e, 0x6a, 0x8a, - 0x87, 0xe9, 0xa7, 0x30, 0xcb, 0x7c, 0x4d, 0x73, 0x71, 0x87, 0xe5, 0x11, 0x22, 0xa7, 0xfb, 0xe1, - 0x20, 0x35, 0xdc, 0x12, 0xee, 0xb1, 0x4d, 0x21, 0xc7, 0x67, 0xb0, 0xdc, 0x09, 0xd2, 0x6a, 0x1f, - 0x03, 0x8a, 0x33, 0x8d, 0x35, 0xa7, 0x4d, 0x1a, 0xe2, 0xe8, 0x01, 0x36, 0x61, 0xf3, 0x3b, 0x60, - 0x66, 0x8c, 0xe2, 0x2b, 0xdc, 0x60, 0x55, 0x48, 0x28, 0xbf, 0xce, 0x01, 0xf4, 0x6f, 0xfe, 0x01, - 0xc5, 0xb6, 0x8f, 0xfd, 0xb8, 0xc2, 0xf3, 0xb3, 0xeb, 0x83, 0x14, 0x27, 0x46, 0x94, 0xed, 0x70, - 0x44, 0xe1, 0x99, 0xda, 0xad, 0x81, 0x6a, 0xbe, 0xb7, 0xb1, 0xe4, 0x39, 0x5c, 0x88, 0xfa, 0x86, - 0x08, 0x24, 0x6b, 0x30, 0x69, 0x7a, 0xb8, 0xcb, 0x41, 0x9c, 0xc4, 0x43, 0x57, 0x40, 0x88, 0xb3, - 0x2a, 0x2b, 0x50, 0xac, 0x77, 0xf5, 0x36, 0x6e, 0xda, 0xb8, 0x45, 0x3b, 0x35, 0x69, 0x43, 0x18, - 0xc2, 0x1b, 0xca, 0x1a, 0x14, 0x7e, 0x8c, 0x4f, 0xf9, 0x43, 0x3d, 0xa2, 0xa1, 0xca, 0x3f, 0x17, - 0x60, 0x91, 0xed, 0x15, 0x1b, 0x12, 0x42, 0x51, 0xb1, 0x4b, 0x7a, 0x4e, 0x0b, 0xbb, 0x6c, 0xb5, - 0xed, 0x9e, 0x66, 0x63, 0xc7, 0x24, 0x86, 0x38, 0xe1, 0x17, 0x5b, 0x76, 0x6f, 0x87, 0x11, 0xd0, - 0x25, 0xa0, 0x0d, 0xed, 0xcb, 0x1e, 0x11, 0x8e, 0x98, 0x53, 0x0b, 0x2d, 0xbb, 0xf7, 0xc7, 0xb4, - 0x2d, 0x65, 0xdd, 0x43, 0xdd, 0xc1, 0x2e, 0xf3, 0x33, 0x2e, 0xdb, 0x64, 0x04, 0x74, 0x07, 0xce, - 0x77, 0x71, 0x97, 0x38, 0xa7, 0x5a, 0xc7, 0xec, 0x9a, 0x9e, 0x66, 0x5a, 0xda, 0xfe, 0xa9, 0x87, - 0x5d, 0xe1, 0x53, 0x88, 0xdf, 0x7c, 0x4e, 0xef, 0xd5, 0xad, 0xc7, 0xf4, 0x0e, 0x52, 0xa0, 0x4c, - 0x48, 0x57, 0x73, 0x5b, 0xc4, 0xc1, 0x9a, 0x6e, 0x7c, 0xc1, 0xb6, 0xcf, 0x9c, 0x5a, 0x22, 0xa4, - 0xdb, 0xa4, 0xb4, 0x75, 0xe3, 0x0b, 0xf4, 0x26, 0x94, 0x5a, 0x76, 0xcf, 0xc5, 0x9e, 0x46, 0x7f, - 0xd8, 0xee, 0x58, 0x54, 0x81, 0x93, 0x36, 0xec, 0x9e, 0x1b, 0x60, 0xe8, 0xd2, 0xf9, 0x9f, 0x0e, - 0x32, 0xbc, 0xc0, 0x5d, 0x17, 0xbd, 0x04, 0x30, 0x4c, 0xf7, 0x48, 0x8c, 0xca, 0x60, 0xeb, 0xf3, - 0x61, 0xca, 0xf6, 0x1a, 0x9f, 0xb2, 0xd5, 0x4d, 0xd3, 0x3d, 0x62, 0x13, 0xc0, 0x5d, 0xb1, 0x68, - 0xc8, 0x36, 0x5a, 0x81, 0x99, 0xfd, 0xce, 0x91, 0x49, 0xb4, 0x13, 0x6c, 0xb6, 0x0f, 0xbd, 0x2a, - 0x66, 0xa7, 0xb6, 0x12, 0xa3, 0xbd, 0x64, 0x24, 0xd4, 0x80, 0x73, 0x41, 0x16, 0xcd, 0xc0, 0xc7, - 0x66, 0x0b, 0x57, 0x0f, 0x98, 0x11, 0x4b, 0x71, 0x23, 0xb8, 0xd8, 0x26, 0xe3, 0x52, 0xe7, 0x03, - 0x9a, 0x38, 0x09, 0x35, 0xe1, 0x3c, 0xd7, 0xc7, 0x15, 0x69, 0x0e, 0xd6, 0x0d, 0x6d, 0xdf, 0x76, - 0xab, 0x6d, 0xa6, 0x71, 0x39, 0xae, 0x71, 0xf7, 0xd0, 0x21, 0x9e, 0xd7, 0xc1, 0x42, 0x27, 0x62, - 0xe2, 0xa2, 0x81, 0x75, 0xe3, 0xb1, 0x4d, 0xf7, 0xfc, 0x0b, 0x21, 0xa5, 0x27, 0x8e, 0xe9, 0x61, - 0xa6, 0xf5, 0x70, 0x44, 0xad, 0xe7, 0x02, 0x5a, 0x5f, 0x52, 0xe9, 0x24, 0xb5, 0xcc, 0xd6, 0xfa, - 0xb6, 0xed, 0x56, 0xcd, 0x33, 0xa8, 0xa5, 0xc6, 0x52, 0x61, 0xf4, 0x12, 0x16, 0x13, 0xac, 0x65, - 0x7a, 0xbf, 0x18, 0x51, 0xef, 0x42, 0xd4, 0x5c, 0xa6, 0xf8, 0x0a, 0x94, 0x8f, 0xb0, 0x63, 0xe1, - 0x8e, 0xc6, 0x5d, 0xb5, 0x7a, 0xc4, 0xbc, 0x71, 0x86, 0x13, 0x5f, 0x30, 0x1a, 0xba, 0x05, 0xc2, - 0x91, 0x35, 0x07, 0xbb, 0xd8, 0x39, 0xe6, 0x68, 0x61, 0x87, 0x71, 0xce, 0xf3, 0x3b, 0x6a, 0xff, - 0x06, 0xaa, 0x83, 0x20, 0x6a, 0xee, 0x09, 0x3b, 0xb5, 0x62, 0xd7, 0xad, 0x76, 0x47, 0xc0, 0x65, - 0x2a, 0x5c, 0xac, 0xe9, 0x4b, 0xa1, 0x35, 0x98, 0xee, 0xb1, 0x27, 0xcb, 0xad, 0x5a, 0x6c, 0x9c, - 0xd5, 0xb8, 0x82, 0x3d, 0xc6, 0xa0, 0x4a, 0xc6, 0xda, 0x43, 0x98, 0x0d, 0xbb, 0xef, 0x58, 0xd1, - 0xee, 0x3e, 0xcc, 0x84, 0x9c, 0x0f, 0x41, 0x3e, 0x80, 0xd0, 0xb2, 0x6b, 0x74, 0x01, 0xa6, 0x38, - 0x0f, 0x13, 0x2f, 0xab, 0xa2, 0xa5, 0x7c, 0x08, 0xb3, 0xe1, 0x49, 0x4f, 0x94, 0x46, 0x90, 0x77, - 0x64, 0x22, 0x91, 0x57, 0xd9, 0xb5, 0xb2, 0x09, 0x53, 0x7c, 0x18, 0x89, 0xa0, 0x0a, 0x82, 0xfc, - 0xa1, 0xee, 0x18, 0x22, 0x38, 0xb1, 0x6b, 0x4a, 0x73, 0xc9, 0x81, 0x27, 0x42, 0x12, 0xbb, 0x56, - 0x74, 0x28, 0x87, 0x60, 0x41, 0xca, 0xc4, 0xf0, 0x3f, 0xa1, 0x8c, 0x5e, 0xb3, 0xee, 0x49, 0x47, - 0x8e, 0x9c, 0x5d, 0x53, 0x9a, 0x77, 0x6a, 0x4b, 0x78, 0x86, 0x5d, 0xd3, 0x29, 0xea, 0xe0, 0x63, - 0x01, 0x1d, 0x17, 0x55, 0xde, 0x50, 0x0c, 0x80, 0x0d, 0xdd, 0xd6, 0xf7, 0xcd, 0x8e, 0xe9, 0x9d, - 0xa2, 0x1b, 0x50, 0xd1, 0x0d, 0x43, 0x6b, 0x49, 0x8a, 0x89, 0x25, 0xa0, 0x3f, 0xa7, 0x1b, 0xc6, - 0x46, 0x80, 0x8c, 0xde, 0x81, 0x79, 0xc3, 0x21, 0x76, 0x98, 0x97, 0x23, 0xfc, 0x15, 0x7a, 0x23, - 0xc8, 0xac, 0xfc, 0x72, 0x12, 0x2e, 0x87, 0x43, 0x53, 0x14, 0x7a, 0xfd, 0x18, 0x66, 0x22, 0xbd, - 0xa6, 0xb8, 0x57, 0xdf, 0x5a, 0x35, 0x24, 0x11, 0x81, 0x22, 0xb3, 0x31, 0x28, 0x32, 0x11, 0xdc, - 0xcd, 0xbd, 0x56, 0x70, 0x37, 0xff, 0x5a, 0xc0, 0xdd, 0xc9, 0xf1, 0xc0, 0xdd, 0xb7, 0x59, 0x85, - 0x47, 0x4a, 0x33, 0x5f, 0xe3, 0xfb, 0x4b, 0xd9, 0xe7, 0xb1, 0x64, 0x25, 0x28, 0x02, 0x02, 0x4f, - 0x8f, 0x03, 0x02, 0x17, 0x52, 0x41, 0x60, 0xea, 0x35, 0xb6, 0xad, 0x3b, 0x5d, 0xe2, 0x48, 0x94, - 0xb7, 0x5a, 0x64, 0x26, 0xcc, 0x49, 0xba, 0x40, 0x78, 0x53, 0xf1, 0x60, 0x48, 0xc5, 0x83, 0x97, - 0x61, 0xc6, 0x22, 0x9a, 0x85, 0x4f, 0x34, 0xba, 0x96, 0x6e, 0xb5, 0xc4, 0x17, 0xd6, 0x22, 0x0d, - 0x7c, 0xb2, 0x43, 0x29, 0x31, 0xc4, 0x78, 0x66, 0x4c, 0xc4, 0xf8, 0x1f, 0x32, 0xb0, 0x10, 0x76, - 0x4e, 0x81, 0xee, 0x3d, 0x85, 0xa2, 0x23, 0x77, 0x50, 0xe1, 0x90, 0x37, 0x46, 0xde, 0x72, 0xd5, - 0xbe, 0x2c, 0xfa, 0x49, 0x2a, 0xa8, 0x7c, 0x7b, 0x98, 0xbe, 0x61, 0xb0, 0xb2, 0xd2, 0x82, 0x0b, - 0x2f, 0x4d, 0xcb, 0x20, 0x27, 0x6e, 0xd4, 0xfc, 0x7a, 0xdc, 0xfc, 0x77, 0x12, 0x36, 0xeb, 0x88, - 0x70, 0xd2, 0x00, 0x94, 0xbf, 0xcd, 0xc0, 0xc5, 0x54, 0xc6, 0x48, 0x4e, 0x95, 0x89, 0xe6, 0x54, - 0x22, 0x1f, 0x6b, 0x91, 0x9e, 0xe5, 0x05, 0xf2, 0xb1, 0x0d, 0x56, 0x3a, 0xe3, 0x89, 0x8f, 0xd6, - 0xd5, 0x5f, 0x99, 0xdd, 0x5e, 0x57, 0x44, 0x3f, 0xaa, 0xee, 0x05, 0xa7, 0x9c, 0x21, 0x23, 0x53, - 0xd6, 0x61, 0xde, 0xb7, 0x72, 0x20, 0xb8, 0x1d, 0x00, 0xab, 0xb3, 0x61, 0xb0, 0xda, 0x82, 0x29, - 0x11, 0xf1, 0x5f, 0x47, 0x6d, 0x6f, 0x19, 0x4a, 0x36, 0x76, 0xba, 0xa6, 0xeb, 0xfa, 0x41, 0xa7, - 0xa8, 0x06, 0x49, 0xca, 0x5f, 0x4c, 0xc3, 0x5c, 0x74, 0xfd, 0x3e, 0x8a, 0x61, 0xe3, 0x57, 0x12, - 0xc2, 0x61, 0x74, 0xa0, 0x81, 0xe3, 0xd4, 0x1d, 0x99, 0x8d, 0x67, 0xd3, 0x90, 0x2c, 0x3f, 0x73, - 0x17, 0xa9, 0x3a, 0x9d, 0x91, 0x16, 0xe9, 0x76, 0x75, 0xcb, 0x90, 0x25, 0x59, 0xd1, 0xa4, 0xf3, - 0xa7, 0x3b, 0x6d, 0x3a, 0xed, 0x94, 0xcc, 0xae, 0xe9, 0xe2, 0x9d, 0x10, 0xe7, 0xc8, 0xb4, 0x18, - 0xc6, 0xce, 0x02, 0x57, 0x51, 0x05, 0x41, 0xda, 0x34, 0x1d, 0xb4, 0x0a, 0x79, 0x6c, 0x1d, 0xcb, - 0xf3, 0x52, 0x42, 0xcd, 0x56, 0x9e, 0x0b, 0x54, 0xc6, 0x87, 0x6e, 0xc3, 0x54, 0x97, 0xba, 0x85, - 0x04, 0x80, 0x16, 0x53, 0x4a, 0x97, 0xaa, 0x60, 0xa3, 0xf9, 0x04, 0xcf, 0xa0, 0x24, 0xca, 0x93, - 0x90, 0x4f, 0x88, 0x7c, 0x49, 0x32, 0xa2, 0x2d, 0xff, 0x34, 0x58, 0x4c, 0x3b, 0xc6, 0x45, 0x96, - 0x22, 0xf1, 0x48, 0xb8, 0x1b, 0x3e, 0x12, 0x02, 0xd3, 0xb5, 0x36, 0x5c, 0xd7, 0x60, 0xb8, 0xfd, - 0x22, 0x14, 0x3a, 0xa4, 0xcd, 0xdd, 0xa8, 0xc4, 0xab, 0xfd, 0x1d, 0xd2, 0x66, 0x5e, 0xb4, 0x40, - 0x4f, 0xc7, 0x86, 0x69, 0xb1, 0x00, 0x57, 0x50, 0x79, 0x83, 0x3e, 0x7c, 0xec, 0x42, 0x23, 0x56, - 0x0b, 0x57, 0xcb, 0xec, 0x56, 0x91, 0x51, 0xb6, 0xad, 0x16, 0x3b, 0x6f, 0x79, 0xde, 0x69, 0x75, - 0x96, 0xd1, 0xe9, 0x25, 0x7a, 0x28, 0x31, 0xba, 0xb9, 0x34, 0xe0, 0x23, 0x29, 0x18, 0x4a, 0x88, - 0xee, 0x31, 0x4c, 0x9f, 0xf0, 0x40, 0x50, 0xad, 0x30, 0xf9, 0xeb, 0xc3, 0x43, 0x8a, 0xd0, 0x20, - 0x05, 0xe9, 0x91, 0xc3, 0xc2, 0x1e, 0x8d, 0xe7, 0x84, 0x46, 0xb2, 0xaa, 0xc1, 0x0f, 0x4c, 0x16, - 0xf6, 0x76, 0x04, 0xe9, 0xbb, 0x3c, 0x1e, 0xff, 0x3a, 0x03, 0x17, 0x36, 0x18, 0x74, 0x10, 0x08, - 0x75, 0xe3, 0xa0, 0xdd, 0xf7, 0xfc, 0xfa, 0x42, 0x2a, 0x34, 0x1d, 0x9d, 0x1a, 0x21, 0x80, 0xea, - 0x30, 0x2b, 0x95, 0x0b, 0x15, 0xb9, 0x91, 0x4b, 0x14, 0x65, 0x37, 0xd8, 0x54, 0x1e, 0xc2, 0x62, - 0x6c, 0x14, 0xe2, 0x98, 0xbf, 0x02, 0x33, 0xfd, 0x90, 0xe6, 0x0f, 0xa2, 0xe4, 0xd3, 0xea, 0x86, - 0x72, 0x1f, 0xce, 0x37, 0x3d, 0xdd, 0xf1, 0x62, 0x53, 0x30, 0x82, 0x2c, 0xab, 0x52, 0x84, 0x65, - 0x45, 0x21, 0xa1, 0x09, 0x0b, 0x4d, 0x8f, 0xd8, 0x67, 0x50, 0x4a, 0x03, 0x13, 0x1d, 0x3f, 0xe9, - 0xc9, 0x2d, 0x44, 0x36, 0x95, 0x45, 0x5e, 0x53, 0x89, 0xf7, 0xf6, 0x00, 0x2e, 0xf0, 0x92, 0xc6, - 0x59, 0x06, 0x71, 0x51, 0x16, 0x54, 0xe2, 0x7a, 0x5f, 0xc0, 0xb9, 0xfe, 0xf6, 0xdc, 0x87, 0x2b, - 0xef, 0x86, 0xe1, 0xca, 0xe5, 0x01, 0xab, 0x1e, 0x42, 0x2b, 0xff, 0x3a, 0x1b, 0x08, 0xfd, 0x29, - 0x60, 0xe5, 0x83, 0x30, 0x58, 0xf9, 0xd6, 0x30, 0xdd, 0x21, 0xac, 0x32, 0xee, 0xb5, 0xb9, 0x04, - 0xaf, 0xfd, 0x3c, 0x86, 0x68, 0xe6, 0xd3, 0x20, 0xe1, 0x88, 0xb5, 0xbf, 0x17, 0x40, 0x53, 0xe5, - 0x80, 0xa6, 0xdf, 0xb5, 0x5f, 0x81, 0xba, 0x17, 0x01, 0x34, 0x57, 0x86, 0xda, 0xeb, 0xe3, 0x99, - 0x7f, 0x9f, 0x87, 0xa2, 0x7f, 0x2f, 0x36, 0xe7, 0xf1, 0x69, 0xcb, 0x26, 0x4c, 0x5b, 0x70, 0x93, - 0xce, 0x7d, 0xa3, 0x4d, 0x3a, 0x3f, 0xf2, 0x26, 0x7d, 0x09, 0x8a, 0xec, 0x42, 0x73, 0xf0, 0x81, - 0xd8, 0x74, 0x0b, 0x8c, 0xa0, 0xe2, 0x83, 0xbe, 0x1b, 0x4e, 0x8d, 0xe5, 0x86, 0x11, 0x08, 0x75, - 0x3a, 0x0a, 0xa1, 0x7e, 0xe4, 0x6f, 0x9a, 0x7c, 0x9f, 0xbd, 0x36, 0x40, 0x6f, 0xe2, 0x76, 0xd9, - 0x08, 0x6f, 0x97, 0x7c, 0xeb, 0x7d, 0x77, 0x90, 0x96, 0xef, 0x2d, 0x80, 0xba, 0xc7, 0x01, 0xd4, - 0xa0, 0x2f, 0x8a, 0xc8, 0xfa, 0x00, 0xc0, 0x0f, 0x22, 0x12, 0x45, 0xbd, 0x34, 0x60, 0x8c, 0x6a, - 0x80, 0x9d, 0xaa, 0x0d, 0x2d, 0x4d, 0xbf, 0xca, 0x3a, 0x5a, 0x7c, 0x4c, 0x29, 0xb1, 0xfe, 0x77, - 0x30, 0xb5, 0x4c, 0x29, 0x4b, 0x7e, 0x14, 0x83, 0xee, 0xc7, 0xf4, 0xe2, 0xbb, 0x61, 0xe4, 0xfe, - 0x8c, 0x5e, 0x17, 0x03, 0xee, 0x59, 0x72, 0xa3, 0x3b, 0xe2, 0x36, 0x07, 0x56, 0x8b, 0x82, 0xb2, - 0xce, 0x0e, 0x0f, 0x07, 0xa6, 0x65, 0xba, 0x87, 0xfc, 0xfe, 0x14, 0x3f, 0x3c, 0x48, 0xd2, 0x3a, - 0x7b, 0xb1, 0x0f, 0xbf, 0x32, 0x3d, 0xad, 0x45, 0x0c, 0xcc, 0x7c, 0x7a, 0x52, 0x2d, 0x50, 0xc2, - 0x06, 0x31, 0x70, 0xff, 0xc9, 0x2b, 0x9c, 0xed, 0xc9, 0x2b, 0x46, 0x9e, 0xbc, 0x0b, 0x30, 0xe5, - 0x60, 0xdd, 0x25, 0x96, 0x38, 0xcd, 0x8a, 0x16, 0x5d, 0x9a, 0x2e, 0x76, 0x5d, 0xda, 0x93, 0xc8, - 0xe8, 0x44, 0x33, 0x90, 0x89, 0xce, 0x0c, 0xcd, 0x44, 0x07, 0x94, 0x3b, 0x23, 0x99, 0x68, 0x79, - 0x68, 0x26, 0x3a, 0x4a, 0xb5, 0x33, 0x90, 0x8b, 0xcf, 0x8e, 0x96, 0x8b, 0x07, 0x53, 0xd7, 0xb9, - 0x70, 0xea, 0xfa, 0x0c, 0xa6, 0x8f, 0x49, 0xa7, 0xd7, 0xc5, 0xae, 0x80, 0xae, 0x57, 0x87, 0x5b, - 0xf7, 0x09, 0x17, 0x10, 0x6f, 0x3d, 0x09, 0xf1, 0xf0, 0x99, 0x1c, 0x9f, 0xfd, 0x4c, 0xfe, 0x1d, - 0xc6, 0x8f, 0xda, 0x2e, 0xcc, 0x04, 0x07, 0x97, 0x20, 0xbb, 0x1a, 0x94, 0x4d, 0x3c, 0xd4, 0x70, - 0x05, 0xc1, 0xa8, 0x54, 0x80, 0x29, 0x4e, 0x54, 0x7e, 0x97, 0x81, 0xc5, 0x58, 0x24, 0x11, 0x11, - 0xea, 0x5e, 0xa4, 0x56, 0xbc, 0x32, 0x74, 0x21, 0xfc, 0x52, 0xf1, 0xd3, 0x50, 0xa9, 0xf8, 0xfd, - 0xe1, 0x82, 0xaf, 0xbd, 0x52, 0xfc, 0xe7, 0x19, 0x78, 0x73, 0xcf, 0x36, 0x22, 0x49, 0xad, 0x58, - 0xdb, 0xd1, 0x63, 0xe5, 0x47, 0xf2, 0x04, 0x94, 0x1d, 0xd7, 0x7f, 0xb8, 0x9c, 0xa2, 0xc0, 0x72, - 0xba, 0x19, 0x22, 0x4b, 0xfc, 0x19, 0xcc, 0x6d, 0xbd, 0xc2, 0xad, 0xe6, 0xa9, 0xd5, 0x1a, 0xc3, - 0xb4, 0x0a, 0xe4, 0x5a, 0x5d, 0x43, 0xe0, 0xa8, 0xf4, 0x32, 0x98, 0xf8, 0xe6, 0xc2, 0x89, 0xaf, - 0x06, 0x95, 0x7e, 0x0f, 0x62, 0x79, 0x2f, 0xd0, 0xe5, 0x35, 0x28, 0x33, 0x55, 0x3e, 0xa3, 0x8a, - 0x96, 0xa0, 0x63, 0xc7, 0x61, 0x63, 0xe6, 0x74, 0xec, 0x38, 0xe1, 0x00, 0x99, 0x0b, 0x07, 0x48, - 0xe5, 0x97, 0x19, 0x28, 0xd1, 0x1e, 0xbe, 0x91, 0xfd, 0xe2, 0x00, 0x9a, 0xeb, 0x1f, 0x40, 0xfd, - 0x73, 0x6c, 0x3e, 0x78, 0x8e, 0xed, 0x5b, 0x3e, 0xc9, 0xc8, 0x71, 0xcb, 0xa7, 0x7c, 0x3a, 0x76, - 0x1c, 0x65, 0x19, 0x66, 0xb8, 0x6d, 0x62, 0xe4, 0x15, 0xc8, 0xf5, 0x9c, 0x8e, 0xf4, 0xa3, 0x9e, - 0xd3, 0x51, 0xfe, 0x32, 0x03, 0xe5, 0x75, 0xcf, 0xd3, 0x5b, 0x87, 0x63, 0x0c, 0xc0, 0x37, 0x2e, - 0x1b, 0x34, 0x2e, 0x3e, 0x88, 0xbe, 0xb9, 0xf9, 0x14, 0x73, 0x27, 0x43, 0xe6, 0x2a, 0x30, 0x2b, - 0x6d, 0x49, 0x35, 0xb8, 0x01, 0x68, 0x87, 0x38, 0xde, 0x13, 0xe2, 0x9c, 0xe8, 0x8e, 0x31, 0xde, - 0xa1, 0x13, 0x41, 0x5e, 0xbc, 0xdf, 0x9e, 0xbb, 0x3e, 0xa9, 0xb2, 0x6b, 0xe5, 0x1a, 0x9c, 0x0b, - 0xe9, 0x4b, 0xed, 0xf8, 0x63, 0x28, 0xb1, 0xad, 0x4e, 0x9c, 0x3e, 0xee, 0x04, 0xab, 0xb8, 0x23, - 0x6d, 0x8c, 0xca, 0x1f, 0xc1, 0x3c, 0x4d, 0x89, 0x18, 0xdd, 0x7f, 0x14, 0x7f, 0x18, 0x49, 0xcd, - 0x2f, 0xa7, 0x28, 0x8a, 0xa4, 0xe5, 0xbf, 0xcd, 0xc2, 0x24, 0xa3, 0xc7, 0xd2, 0x94, 0x4b, 0x34, - 0xf8, 0xdb, 0x44, 0xf3, 0xf4, 0xb6, 0xff, 0x35, 0x01, 0x25, 0xec, 0xea, 0x6d, 0x86, 0x2a, 0xb0, - 0x9b, 0x86, 0xd9, 0xc6, 0xae, 0x27, 0x3f, 0x29, 0x28, 0x51, 0xda, 0x26, 0x27, 0xb1, 0x1a, 0x8b, - 0xf9, 0x27, 0x3c, 0xd5, 0xce, 0xab, 0xec, 0x1a, 0xad, 0xf2, 0x17, 0x5c, 0x47, 0x01, 0xdd, 0xd9, - 0xeb, 0xaf, 0x35, 0x28, 0x44, 0x70, 0x76, 0xbf, 0x8d, 0x1e, 0x45, 0xb7, 0xb9, 0xab, 0x29, 0x23, - 0x4e, 0xde, 0xdc, 0xbe, 0xa5, 0x8d, 0x61, 0x0b, 0x50, 0x70, 0x6d, 0x84, 0x17, 0xdc, 0x86, 0x29, - 0xb6, 0x74, 0x32, 0x4d, 0x5d, 0x4c, 0x31, 0x55, 0x15, 0x6c, 0x8a, 0x0e, 0x88, 0x2f, 0x7b, 0x28, - 0x35, 0x1d, 0xdf, 0x57, 0x06, 0xa4, 0xaa, 0xff, 0x94, 0x81, 0x73, 0xa1, 0x3e, 0x84, 0xad, 0xb7, - 0xc2, 0x9d, 0xa4, 0x9a, 0x2a, 0x3a, 0xd8, 0x08, 0x6d, 0x54, 0xb7, 0xd3, 0x4c, 0xfa, 0x96, 0x36, - 0xa9, 0xdf, 0x66, 0x00, 0xd6, 0x7b, 0xde, 0xa1, 0x40, 0x71, 0x83, 0xfe, 0x92, 0x89, 0xf8, 0x4b, - 0x0d, 0x0a, 0xb6, 0xee, 0xba, 0x27, 0xc4, 0x91, 0x87, 0x4b, 0xbf, 0xcd, 0xf0, 0xd6, 0x9e, 0x77, - 0x28, 0x4b, 0x78, 0xf4, 0x1a, 0xbd, 0x05, 0xb3, 0xfc, 0xbb, 0x1a, 0x4d, 0x37, 0x0c, 0x07, 0xbb, - 0xae, 0xa8, 0xe5, 0x95, 0x39, 0x75, 0x9d, 0x13, 0x29, 0x9b, 0x69, 0x60, 0xcb, 0x33, 0xbd, 0x53, - 0xcd, 0x23, 0x47, 0xd8, 0x12, 0x87, 0xc4, 0xb2, 0xa4, 0xee, 0x52, 0x22, 0x65, 0x73, 0x70, 0xdb, - 0x74, 0x3d, 0x47, 0xb2, 0xc9, 0xba, 0x91, 0xa0, 0x32, 0x36, 0xba, 0x28, 0x95, 0x9d, 0x5e, 0xa7, - 0xc3, 0xa7, 0xf8, 0xec, 0xcb, 0xfe, 0x9e, 0x18, 0x50, 0x36, 0xed, 0x49, 0xeb, 0x4f, 0x9a, 0x18, - 0xee, 0x6b, 0x44, 0xc3, 0xde, 0x83, 0xf9, 0xc0, 0x18, 0x84, 0x5b, 0x85, 0xb2, 0xf9, 0x4c, 0x38, - 0x9b, 0x57, 0x9e, 0x02, 0xe2, 0x00, 0xd0, 0x37, 0x1c, 0xb7, 0x72, 0x1e, 0xce, 0x85, 0x14, 0x89, - 0xfc, 0xe0, 0x26, 0x94, 0xc5, 0x4b, 0x94, 0xc2, 0x51, 0x2e, 0x42, 0x81, 0xc6, 0xf9, 0x96, 0x69, - 0xc8, 0xfa, 0xee, 0xb4, 0x4d, 0x8c, 0x0d, 0xd3, 0x70, 0x94, 0x97, 0x50, 0x56, 0x79, 0x3f, 0x82, - 0xf7, 0x09, 0xcc, 0x8a, 0x57, 0x2e, 0xb5, 0xd0, 0xab, 0xcc, 0x49, 0x9f, 0xca, 0x04, 0x3b, 0x51, - 0xcb, 0x56, 0xb0, 0xa9, 0x18, 0x50, 0xe3, 0x89, 0x4c, 0x48, 0xbd, 0x1c, 0xec, 0x13, 0x90, 0x1f, - 0x89, 0x0d, 0xed, 0x25, 0x2c, 0x5f, 0x76, 0x82, 0x4d, 0xe5, 0x32, 0x5c, 0x4a, 0xec, 0x45, 0xcc, - 0x84, 0x0d, 0x95, 0xfe, 0x0d, 0xc3, 0x94, 0x85, 0x6e, 0x56, 0xc0, 0xce, 0x04, 0x0a, 0xd8, 0x17, - 0xfc, 0xd4, 0x35, 0x2b, 0xb7, 0x56, 0x96, 0x97, 0xf6, 0xcf, 0x5d, 0xb9, 0xb4, 0x73, 0x57, 0x3e, - 0x74, 0xee, 0x52, 0x9a, 0xfe, 0x7c, 0x8a, 0xf3, 0xf0, 0x63, 0x76, 0x6e, 0xe7, 0x7d, 0xcb, 0x80, - 0xa8, 0x0c, 0x1a, 0x25, 0x67, 0x55, 0x03, 0x52, 0xca, 0x0d, 0x28, 0x87, 0x43, 0x63, 0x20, 0xce, - 0x65, 0x62, 0x71, 0x6e, 0x36, 0x12, 0xe2, 0x3e, 0x88, 0xe4, 0xe5, 0xe9, 0x73, 0x1c, 0xc9, 0xca, - 0x1f, 0x85, 0x82, 0xdd, 0xcd, 0x84, 0xda, 0xf3, 0xb7, 0x14, 0xe7, 0x16, 0xc4, 0x7e, 0xf0, 0xc4, - 0xa5, 0xf2, 0x62, 0xd0, 0xca, 0x15, 0x28, 0xed, 0xa5, 0x7d, 0x87, 0x95, 0x97, 0x2f, 0x77, 0xdd, - 0x85, 0x85, 0x27, 0x66, 0x07, 0xbb, 0xa7, 0xae, 0x87, 0xbb, 0x75, 0x16, 0x94, 0x0e, 0x4c, 0xec, - 0xa0, 0x25, 0x00, 0x76, 0x96, 0xb4, 0x89, 0xe9, 0x7f, 0x9e, 0x13, 0xa0, 0x28, 0xff, 0x93, 0x81, - 0xb9, 0xbe, 0xe0, 0x1e, 0x3b, 0x43, 0xbf, 0x01, 0x45, 0x3a, 0x5e, 0xd7, 0xd3, 0xbb, 0xb6, 0xac, - 0x3d, 0xfa, 0x04, 0xf4, 0x00, 0x26, 0x0f, 0x5c, 0x89, 0xdd, 0x25, 0x16, 0x3b, 0x92, 0x0c, 0x51, - 0xf3, 0x07, 0x6e, 0xdd, 0x40, 0x0f, 0x01, 0x7a, 0x2e, 0x36, 0x44, 0xbd, 0x31, 0x97, 0x96, 0xc3, - 0xec, 0x05, 0xeb, 0xf2, 0x54, 0x80, 0xbf, 0x17, 0xf6, 0x08, 0x4a, 0xa6, 0x45, 0x0c, 0xcc, 0xea, - 0xf2, 0x86, 0x80, 0xf7, 0x86, 0x88, 0x03, 0x97, 0xd8, 0x73, 0xb1, 0xa1, 0x60, 0xb1, 0x17, 0xca, - 0xf9, 0x15, 0x8e, 0xd2, 0x80, 0x79, 0x1e, 0xb4, 0x0e, 0x7c, 0xc3, 0xa5, 0xc7, 0xae, 0x0c, 0x1a, - 0x1d, 0x9b, 0x2d, 0xb5, 0x62, 0x8a, 0x84, 0x4b, 0x8a, 0x2a, 0xf7, 0xe1, 0x7c, 0xe8, 0xdc, 0x36, - 0xc6, 0x41, 0x4a, 0xd9, 0x89, 0x20, 0x56, 0x7d, 0x77, 0x16, 0x78, 0x90, 0xf4, 0xe6, 0x61, 0x78, - 0x90, 0xcb, 0xf1, 0x20, 0x57, 0xf9, 0x1c, 0x2e, 0x86, 0xa0, 0xb5, 0x90, 0x45, 0x8f, 0x22, 0xf9, - 0xe4, 0xdb, 0xc3, 0xb4, 0x46, 0x12, 0xcb, 0xff, 0xcb, 0xc0, 0x42, 0x12, 0xc3, 0x19, 0xa1, 0xdf, - 0x9f, 0xa5, 0xbc, 0x03, 0x7c, 0x6f, 0x34, 0xb3, 0x7e, 0x2f, 0xb0, 0xf9, 0x2e, 0xd4, 0x92, 0xe6, - 0x33, 0xbe, 0x4a, 0xb9, 0x71, 0x56, 0xe9, 0x17, 0xb9, 0x40, 0x09, 0x64, 0xdd, 0xf3, 0x1c, 0x73, - 0xbf, 0x47, 0x5d, 0xfe, 0xb5, 0xc3, 0x8a, 0x75, 0x1f, 0x20, 0xe3, 0x53, 0x7b, 0x67, 0x80, 0x78, - 0xdf, 0x8e, 0x44, 0x90, 0xec, 0xd3, 0x30, 0x48, 0xc6, 0x8b, 0x1b, 0x77, 0x47, 0xd3, 0xf7, 0xbd, - 0x45, 0xa2, 0x7f, 0x91, 0x85, 0xd9, 0xf0, 0x12, 0xa1, 0x2d, 0x00, 0xdd, 0xb7, 0x5c, 0x3c, 0x28, - 0x6f, 0x8d, 0x34, 0x4c, 0x35, 0x20, 0x88, 0xde, 0x85, 0x5c, 0xcb, 0xee, 0x89, 0x55, 0x4b, 0x28, - 0xdc, 0x6f, 0xd8, 0x3d, 0x1e, 0x51, 0x28, 0x1b, 0x3d, 0xe9, 0x89, 0xd7, 0x0d, 0x53, 0xa3, 0x24, - 0x7f, 0xf5, 0x90, 0xcb, 0x08, 0x66, 0xf4, 0x0c, 0x66, 0x4f, 0x1c, 0xd3, 0xd3, 0xf7, 0x3b, 0x58, - 0xeb, 0xe8, 0xa7, 0xd8, 0x11, 0x51, 0x72, 0x84, 0x40, 0x56, 0x96, 0x82, 0xcf, 0xa9, 0x9c, 0xf2, - 0xa7, 0x50, 0x90, 0x16, 0x0d, 0xd9, 0x11, 0x76, 0x61, 0xb1, 0x47, 0xd9, 0x34, 0xf6, 0xbe, 0xae, - 0xa5, 0x5b, 0x44, 0x73, 0x31, 0xdd, 0xc6, 0xe5, 0x97, 0x44, 0x43, 0x42, 0xf4, 0x02, 0x93, 0xde, - 0x20, 0x0e, 0x6e, 0xe8, 0x16, 0x69, 0x72, 0x51, 0xe5, 0x18, 0x4a, 0x81, 0x01, 0x0e, 0x31, 0xa1, - 0x0e, 0xf3, 0xf2, 0xb5, 0x09, 0x17, 0x7b, 0x62, 0x7b, 0x19, 0xa9, 0xf3, 0x39, 0x21, 0xd7, 0xc4, - 0x1e, 0x7f, 0xd5, 0xe5, 0x11, 0x5c, 0x54, 0x31, 0xb1, 0xb1, 0xe5, 0xaf, 0xe7, 0x73, 0xd2, 0x1e, - 0x23, 0x82, 0xbf, 0x01, 0xb5, 0x24, 0x79, 0x1e, 0x1f, 0x6e, 0xbe, 0x01, 0x05, 0xf9, 0x51, 0x3d, - 0x9a, 0x86, 0xdc, 0xee, 0xc6, 0x4e, 0x65, 0x82, 0x5e, 0xec, 0x6d, 0xee, 0x54, 0x32, 0x37, 0xbb, - 0x50, 0x89, 0x7e, 0x47, 0x8e, 0x16, 0xe1, 0xdc, 0x8e, 0xba, 0xbd, 0xb3, 0xfe, 0x74, 0x7d, 0xb7, - 0xbe, 0xdd, 0xd0, 0x76, 0xd4, 0xfa, 0x27, 0xeb, 0xbb, 0x5b, 0x95, 0x09, 0xb4, 0x02, 0x97, 0x83, - 0x37, 0x9e, 0x6d, 0x37, 0x77, 0xb5, 0xdd, 0x6d, 0x6d, 0x63, 0xbb, 0xb1, 0xbb, 0x5e, 0x6f, 0x6c, - 0xa9, 0x95, 0x0c, 0xba, 0x0c, 0x17, 0x83, 0x2c, 0x8f, 0xeb, 0x9b, 0x75, 0x75, 0x6b, 0x83, 0x5e, - 0xaf, 0x3f, 0xaf, 0x64, 0x6f, 0xde, 0x81, 0x72, 0xe8, 0xb3, 0x6f, 0x6a, 0xc8, 0xce, 0xf6, 0x66, - 0x65, 0x02, 0x95, 0xa1, 0x18, 0xd4, 0x53, 0x80, 0x7c, 0x63, 0x7b, 0x73, 0xab, 0x92, 0xbd, 0x79, - 0x1f, 0xe6, 0x22, 0x1f, 0x0c, 0xa0, 0x79, 0x28, 0x37, 0xd7, 0x1b, 0x9b, 0x8f, 0xb7, 0x3f, 0xd5, - 0xd4, 0xad, 0xf5, 0xcd, 0xcf, 0x2a, 0x13, 0x68, 0x01, 0x2a, 0x92, 0xd4, 0xd8, 0xde, 0xe5, 0xd4, - 0xcc, 0xcd, 0xa3, 0xc8, 0x93, 0x85, 0xd1, 0x79, 0x98, 0xf7, 0xbb, 0xd1, 0x36, 0xd4, 0xad, 0xf5, - 0xdd, 0x2d, 0xda, 0x7b, 0x88, 0xac, 0xee, 0x35, 0x1a, 0xf5, 0xc6, 0xd3, 0x4a, 0x86, 0x6a, 0xed, - 0x93, 0xb7, 0x3e, 0xad, 0x53, 0xe6, 0x6c, 0x98, 0x79, 0xaf, 0xf1, 0xe3, 0xc6, 0xf6, 0xcb, 0x46, - 0x25, 0xb7, 0xf6, 0x8f, 0xf3, 0x30, 0x2b, 0xd3, 0x3b, 0xec, 0xb0, 0xf7, 0x8e, 0x76, 0x60, 0x5a, - 0xfe, 0x35, 0x43, 0x42, 0x5c, 0x0e, 0xff, 0xa1, 0x44, 0x6d, 0x65, 0x00, 0x87, 0xc8, 0xb2, 0x27, - 0xd0, 0x3e, 0xcb, 0x7a, 0x03, 0x1f, 0x70, 0xbc, 0x9d, 0x98, 0x63, 0xc6, 0xbe, 0x19, 0xa9, 0x5d, - 0x1b, 0xca, 0xe7, 0xf7, 0x81, 0x69, 0x62, 0x1b, 0xfc, 0x42, 0x11, 0x5d, 0x4b, 0xca, 0x48, 0x13, - 0x3e, 0x81, 0xac, 0x5d, 0x1f, 0xce, 0xe8, 0x77, 0x73, 0x04, 0x95, 0xe8, 0xd7, 0x8a, 0x28, 0x01, - 0xc6, 0x4d, 0xf9, 0x24, 0xb2, 0x76, 0x73, 0x14, 0xd6, 0x60, 0x67, 0xb1, 0xef, 0xfa, 0x6e, 0x8c, - 0xf2, 0xa1, 0x54, 0x6a, 0x67, 0x69, 0xdf, 0x54, 0xf1, 0x09, 0x0c, 0x7f, 0x9c, 0x81, 0x12, 0x3f, - 0xa2, 0x4b, 0xf8, 0xb4, 0x27, 0x69, 0x02, 0x93, 0xbf, 0xf3, 0x50, 0x26, 0xd0, 0x21, 0xcc, 0x45, - 0xde, 0x0e, 0x41, 0x09, 0xe2, 0xc9, 0xaf, 0xc1, 0xd4, 0x6e, 0x8c, 0xc0, 0x19, 0xf6, 0x88, 0xe0, - 0xdb, 0x20, 0xc9, 0x1e, 0x91, 0xf0, 0xae, 0x49, 0xb2, 0x47, 0x24, 0xbe, 0x58, 0xc2, 0x9c, 0x3b, - 0xf4, 0x16, 0x48, 0x92, 0x73, 0x27, 0xbd, 0x7b, 0x52, 0xbb, 0x36, 0x94, 0x2f, 0x38, 0x69, 0x91, - 0x77, 0x42, 0x92, 0x26, 0x2d, 0xf9, 0x9d, 0x93, 0xda, 0x8d, 0x11, 0x38, 0xa3, 0x5e, 0xd0, 0xaf, - 0x30, 0xa7, 0x79, 0x41, 0xec, 0x7d, 0x88, 0x34, 0x2f, 0x88, 0x17, 0xab, 0x85, 0x17, 0x44, 0x2a, - 0xc3, 0xd7, 0x47, 0x28, 0xeb, 0xa4, 0x7b, 0x41, 0x72, 0x01, 0x48, 0x99, 0x40, 0x7f, 0x96, 0x81, - 0x6a, 0x5a, 0xc9, 0x04, 0x25, 0x64, 0x75, 0x43, 0xaa, 0x3c, 0xb5, 0xb5, 0x71, 0x44, 0x7c, 0x2b, - 0xbe, 0x04, 0x14, 0xdf, 0xed, 0xd0, 0x3b, 0x49, 0x2b, 0x93, 0xb2, 0xa7, 0xd6, 0xde, 0x1d, 0x8d, - 0xd9, 0xef, 0xb2, 0x09, 0x05, 0x59, 0xa4, 0x41, 0x09, 0x51, 0x3a, 0x52, 0x22, 0xaa, 0x29, 0x83, - 0x58, 0x7c, 0xa5, 0x4f, 0x21, 0x4f, 0xa9, 0xe8, 0x72, 0x32, 0xb7, 0x54, 0xb6, 0x94, 0x76, 0xdb, - 0x57, 0xf4, 0x02, 0xa6, 0x78, 0x55, 0x02, 0x25, 0xe0, 0x0d, 0xa1, 0xda, 0x49, 0x6d, 0x39, 0x9d, - 0xc1, 0x57, 0xf7, 0x53, 0xfe, 0xaf, 0x3d, 0xa2, 0xe0, 0x80, 0xae, 0x26, 0xff, 0x0d, 0x42, 0xb8, - 0xbe, 0x51, 0x7b, 0x6b, 0x08, 0x57, 0xf0, 0xa1, 0x88, 0xe4, 0xba, 0xd7, 0x86, 0x1e, 0x58, 0xd2, - 0x1f, 0x8a, 0xe4, 0x23, 0x11, 0x77, 0x92, 0xf8, 0x91, 0x29, 0xc9, 0x49, 0x52, 0x0f, 0xaa, 0x49, - 0x4e, 0x92, 0x7e, 0x0a, 0x53, 0x26, 0x90, 0x07, 0xe7, 0x12, 0x00, 0x32, 0xf4, 0x6e, 0x9a, 0x93, - 0x27, 0xa1, 0x75, 0xb5, 0x5b, 0x23, 0x72, 0x07, 0x17, 0x5f, 0x3c, 0xf4, 0x6f, 0xa6, 0xa3, 0x46, - 0xa9, 0x8b, 0x1f, 0x7d, 0xc4, 0xd7, 0xfe, 0x23, 0x07, 0x33, 0x1c, 0xfc, 0x14, 0x19, 0xcc, 0x67, - 0x00, 0xfd, 0xba, 0x03, 0xba, 0x92, 0x3c, 0x27, 0xa1, 0x8a, 0x51, 0xed, 0xea, 0x60, 0xa6, 0xa0, - 0xa3, 0x05, 0x30, 0x7c, 0x74, 0x75, 0x08, 0xc4, 0x9f, 0xea, 0x68, 0x09, 0x85, 0x00, 0x65, 0x02, - 0x7d, 0x02, 0x45, 0x1f, 0x2c, 0x46, 0x49, 0x60, 0x73, 0x04, 0x0d, 0xaf, 0x5d, 0x19, 0xc8, 0x13, - 0xb4, 0x3a, 0x80, 0x04, 0x27, 0x59, 0x1d, 0x47, 0x9c, 0x93, 0xac, 0x4e, 0x82, 0x93, 0xfb, 0x73, - 0xc2, 0xf1, 0xa2, 0xd4, 0x39, 0x09, 0xc1, 0x75, 0xa9, 0x73, 0x12, 0x06, 0x9d, 0x94, 0x89, 0xc7, - 0x6f, 0xff, 0xe6, 0xab, 0xa5, 0xcc, 0xbf, 0x7e, 0xb5, 0x34, 0xf1, 0xf3, 0xaf, 0x97, 0x32, 0xbf, - 0xf9, 0x7a, 0x29, 0xf3, 0x2f, 0x5f, 0x2f, 0x65, 0xfe, 0xf3, 0xeb, 0xa5, 0xcc, 0x5f, 0xfd, 0xd7, - 0xd2, 0xc4, 0x4f, 0x0a, 0x52, 0x7a, 0x7f, 0x8a, 0xfd, 0xf7, 0xd6, 0xfb, 0xff, 0x1f, 0x00, 0x00, - 0xff, 0xff, 0xd7, 0x63, 0x0a, 0xee, 0x41, 0x4d, 0x00, 0x00, + 0xea, 0x1d, 0xfb, 0x50, 0x5f, 0xab, 0xdd, 0x6e, 0x9b, 0xde, 0x61, 0x6f, 0x7f, 0xb5, 0x45, 0xba, + 0x77, 0xda, 0xa4, 0x4d, 0xee, 0x30, 0xc4, 0xfd, 0xde, 0x01, 0x6b, 0xb1, 0x06, 0x7b, 0xe2, 0x0c, + 0x94, 0x5b, 0x30, 0xfb, 0x09, 0x76, 0x5c, 0x93, 0x58, 0x2a, 0xfe, 0xb2, 0x87, 0x5d, 0x0f, 0x55, + 0x61, 0xfa, 0x98, 0x43, 0xaa, 0x99, 0xcb, 0x99, 0x1b, 0x45, 0x55, 0x36, 0x95, 0xbf, 0xca, 0xc0, + 0x9c, 0x8f, 0xec, 0xda, 0xc4, 0x72, 0x71, 0x3a, 0x36, 0x5a, 0x81, 0x19, 0x21, 0x9c, 0x66, 0xe9, + 0x5d, 0x5c, 0xcd, 0xb2, 0xd7, 0x25, 0x01, 0x6b, 0xe8, 0x5d, 0x8c, 0xae, 0xc3, 0x9c, 0x44, 0x91, + 0x4c, 0x72, 0x0c, 0x6b, 0x56, 0x80, 0x45, 0x6f, 0x68, 0x15, 0xce, 0x49, 0x44, 0xdd, 0x36, 0x7d, + 0xe4, 0x3c, 0x43, 0x9e, 0x17, 0xaf, 0xd6, 0x6d, 0x53, 0xe0, 0x2b, 0x9f, 0x43, 0x71, 0xb3, 0xd1, + 0xdc, 0x20, 0xd6, 0x81, 0xd9, 0xa6, 0x22, 0xba, 0xd8, 0xa1, 0x34, 0xd5, 0xcc, 0xe5, 0x1c, 0x15, + 0x51, 0x34, 0x51, 0x0d, 0x0a, 0x2e, 0xd6, 0x9d, 0xd6, 0x21, 0x76, 0xab, 0x59, 0xf6, 0xca, 0x6f, + 0x53, 0x2a, 0x62, 0x7b, 0x26, 0xb1, 0xdc, 0x6a, 0x8e, 0x53, 0x89, 0xa6, 0xf2, 0xeb, 0x0c, 0x94, + 0x76, 0x88, 0xe3, 0xbd, 0xd4, 0x6d, 0xdb, 0xb4, 0xda, 0xe8, 0x1e, 0x14, 0xd8, 0x5c, 0xb6, 0x48, + 0x87, 0xcd, 0xc1, 0xec, 0x5a, 0x6d, 0x35, 0xba, 0x2c, 0xab, 0x3b, 0x02, 0x43, 0xf5, 0x71, 0xd1, + 0x3b, 0x30, 0xdb, 0x22, 0x96, 0xa7, 0x9b, 0x16, 0x76, 0x34, 0x9b, 0x38, 0x1e, 0x9b, 0xa2, 0x49, + 0xb5, 0xec, 0x43, 0x69, 0x2f, 0xe8, 0x22, 0x14, 0x0f, 0x89, 0xeb, 0x71, 0x8c, 0x1c, 0xc3, 0x28, + 0x50, 0x00, 0x7b, 0xb9, 0x04, 0xd3, 0xec, 0xa5, 0x69, 0x8b, 0xc9, 0x98, 0xa2, 0xcd, 0xba, 0xad, + 0xfc, 0x3e, 0x03, 0x93, 0x2f, 0x49, 0xcf, 0xf2, 0x22, 0xdd, 0xe8, 0xde, 0xa1, 0x58, 0xa8, 0x40, + 0x37, 0xba, 0x77, 0xd8, 0xef, 0x86, 0x62, 0xf0, 0xb5, 0xe2, 0xdd, 0xd0, 0x97, 0x35, 0x28, 0x38, + 0x58, 0x37, 0x88, 0xd5, 0x39, 0x65, 0x22, 0x14, 0x54, 0xbf, 0x4d, 0x17, 0xd1, 0xc5, 0x1d, 0xd3, + 0xea, 0xbd, 0xd6, 0x1c, 0xdc, 0xd1, 0xf7, 0x71, 0x87, 0x89, 0x52, 0x50, 0x67, 0x05, 0x58, 0xe5, + 0x50, 0xb4, 0x09, 0x25, 0xdb, 0x21, 0xb6, 0xde, 0xd6, 0xe9, 0x3c, 0x56, 0x27, 0xd9, 0x54, 0x29, + 0xf1, 0xa9, 0x62, 0x62, 0xef, 0xf4, 0x31, 0xd5, 0x20, 0x19, 0x42, 0x90, 0x67, 0xea, 0x64, 0x30, + 0x11, 0xd9, 0xb3, 0xf2, 0x37, 0x19, 0x98, 0xa3, 0x0a, 0xe5, 0xda, 0x7a, 0x0b, 0x6f, 0xb3, 0x65, + 0x42, 0xf7, 0x61, 0xda, 0xc2, 0xde, 0x09, 0x71, 0x8e, 0xc4, 0xa2, 0xbc, 0x1d, 0xef, 0xc9, 0xa7, + 0x79, 0x49, 0x0c, 0xac, 0x4a, 0x7c, 0x74, 0x17, 0x72, 0xb6, 0x69, 0xb0, 0x49, 0x18, 0x81, 0x8c, + 0xe2, 0x52, 0x12, 0xd3, 0x6e, 0xb1, 0xb9, 0x19, 0x85, 0xc4, 0xb4, 0x5b, 0x8a, 0x02, 0x50, 0xb7, + 0xbc, 0x7b, 0x3f, 0xfc, 0x44, 0xef, 0xf4, 0x30, 0x5a, 0x80, 0xc9, 0x63, 0xfa, 0xc0, 0x84, 0xcd, + 0xa9, 0xbc, 0xa1, 0x7c, 0x95, 0x83, 0x8b, 0x2f, 0xe8, 0x1c, 0x36, 0x75, 0xcb, 0xd8, 0x27, 0xaf, + 0x9b, 0xb8, 0xd5, 0x73, 0x4c, 0xef, 0x74, 0x83, 0x58, 0x1e, 0x7e, 0xed, 0xa1, 0x06, 0xcc, 0x5b, + 0x92, 0xb3, 0x26, 0xd5, 0x95, 0x72, 0x28, 0xad, 0xad, 0x0c, 0x10, 0x82, 0x4f, 0x91, 0x5a, 0xb1, + 0xc2, 0x00, 0x17, 0x3d, 0xef, 0xaf, 0xa5, 0xe4, 0x96, 0x65, 0xdc, 0x12, 0x86, 0xd4, 0xdc, 0x62, + 0x92, 0x09, 0x5e, 0x72, 0xb1, 0x25, 0xa7, 0x47, 0x40, 0x77, 0xba, 0xa6, 0xbb, 0x5a, 0xcf, 0xc5, + 0x0e, 0x9b, 0x98, 0xd2, 0xda, 0x5b, 0x71, 0x2e, 0xfd, 0x29, 0x50, 0x8b, 0x4e, 0xcf, 0x5a, 0x77, + 0xf7, 0x5c, 0xec, 0x30, 0xc3, 0x20, 0xf4, 0x4b, 0x73, 0x08, 0xf1, 0x0e, 0x5c, 0xa9, 0x53, 0x12, + 0xac, 0x32, 0x28, 0xba, 0x03, 0xe7, 0xdc, 0x9e, 0x6d, 0x77, 0x70, 0x17, 0x5b, 0x9e, 0xde, 0xd1, + 0xda, 0x0e, 0xe9, 0xd9, 0x6e, 0x75, 0xf2, 0x72, 0xee, 0x46, 0x4e, 0x45, 0xc1, 0x57, 0xcf, 0xd8, + 0x1b, 0xb4, 0x0c, 0x60, 0x3b, 0xe6, 0xb1, 0xd9, 0xc1, 0x6d, 0x6c, 0x54, 0xa7, 0x18, 0xd3, 0x00, + 0x04, 0xbd, 0x07, 0x0b, 0x2e, 0x6e, 0xb5, 0x48, 0xd7, 0xd6, 0x6c, 0x87, 0x1c, 0x98, 0x1d, 0xcc, + 0x77, 0xc4, 0x34, 0x53, 0x37, 0x24, 0xde, 0xed, 0xf0, 0x57, 0x6c, 0x6f, 0x3c, 0x66, 0x76, 0x8e, + 0x8e, 0x94, 0x75, 0x5e, 0x2d, 0x8c, 0x30, 0x54, 0x60, 0x43, 0x65, 0x22, 0x29, 0xbf, 0xce, 0xc2, + 0x79, 0x36, 0x93, 0x3b, 0xc4, 0x10, 0xcb, 0x2c, 0x0c, 0xd7, 0x15, 0x28, 0xb7, 0x18, 0x4f, 0xcd, + 0xd6, 0x1d, 0x6c, 0x79, 0x62, 0xe3, 0xce, 0x70, 0xe0, 0x0e, 0x83, 0xa1, 0x4f, 0xa1, 0xe2, 0x0a, + 0xad, 0xd0, 0x5a, 0x5c, 0x2d, 0xc4, 0x9a, 0xdd, 0x8e, 0x8b, 0x30, 0x40, 0x97, 0xd4, 0x39, 0x37, + 0xa6, 0x5c, 0xd3, 0xee, 0xa9, 0xdb, 0xf2, 0x3a, 0xdc, 0x02, 0x96, 0xd6, 0x7e, 0x98, 0xc2, 0x30, + 0x2a, 0xf8, 0x6a, 0x93, 0x93, 0x6d, 0x59, 0x9e, 0x73, 0xaa, 0x4a, 0x26, 0xb5, 0x07, 0x30, 0x13, + 0x7c, 0x81, 0x2a, 0x90, 0x3b, 0xc2, 0xa7, 0x62, 0x50, 0xf4, 0xb1, 0xbf, 0x09, 0xb8, 0xfd, 0xe1, + 0x8d, 0x07, 0xd9, 0x0f, 0x33, 0x8a, 0x03, 0xa8, 0xdf, 0xcb, 0x4b, 0xec, 0xe9, 0x86, 0xee, 0xe9, + 0xbe, 0x2d, 0xc8, 0xf4, 0x6d, 0x01, 0xe5, 0xda, 0x13, 0x9b, 0xb7, 0xa8, 0xd2, 0x47, 0xf4, 0x16, + 0x14, 0x7d, 0x45, 0x17, 0xe7, 0x4b, 0x1f, 0x40, 0xed, 0xbc, 0xee, 0x79, 0xb8, 0x6b, 0x7b, 0x4c, + 0xc5, 0xca, 0xaa, 0x6c, 0x2a, 0xff, 0x9d, 0x87, 0x4a, 0x6c, 0x4d, 0x3e, 0x86, 0x42, 0x57, 0x74, + 0x2f, 0x36, 0xda, 0xd5, 0x04, 0x63, 0x1f, 0x13, 0x55, 0xf5, 0xa9, 0xa8, 0x2d, 0xa5, 0x76, 0x35, + 0x70, 0x26, 0xfa, 0x6d, 0xba, 0xe2, 0x1d, 0xd2, 0xd6, 0x0c, 0xd3, 0xc1, 0x2d, 0x8f, 0x38, 0xa7, + 0x42, 0xdc, 0x99, 0x0e, 0x69, 0x6f, 0x4a, 0x18, 0x7a, 0x00, 0x60, 0x58, 0x2e, 0x5d, 0xec, 0x03, + 0xb3, 0xcd, 0x84, 0x2e, 0xad, 0x5d, 0x8c, 0x0b, 0xe1, 0x1f, 0x80, 0x6a, 0xd1, 0xb0, 0x5c, 0x21, + 0xfe, 0x13, 0x28, 0xd3, 0x73, 0x44, 0xeb, 0xf2, 0xb3, 0x8b, 0xef, 0x94, 0xd2, 0xda, 0xa5, 0xa4, + 0x31, 0xf8, 0x27, 0x9c, 0x3a, 0x63, 0xf7, 0x1b, 0x2e, 0x7a, 0x0a, 0x53, 0xcc, 0xa0, 0xbb, 0xd5, + 0x29, 0x46, 0xbc, 0x3a, 0x68, 0x02, 0x84, 0x46, 0xbc, 0x60, 0x04, 0x5c, 0x21, 0x04, 0x35, 0xda, + 0x83, 0x92, 0x6e, 0x59, 0xc4, 0xd3, 0xb9, 0xa1, 0x99, 0x66, 0xcc, 0xde, 0x1f, 0x81, 0xd9, 0x7a, + 0x9f, 0x8a, 0x73, 0x0c, 0xf2, 0x41, 0x3f, 0x86, 0x49, 0x66, 0x89, 0xc4, 0x46, 0xbc, 0x3e, 0xa2, + 0xd2, 0xaa, 0x9c, 0xaa, 0x76, 0x1f, 0x4a, 0x01, 0x61, 0xc7, 0x51, 0xd2, 0xda, 0x63, 0xa8, 0x44, + 0x45, 0x1b, 0x4b, 0xc9, 0x55, 0x58, 0x50, 0x7b, 0x56, 0x5f, 0x30, 0xe9, 0x91, 0x3d, 0x80, 0x29, + 0xb1, 0xd8, 0x5c, 0xe3, 0x94, 0xe1, 0x73, 0xa4, 0x0a, 0x0a, 0xe5, 0xc7, 0x70, 0x3e, 0xc2, 0x53, + 0x38, 0x6e, 0x57, 0x61, 0xd6, 0x26, 0x86, 0xe6, 0x72, 0xb0, 0x66, 0x1a, 0xd2, 0xba, 0xd8, 0x3e, + 0x6e, 0xdd, 0xa0, 0xe4, 0x4d, 0x8f, 0xd8, 0x71, 0x99, 0x46, 0x23, 0xaf, 0xc2, 0x62, 0x94, 0x9c, + 0x77, 0xaf, 0x7c, 0x04, 0x4b, 0x2a, 0xee, 0x92, 0x63, 0x7c, 0x56, 0xd6, 0x35, 0xa8, 0xc6, 0x19, + 0x08, 0xe6, 0x9f, 0xc1, 0x52, 0x1f, 0xda, 0xf4, 0x74, 0xaf, 0xe7, 0x8e, 0xc5, 0x5c, 0x78, 0xb5, + 0xfb, 0xc4, 0xe5, 0xab, 0x54, 0x50, 0x65, 0x53, 0xb9, 0x19, 0x64, 0xdd, 0xe0, 0x0e, 0x03, 0xef, + 0x01, 0xcd, 0x42, 0xd6, 0xb4, 0x05, 0xbb, 0xac, 0x69, 0x2b, 0xcf, 0xa1, 0xe8, 0x9f, 0xb8, 0xe8, + 0x61, 0xdf, 0x9d, 0xcc, 0x8e, 0x7a, 0x3e, 0xfb, 0x1e, 0xe7, 0x6e, 0xec, 0x84, 0x10, 0x5d, 0x3e, + 0x04, 0xf0, 0x2d, 0x99, 0x3c, 0xf8, 0x2f, 0x0e, 0x60, 0xac, 0x06, 0xd0, 0x95, 0x7f, 0x0b, 0xd9, + 0xb7, 0xc0, 0x20, 0x0c, 0x7f, 0x10, 0x46, 0xc8, 0xde, 0x65, 0xcf, 0x64, 0xef, 0x3e, 0x80, 0x49, + 0xd7, 0xd3, 0x3d, 0x2c, 0x9c, 0xa3, 0x95, 0x41, 0xe4, 0x54, 0x08, 0xac, 0x72, 0x7c, 0x74, 0x09, + 0xa0, 0xe5, 0x60, 0xdd, 0xc3, 0x86, 0xa6, 0x73, 0xe3, 0x9c, 0x53, 0x8b, 0x02, 0xb2, 0xee, 0xa1, + 0x8d, 0xbe, 0x83, 0x37, 0xc9, 0x04, 0xbb, 0x39, 0x88, 0x73, 0x68, 0xa9, 0xfa, 0xae, 0x9e, 0x6f, + 0x2c, 0xa6, 0x46, 0x34, 0x16, 0x82, 0x01, 0xa7, 0x0a, 0x98, 0xc2, 0xe9, 0xe1, 0xa6, 0x90, 0x93, + 0x8e, 0x62, 0x0a, 0x0b, 0xc3, 0x4d, 0xa1, 0x60, 0x36, 0xd0, 0x14, 0x7e, 0x97, 0xb6, 0xec, 0x5f, + 0x33, 0x50, 0x8d, 0xef, 0x41, 0x61, 0x7b, 0x1e, 0xc0, 0x94, 0xcb, 0x20, 0xa3, 0x18, 0x34, 0x41, + 0x2b, 0x28, 0xd0, 0x73, 0xc8, 0x9b, 0xd6, 0x01, 0x61, 0xf1, 0x5a, 0xa2, 0x4b, 0x92, 0xd6, 0xeb, + 0x6a, 0xdd, 0x3a, 0x20, 0x7c, 0x92, 0x18, 0x87, 0xda, 0x07, 0x50, 0xf4, 0x41, 0x63, 0x8d, 0x6d, + 0x1b, 0x16, 0x22, 0x2a, 0xcb, 0x7d, 0x78, 0x5f, 0xd3, 0x33, 0xe3, 0x69, 0xba, 0xf2, 0x8b, 0x6c, + 0x70, 0x27, 0x3e, 0x35, 0x3b, 0x1e, 0x76, 0x62, 0x3b, 0xf1, 0x91, 0xe4, 0xce, 0xb7, 0xe1, 0xb5, + 0xa1, 0xdc, 0xb9, 0xab, 0x29, 0x36, 0xd3, 0xcf, 0x60, 0x96, 0xe9, 0x9a, 0xe6, 0xe2, 0x0e, 0xf3, + 0x23, 0x84, 0x4f, 0xf7, 0xa3, 0x41, 0x6c, 0xb8, 0x24, 0x5c, 0x63, 0x9b, 0x82, 0x8e, 0xcf, 0x60, + 0xb9, 0x13, 0x84, 0xd5, 0x3e, 0x06, 0x14, 0x47, 0x1a, 0x6b, 0x4e, 0x9b, 0xd4, 0xc4, 0xd1, 0xa0, + 0x36, 0xe1, 0xf0, 0x3b, 0x60, 0x62, 0x8c, 0xa2, 0x2b, 0x5c, 0x60, 0x55, 0x50, 0x28, 0xbf, 0xc9, + 0x01, 0xf4, 0x5f, 0xfe, 0x1f, 0xb2, 0x6d, 0x1f, 0xfb, 0x76, 0x85, 0xfb, 0x67, 0x37, 0x06, 0x31, + 0x4e, 0xb4, 0x28, 0xdb, 0x61, 0x8b, 0xc2, 0x3d, 0xb5, 0xdb, 0x03, 0xd9, 0x7c, 0x6f, 0x6d, 0xc9, + 0x0b, 0x58, 0x8c, 0xea, 0x86, 0x30, 0x24, 0x6b, 0x30, 0x69, 0x7a, 0xb8, 0xcb, 0x13, 0x3b, 0x89, + 0x41, 0x57, 0x80, 0x88, 0xa3, 0x2a, 0x2b, 0x50, 0xac, 0x77, 0xf5, 0x36, 0x6e, 0xda, 0xb8, 0x45, + 0x3b, 0x35, 0x69, 0x43, 0x08, 0xc2, 0x1b, 0xca, 0x1a, 0x14, 0x7e, 0x82, 0x4f, 0xf9, 0xa6, 0x1e, + 0x51, 0x50, 0xe5, 0x1f, 0x0b, 0xb0, 0xc4, 0xce, 0x8a, 0x0d, 0x99, 0x56, 0x51, 0xb1, 0x4b, 0x7a, + 0x4e, 0x0b, 0xbb, 0x6c, 0xb5, 0xed, 0x9e, 0x66, 0x63, 0xc7, 0x24, 0x86, 0x88, 0xf0, 0x8b, 0x2d, + 0xbb, 0xb7, 0xc3, 0x00, 0xe8, 0x22, 0xd0, 0x86, 0xf6, 0x65, 0x8f, 0x08, 0x45, 0xcc, 0xa9, 0x85, + 0x96, 0xdd, 0xfb, 0xff, 0xb4, 0x2d, 0x69, 0xdd, 0x43, 0xdd, 0xc1, 0x2e, 0xd3, 0x33, 0x4e, 0xdb, + 0x64, 0x00, 0x74, 0x17, 0xce, 0x77, 0x71, 0x97, 0x38, 0xa7, 0x5a, 0xc7, 0xec, 0x9a, 0x9e, 0x66, + 0x5a, 0xda, 0xfe, 0xa9, 0x87, 0x5d, 0xa1, 0x53, 0x88, 0xbf, 0x7c, 0x41, 0xdf, 0xd5, 0xad, 0x27, + 0xf4, 0x0d, 0x52, 0xa0, 0x4c, 0x48, 0x57, 0x73, 0x5b, 0xc4, 0xc1, 0x9a, 0x6e, 0x7c, 0xc1, 0x8e, + 0xcf, 0x9c, 0x5a, 0x22, 0xa4, 0xdb, 0xa4, 0xb0, 0x75, 0xe3, 0x0b, 0xf4, 0x36, 0x94, 0x5a, 0x76, + 0xcf, 0xc5, 0x9e, 0x46, 0x7f, 0xd8, 0xe9, 0x58, 0x54, 0x81, 0x83, 0x36, 0xec, 0x9e, 0x1b, 0x40, + 0xe8, 0xd2, 0xf9, 0x9f, 0x0e, 0x22, 0xbc, 0xc4, 0x5d, 0x17, 0xbd, 0x02, 0x30, 0x4c, 0xf7, 0x48, + 0x8c, 0xca, 0x60, 0xeb, 0xf3, 0x61, 0xca, 0xf1, 0x1a, 0x9f, 0xb2, 0xd5, 0x4d, 0xd3, 0x3d, 0x62, + 0x13, 0xc0, 0x55, 0xb1, 0x68, 0xc8, 0x36, 0x5a, 0x81, 0x99, 0xfd, 0xce, 0x91, 0x49, 0xb4, 0x13, + 0x6c, 0xb6, 0x0f, 0xbd, 0x2a, 0x66, 0x51, 0x5b, 0x89, 0xc1, 0x5e, 0x31, 0x10, 0x6a, 0xc0, 0xb9, + 0x20, 0x8a, 0x66, 0xe0, 0x63, 0xb3, 0x85, 0xab, 0x07, 0x4c, 0x88, 0xe5, 0xb8, 0x10, 0x9c, 0x6c, + 0x93, 0x61, 0xa9, 0xf3, 0x01, 0x4e, 0x1c, 0x84, 0x9a, 0x70, 0x9e, 0xf3, 0xe3, 0x8c, 0x34, 0x07, + 0xeb, 0x86, 0xb6, 0x6f, 0xbb, 0xd5, 0x36, 0xe3, 0x78, 0x39, 0xce, 0x71, 0xf7, 0xd0, 0x21, 0x9e, + 0xd7, 0xc1, 0x82, 0x27, 0x62, 0xe4, 0xa2, 0x81, 0x75, 0xe3, 0x89, 0x4d, 0xcf, 0xfc, 0xc5, 0x10, + 0xd3, 0x13, 0xc7, 0xf4, 0x30, 0xe3, 0x7a, 0x38, 0x22, 0xd7, 0x73, 0x01, 0xae, 0xaf, 0x28, 0x75, + 0x12, 0x5b, 0x26, 0x6b, 0x7d, 0xdb, 0x76, 0xab, 0xe6, 0x19, 0xd8, 0x52, 0x61, 0x29, 0x31, 0x7a, + 0x05, 0x4b, 0x09, 0xd2, 0x32, 0xbe, 0x5f, 0x8c, 0xc8, 0x77, 0x21, 0x2a, 0x2e, 0x63, 0x7c, 0x05, + 0xca, 0x47, 0xd8, 0xb1, 0x70, 0x47, 0xe3, 0xaa, 0x5a, 0x3d, 0x62, 0xda, 0x38, 0xc3, 0x81, 0x2f, + 0x19, 0x0c, 0xdd, 0x06, 0xa1, 0xc8, 0x9a, 0x83, 0x5d, 0xec, 0x1c, 0xf3, 0x0c, 0x62, 0x87, 0x61, + 0xce, 0xf3, 0x37, 0x6a, 0xff, 0x05, 0xaa, 0x83, 0x00, 0x6a, 0xee, 0x09, 0x8b, 0x5a, 0xb1, 0xeb, + 0x56, 0xbb, 0x23, 0xe4, 0x65, 0x2a, 0x9c, 0xac, 0xe9, 0x53, 0xa1, 0x35, 0x98, 0xee, 0xb1, 0x9d, + 0xe5, 0x56, 0x2d, 0x36, 0xce, 0x6a, 0x9c, 0xc1, 0x1e, 0x43, 0x50, 0x25, 0x62, 0xed, 0x11, 0xcc, + 0x86, 0xd5, 0x77, 0x2c, 0x6b, 0xf7, 0x00, 0x66, 0x42, 0xca, 0x87, 0x20, 0x1f, 0xc8, 0xda, 0xb2, + 0x67, 0xb4, 0x08, 0x53, 0x1c, 0x87, 0x91, 0x97, 0x55, 0xd1, 0x52, 0x3e, 0x84, 0xd9, 0xf0, 0xa4, + 0x27, 0x52, 0x23, 0xc8, 0x3b, 0xd2, 0x91, 0xc8, 0xab, 0xec, 0x59, 0xd9, 0x84, 0x29, 0x3e, 0x8c, + 0xc4, 0xa4, 0x0a, 0x82, 0xfc, 0xa1, 0xee, 0x18, 0xc2, 0x38, 0xb1, 0x67, 0x0a, 0x73, 0xc9, 0x81, + 0x27, 0x4c, 0x12, 0x7b, 0x56, 0x74, 0x28, 0x87, 0xd2, 0x82, 0x14, 0x89, 0xe5, 0xff, 0x04, 0x33, + 0xfa, 0xcc, 0xba, 0x27, 0x1d, 0x39, 0x72, 0xf6, 0x4c, 0x61, 0xde, 0xa9, 0x2d, 0xd3, 0x33, 0xec, + 0x99, 0x4e, 0x51, 0x07, 0x1f, 0x8b, 0x74, 0x72, 0x51, 0xe5, 0x0d, 0xc5, 0x00, 0xd8, 0xd0, 0x6d, + 0x7d, 0xdf, 0xec, 0x98, 0xde, 0x29, 0xba, 0x09, 0x15, 0xdd, 0x30, 0xb4, 0x96, 0x84, 0x98, 0x58, + 0x26, 0xf9, 0xe7, 0x74, 0xc3, 0xd8, 0x08, 0x80, 0xd1, 0x0f, 0x60, 0xde, 0x70, 0x88, 0x1d, 0xc6, + 0xe5, 0x59, 0xff, 0x0a, 0x7d, 0x11, 0x44, 0x56, 0x7e, 0x35, 0x09, 0x97, 0xc2, 0xa6, 0x29, 0x9a, + 0x7a, 0xfd, 0x18, 0x66, 0x22, 0xbd, 0xa6, 0xa8, 0x57, 0x5f, 0x5a, 0x35, 0x44, 0x11, 0x49, 0x45, + 0x66, 0x63, 0xa9, 0xc8, 0xc4, 0xe4, 0x6e, 0xee, 0x8d, 0x26, 0x77, 0xf3, 0x6f, 0x24, 0xb9, 0x3b, + 0x39, 0x5e, 0x72, 0xf7, 0x1a, 0xab, 0xfa, 0x48, 0x6a, 0xa6, 0x6b, 0xfc, 0x7c, 0x29, 0xfb, 0x38, + 0x96, 0xac, 0x0e, 0x45, 0x92, 0xc0, 0xd3, 0xe3, 0x24, 0x81, 0x0b, 0xa9, 0x49, 0x60, 0xaa, 0x35, + 0xb6, 0xad, 0x3b, 0x5d, 0xe2, 0xc8, 0x2c, 0x6f, 0xb5, 0xc8, 0x44, 0x98, 0x93, 0x70, 0x91, 0xe1, + 0x4d, 0xcd, 0x07, 0x43, 0x6a, 0x3e, 0xf8, 0x32, 0xcc, 0x58, 0x44, 0xb3, 0xf0, 0x89, 0x46, 0xd7, + 0xd2, 0xad, 0x96, 0xf8, 0xc2, 0x5a, 0xa4, 0x81, 0x4f, 0x76, 0x28, 0x24, 0x96, 0x31, 0x9e, 0x19, + 0x33, 0x63, 0xfc, 0x77, 0x19, 0x58, 0x08, 0x2b, 0xa7, 0xc8, 0xee, 0x3d, 0x83, 0xa2, 0x23, 0x4f, + 0x50, 0xa1, 0x90, 0x37, 0x47, 0x3e, 0x72, 0xd5, 0x3e, 0x2d, 0xfa, 0x69, 0x6a, 0x52, 0xf9, 0xce, + 0x30, 0x7e, 0xc3, 0xd2, 0xca, 0x4a, 0x0b, 0x16, 0x5f, 0x99, 0x96, 0x41, 0x4e, 0xdc, 0xa8, 0xf8, + 0xf5, 0xb8, 0xf8, 0x3f, 0x48, 0x38, 0xac, 0x23, 0xc4, 0x49, 0x03, 0x50, 0xfe, 0x3a, 0x03, 0x17, + 0x52, 0x11, 0x23, 0x3e, 0x55, 0x26, 0xea, 0x53, 0x09, 0x7f, 0xac, 0x45, 0x7a, 0x96, 0x17, 0xf0, + 0xc7, 0x36, 0x58, 0x39, 0x8d, 0x3b, 0x3e, 0x5a, 0x57, 0x7f, 0x6d, 0x76, 0x7b, 0x5d, 0x61, 0xfd, + 0x28, 0xbb, 0x97, 0x1c, 0x72, 0x06, 0x8f, 0x4c, 0x59, 0x87, 0x79, 0x5f, 0xca, 0x81, 0xc9, 0xed, + 0x40, 0xb2, 0x3a, 0x1b, 0x4e, 0x56, 0x5b, 0x30, 0x25, 0x2c, 0xfe, 0x9b, 0xa8, 0xf7, 0x5d, 0x86, + 0x92, 0x8d, 0x9d, 0xae, 0xe9, 0xba, 0xbe, 0xd1, 0x29, 0xaa, 0x41, 0x90, 0xf2, 0x67, 0xd3, 0x30, + 0x17, 0x5d, 0xbf, 0x8f, 0x62, 0xb9, 0xf1, 0x2b, 0x09, 0xe6, 0x30, 0x3a, 0xd0, 0x40, 0x38, 0x75, + 0x57, 0x7a, 0xe3, 0xd9, 0xb4, 0x4c, 0x96, 0xef, 0xb9, 0x0b, 0x57, 0x9d, 0xce, 0x48, 0x8b, 0x74, + 0xbb, 0xba, 0x65, 0xc8, 0x32, 0xad, 0x68, 0xd2, 0xf9, 0xd3, 0x9d, 0x36, 0x9d, 0x76, 0x0a, 0x66, + 0xcf, 0x74, 0xf1, 0x4e, 0x88, 0x73, 0x64, 0x5a, 0x2c, 0xc7, 0xce, 0x0c, 0x57, 0x51, 0x05, 0x01, + 0xda, 0x34, 0x1d, 0xb4, 0x0a, 0x79, 0x6c, 0x1d, 0xcb, 0x78, 0x29, 0xa1, 0x8e, 0x2b, 0xe3, 0x02, + 0x95, 0xe1, 0xa1, 0x3b, 0x30, 0xd5, 0xa5, 0x6a, 0x21, 0x13, 0x40, 0x4b, 0x29, 0xe5, 0x4c, 0x55, + 0xa0, 0x51, 0x7f, 0x82, 0x7b, 0x50, 0x32, 0xcb, 0x93, 0xe0, 0x4f, 0x08, 0x7f, 0x49, 0x22, 0xa2, + 0x2d, 0x3f, 0x1a, 0x2c, 0xa6, 0x85, 0x71, 0x91, 0xa5, 0x48, 0x0c, 0x09, 0x77, 0xc3, 0x21, 0x21, + 0x30, 0x5e, 0x6b, 0xc3, 0x79, 0x0d, 0x4e, 0xb7, 0x5f, 0x80, 0x42, 0x87, 0xb4, 0xb9, 0x1a, 0x95, + 0xf8, 0x0d, 0x80, 0x0e, 0x69, 0x33, 0x2d, 0x5a, 0xa0, 0xd1, 0xb1, 0x61, 0x5a, 0xcc, 0xc0, 0x15, + 0x54, 0xde, 0xa0, 0x9b, 0x8f, 0x3d, 0x68, 0xc4, 0x6a, 0xe1, 0x6a, 0x99, 0xbd, 0x2a, 0x32, 0xc8, + 0xb6, 0xd5, 0x62, 0xf1, 0x96, 0xe7, 0x9d, 0x56, 0x67, 0x19, 0x9c, 0x3e, 0xa2, 0x47, 0x32, 0x47, + 0x37, 0x97, 0x96, 0xf8, 0x48, 0x32, 0x86, 0x32, 0x45, 0xf7, 0x04, 0xa6, 0x4f, 0xb8, 0x21, 0xa8, + 0x56, 0x18, 0xfd, 0x8d, 0xe1, 0x26, 0x45, 0x70, 0x90, 0x84, 0x34, 0xe4, 0xb0, 0xb0, 0x47, 0xed, + 0x39, 0xa1, 0x96, 0x8c, 0xd5, 0x9e, 0x73, 0x6a, 0xc9, 0xc2, 0xde, 0x8e, 0x00, 0x7d, 0x97, 0xe1, + 0xf1, 0x6f, 0x32, 0xb0, 0xb8, 0xc1, 0x52, 0x07, 0x01, 0x53, 0x37, 0x4e, 0xb6, 0xfb, 0xbe, 0x5f, + 0x5f, 0x48, 0x4d, 0x4d, 0x47, 0xa7, 0x46, 0x10, 0xa0, 0x3a, 0xcc, 0x4a, 0xe6, 0x82, 0x45, 0x6e, + 0xe4, 0x12, 0x45, 0xd9, 0x0d, 0x36, 0x95, 0x47, 0xb0, 0x14, 0x1b, 0x85, 0x08, 0xf3, 0x57, 0x60, + 0xa6, 0x6f, 0xd2, 0xfc, 0x41, 0x94, 0x7c, 0x58, 0xdd, 0x50, 0x1e, 0xc0, 0xf9, 0xa6, 0xa7, 0x3b, + 0x5e, 0x6c, 0x0a, 0x46, 0xa0, 0x65, 0x55, 0x8a, 0x30, 0xad, 0x28, 0x24, 0x34, 0x61, 0xa1, 0xe9, + 0x11, 0xfb, 0x0c, 0x4c, 0xa9, 0x61, 0xa2, 0xe3, 0x27, 0x3d, 0x79, 0x84, 0xc8, 0xa6, 0xb2, 0xc4, + 0x6b, 0x2a, 0xf1, 0xde, 0x1e, 0xc2, 0x22, 0x2f, 0x69, 0x9c, 0x65, 0x10, 0x17, 0x64, 0x41, 0x25, + 0xce, 0xf7, 0x25, 0x9c, 0xeb, 0x1f, 0xcf, 0xfd, 0x74, 0xe5, 0xbd, 0x70, 0xba, 0xf2, 0xf2, 0x80, + 0x55, 0x0f, 0x65, 0x2b, 0xff, 0x32, 0x1b, 0x30, 0xfd, 0x29, 0xc9, 0xca, 0x87, 0xe1, 0x64, 0xe5, + 0x3b, 0xc3, 0x78, 0x87, 0x72, 0x95, 0x71, 0xad, 0xcd, 0x25, 0x68, 0xed, 0xe7, 0xb1, 0x8c, 0x66, + 0x3e, 0x2d, 0x25, 0x1c, 0x91, 0xf6, 0x0f, 0x92, 0xd0, 0x54, 0x79, 0x42, 0xd3, 0xef, 0xda, 0xaf, + 0x40, 0xdd, 0x8f, 0x24, 0x34, 0x57, 0x86, 0xca, 0xeb, 0xe7, 0x33, 0xff, 0x36, 0x0f, 0x45, 0xff, + 0x5d, 0x6c, 0xce, 0xe3, 0xd3, 0x96, 0x4d, 0x98, 0xb6, 0xe0, 0x21, 0x9d, 0xfb, 0x46, 0x87, 0x74, + 0x7e, 0xe4, 0x43, 0xfa, 0x22, 0x14, 0xd9, 0x83, 0xe6, 0xe0, 0x03, 0x71, 0xe8, 0x16, 0x18, 0x40, + 0xc5, 0x07, 0x7d, 0x35, 0x9c, 0x1a, 0x4b, 0x0d, 0x23, 0x29, 0xd4, 0xe9, 0x68, 0x0a, 0xf5, 0x23, + 0xff, 0xd0, 0xe4, 0xe7, 0xec, 0xf5, 0x01, 0x7c, 0x13, 0x8f, 0xcb, 0x46, 0xf8, 0xb8, 0xe4, 0x47, + 0xef, 0xbb, 0x83, 0xb8, 0x7c, 0x6f, 0x13, 0xa8, 0x7b, 0x3c, 0x81, 0x1a, 0xd4, 0x45, 0x61, 0x59, + 0x1f, 0x02, 0xf8, 0x46, 0x44, 0x66, 0x51, 0x2f, 0x0e, 0x18, 0xa3, 0x1a, 0x40, 0xa7, 0x6c, 0x43, + 0x4b, 0xd3, 0xaf, 0xb2, 0x8e, 0x66, 0x1f, 0x53, 0x4a, 0xac, 0xff, 0x15, 0x74, 0x2d, 0x53, 0xca, + 0x92, 0x1f, 0xc5, 0x52, 0xf7, 0x63, 0x6a, 0xf1, 0xbd, 0x70, 0xe6, 0xfe, 0x8c, 0x5a, 0x17, 0x4b, + 0xdc, 0x33, 0xe7, 0x46, 0x77, 0xc4, 0x6b, 0x9e, 0x58, 0x2d, 0x0a, 0xc8, 0x3a, 0x0b, 0x1e, 0x0e, + 0x4c, 0xcb, 0x74, 0x0f, 0xf9, 0xfb, 0x29, 0x1e, 0x3c, 0x48, 0xd0, 0x3a, 0xbb, 0xec, 0x87, 0x5f, + 0x9b, 0x9e, 0xd6, 0x22, 0x06, 0x66, 0x3a, 0x3d, 0xa9, 0x16, 0x28, 0x60, 0x83, 0x18, 0xb8, 0xbf, + 0xf3, 0x0a, 0x67, 0xdb, 0x79, 0xc5, 0xc8, 0xce, 0x5b, 0x84, 0x29, 0x07, 0xeb, 0x2e, 0xb1, 0x44, + 0x34, 0x2b, 0x5a, 0x74, 0x69, 0xba, 0xd8, 0x75, 0x69, 0x4f, 0xc2, 0xa3, 0x13, 0xcd, 0x80, 0x27, + 0x3a, 0x33, 0xd4, 0x13, 0x1d, 0x50, 0xee, 0x8c, 0x78, 0xa2, 0xe5, 0xa1, 0x9e, 0xe8, 0x28, 0xd5, + 0xce, 0x80, 0x2f, 0x3e, 0x3b, 0x9a, 0x2f, 0x1e, 0x74, 0x5d, 0xe7, 0xc2, 0xae, 0xeb, 0x73, 0x98, + 0x3e, 0x26, 0x9d, 0x5e, 0x17, 0xbb, 0x22, 0x75, 0xbd, 0x3a, 0x5c, 0xba, 0x4f, 0x38, 0x81, 0xb8, + 0xf5, 0x24, 0xc8, 0xc3, 0x31, 0x39, 0x3e, 0x7b, 0x4c, 0xfe, 0x1d, 0xda, 0x8f, 0xda, 0x2e, 0xcc, + 0x04, 0x07, 0x97, 0x40, 0xbb, 0x1a, 0xa4, 0x4d, 0x0c, 0x6a, 0x38, 0x83, 0xa0, 0x55, 0x2a, 0xc0, + 0x14, 0x07, 0x2a, 0xff, 0x9c, 0x81, 0xa5, 0x98, 0x25, 0x11, 0x16, 0xea, 0x7e, 0xa4, 0x56, 0xbc, + 0x32, 0x74, 0x21, 0xfc, 0x52, 0xf1, 0xb3, 0x50, 0xa9, 0xf8, 0xfd, 0xe1, 0x84, 0x6f, 0xbc, 0x52, + 0xfc, 0xa7, 0x19, 0x78, 0x7b, 0xcf, 0x36, 0x22, 0x4e, 0xad, 0x58, 0xdb, 0xd1, 0x6d, 0xe5, 0x47, + 0x32, 0x02, 0xca, 0x8e, 0xab, 0x3f, 0x9c, 0x4e, 0x51, 0xe0, 0x72, 0xba, 0x18, 0xc2, 0x4b, 0xfc, + 0x39, 0xcc, 0x6d, 0xbd, 0xc6, 0xad, 0xe6, 0xa9, 0xd5, 0x1a, 0x43, 0xb4, 0x0a, 0xe4, 0x5a, 0x5d, + 0x43, 0xe4, 0x51, 0xe9, 0x63, 0xd0, 0xf1, 0xcd, 0x85, 0x1d, 0x5f, 0x0d, 0x2a, 0xfd, 0x1e, 0xc4, + 0xf2, 0x2e, 0xd2, 0xe5, 0x35, 0x28, 0x32, 0x65, 0x3e, 0xa3, 0x8a, 0x96, 0x80, 0x63, 0xc7, 0x61, + 0x63, 0xe6, 0x70, 0xec, 0x38, 0x61, 0x03, 0x99, 0x0b, 0x1b, 0x48, 0xe5, 0x57, 0x19, 0x28, 0xd1, + 0x1e, 0xbe, 0x91, 0xfc, 0x22, 0x00, 0xcd, 0xf5, 0x03, 0x50, 0x3f, 0x8e, 0xcd, 0x07, 0xe3, 0xd8, + 0xbe, 0xe4, 0x93, 0x0c, 0x1c, 0x97, 0x7c, 0xca, 0x87, 0x63, 0xc7, 0x51, 0x2e, 0xc3, 0x0c, 0x97, + 0x4d, 0x8c, 0xbc, 0x02, 0xb9, 0x9e, 0xd3, 0x91, 0x7a, 0xd4, 0x73, 0x3a, 0xca, 0x9f, 0x67, 0xa0, + 0xbc, 0xee, 0x79, 0x7a, 0xeb, 0x70, 0x8c, 0x01, 0xf8, 0xc2, 0x65, 0x83, 0xc2, 0xc5, 0x07, 0xd1, + 0x17, 0x37, 0x9f, 0x22, 0xee, 0x64, 0x48, 0x5c, 0x05, 0x66, 0xa5, 0x2c, 0xa9, 0x02, 0x37, 0x00, + 0xed, 0x10, 0xc7, 0x7b, 0x4a, 0x9c, 0x13, 0xdd, 0x31, 0xc6, 0x0b, 0x3a, 0x11, 0xe4, 0xc5, 0x9d, + 0xf7, 0xdc, 0x8d, 0x49, 0x95, 0x3d, 0x2b, 0xd7, 0xe1, 0x5c, 0x88, 0x5f, 0x6a, 0xc7, 0x1f, 0x43, + 0x89, 0x1d, 0x75, 0x22, 0xfa, 0xb8, 0x1b, 0xac, 0xe2, 0x8e, 0x74, 0x30, 0x2a, 0xff, 0x0f, 0xe6, + 0xa9, 0x4b, 0xc4, 0xe0, 0xfe, 0x56, 0xfc, 0x51, 0xc4, 0x35, 0xbf, 0x94, 0xc2, 0x28, 0xe2, 0x96, + 0xff, 0x2e, 0x0b, 0x93, 0x0c, 0x1e, 0x73, 0x53, 0x2e, 0x52, 0xe3, 0x6f, 0x13, 0xcd, 0xd3, 0xdb, + 0xfe, 0x17, 0x06, 0x14, 0xb0, 0xab, 0xb7, 0x59, 0x56, 0x81, 0xbd, 0x34, 0xcc, 0x36, 0x76, 0x3d, + 0xf9, 0x99, 0x41, 0x89, 0xc2, 0x36, 0x39, 0x88, 0xd5, 0x58, 0xcc, 0x3f, 0xe2, 0xae, 0x76, 0x5e, + 0x65, 0xcf, 0x68, 0x95, 0x5f, 0x70, 0x1d, 0x25, 0xe9, 0xce, 0xae, 0xbf, 0xd6, 0xa0, 0x10, 0xc9, + 0xb3, 0xfb, 0x6d, 0xf4, 0x38, 0x7a, 0xcc, 0x5d, 0x4d, 0x19, 0x71, 0xf2, 0xe1, 0xf6, 0x2d, 0x1d, + 0x0c, 0x5b, 0x80, 0x82, 0x6b, 0x23, 0xb4, 0xe0, 0x0e, 0x4c, 0xb1, 0xa5, 0x93, 0x6e, 0xea, 0x52, + 0x8a, 0xa8, 0xaa, 0x40, 0x53, 0x74, 0x40, 0x7c, 0xd9, 0x43, 0xae, 0xe9, 0xf8, 0xba, 0x32, 0xc0, + 0x55, 0xfd, 0x87, 0x0c, 0x9c, 0x0b, 0xf5, 0x21, 0x64, 0xbd, 0x1d, 0xee, 0x24, 0x55, 0x54, 0xd1, + 0xc1, 0x46, 0xe8, 0xa0, 0xba, 0x93, 0x26, 0xd2, 0xb7, 0x74, 0x48, 0xfd, 0x2e, 0x03, 0xb0, 0xde, + 0xf3, 0x0e, 0x45, 0x16, 0x37, 0xa8, 0x2f, 0x99, 0x88, 0xbe, 0xd4, 0xa0, 0x60, 0xeb, 0xae, 0x7b, + 0x42, 0x1c, 0x19, 0x5c, 0xfa, 0x6d, 0x96, 0x6f, 0xed, 0x79, 0x87, 0xb2, 0x84, 0x47, 0x9f, 0xd1, + 0x3b, 0x30, 0xcb, 0xbf, 0xb5, 0xd1, 0x74, 0xc3, 0x70, 0xb0, 0xeb, 0x8a, 0x5a, 0x5e, 0x99, 0x43, + 0xd7, 0x39, 0x90, 0xa2, 0x99, 0x06, 0xb6, 0x3c, 0xd3, 0x3b, 0xd5, 0x3c, 0x72, 0x84, 0x2d, 0x11, + 0x24, 0x96, 0x25, 0x74, 0x97, 0x02, 0x29, 0x9a, 0x83, 0xdb, 0xa6, 0xeb, 0x39, 0x12, 0x4d, 0xd6, + 0x8d, 0x04, 0x94, 0xa1, 0xd1, 0x45, 0xa9, 0xec, 0xf4, 0x3a, 0x1d, 0x3e, 0xc5, 0x67, 0x5f, 0xf6, + 0xf7, 0xc4, 0x80, 0xb2, 0x69, 0x3b, 0xad, 0x3f, 0x69, 0x62, 0xb8, 0x6f, 0x30, 0x1b, 0xf6, 0x1e, + 0xcc, 0x07, 0xc6, 0x20, 0xd4, 0x2a, 0xe4, 0xcd, 0x67, 0xc2, 0xde, 0xbc, 0xf2, 0x0c, 0x10, 0x4f, + 0x00, 0x7d, 0xc3, 0x71, 0x2b, 0xe7, 0xe1, 0x5c, 0x88, 0x91, 0xf0, 0x0f, 0x6e, 0x41, 0x59, 0x5c, + 0xa2, 0x14, 0x8a, 0x72, 0x01, 0x0a, 0xd4, 0xce, 0xb7, 0x4c, 0x43, 0xd6, 0x77, 0xa7, 0x6d, 0x62, + 0x6c, 0x98, 0x86, 0xa3, 0xbc, 0x82, 0xb2, 0xca, 0xfb, 0x11, 0xb8, 0x4f, 0x61, 0x56, 0x5c, 0xb9, + 0xd4, 0x42, 0x57, 0x99, 0x93, 0x3e, 0x95, 0x09, 0x76, 0xa2, 0x96, 0xad, 0x60, 0x53, 0x31, 0xa0, + 0xc6, 0x1d, 0x99, 0x10, 0x7b, 0x39, 0xd8, 0xa7, 0x20, 0x3f, 0x1c, 0x1b, 0xda, 0x4b, 0x98, 0xbe, + 0xec, 0x04, 0x9b, 0xca, 0x25, 0xb8, 0x98, 0xd8, 0x8b, 0x98, 0x09, 0x1b, 0x2a, 0xfd, 0x17, 0x86, + 0x29, 0x0b, 0xdd, 0xac, 0x80, 0x9d, 0x09, 0x14, 0xb0, 0x17, 0x7d, 0xd7, 0x35, 0x2b, 0x8f, 0x56, + 0xe6, 0x97, 0xf6, 0xe3, 0xae, 0x5c, 0x5a, 0xdc, 0x95, 0x0f, 0xc5, 0x5d, 0x4a, 0xd3, 0x9f, 0x4f, + 0x11, 0x0f, 0x3f, 0x61, 0x71, 0x3b, 0xef, 0x5b, 0x1a, 0x44, 0x65, 0xd0, 0x28, 0x39, 0xaa, 0x1a, + 0xa0, 0x52, 0x6e, 0x42, 0x39, 0x6c, 0x1a, 0x03, 0x76, 0x2e, 0x13, 0xb3, 0x73, 0xb3, 0x11, 0x13, + 0xf7, 0x41, 0xc4, 0x2f, 0x4f, 0x9f, 0xe3, 0x88, 0x57, 0xfe, 0x38, 0x64, 0xec, 0x6e, 0x25, 0xd4, + 0x9e, 0xbf, 0x25, 0x3b, 0xb7, 0x20, 0xce, 0x83, 0xa7, 0x2e, 0xa5, 0x17, 0x83, 0x56, 0xae, 0x40, + 0x69, 0x2f, 0xed, 0x3b, 0xac, 0xbc, 0xbc, 0xdc, 0x75, 0x0f, 0x16, 0x9e, 0x9a, 0x1d, 0xec, 0x9e, + 0xba, 0x1e, 0xee, 0xd6, 0x99, 0x51, 0x3a, 0x30, 0xb1, 0x83, 0x96, 0x01, 0x58, 0x2c, 0x69, 0x13, + 0xd3, 0xff, 0x3c, 0x27, 0x00, 0x51, 0x7e, 0x9f, 0x81, 0xb9, 0x3e, 0xe1, 0x1e, 0x8b, 0xa1, 0xdf, + 0x82, 0x22, 0x1d, 0xaf, 0xeb, 0xe9, 0x5d, 0x5b, 0xd6, 0x1e, 0x7d, 0x00, 0x7a, 0x08, 0x93, 0x07, + 0xae, 0xcc, 0xdd, 0x25, 0x16, 0x3b, 0x92, 0x04, 0x51, 0xf3, 0x07, 0x6e, 0xdd, 0x40, 0x8f, 0x00, + 0x7a, 0x2e, 0x36, 0x44, 0xbd, 0x31, 0x97, 0xe6, 0xc3, 0xec, 0x05, 0xeb, 0xf2, 0x94, 0x80, 0xdf, + 0x0b, 0x7b, 0x0c, 0x25, 0xd3, 0x22, 0x06, 0x66, 0x75, 0x79, 0x43, 0xa4, 0xf7, 0x86, 0x90, 0x03, + 0xa7, 0xd8, 0x73, 0xb1, 0xa1, 0x60, 0x71, 0x16, 0xca, 0xf9, 0x15, 0x8a, 0xd2, 0x80, 0x79, 0x6e, + 0xb4, 0x0e, 0x7c, 0xc1, 0xa5, 0xc6, 0xae, 0x0c, 0x1a, 0x1d, 0x9b, 0x2d, 0xb5, 0x62, 0x0a, 0x87, + 0x4b, 0x92, 0x2a, 0x0f, 0xe0, 0x7c, 0x28, 0x6e, 0x1b, 0x23, 0x90, 0x52, 0x76, 0x22, 0x19, 0xab, + 0xbe, 0x3a, 0x8b, 0x7c, 0x90, 0xd4, 0xe6, 0x61, 0xf9, 0x20, 0x97, 0xe7, 0x83, 0x5c, 0xe5, 0x73, + 0xb8, 0x10, 0x4a, 0xad, 0x85, 0x24, 0x7a, 0x1c, 0xf1, 0x27, 0xaf, 0x0d, 0xe3, 0x1a, 0x71, 0x2c, + 0xff, 0x27, 0x03, 0x0b, 0x49, 0x08, 0x67, 0x4c, 0xfd, 0xfe, 0x3c, 0xe5, 0x0e, 0xf0, 0xfd, 0xd1, + 0xc4, 0xfa, 0x83, 0xa4, 0xcd, 0x77, 0xa1, 0x96, 0x34, 0x9f, 0xf1, 0x55, 0xca, 0x8d, 0xb3, 0x4a, + 0xbf, 0xcc, 0x05, 0x4a, 0x20, 0xeb, 0x9e, 0xe7, 0x98, 0xfb, 0x3d, 0xaa, 0xf2, 0x6f, 0x3c, 0xad, + 0x58, 0xf7, 0x13, 0x64, 0x7c, 0x6a, 0xef, 0x0e, 0x20, 0xef, 0xcb, 0x91, 0x98, 0x24, 0xfb, 0x34, + 0x9c, 0x24, 0xe3, 0xc5, 0x8d, 0x7b, 0xa3, 0xf1, 0xfb, 0xde, 0x66, 0xa2, 0x7f, 0x99, 0x85, 0xd9, + 0xf0, 0x12, 0xa1, 0x2d, 0x00, 0xdd, 0x97, 0x5c, 0x6c, 0x94, 0x77, 0x46, 0x1a, 0xa6, 0x1a, 0x20, + 0x44, 0xef, 0x42, 0xae, 0x65, 0xf7, 0xc4, 0xaa, 0x25, 0x14, 0xee, 0x37, 0xec, 0x1e, 0xb7, 0x28, + 0x14, 0x8d, 0x46, 0x7a, 0xe2, 0xba, 0x61, 0xaa, 0x95, 0xe4, 0x57, 0x0f, 0x39, 0x8d, 0x40, 0x46, + 0xcf, 0x61, 0xf6, 0xc4, 0x31, 0x3d, 0x7d, 0xbf, 0x83, 0xb5, 0x8e, 0x7e, 0x8a, 0x1d, 0x61, 0x25, + 0x47, 0x30, 0x64, 0x65, 0x49, 0xf8, 0x82, 0xd2, 0x29, 0x7f, 0x0c, 0x05, 0x29, 0xd1, 0x90, 0x13, + 0x61, 0x17, 0x96, 0x7a, 0x14, 0x4d, 0x63, 0xf7, 0x75, 0x2d, 0xdd, 0x22, 0x9a, 0x8b, 0xe9, 0x31, + 0x2e, 0xbf, 0x24, 0x1a, 0x62, 0xa2, 0x17, 0x18, 0xf5, 0x06, 0x71, 0x70, 0x43, 0xb7, 0x48, 0x93, + 0x93, 0x2a, 0xc7, 0x50, 0x0a, 0x0c, 0x70, 0x88, 0x08, 0x75, 0x98, 0x97, 0xd7, 0x26, 0x5c, 0xec, + 0x89, 0xe3, 0x65, 0xa4, 0xce, 0xe7, 0x04, 0x5d, 0x13, 0x7b, 0xfc, 0xaa, 0xcb, 0x63, 0xb8, 0xa0, + 0x62, 0x62, 0x63, 0xcb, 0x5f, 0xcf, 0x17, 0xa4, 0x3d, 0x86, 0x05, 0x7f, 0x0b, 0x6a, 0x49, 0xf4, + 0xc2, 0x33, 0xbb, 0x27, 0x5d, 0x57, 0x11, 0x54, 0x0a, 0xbe, 0x6f, 0x43, 0x89, 0x47, 0xac, 0x5a, + 0x20, 0xaa, 0x01, 0x0e, 0x6a, 0xe8, 0x5d, 0xac, 0x2c, 0xc2, 0x42, 0x98, 0x8e, 0xf3, 0xbb, 0xf5, + 0x16, 0x14, 0xe4, 0x87, 0xfb, 0x68, 0x1a, 0x72, 0xbb, 0x1b, 0x3b, 0x95, 0x09, 0xfa, 0xb0, 0xb7, + 0xb9, 0x53, 0xc9, 0xdc, 0xea, 0x42, 0x25, 0xfa, 0xad, 0x3a, 0x5a, 0x82, 0x73, 0x3b, 0xea, 0xf6, + 0xce, 0xfa, 0xb3, 0xf5, 0xdd, 0xfa, 0x76, 0x43, 0xdb, 0x51, 0xeb, 0x9f, 0xac, 0xef, 0x6e, 0x55, + 0x26, 0xd0, 0x0a, 0x5c, 0x0a, 0xbe, 0x78, 0xbe, 0xdd, 0xdc, 0xd5, 0x76, 0xb7, 0xb5, 0x8d, 0xed, + 0xc6, 0xee, 0x7a, 0xbd, 0xb1, 0xa5, 0x56, 0x32, 0xe8, 0x12, 0x5c, 0x08, 0xa2, 0x3c, 0xa9, 0x6f, + 0xd6, 0xd5, 0xad, 0x0d, 0xfa, 0xbc, 0xfe, 0xa2, 0x92, 0xbd, 0x75, 0x17, 0xca, 0xa1, 0xcf, 0xc8, + 0xa9, 0x20, 0x3b, 0xdb, 0x9b, 0x95, 0x09, 0x54, 0x86, 0x62, 0x90, 0x4f, 0x01, 0xf2, 0x8d, 0xed, + 0xcd, 0xad, 0x4a, 0xf6, 0xd6, 0x03, 0x98, 0x8b, 0x7c, 0x80, 0x80, 0xe6, 0xa1, 0xdc, 0x5c, 0x6f, + 0x6c, 0x3e, 0xd9, 0xfe, 0x54, 0x53, 0xb7, 0xd6, 0x37, 0x3f, 0xab, 0x4c, 0xa0, 0x05, 0xa8, 0x48, + 0x50, 0x63, 0x7b, 0x97, 0x43, 0x33, 0xb7, 0x8e, 0x22, 0x3b, 0x15, 0xa3, 0xf3, 0x30, 0xef, 0x77, + 0xa3, 0x6d, 0xa8, 0x5b, 0xeb, 0xbb, 0x5b, 0xb4, 0xf7, 0x10, 0x58, 0xdd, 0x6b, 0x34, 0xea, 0x8d, + 0x67, 0x95, 0x0c, 0xe5, 0xda, 0x07, 0x6f, 0x7d, 0x5a, 0xa7, 0xc8, 0xd9, 0x30, 0xf2, 0x5e, 0xe3, + 0x27, 0x8d, 0xed, 0x57, 0x8d, 0x4a, 0x6e, 0xed, 0xef, 0xe7, 0x61, 0x56, 0xba, 0x8b, 0xd8, 0x61, + 0xf7, 0x98, 0x76, 0x60, 0x5a, 0xfe, 0xfd, 0x43, 0x82, 0x9d, 0x0f, 0xff, 0x69, 0x45, 0x6d, 0x65, + 0x00, 0x86, 0xd0, 0x8d, 0x09, 0xb4, 0xcf, 0xbc, 0xe8, 0xc0, 0x07, 0x21, 0xd7, 0x12, 0x7d, 0xd6, + 0xd8, 0x37, 0x28, 0xb5, 0xeb, 0x43, 0xf1, 0xfc, 0x3e, 0x30, 0x75, 0x94, 0x83, 0x5f, 0x3c, 0xa2, + 0xeb, 0x49, 0x1e, 0x6e, 0xc2, 0x27, 0x95, 0xb5, 0x1b, 0xc3, 0x11, 0xfd, 0x6e, 0x8e, 0xa0, 0x12, + 0xfd, 0xfa, 0x11, 0x25, 0xa4, 0x85, 0x53, 0x3e, 0xb1, 0xac, 0xdd, 0x1a, 0x05, 0x35, 0xd8, 0x59, + 0xec, 0x3b, 0xc1, 0x9b, 0xa3, 0x7c, 0x78, 0x95, 0xda, 0x59, 0xda, 0x37, 0x5a, 0x7c, 0x02, 0xc3, + 0x1f, 0x7b, 0xa0, 0xc4, 0x8f, 0xf2, 0x12, 0x3e, 0x15, 0x4a, 0x9a, 0xc0, 0xe4, 0xef, 0x46, 0x94, + 0x09, 0x74, 0x08, 0x73, 0x91, 0xdb, 0x26, 0x28, 0x81, 0x3c, 0xf9, 0x5a, 0x4d, 0xed, 0xe6, 0x08, + 0x98, 0x61, 0x8d, 0x08, 0xde, 0x2e, 0x49, 0xd6, 0x88, 0x84, 0xbb, 0x2b, 0xc9, 0x1a, 0x91, 0x78, + 0x51, 0x85, 0x29, 0x77, 0xe8, 0x56, 0x49, 0x92, 0x72, 0x27, 0xdd, 0x65, 0xa9, 0x5d, 0x1f, 0x8a, + 0x17, 0x9c, 0xb4, 0xc8, 0x1d, 0x93, 0xa4, 0x49, 0x4b, 0xbe, 0xc3, 0x52, 0xbb, 0x39, 0x02, 0x66, + 0x54, 0x0b, 0xfa, 0x15, 0xeb, 0x34, 0x2d, 0x88, 0xdd, 0xaf, 0x48, 0xd3, 0x82, 0x78, 0xf1, 0x5b, + 0x68, 0x41, 0xa4, 0xd2, 0x7c, 0x63, 0x84, 0x32, 0x51, 0xba, 0x16, 0x24, 0x17, 0x94, 0x94, 0x09, + 0xf4, 0x27, 0x19, 0xa8, 0xa6, 0x95, 0x60, 0x50, 0x82, 0x97, 0x38, 0xa4, 0x6a, 0x54, 0x5b, 0x1b, + 0x87, 0xc4, 0x97, 0xe2, 0x4b, 0x40, 0xf1, 0xd3, 0x13, 0xfd, 0x20, 0x69, 0x65, 0x52, 0xce, 0xe8, + 0xda, 0xbb, 0xa3, 0x21, 0xfb, 0x5d, 0x36, 0xa1, 0x20, 0x8b, 0x3e, 0x28, 0xc1, 0x4a, 0x47, 0x4a, + 0x4e, 0x35, 0x65, 0x10, 0x8a, 0xcf, 0xf4, 0x19, 0xe4, 0x29, 0x14, 0x5d, 0x4a, 0xc6, 0x96, 0xcc, + 0x96, 0xd3, 0x5e, 0xfb, 0x8c, 0x5e, 0xc2, 0x14, 0xaf, 0x72, 0xa0, 0x84, 0xfc, 0x45, 0xa8, 0x16, + 0x53, 0xbb, 0x9c, 0x8e, 0xe0, 0xb3, 0xfb, 0x19, 0xff, 0x67, 0x20, 0x51, 0xc0, 0x40, 0x57, 0x93, + 0xff, 0x56, 0x21, 0x5c, 0x2f, 0xa9, 0xbd, 0x33, 0x04, 0x2b, 0xb8, 0x29, 0x22, 0xbe, 0xf3, 0xf5, + 0xa1, 0x01, 0x50, 0xfa, 0xa6, 0x48, 0x0e, 0xb1, 0xb8, 0x92, 0xc4, 0x43, 0xb0, 0x24, 0x25, 0x49, + 0x0d, 0x7c, 0x93, 0x94, 0x24, 0x3d, 0xaa, 0x53, 0x26, 0x90, 0x07, 0xe7, 0x12, 0x12, 0x6e, 0xe8, + 0xdd, 0x34, 0x25, 0x4f, 0xca, 0xfe, 0xd5, 0x6e, 0x8f, 0x88, 0x1d, 0x5c, 0x7c, 0xb1, 0xe9, 0xdf, + 0x4e, 0xcf, 0x42, 0xa5, 0x2e, 0x7e, 0x74, 0x8b, 0xaf, 0xfd, 0x7b, 0x0e, 0x66, 0x78, 0x32, 0x55, + 0x78, 0x30, 0x9f, 0x01, 0xf4, 0xeb, 0x18, 0xe8, 0x4a, 0xf2, 0x9c, 0x84, 0x2a, 0x50, 0xb5, 0xab, + 0x83, 0x91, 0x82, 0x8a, 0x16, 0xa8, 0x09, 0xa0, 0xab, 0x43, 0x4a, 0x06, 0xa9, 0x8a, 0x96, 0x50, + 0x58, 0x50, 0x26, 0xd0, 0x27, 0x50, 0xf4, 0x93, 0xcf, 0x28, 0x29, 0x79, 0x1d, 0xc9, 0xae, 0xd7, + 0xae, 0x0c, 0xc4, 0x09, 0x4a, 0x1d, 0xc8, 0x2c, 0x27, 0x49, 0x1d, 0xcf, 0x60, 0x27, 0x49, 0x9d, + 0x94, 0x9e, 0xee, 0xcf, 0x09, 0xcf, 0x3f, 0xa5, 0xce, 0x49, 0x28, 0xfd, 0x97, 0x3a, 0x27, 0xe1, + 0x24, 0x96, 0x32, 0xb1, 0x66, 0x43, 0x99, 0x07, 0x07, 0x72, 0x75, 0x35, 0x98, 0x09, 0xc6, 0x0c, + 0x28, 0x55, 0xce, 0x50, 0x2c, 0x52, 0xbb, 0x36, 0x0c, 0x4d, 0xf6, 0xf8, 0xe4, 0xda, 0x6f, 0xbf, + 0x5a, 0xce, 0xfc, 0xcb, 0x57, 0xcb, 0x13, 0xbf, 0xf8, 0x7a, 0x39, 0xf3, 0xdb, 0xaf, 0x97, 0x33, + 0xff, 0xf4, 0xf5, 0x72, 0xe6, 0x3f, 0xbe, 0x5e, 0xce, 0xfc, 0xc5, 0x7f, 0x2e, 0x4f, 0xfc, 0xb4, + 0x20, 0xc9, 0xf7, 0xa7, 0xd8, 0x3f, 0x8a, 0xbd, 0xff, 0xbf, 0x01, 0x00, 0x00, 0xff, 0xff, 0x78, + 0xf0, 0xb4, 0xaf, 0x17, 0x4e, 0x00, 0x00, } diff --git a/cri/apis/v1alpha2/api.proto b/cri/apis/v1alpha2/api.proto index 6bdab2811c..cdd56679c0 100644 --- a/cri/apis/v1alpha2/api.proto +++ b/cri/apis/v1alpha2/api.proto @@ -111,6 +111,12 @@ service ImageService { rpc ImageFsInfo(ImageFsInfoRequest) returns (ImageFsInfoResponse) {} } +// VolumeService defines the public APIs for managing volumes. +service VolumeService { + // RemoveVolume removes the volume. + rpc RemoveVolume(RemoveVolumeRequest) returns (RemoveVolumeResponse) {} +} + message VersionRequest { // Version of the kubelet runtime API. string version = 1; @@ -181,6 +187,8 @@ message Mount { bool selinux_relabel = 4; // Requested propagation mode. MountPropagation propagation = 5; + // Name of volume + string name = 100; } // A NamespaceMode describes the intended namespace configuration for each @@ -1278,4 +1286,11 @@ message ReopenContainerLogRequest { } message ReopenContainerLogResponse{ -} \ No newline at end of file +} + +message RemoveVolumeRequest { + // Name of the volume to remove + string volume_name = 1; +} + +message RemoveVolumeResponse {} \ No newline at end of file diff --git a/cri/criservice.go b/cri/criservice.go index 63bba8298e..e6bde0da93 100644 --- a/cri/criservice.go +++ b/cri/criservice.go @@ -14,7 +14,7 @@ import ( ) // RunCriService start cri service if pouchd is specified with --enable-cri. -func RunCriService(daemonconfig *config.Config, containerMgr mgr.ContainerMgr, imageMgr mgr.ImageMgr, stopCh chan error, readyCh chan bool) { +func RunCriService(daemonconfig *config.Config, containerMgr mgr.ContainerMgr, imageMgr mgr.ImageMgr, volumeMgr mgr.VolumeMgr, stopCh chan error, readyCh chan bool) { var err error defer func() { @@ -30,7 +30,7 @@ func RunCriService(daemonconfig *config.Config, containerMgr mgr.ContainerMgr, i case "v1alpha1": err = runv1alpha1(daemonconfig, containerMgr, imageMgr, readyCh) case "v1alpha2": - err = runv1alpha2(daemonconfig, containerMgr, imageMgr, readyCh) + err = runv1alpha2(daemonconfig, containerMgr, imageMgr, volumeMgr, readyCh) default: readyCh <- false err = fmt.Errorf("invalid CRI version,failed to start CRI service") @@ -79,9 +79,9 @@ func runv1alpha1(daemonconfig *config.Config, containerMgr mgr.ContainerMgr, ima } // Start CRI service with CRI version: v1alpha2 -func runv1alpha2(daemonconfig *config.Config, containerMgr mgr.ContainerMgr, imageMgr mgr.ImageMgr, readyCh chan bool) error { +func runv1alpha2(daemonconfig *config.Config, containerMgr mgr.ContainerMgr, imageMgr mgr.ImageMgr, volumeMgr mgr.VolumeMgr, readyCh chan bool) error { logrus.Infof("Start CRI service with CRI version: v1alpha2") - criMgr, err := criv1alpha2.NewCriManager(daemonconfig, containerMgr, imageMgr) + criMgr, err := criv1alpha2.NewCriManager(daemonconfig, containerMgr, imageMgr,volumeMgr) if err != nil { readyCh <- false return fmt.Errorf("failed to get CriManager with error: %v", err) diff --git a/cri/v1alpha2/cri.go b/cri/v1alpha2/cri.go index b3c847603f..83fd15af1a 100644 --- a/cri/v1alpha2/cri.go +++ b/cri/v1alpha2/cri.go @@ -91,6 +91,9 @@ type CriMgr interface { // ImageServiceServer is interface of CRI image service. runtime.ImageServiceServer + // VolumeServiceServer is interface of CRI volume service. + runtime.VolumeServiceServer + // StreamServerStart starts the stream server of CRI. StreamServerStart() error } @@ -99,6 +102,7 @@ type CriMgr interface { type CriManager struct { ContainerMgr mgr.ContainerMgr ImageMgr mgr.ImageMgr + VolumeMgr mgr.VolumeMgr CniMgr cni.CniMgr // StreamServer is the stream server of CRI serves container streaming request. @@ -121,7 +125,7 @@ type CriManager struct { } // NewCriManager creates a brand new cri manager. -func NewCriManager(config *config.Config, ctrMgr mgr.ContainerMgr, imgMgr mgr.ImageMgr) (CriMgr, error) { +func NewCriManager(config *config.Config, ctrMgr mgr.ContainerMgr, imgMgr mgr.ImageMgr, volumeMgr mgr.VolumeMgr) (CriMgr, error) { streamServer, err := newStreamServer(ctrMgr, streamServerAddress, streamServerPort) if err != nil { return nil, fmt.Errorf("failed to create stream server for cri manager: %v", err) @@ -130,6 +134,7 @@ func NewCriManager(config *config.Config, ctrMgr mgr.ContainerMgr, imgMgr mgr.Im c := &CriManager{ ContainerMgr: ctrMgr, ImageMgr: imgMgr, + VolumeMgr: volumeMgr, CniMgr: cni.NewCniManager(&config.CriConfig), StreamServer: streamServer, SandboxBaseDir: path.Join(config.HomeDir, "sandboxes"), @@ -667,6 +672,7 @@ func (c *CriManager) ContainerStatus(ctx context.Context, r *runtime.ContainerSt HostPath: m.Source, ContainerPath: m.Destination, Readonly: !m.RW, + Name: m.Name, // Note: can't set SeLinuxRelabel. }) } @@ -1099,3 +1105,12 @@ func (c *CriManager) ImageFsInfo(ctx context.Context, r *runtime.ImageFsInfoRequ }, }, nil } + +// RemoveVolume removes the volume. +func (c *CriManager) RemoveVolume(ctx context.Context, r *runtime.RemoveVolumeRequest) (*runtime.RemoveVolumeResponse, error) { + volumeName := r.GetVolumeName() + if err := c.VolumeMgr.Remove(ctx, volumeName); err != nil { + return nil, err + } + return &runtime.RemoveVolumeResponse{}, nil +} diff --git a/cri/v1alpha2/cri_wrapper.go b/cri/v1alpha2/cri_wrapper.go index be757448b7..61142ee019 100644 --- a/cri/v1alpha2/cri_wrapper.go +++ b/cri/v1alpha2/cri_wrapper.go @@ -400,3 +400,16 @@ func (c *CriWrapper) ImageFsInfo(ctx context.Context, r *runtime.ImageFsInfoRequ }() return c.CriManager.ImageFsInfo(ctx, r) } + +// RemoveVolume removes the volume. +func (c *CriWrapper) RemoveVolume(ctx context.Context, r *runtime.RemoveVolumeRequest) (res *runtime.RemoveVolumeResponse, err error) { + logrus.Infof("RemoveVolume %q", r.GetVolumeName()) + defer func() { + if err != nil { + logrus.Errorf("RemoveVolume %q failed, error: %v", r.GetVolumeName(), err) + } else { + logrus.Infof("RemoveVolume %q returns successfully", r.GetVolumeName()) + } + }() + return c.CriManager.RemoveVolume(ctx, r) +} diff --git a/cri/v1alpha2/service/cri.go b/cri/v1alpha2/service/cri.go index 2a0367f45f..43950a1129 100644 --- a/cri/v1alpha2/service/cri.go +++ b/cri/v1alpha2/service/cri.go @@ -26,6 +26,7 @@ func NewService(cfg *config.Config, criMgr cri.CriMgr) (*Service, error) { runtime.RegisterRuntimeServiceServer(s.server, s.criMgr) runtime.RegisterImageServiceServer(s.server, s.criMgr) + runtime.RegisterVolumeServiceServer(s.server,s.criMgr) return s, nil } diff --git a/daemon/daemon.go b/daemon/daemon.go index 2671361b54..66875d1182 100644 --- a/daemon/daemon.go +++ b/daemon/daemon.go @@ -228,7 +228,7 @@ func (d *Daemon) Run() error { }() criStopCh := make(chan error) - go criservice.RunCriService(d.config, d.containerMgr, d.imageMgr, criStopCh, criReadyCh) + go criservice.RunCriService(d.config, d.containerMgr, d.imageMgr, d.volumeMgr, criStopCh, criReadyCh) httpReady := <-httpReadyCh criReady := <-criReadyCh diff --git a/hack/protoc.sh b/hack/protoc.sh index 4e36f0832e..616b215544 100644 --- a/hack/protoc.sh +++ b/hack/protoc.sh @@ -39,7 +39,6 @@ generateproto(){ } main(){ - API_ROOT="${DIR}/cri/apis/v1alpha1" YEAR_TIME=" $(date '+%Y')" generateproto API_ROOT="${DIR}/cri/apis/v1alpha2" YEAR_TIME="" generateproto } main "$@"