diff --git a/src/runtime/virtcontainers/pkg/agent/protocols/grpc/agent.pb.go b/src/runtime/virtcontainers/pkg/agent/protocols/grpc/agent.pb.go index f4874f297c..89550f56b1 100644 --- a/src/runtime/virtcontainers/pkg/agent/protocols/grpc/agent.pb.go +++ b/src/runtime/virtcontainers/pkg/agent/protocols/grpc/agent.pb.go @@ -41,10 +41,13 @@ type CreateContainerRequest struct { // meant to override the NEWPID config settings in the OCI spec. // The agent would receive an OCI spec with PID namespace cleared // out altogether and not just the pid ns path. - SandboxPidns bool `protobuf:"varint,7,opt,name=sandbox_pidns,json=sandboxPidns,proto3" json:"sandbox_pidns,omitempty"` - XXX_NoUnkeyedLiteral struct{} `json:"-"` - XXX_unrecognized []byte `json:"-"` - XXX_sizecache int32 `json:"-"` + SandboxPidns bool `protobuf:"varint,7,opt,name=sandbox_pidns,json=sandboxPidns,proto3" json:"sandbox_pidns,omitempty"` + // This field is used to declare a set of shared mount points + // that support cross-container sharing of mount objects. + SharedMounts []*SharedMount `protobuf:"bytes,8,rep,name=shared_mounts,json=sharedMounts,proto3" json:"shared_mounts,omitempty"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` } func (m *CreateContainerRequest) Reset() { *m = CreateContainerRequest{} } @@ -2273,6 +2276,58 @@ func (m *FSGroup) XXX_DiscardUnknown() { var xxx_messageInfo_FSGroup proto.InternalMessageInfo +// SharedMount declares a set of shared mount points that support +// cross-container sharing of mount objects. +type SharedMount struct { + // Name is used to identify a pair of shared mount points. + Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"` + // Src_ctr is used to specify the name of the source container. + SrcCtr string `protobuf:"bytes,2,opt,name=src_ctr,json=srcCtr,proto3" json:"src_ctr,omitempty"` + // Src_path is used to specify the path of the mount point. If the path doesn't + // exist in the rootfs, it will be created. + SrcPath string `protobuf:"bytes,3,opt,name=src_path,json=srcPath,proto3" json:"src_path,omitempty"` + // Dst_ctr is used to specify the name of the destination container. + DstCtr string `protobuf:"bytes,4,opt,name=dst_ctr,json=dstCtr,proto3" json:"dst_ctr,omitempty"` + // Dst_path is used to specify the path of the mount point. If the path doesn't + // exist in the rootfs, it will be created. + DstPath string `protobuf:"bytes,5,opt,name=dst_path,json=dstPath,proto3" json:"dst_path,omitempty"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` +} + +func (m *SharedMount) Reset() { *m = SharedMount{} } +func (*SharedMount) ProtoMessage() {} +func (*SharedMount) Descriptor() ([]byte, []int) { + return fileDescriptor_56ede974c0020f77, []int{54} +} +func (m *SharedMount) XXX_Unmarshal(b []byte) error { + return m.Unmarshal(b) +} +func (m *SharedMount) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + if deterministic { + return xxx_messageInfo_SharedMount.Marshal(b, m, deterministic) + } else { + b = b[:cap(b)] + n, err := m.MarshalToSizedBuffer(b) + if err != nil { + return nil, err + } + return b[:n], nil + } +} +func (m *SharedMount) XXX_Merge(src proto.Message) { + xxx_messageInfo_SharedMount.Merge(m, src) +} +func (m *SharedMount) XXX_Size() int { + return m.Size() +} +func (m *SharedMount) XXX_DiscardUnknown() { + xxx_messageInfo_SharedMount.DiscardUnknown(m) +} + +var xxx_messageInfo_SharedMount proto.InternalMessageInfo + // Storage represents both the rootfs of the container, and any volume that // could have been defined through the Mount list of the OCI specification. type Storage struct { @@ -2312,7 +2367,7 @@ type Storage struct { func (m *Storage) Reset() { *m = Storage{} } func (*Storage) ProtoMessage() {} func (*Storage) Descriptor() ([]byte, []int) { - return fileDescriptor_56ede974c0020f77, []int{54} + return fileDescriptor_56ede974c0020f77, []int{55} } func (m *Storage) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2383,7 +2438,7 @@ type Device struct { func (m *Device) Reset() { *m = Device{} } func (*Device) ProtoMessage() {} func (*Device) Descriptor() ([]byte, []int) { - return fileDescriptor_56ede974c0020f77, []int{55} + return fileDescriptor_56ede974c0020f77, []int{56} } func (m *Device) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2424,7 +2479,7 @@ type StringUser struct { func (m *StringUser) Reset() { *m = StringUser{} } func (*StringUser) ProtoMessage() {} func (*StringUser) Descriptor() ([]byte, []int) { - return fileDescriptor_56ede974c0020f77, []int{56} + return fileDescriptor_56ede974c0020f77, []int{57} } func (m *StringUser) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2481,7 +2536,7 @@ type CopyFileRequest struct { func (m *CopyFileRequest) Reset() { *m = CopyFileRequest{} } func (*CopyFileRequest) ProtoMessage() {} func (*CopyFileRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_56ede974c0020f77, []int{57} + return fileDescriptor_56ede974c0020f77, []int{58} } func (m *CopyFileRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2519,7 +2574,7 @@ type GetOOMEventRequest struct { func (m *GetOOMEventRequest) Reset() { *m = GetOOMEventRequest{} } func (*GetOOMEventRequest) ProtoMessage() {} func (*GetOOMEventRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_56ede974c0020f77, []int{58} + return fileDescriptor_56ede974c0020f77, []int{59} } func (m *GetOOMEventRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2558,7 +2613,7 @@ type OOMEvent struct { func (m *OOMEvent) Reset() { *m = OOMEvent{} } func (*OOMEvent) ProtoMessage() {} func (*OOMEvent) Descriptor() ([]byte, []int) { - return fileDescriptor_56ede974c0020f77, []int{59} + return fileDescriptor_56ede974c0020f77, []int{60} } func (m *OOMEvent) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2597,7 +2652,7 @@ type AddSwapRequest struct { func (m *AddSwapRequest) Reset() { *m = AddSwapRequest{} } func (*AddSwapRequest) ProtoMessage() {} func (*AddSwapRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_56ede974c0020f77, []int{60} + return fileDescriptor_56ede974c0020f77, []int{61} } func (m *AddSwapRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2635,7 +2690,7 @@ type GetMetricsRequest struct { func (m *GetMetricsRequest) Reset() { *m = GetMetricsRequest{} } func (*GetMetricsRequest) ProtoMessage() {} func (*GetMetricsRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_56ede974c0020f77, []int{61} + return fileDescriptor_56ede974c0020f77, []int{62} } func (m *GetMetricsRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2674,7 +2729,7 @@ type Metrics struct { func (m *Metrics) Reset() { *m = Metrics{} } func (*Metrics) ProtoMessage() {} func (*Metrics) Descriptor() ([]byte, []int) { - return fileDescriptor_56ede974c0020f77, []int{62} + return fileDescriptor_56ede974c0020f77, []int{63} } func (m *Metrics) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2714,7 +2769,7 @@ type VolumeStatsRequest struct { func (m *VolumeStatsRequest) Reset() { *m = VolumeStatsRequest{} } func (*VolumeStatsRequest) ProtoMessage() {} func (*VolumeStatsRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_56ede974c0020f77, []int{63} + return fileDescriptor_56ede974c0020f77, []int{64} } func (m *VolumeStatsRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2755,7 +2810,7 @@ type ResizeVolumeRequest struct { func (m *ResizeVolumeRequest) Reset() { *m = ResizeVolumeRequest{} } func (*ResizeVolumeRequest) ProtoMessage() {} func (*ResizeVolumeRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_56ede974c0020f77, []int{64} + return fileDescriptor_56ede974c0020f77, []int{65} } func (m *ResizeVolumeRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2794,7 +2849,7 @@ type SetPolicyRequest struct { func (m *SetPolicyRequest) Reset() { *m = SetPolicyRequest{} } func (*SetPolicyRequest) ProtoMessage() {} func (*SetPolicyRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_56ede974c0020f77, []int{65} + return fileDescriptor_56ede974c0020f77, []int{66} } func (m *SetPolicyRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2880,6 +2935,7 @@ func init() { proto.RegisterType((*MemHotplugByProbeRequest)(nil), "grpc.MemHotplugByProbeRequest") proto.RegisterType((*SetGuestDateTimeRequest)(nil), "grpc.SetGuestDateTimeRequest") proto.RegisterType((*FSGroup)(nil), "grpc.FSGroup") + proto.RegisterType((*SharedMount)(nil), "grpc.SharedMount") proto.RegisterType((*Storage)(nil), "grpc.Storage") proto.RegisterType((*Device)(nil), "grpc.Device") proto.RegisterType((*StringUser)(nil), "grpc.StringUser") @@ -2897,214 +2953,219 @@ func init() { func init() { proto.RegisterFile("agent.proto", fileDescriptor_56ede974c0020f77) } var fileDescriptor_56ede974c0020f77 = []byte{ - // 3310 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xc4, 0x3a, 0xcb, 0x6e, 0x1c, 0xc7, - 0x76, 0x77, 0x1e, 0xe4, 0xcc, 0x9c, 0x79, 0x71, 0x9a, 0x14, 0x35, 0x1a, 0xeb, 0xf2, 0xea, 0xb6, - 0xae, 0x24, 0x4a, 0x8e, 0xc8, 0x6b, 0xd9, 0xb0, 0x6c, 0x0b, 0x8e, 0x42, 0x52, 0x34, 0x49, 0xdb, - 0xb4, 0x26, 0x3d, 0xa2, 0x1d, 0x24, 0x48, 0x1a, 0xcd, 0xee, 0xe2, 0x4c, 0x99, 0xd3, 0x5d, 0xed, - 0xea, 0x6a, 0x8a, 0x74, 0x80, 0x20, 0xab, 0x64, 0x97, 0x65, 0x76, 0xf9, 0x81, 0x20, 0x7f, 0x90, - 0x55, 0x80, 0x2c, 0x8c, 0xac, 0xb2, 0xcc, 0x26, 0x41, 0xac, 0x4f, 0xc8, 0x17, 0x04, 0xf5, 0xea, - 0xc7, 0xbc, 0x64, 0x10, 0x02, 0xee, 0x66, 0xd0, 0x75, 0xea, 0xd4, 0x79, 0xd5, 0xa9, 0x53, 0xe7, - 0x9c, 0x1a, 0xa8, 0x3b, 0x43, 0x14, 0xb0, 0xad, 0x90, 0x12, 0x46, 0x8c, 0xf2, 0x90, 0x86, 0x6e, - 0xaf, 0x46, 0x5c, 0x2c, 0x01, 0xbd, 0x9a, 0x1b, 0xe9, 0xcf, 0x3a, 0xbb, 0x0a, 0x51, 0xa4, 0x06, - 0xef, 0x0d, 0x09, 0x19, 0x8e, 0xd1, 0xb6, 0x18, 0x9d, 0xc6, 0x67, 0xdb, 0xc8, 0x0f, 0xd9, 0x95, - 0x9c, 0x34, 0xff, 0xa9, 0x08, 0xeb, 0x7b, 0x14, 0x39, 0x0c, 0xed, 0x91, 0x80, 0x39, 0x38, 0x40, - 0xd4, 0x42, 0x3f, 0xc4, 0x28, 0x62, 0xc6, 0x6f, 0xa1, 0xe1, 0x6a, 0x98, 0x8d, 0xbd, 0x6e, 0xe1, - 0x4e, 0x61, 0xb3, 0x66, 0xd5, 0x13, 0xd8, 0x91, 0x67, 0xdc, 0x84, 0x0a, 0xba, 0x44, 0x2e, 0x9f, - 0x2d, 0x8a, 0xd9, 0x65, 0x3e, 0x3c, 0xf2, 0x8c, 0x0f, 0xa0, 0x1e, 0x31, 0x8a, 0x83, 0xa1, 0x1d, - 0x47, 0x88, 0x76, 0x4b, 0x77, 0x0a, 0x9b, 0xf5, 0x27, 0x2b, 0x5b, 0x5c, 0xe4, 0xad, 0x81, 0x98, - 0x38, 0x89, 0x10, 0xb5, 0x20, 0x4a, 0xbe, 0x8d, 0xfb, 0x50, 0xf1, 0xd0, 0x05, 0x76, 0x51, 0xd4, - 0x2d, 0xdf, 0x29, 0x6d, 0xd6, 0x9f, 0x34, 0x24, 0xfa, 0x0b, 0x01, 0xb4, 0xf4, 0xa4, 0xf1, 0x10, - 0xaa, 0x11, 0x23, 0xd4, 0x19, 0xa2, 0xa8, 0xbb, 0x24, 0x10, 0x9b, 0x9a, 0xae, 0x80, 0x5a, 0xc9, - 0xb4, 0x71, 0x1b, 0x4a, 0x2f, 0xf7, 0x8e, 0xba, 0xcb, 0x82, 0x3b, 0x28, 0xac, 0x10, 0xb9, 0x16, - 0x07, 0x1b, 0x77, 0xa1, 0x19, 0x39, 0x81, 0x77, 0x4a, 0x2e, 0xed, 0x10, 0x7b, 0x41, 0xd4, 0xad, - 0xdc, 0x29, 0x6c, 0x56, 0xad, 0x86, 0x02, 0xf6, 0x39, 0xcc, 0xfc, 0x0c, 0x6e, 0x0c, 0x98, 0x43, - 0xd9, 0x35, 0xac, 0x63, 0x9e, 0xc0, 0xba, 0x85, 0x7c, 0x72, 0x71, 0x2d, 0xd3, 0x76, 0xa1, 0xc2, - 0xb0, 0x8f, 0x48, 0xcc, 0x84, 0x69, 0x9b, 0x96, 0x1e, 0x9a, 0xff, 0x52, 0x00, 0x63, 0xff, 0x12, - 0xb9, 0x7d, 0x4a, 0x5c, 0x14, 0x45, 0x7f, 0xa0, 0xed, 0x7a, 0x00, 0x95, 0x50, 0x0a, 0xd0, 0x2d, - 0x0b, 0x74, 0xb5, 0x0b, 0x5a, 0x2a, 0x3d, 0x6b, 0x7e, 0x0f, 0x6b, 0x03, 0x3c, 0x0c, 0x9c, 0xf1, - 0x3b, 0x94, 0x77, 0x1d, 0x96, 0x23, 0x41, 0x53, 0x88, 0xda, 0xb4, 0xd4, 0xc8, 0xec, 0x83, 0xf1, - 0x9d, 0x83, 0xd9, 0xbb, 0xe3, 0x64, 0x3e, 0x86, 0xd5, 0x1c, 0xc5, 0x28, 0x24, 0x41, 0x84, 0x84, - 0x00, 0xcc, 0x61, 0x71, 0x24, 0x88, 0x2d, 0x59, 0x6a, 0x64, 0x12, 0x58, 0x3f, 0x09, 0xbd, 0x6b, - 0x9e, 0xa6, 0x27, 0x50, 0xa3, 0x28, 0x22, 0x31, 0xe5, 0x67, 0xa0, 0x28, 0x8c, 0xba, 0x26, 0x8d, - 0xfa, 0x35, 0x0e, 0xe2, 0x4b, 0x4b, 0xcf, 0x59, 0x29, 0x9a, 0xf2, 0x4f, 0x16, 0x5d, 0xc7, 0x3f, - 0x3f, 0x83, 0x1b, 0x7d, 0x27, 0x8e, 0xae, 0x23, 0xab, 0xf9, 0x8c, 0xfb, 0x76, 0x14, 0xfb, 0xd7, - 0x5a, 0xfc, 0xcf, 0x05, 0xa8, 0xee, 0x85, 0xf1, 0x49, 0xe4, 0x0c, 0x91, 0xf1, 0x1b, 0xa8, 0x33, - 0xc2, 0x9c, 0xb1, 0x1d, 0xf3, 0xa1, 0x40, 0x2f, 0x5b, 0x20, 0x40, 0x12, 0xe1, 0xb7, 0xd0, 0x08, - 0x11, 0x75, 0xc3, 0x58, 0x61, 0x14, 0xef, 0x94, 0x36, 0xcb, 0x56, 0x5d, 0xc2, 0x24, 0xca, 0x16, - 0xac, 0x8a, 0x39, 0x1b, 0x07, 0xf6, 0x39, 0xa2, 0x01, 0x1a, 0xfb, 0xc4, 0x43, 0xc2, 0x39, 0xca, - 0x56, 0x47, 0x4c, 0x1d, 0x05, 0x5f, 0x25, 0x13, 0xc6, 0x23, 0xe8, 0x24, 0xf8, 0xdc, 0xe3, 0x05, - 0x76, 0x59, 0x60, 0xb7, 0x15, 0xf6, 0x89, 0x02, 0x9b, 0x7f, 0x03, 0xad, 0x57, 0x23, 0x4a, 0x18, - 0x1b, 0xe3, 0x60, 0xf8, 0xc2, 0x61, 0x0e, 0x3f, 0x9a, 0x21, 0xa2, 0x98, 0x78, 0x91, 0x92, 0x56, - 0x0f, 0x8d, 0xf7, 0xa1, 0xc3, 0x24, 0x2e, 0xf2, 0x6c, 0x8d, 0x53, 0x14, 0x38, 0x2b, 0xc9, 0x44, - 0x5f, 0x21, 0xdf, 0x83, 0x56, 0x8a, 0xcc, 0x0f, 0xb7, 0x92, 0xb7, 0x99, 0x40, 0x5f, 0x61, 0x1f, - 0x99, 0x17, 0xc2, 0x56, 0x62, 0x93, 0x8d, 0xf7, 0xa1, 0x96, 0xda, 0xa1, 0x20, 0x3c, 0xa4, 0x25, - 0x3d, 0x44, 0x9b, 0xd3, 0xaa, 0x26, 0x46, 0xf9, 0x1c, 0xda, 0x2c, 0x11, 0xdc, 0xf6, 0x1c, 0xe6, - 0xe4, 0x9d, 0x2a, 0xaf, 0x95, 0xd5, 0x62, 0xb9, 0xb1, 0xf9, 0x0c, 0x6a, 0x7d, 0xec, 0x45, 0x92, - 0x71, 0x17, 0x2a, 0x6e, 0x4c, 0x29, 0x0a, 0x98, 0x56, 0x59, 0x0d, 0x8d, 0x35, 0x58, 0x1a, 0x63, - 0x1f, 0x33, 0xa5, 0xa6, 0x1c, 0x98, 0x04, 0xe0, 0x18, 0xf9, 0x84, 0x5e, 0x09, 0x83, 0xad, 0xc1, - 0x52, 0x76, 0x73, 0xe5, 0xc0, 0x78, 0x0f, 0x6a, 0xbe, 0x73, 0x99, 0x6c, 0x2a, 0x9f, 0xa9, 0xfa, - 0xce, 0xa5, 0x14, 0xbe, 0x0b, 0x95, 0x33, 0x07, 0x8f, 0xdd, 0x80, 0x29, 0xab, 0xe8, 0x61, 0xca, - 0xb0, 0x9c, 0x65, 0xf8, 0xef, 0x45, 0xa8, 0x4b, 0x8e, 0x52, 0xe0, 0x35, 0x58, 0x72, 0x1d, 0x77, - 0x94, 0xb0, 0x14, 0x03, 0xe3, 0xbe, 0x16, 0xa4, 0x98, 0x8d, 0x70, 0xa9, 0xa4, 0x5a, 0xb4, 0x6d, - 0x80, 0xe8, 0xb5, 0x13, 0x2a, 0xd9, 0x4a, 0x73, 0x90, 0x6b, 0x1c, 0x47, 0x8a, 0xfb, 0x21, 0x34, - 0xa4, 0xdf, 0xa9, 0x25, 0xe5, 0x39, 0x4b, 0xea, 0x12, 0x4b, 0x2e, 0xba, 0x0b, 0xcd, 0x38, 0x42, - 0xf6, 0x08, 0x23, 0xea, 0x50, 0x77, 0x74, 0xd5, 0x5d, 0x92, 0x17, 0x50, 0x1c, 0xa1, 0x43, 0x0d, - 0x33, 0x9e, 0xc0, 0x12, 0x8f, 0x2d, 0x51, 0x77, 0x59, 0xdc, 0x75, 0xb7, 0xb3, 0x24, 0x85, 0xaa, - 0x5b, 0xe2, 0x77, 0x3f, 0x60, 0xf4, 0xca, 0x92, 0xa8, 0xbd, 0x4f, 0x00, 0x52, 0xa0, 0xb1, 0x02, - 0xa5, 0x73, 0x74, 0xa5, 0xce, 0x21, 0xff, 0xe4, 0xc6, 0xb9, 0x70, 0xc6, 0xb1, 0xb6, 0xba, 0x1c, - 0x7c, 0x56, 0xfc, 0xa4, 0x60, 0xba, 0xd0, 0xde, 0x1d, 0x9f, 0x63, 0x92, 0x59, 0xbe, 0x06, 0x4b, - 0xbe, 0xf3, 0x3d, 0xa1, 0xda, 0x92, 0x62, 0x20, 0xa0, 0x38, 0x20, 0x54, 0x93, 0x10, 0x03, 0xa3, - 0x05, 0x45, 0x12, 0x0a, 0x7b, 0xd5, 0xac, 0x22, 0x09, 0x53, 0x46, 0xe5, 0x0c, 0x23, 0xf3, 0x7f, - 0xca, 0x00, 0x29, 0x17, 0xc3, 0x82, 0x1e, 0x26, 0x76, 0x84, 0x28, 0xbf, 0xdf, 0xed, 0xd3, 0x2b, - 0x86, 0x22, 0x9b, 0x22, 0x37, 0xa6, 0x11, 0xbe, 0xe0, 0xfb, 0xc7, 0xd5, 0xbe, 0x21, 0xd5, 0x9e, - 0x90, 0xcd, 0xba, 0x89, 0xc9, 0x40, 0xae, 0xdb, 0xe5, 0xcb, 0x2c, 0xbd, 0xca, 0x38, 0x82, 0x1b, - 0x29, 0x4d, 0x2f, 0x43, 0xae, 0xb8, 0x88, 0xdc, 0x6a, 0x42, 0xce, 0x4b, 0x49, 0xed, 0xc3, 0x2a, - 0x26, 0xf6, 0x0f, 0x31, 0x8a, 0x73, 0x84, 0x4a, 0x8b, 0x08, 0x75, 0x30, 0xf9, 0x53, 0xb1, 0x20, - 0x25, 0xd3, 0x87, 0x5b, 0x19, 0x2d, 0xf9, 0x71, 0xcf, 0x10, 0x2b, 0x2f, 0x22, 0xb6, 0x9e, 0x48, - 0xc5, 0xe3, 0x41, 0x4a, 0xf1, 0x4b, 0x58, 0xc7, 0xc4, 0x7e, 0xed, 0x60, 0x36, 0x49, 0x6e, 0xe9, - 0x2d, 0x4a, 0xf2, 0x1b, 0x2d, 0x4f, 0x4b, 0x2a, 0xe9, 0x23, 0x3a, 0xcc, 0x29, 0xb9, 0xfc, 0x16, - 0x25, 0x8f, 0xc5, 0x82, 0x94, 0xcc, 0x0e, 0x74, 0x30, 0x99, 0x94, 0xa6, 0xb2, 0x88, 0x48, 0x1b, - 0x93, 0xbc, 0x24, 0xbb, 0xd0, 0x89, 0x90, 0xcb, 0x08, 0xcd, 0x3a, 0x41, 0x75, 0x11, 0x89, 0x15, - 0x85, 0x9f, 0xd0, 0x30, 0xff, 0x02, 0x1a, 0x87, 0xf1, 0x10, 0xb1, 0xf1, 0x69, 0x12, 0x0c, 0xde, - 0x59, 0xfc, 0x31, 0xff, 0xaf, 0x08, 0xf5, 0xbd, 0x21, 0x25, 0x71, 0x98, 0x8b, 0xc9, 0xf2, 0x90, - 0x4e, 0xc6, 0x64, 0x81, 0x22, 0x62, 0xb2, 0x44, 0xfe, 0x08, 0x1a, 0xbe, 0x38, 0xba, 0x0a, 0x5f, - 0xc6, 0xa1, 0xce, 0xd4, 0xa1, 0xb6, 0xea, 0x7e, 0x26, 0x98, 0x6d, 0x01, 0x84, 0xd8, 0x8b, 0xd4, - 0x1a, 0x19, 0x8e, 0xda, 0x2a, 0xdd, 0xd2, 0x21, 0xda, 0xaa, 0x85, 0x49, 0xb4, 0xfe, 0x00, 0xea, - 0xa7, 0xdc, 0x48, 0x6a, 0x41, 0x2e, 0x18, 0xa5, 0xd6, 0xb3, 0xe0, 0x34, 0x3d, 0x84, 0x87, 0xd0, - 0x1c, 0x49, 0x93, 0xa9, 0x45, 0xd2, 0x87, 0xee, 0x2a, 0x4d, 0x52, 0x7d, 0xb7, 0xb2, 0x96, 0x95, - 0x1b, 0xd0, 0x18, 0x65, 0x40, 0xbd, 0x01, 0x74, 0xa6, 0x50, 0x66, 0xc4, 0xa0, 0xcd, 0x6c, 0x0c, - 0xaa, 0x3f, 0x31, 0x24, 0xa3, 0xec, 0xca, 0x6c, 0x5c, 0xfa, 0x87, 0x22, 0x34, 0xbe, 0x41, 0xec, - 0x35, 0xa1, 0xe7, 0x52, 0x5e, 0x03, 0xca, 0x81, 0xe3, 0x23, 0x45, 0x51, 0x7c, 0x1b, 0xb7, 0xa0, - 0x4a, 0x2f, 0x65, 0x00, 0x51, 0xfb, 0x59, 0xa1, 0x97, 0x22, 0x30, 0x18, 0xbf, 0x06, 0xa0, 0x97, - 0x76, 0xe8, 0xb8, 0xe7, 0x48, 0x59, 0xb0, 0x6c, 0xd5, 0xe8, 0x65, 0x5f, 0x02, 0xb8, 0x2b, 0xd0, - 0x4b, 0x1b, 0x51, 0x4a, 0x68, 0xa4, 0x62, 0x55, 0x95, 0x5e, 0xee, 0x8b, 0xb1, 0x5a, 0xeb, 0x51, - 0x12, 0x86, 0xc8, 0x13, 0x31, 0x5a, 0xac, 0x7d, 0x21, 0x01, 0x9c, 0x2b, 0xd3, 0x5c, 0x97, 0x25, - 0x57, 0x96, 0x72, 0x65, 0x29, 0xd7, 0x8a, 0x5c, 0xc9, 0xb2, 0x5c, 0x59, 0xc2, 0xb5, 0x2a, 0xb9, - 0xb2, 0x0c, 0x57, 0x96, 0x72, 0xad, 0xe9, 0xb5, 0x8a, 0xab, 0xf9, 0xf7, 0x05, 0x58, 0x9f, 0x4c, - 0xfc, 0x54, 0x6e, 0xfa, 0x11, 0x34, 0x5c, 0xb1, 0x5f, 0x39, 0x9f, 0xec, 0x4c, 0xed, 0xa4, 0x55, - 0x77, 0x33, 0x6e, 0xfc, 0x14, 0x9a, 0x81, 0x34, 0x70, 0xe2, 0x9a, 0xa5, 0x74, 0x5f, 0xb2, 0xb6, - 0xb7, 0x1a, 0x41, 0x66, 0x64, 0x7a, 0x60, 0x7c, 0x47, 0x31, 0x43, 0x03, 0x46, 0x91, 0xe3, 0xbf, - 0x8b, 0xec, 0xde, 0x80, 0xb2, 0xc8, 0x56, 0xf8, 0x36, 0x35, 0x2c, 0xf1, 0x6d, 0x3e, 0x80, 0xd5, - 0x1c, 0x17, 0xa5, 0xeb, 0x0a, 0x94, 0xc6, 0x28, 0x10, 0xd4, 0x9b, 0x16, 0xff, 0x34, 0x1d, 0xe8, - 0x58, 0xc8, 0xf1, 0xde, 0x9d, 0x34, 0x8a, 0x45, 0x29, 0x65, 0xb1, 0x09, 0x46, 0x96, 0x85, 0x12, - 0x45, 0x4b, 0x5d, 0xc8, 0x48, 0xfd, 0x12, 0x3a, 0x7b, 0x63, 0x12, 0xa1, 0x01, 0xf3, 0x70, 0xf0, - 0x2e, 0xca, 0x91, 0xbf, 0x86, 0xd5, 0x57, 0xec, 0xea, 0x3b, 0x4e, 0x2c, 0xc2, 0x3f, 0xa2, 0x77, - 0xa4, 0x1f, 0x25, 0xaf, 0xb5, 0x7e, 0x94, 0xbc, 0xe6, 0xc5, 0x8d, 0x4b, 0xc6, 0xb1, 0x1f, 0x88, - 0xa3, 0xd0, 0xb4, 0xd4, 0xc8, 0xdc, 0x85, 0x86, 0xcc, 0xa1, 0x8f, 0x89, 0x17, 0x8f, 0xd1, 0xcc, - 0x33, 0xb8, 0x01, 0x10, 0x3a, 0xd4, 0xf1, 0x11, 0x43, 0x54, 0xfa, 0x50, 0xcd, 0xca, 0x40, 0xcc, - 0x7f, 0x2c, 0xc2, 0x9a, 0xec, 0x37, 0x0c, 0x64, 0x99, 0xad, 0x55, 0xe8, 0x41, 0x75, 0x44, 0x22, - 0x96, 0x21, 0x98, 0x8c, 0xb9, 0x88, 0xbc, 0x3e, 0x97, 0xd4, 0xf8, 0x67, 0xae, 0x09, 0x50, 0x5a, - 0xdc, 0x04, 0x98, 0x2a, 0xf3, 0xcb, 0xd3, 0x65, 0x3e, 0x3f, 0x6d, 0x1a, 0x09, 0xcb, 0x33, 0x5e, - 0xb3, 0x6a, 0x0a, 0x72, 0xe4, 0x19, 0xf7, 0xa1, 0x3d, 0xe4, 0x52, 0xda, 0x23, 0x42, 0xce, 0xed, - 0xd0, 0x61, 0x23, 0x71, 0xd4, 0x6b, 0x56, 0x53, 0x80, 0x0f, 0x09, 0x39, 0xef, 0x3b, 0x6c, 0x64, - 0x7c, 0x0a, 0x2d, 0x95, 0x06, 0xfa, 0xc2, 0x44, 0x91, 0xba, 0xfc, 0xd4, 0x29, 0xca, 0x5a, 0xcf, - 0x6a, 0x9e, 0x67, 0x46, 0x91, 0x79, 0x13, 0x6e, 0xbc, 0x40, 0x11, 0xa3, 0xe4, 0x2a, 0x6f, 0x18, - 0xf3, 0x01, 0xdc, 0x93, 0x5d, 0x84, 0x01, 0x73, 0xc6, 0xe8, 0x5b, 0x4c, 0x19, 0x26, 0x67, 0xd1, - 0x60, 0xe4, 0x50, 0x74, 0x4c, 0xe2, 0x80, 0xe9, 0x32, 0xd7, 0xfc, 0x63, 0x80, 0xa3, 0x80, 0x21, - 0x7a, 0xe6, 0xb8, 0x28, 0x32, 0x7e, 0x9f, 0x1d, 0xa9, 0x2c, 0x6a, 0x65, 0x4b, 0xf6, 0x85, 0x92, - 0x09, 0x2b, 0x83, 0x63, 0x6e, 0xc1, 0xb2, 0x45, 0x62, 0x1e, 0xb7, 0x7e, 0xa7, 0xbf, 0xd4, 0xba, - 0x86, 0x5a, 0x27, 0x80, 0x96, 0x9a, 0x33, 0x0f, 0x75, 0xad, 0x9b, 0x92, 0x53, 0x7b, 0xb9, 0x05, - 0x35, 0xac, 0x61, 0x2a, 0xfc, 0x4c, 0xb3, 0x4e, 0x51, 0xcc, 0x67, 0xb0, 0x2a, 0x29, 0x49, 0xca, - 0x9a, 0xcc, 0xef, 0x60, 0x99, 0x6a, 0x31, 0x0a, 0x69, 0x43, 0x48, 0x21, 0xa9, 0x39, 0xf3, 0x08, - 0x6e, 0xcb, 0xc5, 0xfb, 0xe1, 0x08, 0xf9, 0x88, 0x3a, 0xe3, 0x9c, 0x59, 0x72, 0xae, 0x52, 0x58, - 0xe8, 0x2a, 0x7c, 0x0f, 0xbe, 0xc6, 0x11, 0x4b, 0x6d, 0xa2, 0x4d, 0xbb, 0x0a, 0x1d, 0x3e, 0x91, - 0x13, 0xcf, 0xfc, 0x02, 0x1a, 0x3b, 0x56, 0xff, 0x1b, 0x84, 0x87, 0xa3, 0x53, 0x1e, 0xb1, 0x3f, - 0xce, 0x8f, 0x15, 0x33, 0x43, 0x29, 0x9e, 0x99, 0xb2, 0x72, 0x78, 0xe6, 0x97, 0xb0, 0xbe, 0xe3, - 0x79, 0x59, 0x90, 0x16, 0xfd, 0xf7, 0x50, 0x0b, 0x32, 0xe4, 0x32, 0xf7, 0x64, 0x0e, 0x3b, 0x45, - 0x32, 0x1f, 0x83, 0x71, 0x80, 0xd8, 0x51, 0xff, 0x95, 0x73, 0x3a, 0x4e, 0x0d, 0x79, 0x13, 0x2a, - 0x38, 0xb2, 0x71, 0x78, 0xf1, 0xb1, 0xa0, 0x52, 0xb5, 0x96, 0x71, 0x74, 0x14, 0x5e, 0x7c, 0x6c, - 0x3e, 0x84, 0xd5, 0x1c, 0xfa, 0x82, 0x50, 0xb6, 0x03, 0xc6, 0xe0, 0x97, 0x53, 0x4e, 0x48, 0x14, - 0x33, 0x24, 0x1e, 0xc2, 0xea, 0xe0, 0x17, 0x72, 0xfb, 0x4b, 0x58, 0x7d, 0x19, 0x8c, 0x71, 0x80, - 0xf6, 0xfa, 0x27, 0xc7, 0x28, 0x89, 0xe3, 0x06, 0x94, 0x79, 0xbe, 0xab, 0x78, 0x89, 0x6f, 0x2e, - 0x42, 0x70, 0x6a, 0xbb, 0x61, 0x1c, 0xa9, 0x46, 0xd9, 0x72, 0x70, 0xba, 0x17, 0xc6, 0x11, 0xbf, - 0x98, 0x79, 0x62, 0x46, 0x82, 0xf1, 0x95, 0x88, 0x6e, 0x55, 0xab, 0xe2, 0x86, 0xf1, 0xcb, 0x60, - 0x7c, 0x65, 0xfe, 0x91, 0xe8, 0x5e, 0x20, 0xe4, 0x59, 0x4e, 0xe0, 0x11, 0xff, 0x05, 0xba, 0xc8, - 0x70, 0x98, 0x92, 0xfb, 0xa7, 0x02, 0x34, 0x76, 0x86, 0x28, 0x60, 0x2f, 0x10, 0x73, 0xf0, 0x58, - 0x54, 0xc3, 0x17, 0x88, 0x46, 0x98, 0x04, 0x2a, 0x54, 0xe9, 0xa1, 0xf1, 0x1b, 0xa8, 0xe3, 0x00, - 0x33, 0xdb, 0x73, 0x90, 0x4f, 0x02, 0x41, 0xa5, 0x6a, 0x01, 0x07, 0xbd, 0x10, 0x10, 0xe3, 0x01, - 0xb4, 0x65, 0x23, 0xd3, 0x1e, 0x39, 0x81, 0x37, 0xe6, 0x41, 0xb2, 0x24, 0xc2, 0x5a, 0x4b, 0x82, - 0x0f, 0x15, 0xd4, 0x78, 0x08, 0x2b, 0xca, 0x2f, 0x53, 0xcc, 0xb2, 0xc0, 0x6c, 0x2b, 0x78, 0x0e, - 0x35, 0x0e, 0x43, 0x42, 0x59, 0x64, 0x47, 0xc8, 0x75, 0x89, 0x1f, 0xaa, 0x52, 0xb2, 0xad, 0xe1, - 0x03, 0x09, 0x36, 0x87, 0xb0, 0x7a, 0xc0, 0xf5, 0x54, 0x9a, 0xa4, 0x27, 0xad, 0xe5, 0x23, 0xdf, - 0x3e, 0x1d, 0x13, 0xf7, 0xdc, 0xe6, 0x17, 0x8b, 0xb2, 0x30, 0x4f, 0x56, 0x77, 0x39, 0x70, 0x80, - 0x7f, 0x14, 0x5d, 0x13, 0x8e, 0x35, 0x22, 0x2c, 0x1c, 0xc7, 0x43, 0x3b, 0xa4, 0xe4, 0x14, 0x29, - 0x15, 0xdb, 0x3e, 0xf2, 0x0f, 0x25, 0xbc, 0xcf, 0xc1, 0xe6, 0xbf, 0x16, 0x60, 0x2d, 0xcf, 0x49, - 0xed, 0xf6, 0x36, 0xac, 0xe5, 0x59, 0xa9, 0xd4, 0x49, 0xa6, 0xe6, 0x9d, 0x2c, 0x43, 0x99, 0x44, - 0x3d, 0x85, 0xa6, 0x68, 0x7b, 0xdb, 0x9e, 0xa4, 0x94, 0x4f, 0x18, 0xb3, 0xfb, 0x62, 0x35, 0x9c, - 0xec, 0x2e, 0x7d, 0x0a, 0xb7, 0x94, 0xfa, 0xf6, 0xb4, 0xd8, 0xd2, 0x21, 0xd6, 0x15, 0xc2, 0xf1, - 0x84, 0xf4, 0x5f, 0x43, 0x37, 0x05, 0xed, 0x5e, 0x09, 0x60, 0x7a, 0x28, 0x57, 0x27, 0x94, 0xdd, - 0xf1, 0x3c, 0x2a, 0x4e, 0x7b, 0xd9, 0x9a, 0x35, 0x65, 0x3e, 0x87, 0x9b, 0x03, 0xc4, 0xa4, 0x35, - 0x1c, 0xa6, 0xaa, 0x38, 0x49, 0x6c, 0x05, 0x4a, 0x03, 0xe4, 0x0a, 0xe5, 0x4b, 0x16, 0xff, 0xe4, - 0x0e, 0x78, 0x12, 0x21, 0x57, 0x68, 0x59, 0xb2, 0xc4, 0xb7, 0x19, 0x42, 0xe5, 0x8b, 0xc1, 0x01, - 0xcf, 0xd5, 0xb8, 0x53, 0xcb, 0xdc, 0x4e, 0xdd, 0xe3, 0x4d, 0xab, 0x22, 0xc6, 0x47, 0x9e, 0xf1, - 0x25, 0xac, 0xca, 0x29, 0x77, 0xe4, 0x04, 0x43, 0x64, 0x87, 0x64, 0x8c, 0x5d, 0xe9, 0xfa, 0xad, - 0x27, 0x3d, 0x15, 0x86, 0x14, 0x9d, 0x3d, 0x81, 0xd2, 0x17, 0x18, 0x56, 0x67, 0x38, 0x09, 0x32, - 0xff, 0xbb, 0x00, 0x15, 0x15, 0x1f, 0x79, 0x3a, 0xe0, 0x51, 0x7c, 0x81, 0xa8, 0x72, 0x76, 0x35, - 0x32, 0xee, 0x41, 0x4b, 0x7e, 0xd9, 0x24, 0x64, 0x98, 0x24, 0x17, 0x74, 0x53, 0x42, 0x5f, 0x4a, - 0xa0, 0x68, 0x95, 0x8a, 0x66, 0xa5, 0xea, 0x0b, 0xa8, 0x11, 0x87, 0x9f, 0x45, 0x5c, 0x28, 0x71, - 0x21, 0xd7, 0x2c, 0x35, 0xe2, 0x87, 0x4b, 0xd3, 0x5b, 0x12, 0xf4, 0xf4, 0x90, 0x1f, 0x2e, 0x9f, - 0x87, 0x76, 0x3b, 0x24, 0x38, 0x60, 0xea, 0x06, 0x06, 0x01, 0xea, 0x73, 0x88, 0xb1, 0x09, 0xd5, - 0xb3, 0xc8, 0x16, 0xda, 0x88, 0x6c, 0x3b, 0x09, 0xf5, 0x4a, 0x6b, 0xab, 0x72, 0x16, 0x89, 0x0f, - 0xf3, 0xef, 0x0a, 0xb0, 0x2c, 0x1f, 0x16, 0x8c, 0x16, 0x14, 0x93, 0x8c, 0xa9, 0x88, 0x45, 0xf6, - 0x29, 0xa4, 0x92, 0x59, 0x92, 0xf8, 0xe6, 0x31, 0xe6, 0xc2, 0x97, 0xf7, 0xbe, 0x52, 0xe2, 0xc2, - 0x17, 0x17, 0xfe, 0x3d, 0x68, 0xa5, 0x89, 0x97, 0x98, 0x97, 0xca, 0x34, 0x13, 0xa8, 0x40, 0x9b, - 0xab, 0x93, 0xf9, 0x67, 0x00, 0x69, 0x83, 0x9d, 0xbb, 0x43, 0x9c, 0x08, 0xc3, 0x3f, 0x39, 0x64, - 0x98, 0xa4, 0x6c, 0xfc, 0xd3, 0xb8, 0x0f, 0x2d, 0xc7, 0xf3, 0x30, 0x5f, 0xee, 0x8c, 0x0f, 0xb0, - 0x97, 0x04, 0x90, 0x3c, 0xd4, 0xfc, 0x8f, 0x02, 0xb4, 0xf7, 0x48, 0x78, 0xf5, 0x05, 0x1e, 0xa3, - 0x4c, 0x74, 0x13, 0x42, 0xaa, 0x8c, 0x8d, 0x7f, 0xf3, 0x2a, 0xe4, 0x0c, 0x8f, 0x91, 0x3c, 0xf6, - 0xd2, 0xeb, 0xaa, 0x1c, 0x20, 0x8e, 0xbc, 0x9e, 0x4c, 0xda, 0xa9, 0x4d, 0x39, 0x79, 0x4c, 0x3c, - 0x51, 0x6f, 0x79, 0x98, 0xda, 0x49, 0xf3, 0xb4, 0x69, 0x55, 0x3c, 0x4c, 0xc5, 0x94, 0x52, 0x64, - 0x49, 0x34, 0xc7, 0xb3, 0x8a, 0x2c, 0x4b, 0x08, 0x57, 0x64, 0x1d, 0x96, 0xc9, 0xd9, 0x59, 0x84, - 0x98, 0xd8, 0xab, 0x92, 0xa5, 0x46, 0x49, 0x08, 0xae, 0x66, 0x42, 0xf0, 0x9a, 0xb8, 0xd7, 0x5e, - 0xbe, 0x3c, 0xde, 0xbf, 0x40, 0x01, 0xd3, 0x37, 0xf0, 0x63, 0xa8, 0x6a, 0xd0, 0x2f, 0x69, 0x3b, - 0x3f, 0x82, 0xd6, 0x8e, 0xe7, 0x0d, 0x5e, 0x3b, 0xa1, 0xb6, 0x47, 0x17, 0x2a, 0xfd, 0xbd, 0xa3, - 0xbe, 0x34, 0x49, 0x89, 0x2b, 0xa0, 0x86, 0xfc, 0xc6, 0x3f, 0x40, 0xec, 0x18, 0x31, 0x8a, 0xdd, - 0xe4, 0xc6, 0xbf, 0x0b, 0x15, 0x05, 0xe1, 0x2b, 0x7d, 0xf9, 0xa9, 0xaf, 0x00, 0x35, 0x34, 0xff, - 0x04, 0x8c, 0x6f, 0x79, 0xbe, 0x8c, 0x64, 0xb1, 0xa4, 0x38, 0x3d, 0x82, 0xce, 0x85, 0x80, 0xda, - 0x32, 0x91, 0xcc, 0x6c, 0x43, 0x5b, 0x4e, 0x88, 0xf8, 0x20, 0x78, 0x9f, 0xc0, 0xaa, 0x4c, 0xef, - 0x25, 0x9d, 0x6b, 0x90, 0xe0, 0x36, 0x4c, 0xf6, 0xb3, 0x6c, 0x89, 0x6f, 0xf3, 0x11, 0xac, 0x0c, - 0x10, 0x53, 0x67, 0x5e, 0xd1, 0x5c, 0x87, 0x65, 0x15, 0x26, 0xd4, 0xd9, 0x96, 0xa3, 0x27, 0xff, - 0xb6, 0xa6, 0xae, 0x3c, 0xd5, 0x79, 0x32, 0x0e, 0xa0, 0x3d, 0xf1, 0x4c, 0x68, 0xa8, 0x56, 0xe4, - 0xec, 0xd7, 0xc3, 0xde, 0xfa, 0x96, 0x7c, 0x76, 0xdc, 0xd2, 0xcf, 0x8e, 0x5b, 0xfb, 0x7e, 0xc8, - 0xae, 0x8c, 0x7d, 0x68, 0xe5, 0x1f, 0xd4, 0x8c, 0xf7, 0x74, 0x3a, 0x36, 0xe3, 0x99, 0x6d, 0x2e, - 0x99, 0x03, 0x68, 0x4f, 0xbc, 0xad, 0x69, 0x79, 0x66, 0x3f, 0xb9, 0xcd, 0x25, 0xf4, 0x1c, 0xea, - 0x99, 0xc7, 0x34, 0xa3, 0x2b, 0x89, 0x4c, 0xbf, 0xaf, 0xcd, 0x25, 0xb0, 0x07, 0xcd, 0xdc, 0xfb, - 0x96, 0xd1, 0x53, 0xfa, 0xcc, 0x78, 0xf4, 0x9a, 0x4b, 0x64, 0x17, 0xea, 0x99, 0x67, 0x26, 0x2d, - 0xc5, 0xf4, 0x5b, 0x56, 0xef, 0xd6, 0x8c, 0x19, 0x75, 0xb3, 0x1e, 0x40, 0x7b, 0xe2, 0xed, 0x49, - 0x9b, 0x64, 0xf6, 0x93, 0xd4, 0x5c, 0x61, 0x06, 0x70, 0x63, 0x66, 0x46, 0x6d, 0x98, 0x59, 0x72, - 0xb3, 0xd3, 0xed, 0xb9, 0x44, 0xbf, 0x12, 0xfb, 0x9e, 0xe9, 0x57, 0x64, 0xf6, 0x7d, 0xfa, 0xf9, - 0xaa, 0x77, 0x7b, 0xf6, 0xa4, 0x52, 0x75, 0x1f, 0x5a, 0xf9, 0x97, 0x2b, 0x4d, 0x6c, 0xe6, 0x7b, - 0xd6, 0x62, 0x27, 0xca, 0x3d, 0x62, 0xa5, 0x4e, 0x34, 0xeb, 0x6d, 0x6b, 0x2e, 0x21, 0x04, 0x1b, - 0x8b, 0x6b, 0x34, 0xe3, 0xfd, 0xac, 0x73, 0xbe, 0xa5, 0x92, 0x9b, 0xcb, 0x66, 0x07, 0x40, 0x35, - 0x41, 0x3c, 0x1c, 0x24, 0x4e, 0x32, 0xd5, 0x7c, 0x49, 0x9c, 0x64, 0x46, 0xc3, 0xe4, 0x39, 0x80, - 0xec, 0x5d, 0x78, 0x24, 0x66, 0xc6, 0x4d, 0x2d, 0xd5, 0x44, 0xc3, 0xa4, 0xd7, 0x9d, 0x9e, 0x98, - 0x22, 0x80, 0x28, 0xbd, 0x0e, 0x81, 0xcf, 0x01, 0xd2, 0x9e, 0x88, 0x26, 0x30, 0xd5, 0x25, 0x59, - 0x60, 0x83, 0x46, 0xb6, 0x03, 0x62, 0x28, 0x5d, 0x67, 0x74, 0x45, 0x16, 0x90, 0x68, 0x4f, 0x14, - 0xae, 0xf9, 0x83, 0x32, 0x59, 0xcf, 0xf6, 0xa6, 0x8a, 0x57, 0xe3, 0x29, 0x34, 0xb2, 0x15, 0xab, - 0x96, 0x62, 0x46, 0x15, 0xdb, 0xcb, 0x55, 0xad, 0xc6, 0x73, 0x68, 0xe5, 0x4b, 0x4c, 0xed, 0xb9, - 0x33, 0x0b, 0xcf, 0x9e, 0x6a, 0xda, 0x66, 0xd0, 0x3f, 0x04, 0x48, 0x4b, 0x51, 0x6d, 0xbe, 0xa9, - 0xe2, 0x74, 0x82, 0xeb, 0x01, 0xb4, 0x27, 0x4a, 0x4c, 0xad, 0xf1, 0xec, 0xca, 0x73, 0x51, 0x9c, - 0xca, 0x14, 0x8c, 0xda, 0x05, 0xa7, 0x4b, 0x4e, 0xed, 0x82, 0xb3, 0xaa, 0xcb, 0x5d, 0xa8, 0x0f, - 0xa6, 0x69, 0x0c, 0xe6, 0xd2, 0x98, 0x55, 0x33, 0x7e, 0x04, 0x90, 0x5e, 0xcf, 0xda, 0x0a, 0x53, - 0x17, 0x76, 0xaf, 0xa9, 0x1b, 0xeb, 0x12, 0x6f, 0x0f, 0x9a, 0xb9, 0xde, 0x93, 0x0e, 0xd5, 0xb3, - 0x1a, 0x52, 0x8b, 0x2e, 0xb0, 0x7c, 0xa3, 0x46, 0xef, 0xe0, 0xcc, 0xf6, 0xcd, 0x22, 0x3f, 0xce, - 0x56, 0xb8, 0xda, 0x83, 0x66, 0x54, 0xbd, 0x6f, 0x09, 0x5f, 0xd9, 0x2a, 0x36, 0x13, 0xbe, 0x66, - 0x14, 0xb7, 0x73, 0x09, 0x1d, 0x42, 0xfb, 0x40, 0x17, 0x28, 0xaa, 0x78, 0xd2, 0xfb, 0x37, 0x5d, - 0x2c, 0xf6, 0x7a, 0xb3, 0xa6, 0xd4, 0xbe, 0x7c, 0x05, 0x9d, 0xa9, 0xc2, 0xc9, 0xd8, 0x48, 0x9e, - 0x37, 0x66, 0x56, 0x54, 0x73, 0xc5, 0x3a, 0x12, 0x09, 0x4b, 0xae, 0x6e, 0x32, 0x7e, 0x9d, 0xf8, - 0xc4, 0xac, 0x7a, 0x6a, 0x2e, 0xa9, 0x4f, 0xa1, 0xaa, 0x73, 0x61, 0x43, 0x3d, 0x23, 0x4d, 0xe4, - 0xc6, 0x73, 0x97, 0x3e, 0x15, 0x2e, 0x9f, 0xe4, 0x99, 0xa9, 0xcb, 0x4f, 0x64, 0xa3, 0x3d, 0xf5, - 0xea, 0x93, 0x60, 0x3e, 0x85, 0x8a, 0x4a, 0x37, 0x8d, 0xb5, 0xe4, 0xb0, 0x65, 0xb2, 0xcf, 0x45, - 0x1e, 0x76, 0x80, 0x58, 0x26, 0x89, 0xd4, 0x4c, 0xa7, 0xf3, 0x4a, 0x7d, 0x46, 0x72, 0x33, 0x6a, - 0x2f, 0x76, 0xa0, 0x91, 0x4d, 0x23, 0xf5, 0x96, 0xce, 0x48, 0x2d, 0xe7, 0x4a, 0xf2, 0x0c, 0x6a, - 0x49, 0xca, 0x68, 0xac, 0x27, 0xa6, 0xcf, 0xe5, 0x90, 0xf3, 0x16, 0xef, 0x5e, 0xfe, 0xf4, 0xf3, - 0xc6, 0xaf, 0xfe, 0xeb, 0xe7, 0x8d, 0x5f, 0xfd, 0xed, 0x9b, 0x8d, 0xc2, 0x4f, 0x6f, 0x36, 0x0a, - 0xff, 0xf9, 0x66, 0xa3, 0xf0, 0xbf, 0x6f, 0x36, 0x0a, 0x7f, 0xfe, 0x57, 0x43, 0xcc, 0x46, 0xf1, - 0xe9, 0x96, 0x4b, 0xfc, 0xed, 0x73, 0x87, 0x39, 0x8f, 0x93, 0x2c, 0x3d, 0x9a, 0x1a, 0x47, 0xd4, - 0xdd, 0xa6, 0x71, 0xc0, 0xb0, 0x8f, 0xb6, 0x2f, 0x30, 0x65, 0x99, 0xa9, 0xf0, 0x7c, 0xb8, 0x2d, - 0x2a, 0x7e, 0xf9, 0xd7, 0x36, 0x97, 0x8c, 0xa3, 0x6d, 0x2e, 0xe2, 0xe9, 0xb2, 0x18, 0x7f, 0xf8, - 0xff, 0x01, 0x00, 0x00, 0xff, 0xff, 0x7a, 0x9a, 0x8b, 0xda, 0x30, 0x27, 0x00, 0x00, + // 3389 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xc4, 0x3a, 0xcb, 0x6e, 0x24, 0x47, + 0x72, 0xdb, 0x0f, 0xf6, 0x23, 0xfa, 0xc5, 0x2e, 0x72, 0x38, 0xad, 0x96, 0xc4, 0x9d, 0x2d, 0xad, + 0xa4, 0x91, 0x64, 0x91, 0xbb, 0x23, 0x41, 0xb3, 0x92, 0xb0, 0x96, 0x49, 0x0e, 0x45, 0x52, 0x12, + 0x77, 0xda, 0xd5, 0xe2, 0xca, 0xb0, 0x61, 0x17, 0x8a, 0x55, 0xc9, 0xee, 0x5c, 0x76, 0x55, 0xd6, + 0x66, 0x66, 0x71, 0xc8, 0x35, 0x60, 0xf8, 0x64, 0xc3, 0x17, 0x1f, 0xfd, 0x11, 0x86, 0xff, 0xc0, + 0x27, 0x03, 0x3e, 0x08, 0x3e, 0xf9, 0x62, 0xc0, 0x17, 0x1b, 0x5e, 0x7d, 0x82, 0xbf, 0xc0, 0xc8, + 0x57, 0x3d, 0xfa, 0x25, 0x81, 0x18, 0xc0, 0x97, 0x46, 0x45, 0x64, 0x64, 0x44, 0x64, 0x64, 0x64, + 0x64, 0x44, 0x64, 0x43, 0xcb, 0x9b, 0xa0, 0x88, 0xef, 0xc5, 0x94, 0x70, 0x62, 0x55, 0x27, 0x34, + 0xf6, 0x87, 0x4d, 0xe2, 0x63, 0x85, 0x18, 0x36, 0x7d, 0x66, 0x3e, 0x5b, 0xfc, 0x2e, 0x46, 0x4c, + 0x03, 0xaf, 0x4e, 0x08, 0x99, 0xcc, 0xd0, 0xbe, 0x84, 0x2e, 0x93, 0xab, 0x7d, 0x14, 0xc6, 0xfc, + 0x4e, 0x0d, 0xda, 0xff, 0x51, 0x86, 0x9d, 0x23, 0x8a, 0x3c, 0x8e, 0x8e, 0x48, 0xc4, 0x3d, 0x1c, + 0x21, 0xea, 0xa0, 0xdf, 0x26, 0x88, 0x71, 0xeb, 0x27, 0xd0, 0xf6, 0x0d, 0xce, 0xc5, 0xc1, 0xa0, + 0xf4, 0xa8, 0xf4, 0xb8, 0xe9, 0xb4, 0x52, 0xdc, 0x59, 0x60, 0x3d, 0x84, 0x3a, 0xba, 0x45, 0xbe, + 0x18, 0x2d, 0xcb, 0xd1, 0x9a, 0x00, 0xcf, 0x02, 0xeb, 0xe7, 0xd0, 0x62, 0x9c, 0xe2, 0x68, 0xe2, + 0x26, 0x0c, 0xd1, 0x41, 0xe5, 0x51, 0xe9, 0x71, 0xeb, 0xc9, 0xe6, 0x9e, 0x50, 0x79, 0x6f, 0x2c, + 0x07, 0x2e, 0x18, 0xa2, 0x0e, 0xb0, 0xf4, 0xdb, 0x7a, 0x0b, 0xea, 0x01, 0xba, 0xc1, 0x3e, 0x62, + 0x83, 0xea, 0xa3, 0xca, 0xe3, 0xd6, 0x93, 0xb6, 0x22, 0x7f, 0x26, 0x91, 0x8e, 0x19, 0xb4, 0xde, + 0x81, 0x06, 0xe3, 0x84, 0x7a, 0x13, 0xc4, 0x06, 0x1b, 0x92, 0xb0, 0x63, 0xf8, 0x4a, 0xac, 0x93, + 0x0e, 0x5b, 0xaf, 0x41, 0xe5, 0xf9, 0xd1, 0xd9, 0xa0, 0x26, 0xa5, 0x83, 0xa6, 0x8a, 0x91, 0xef, + 0x08, 0xb4, 0xf5, 0x06, 0x74, 0x98, 0x17, 0x05, 0x97, 0xe4, 0xd6, 0x8d, 0x71, 0x10, 0xb1, 0x41, + 0xfd, 0x51, 0xe9, 0x71, 0xc3, 0x69, 0x6b, 0xe4, 0x48, 0xe0, 0xac, 0x8f, 0xa0, 0xc3, 0xa6, 0x1e, + 0x45, 0x81, 0x1b, 0x92, 0x24, 0xe2, 0x6c, 0xd0, 0x90, 0x22, 0xfb, 0x9a, 0x99, 0x1c, 0x3a, 0x17, + 0x23, 0x4e, 0x9b, 0x65, 0x00, 0xb3, 0x3f, 0x81, 0x07, 0x63, 0xee, 0x51, 0x7e, 0x0f, 0xab, 0xda, + 0x17, 0xb0, 0xe3, 0xa0, 0x90, 0xdc, 0xdc, 0x6b, 0x4b, 0x06, 0x50, 0xe7, 0x38, 0x44, 0x24, 0xe1, + 0x72, 0x4b, 0x3a, 0x8e, 0x01, 0xed, 0x7f, 0x2a, 0x81, 0x75, 0x7c, 0x8b, 0xfc, 0x11, 0x25, 0x3e, + 0x62, 0xec, 0xff, 0x69, 0x9b, 0xdf, 0x86, 0x7a, 0xac, 0x14, 0x18, 0x54, 0x25, 0xb9, 0xde, 0x3d, + 0xa3, 0x95, 0x19, 0xb5, 0x7f, 0x03, 0xdb, 0x63, 0x3c, 0x89, 0xbc, 0xd9, 0x4b, 0xd4, 0x77, 0x07, + 0x6a, 0x4c, 0xf2, 0x94, 0xaa, 0x76, 0x1c, 0x0d, 0xd9, 0x23, 0xb0, 0xbe, 0xf1, 0x30, 0x7f, 0x79, + 0x92, 0xec, 0xf7, 0x61, 0xab, 0xc0, 0x91, 0xc5, 0x24, 0x62, 0x48, 0x2a, 0xc0, 0x3d, 0x9e, 0x30, + 0xc9, 0x6c, 0xc3, 0xd1, 0x90, 0x4d, 0x60, 0xe7, 0x22, 0x0e, 0xee, 0x79, 0x0a, 0x9f, 0x40, 0x93, + 0x22, 0x46, 0x12, 0x2a, 0xce, 0x4e, 0x59, 0x1a, 0x75, 0x5b, 0x19, 0xf5, 0x2b, 0x1c, 0x25, 0xb7, + 0x8e, 0x19, 0x73, 0x32, 0x32, 0xed, 0x9f, 0x9c, 0xdd, 0xc7, 0x3f, 0x3f, 0x81, 0x07, 0x23, 0x2f, + 0x61, 0xf7, 0xd1, 0xd5, 0xfe, 0x54, 0xf8, 0x36, 0x4b, 0xc2, 0x7b, 0x4d, 0xfe, 0xc7, 0x12, 0x34, + 0x8e, 0xe2, 0xe4, 0x82, 0x79, 0x13, 0x64, 0xfd, 0x18, 0x5a, 0x9c, 0x70, 0x6f, 0xe6, 0x26, 0x02, + 0x94, 0xe4, 0x55, 0x07, 0x24, 0x4a, 0x11, 0xfc, 0x04, 0xda, 0x31, 0xa2, 0x7e, 0x9c, 0x68, 0x8a, + 0xf2, 0xa3, 0xca, 0xe3, 0xaa, 0xd3, 0x52, 0x38, 0x45, 0xb2, 0x07, 0x5b, 0x72, 0xcc, 0xc5, 0x91, + 0x7b, 0x8d, 0x68, 0x84, 0x66, 0x21, 0x09, 0x90, 0x74, 0x8e, 0xaa, 0xd3, 0x97, 0x43, 0x67, 0xd1, + 0x97, 0xe9, 0x80, 0xf5, 0x2e, 0xf4, 0x53, 0x7a, 0xe1, 0xf1, 0x92, 0xba, 0x2a, 0xa9, 0x7b, 0x9a, + 0xfa, 0x42, 0xa3, 0xed, 0xbf, 0x82, 0xee, 0xd7, 0x53, 0x4a, 0x38, 0x9f, 0xe1, 0x68, 0xf2, 0xcc, + 0xe3, 0x9e, 0x38, 0x9a, 0x31, 0xa2, 0x98, 0x04, 0x4c, 0x6b, 0x6b, 0x40, 0xeb, 0x3d, 0xe8, 0x73, + 0x45, 0x8b, 0x02, 0xd7, 0xd0, 0x94, 0x25, 0xcd, 0x66, 0x3a, 0x30, 0xd2, 0xc4, 0x6f, 0x42, 0x37, + 0x23, 0x16, 0x87, 0x5b, 0xeb, 0xdb, 0x49, 0xb1, 0x5f, 0xe3, 0x10, 0xd9, 0x37, 0xd2, 0x56, 0x72, + 0x93, 0xad, 0xf7, 0xa0, 0x99, 0xd9, 0xa1, 0x24, 0x3d, 0xa4, 0xab, 0x3c, 0xc4, 0x98, 0xd3, 0x69, + 0xa4, 0x46, 0xf9, 0x25, 0xf4, 0x78, 0xaa, 0xb8, 0x1b, 0x78, 0xdc, 0x2b, 0x3a, 0x55, 0x71, 0x55, + 0x4e, 0x97, 0x17, 0x60, 0xfb, 0x53, 0x68, 0x8e, 0x70, 0xc0, 0x94, 0xe0, 0x01, 0xd4, 0xfd, 0x84, + 0x52, 0x14, 0x71, 0xb3, 0x64, 0x0d, 0x5a, 0xdb, 0xb0, 0x31, 0xc3, 0x21, 0xe6, 0x7a, 0x99, 0x0a, + 0xb0, 0x09, 0xc0, 0x39, 0x0a, 0x09, 0xbd, 0x93, 0x06, 0xdb, 0x86, 0x8d, 0xfc, 0xe6, 0x2a, 0xc0, + 0x7a, 0x15, 0x9a, 0xa1, 0x77, 0x9b, 0x6e, 0xaa, 0x18, 0x69, 0x84, 0xde, 0xad, 0x52, 0x7e, 0x00, + 0xf5, 0x2b, 0x0f, 0xcf, 0xfc, 0x88, 0x6b, 0xab, 0x18, 0x30, 0x13, 0x58, 0xcd, 0x0b, 0xfc, 0xd7, + 0x32, 0xb4, 0x94, 0x44, 0xa5, 0xf0, 0x36, 0x6c, 0xf8, 0x9e, 0x3f, 0x4d, 0x45, 0x4a, 0xc0, 0x7a, + 0xcb, 0x28, 0x52, 0xce, 0x47, 0xb8, 0x4c, 0x53, 0xa3, 0xda, 0x3e, 0x00, 0x7b, 0xe1, 0xc5, 0x5a, + 0xb7, 0xca, 0x0a, 0xe2, 0xa6, 0xa0, 0x51, 0xea, 0x7e, 0x00, 0x6d, 0xe5, 0x77, 0x7a, 0x4a, 0x75, + 0xc5, 0x94, 0x96, 0xa2, 0x52, 0x93, 0xde, 0x80, 0x4e, 0xc2, 0x90, 0x3b, 0xc5, 0x88, 0x7a, 0xd4, + 0x9f, 0xde, 0x0d, 0x36, 0xd4, 0xc5, 0x95, 0x30, 0x74, 0x6a, 0x70, 0xd6, 0x13, 0xd8, 0x10, 0xb1, + 0x85, 0x0d, 0x6a, 0xf2, 0xc2, 0x7a, 0x2d, 0xcf, 0x52, 0x2e, 0x75, 0x4f, 0xfe, 0x1e, 0x47, 0x9c, + 0xde, 0x39, 0x8a, 0x74, 0xf8, 0x0b, 0x80, 0x0c, 0x69, 0x6d, 0x42, 0xe5, 0x1a, 0xdd, 0xe9, 0x73, + 0x28, 0x3e, 0x85, 0x71, 0x6e, 0xbc, 0x59, 0x62, 0xac, 0xae, 0x80, 0x4f, 0xca, 0xbf, 0x28, 0xd9, + 0x3e, 0xf4, 0x0e, 0x67, 0xd7, 0x98, 0xe4, 0xa6, 0x6f, 0xc3, 0x46, 0xe8, 0xfd, 0x86, 0x50, 0x63, + 0x49, 0x09, 0x48, 0x2c, 0x8e, 0x08, 0x35, 0x2c, 0x24, 0x60, 0x75, 0xa1, 0x4c, 0x62, 0x69, 0xaf, + 0xa6, 0x53, 0x26, 0x71, 0x26, 0xa8, 0x9a, 0x13, 0x64, 0xff, 0x77, 0x15, 0x20, 0x93, 0x62, 0x39, + 0x30, 0xc4, 0xc4, 0x65, 0x88, 0x8a, 0xbc, 0xc0, 0xbd, 0xbc, 0xe3, 0x88, 0xb9, 0x14, 0xf9, 0x09, + 0x65, 0xf8, 0x46, 0xec, 0x9f, 0x58, 0xf6, 0x03, 0xb5, 0xec, 0x39, 0xdd, 0x9c, 0x87, 0x98, 0x8c, + 0xd5, 0xbc, 0x43, 0x31, 0xcd, 0x31, 0xb3, 0xac, 0x33, 0x78, 0x90, 0xf1, 0x0c, 0x72, 0xec, 0xca, + 0xeb, 0xd8, 0x6d, 0xa5, 0xec, 0x82, 0x8c, 0xd5, 0x31, 0x6c, 0x61, 0xe2, 0xfe, 0x36, 0x41, 0x49, + 0x81, 0x51, 0x65, 0x1d, 0xa3, 0x3e, 0x26, 0x7f, 0x2c, 0x27, 0x64, 0x6c, 0x46, 0xf0, 0x4a, 0x6e, + 0x95, 0xe2, 0xb8, 0xe7, 0x98, 0x55, 0xd7, 0x31, 0xdb, 0x49, 0xb5, 0x12, 0xf1, 0x20, 0xe3, 0xf8, + 0x05, 0xec, 0x60, 0xe2, 0xbe, 0xf0, 0x30, 0x9f, 0x67, 0xb7, 0xf1, 0x3d, 0x8b, 0x14, 0x37, 0x5a, + 0x91, 0x97, 0x5a, 0x64, 0x88, 0xe8, 0xa4, 0xb0, 0xc8, 0xda, 0xf7, 0x2c, 0xf2, 0x5c, 0x4e, 0xc8, + 0xd8, 0x1c, 0x40, 0x1f, 0x93, 0x79, 0x6d, 0xea, 0xeb, 0x98, 0xf4, 0x30, 0x29, 0x6a, 0x72, 0x08, + 0x7d, 0x86, 0x7c, 0x4e, 0x68, 0xde, 0x09, 0x1a, 0xeb, 0x58, 0x6c, 0x6a, 0xfa, 0x94, 0x87, 0xfd, + 0x67, 0xd0, 0x3e, 0x4d, 0x26, 0x88, 0xcf, 0x2e, 0xd3, 0x60, 0xf0, 0xd2, 0xe2, 0x8f, 0xfd, 0xbf, + 0x65, 0x68, 0x1d, 0x4d, 0x28, 0x49, 0xe2, 0x42, 0x4c, 0x56, 0x87, 0x74, 0x3e, 0x26, 0x4b, 0x12, + 0x19, 0x93, 0x15, 0xf1, 0x87, 0xd0, 0x0e, 0xe5, 0xd1, 0xd5, 0xf4, 0x2a, 0x0e, 0xf5, 0x17, 0x0e, + 0xb5, 0xd3, 0x0a, 0x73, 0xc1, 0x6c, 0x0f, 0x20, 0xc6, 0x01, 0xd3, 0x73, 0x54, 0x38, 0xea, 0xe9, + 0x74, 0xcb, 0x84, 0x68, 0xa7, 0x19, 0xa7, 0xd1, 0xfa, 0xe7, 0xd0, 0xba, 0x14, 0x46, 0xd2, 0x13, + 0x0a, 0xc1, 0x28, 0xb3, 0x9e, 0x03, 0x97, 0xd9, 0x21, 0x3c, 0x85, 0xce, 0x54, 0x99, 0x4c, 0x4f, + 0x52, 0x3e, 0xf4, 0x86, 0x5e, 0x49, 0xb6, 0xde, 0xbd, 0xbc, 0x65, 0xd5, 0x06, 0xb4, 0xa7, 0x39, + 0xd4, 0x70, 0x0c, 0xfd, 0x05, 0x92, 0x25, 0x31, 0xe8, 0x71, 0x3e, 0x06, 0xb5, 0x9e, 0x58, 0x4a, + 0x50, 0x7e, 0x66, 0x3e, 0x2e, 0xfd, 0x7d, 0x19, 0xda, 0xbf, 0x42, 0xfc, 0x05, 0xa1, 0xd7, 0x4a, + 0x5f, 0x0b, 0xaa, 0x91, 0x17, 0x22, 0xcd, 0x51, 0x7e, 0x5b, 0xaf, 0x40, 0x83, 0xde, 0xaa, 0x00, + 0xa2, 0xf7, 0xb3, 0x4e, 0x6f, 0x65, 0x60, 0xb0, 0x5e, 0x07, 0xa0, 0xb7, 0x6e, 0xec, 0xf9, 0xd7, + 0x48, 0x5b, 0xb0, 0xea, 0x34, 0xe9, 0xed, 0x48, 0x21, 0x84, 0x2b, 0xd0, 0x5b, 0x17, 0x51, 0x4a, + 0x28, 0xd3, 0xb1, 0xaa, 0x41, 0x6f, 0x8f, 0x25, 0xac, 0xe7, 0x06, 0x94, 0xc4, 0x31, 0x0a, 0x64, + 0x8c, 0x96, 0x73, 0x9f, 0x29, 0x84, 0x90, 0xca, 0x8d, 0xd4, 0x9a, 0x92, 0xca, 0x33, 0xa9, 0x3c, + 0x93, 0x5a, 0x57, 0x33, 0x79, 0x5e, 0x2a, 0x4f, 0xa5, 0x36, 0x94, 0x54, 0x9e, 0x93, 0xca, 0x33, + 0xa9, 0x4d, 0x33, 0x57, 0x4b, 0xb5, 0xff, 0xb6, 0x04, 0x3b, 0xf3, 0x89, 0x9f, 0xce, 0x4d, 0x3f, + 0x84, 0xb6, 0x2f, 0xf7, 0xab, 0xe0, 0x93, 0xfd, 0x85, 0x9d, 0x74, 0x5a, 0x7e, 0xce, 0x8d, 0x9f, + 0x42, 0x27, 0x52, 0x06, 0x4e, 0x5d, 0xb3, 0x92, 0xed, 0x4b, 0xde, 0xf6, 0x4e, 0x3b, 0xca, 0x41, + 0x76, 0x00, 0xd6, 0x37, 0x14, 0x73, 0x34, 0xe6, 0x14, 0x79, 0xe1, 0xcb, 0xc8, 0xee, 0x2d, 0xa8, + 0xca, 0x6c, 0x45, 0x6c, 0x53, 0xdb, 0x91, 0xdf, 0xf6, 0xdb, 0xb0, 0x55, 0x90, 0xa2, 0xd7, 0xba, + 0x09, 0x95, 0x19, 0x8a, 0x24, 0xf7, 0x8e, 0x23, 0x3e, 0x6d, 0x0f, 0xfa, 0x0e, 0xf2, 0x82, 0x97, + 0xa7, 0x8d, 0x16, 0x51, 0xc9, 0x44, 0x3c, 0x06, 0x2b, 0x2f, 0x42, 0xab, 0x62, 0xb4, 0x2e, 0xe5, + 0xb4, 0x7e, 0x0e, 0xfd, 0xa3, 0x19, 0x61, 0x68, 0xcc, 0x03, 0x1c, 0xbd, 0x8c, 0x72, 0xe4, 0x2f, + 0x61, 0xeb, 0x6b, 0x7e, 0xf7, 0x8d, 0x60, 0xc6, 0xf0, 0xef, 0xd0, 0x4b, 0x5a, 0x1f, 0x25, 0x2f, + 0xcc, 0xfa, 0x28, 0x79, 0x21, 0x8a, 0x1b, 0x9f, 0xcc, 0x92, 0x30, 0x92, 0x47, 0xa1, 0xe3, 0x68, + 0xc8, 0x3e, 0x84, 0xb6, 0xca, 0xa1, 0xcf, 0x49, 0x90, 0xcc, 0xd0, 0xd2, 0x33, 0xb8, 0x0b, 0x10, + 0x7b, 0xd4, 0x0b, 0x11, 0x47, 0x54, 0xf9, 0x50, 0xd3, 0xc9, 0x61, 0xec, 0x7f, 0x28, 0xc3, 0xb6, + 0xea, 0x53, 0x8c, 0x55, 0x79, 0x6e, 0x96, 0x30, 0x84, 0xc6, 0x94, 0x30, 0x9e, 0x63, 0x98, 0xc2, + 0x42, 0x45, 0x51, 0xd7, 0x2b, 0x6e, 0xe2, 0xb3, 0xd0, 0x3c, 0xa8, 0xac, 0x6f, 0x1e, 0x2c, 0xb4, + 0x07, 0xaa, 0x4b, 0xda, 0x03, 0xaf, 0x03, 0x18, 0x22, 0xac, 0xce, 0x78, 0xd3, 0x69, 0x6a, 0xcc, + 0x59, 0x60, 0xbd, 0x05, 0xbd, 0x89, 0xd0, 0xd2, 0x9d, 0x12, 0x72, 0xed, 0xc6, 0x1e, 0x9f, 0xca, + 0xa3, 0xde, 0x74, 0x3a, 0x12, 0x7d, 0x4a, 0xc8, 0xf5, 0xc8, 0xe3, 0x53, 0xeb, 0x63, 0xe8, 0xea, + 0x34, 0x30, 0x94, 0x26, 0x62, 0xfa, 0xf2, 0xd3, 0xa7, 0x28, 0x6f, 0x3d, 0xa7, 0x73, 0x9d, 0x83, + 0x98, 0xfd, 0x10, 0x1e, 0x3c, 0x43, 0x8c, 0x53, 0x72, 0x57, 0x34, 0x8c, 0xfd, 0x36, 0xbc, 0xa9, + 0xba, 0x08, 0x63, 0xee, 0xcd, 0xd0, 0xaf, 0x31, 0xe5, 0x98, 0x5c, 0x31, 0xd9, 0xb1, 0x50, 0x3d, + 0x0a, 0x43, 0xf8, 0x87, 0x00, 0x67, 0x11, 0x47, 0xf4, 0xca, 0xf3, 0x11, 0xb3, 0x7e, 0x96, 0x87, + 0x74, 0x16, 0xb5, 0xb9, 0xa7, 0xfa, 0x49, 0xe9, 0x80, 0x93, 0xa3, 0xb1, 0xf7, 0xa0, 0xe6, 0x90, + 0x44, 0xc4, 0xad, 0x9f, 0x9a, 0x2f, 0x3d, 0xaf, 0xad, 0xe7, 0x49, 0xa4, 0xa3, 0xc7, 0xec, 0x53, + 0x53, 0xeb, 0x66, 0xec, 0xf4, 0x5e, 0xee, 0x41, 0x13, 0x1b, 0x9c, 0x0e, 0x3f, 0x8b, 0xa2, 0x33, + 0x12, 0xfb, 0x53, 0xd8, 0x52, 0x9c, 0x14, 0x67, 0xc3, 0xe6, 0xa7, 0x50, 0xa3, 0x46, 0x8d, 0x52, + 0xd6, 0x48, 0xd2, 0x44, 0x7a, 0xcc, 0x3e, 0x83, 0xd7, 0xd4, 0xe4, 0xe3, 0x78, 0x8a, 0x42, 0x44, + 0xbd, 0x59, 0xc1, 0x2c, 0x05, 0x57, 0x29, 0xad, 0x75, 0x15, 0xb1, 0x07, 0x5f, 0x61, 0xc6, 0x33, + 0x9b, 0x18, 0xd3, 0x6e, 0x41, 0x5f, 0x0c, 0x14, 0xd4, 0xb3, 0x3f, 0x87, 0xf6, 0x81, 0x33, 0xfa, + 0x15, 0xc2, 0x93, 0xe9, 0xa5, 0x88, 0xd8, 0x1f, 0x15, 0x61, 0x2d, 0xcc, 0xd2, 0x0b, 0xcf, 0x0d, + 0x39, 0x05, 0x3a, 0xfb, 0x0b, 0xd8, 0x39, 0x08, 0x82, 0x3c, 0xca, 0xa8, 0xfe, 0x33, 0x68, 0x46, + 0x39, 0x76, 0xb9, 0x7b, 0xb2, 0x40, 0x9d, 0x11, 0xd9, 0xef, 0x83, 0x75, 0x82, 0xf8, 0xd9, 0xe8, + 0x6b, 0xef, 0x72, 0x96, 0x19, 0xf2, 0x21, 0xd4, 0x31, 0x73, 0x71, 0x7c, 0xf3, 0x91, 0xe4, 0xd2, + 0x70, 0x6a, 0x98, 0x9d, 0xc5, 0x37, 0x1f, 0xd9, 0xef, 0xc0, 0x56, 0x81, 0x7c, 0x4d, 0x28, 0x3b, + 0x00, 0x6b, 0xfc, 0xc3, 0x39, 0xa7, 0x2c, 0xca, 0x39, 0x16, 0xef, 0xc0, 0xd6, 0xf8, 0x07, 0x4a, + 0xfb, 0x73, 0xd8, 0x7a, 0x1e, 0xcd, 0x70, 0x84, 0x8e, 0x46, 0x17, 0xe7, 0x28, 0x8d, 0xe3, 0x16, + 0x54, 0x45, 0xbe, 0xab, 0x65, 0xc9, 0x6f, 0xa1, 0x42, 0x74, 0xe9, 0xfa, 0x71, 0xc2, 0x74, 0xa3, + 0xac, 0x16, 0x5d, 0x1e, 0xc5, 0x09, 0x13, 0x17, 0xb3, 0x48, 0xcc, 0x48, 0x34, 0xbb, 0x93, 0xd1, + 0xad, 0xe1, 0xd4, 0xfd, 0x38, 0x79, 0x1e, 0xcd, 0xee, 0xec, 0x3f, 0x90, 0xdd, 0x0b, 0x84, 0x02, + 0xc7, 0x8b, 0x02, 0x12, 0x3e, 0x43, 0x37, 0x39, 0x09, 0x0b, 0x7a, 0x7f, 0x5b, 0x82, 0xf6, 0xc1, + 0x04, 0x45, 0xfc, 0x19, 0xe2, 0x1e, 0x9e, 0xc9, 0x6a, 0xf8, 0x06, 0x51, 0x86, 0x49, 0xa4, 0x43, + 0x95, 0x01, 0xad, 0x1f, 0x43, 0x0b, 0x47, 0x98, 0xbb, 0x81, 0x87, 0x42, 0x12, 0x49, 0x2e, 0x0d, + 0x07, 0x04, 0xea, 0x99, 0xc4, 0x58, 0x6f, 0x43, 0x4f, 0x35, 0x40, 0xdd, 0xa9, 0x17, 0x05, 0x33, + 0x11, 0x24, 0x2b, 0x32, 0xac, 0x75, 0x15, 0xfa, 0x54, 0x63, 0xad, 0x77, 0x60, 0x53, 0xfb, 0x65, + 0x46, 0x59, 0x95, 0x94, 0x3d, 0x8d, 0x2f, 0x90, 0x26, 0x71, 0x4c, 0x28, 0x67, 0x2e, 0x43, 0xbe, + 0x4f, 0xc2, 0x58, 0x97, 0x92, 0x3d, 0x83, 0x1f, 0x2b, 0xb4, 0x3d, 0x81, 0xad, 0x13, 0xb1, 0x4e, + 0xbd, 0x92, 0xec, 0xa4, 0x75, 0x43, 0x14, 0xba, 0x97, 0x33, 0xe2, 0x5f, 0xbb, 0xe2, 0x62, 0xd1, + 0x16, 0x16, 0xc9, 0xea, 0xa1, 0x40, 0x8e, 0xf1, 0xef, 0x64, 0xd7, 0x44, 0x50, 0x4d, 0x09, 0x8f, + 0x67, 0xc9, 0xc4, 0x8d, 0x29, 0xb9, 0x44, 0x7a, 0x89, 0xbd, 0x10, 0x85, 0xa7, 0x0a, 0x3f, 0x12, + 0x68, 0xfb, 0x9f, 0x4b, 0xb0, 0x5d, 0x94, 0xa4, 0x77, 0x7b, 0x1f, 0xb6, 0x8b, 0xa2, 0x74, 0xea, + 0xa4, 0x52, 0xf3, 0x7e, 0x5e, 0xa0, 0x4a, 0xa2, 0x9e, 0x42, 0x47, 0xb6, 0xcb, 0xdd, 0x40, 0x71, + 0x2a, 0x26, 0x8c, 0xf9, 0x7d, 0x71, 0xda, 0x5e, 0x7e, 0x97, 0x3e, 0x86, 0x57, 0xf4, 0xf2, 0xdd, + 0x45, 0xb5, 0x95, 0x43, 0xec, 0x68, 0x82, 0xf3, 0x39, 0xed, 0xbf, 0x82, 0x41, 0x86, 0x3a, 0xbc, + 0x93, 0xc8, 0xec, 0x50, 0x6e, 0xcd, 0x2d, 0xf6, 0x20, 0x08, 0xa8, 0x3c, 0xed, 0x55, 0x67, 0xd9, + 0x90, 0xfd, 0x19, 0x3c, 0x1c, 0x23, 0xae, 0xac, 0xe1, 0x71, 0x5d, 0xc5, 0x29, 0x66, 0x9b, 0x50, + 0x19, 0x23, 0x5f, 0x2e, 0xbe, 0xe2, 0x88, 0x4f, 0xe1, 0x80, 0x17, 0x0c, 0xf9, 0x72, 0x95, 0x15, + 0x47, 0x7e, 0xdb, 0x31, 0xd4, 0x3f, 0x1f, 0x9f, 0x88, 0x5c, 0x4d, 0x38, 0xb5, 0xca, 0xed, 0xf4, + 0x3d, 0xde, 0x71, 0xea, 0x12, 0x3e, 0x0b, 0xac, 0x2f, 0x60, 0x4b, 0x0d, 0xf9, 0x53, 0x2f, 0x9a, + 0x20, 0x37, 0x26, 0x33, 0xec, 0x2b, 0xd7, 0xef, 0x3e, 0x19, 0xea, 0x30, 0xa4, 0xf9, 0x1c, 0x49, + 0x92, 0x91, 0xa4, 0x70, 0xfa, 0x93, 0x79, 0x94, 0xfd, 0x77, 0x25, 0x68, 0xe5, 0x9a, 0xe2, 0x4b, + 0xaf, 0xfa, 0x87, 0x50, 0x67, 0xd4, 0x77, 0x7d, 0x4e, 0x4d, 0x46, 0xc1, 0xa8, 0x7f, 0xc4, 0xa9, + 0xd0, 0x51, 0x0c, 0xc8, 0x6b, 0x52, 0xf5, 0x02, 0x04, 0xa1, 0xbc, 0x20, 0x1f, 0x42, 0x3d, 0x60, + 0x5c, 0xce, 0xa9, 0xaa, 0x39, 0x01, 0xe3, 0x7a, 0x8e, 0x18, 0x90, 0x73, 0xd4, 0xf5, 0x2b, 0x08, + 0xc5, 0x1c, 0xfb, 0xbf, 0x4a, 0x50, 0xd7, 0xb1, 0x5a, 0xa4, 0x26, 0x01, 0xc5, 0x37, 0x88, 0x6a, + 0x4d, 0x34, 0x64, 0xbd, 0x09, 0x5d, 0xf5, 0xe5, 0x92, 0x98, 0x63, 0x92, 0x26, 0x0b, 0x1d, 0x85, + 0x7d, 0xae, 0x90, 0xb2, 0x6d, 0x2b, 0x1b, 0xa7, 0x5a, 0x2f, 0x0d, 0x09, 0xfc, 0x15, 0x13, 0x06, + 0x32, 0x5a, 0x29, 0x48, 0x1c, 0x74, 0xc3, 0x6f, 0x43, 0xf2, 0x33, 0xa0, 0x38, 0xe8, 0xf2, 0x21, + 0xc1, 0x8d, 0x09, 0x8e, 0xb8, 0xce, 0x06, 0x40, 0xa2, 0x46, 0x02, 0x63, 0x3d, 0x86, 0xc6, 0x15, + 0x73, 0xa5, 0x65, 0x65, 0xe6, 0x9f, 0x5e, 0x3b, 0x7a, 0x07, 0x9c, 0xfa, 0x15, 0x93, 0x1f, 0xf6, + 0xdf, 0x94, 0xa0, 0xa6, 0x1e, 0x47, 0xac, 0x2e, 0x94, 0xd3, 0xec, 0xad, 0x8c, 0x65, 0x26, 0x2c, + 0xb5, 0x52, 0xf6, 0x95, 0xdf, 0xc2, 0x84, 0x37, 0x61, 0xde, 0xb8, 0xb5, 0x9b, 0x50, 0xda, 0xf6, + 0x4d, 0xe8, 0x66, 0x49, 0xa0, 0x1c, 0x57, 0x8b, 0xe9, 0xa4, 0x58, 0x49, 0xb6, 0x72, 0x4d, 0xf6, + 0x9f, 0x00, 0x64, 0xcd, 0x7e, 0xe1, 0x9a, 0x49, 0xaa, 0x8c, 0xf8, 0x14, 0x98, 0x49, 0x9a, 0x3e, + 0x8a, 0x4f, 0xeb, 0x2d, 0xe8, 0x7a, 0x41, 0x80, 0xc5, 0x74, 0x6f, 0x76, 0x82, 0x83, 0x34, 0x98, + 0x15, 0xb1, 0xf6, 0xbf, 0x95, 0xa0, 0x77, 0x44, 0xe2, 0xbb, 0xcf, 0xf1, 0x0c, 0xe5, 0x22, 0xad, + 0x54, 0x52, 0xbb, 0x94, 0xf8, 0x16, 0x15, 0xd1, 0x15, 0x9e, 0x21, 0x15, 0x82, 0xd4, 0x09, 0x68, + 0x08, 0x84, 0x0c, 0x3f, 0x66, 0x30, 0x6d, 0xed, 0x76, 0xd4, 0xe0, 0x39, 0x09, 0x64, 0xed, 0x17, + 0x60, 0xea, 0xa6, 0x8d, 0xdc, 0x8e, 0x53, 0x0f, 0x30, 0x95, 0x43, 0x7a, 0x21, 0x1b, 0xb2, 0x51, + 0x9f, 0x5f, 0x48, 0x4d, 0x61, 0xc4, 0x42, 0x76, 0xa0, 0x46, 0xae, 0xae, 0x18, 0xe2, 0x72, 0xaf, + 0x2a, 0x8e, 0x86, 0xd2, 0xeb, 0xa0, 0x91, 0xbb, 0x0e, 0xb6, 0xe5, 0x1d, 0xfb, 0xfc, 0xf9, 0xf9, + 0xf1, 0x0d, 0x8a, 0xb8, 0xc9, 0x06, 0xde, 0x87, 0x86, 0x41, 0xfd, 0x90, 0x16, 0xf8, 0xbb, 0xd0, + 0x3d, 0x08, 0x82, 0xf1, 0x0b, 0x2f, 0x36, 0xf6, 0x18, 0x40, 0x7d, 0x74, 0x74, 0x36, 0x52, 0x26, + 0xa9, 0x88, 0x05, 0x68, 0x50, 0x64, 0x1f, 0x27, 0x88, 0x9f, 0x23, 0x4e, 0xb1, 0x9f, 0x66, 0x1f, + 0x6f, 0x40, 0x5d, 0x63, 0xc4, 0xcc, 0x50, 0x7d, 0x9a, 0xeb, 0x48, 0x83, 0xf6, 0x1f, 0x81, 0xf5, + 0x6b, 0x91, 0xbb, 0x23, 0x55, 0xb8, 0x69, 0x49, 0xef, 0x42, 0xff, 0x46, 0x62, 0x5d, 0x95, 0xd4, + 0xe6, 0xb6, 0xa1, 0xa7, 0x06, 0x64, 0xac, 0x92, 0xb2, 0x2f, 0x60, 0x4b, 0x95, 0x1a, 0x8a, 0xcf, + 0x3d, 0x58, 0x08, 0x1b, 0xa6, 0xfb, 0x59, 0x75, 0xe4, 0xb7, 0xfd, 0x2e, 0x6c, 0x8e, 0x11, 0xd7, + 0xf1, 0x47, 0xf3, 0xdc, 0x81, 0x9a, 0x0e, 0x59, 0xfa, 0x6c, 0x2b, 0xe8, 0xc9, 0xbf, 0x6c, 0xeb, + 0xeb, 0x57, 0x77, 0xc1, 0xac, 0x13, 0xe8, 0xcd, 0x3d, 0x75, 0x5a, 0xba, 0x2d, 0xba, 0xfc, 0x05, + 0x74, 0xb8, 0xb3, 0xa7, 0x9e, 0x4e, 0xf7, 0xcc, 0xd3, 0xe9, 0xde, 0x71, 0x18, 0xf3, 0x3b, 0xeb, + 0x18, 0xba, 0xc5, 0xc7, 0x3d, 0xeb, 0x55, 0x93, 0x1a, 0x2e, 0x79, 0xf2, 0x5b, 0xc9, 0xe6, 0x04, + 0x7a, 0x73, 0xef, 0x7c, 0x46, 0x9f, 0xe5, 0xcf, 0x7f, 0x2b, 0x19, 0x7d, 0x06, 0xad, 0xdc, 0xc3, + 0x9e, 0x35, 0x50, 0x4c, 0x16, 0xdf, 0xfa, 0x56, 0x32, 0x38, 0x82, 0x4e, 0xe1, 0xad, 0xcd, 0x1a, + 0xea, 0xf5, 0x2c, 0x79, 0x80, 0x5b, 0xc9, 0xe4, 0x10, 0x5a, 0xb9, 0x27, 0x2f, 0xa3, 0xc5, 0xe2, + 0xbb, 0xda, 0xf0, 0x95, 0x25, 0x23, 0xfa, 0x96, 0x3f, 0x81, 0xde, 0xdc, 0x3b, 0x98, 0x31, 0xc9, + 0xf2, 0xe7, 0xb1, 0x95, 0xca, 0x8c, 0xe1, 0xc1, 0xd2, 0xec, 0xde, 0xb2, 0xf3, 0xec, 0x96, 0xa7, + 0xfe, 0x2b, 0x99, 0x7e, 0x29, 0xf7, 0x3d, 0xd7, 0x3b, 0xc9, 0xed, 0xfb, 0xe2, 0x53, 0xda, 0xf0, + 0xb5, 0xe5, 0x83, 0x7a, 0xa9, 0xc7, 0xd0, 0x2d, 0xbe, 0xa2, 0x19, 0x66, 0x4b, 0xdf, 0xd6, 0xd6, + 0x3b, 0x51, 0xe1, 0x41, 0x2d, 0x73, 0xa2, 0x65, 0xef, 0x6c, 0x2b, 0x19, 0x21, 0xd8, 0x5d, 0x5f, + 0x2f, 0x5a, 0xef, 0xe5, 0x9d, 0xf3, 0x7b, 0xaa, 0xca, 0x95, 0x62, 0x0e, 0x00, 0x74, 0x43, 0x26, + 0xc0, 0x51, 0xea, 0x24, 0x0b, 0x8d, 0xa0, 0xd4, 0x49, 0x96, 0x34, 0x6f, 0x3e, 0x03, 0x50, 0x7d, + 0x94, 0x80, 0x24, 0xdc, 0x7a, 0x68, 0xb4, 0x9a, 0x6b, 0xde, 0x0c, 0x07, 0x8b, 0x03, 0x0b, 0x0c, + 0x10, 0xa5, 0xf7, 0x61, 0xf0, 0x4b, 0x80, 0xac, 0x3f, 0x63, 0x18, 0x2c, 0x74, 0x6c, 0xd6, 0xd8, + 0xa0, 0x9d, 0xef, 0xc6, 0x58, 0x7a, 0xad, 0x4b, 0x3a, 0x34, 0x6b, 0x58, 0xf4, 0xe6, 0x8a, 0xe8, + 0xe2, 0x41, 0x99, 0xaf, 0xad, 0x87, 0x0b, 0x85, 0xb4, 0xf5, 0x14, 0xda, 0xf9, 0xea, 0xd9, 0x68, + 0xb1, 0xa4, 0xa2, 0x1e, 0x16, 0x2a, 0x68, 0xeb, 0x33, 0xe8, 0x16, 0xcb, 0x5d, 0xe3, 0xb9, 0x4b, + 0x8b, 0xe0, 0xa1, 0x6e, 0x20, 0xe7, 0xc8, 0x3f, 0x00, 0xc8, 0xca, 0x62, 0x63, 0xbe, 0x85, 0x42, + 0x79, 0x4e, 0xea, 0x09, 0xf4, 0xe6, 0xca, 0x5d, 0xb3, 0xe2, 0xe5, 0x55, 0xf0, 0xba, 0x38, 0x95, + 0x2b, 0x5e, 0x8d, 0x0b, 0x2e, 0x96, 0xbf, 0xc6, 0x05, 0x97, 0x55, 0xba, 0x87, 0xd0, 0x1a, 0x2f, + 0xf2, 0x18, 0xaf, 0xe4, 0xb1, 0xac, 0x7e, 0xfd, 0x10, 0x20, 0xbb, 0x9e, 0x8d, 0x15, 0x16, 0x2e, + 0xec, 0x61, 0xc7, 0x34, 0xf9, 0x15, 0xdd, 0x11, 0x74, 0x0a, 0x7d, 0x30, 0x13, 0xaa, 0x97, 0x35, + 0xc7, 0xd6, 0x5d, 0x60, 0xc5, 0xa6, 0x91, 0xd9, 0xc1, 0xa5, 0xad, 0xa4, 0x75, 0x7e, 0x9c, 0xaf, + 0xb6, 0x8d, 0x07, 0x2d, 0xa9, 0xc0, 0xbf, 0x27, 0x7c, 0xe5, 0x2b, 0xea, 0x5c, 0xf8, 0x5a, 0x52, + 0x68, 0xaf, 0x64, 0x74, 0x0a, 0xbd, 0x13, 0x53, 0x2c, 0xe9, 0x42, 0xce, 0xec, 0xdf, 0x62, 0xe1, + 0x3a, 0x1c, 0x2e, 0x1b, 0xd2, 0xfb, 0xf2, 0x25, 0xf4, 0x17, 0x8a, 0x38, 0x6b, 0x37, 0x7d, 0x6a, + 0x59, 0x5a, 0xdd, 0xad, 0x54, 0xeb, 0x4c, 0x26, 0x2c, 0x85, 0x1a, 0xce, 0x7a, 0x3d, 0xf5, 0x89, + 0x65, 0xb5, 0xdd, 0x4a, 0x56, 0x1f, 0x43, 0xc3, 0xe4, 0xc2, 0x96, 0x7e, 0xd2, 0x9a, 0xcb, 0x8d, + 0x57, 0x4e, 0x7d, 0x2a, 0x5d, 0x3e, 0xcd, 0x33, 0x33, 0x97, 0x9f, 0xcb, 0x46, 0x87, 0xfa, 0x05, + 0x2a, 0xa5, 0x7c, 0x0a, 0x75, 0x9d, 0x6e, 0x5a, 0xdb, 0xe9, 0x61, 0xcb, 0x65, 0x9f, 0xeb, 0x3c, + 0xec, 0x04, 0xf1, 0x5c, 0x12, 0x69, 0x84, 0x2e, 0xe6, 0x95, 0xe6, 0x8c, 0x14, 0x46, 0xf4, 0x5e, + 0x1c, 0x40, 0x3b, 0x9f, 0x46, 0x9a, 0x2d, 0x5d, 0x92, 0x5a, 0xae, 0xd4, 0xe4, 0x53, 0x68, 0xa6, + 0x29, 0xa3, 0xb5, 0x93, 0x9a, 0xbe, 0x90, 0x43, 0xae, 0x9a, 0x7c, 0x78, 0xfb, 0xed, 0xef, 0x77, + 0x7f, 0xf4, 0x9f, 0xbf, 0xdf, 0xfd, 0xd1, 0x5f, 0x7f, 0xb7, 0x5b, 0xfa, 0xf6, 0xbb, 0xdd, 0xd2, + 0xbf, 0x7f, 0xb7, 0x5b, 0xfa, 0x9f, 0xef, 0x76, 0x4b, 0x7f, 0xfa, 0x17, 0x13, 0xcc, 0xa7, 0xc9, + 0xe5, 0x9e, 0x4f, 0xc2, 0xfd, 0x6b, 0x8f, 0x7b, 0xef, 0xa7, 0x59, 0x3a, 0x5b, 0x80, 0x19, 0xf5, + 0xf7, 0x69, 0x12, 0x71, 0x1c, 0xa2, 0xfd, 0x1b, 0x4c, 0x79, 0x6e, 0x28, 0xbe, 0x9e, 0xec, 0xcb, + 0xee, 0x83, 0xfa, 0x7b, 0x9e, 0x4f, 0x66, 0x6c, 0x5f, 0xa8, 0x78, 0x59, 0x93, 0xf0, 0x07, 0xff, + 0x17, 0x00, 0x00, 0xff, 0xff, 0xd7, 0x26, 0xee, 0xad, 0xf4, 0x27, 0x00, 0x00, } func (m *CreateContainerRequest) Marshal() (dAtA []byte, err error) { @@ -3131,6 +3192,20 @@ func (m *CreateContainerRequest) MarshalToSizedBuffer(dAtA []byte) (int, error) i -= len(m.XXX_unrecognized) copy(dAtA[i:], m.XXX_unrecognized) } + if len(m.SharedMounts) > 0 { + for iNdEx := len(m.SharedMounts) - 1; iNdEx >= 0; iNdEx-- { + { + size, err := m.SharedMounts[iNdEx].MarshalToSizedBuffer(dAtA[:i]) + if err != nil { + return 0, err + } + i -= size + i = encodeVarintAgent(dAtA, i, uint64(size)) + } + i-- + dAtA[i] = 0x42 + } + } if m.SandboxPidns { i-- if m.SandboxPidns { @@ -5711,6 +5786,68 @@ func (m *FSGroup) MarshalToSizedBuffer(dAtA []byte) (int, error) { return len(dAtA) - i, nil } +func (m *SharedMount) Marshal() (dAtA []byte, err error) { + size := m.Size() + dAtA = make([]byte, size) + n, err := m.MarshalToSizedBuffer(dAtA[:size]) + if err != nil { + return nil, err + } + return dAtA[:n], nil +} + +func (m *SharedMount) MarshalTo(dAtA []byte) (int, error) { + size := m.Size() + return m.MarshalToSizedBuffer(dAtA[:size]) +} + +func (m *SharedMount) MarshalToSizedBuffer(dAtA []byte) (int, error) { + i := len(dAtA) + _ = i + var l int + _ = l + if m.XXX_unrecognized != nil { + i -= len(m.XXX_unrecognized) + copy(dAtA[i:], m.XXX_unrecognized) + } + if len(m.DstPath) > 0 { + i -= len(m.DstPath) + copy(dAtA[i:], m.DstPath) + i = encodeVarintAgent(dAtA, i, uint64(len(m.DstPath))) + i-- + dAtA[i] = 0x2a + } + if len(m.DstCtr) > 0 { + i -= len(m.DstCtr) + copy(dAtA[i:], m.DstCtr) + i = encodeVarintAgent(dAtA, i, uint64(len(m.DstCtr))) + i-- + dAtA[i] = 0x22 + } + if len(m.SrcPath) > 0 { + i -= len(m.SrcPath) + copy(dAtA[i:], m.SrcPath) + i = encodeVarintAgent(dAtA, i, uint64(len(m.SrcPath))) + i-- + dAtA[i] = 0x1a + } + if len(m.SrcCtr) > 0 { + i -= len(m.SrcCtr) + copy(dAtA[i:], m.SrcCtr) + i = encodeVarintAgent(dAtA, i, uint64(len(m.SrcCtr))) + i-- + dAtA[i] = 0x12 + } + if len(m.Name) > 0 { + i -= len(m.Name) + copy(dAtA[i:], m.Name) + i = encodeVarintAgent(dAtA, i, uint64(len(m.Name))) + i-- + dAtA[i] = 0xa + } + return len(dAtA) - i, nil +} + func (m *Storage) Marshal() (dAtA []byte, err error) { size := m.Size() dAtA = make([]byte, size) @@ -6303,6 +6440,12 @@ func (m *CreateContainerRequest) Size() (n int) { if m.SandboxPidns { n += 2 } + if len(m.SharedMounts) > 0 { + for _, e := range m.SharedMounts { + l = e.Size() + n += 1 + l + sovAgent(uint64(l)) + } + } if m.XXX_unrecognized != nil { n += len(m.XXX_unrecognized) } @@ -7447,6 +7590,38 @@ func (m *FSGroup) Size() (n int) { return n } +func (m *SharedMount) Size() (n int) { + if m == nil { + return 0 + } + var l int + _ = l + l = len(m.Name) + if l > 0 { + n += 1 + l + sovAgent(uint64(l)) + } + l = len(m.SrcCtr) + if l > 0 { + n += 1 + l + sovAgent(uint64(l)) + } + l = len(m.SrcPath) + if l > 0 { + n += 1 + l + sovAgent(uint64(l)) + } + l = len(m.DstCtr) + if l > 0 { + n += 1 + l + sovAgent(uint64(l)) + } + l = len(m.DstPath) + if l > 0 { + n += 1 + l + sovAgent(uint64(l)) + } + if m.XXX_unrecognized != nil { + n += len(m.XXX_unrecognized) + } + return n +} + func (m *Storage) Size() (n int) { if m == nil { return 0 @@ -7735,6 +7910,11 @@ func (this *CreateContainerRequest) String() string { repeatedStringForStorages += strings.Replace(f.String(), "Storage", "Storage", 1) + "," } repeatedStringForStorages += "}" + repeatedStringForSharedMounts := "[]*SharedMount{" + for _, f := range this.SharedMounts { + repeatedStringForSharedMounts += strings.Replace(f.String(), "SharedMount", "SharedMount", 1) + "," + } + repeatedStringForSharedMounts += "}" s := strings.Join([]string{`&CreateContainerRequest{`, `ContainerId:` + fmt.Sprintf("%v", this.ContainerId) + `,`, `ExecId:` + fmt.Sprintf("%v", this.ExecId) + `,`, @@ -7743,6 +7923,7 @@ func (this *CreateContainerRequest) String() string { `Storages:` + repeatedStringForStorages + `,`, `OCI:` + strings.Replace(fmt.Sprintf("%v", this.OCI), "Spec", "Spec", 1) + `,`, `SandboxPidns:` + fmt.Sprintf("%v", this.SandboxPidns) + `,`, + `SharedMounts:` + repeatedStringForSharedMounts + `,`, `XXX_unrecognized:` + fmt.Sprintf("%v", this.XXX_unrecognized) + `,`, `}`, }, "") @@ -8497,6 +8678,21 @@ func (this *FSGroup) String() string { }, "") return s } +func (this *SharedMount) String() string { + if this == nil { + return "nil" + } + s := strings.Join([]string{`&SharedMount{`, + `Name:` + fmt.Sprintf("%v", this.Name) + `,`, + `SrcCtr:` + fmt.Sprintf("%v", this.SrcCtr) + `,`, + `SrcPath:` + fmt.Sprintf("%v", this.SrcPath) + `,`, + `DstCtr:` + fmt.Sprintf("%v", this.DstCtr) + `,`, + `DstPath:` + fmt.Sprintf("%v", this.DstPath) + `,`, + `XXX_unrecognized:` + fmt.Sprintf("%v", this.XXX_unrecognized) + `,`, + `}`, + }, "") + return s +} func (this *Storage) String() string { if this == nil { return "nil" @@ -9534,6 +9730,40 @@ func (m *CreateContainerRequest) Unmarshal(dAtA []byte) error { } } m.SandboxPidns = bool(v != 0) + case 8: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field SharedMounts", wireType) + } + var msglen int + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowAgent + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + msglen |= int(b&0x7F) << shift + if b < 0x80 { + break + } + } + if msglen < 0 { + return ErrInvalidLengthAgent + } + postIndex := iNdEx + msglen + if postIndex < 0 { + return ErrInvalidLengthAgent + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + m.SharedMounts = append(m.SharedMounts, &SharedMount{}) + if err := m.SharedMounts[len(m.SharedMounts)-1].Unmarshal(dAtA[iNdEx:postIndex]); err != nil { + return err + } + iNdEx = postIndex default: iNdEx = preIndex skippy, err := skipAgent(dAtA[iNdEx:]) @@ -15951,6 +16181,217 @@ func (m *FSGroup) Unmarshal(dAtA []byte) error { } return nil } +func (m *SharedMount) 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 ErrIntOverflowAgent + } + 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: SharedMount: wiretype end group for non-group") + } + if fieldNum <= 0 { + return fmt.Errorf("proto: SharedMount: illegal tag %d (wire type %d)", fieldNum, wire) + } + switch fieldNum { + case 1: + 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 ErrIntOverflowAgent + } + 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 ErrInvalidLengthAgent + } + postIndex := iNdEx + intStringLen + if postIndex < 0 { + return ErrInvalidLengthAgent + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + m.Name = string(dAtA[iNdEx:postIndex]) + iNdEx = postIndex + case 2: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field SrcCtr", wireType) + } + var stringLen uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowAgent + } + 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 ErrInvalidLengthAgent + } + postIndex := iNdEx + intStringLen + if postIndex < 0 { + return ErrInvalidLengthAgent + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + m.SrcCtr = string(dAtA[iNdEx:postIndex]) + iNdEx = postIndex + case 3: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field SrcPath", wireType) + } + var stringLen uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowAgent + } + 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 ErrInvalidLengthAgent + } + postIndex := iNdEx + intStringLen + if postIndex < 0 { + return ErrInvalidLengthAgent + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + m.SrcPath = string(dAtA[iNdEx:postIndex]) + iNdEx = postIndex + case 4: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field DstCtr", wireType) + } + var stringLen uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowAgent + } + 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 ErrInvalidLengthAgent + } + postIndex := iNdEx + intStringLen + if postIndex < 0 { + return ErrInvalidLengthAgent + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + m.DstCtr = string(dAtA[iNdEx:postIndex]) + iNdEx = postIndex + case 5: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field DstPath", wireType) + } + var stringLen uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowAgent + } + 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 ErrInvalidLengthAgent + } + postIndex := iNdEx + intStringLen + if postIndex < 0 { + return ErrInvalidLengthAgent + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + m.DstPath = string(dAtA[iNdEx:postIndex]) + iNdEx = postIndex + default: + iNdEx = preIndex + skippy, err := skipAgent(dAtA[iNdEx:]) + if err != nil { + return err + } + if (skippy < 0) || (iNdEx+skippy) < 0 { + return ErrInvalidLengthAgent + } + if (iNdEx + skippy) > l { + return io.ErrUnexpectedEOF + } + m.XXX_unrecognized = append(m.XXX_unrecognized, dAtA[iNdEx:iNdEx+skippy]...) + iNdEx += skippy + } + } + + if iNdEx > l { + return io.ErrUnexpectedEOF + } + return nil +} func (m *Storage) Unmarshal(dAtA []byte) error { l := len(dAtA) iNdEx := 0