Fix stdin type on attach

This commit is contained in:
Tim St. Clair 2016-10-20 14:54:16 -07:00
parent 80d7fcad86
commit c29ec1d02a
No known key found for this signature in database
GPG Key ID: 434D16BCEF479EAB
2 changed files with 309 additions and 309 deletions

View File

@ -74,10 +74,10 @@ It has these top-level messages:
ContainerStatusRequest
ContainerStatus
ContainerStatusResponse
ExecRequest
ExecResponse
ExecSyncRequest
ExecSyncResponse
ExecRequest
ExecResponse
AttachRequest
AttachResponse
PortForwardRequest
@ -2020,6 +2020,78 @@ func (m *ContainerStatusResponse) GetStatus() *ContainerStatus {
return nil
}
type ExecSyncRequest struct {
// The id of the container
ContainerId *string `protobuf:"bytes,1,opt,name=container_id,json=containerId" json:"container_id,omitempty"`
// The cmd to execute
Cmd []string `protobuf:"bytes,2,rep,name=cmd" json:"cmd,omitempty"`
// Timeout in seconds to stop the command. Default: run forever.
Timeout *int64 `protobuf:"varint,3,opt,name=timeout" json:"timeout,omitempty"`
XXX_unrecognized []byte `json:"-"`
}
func (m *ExecSyncRequest) Reset() { *m = ExecSyncRequest{} }
func (m *ExecSyncRequest) String() string { return proto.CompactTextString(m) }
func (*ExecSyncRequest) ProtoMessage() {}
func (*ExecSyncRequest) Descriptor() ([]byte, []int) { return fileDescriptorApi, []int{49} }
func (m *ExecSyncRequest) GetContainerId() string {
if m != nil && m.ContainerId != nil {
return *m.ContainerId
}
return ""
}
func (m *ExecSyncRequest) GetCmd() []string {
if m != nil {
return m.Cmd
}
return nil
}
func (m *ExecSyncRequest) GetTimeout() int64 {
if m != nil && m.Timeout != nil {
return *m.Timeout
}
return 0
}
type ExecSyncResponse struct {
// The captured command stdout output.
Stdout []byte `protobuf:"bytes,1,opt,name=stdout" json:"stdout,omitempty"`
// The captured command stderr output.
Stderr []byte `protobuf:"bytes,2,opt,name=stderr" json:"stderr,omitempty"`
// The exit code the command finished with.
ExitCode *int32 `protobuf:"varint,3,opt,name=exit_code,json=exitCode" json:"exit_code,omitempty"`
XXX_unrecognized []byte `json:"-"`
}
func (m *ExecSyncResponse) Reset() { *m = ExecSyncResponse{} }
func (m *ExecSyncResponse) String() string { return proto.CompactTextString(m) }
func (*ExecSyncResponse) ProtoMessage() {}
func (*ExecSyncResponse) Descriptor() ([]byte, []int) { return fileDescriptorApi, []int{50} }
func (m *ExecSyncResponse) GetStdout() []byte {
if m != nil {
return m.Stdout
}
return nil
}
func (m *ExecSyncResponse) GetStderr() []byte {
if m != nil {
return m.Stderr
}
return nil
}
func (m *ExecSyncResponse) GetExitCode() int32 {
if m != nil && m.ExitCode != nil {
return *m.ExitCode
}
return 0
}
type ExecRequest struct {
// The id of the container
ContainerId *string `protobuf:"bytes,1,opt,name=container_id,json=containerId" json:"container_id,omitempty"`
@ -2027,7 +2099,7 @@ type ExecRequest struct {
Cmd []string `protobuf:"bytes,2,rep,name=cmd" json:"cmd,omitempty"`
// Whether use tty
Tty *bool `protobuf:"varint,3,opt,name=tty" json:"tty,omitempty"`
// Streaming stdin
// Whether to stream stdin
Stdin *bool `protobuf:"varint,4,opt,name=stdin" json:"stdin,omitempty"`
XXX_unrecognized []byte `json:"-"`
}
@ -2035,7 +2107,7 @@ type ExecRequest struct {
func (m *ExecRequest) Reset() { *m = ExecRequest{} }
func (m *ExecRequest) String() string { return proto.CompactTextString(m) }
func (*ExecRequest) ProtoMessage() {}
func (*ExecRequest) Descriptor() ([]byte, []int) { return fileDescriptorApi, []int{49} }
func (*ExecRequest) Descriptor() ([]byte, []int) { return fileDescriptorApi, []int{51} }
func (m *ExecRequest) GetContainerId() string {
if m != nil && m.ContainerId != nil {
@ -2074,7 +2146,7 @@ type ExecResponse struct {
func (m *ExecResponse) Reset() { *m = ExecResponse{} }
func (m *ExecResponse) String() string { return proto.CompactTextString(m) }
func (*ExecResponse) ProtoMessage() {}
func (*ExecResponse) Descriptor() ([]byte, []int) { return fileDescriptorApi, []int{50} }
func (*ExecResponse) Descriptor() ([]byte, []int) { return fileDescriptorApi, []int{52} }
func (m *ExecResponse) GetUrl() string {
if m != nil && m.Url != nil {
@ -2083,84 +2155,12 @@ func (m *ExecResponse) GetUrl() string {
return ""
}
type ExecSyncRequest struct {
// The id of the container
ContainerId *string `protobuf:"bytes,1,opt,name=container_id,json=containerId" json:"container_id,omitempty"`
// The cmd to execute
Cmd []string `protobuf:"bytes,2,rep,name=cmd" json:"cmd,omitempty"`
// Timeout in seconds to stop the command. Default: run forever.
Timeout *int64 `protobuf:"varint,3,opt,name=timeout" json:"timeout,omitempty"`
XXX_unrecognized []byte `json:"-"`
}
func (m *ExecSyncRequest) Reset() { *m = ExecSyncRequest{} }
func (m *ExecSyncRequest) String() string { return proto.CompactTextString(m) }
func (*ExecSyncRequest) ProtoMessage() {}
func (*ExecSyncRequest) Descriptor() ([]byte, []int) { return fileDescriptorApi, []int{51} }
func (m *ExecSyncRequest) GetContainerId() string {
if m != nil && m.ContainerId != nil {
return *m.ContainerId
}
return ""
}
func (m *ExecSyncRequest) GetCmd() []string {
if m != nil {
return m.Cmd
}
return nil
}
func (m *ExecSyncRequest) GetTimeout() int64 {
if m != nil && m.Timeout != nil {
return *m.Timeout
}
return 0
}
type ExecSyncResponse struct {
// The captured command stdout output.
Stdout []byte `protobuf:"bytes,1,opt,name=stdout" json:"stdout,omitempty"`
// The captured command stderr output.
Stderr []byte `protobuf:"bytes,2,opt,name=stderr" json:"stderr,omitempty"`
// The exit code the command finished with.
ExitCode *int32 `protobuf:"varint,3,opt,name=exit_code,json=exitCode" json:"exit_code,omitempty"`
XXX_unrecognized []byte `json:"-"`
}
func (m *ExecSyncResponse) Reset() { *m = ExecSyncResponse{} }
func (m *ExecSyncResponse) String() string { return proto.CompactTextString(m) }
func (*ExecSyncResponse) ProtoMessage() {}
func (*ExecSyncResponse) Descriptor() ([]byte, []int) { return fileDescriptorApi, []int{52} }
func (m *ExecSyncResponse) GetStdout() []byte {
if m != nil {
return m.Stdout
}
return nil
}
func (m *ExecSyncResponse) GetStderr() []byte {
if m != nil {
return m.Stderr
}
return nil
}
func (m *ExecSyncResponse) GetExitCode() int32 {
if m != nil && m.ExitCode != nil {
return *m.ExitCode
}
return 0
}
type AttachRequest struct {
// The id of the container
ContainerId *string `protobuf:"bytes,1,opt,name=container_id,json=containerId" json:"container_id,omitempty"`
// Streaming stdin
Stdin *string `protobuf:"bytes,2,opt,name=stdin" json:"stdin,omitempty"`
XXX_unrecognized []byte `json:"-"`
// Whether to stream stdin
Stdin *bool `protobuf:"varint,2,opt,name=stdin" json:"stdin,omitempty"`
XXX_unrecognized []byte `json:"-"`
}
func (m *AttachRequest) Reset() { *m = AttachRequest{} }
@ -2175,11 +2175,11 @@ func (m *AttachRequest) GetContainerId() string {
return ""
}
func (m *AttachRequest) GetStdin() string {
func (m *AttachRequest) GetStdin() bool {
if m != nil && m.Stdin != nil {
return *m.Stdin
}
return ""
return false
}
type AttachResponse struct {
@ -2625,10 +2625,10 @@ func init() {
proto.RegisterType((*ContainerStatusRequest)(nil), "runtime.ContainerStatusRequest")
proto.RegisterType((*ContainerStatus)(nil), "runtime.ContainerStatus")
proto.RegisterType((*ContainerStatusResponse)(nil), "runtime.ContainerStatusResponse")
proto.RegisterType((*ExecRequest)(nil), "runtime.ExecRequest")
proto.RegisterType((*ExecResponse)(nil), "runtime.ExecResponse")
proto.RegisterType((*ExecSyncRequest)(nil), "runtime.ExecSyncRequest")
proto.RegisterType((*ExecSyncResponse)(nil), "runtime.ExecSyncResponse")
proto.RegisterType((*ExecRequest)(nil), "runtime.ExecRequest")
proto.RegisterType((*ExecResponse)(nil), "runtime.ExecResponse")
proto.RegisterType((*AttachRequest)(nil), "runtime.AttachRequest")
proto.RegisterType((*AttachResponse)(nil), "runtime.AttachResponse")
proto.RegisterType((*PortForwardRequest)(nil), "runtime.PortForwardRequest")
@ -2694,10 +2694,10 @@ type RuntimeServiceClient interface {
ListContainers(ctx context.Context, in *ListContainersRequest, opts ...grpc.CallOption) (*ListContainersResponse, error)
// ContainerStatus returns status of the container.
ContainerStatus(ctx context.Context, in *ContainerStatusRequest, opts ...grpc.CallOption) (*ContainerStatusResponse, error)
// ExecSync runs a command in a container synchronously.
ExecSync(ctx context.Context, in *ExecSyncRequest, opts ...grpc.CallOption) (*ExecSyncResponse, error)
// Exec prepares a streaming endpoint to execute a command in the container.
Exec(ctx context.Context, in *ExecRequest, opts ...grpc.CallOption) (*ExecResponse, error)
// ExecSync runs a command in a container synchonously.
ExecSync(ctx context.Context, in *ExecSyncRequest, opts ...grpc.CallOption) (*ExecSyncResponse, error)
// Attach prepares a streaming endpoint to attach to a running container.
Attach(ctx context.Context, in *AttachRequest, opts ...grpc.CallOption) (*AttachResponse, error)
// PortForward prepares a streaming endpoint to forward ports from a PodSandbox.
@ -2822,18 +2822,18 @@ func (c *runtimeServiceClient) ContainerStatus(ctx context.Context, in *Containe
return out, nil
}
func (c *runtimeServiceClient) Exec(ctx context.Context, in *ExecRequest, opts ...grpc.CallOption) (*ExecResponse, error) {
out := new(ExecResponse)
err := grpc.Invoke(ctx, "/runtime.RuntimeService/Exec", in, out, c.cc, opts...)
func (c *runtimeServiceClient) ExecSync(ctx context.Context, in *ExecSyncRequest, opts ...grpc.CallOption) (*ExecSyncResponse, error) {
out := new(ExecSyncResponse)
err := grpc.Invoke(ctx, "/runtime.RuntimeService/ExecSync", in, out, c.cc, opts...)
if err != nil {
return nil, err
}
return out, nil
}
func (c *runtimeServiceClient) ExecSync(ctx context.Context, in *ExecSyncRequest, opts ...grpc.CallOption) (*ExecSyncResponse, error) {
out := new(ExecSyncResponse)
err := grpc.Invoke(ctx, "/runtime.RuntimeService/ExecSync", in, out, c.cc, opts...)
func (c *runtimeServiceClient) Exec(ctx context.Context, in *ExecRequest, opts ...grpc.CallOption) (*ExecResponse, error) {
out := new(ExecResponse)
err := grpc.Invoke(ctx, "/runtime.RuntimeService/Exec", in, out, c.cc, opts...)
if err != nil {
return nil, err
}
@ -2900,10 +2900,10 @@ type RuntimeServiceServer interface {
ListContainers(context.Context, *ListContainersRequest) (*ListContainersResponse, error)
// ContainerStatus returns status of the container.
ContainerStatus(context.Context, *ContainerStatusRequest) (*ContainerStatusResponse, error)
// ExecSync runs a command in a container synchronously.
ExecSync(context.Context, *ExecSyncRequest) (*ExecSyncResponse, error)
// Exec prepares a streaming endpoint to execute a command in the container.
Exec(context.Context, *ExecRequest) (*ExecResponse, error)
// ExecSync runs a command in a container synchonously.
ExecSync(context.Context, *ExecSyncRequest) (*ExecSyncResponse, error)
// Attach prepares a streaming endpoint to attach to a running container.
Attach(context.Context, *AttachRequest) (*AttachResponse, error)
// PortForward prepares a streaming endpoint to forward ports from a PodSandbox.
@ -3132,24 +3132,6 @@ func _RuntimeService_ContainerStatus_Handler(srv interface{}, ctx context.Contex
return interceptor(ctx, in, info, handler)
}
func _RuntimeService_Exec_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
in := new(ExecRequest)
if err := dec(in); err != nil {
return nil, err
}
if interceptor == nil {
return srv.(RuntimeServiceServer).Exec(ctx, in)
}
info := &grpc.UnaryServerInfo{
Server: srv,
FullMethod: "/runtime.RuntimeService/Exec",
}
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
return srv.(RuntimeServiceServer).Exec(ctx, req.(*ExecRequest))
}
return interceptor(ctx, in, info, handler)
}
func _RuntimeService_ExecSync_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
in := new(ExecSyncRequest)
if err := dec(in); err != nil {
@ -3168,6 +3150,24 @@ func _RuntimeService_ExecSync_Handler(srv interface{}, ctx context.Context, dec
return interceptor(ctx, in, info, handler)
}
func _RuntimeService_Exec_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
in := new(ExecRequest)
if err := dec(in); err != nil {
return nil, err
}
if interceptor == nil {
return srv.(RuntimeServiceServer).Exec(ctx, in)
}
info := &grpc.UnaryServerInfo{
Server: srv,
FullMethod: "/runtime.RuntimeService/Exec",
}
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
return srv.(RuntimeServiceServer).Exec(ctx, req.(*ExecRequest))
}
return interceptor(ctx, in, info, handler)
}
func _RuntimeService_Attach_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
in := new(AttachRequest)
if err := dec(in); err != nil {
@ -3274,14 +3274,14 @@ var _RuntimeService_serviceDesc = grpc.ServiceDesc{
MethodName: "ContainerStatus",
Handler: _RuntimeService_ContainerStatus_Handler,
},
{
MethodName: "Exec",
Handler: _RuntimeService_Exec_Handler,
},
{
MethodName: "ExecSync",
Handler: _RuntimeService_ExecSync_Handler,
},
{
MethodName: "Exec",
Handler: _RuntimeService_Exec_Handler,
},
{
MethodName: "Attach",
Handler: _RuntimeService_Attach_Handler,
@ -3475,199 +3475,199 @@ var _ImageService_serviceDesc = grpc.ServiceDesc{
}
var fileDescriptorApi = []byte{
// 3104 bytes of a gzipped FileDescriptorProto
// 3101 bytes of a gzipped FileDescriptorProto
0x1f, 0x8b, 0x08, 0x00, 0x00, 0x09, 0x6e, 0x88, 0x02, 0xff, 0xcc, 0x1a, 0x4d, 0x77, 0xdb, 0xc6,
0x31, 0x14, 0x25, 0x8a, 0x1c, 0x8a, 0x14, 0xbd, 0x92, 0x25, 0x1a, 0x8e, 0x6d, 0x19, 0x49, 0x9a,
0x31, 0x24, 0x45, 0x8a, 0x1c, 0x8a, 0x14, 0xbd, 0x92, 0x25, 0x9a, 0x8e, 0x6d, 0x19, 0x49, 0x9a,
0x44, 0x49, 0xfc, 0x12, 0xb6, 0x4d, 0x9a, 0x2f, 0x27, 0x8a, 0xa4, 0xa4, 0x8a, 0x6d, 0x5a, 0x05,
0xed, 0x34, 0x79, 0x39, 0xa0, 0x30, 0x01, 0x4b, 0xb0, 0x49, 0x00, 0x01, 0x40, 0xc5, 0xec, 0xb5,
0x97, 0x1e, 0x7a, 0xe8, 0xb5, 0xb7, 0x1e, 0xfa, 0x5e, 0x0f, 0xbd, 0xf5, 0xbd, 0xbe, 0xd7, 0xff,
0xd0, 0xd7, 0x1f, 0xd2, 0x43, 0xcf, 0xed, 0xb1, 0xb3, 0x1f, 0x58, 0x2c, 0xbe, 0x14, 0xc9, 0x79,
0xaf, 0xf1, 0x0d, 0x3b, 0x33, 0x3b, 0x3b, 0x3b, 0x33, 0x3b, 0x3b, 0x33, 0x0b, 0x68, 0x59, 0x81,
0x7b, 0x23, 0x08, 0xfd, 0xd8, 0x27, 0xcb, 0xe1, 0xcc, 0x8b, 0xdd, 0xa9, 0xa3, 0x6f, 0x43, 0xf7,
0x0b, 0x27, 0x8c, 0x5c, 0xdf, 0x33, 0x9c, 0x6f, 0x66, 0x4e, 0x14, 0x93, 0x3e, 0x2c, 0x9f, 0x70,
0x48, 0xbf, 0xb6, 0x55, 0x7b, 0xa5, 0x65, 0x24, 0x43, 0xfd, 0xcf, 0x35, 0x58, 0x95, 0xc4, 0x51,
0xe0, 0x7b, 0x91, 0x53, 0x4d, 0x4d, 0xae, 0xc3, 0x8a, 0x58, 0xc4, 0xf4, 0xac, 0xa9, 0xd3, 0x5f,
0x60, 0xe8, 0xb6, 0x80, 0x0d, 0x11, 0x44, 0x5e, 0x86, 0xd5, 0x84, 0x24, 0x61, 0x52, 0x67, 0x54,
0x5d, 0x01, 0x16, 0xab, 0x91, 0x1b, 0xb0, 0x96, 0x10, 0xe2, 0x1e, 0x24, 0xf1, 0x22, 0x23, 0xbe,
0x20, 0x50, 0x3b, 0x81, 0x2b, 0xe8, 0xf5, 0xaf, 0xa1, 0xb5, 0x37, 0x1c, 0xed, 0xfa, 0xde, 0x43,
0xf7, 0x88, 0x8a, 0x18, 0x39, 0x21, 0x9d, 0x83, 0x22, 0xd6, 0xa9, 0x88, 0x62, 0x48, 0x34, 0x68,
0x46, 0x8e, 0x15, 0x8e, 0x8f, 0x9d, 0x08, 0xc5, 0xa3, 0x28, 0x39, 0xa6, 0xb3, 0xfc, 0x20, 0x46,
0x66, 0x11, 0xca, 0xc4, 0x66, 0x89, 0xa1, 0xfe, 0x87, 0x1a, 0xb4, 0x0f, 0xfd, 0x30, 0xbe, 0x63,
0x05, 0x81, 0xeb, 0x1d, 0x91, 0x37, 0xa0, 0xc9, 0x94, 0x3a, 0xf6, 0x27, 0x4c, 0x07, 0xdd, 0xc1,
0x85, 0x1b, 0x42, 0xa4, 0x1b, 0x87, 0x02, 0x61, 0x48, 0x12, 0xf2, 0x12, 0x74, 0xc7, 0xbe, 0x17,
0x5b, 0xae, 0xe7, 0x84, 0x66, 0x80, 0x7c, 0x98, 0x66, 0x96, 0x8c, 0x8e, 0x84, 0x52, 0xe6, 0xe4,
0x32, 0xb4, 0x8e, 0xfd, 0x28, 0xe6, 0x14, 0x75, 0x46, 0xd1, 0xa4, 0x00, 0x86, 0xdc, 0x84, 0x65,
0x86, 0x74, 0x03, 0xa1, 0x83, 0x06, 0x1d, 0x1e, 0x04, 0xfa, 0xef, 0x6b, 0xb0, 0x74, 0xc7, 0xc7,
0xc5, 0x73, 0xcb, 0x58, 0xf1, 0xb1, 0xb0, 0x8f, 0xb2, 0x0c, 0x02, 0xd3, 0x65, 0x28, 0x05, 0x37,
0x11, 0x5f, 0x86, 0x22, 0x51, 0x3f, 0xa1, 0x63, 0xd9, 0xbe, 0x37, 0x99, 0x33, 0x11, 0x9a, 0x86,
0x1c, 0x53, 0xdb, 0x45, 0xce, 0xc4, 0xf5, 0x66, 0x4f, 0xcc, 0xd0, 0x99, 0x58, 0x0f, 0x9c, 0x09,
0x13, 0xa5, 0x69, 0x74, 0x05, 0xd8, 0xe0, 0x50, 0xfd, 0x11, 0xac, 0x52, 0x63, 0x47, 0x81, 0x35,
0x76, 0xee, 0x32, 0x15, 0x52, 0xd7, 0x60, 0x8b, 0x7a, 0x4e, 0xfc, 0xad, 0x1f, 0x3e, 0x66, 0x92,
0x35, 0x8d, 0x36, 0x85, 0x0d, 0x39, 0x88, 0x5c, 0x82, 0x26, 0x97, 0xcb, 0xb5, 0x99, 0x58, 0x4d,
0x83, 0xed, 0xf8, 0xd0, 0xb5, 0x25, 0xca, 0x0d, 0xc6, 0x42, 0xaa, 0x65, 0xbe, 0xfb, 0xb1, 0xfe,
0x9b, 0x1a, 0x5c, 0xbc, 0x4d, 0x17, 0x3f, 0xf4, 0xed, 0x91, 0xe5, 0xd9, 0x0f, 0xfc, 0x27, 0xc2,
0x09, 0x5e, 0x80, 0xce, 0xf8, 0x28, 0xf4, 0x67, 0x01, 0xee, 0x34, 0x74, 0xbc, 0x58, 0x68, 0x63,
0x85, 0x03, 0x0f, 0x19, 0x8c, 0xec, 0xc3, 0x05, 0x2f, 0x11, 0xd5, 0x4c, 0xac, 0x4f, 0x57, 0x6f,
0x0f, 0xfa, 0xd2, 0xa4, 0xb9, 0xcd, 0x18, 0x3d, 0x2f, 0x0b, 0x88, 0xf4, 0x10, 0x48, 0xba, 0xfe,
0x1d, 0x27, 0xb6, 0x6c, 0x2b, 0xb6, 0x08, 0x81, 0x45, 0x76, 0x0e, 0xf8, 0xc2, 0xec, 0x9b, 0xf4,
0xa0, 0x3e, 0x13, 0x1b, 0x6c, 0x19, 0xf4, 0x93, 0x3c, 0x0f, 0x2d, 0xc9, 0x4f, 0x1c, 0x86, 0x14,
0x40, 0x9d, 0xd2, 0x8a, 0x63, 0x67, 0x1a, 0xc4, 0x4c, 0xd9, 0x1d, 0x23, 0x19, 0xea, 0x7f, 0x5f,
0x84, 0x5e, 0x61, 0xd3, 0xef, 0x40, 0x73, 0x2a, 0x96, 0x67, 0xcb, 0xb6, 0x07, 0x97, 0x53, 0xcf,
0x2c, 0x48, 0x68, 0x48, 0x62, 0x6a, 0x78, 0xaa, 0x52, 0xe5, 0xdc, 0xca, 0x31, 0xd5, 0xe4, 0xc4,
0x3f, 0x32, 0x6d, 0x37, 0x74, 0xc6, 0xb1, 0x1f, 0xce, 0x85, 0x94, 0x2b, 0x08, 0xdc, 0x4b, 0x60,
0xe4, 0x2d, 0x00, 0xdb, 0x8b, 0xcc, 0x31, 0x93, 0x83, 0xc9, 0xda, 0x1e, 0x10, 0xb9, 0xb6, 0x3c,
0x9b, 0x46, 0x0b, 0xa9, 0x84, 0xb0, 0xef, 0x42, 0x87, 0xfa, 0xba, 0x39, 0xe5, 0xc7, 0x2a, 0xea,
0x2f, 0xe1, 0xb1, 0x6b, 0x0f, 0xd6, 0x15, 0x89, 0xe5, 0x99, 0x33, 0x56, 0x82, 0x74, 0x10, 0x91,
0x0f, 0xa1, 0xc1, 0x7c, 0x2d, 0xea, 0x37, 0xd8, 0x9c, 0x97, 0x4a, 0x76, 0xc9, 0x57, 0xb9, 0x71,
0x9b, 0xd1, 0xed, 0x7b, 0x71, 0x38, 0x37, 0xc4, 0x24, 0x72, 0x1b, 0xda, 0x96, 0xe7, 0xf9, 0xb1,
0xc5, 0x0d, 0xbe, 0xcc, 0x78, 0x6c, 0x57, 0xf3, 0xd8, 0x49, 0x89, 0x39, 0x23, 0x75, 0x3a, 0xf9,
0x09, 0x2c, 0x31, 0xff, 0xef, 0x37, 0xd9, 0xae, 0xaf, 0x4a, 0x3e, 0xa5, 0x8e, 0x69, 0x70, 0x62,
0xed, 0x5d, 0x68, 0x2b, 0xa2, 0x51, 0xc7, 0x78, 0xec, 0xcc, 0x85, 0xaf, 0xd0, 0x4f, 0xb2, 0x0e,
0x4b, 0x27, 0xd6, 0x64, 0x96, 0xd8, 0x83, 0x0f, 0xde, 0x5b, 0xf8, 0x59, 0x4d, 0xbb, 0x09, 0xbd,
0xbc, 0x44, 0xe7, 0x99, 0xaf, 0x1f, 0xc0, 0xba, 0x31, 0xf3, 0x52, 0xc1, 0x92, 0x8b, 0xe0, 0x2d,
0x68, 0x08, 0xfb, 0x71, 0xdf, 0xb9, 0x54, 0xa9, 0x11, 0x43, 0x10, 0xea, 0x1f, 0xc2, 0xc5, 0x1c,
0x2b, 0x71, 0x4d, 0xbc, 0x08, 0xdd, 0xc0, 0xb7, 0xcd, 0x88, 0x83, 0x4d, 0xf4, 0x79, 0x71, 0xfe,
0x02, 0x49, 0x7b, 0x60, 0xd3, 0xe9, 0xa3, 0xd8, 0x0f, 0x8a, 0xa2, 0x9c, 0x6d, 0x7a, 0x1f, 0x36,
0xf2, 0xd3, 0xf9, 0xf2, 0xfa, 0x47, 0xb0, 0x69, 0x38, 0x53, 0xff, 0xc4, 0x79, 0x5a, 0xd6, 0x1a,
0xf4, 0x8b, 0x0c, 0x52, 0xe6, 0x29, 0x74, 0x84, 0x66, 0x98, 0x45, 0xe7, 0x63, 0xfe, 0xaa, 0xca,
0x40, 0x04, 0x40, 0xce, 0x87, 0x74, 0x61, 0x01, 0x63, 0x3c, 0x9f, 0x84, 0x5f, 0xfa, 0x57, 0xd0,
0x1a, 0xaa, 0xd1, 0x40, 0x8d, 0xa0, 0x78, 0x45, 0x89, 0x21, 0x19, 0xa4, 0x97, 0xd7, 0x77, 0x85,
0x2f, 0x79, 0xad, 0xdd, 0x2a, 0x84, 0x4e, 0x21, 0xc3, 0x00, 0x40, 0x46, 0xa0, 0x48, 0xf8, 0x02,
0x29, 0xf2, 0x33, 0x14, 0x2a, 0xfd, 0x4f, 0x99, 0x70, 0xa4, 0x6c, 0xc6, 0x96, 0x9b, 0xb1, 0x33,
0xe1, 0x69, 0xe1, 0x3c, 0xe1, 0xe9, 0x06, 0x2c, 0x45, 0xc8, 0x92, 0x07, 0xc8, 0xae, 0xb2, 0x39,
0x31, 0xeb, 0x13, 0xbe, 0xa4, 0x63, 0x70, 0x32, 0x72, 0x05, 0x60, 0x8c, 0x17, 0x57, 0xec, 0xd8,
0xa6, 0xc5, 0x23, 0x67, 0xdd, 0x68, 0x09, 0xc8, 0x4e, 0x4c, 0xde, 0x4b, 0xf5, 0xb8, 0xc4, 0xc4,
0xd8, 0x2a, 0x11, 0x23, 0x63, 0x97, 0x54, 0xd3, 0xf2, 0xb4, 0x37, 0x4e, 0x3f, 0xed, 0x62, 0x1e,
0x27, 0x56, 0x02, 0xd6, 0x72, 0x65, 0xc0, 0xe2, 0x33, 0xce, 0x12, 0xb0, 0x9a, 0x95, 0x01, 0x4b,
0xf0, 0x38, 0x35, 0x60, 0xfd, 0x90, 0xa1, 0xe7, 0x0e, 0xf4, 0x8b, 0x47, 0x47, 0x84, 0x0c, 0x0c,
0x3f, 0x11, 0x83, 0x9c, 0x12, 0x7e, 0xc4, 0x14, 0x41, 0xa8, 0xff, 0xab, 0xa6, 0x7a, 0xdd, 0xa7,
0xee, 0x24, 0x76, 0xc2, 0x82, 0xd7, 0x49, 0xe7, 0x59, 0x38, 0x9b, 0xf3, 0x8c, 0xa0, 0xcb, 0xd4,
0x6e, 0x62, 0x5e, 0xc3, 0x6e, 0x37, 0x96, 0x0f, 0xb6, 0x07, 0xaf, 0x97, 0xc8, 0xc3, 0x97, 0xe4,
0x36, 0x1b, 0x09, 0x72, 0xae, 0xf1, 0xce, 0x44, 0x85, 0x69, 0x1f, 0x03, 0x29, 0x12, 0x9d, 0x4b,
0x75, 0x9f, 0xd3, 0xe3, 0x4a, 0xd3, 0xc1, 0x92, 0xb0, 0xfd, 0x90, 0x89, 0x71, 0x8a, 0xde, 0xb8,
0x9c, 0x86, 0x20, 0xd4, 0xff, 0x58, 0x07, 0x48, 0x91, 0xcf, 0xec, 0x39, 0x7d, 0x47, 0x9e, 0x1a,
0x9e, 0x1a, 0x5c, 0x2b, 0x91, 0xa2, 0xf4, 0xbc, 0x7c, 0x9a, 0x3d, 0x2f, 0x3c, 0x49, 0x78, 0xb1,
0x6c, 0xf6, 0x33, 0x7b, 0x52, 0x76, 0x61, 0x23, 0x6f, 0x6e, 0x71, 0x4e, 0x5e, 0x85, 0x25, 0x17,
0x73, 0x40, 0x5e, 0xdc, 0xb4, 0x07, 0x6b, 0x25, 0xdb, 0x32, 0x38, 0x85, 0x7e, 0x1d, 0x5a, 0x07,
0x53, 0xeb, 0xc8, 0x19, 0x05, 0xce, 0x98, 0xae, 0xe5, 0xd2, 0x81, 0x58, 0x9f, 0x0f, 0xf4, 0x01,
0x34, 0x6f, 0x39, 0xf3, 0x2f, 0xe8, 0xba, 0x67, 0x95, 0x4f, 0xff, 0x47, 0x0d, 0x36, 0x59, 0xb8,
0xdb, 0x4d, 0x4a, 0x0b, 0x14, 0xce, 0x9f, 0x85, 0x78, 0x11, 0x30, 0x93, 0x06, 0x33, 0x33, 0x70,
0x42, 0xd7, 0xe7, 0x3e, 0x45, 0x4d, 0x1a, 0xcc, 0x0e, 0x19, 0x80, 0x96, 0x1f, 0x14, 0xfd, 0xcd,
0xcc, 0x17, 0xbe, 0x55, 0x37, 0x9a, 0x08, 0xf8, 0x05, 0x1d, 0x27, 0x73, 0xa3, 0x63, 0xcc, 0xce,
0x23, 0xe6, 0x43, 0x7c, 0xee, 0x88, 0x01, 0xd0, 0xd1, 0x2f, 0x4e, 0xf1, 0x4e, 0x0e, 0xe7, 0xe6,
0xc4, 0x9d, 0xba, 0x58, 0x0f, 0x78, 0xe6, 0x83, 0x79, 0x8c, 0x94, 0xdc, 0x71, 0x08, 0x47, 0xde,
0xa6, 0xb8, 0x03, 0xef, 0x13, 0x8a, 0x21, 0x3a, 0x74, 0x7c, 0x7f, 0x6a, 0x46, 0x63, 0x3f, 0xc4,
0x4a, 0xd2, 0x7e, 0xc4, 0xe2, 0x7d, 0xdd, 0x68, 0x23, 0x70, 0x44, 0x61, 0x3b, 0xf6, 0x23, 0xdd,
0x82, 0xce, 0x68, 0x9f, 0x6d, 0x47, 0x54, 0x2b, 0x98, 0xb8, 0xcf, 0x22, 0x71, 0x9c, 0x30, 0x71,
0xa7, 0xdf, 0x14, 0x16, 0xfa, 0x93, 0x44, 0x0f, 0xec, 0x9b, 0xc2, 0xe2, 0x79, 0x90, 0x64, 0xed,
0xec, 0x9b, 0x2a, 0x6c, 0xe2, 0x9c, 0x88, 0xda, 0x08, 0x15, 0xc6, 0x06, 0xba, 0x0d, 0xb0, 0x6b,
0x05, 0xd6, 0x03, 0x77, 0xe2, 0xc6, 0x73, 0x34, 0x60, 0xcf, 0xb2, 0x6d, 0x73, 0x9c, 0x40, 0x5c,
0x27, 0x29, 0x54, 0x57, 0x11, 0xbe, 0xab, 0x80, 0xc9, 0x6b, 0x70, 0xc1, 0x0e, 0xfd, 0x20, 0x4b,
0xcb, 0x2b, 0xd7, 0x1e, 0x45, 0xa8, 0xc4, 0xfa, 0x7f, 0x6b, 0xb0, 0x9e, 0x35, 0x8b, 0xc8, 0xb4,
0x6f, 0x42, 0x2b, 0x4c, 0x0c, 0x24, 0x82, 0xc4, 0x56, 0xf6, 0xde, 0x2a, 0x1a, 0xd2, 0x48, 0xa7,
0xe0, 0x39, 0x5c, 0xc9, 0x09, 0x50, 0xcb, 0x38, 0x5e, 0xba, 0x37, 0x23, 0x43, 0x48, 0x3e, 0x4a,
0x6b, 0xc6, 0xb4, 0xb6, 0xa6, 0x73, 0x37, 0xe4, 0xdc, 0x8c, 0xea, 0x65, 0x2d, 0x29, 0x2a, 0x2b,
0xf2, 0x23, 0x61, 0x8a, 0x7c, 0x41, 0xc1, 0xe6, 0xdc, 0x47, 0x0c, 0x37, 0x8f, 0xfe, 0x25, 0xb4,
0x24, 0x28, 0x29, 0xb2, 0xb8, 0xef, 0xb1, 0x22, 0x0b, 0x21, 0x47, 0xa2, 0xec, 0x42, 0x08, 0x7e,
0xd2, 0x6a, 0x16, 0x75, 0xed, 0xd2, 0x55, 0xac, 0x89, 0x89, 0x10, 0x5e, 0xf5, 0xd7, 0x8d, 0x6e,
0x0a, 0xfe, 0x0c, 0xa1, 0xfa, 0x0e, 0x5c, 0x90, 0xca, 0x39, 0xb5, 0xb4, 0x53, 0x4a, 0xb5, 0x85,
0x6c, 0xa9, 0xf6, 0x9f, 0x25, 0x58, 0xcd, 0x9b, 0xe4, 0xed, 0x42, 0xa5, 0xa6, 0xa5, 0xea, 0xcc,
0xaf, 0xa7, 0x44, 0xd8, 0x57, 0x92, 0x43, 0xbc, 0x90, 0xd3, 0x88, 0x3c, 0xe7, 0xe2, 0x60, 0x53,
0x79, 0xc6, 0xfe, 0x74, 0x8a, 0x01, 0x21, 0xe9, 0x67, 0x88, 0x21, 0x95, 0xde, 0x0a, 0x8f, 0xe8,
0xb1, 0xa1, 0x60, 0xf6, 0x4d, 0xae, 0x41, 0x9b, 0xa6, 0x37, 0x58, 0x5d, 0xd1, 0x42, 0x8f, 0x1d,
0x93, 0x96, 0x01, 0x02, 0x84, 0x65, 0x1e, 0x79, 0x09, 0x16, 0x1d, 0xef, 0x24, 0x89, 0xa5, 0x69,
0xc3, 0x23, 0x09, 0x1e, 0x06, 0x43, 0xa3, 0xc1, 0x1a, 0x53, 0xda, 0x8e, 0x48, 0x12, 0x9d, 0xae,
0x24, 0x64, 0x5d, 0x0a, 0x43, 0x60, 0xc9, 0x07, 0x32, 0xb4, 0x37, 0x73, 0xc1, 0x39, 0xa7, 0xa9,
0xd2, 0xf8, 0x7e, 0x2b, 0x1b, 0xdf, 0x5b, 0x8c, 0xc5, 0xab, 0x95, 0x2c, 0x4e, 0xaf, 0xdf, 0xae,
0x02, 0x04, 0xa1, 0x7b, 0xe2, 0x4e, 0x9c, 0x23, 0xc7, 0xee, 0x03, 0x6b, 0x30, 0x28, 0x10, 0xd6,
0xb4, 0x12, 0x4d, 0x10, 0x33, 0xf4, 0xfd, 0xf8, 0x61, 0xd4, 0x6f, 0xf3, 0xc6, 0x47, 0x02, 0x36,
0x18, 0x94, 0xf6, 0x29, 0x68, 0xa1, 0xcc, 0x3a, 0x2b, 0x2b, 0x3c, 0x3f, 0xc7, 0x31, 0x6b, 0xac,
0xac, 0xd3, 0x8b, 0xd1, 0x76, 0xbd, 0x7e, 0x87, 0xcd, 0xe4, 0x03, 0x1a, 0xef, 0xd8, 0x87, 0xe9,
0x7b, 0x58, 0xfc, 0x77, 0x19, 0xaa, 0xc5, 0x20, 0x77, 0x11, 0x40, 0xbd, 0x36, 0x8e, 0xe7, 0xfd,
0x55, 0x06, 0xa7, 0x9f, 0xe4, 0xc7, 0x49, 0xf2, 0xd9, 0x63, 0xd6, 0xbf, 0x52, 0x71, 0x88, 0x9f,
0x99, 0x4a, 0xf3, 0xaf, 0x35, 0xd8, 0xd8, 0x65, 0xd7, 0xb9, 0x12, 0x60, 0xce, 0x51, 0x29, 0x91,
0x37, 0x65, 0x49, 0x9a, 0x2f, 0x6b, 0xf2, 0x9b, 0x15, 0x74, 0xe4, 0x63, 0xe8, 0x26, 0x3c, 0xc5,
0xcc, 0xfa, 0x77, 0x15, 0xb3, 0x9d, 0x48, 0x1d, 0xea, 0x1f, 0xc0, 0x66, 0x41, 0x66, 0x71, 0xf5,
0x5e, 0xc7, 0x40, 0x28, 0x7b, 0x6c, 0x52, 0xe4, 0xb6, 0x84, 0x61, 0x6d, 0xf7, 0x1e, 0x2d, 0x69,
0xad, 0x30, 0x2e, 0x6c, 0xf8, 0x0c, 0x73, 0x59, 0x3d, 0x9b, 0x9d, 0x2b, 0x4a, 0xce, 0x11, 0xac,
0xd3, 0x4a, 0xf7, 0x29, 0x98, 0xd2, 0x38, 0x40, 0xb7, 0xed, 0xcf, 0x62, 0x11, 0xff, 0x92, 0xa1,
0xbe, 0xc9, 0xab, 0xef, 0xe2, 0x6a, 0xef, 0xc3, 0x06, 0x2f, 0x7e, 0x9f, 0x66, 0x13, 0x97, 0x92,
0xd2, 0xbb, 0xc8, 0xf7, 0x77, 0x0b, 0x4a, 0x20, 0xac, 0xc8, 0xd6, 0xdf, 0xc8, 0x66, 0xeb, 0x9b,
0x45, 0x83, 0x67, 0x32, 0xc8, 0xa2, 0x1b, 0xd5, 0x4b, 0xdc, 0xc8, 0x28, 0xa4, 0xf4, 0x8b, 0x2c,
0x64, 0xbc, 0x56, 0xe4, 0xfe, 0x7f, 0xcc, 0xe8, 0x0f, 0x78, 0x46, 0x2f, 0x97, 0x96, 0x5d, 0x84,
0x37, 0x73, 0x19, 0x7d, 0xbf, 0x4a, 0x4c, 0x99, 0xd0, 0xff, 0x76, 0x11, 0x5a, 0x12, 0x57, 0xd0,
0x69, 0x51, 0x49, 0x0b, 0x25, 0x4a, 0x52, 0xaf, 0xa4, 0xfa, 0xd3, 0x5c, 0x49, 0x8b, 0xdf, 0x75,
0x25, 0x61, 0xf2, 0xc7, 0x3e, 0xcc, 0xd0, 0x79, 0x28, 0xae, 0x98, 0x26, 0x03, 0x18, 0xce, 0xc3,
0xd4, 0xf0, 0x8d, 0x33, 0x19, 0x3e, 0x5b, 0x3a, 0x2c, 0xe7, 0x4b, 0x87, 0xb7, 0x73, 0xf7, 0xcb,
0xd5, 0x22, 0xbb, 0xd2, 0x9b, 0x65, 0xbf, 0xec, 0x66, 0x79, 0xa1, 0x64, 0xf2, 0x33, 0x5b, 0x38,
0xdc, 0xe6, 0x85, 0x83, 0xea, 0x55, 0x22, 0x7a, 0x0d, 0x50, 0x65, 0x12, 0x2a, 0xaa, 0x07, 0x52,
0xdc, 0x9a, 0xa1, 0x50, 0xd1, 0x50, 0x90, 0xd1, 0x7f, 0xda, 0xea, 0x3a, 0x43, 0x28, 0xf8, 0x8b,
0x9a, 0xf8, 0x54, 0xf4, 0x84, 0xde, 0x2e, 0xd4, 0x9a, 0x67, 0xf3, 0xba, 0x37, 0xb2, 0xa5, 0xe6,
0xf9, 0xdc, 0xa5, 0x50, 0x69, 0xb2, 0x9b, 0x18, 0x23, 0x2f, 0x47, 0xf3, 0x22, 0xa1, 0x25, 0x20,
0x88, 0xc6, 0xec, 0xe8, 0xa1, 0xeb, 0xb9, 0xd1, 0x31, 0xc7, 0x37, 0x18, 0x1e, 0x12, 0xd0, 0x0e,
0x7b, 0xbc, 0x71, 0x9e, 0x60, 0x49, 0x32, 0xf6, 0x6d, 0x87, 0x39, 0xe3, 0x92, 0xd1, 0xa4, 0x80,
0x5d, 0x1c, 0xa7, 0x07, 0xa4, 0x79, 0xae, 0x03, 0xd2, 0xca, 0x1d, 0x90, 0x0d, 0x68, 0xa0, 0xbc,
0x91, 0xef, 0xb1, 0x1c, 0xa5, 0x65, 0x88, 0x11, 0x0d, 0xf0, 0x53, 0x27, 0x8a, 0xe8, 0x02, 0x6d,
0x9e, 0x75, 0x88, 0xa1, 0x92, 0x64, 0xad, 0x54, 0x25, 0x59, 0xa7, 0x34, 0x9d, 0x72, 0x49, 0x56,
0xa7, 0x2a, 0xc9, 0x3a, 0x4b, 0xcf, 0x49, 0xc9, 0x0b, 0xbb, 0xa7, 0xe5, 0x85, 0x3f, 0xe4, 0xc1,
0xb9, 0x85, 0xf7, 0x7e, 0xde, 0xd5, 0xc5, 0xc9, 0x79, 0x33, 0xd7, 0x9a, 0xea, 0x57, 0x69, 0x41,
0x76, 0xa6, 0x1e, 0x41, 0x7b, 0xff, 0x09, 0x1a, 0xf6, 0xec, 0xf7, 0x34, 0x8a, 0x3a, 0x9e, 0xda,
0xa2, 0xb8, 0xa3, 0x9f, 0x49, 0xfe, 0x57, 0x4f, 0xf3, 0x3f, 0x99, 0x46, 0x2e, 0x2a, 0x69, 0xa4,
0xbe, 0x05, 0x2b, 0x7c, 0x2d, 0x21, 0x2d, 0xad, 0x7f, 0xc2, 0x49, 0xb2, 0x69, 0xfc, 0xd4, 0x7f,
0x05, 0xab, 0x94, 0x62, 0x34, 0xf7, 0xbe, 0x9f, 0x44, 0x4a, 0x2e, 0x51, 0xcf, 0xe6, 0x12, 0x26,
0xf4, 0xd2, 0x15, 0x84, 0x1c, 0x1b, 0x54, 0x6b, 0x36, 0x25, 0xa6, 0xcc, 0x57, 0x0c, 0x31, 0x12,
0x70, 0x27, 0x0c, 0x99, 0x0d, 0x38, 0x1c, 0x47, 0xd9, 0x43, 0x54, 0xcf, 0x1e, 0x22, 0xfd, 0xe7,
0xd0, 0xd9, 0x89, 0x63, 0x6b, 0x7c, 0x7c, 0x8e, 0x0d, 0x48, 0x75, 0x09, 0x5b, 0x73, 0x75, 0xe9,
0xd0, 0x4d, 0x38, 0x55, 0x2a, 0x6c, 0x48, 0x5f, 0xf4, 0xc2, 0xf8, 0x53, 0x3f, 0xfc, 0xd6, 0x0a,
0xed, 0xf3, 0xe5, 0xac, 0x58, 0x5e, 0x89, 0x57, 0xde, 0x3a, 0xee, 0x80, 0x7d, 0xeb, 0x2f, 0xc3,
0x5a, 0x86, 0x5f, 0xe5, 0xc2, 0xef, 0x40, 0x9b, 0x45, 0x05, 0x91, 0x1d, 0xbd, 0xa2, 0xf6, 0x6c,
0x4e, 0x0b, 0x1d, 0xb4, 0x4e, 0xa5, 0x61, 0x9f, 0xc1, 0x65, 0x8c, 0x7e, 0x3d, 0x97, 0x48, 0xac,
0x67, 0xe7, 0xe7, 0x92, 0x88, 0xc7, 0xb0, 0xc4, 0xc0, 0x85, 0x18, 0x7d, 0x99, 0xf6, 0x0f, 0x02,
0xdf, 0x8c, 0xad, 0x23, 0xf9, 0x6e, 0x4e, 0x01, 0xf7, 0x70, 0xcc, 0x9e, 0xfd, 0x29, 0xd2, 0x76,
0x71, 0xe1, 0x38, 0x79, 0x3c, 0x6f, 0x53, 0xd8, 0x1e, 0x07, 0x51, 0x8d, 0x44, 0xee, 0xaf, 0x79,
0x82, 0xb0, 0x68, 0xb0, 0x6f, 0xcc, 0xb2, 0x89, 0x2a, 0xaf, 0x50, 0x08, 0x86, 0x09, 0xb6, 0x9d,
0xe4, 0x7a, 0xea, 0x66, 0x05, 0x36, 0x04, 0x56, 0xbf, 0x09, 0x84, 0x6b, 0x20, 0x73, 0x25, 0x9d,
0x5d, 0x5b, 0xef, 0xc3, 0x5a, 0x66, 0xbe, 0x7c, 0xb5, 0xca, 0x30, 0xc8, 0xaf, 0x2e, 0x26, 0xff,
0xb3, 0x06, 0xb0, 0x33, 0x8b, 0x8f, 0x45, 0x29, 0xaf, 0x41, 0x93, 0xf6, 0x20, 0x94, 0x86, 0x80,
0x1c, 0x53, 0x5c, 0x60, 0x45, 0x11, 0xd6, 0xd1, 0x49, 0xce, 0x25, 0xc7, 0xac, 0x0c, 0x47, 0x2e,
0x49, 0xfb, 0x88, 0x7e, 0xd3, 0x47, 0x7c, 0xfe, 0xaf, 0x82, 0x69, 0xd9, 0x76, 0x88, 0x61, 0x5c,
0xf4, 0x91, 0x3a, 0x1c, 0xba, 0xc3, 0x81, 0x94, 0xcc, 0xb5, 0x1d, 0x14, 0x2d, 0x9e, 0x9b, 0xb1,
0xff, 0xd8, 0xf1, 0x44, 0x36, 0xd5, 0x49, 0xa0, 0xf7, 0x28, 0x90, 0x92, 0x85, 0xce, 0x11, 0x6a,
0x39, 0x4c, 0xc8, 0x1a, 0x9c, 0x2c, 0x81, 0x32, 0x32, 0xfa, 0x9b, 0x47, 0xef, 0x70, 0x36, 0x99,
0xf0, 0x4d, 0x9e, 0x57, 0x97, 0x58, 0x1f, 0xf3, 0x7d, 0xe4, 0xbb, 0x42, 0xa9, 0x8a, 0xc4, 0xe6,
0xbe, 0x7f, 0x69, 0xb6, 0x06, 0x17, 0x14, 0x41, 0x45, 0x55, 0x81, 0xbe, 0xc0, 0x0b, 0x8e, 0xa7,
0x93, 0x5f, 0xbf, 0x08, 0x6b, 0x99, 0xf9, 0x82, 0xed, 0x36, 0x74, 0xc4, 0x13, 0x90, 0xb0, 0x33,
0x96, 0xf7, 0xf4, 0xf4, 0x8f, 0x5d, 0x3b, 0x69, 0x0d, 0x2e, 0xe3, 0x78, 0x17, 0x87, 0x18, 0x2e,
0x3a, 0x06, 0x67, 0x2f, 0x68, 0x3f, 0x84, 0xae, 0x78, 0x30, 0x32, 0x33, 0x4f, 0xaa, 0x69, 0xdf,
0x2b, 0xc3, 0xdb, 0xe8, 0x78, 0xea, 0x50, 0xff, 0x1a, 0xb4, 0xfb, 0x81, 0x4d, 0xd3, 0x17, 0x95,
0x6b, 0xb2, 0x35, 0x64, 0x9e, 0xfc, 0x1c, 0x53, 0xc1, 0x3c, 0x3b, 0xad, 0x13, 0xaa, 0x43, 0xfd,
0x0a, 0x5c, 0x2e, 0x65, 0xce, 0xf7, 0xbd, 0xfd, 0x3c, 0x34, 0x93, 0x9f, 0x58, 0xc8, 0x32, 0xd4,
0xef, 0xed, 0x1e, 0xf6, 0x9e, 0xa3, 0x1f, 0xf7, 0xf7, 0x0e, 0x7b, 0xb5, 0xed, 0x6d, 0x58, 0xcd,
0xf5, 0xf2, 0x49, 0x0b, 0x96, 0x8c, 0xfd, 0x9d, 0xbd, 0xaf, 0x90, 0x6c, 0x05, 0x9a, 0xc3, 0xbb,
0xf7, 0xf8, 0xa8, 0xb6, 0xbd, 0x0b, 0xdd, 0x6c, 0x32, 0x46, 0xda, 0xb0, 0xbc, 0x8b, 0xd8, 0x7b,
0xfb, 0x7b, 0x48, 0x8c, 0x03, 0xe3, 0xfe, 0x70, 0x78, 0x30, 0xfc, 0xac, 0x57, 0x23, 0x00, 0x8d,
0xfd, 0x2f, 0x0f, 0x28, 0x62, 0x81, 0x22, 0xee, 0x0f, 0x6f, 0x0d, 0xef, 0xfe, 0x72, 0xd8, 0xab,
0x0f, 0xfe, 0x0d, 0xd0, 0x15, 0x82, 0x8e, 0xf0, 0x0c, 0xb8, 0x63, 0x87, 0xdc, 0x84, 0xe5, 0xe4,
0x3f, 0xa1, 0x34, 0xed, 0xcb, 0xfe, 0xd4, 0xa4, 0xf5, 0x8b, 0x08, 0x61, 0xd7, 0xe7, 0xc8, 0x21,
0xb3, 0x96, 0xf2, 0xfe, 0x71, 0x45, 0x55, 0x5c, 0xe1, 0x81, 0x45, 0xbb, 0x5a, 0x85, 0x96, 0x1c,
0x47, 0xd0, 0xcd, 0x3e, 0x44, 0x93, 0x74, 0x4e, 0xe9, 0x03, 0xb7, 0x76, 0xad, 0x12, 0x2f, 0x99,
0x7e, 0x05, 0xbd, 0xfc, 0x13, 0x34, 0x49, 0xdb, 0xb6, 0x15, 0xcf, 0xdb, 0xda, 0xf5, 0x53, 0x28,
0x54, 0xd6, 0x85, 0xc7, 0xda, 0xad, 0xea, 0xe7, 0xb6, 0x02, 0xeb, 0xaa, 0x37, 0x3c, 0xae, 0x8a,
0xec, 0xbb, 0x05, 0x51, 0x9f, 0x48, 0x4b, 0xde, 0xaf, 0x14, 0x55, 0x94, 0x3f, 0x78, 0x20, 0xd3,
0x2f, 0xb0, 0x8e, 0xc8, 0xb6, 0x64, 0x48, 0x3a, 0xab, 0xbc, 0xc1, 0xa4, 0x6d, 0x55, 0x13, 0x64,
0xed, 0xa6, 0x36, 0x5c, 0x32, 0x76, 0x2b, 0xe9, 0xe2, 0x64, 0xec, 0x56, 0xda, 0xa9, 0x61, 0xee,
0x95, 0x69, 0xab, 0x28, 0xee, 0x55, 0xd6, 0xc3, 0xd1, 0xae, 0x56, 0xa1, 0xd5, 0xed, 0xe7, 0x5a,
0x2a, 0xca, 0xf6, 0xcb, 0x3b, 0x35, 0xda, 0x56, 0x35, 0x41, 0xde, 0x56, 0x69, 0xa9, 0x98, 0xb3,
0x55, 0xa1, 0x33, 0x91, 0xb3, 0x55, 0xb1, 0xc6, 0x14, 0xb6, 0xca, 0xd5, 0x7c, 0xd7, 0x2a, 0xd3,
0xe5, 0xa2, 0xad, 0xca, 0x33, 0x70, 0xe4, 0xfb, 0x53, 0x58, 0xa4, 0x19, 0x26, 0x49, 0x73, 0x18,
0x25, 0xc1, 0xd6, 0x2e, 0xe6, 0xa0, 0x72, 0xda, 0x0e, 0x34, 0x93, 0xc4, 0x94, 0xf4, 0x33, 0x44,
0x4a, 0x36, 0xac, 0x5d, 0x2a, 0xc1, 0x48, 0x16, 0xef, 0x43, 0x83, 0x27, 0x8c, 0x24, 0x8d, 0xb0,
0x99, 0x5c, 0x54, 0xdb, 0x2c, 0xc0, 0xe5, 0xe4, 0xcf, 0xf9, 0xbf, 0x83, 0x22, 0xf3, 0x23, 0x97,
0x33, 0x7f, 0x37, 0x65, 0xf3, 0x4b, 0xed, 0xf9, 0x72, 0xa4, 0xe4, 0xf5, 0x00, 0xd6, 0x4a, 0x22,
0x37, 0x49, 0xdb, 0x13, 0xd5, 0x97, 0x86, 0xf6, 0xe2, 0xe9, 0x44, 0xc9, 0x1a, 0x83, 0xbf, 0x2d,
0xc0, 0x0a, 0xbf, 0x22, 0x45, 0xb4, 0xfd, 0x0c, 0x20, 0x4d, 0xd4, 0x88, 0x96, 0x71, 0x80, 0x4c,
0xb6, 0xa9, 0x5d, 0x2e, 0xc5, 0xa9, 0x9a, 0x50, 0x72, 0x2e, 0x45, 0x13, 0xc5, 0x4c, 0x4e, 0xd1,
0x44, 0x49, 0x9a, 0x86, 0xbc, 0xf6, 0xa0, 0x25, 0x13, 0x01, 0xa2, 0xe4, 0x0f, 0xb9, 0x2c, 0x46,
0xd3, 0xca, 0x50, 0xaa, 0x44, 0xca, 0xcd, 0xaf, 0x48, 0x54, 0xcc, 0x27, 0x14, 0x89, 0xca, 0x92,
0x85, 0xe7, 0xfe, 0x17, 0x00, 0x00, 0xff, 0xff, 0x4a, 0xc3, 0x57, 0x0d, 0x6c, 0x2b, 0x00, 0x00,
0xaf, 0xf1, 0x0d, 0x3b, 0x3b, 0x3b, 0x33, 0x3b, 0x33, 0x3b, 0x3b, 0x33, 0x0b, 0x68, 0x99, 0xbe,
0x73, 0xc3, 0x0f, 0xbc, 0xc8, 0x23, 0xcb, 0xc1, 0xdc, 0x8d, 0x9c, 0x99, 0xad, 0x6d, 0x43, 0xf7,
0x0b, 0x3b, 0x08, 0x1d, 0xcf, 0xd5, 0xed, 0x6f, 0xe6, 0x76, 0x18, 0x91, 0x3e, 0x2c, 0x9f, 0x70,
0x48, 0xbf, 0xb2, 0x55, 0x79, 0xa5, 0xa5, 0xc7, 0x43, 0xed, 0xcf, 0x15, 0x58, 0x95, 0xc8, 0xa1,
0xef, 0xb9, 0xa1, 0x5d, 0x8e, 0x4d, 0xae, 0xc3, 0x8a, 0x60, 0x62, 0xb8, 0xe6, 0xcc, 0xee, 0x57,
0xd9, 0x74, 0x5b, 0xc0, 0x46, 0x08, 0x22, 0x2f, 0xc3, 0x6a, 0x8c, 0x12, 0x13, 0xa9, 0x31, 0xac,
0xae, 0x00, 0x0b, 0x6e, 0xe4, 0x06, 0xac, 0xc5, 0x88, 0xb8, 0x07, 0x89, 0xbc, 0xc4, 0x90, 0x2f,
0x88, 0xa9, 0x1d, 0xdf, 0x11, 0xf8, 0xda, 0xd7, 0xd0, 0xda, 0x1b, 0x8d, 0x77, 0x3d, 0xf7, 0xa1,
0x73, 0x44, 0x45, 0x0c, 0xed, 0x80, 0xae, 0x41, 0x11, 0x6b, 0x54, 0x44, 0x31, 0x24, 0x03, 0x68,
0x86, 0xb6, 0x19, 0x4c, 0x8e, 0xed, 0x10, 0xc5, 0xa3, 0x53, 0x72, 0x4c, 0x57, 0x79, 0x7e, 0x84,
0xc4, 0x42, 0x94, 0x89, 0xad, 0x12, 0x43, 0xed, 0x0f, 0x15, 0x68, 0x1f, 0x7a, 0x41, 0x74, 0xc7,
0xf4, 0x7d, 0xc7, 0x3d, 0x22, 0x6f, 0x40, 0x93, 0x29, 0x75, 0xe2, 0x4d, 0x99, 0x0e, 0xba, 0xc3,
0x0b, 0x37, 0x84, 0x48, 0x37, 0x0e, 0xc5, 0x84, 0x2e, 0x51, 0xc8, 0x4b, 0xd0, 0x9d, 0x78, 0x6e,
0x64, 0x3a, 0xae, 0x1d, 0x18, 0x3e, 0xd2, 0x61, 0x9a, 0xa9, 0xeb, 0x1d, 0x09, 0xa5, 0xc4, 0xc9,
0x65, 0x68, 0x1d, 0x7b, 0x61, 0xc4, 0x31, 0x6a, 0x0c, 0xa3, 0x49, 0x01, 0x6c, 0x72, 0x13, 0x96,
0xd9, 0xa4, 0xe3, 0x0b, 0x1d, 0x34, 0xe8, 0xf0, 0xc0, 0xd7, 0x7e, 0x5f, 0x81, 0xfa, 0x1d, 0x0f,
0x99, 0x67, 0xd8, 0x98, 0xd1, 0xb1, 0xb0, 0x8f, 0xc2, 0x06, 0x81, 0x09, 0x1b, 0x8a, 0xc1, 0x4d,
0xc4, 0xd9, 0xd0, 0x49, 0xd4, 0x4f, 0x60, 0x9b, 0x96, 0xe7, 0x4e, 0x17, 0x4c, 0x84, 0xa6, 0x2e,
0xc7, 0xd4, 0x76, 0xa1, 0x3d, 0x75, 0xdc, 0xf9, 0x13, 0x23, 0xb0, 0xa7, 0xe6, 0x03, 0x7b, 0xca,
0x44, 0x69, 0xea, 0x5d, 0x01, 0xd6, 0x39, 0x54, 0x7b, 0x04, 0xab, 0xd4, 0xd8, 0xa1, 0x6f, 0x4e,
0xec, 0xbb, 0x4c, 0x85, 0xd4, 0x35, 0x18, 0x53, 0xd7, 0x8e, 0xbe, 0xf5, 0x82, 0xc7, 0x4c, 0xb2,
0xa6, 0xde, 0xa6, 0xb0, 0x11, 0x07, 0x91, 0x4b, 0xd0, 0xe4, 0x72, 0x39, 0x16, 0x13, 0xab, 0xa9,
0xb3, 0x1d, 0x1f, 0x3a, 0x96, 0x9c, 0x72, 0xfc, 0x89, 0x90, 0x6a, 0x99, 0xef, 0x7e, 0xa2, 0xfd,
0xa6, 0x02, 0x17, 0x6f, 0x53, 0xe6, 0x87, 0x9e, 0x35, 0x36, 0x5d, 0xeb, 0x81, 0xf7, 0x44, 0x38,
0xc1, 0x0b, 0xd0, 0x99, 0x1c, 0x05, 0xde, 0xdc, 0xc7, 0x9d, 0x06, 0xb6, 0x1b, 0x09, 0x6d, 0xac,
0x70, 0xe0, 0x21, 0x83, 0x91, 0x7d, 0xb8, 0xe0, 0xc6, 0xa2, 0x1a, 0xb1, 0xf5, 0x29, 0xf7, 0xf6,
0xb0, 0x2f, 0x4d, 0x9a, 0xd9, 0x8c, 0xde, 0x73, 0xd3, 0x80, 0x50, 0x0b, 0x80, 0x24, 0xfc, 0xef,
0xd8, 0x91, 0x69, 0x99, 0x91, 0x49, 0x08, 0x2c, 0xb1, 0x73, 0xc0, 0x19, 0xb3, 0x6f, 0xd2, 0x83,
0xda, 0x5c, 0x6c, 0xb0, 0xa5, 0xd3, 0x4f, 0xf2, 0x3c, 0xb4, 0x24, 0x3d, 0x71, 0x18, 0x12, 0x00,
0x75, 0x4a, 0x33, 0x8a, 0xec, 0x99, 0x1f, 0x31, 0x65, 0x77, 0xf4, 0x78, 0xa8, 0xfd, 0x7d, 0x09,
0x7a, 0xb9, 0x4d, 0xbf, 0x03, 0xcd, 0x99, 0x60, 0xcf, 0xd8, 0xb6, 0x87, 0x97, 0x13, 0xcf, 0xcc,
0x49, 0xa8, 0x4b, 0x64, 0x6a, 0x78, 0xaa, 0x52, 0xe5, 0xdc, 0xca, 0x31, 0xd5, 0xe4, 0xd4, 0x3b,
0x32, 0x2c, 0x27, 0xb0, 0x27, 0x91, 0x17, 0x2c, 0x84, 0x94, 0x2b, 0x08, 0xdc, 0x8b, 0x61, 0xe4,
0x2d, 0x00, 0xcb, 0x0d, 0x8d, 0x09, 0x93, 0x83, 0xc9, 0xda, 0x1e, 0x12, 0xc9, 0x5b, 0x9e, 0x4d,
0xbd, 0x85, 0x58, 0x42, 0xd8, 0x77, 0xa1, 0x43, 0x7d, 0xdd, 0x98, 0xf1, 0x63, 0x15, 0xf6, 0xeb,
0x78, 0xec, 0xda, 0xc3, 0x75, 0x45, 0x62, 0x79, 0xe6, 0xf4, 0x15, 0x3f, 0x19, 0x84, 0xe4, 0x43,
0x68, 0x30, 0x5f, 0x0b, 0xfb, 0x0d, 0xb6, 0xe6, 0xa5, 0x82, 0x5d, 0x72, 0x2e, 0x37, 0x6e, 0x33,
0xbc, 0x7d, 0x37, 0x0a, 0x16, 0xba, 0x58, 0x44, 0x6e, 0x43, 0xdb, 0x74, 0x5d, 0x2f, 0x32, 0xb9,
0xc1, 0x97, 0x19, 0x8d, 0xed, 0x72, 0x1a, 0x3b, 0x09, 0x32, 0x27, 0xa4, 0x2e, 0x27, 0x3f, 0x81,
0x3a, 0xf3, 0xff, 0x7e, 0x93, 0xed, 0xfa, 0xaa, 0xa4, 0x53, 0xe8, 0x98, 0x3a, 0x47, 0x1e, 0xbc,
0x0b, 0x6d, 0x45, 0x34, 0xea, 0x18, 0x8f, 0xed, 0x85, 0xf0, 0x15, 0xfa, 0x49, 0xd6, 0xa1, 0x7e,
0x62, 0x4e, 0xe7, 0xb1, 0x3d, 0xf8, 0xe0, 0xbd, 0xea, 0xcf, 0x2a, 0x83, 0x9b, 0xd0, 0xcb, 0x4a,
0x74, 0x9e, 0xf5, 0xda, 0x01, 0xac, 0xeb, 0x73, 0x37, 0x11, 0x2c, 0xbe, 0x08, 0xde, 0x82, 0x86,
0xb0, 0x1f, 0xf7, 0x9d, 0x4b, 0xa5, 0x1a, 0xd1, 0x05, 0xa2, 0xf6, 0x21, 0x5c, 0xcc, 0x90, 0x12,
0xd7, 0xc4, 0x8b, 0xd0, 0xf5, 0x3d, 0xcb, 0x08, 0x39, 0xd8, 0x40, 0x9f, 0x17, 0xe7, 0xcf, 0x97,
0xb8, 0x07, 0x16, 0x5d, 0x3e, 0x8e, 0x3c, 0x3f, 0x2f, 0xca, 0xd9, 0x96, 0xf7, 0x61, 0x23, 0xbb,
0x9c, 0xb3, 0xd7, 0x3e, 0x82, 0x4d, 0xdd, 0x9e, 0x79, 0x27, 0xf6, 0xd3, 0x92, 0x1e, 0x40, 0x3f,
0x4f, 0x20, 0x21, 0x9e, 0x40, 0xc7, 0x68, 0x86, 0x79, 0x78, 0x3e, 0xe2, 0xaf, 0xaa, 0x04, 0x44,
0x00, 0xe4, 0x74, 0x48, 0x17, 0xaa, 0x18, 0xe3, 0xf9, 0x22, 0xfc, 0xd2, 0xbe, 0x82, 0xd6, 0x48,
0x8d, 0x06, 0x6a, 0x04, 0xc5, 0x2b, 0x4a, 0x0c, 0xc9, 0x30, 0xb9, 0xbc, 0xbe, 0x2b, 0x7c, 0xc9,
0x6b, 0xed, 0x56, 0x2e, 0x74, 0x0a, 0x19, 0x86, 0x00, 0x32, 0x02, 0x85, 0xc2, 0x17, 0x48, 0x9e,
0x9e, 0xae, 0x60, 0x69, 0x7f, 0x4a, 0x85, 0x23, 0x65, 0x33, 0x96, 0xdc, 0x8c, 0x95, 0x0a, 0x4f,
0xd5, 0xf3, 0x84, 0xa7, 0x1b, 0x50, 0x0f, 0x91, 0x24, 0x0f, 0x90, 0x5d, 0x65, 0x73, 0x62, 0xd5,
0x27, 0x9c, 0xa5, 0xad, 0x73, 0x34, 0x72, 0x05, 0x60, 0x82, 0x17, 0x57, 0x64, 0x5b, 0x86, 0xc9,
0x23, 0x67, 0x4d, 0x6f, 0x09, 0xc8, 0x4e, 0x44, 0xde, 0x4b, 0xf4, 0x58, 0x67, 0x62, 0x6c, 0x15,
0x88, 0x91, 0xb2, 0x4b, 0xa2, 0x69, 0x79, 0xda, 0x1b, 0xa7, 0x9f, 0x76, 0xb1, 0x8e, 0x23, 0x2b,
0x01, 0x6b, 0xb9, 0x34, 0x60, 0xf1, 0x15, 0x67, 0x09, 0x58, 0xcd, 0xd2, 0x80, 0x25, 0x68, 0x9c,
0x1a, 0xb0, 0x7e, 0xc8, 0xd0, 0x73, 0x07, 0xfa, 0xf9, 0xa3, 0x23, 0x42, 0x06, 0x86, 0x9f, 0x90,
0x41, 0x4e, 0x09, 0x3f, 0x62, 0x89, 0x40, 0xd4, 0xfe, 0x55, 0x51, 0xbd, 0xee, 0x53, 0x67, 0x1a,
0xd9, 0x41, 0xce, 0xeb, 0xa4, 0xf3, 0x54, 0xcf, 0xe6, 0x3c, 0x63, 0xe8, 0x32, 0xb5, 0x1b, 0x98,
0xd7, 0xb0, 0xdb, 0x8d, 0xe5, 0x83, 0xed, 0xe1, 0xeb, 0x05, 0xf2, 0x70, 0x96, 0xdc, 0x66, 0x63,
0x81, 0xce, 0x35, 0xde, 0x99, 0xaa, 0xb0, 0xc1, 0xc7, 0x40, 0xf2, 0x48, 0xe7, 0x52, 0xdd, 0xe7,
0xf4, 0xb8, 0xd2, 0x74, 0xb0, 0x20, 0x6c, 0x3f, 0x64, 0x62, 0x9c, 0xa2, 0x37, 0x2e, 0xa7, 0x2e,
0x10, 0xb5, 0x3f, 0xd6, 0x00, 0x92, 0xc9, 0x67, 0xf6, 0x9c, 0xbe, 0x23, 0x4f, 0x0d, 0x4f, 0x0d,
0xae, 0x15, 0x48, 0x51, 0x78, 0x5e, 0x3e, 0x4d, 0x9f, 0x17, 0x9e, 0x24, 0xbc, 0x58, 0xb4, 0xfa,
0x99, 0x3d, 0x29, 0xbb, 0xb0, 0x91, 0x35, 0xb7, 0x38, 0x27, 0xaf, 0x42, 0xdd, 0xc1, 0x1c, 0x90,
0x17, 0x37, 0xed, 0xe1, 0x5a, 0xc1, 0xb6, 0x74, 0x8e, 0xa1, 0x5d, 0x87, 0xd6, 0xc1, 0xcc, 0x3c,
0xb2, 0xc7, 0xbe, 0x3d, 0xa1, 0xbc, 0x1c, 0x3a, 0x10, 0xfc, 0xf9, 0x40, 0x1b, 0x42, 0xf3, 0x96,
0xbd, 0xf8, 0x82, 0xf2, 0x3d, 0xab, 0x7c, 0xda, 0x3f, 0x2a, 0xb0, 0xc9, 0xc2, 0xdd, 0x6e, 0x5c,
0x5a, 0xa0, 0x70, 0xde, 0x3c, 0xc0, 0x8b, 0x80, 0x99, 0xd4, 0x9f, 0x1b, 0xbe, 0x1d, 0x38, 0x1e,
0xf7, 0x29, 0x6a, 0x52, 0x7f, 0x7e, 0xc8, 0x00, 0xb4, 0xfc, 0xa0, 0xd3, 0xdf, 0xcc, 0x3d, 0xe1,
0x5b, 0x35, 0xbd, 0x89, 0x80, 0x5f, 0xd0, 0x71, 0xbc, 0x36, 0x3c, 0xc6, 0xec, 0x3c, 0x64, 0x3e,
0xc4, 0xd7, 0x8e, 0x19, 0x00, 0x1d, 0xfd, 0xe2, 0x0c, 0xef, 0xe4, 0x60, 0x61, 0x4c, 0x9d, 0x99,
0x83, 0xf5, 0x80, 0x6b, 0x3c, 0x58, 0x44, 0x88, 0xc9, 0x1d, 0x87, 0xf0, 0xc9, 0xdb, 0x74, 0xee,
0xc0, 0xfd, 0x84, 0xce, 0x10, 0x0d, 0x3a, 0x9e, 0x37, 0x33, 0xc2, 0x89, 0x17, 0x60, 0x25, 0x69,
0x3d, 0x62, 0xf1, 0xbe, 0xa6, 0xb7, 0x11, 0x38, 0xa6, 0xb0, 0x1d, 0xeb, 0x91, 0x66, 0x42, 0x67,
0xbc, 0xcf, 0xb6, 0x23, 0xaa, 0x15, 0x4c, 0xdc, 0xe7, 0xa1, 0x38, 0x4e, 0x98, 0xb8, 0xd3, 0x6f,
0x0a, 0x0b, 0xbc, 0x69, 0xac, 0x07, 0xf6, 0x4d, 0x61, 0xd1, 0xc2, 0x8f, 0xb3, 0x76, 0xf6, 0x4d,
0x15, 0x36, 0xb5, 0x4f, 0x44, 0x6d, 0x84, 0x0a, 0x63, 0x03, 0xcd, 0x02, 0xd8, 0x35, 0x7d, 0xf3,
0x81, 0x33, 0x75, 0xa2, 0x05, 0x1a, 0xb0, 0x67, 0x5a, 0x96, 0x31, 0x89, 0x21, 0x8e, 0x1d, 0x17,
0xaa, 0xab, 0x08, 0xdf, 0x55, 0xc0, 0xe4, 0x35, 0xb8, 0x60, 0x05, 0x9e, 0x9f, 0xc6, 0xe5, 0x95,
0x6b, 0x8f, 0x4e, 0xa8, 0xc8, 0xda, 0x7f, 0x2b, 0xb0, 0x9e, 0x36, 0x8b, 0xc8, 0xb4, 0x6f, 0x42,
0x2b, 0x88, 0x0d, 0x24, 0x82, 0xc4, 0x56, 0xfa, 0xde, 0xca, 0x1b, 0x52, 0x4f, 0x96, 0xe0, 0x39,
0x5c, 0xc9, 0x08, 0x50, 0x49, 0x39, 0x5e, 0xb2, 0x37, 0x3d, 0x85, 0x48, 0x3e, 0x4a, 0x6a, 0xc6,
0xa4, 0xb6, 0xa6, 0x6b, 0x37, 0xe4, 0xda, 0x94, 0xea, 0x65, 0x2d, 0x29, 0x2a, 0x2b, 0xf2, 0x23,
0x61, 0x8a, 0x6c, 0x41, 0xc1, 0xd6, 0xdc, 0xc7, 0x19, 0x6e, 0x1e, 0xed, 0x4b, 0x68, 0x49, 0x50,
0x5c, 0x64, 0x71, 0xdf, 0x63, 0x45, 0x16, 0x42, 0x8e, 0x44, 0xd9, 0x85, 0x10, 0xfc, 0xa4, 0xd5,
0x2c, 0xea, 0xda, 0xa1, 0x5c, 0xcc, 0xa9, 0x81, 0x10, 0x5e, 0xf5, 0xd7, 0xf4, 0x6e, 0x02, 0xfe,
0x0c, 0xa1, 0xda, 0x0e, 0x5c, 0x90, 0xca, 0x39, 0xb5, 0xb4, 0x53, 0x4a, 0xb5, 0x6a, 0xba, 0x54,
0xfb, 0x4f, 0x1d, 0x56, 0xb3, 0x26, 0x79, 0x3b, 0x57, 0xa9, 0x0d, 0x12, 0x75, 0x66, 0xf9, 0x29,
0x11, 0xf6, 0x95, 0xf8, 0x10, 0x57, 0x33, 0x1a, 0x91, 0xe7, 0x5c, 0x1c, 0x6c, 0x2a, 0xcf, 0xc4,
0x9b, 0xcd, 0x30, 0x20, 0xc4, 0xfd, 0x0c, 0x31, 0xa4, 0xd2, 0x9b, 0xc1, 0x11, 0x3d, 0x36, 0x14,
0xcc, 0xbe, 0xc9, 0x35, 0x68, 0xd3, 0xf4, 0x06, 0xab, 0x2b, 0x5a, 0xe8, 0xb1, 0x63, 0xd2, 0xd2,
0x41, 0x80, 0xb0, 0xcc, 0x23, 0x2f, 0xc1, 0x92, 0xed, 0x9e, 0xc4, 0xb1, 0x34, 0x69, 0x78, 0xc4,
0xc1, 0x43, 0x67, 0xd3, 0x68, 0xb0, 0xc6, 0x8c, 0xb6, 0x23, 0xe2, 0x44, 0xa7, 0x2b, 0x11, 0x59,
0x97, 0x42, 0x17, 0xb3, 0xe4, 0x03, 0x19, 0xda, 0x9b, 0x99, 0xe0, 0x9c, 0xd1, 0x54, 0x61, 0x7c,
0xbf, 0x95, 0x8e, 0xef, 0x2d, 0x46, 0xe2, 0xd5, 0x52, 0x12, 0xa7, 0xd7, 0x6f, 0x57, 0x01, 0xfc,
0xc0, 0x39, 0x71, 0xa6, 0xf6, 0x91, 0x6d, 0xf5, 0x81, 0x35, 0x18, 0x14, 0x08, 0x6b, 0x5a, 0x89,
0x26, 0x88, 0x11, 0x78, 0x5e, 0xf4, 0x30, 0xec, 0xb7, 0x79, 0xe3, 0x23, 0x06, 0xeb, 0x0c, 0x4a,
0xfb, 0x14, 0xb4, 0x50, 0x66, 0x9d, 0x95, 0x15, 0x9e, 0x9f, 0xe3, 0x98, 0x35, 0x56, 0xd6, 0xe9,
0xc5, 0x68, 0x39, 0x6e, 0xbf, 0xc3, 0x56, 0xf2, 0x01, 0x8d, 0x77, 0xec, 0xc3, 0xf0, 0x5c, 0x2c,
0xfe, 0xbb, 0x6c, 0xaa, 0xc5, 0x20, 0x77, 0x11, 0x40, 0xbd, 0x36, 0x8a, 0x16, 0xfd, 0x55, 0x06,
0xa7, 0x9f, 0xe4, 0xc7, 0x71, 0xf2, 0xd9, 0x63, 0xd6, 0xbf, 0x52, 0x72, 0x88, 0x9f, 0x99, 0x4a,
0xf3, 0xaf, 0x15, 0xd8, 0xd8, 0x65, 0xd7, 0xb9, 0x12, 0x60, 0xce, 0x51, 0x29, 0x91, 0x37, 0x65,
0x49, 0x9a, 0x2d, 0x6b, 0xb2, 0x9b, 0x15, 0x78, 0xe4, 0x63, 0xe8, 0xc6, 0x34, 0xc5, 0xca, 0xda,
0x77, 0x15, 0xb3, 0x9d, 0x50, 0x1d, 0x6a, 0x1f, 0xc0, 0x66, 0x4e, 0x66, 0x71, 0xf5, 0x5e, 0xc7,
0x40, 0x28, 0x7b, 0x6c, 0x52, 0xe4, 0xb6, 0x84, 0x61, 0x6d, 0xf7, 0x1e, 0x2d, 0x69, 0xcd, 0x20,
0xca, 0x6d, 0xf8, 0x0c, 0x6b, 0x59, 0x3d, 0x9b, 0x5e, 0x2b, 0x4a, 0xce, 0x31, 0xac, 0xd3, 0x4a,
0xf7, 0x29, 0x88, 0xd2, 0x38, 0x40, 0xb7, 0xed, 0xcd, 0x23, 0x11, 0xff, 0xe2, 0xa1, 0xb6, 0xc9,
0xab, 0xef, 0x3c, 0xb7, 0xf7, 0x61, 0x83, 0x17, 0xbf, 0x4f, 0xb3, 0x89, 0x4b, 0x71, 0xe9, 0x9d,
0xa7, 0xfb, 0xbb, 0xaa, 0x12, 0x08, 0x4b, 0xb2, 0xf5, 0x37, 0xd2, 0xd9, 0xfa, 0x66, 0xde, 0xe0,
0xa9, 0x0c, 0x32, 0xef, 0x46, 0xb5, 0x02, 0x37, 0xd2, 0x73, 0x29, 0xfd, 0x12, 0x0b, 0x19, 0xaf,
0xe5, 0xa9, 0xff, 0x1f, 0x33, 0xfa, 0x03, 0x9e, 0xd1, 0x4b, 0xd6, 0xb2, 0x8b, 0xf0, 0x66, 0x26,
0xa3, 0xef, 0x97, 0x89, 0x29, 0x13, 0xfa, 0xdf, 0x2e, 0x41, 0x4b, 0xce, 0xe5, 0x74, 0x9a, 0x57,
0x52, 0xb5, 0x40, 0x49, 0xea, 0x95, 0x54, 0x7b, 0x9a, 0x2b, 0x69, 0xe9, 0xbb, 0xae, 0x24, 0x4c,
0xfe, 0xd8, 0x87, 0x11, 0xd8, 0x0f, 0xc5, 0x15, 0xd3, 0x64, 0x00, 0xdd, 0x7e, 0x98, 0x18, 0xbe,
0x71, 0x26, 0xc3, 0xa7, 0x4b, 0x87, 0xe5, 0x6c, 0xe9, 0xf0, 0x76, 0xe6, 0x7e, 0xb9, 0x9a, 0x27,
0x57, 0x78, 0xb3, 0xec, 0x17, 0xdd, 0x2c, 0x2f, 0x14, 0x2c, 0x7e, 0x66, 0x0b, 0x87, 0xdb, 0xbc,
0x70, 0x50, 0xbd, 0x4a, 0x44, 0xaf, 0x21, 0xaa, 0x4c, 0x42, 0x45, 0xf5, 0x40, 0xf2, 0x5b, 0xd3,
0x15, 0x2c, 0x1a, 0x0a, 0x52, 0xfa, 0x4f, 0x5a, 0x5d, 0x67, 0x08, 0x05, 0x7f, 0x51, 0x13, 0x9f,
0x92, 0x9e, 0xd0, 0xdb, 0xb9, 0x5a, 0xf3, 0x6c, 0x5e, 0xf7, 0x46, 0xba, 0xd4, 0x3c, 0x9f, 0xbb,
0xe4, 0x2a, 0x4d, 0x76, 0x13, 0x63, 0xe4, 0xe5, 0xd3, 0xbc, 0x48, 0x68, 0x09, 0x08, 0x4e, 0x63,
0x76, 0xf4, 0xd0, 0x71, 0x9d, 0xf0, 0x98, 0xcf, 0x37, 0xd8, 0x3c, 0xc4, 0xa0, 0x1d, 0xf6, 0x78,
0x63, 0x3f, 0xc1, 0x92, 0x64, 0xe2, 0x59, 0x36, 0x73, 0xc6, 0xba, 0xde, 0xa4, 0x80, 0x5d, 0x1c,
0x27, 0x07, 0xa4, 0x79, 0xae, 0x03, 0xd2, 0xca, 0x1c, 0x90, 0x0d, 0x68, 0xa0, 0xbc, 0xa1, 0xe7,
0xb2, 0x1c, 0xa5, 0xa5, 0x8b, 0x11, 0x0d, 0xf0, 0x33, 0x3b, 0x0c, 0x29, 0x83, 0x36, 0xcf, 0x3a,
0xc4, 0x50, 0x49, 0xb2, 0x56, 0xca, 0x92, 0xac, 0x53, 0x9a, 0x4e, 0x99, 0x24, 0xab, 0x53, 0x96,
0x64, 0x9d, 0xa5, 0xe7, 0xa4, 0xe4, 0x85, 0xdd, 0xd3, 0xf2, 0xc2, 0x1f, 0xf2, 0xe0, 0xdc, 0xc2,
0x7b, 0x3f, 0xeb, 0xea, 0xe2, 0xe4, 0xbc, 0x99, 0x69, 0x4d, 0xf5, 0xcb, 0xb4, 0x20, 0x3b, 0x53,
0xbf, 0x82, 0xd5, 0xfd, 0x27, 0xf6, 0x64, 0xbc, 0x70, 0x27, 0xe7, 0xb8, 0xab, 0x51, 0xdc, 0xc9,
0xcc, 0x12, 0x05, 0x1e, 0xfd, 0x54, 0x6f, 0xef, 0x5a, 0xfa, 0xf6, 0x36, 0xa0, 0x97, 0x70, 0x10,
0x72, 0x6e, 0x50, 0x39, 0x2d, 0x8a, 0x4c, 0x89, 0xaf, 0xe8, 0x62, 0x24, 0xe0, 0x76, 0x10, 0xb0,
0x5d, 0x73, 0x38, 0x8e, 0xd2, 0x6e, 0x5b, 0x4b, 0xbb, 0xad, 0xf6, 0x08, 0xda, 0x94, 0xc1, 0xf7,
0x12, 0x5f, 0xa4, 0xb0, 0xb5, 0x24, 0x85, 0x95, 0x99, 0xf0, 0x92, 0x92, 0x09, 0x6b, 0x5b, 0xb0,
0xc2, 0x79, 0x89, 0x8d, 0xd0, 0x12, 0x2e, 0x98, 0xc6, 0x76, 0xc3, 0x4f, 0xed, 0xe7, 0xd0, 0xd9,
0x89, 0x22, 0x73, 0x72, 0x7c, 0x0e, 0x79, 0x24, 0xaf, 0xaa, 0xca, 0x4b, 0x83, 0x6e, 0x4c, 0xa9,
0x94, 0xdb, 0x88, 0xbe, 0xe8, 0x05, 0xd1, 0xa7, 0x5e, 0xf0, 0xad, 0x19, 0x58, 0xe7, 0xcb, 0x59,
0xb1, 0xbc, 0x12, 0xaf, 0xbc, 0x35, 0xd4, 0x27, 0xfb, 0xd6, 0x5e, 0x86, 0xb5, 0x14, 0xbd, 0x52,
0xc6, 0xef, 0x40, 0x9b, 0x45, 0x05, 0x91, 0x1d, 0xbd, 0xa2, 0xf6, 0x6c, 0x4e, 0x0b, 0x1d, 0xb4,
0x4e, 0xa5, 0x61, 0x9f, 0xc1, 0x65, 0x8c, 0x7e, 0x3d, 0x93, 0x48, 0xac, 0xa7, 0xd7, 0x67, 0x92,
0x88, 0xc7, 0x50, 0x67, 0xe0, 0x5c, 0x8c, 0xbe, 0x4c, 0xfb, 0x07, 0xbe, 0x67, 0x44, 0xe6, 0x91,
0x7c, 0x37, 0xa7, 0x80, 0x7b, 0x38, 0x66, 0xcf, 0xfe, 0x74, 0xd2, 0x72, 0x90, 0x71, 0x14, 0x3f,
0x9e, 0xb7, 0x29, 0x6c, 0x8f, 0x83, 0xa8, 0x46, 0x42, 0xe7, 0xd7, 0x3c, 0x41, 0x58, 0xd2, 0xd9,
0x37, 0x66, 0xd9, 0x44, 0x95, 0x57, 0x28, 0x04, 0xc3, 0x04, 0xdb, 0x4e, 0x7c, 0x3d, 0x75, 0xd3,
0x02, 0xeb, 0x62, 0x56, 0xbb, 0x09, 0x84, 0x6b, 0x20, 0x75, 0x25, 0x9d, 0x5d, 0x5b, 0xef, 0xc3,
0x5a, 0x6a, 0xbd, 0x7c, 0xb5, 0x4a, 0x11, 0xc8, 0x72, 0x17, 0x8b, 0xff, 0x59, 0x01, 0xd8, 0x99,
0x47, 0xc7, 0xa2, 0x94, 0x1f, 0x40, 0x93, 0xf6, 0x20, 0x94, 0x86, 0x80, 0x1c, 0xd3, 0x39, 0xdf,
0x0c, 0x43, 0xac, 0xa3, 0xe3, 0x9c, 0x4b, 0x8e, 0x59, 0x19, 0x8e, 0x54, 0xe2, 0xf6, 0x11, 0xfd,
0xa6, 0x8f, 0xf8, 0xfc, 0x5f, 0x05, 0xc3, 0xb4, 0xac, 0x00, 0xc3, 0xb8, 0xe8, 0x23, 0x75, 0x38,
0x74, 0x87, 0x03, 0x29, 0x9a, 0x63, 0xd9, 0x28, 0x5a, 0xb4, 0x30, 0x22, 0xef, 0xb1, 0xed, 0x8a,
0x6c, 0xaa, 0x13, 0x43, 0xef, 0x51, 0x20, 0x45, 0x0b, 0xec, 0x23, 0xd4, 0x72, 0x10, 0xa3, 0x35,
0x38, 0x5a, 0x0c, 0x65, 0x68, 0xf4, 0x37, 0x8f, 0xde, 0xe1, 0x7c, 0x3a, 0xe5, 0x9b, 0x3c, 0xaf,
0x2e, 0xb1, 0x3e, 0xe6, 0xfb, 0xc8, 0x76, 0x85, 0x12, 0x15, 0x89, 0xcd, 0x7d, 0xff, 0xd2, 0x6c,
0x0d, 0x2e, 0x28, 0x82, 0x8a, 0xaa, 0x02, 0x7d, 0x81, 0x17, 0x1c, 0x4f, 0x27, 0xbf, 0x76, 0x11,
0xd6, 0x52, 0xeb, 0x05, 0xd9, 0x6d, 0xe8, 0x88, 0x27, 0x20, 0x61, 0x67, 0x2c, 0xef, 0xe9, 0xe9,
0x9f, 0x38, 0x56, 0xdc, 0x1a, 0x5c, 0xc6, 0xf1, 0x2e, 0x0e, 0x31, 0x5c, 0x74, 0x74, 0x4e, 0x5e,
0xe0, 0x7e, 0x08, 0x5d, 0xf1, 0x60, 0x64, 0xa4, 0x9e, 0x54, 0x93, 0xbe, 0x57, 0x8a, 0xb6, 0xde,
0x71, 0xd5, 0xa1, 0xf6, 0x35, 0x0c, 0xee, 0xfb, 0x16, 0x4d, 0x5f, 0x54, 0xaa, 0xf1, 0xd6, 0x90,
0x78, 0xfc, 0x73, 0x4c, 0x09, 0xf1, 0xf4, 0xb2, 0x4e, 0xa0, 0x0e, 0xb5, 0x2b, 0x70, 0xb9, 0x90,
0x38, 0xdf, 0xf7, 0xf6, 0xf3, 0xd0, 0x8c, 0x7f, 0x62, 0x21, 0xcb, 0x50, 0xbb, 0xb7, 0x7b, 0xd8,
0x7b, 0x8e, 0x7e, 0xdc, 0xdf, 0x3b, 0xec, 0x55, 0xb6, 0xb7, 0x61, 0x35, 0xd3, 0xcb, 0x27, 0x2d,
0xa8, 0xeb, 0xfb, 0x3b, 0x7b, 0x5f, 0x21, 0xda, 0x0a, 0x34, 0x47, 0x77, 0xef, 0xf1, 0x51, 0x65,
0x7b, 0x17, 0xba, 0xe9, 0x64, 0x8c, 0xb4, 0x61, 0x79, 0x17, 0x67, 0xef, 0xed, 0xef, 0x21, 0x32,
0x0e, 0xf4, 0xfb, 0xa3, 0xd1, 0xc1, 0xe8, 0xb3, 0x5e, 0x85, 0x00, 0x34, 0xf6, 0xbf, 0x3c, 0xa0,
0x13, 0x55, 0x3a, 0x71, 0x7f, 0x74, 0x6b, 0x74, 0xf7, 0x97, 0xa3, 0x5e, 0x6d, 0xf8, 0x6f, 0x80,
0xae, 0x10, 0x74, 0x8c, 0x67, 0xc0, 0x99, 0xd8, 0xe4, 0x26, 0x2c, 0xc7, 0xff, 0x09, 0x25, 0x69,
0x5f, 0xfa, 0xa7, 0xa6, 0x41, 0x3f, 0x3f, 0x21, 0xec, 0xfa, 0x1c, 0x39, 0x64, 0xd6, 0x52, 0xde,
0x3f, 0xae, 0xa8, 0x8a, 0xcb, 0x3d, 0xb0, 0x0c, 0xae, 0x96, 0x4d, 0x4b, 0x8a, 0x63, 0xe8, 0xa6,
0x1f, 0xa2, 0x49, 0xb2, 0xa6, 0xf0, 0x81, 0x7b, 0x70, 0xad, 0x74, 0x5e, 0x12, 0xfd, 0x0a, 0x7a,
0xd9, 0x27, 0x68, 0x92, 0xb4, 0x6d, 0x4b, 0x9e, 0xb7, 0x07, 0xd7, 0x4f, 0xc1, 0x50, 0x49, 0xe7,
0x1e, 0x6b, 0xb7, 0xca, 0x9f, 0xdb, 0x72, 0xa4, 0xcb, 0xde, 0xf0, 0xb8, 0x2a, 0xd2, 0xef, 0x16,
0x44, 0x7d, 0x22, 0x2d, 0x78, 0xbf, 0x52, 0x54, 0x51, 0xfc, 0xe0, 0x81, 0x44, 0xbf, 0xc0, 0x3a,
0x22, 0xdd, 0x92, 0x21, 0xc9, 0xaa, 0xe2, 0x06, 0xd3, 0x60, 0xab, 0x1c, 0x21, 0x6d, 0x37, 0xb5,
0xe1, 0x92, 0xb2, 0x5b, 0x41, 0x17, 0x27, 0x65, 0xb7, 0xc2, 0x4e, 0x0d, 0x73, 0xaf, 0x54, 0x5b,
0x45, 0x71, 0xaf, 0xa2, 0x1e, 0xce, 0xe0, 0x6a, 0xd9, 0xb4, 0xba, 0xfd, 0x4c, 0x4b, 0x45, 0xd9,
0x7e, 0x71, 0xa7, 0x66, 0xb0, 0x55, 0x8e, 0x90, 0xb5, 0x55, 0x52, 0x2a, 0x66, 0x6c, 0x95, 0xeb,
0x4c, 0x64, 0x6c, 0x95, 0xaf, 0x31, 0x85, 0xad, 0x32, 0x35, 0xdf, 0xb5, 0xd2, 0x74, 0x39, 0x6f,
0xab, 0xe2, 0x0c, 0x1c, 0xe9, 0xee, 0x40, 0x33, 0xce, 0x77, 0x49, 0x72, 0xba, 0x33, 0x49, 0xf6,
0xe0, 0x52, 0xc1, 0x8c, 0x24, 0xf1, 0x53, 0x58, 0xa2, 0x50, 0xb2, 0x9e, 0x42, 0x8a, 0x97, 0x5e,
0xcc, 0x40, 0xe5, 0xb2, 0xf7, 0xa1, 0xc1, 0x13, 0x46, 0x92, 0x44, 0xd8, 0x54, 0x2e, 0x3a, 0xd8,
0xcc, 0xc1, 0xe5, 0xe2, 0xcf, 0xf9, 0xbf, 0x83, 0x22, 0xf3, 0x23, 0x97, 0x53, 0x7f, 0x37, 0xa5,
0xf3, 0xcb, 0xc1, 0xf3, 0xc5, 0x93, 0x92, 0xd6, 0x03, 0x58, 0x2b, 0x88, 0xdc, 0x24, 0x69, 0x4f,
0x94, 0x5f, 0x1a, 0x83, 0x17, 0x4f, 0x47, 0x8a, 0x79, 0x0c, 0xff, 0x56, 0x85, 0x15, 0x7e, 0x45,
0x8a, 0x68, 0xfb, 0x19, 0x40, 0x92, 0xa8, 0x91, 0x41, 0xca, 0x01, 0x52, 0xd9, 0xe6, 0xe0, 0x72,
0xe1, 0x9c, 0xaa, 0x09, 0x25, 0xe7, 0x52, 0x34, 0x91, 0xcf, 0xe4, 0x14, 0x4d, 0x14, 0xa4, 0x69,
0x48, 0x6b, 0x0f, 0x5a, 0x32, 0x11, 0x20, 0x4a, 0xfe, 0x90, 0xc9, 0x62, 0x06, 0x83, 0xa2, 0x29,
0x55, 0x22, 0xe5, 0xe6, 0x57, 0x24, 0xca, 0xe7, 0x13, 0x8a, 0x44, 0x45, 0xc9, 0xc2, 0x73, 0xff,
0x0b, 0x00, 0x00, 0xff, 0xff, 0x27, 0xd9, 0x1b, 0x77, 0x6c, 0x2b, 0x00, 0x00,
}

View File

@ -626,7 +626,7 @@ message ExecRequest {
repeated string cmd = 2;
// Whether use tty
optional bool tty = 3;
// Streaming stdin
// Whether to stream stdin
optional bool stdin = 4;
}
@ -638,8 +638,8 @@ message ExecResponse {
message AttachRequest {
// The id of the container
optional string container_id = 1;
// Streaming stdin
optional string stdin = 2;
// Whether to stream stdin
optional bool stdin = 2;
}
message AttachResponse {