From a24d6bb7d15143305f47fd3bc6ad23bb8f836aec Mon Sep 17 00:00:00 2001 From: Zhigao Tong Date: Mon, 9 Jan 2023 15:12:55 +0800 Subject: [PATCH] 2 --- go-tipb/executor.pb.go | 402 ++++++++++++++++++++++++----------------- proto/executor.proto | 2 +- 2 files changed, 239 insertions(+), 165 deletions(-) diff --git a/go-tipb/executor.pb.go b/go-tipb/executor.pb.go index 54338e65..3ce227ae 100644 --- a/go-tipb/executor.pb.go +++ b/go-tipb/executor.pb.go @@ -131,6 +131,44 @@ func (x *ExchangeType) UnmarshalJSON(data []byte) error { } func (ExchangeType) EnumDescriptor() ([]byte, []int) { return fileDescriptorExecutor, []int{1} } +// Data compression mode +type CompressionMode int32 + +const ( + CompressionMode_NONE CompressionMode = 0 + CompressionMode_FAST CompressionMode = 1 + CompressionMode_HIGH_COMPRESSION CompressionMode = 2 +) + +var CompressionMode_name = map[int32]string{ + 0: "NONE", + 1: "FAST", + 2: "HIGH_COMPRESSION", +} +var CompressionMode_value = map[string]int32{ + "NONE": 0, + "FAST": 1, + "HIGH_COMPRESSION": 2, +} + +func (x CompressionMode) Enum() *CompressionMode { + p := new(CompressionMode) + *p = x + return p +} +func (x CompressionMode) String() string { + return proto.EnumName(CompressionMode_name, int32(x)) +} +func (x *CompressionMode) UnmarshalJSON(data []byte) error { + value, err := proto.UnmarshalJSONEnum(CompressionMode_value, data, "CompressionMode") + if err != nil { + return err + } + *x = CompressionMode(value) + return nil +} +func (CompressionMode) EnumDescriptor() ([]byte, []int) { return fileDescriptorExecutor, []int{2} } + type EngineType int32 const ( @@ -166,7 +204,7 @@ func (x *EngineType) UnmarshalJSON(data []byte) error { *x = EngineType(value) return nil } -func (EngineType) EnumDescriptor() ([]byte, []int) { return fileDescriptorExecutor, []int{2} } +func (EngineType) EnumDescriptor() ([]byte, []int) { return fileDescriptorExecutor, []int{3} } type JoinType int32 @@ -215,7 +253,7 @@ func (x *JoinType) UnmarshalJSON(data []byte) error { *x = JoinType(value) return nil } -func (JoinType) EnumDescriptor() ([]byte, []int) { return fileDescriptorExecutor, []int{3} } +func (JoinType) EnumDescriptor() ([]byte, []int) { return fileDescriptorExecutor, []int{4} } type JoinExecType int32 @@ -246,7 +284,7 @@ func (x *JoinExecType) UnmarshalJSON(data []byte) error { *x = JoinExecType(value) return nil } -func (JoinExecType) EnumDescriptor() ([]byte, []int) { return fileDescriptorExecutor, []int{4} } +func (JoinExecType) EnumDescriptor() ([]byte, []int) { return fileDescriptorExecutor, []int{5} } type WindowBoundType int32 @@ -283,7 +321,7 @@ func (x *WindowBoundType) UnmarshalJSON(data []byte) error { *x = WindowBoundType(value) return nil } -func (WindowBoundType) EnumDescriptor() ([]byte, []int) { return fileDescriptorExecutor, []int{5} } +func (WindowBoundType) EnumDescriptor() ([]byte, []int) { return fileDescriptorExecutor, []int{6} } type WindowFrameType int32 @@ -320,7 +358,7 @@ func (x *WindowFrameType) UnmarshalJSON(data []byte) error { *x = WindowFrameType(value) return nil } -func (WindowFrameType) EnumDescriptor() ([]byte, []int) { return fileDescriptorExecutor, []int{6} } +func (WindowFrameType) EnumDescriptor() ([]byte, []int) { return fileDescriptorExecutor, []int{7} } // It represents a Executor. type Executor struct { @@ -486,13 +524,14 @@ func (m *Executor) GetExpand() *Expand { // ExchangeSender will build connection with ExchangeReceiver. type ExchangeSender struct { - Tp ExchangeType `protobuf:"varint,1,opt,name=tp,enum=tipb.ExchangeType" json:"tp"` - EncodedTaskMeta [][]byte `protobuf:"bytes,2,rep,name=encoded_task_meta,json=encodedTaskMeta" json:"encoded_task_meta,omitempty"` - PartitionKeys []*Expr `protobuf:"bytes,3,rep,name=partition_keys,json=partitionKeys" json:"partition_keys,omitempty"` - Child *Executor `protobuf:"bytes,4,opt,name=child" json:"child,omitempty"` - Types []*FieldType `protobuf:"bytes,5,rep,name=types" json:"types,omitempty"` - AllFieldTypes []*FieldType `protobuf:"bytes,6,rep,name=all_field_types,json=allFieldTypes" json:"all_field_types,omitempty"` - XXX_unrecognized []byte `json:"-"` + Tp ExchangeType `protobuf:"varint,1,opt,name=tp,enum=tipb.ExchangeType" json:"tp"` + EncodedTaskMeta [][]byte `protobuf:"bytes,2,rep,name=encoded_task_meta,json=encodedTaskMeta" json:"encoded_task_meta,omitempty"` + PartitionKeys []*Expr `protobuf:"bytes,3,rep,name=partition_keys,json=partitionKeys" json:"partition_keys,omitempty"` + Child *Executor `protobuf:"bytes,4,opt,name=child" json:"child,omitempty"` + Types []*FieldType `protobuf:"bytes,5,rep,name=types" json:"types,omitempty"` + AllFieldTypes []*FieldType `protobuf:"bytes,6,rep,name=all_field_types,json=allFieldTypes" json:"all_field_types,omitempty"` + Compression CompressionMode `protobuf:"varint,7,opt,name=compression,enum=tipb.CompressionMode" json:"compression"` + XXX_unrecognized []byte `json:"-"` } func (m *ExchangeSender) Reset() { *m = ExchangeSender{} } @@ -542,6 +581,13 @@ func (m *ExchangeSender) GetAllFieldTypes() []*FieldType { return nil } +func (m *ExchangeSender) GetCompression() CompressionMode { + if m != nil { + return m.Compression + } + return CompressionMode_NONE +} + // ExchangeReceiver accept connection and receiver data from ExchangeSender. type ExchangeReceiver struct { EncodedTaskMeta [][]byte `protobuf:"bytes,1,rep,name=encoded_task_meta,json=encodedTaskMeta" json:"encoded_task_meta,omitempty"` @@ -1547,6 +1593,7 @@ func init() { proto.RegisterType((*Expand)(nil), "tipb.Expand") proto.RegisterEnum("tipb.ExecType", ExecType_name, ExecType_value) proto.RegisterEnum("tipb.ExchangeType", ExchangeType_name, ExchangeType_value) + proto.RegisterEnum("tipb.CompressionMode", CompressionMode_name, CompressionMode_value) proto.RegisterEnum("tipb.EngineType", EngineType_name, EngineType_value) proto.RegisterEnum("tipb.JoinType", JoinType_name, JoinType_value) proto.RegisterEnum("tipb.JoinExecType", JoinExecType_name, JoinExecType_value) @@ -1819,6 +1866,9 @@ func (m *ExchangeSender) MarshalTo(dAtA []byte) (int, error) { i += n } } + dAtA[i] = 0x38 + i++ + i = encodeVarintExecutor(dAtA, i, uint64(m.Compression)) if m.XXX_unrecognized != nil { i += copy(dAtA[i:], m.XXX_unrecognized) } @@ -3123,6 +3173,7 @@ func (m *ExchangeSender) Size() (n int) { n += 1 + l + sovExecutor(uint64(l)) } } + n += 1 + sovExecutor(uint64(m.Compression)) if m.XXX_unrecognized != nil { n += len(m.XXX_unrecognized) } @@ -4513,6 +4564,25 @@ func (m *ExchangeSender) Unmarshal(dAtA []byte) error { return err } iNdEx = postIndex + case 7: + if wireType != 0 { + return fmt.Errorf("proto: wrong wireType = %d for field Compression", wireType) + } + m.Compression = 0 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowExecutor + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + m.Compression |= (CompressionMode(b) & 0x7F) << shift + if b < 0x80 { + break + } + } default: iNdEx = preIndex skippy, err := skipExecutor(dAtA[iNdEx:]) @@ -8182,156 +8252,160 @@ var ( func init() { proto.RegisterFile("executor.proto", fileDescriptorExecutor) } var fileDescriptorExecutor = []byte{ - // 2415 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xcc, 0x58, 0xcd, 0x73, 0x1b, 0x49, - 0x15, 0xf7, 0xe8, 0x5b, 0x4f, 0xb2, 0x34, 0xee, 0x75, 0xbc, 0x93, 0x2c, 0x49, 0xb4, 0x22, 0xcb, - 0x7a, 0x5d, 0xc1, 0xc9, 0x26, 0x7c, 0x6c, 0x8a, 0x82, 0x4d, 0xec, 0xc4, 0x1b, 0x27, 0xd9, 0xac, - 0x6b, 0x64, 0xe0, 0x38, 0x35, 0x9e, 0x69, 0x49, 0x1d, 0x8f, 0x7a, 0x26, 0xd3, 0x2d, 0x2c, 0xe5, - 0xc4, 0x85, 0x1b, 0x37, 0x28, 0x8a, 0xe2, 0xc2, 0x99, 0xa2, 0x8a, 0x13, 0x07, 0xfe, 0x84, 0x3d, - 0x72, 0xa3, 0xe0, 0x40, 0x51, 0xe1, 0x0f, 0x81, 0xea, 0x8f, 0x19, 0xb5, 0x3c, 0xb2, 0xc9, 0x91, - 0x93, 0xd4, 0xef, 0xfd, 0xde, 0xeb, 0xd7, 0xef, 0xf5, 0x7b, 0xfd, 0xde, 0x40, 0x07, 0xcf, 0x70, - 0x30, 0xe5, 0x71, 0xba, 0x9b, 0xa4, 0x31, 0x8f, 0x51, 0x85, 0x93, 0xe4, 0xe4, 0x9a, 0x8d, 0x67, - 0x49, 0x8a, 0x19, 0x23, 0x31, 0x55, 0xf4, 0x6b, 0x6d, 0x16, 0x8c, 0xf1, 0xc4, 0xd7, 0xab, 0xcd, - 0x51, 0x3c, 0x8a, 0xe5, 0xdf, 0x3b, 0xe2, 0x9f, 0xa2, 0xf6, 0x7f, 0x57, 0x87, 0xc6, 0x13, 0xad, - 0x0e, 0xdd, 0x82, 0x12, 0x4f, 0x1c, 0xab, 0x67, 0x6d, 0x77, 0xee, 0x75, 0x76, 0x85, 0xd6, 0x5d, - 0xc1, 0x3b, 0x9e, 0x27, 0x78, 0xaf, 0xf2, 0xf5, 0x3f, 0x6f, 0xae, 0xb9, 0x25, 0x9e, 0xa0, 0x1d, - 0x68, 0xf0, 0x93, 0xc8, 0x63, 0x81, 0x4f, 0x9d, 0x52, 0xcf, 0xda, 0x6e, 0xdd, 0xeb, 0x2a, 0xec, - 0xb1, 0x7f, 0x12, 0xe1, 0x41, 0xe0, 0x53, 0xb7, 0xce, 0x4f, 0x22, 0xf1, 0x47, 0x60, 0x49, 0x38, - 0x53, 0xd8, 0xb2, 0x89, 0x3d, 0xa4, 0x21, 0x9e, 0x29, 0x2c, 0x09, 0xe5, 0x1f, 0xf4, 0x6d, 0x68, - 0x32, 0x1c, 0xe1, 0x80, 0x93, 0x98, 0x3a, 0x15, 0x13, 0x3c, 0xc8, 0xc8, 0xee, 0x02, 0x81, 0xee, - 0x43, 0xcb, 0x1f, 0x8d, 0x52, 0x3c, 0xf2, 0xa5, 0x40, 0x55, 0x0a, 0x6c, 0x28, 0x81, 0x47, 0x0b, - 0x86, 0x6b, 0xa2, 0xd0, 0x0d, 0xa8, 0xf0, 0x38, 0x79, 0xe9, 0xd4, 0x24, 0x1a, 0xb4, 0xdd, 0x71, - 0xf2, 0xd2, 0x95, 0x74, 0xf4, 0x21, 0x54, 0x23, 0x32, 0x21, 0xdc, 0xa9, 0x4b, 0x40, 0x4b, 0x01, - 0x5e, 0x08, 0x92, 0xab, 0x38, 0x68, 0x1f, 0x36, 0xf0, 0x2c, 0x18, 0xfb, 0x74, 0x84, 0xbd, 0x14, - 0x07, 0x98, 0xfc, 0x0c, 0xa7, 0x4e, 0x43, 0xc2, 0xb7, 0x32, 0x9f, 0x29, 0xb6, 0xab, 0xb9, 0xae, - 0x8d, 0xcf, 0x51, 0x84, 0x1d, 0xaf, 0x62, 0x42, 0x9d, 0xa6, 0x69, 0xc7, 0xb3, 0x98, 0x50, 0x57, - 0xd2, 0xd1, 0x4d, 0x68, 0x65, 0x41, 0xf6, 0x48, 0xe8, 0x40, 0xcf, 0xda, 0x6e, 0xba, 0x90, 0x91, - 0x0e, 0x43, 0xa1, 0xe0, 0x94, 0x44, 0x91, 0xd3, 0x32, 0x15, 0x3c, 0x27, 0x51, 0xe4, 0x4a, 0x3a, - 0xfa, 0x21, 0x74, 0x73, 0x2b, 0x19, 0xa6, 0x21, 0x4e, 0x9d, 0xb6, 0x84, 0x6e, 0x2e, 0xdb, 0x38, - 0x90, 0x3c, 0xb7, 0x83, 0x97, 0xd6, 0xe8, 0x2e, 0xc0, 0x51, 0x1a, 0xbf, 0xd2, 0xc1, 0x58, 0x97, - 0x92, 0xb6, 0x92, 0x5c, 0xd0, 0x5d, 0x03, 0x83, 0x9e, 0xc1, 0x66, 0xe2, 0xa7, 0x9c, 0x88, 0x85, - 0xc7, 0xc5, 0x4d, 0x50, 0x51, 0xef, 0x48, 0x59, 0x47, 0xcb, 0x66, 0x88, 0xc5, 0x55, 0x41, 0x49, - 0x81, 0x26, 0x0e, 0xc7, 0xe2, 0x94, 0x3b, 0x5d, 0xf3, 0x70, 0x83, 0x38, 0xe5, 0xae, 0xa4, 0xa3, - 0x5b, 0x50, 0x3b, 0x23, 0x34, 0x8c, 0xcf, 0x1c, 0x5b, 0x22, 0xda, 0x0a, 0xf1, 0x53, 0x49, 0x73, - 0x35, 0x0f, 0xbd, 0x84, 0x0f, 0x87, 0x84, 0x62, 0x6f, 0x94, 0xfa, 0x84, 0xe2, 0xd0, 0x63, 0xe3, - 0xe9, 0x70, 0x28, 0xcc, 0xe2, 0x29, 0xf6, 0x27, 0x5e, 0x10, 0x4f, 0x29, 0x77, 0x36, 0x7a, 0xd6, - 0x76, 0x45, 0x5f, 0xee, 0xeb, 0x02, 0xfe, 0x85, 0x42, 0x0f, 0x14, 0x78, 0x20, 0xb1, 0xfb, 0x02, - 0x8a, 0x9e, 0xc1, 0xcd, 0x95, 0xfa, 0x4e, 0x7c, 0x1e, 0x8c, 0x3d, 0x46, 0xde, 0x60, 0x07, 0x19, - 0xda, 0x3e, 0x28, 0x6a, 0xdb, 0x13, 0xc8, 0x01, 0x79, 0x83, 0xc5, 0x09, 0xf0, 0x2c, 0xf1, 0x69, - 0xe8, 0xbc, 0x67, 0x9e, 0xe0, 0x89, 0xa4, 0xb9, 0x9a, 0xd7, 0xff, 0x7d, 0x09, 0x3a, 0xcb, 0x81, - 0x42, 0xdb, 0x46, 0x8a, 0xa2, 0xe5, 0x50, 0x16, 0xd2, 0x74, 0x03, 0xd3, 0x20, 0x0e, 0x71, 0xe8, - 0x71, 0x9f, 0x9d, 0x7a, 0x13, 0xcc, 0x7d, 0xa7, 0xd4, 0x2b, 0x6f, 0xb7, 0xdd, 0xae, 0x66, 0x1c, - 0xfb, 0xec, 0xf4, 0x4b, 0xcc, 0x7d, 0xf4, 0x29, 0x74, 0x16, 0xc1, 0x3b, 0xc5, 0x73, 0xe6, 0x94, - 0x7b, 0xe5, 0x85, 0xeb, 0x9f, 0xcc, 0x92, 0xd4, 0x5d, 0xcf, 0x11, 0xcf, 0xf1, 0x9c, 0xa1, 0x5b, - 0x50, 0x0d, 0xc6, 0x24, 0x0a, 0x75, 0xa6, 0x1a, 0xe5, 0x42, 0xdc, 0x50, 0x57, 0x31, 0xd1, 0x47, - 0x50, 0xe5, 0xf3, 0x04, 0x33, 0xa7, 0x2a, 0xf5, 0xe9, 0x7c, 0x3e, 0x20, 0x38, 0x0a, 0x85, 0xb9, - 0xae, 0xe2, 0xa2, 0xef, 0x43, 0xd7, 0x8f, 0x22, 0x6f, 0x28, 0xe8, 0x9e, 0x12, 0xa8, 0xad, 0x16, - 0x58, 0xf7, 0xa3, 0x28, 0x5f, 0xb1, 0xfe, 0xaf, 0x2d, 0xb0, 0xcf, 0xa7, 0xdb, 0xea, 0x93, 0x5b, - 0xab, 0x4f, 0x7e, 0x17, 0x5a, 0xe6, 0xae, 0xa5, 0xd5, 0xbb, 0xc2, 0x30, 0xdf, 0x12, 0xf5, 0x65, - 0x04, 0xca, 0x17, 0x45, 0x40, 0xf8, 0xbe, 0xff, 0xcb, 0x32, 0x34, 0x17, 0xd7, 0xf9, 0x26, 0x34, - 0x54, 0x42, 0x90, 0x50, 0x46, 0xae, 0xac, 0xa3, 0x54, 0x97, 0xd4, 0xc3, 0x10, 0xed, 0x40, 0x3d, - 0x88, 0xa3, 0xe9, 0x84, 0x66, 0x06, 0xe8, 0x54, 0xdb, 0x97, 0xc4, 0x43, 0x3a, 0x8c, 0xdd, 0x0c, - 0x80, 0x1c, 0xa8, 0x84, 0x98, 0x05, 0xd2, 0x80, 0x86, 0x56, 0x24, 0x29, 0xe8, 0x36, 0xa0, 0x24, - 0x25, 0x13, 0x3f, 0x9d, 0x7b, 0x0a, 0xec, 0x91, 0x90, 0x39, 0x95, 0x5e, 0x79, 0xbb, 0xec, 0xda, - 0x9a, 0xa3, 0x35, 0x86, 0x0c, 0x3d, 0x04, 0x9b, 0xe2, 0x19, 0xf7, 0x52, 0xec, 0x87, 0x1e, 0xa6, - 0x23, 0x42, 0xb1, 0xac, 0xa1, 0x9d, 0x6c, 0xf3, 0x27, 0x92, 0x66, 0x5c, 0xaa, 0x8e, 0xc0, 0xbb, - 0xd8, 0x0f, 0x15, 0x07, 0xdd, 0x86, 0x5a, 0x2a, 0x4e, 0x9d, 0xc5, 0x4a, 0x5f, 0x81, 0xe7, 0x78, - 0xee, 0x0a, 0xb2, 0x96, 0xd2, 0x18, 0xf4, 0x00, 0xae, 0x66, 0xd6, 0x25, 0x29, 0x1e, 0x92, 0x99, - 0x69, 0x64, 0x5d, 0x1a, 0xb9, 0xa5, 0x01, 0x47, 0x92, 0xbf, 0x30, 0xf5, 0x3a, 0xc0, 0x29, 0xc6, - 0x89, 0x17, 0xa7, 0xa1, 0x2e, 0xb5, 0x0d, 0xb7, 0x29, 0x28, 0x5f, 0x09, 0x02, 0xea, 0x41, 0x9b, - 0x30, 0x6f, 0xe8, 0x33, 0xae, 0x2a, 0x4e, 0x53, 0x02, 0x80, 0xb0, 0x03, 0x9f, 0x71, 0x11, 0x80, - 0xfe, 0x1f, 0x4b, 0x80, 0x8a, 0xa5, 0xe7, 0xff, 0x33, 0x2e, 0x97, 0xfa, 0xa9, 0x7a, 0xa9, 0x9f, - 0xbe, 0x09, 0x8b, 0x1c, 0x95, 0xf0, 0x9a, 0x84, 0xb7, 0x73, 0xa2, 0x00, 0x9d, 0xf7, 0x56, 0xbd, - 0xe0, 0xad, 0xff, 0x54, 0xa0, 0x22, 0x9e, 0x22, 0xf4, 0x29, 0x34, 0xc5, 0x63, 0x24, 0x53, 0x63, - 0xb9, 0x2b, 0x10, 0x6c, 0xe3, 0x66, 0x34, 0x5e, 0xe9, 0x35, 0xfa, 0x11, 0x74, 0xa4, 0x88, 0x78, - 0xa9, 0x94, 0x5c, 0xc9, 0x4c, 0x14, 0x21, 0x77, 0xae, 0xa3, 0x68, 0xbf, 0x32, 0x68, 0xa2, 0x5f, - 0x90, 0x85, 0x23, 0xc5, 0x54, 0x97, 0xa0, 0xf3, 0x85, 0x25, 0xe7, 0xa3, 0x0f, 0xa1, 0x49, 0x28, - 0xc5, 0xe2, 0x81, 0x9c, 0xc9, 0x2a, 0x94, 0xc5, 0xaf, 0x21, 0xc9, 0x87, 0xe1, 0x0c, 0xdd, 0x85, - 0x4e, 0x84, 0x87, 0xdc, 0x93, 0x36, 0xc9, 0xba, 0x56, 0x2d, 0xd4, 0xb5, 0xb6, 0x40, 0x08, 0xc3, - 0x64, 0x59, 0xbb, 0x07, 0xdd, 0x94, 0x8c, 0xc6, 0xa6, 0x48, 0xad, 0x58, 0x0a, 0x25, 0x24, 0x97, - 0xb9, 0x0b, 0xad, 0x24, 0x8d, 0x4f, 0xb0, 0xae, 0x21, 0xf5, 0x0b, 0x6a, 0x88, 0xc4, 0xa8, 0x1a, - 0x72, 0x17, 0x5a, 0x27, 0x53, 0x92, 0x57, 0x9d, 0xc6, 0x05, 0x12, 0x12, 0xa3, 0x24, 0xee, 0x43, - 0x57, 0x9e, 0x24, 0x88, 0x69, 0x28, 0x63, 0xc9, 0x9c, 0x66, 0xc1, 0x2e, 0x79, 0xd8, 0xfd, 0x1c, - 0x81, 0xbe, 0x0b, 0xb6, 0x3a, 0x8c, 0x21, 0x05, 0x05, 0x29, 0x75, 0xe0, 0x65, 0xb1, 0x98, 0x8f, - 0x71, 0x6a, 0x8a, 0xb5, 0x8a, 0x62, 0x12, 0x63, 0x88, 0x3d, 0x85, 0x0f, 0x94, 0x18, 0x7e, 0x6d, - 0x48, 0x7a, 0xc3, 0x34, 0x9e, 0x78, 0x84, 0x3a, 0xed, 0x82, 0x86, 0xf7, 0x25, 0xfc, 0xc9, 0xeb, - 0x85, 0x8e, 0x83, 0x34, 0x9e, 0x1c, 0xd2, 0xfe, 0xdf, 0x2d, 0x68, 0xe6, 0x0d, 0xe2, 0xff, 0x4e, - 0xd3, 0x9b, 0xd0, 0x20, 0x02, 0x2d, 0x00, 0x25, 0x13, 0x20, 0xa9, 0xcb, 0x79, 0x5c, 0x7e, 0xd7, - 0x3c, 0xae, 0x14, 0xf2, 0x78, 0x0b, 0x6a, 0x53, 0x4a, 0x5e, 0x4f, 0x55, 0x9d, 0x6c, 0xb8, 0x7a, - 0x75, 0x41, 0x7e, 0xd7, 0x56, 0xe7, 0x77, 0xff, 0x57, 0x16, 0x34, 0xf3, 0x7e, 0x16, 0xed, 0x00, - 0x18, 0x4e, 0xb6, 0x0a, 0x2e, 0x32, 0xb8, 0xe8, 0x3b, 0xd0, 0x49, 0x13, 0x6a, 0x06, 0x45, 0x15, - 0xa5, 0x75, 0x85, 0x77, 0x13, 0xaa, 0x2f, 0x67, 0x42, 0x8d, 0xa8, 0xe4, 0xef, 0x74, 0xf9, 0x92, - 0x77, 0xba, 0xff, 0x73, 0xcb, 0x6c, 0xf8, 0x50, 0x0f, 0xaa, 0x62, 0x9a, 0x58, 0x65, 0x91, 0x62, - 0xa0, 0x1d, 0x68, 0x0a, 0x63, 0x14, 0x6a, 0xa5, 0x1d, 0x8d, 0x54, 0xfd, 0x79, 0x57, 0x13, 0x7e, - 0x51, 0x82, 0x96, 0xd1, 0xb7, 0xa3, 0x8f, 0xa0, 0x31, 0x4a, 0xe3, 0x69, 0xe2, 0x9d, 0xcc, 0x57, - 0x98, 0x51, 0x97, 0xbc, 0xbd, 0xb9, 0x80, 0xf9, 0xa3, 0x91, 0x37, 0x9c, 0xd2, 0x40, 0xdb, 0xb1, - 0x04, 0xf3, 0x47, 0xa3, 0x83, 0x29, 0x0d, 0x50, 0x0f, 0x1a, 0xaa, 0xef, 0xc3, 0xe1, 0x52, 0x89, - 0xce, 0xa9, 0xe8, 0x0e, 0xb4, 0xc5, 0x89, 0xf2, 0x3d, 0x2b, 0xab, 0x0e, 0x05, 0x69, 0x42, 0xbf, - 0xd0, 0x3b, 0x6b, 0x81, 0x7c, 0xf7, 0xea, 0x45, 0x02, 0x8f, 0xb4, 0x0d, 0xb9, 0x1f, 0x6a, 0x97, - 0xf9, 0xe1, 0x35, 0x54, 0xc4, 0x40, 0x82, 0x3e, 0x86, 0x86, 0x7c, 0xf0, 0x16, 0xe7, 0xd7, 0x4d, - 0xe2, 0xde, 0xfc, 0x90, 0xe3, 0x89, 0x5b, 0x97, 0xdc, 0xbd, 0x39, 0xba, 0x96, 0xcd, 0x2c, 0x25, - 0xa3, 0xfb, 0xd4, 0xc3, 0xca, 0xbb, 0xb9, 0xfe, 0x10, 0xaa, 0x72, 0xc4, 0x59, 0xa8, 0xb2, 0x2e, - 0x51, 0x55, 0xba, 0x4c, 0xd5, 0x43, 0xa8, 0x88, 0x29, 0x04, 0x7d, 0x03, 0x6a, 0x41, 0x4c, 0xe9, - 0xe1, 0xe3, 0x25, 0x55, 0x9a, 0x26, 0xf6, 0x79, 0x3d, 0xc5, 0xe9, 0x5c, 0xea, 0xca, 0x42, 0xa1, - 0x48, 0xfd, 0xbf, 0x94, 0xc0, 0xc9, 0xb4, 0xaa, 0x5f, 0x12, 0xd3, 0xc1, 0x74, 0x22, 0xd2, 0x48, - 0xb4, 0x76, 0x9c, 0x4c, 0xb0, 0x97, 0xa4, 0x71, 0x80, 0x19, 0xc3, 0xa1, 0x27, 0xd3, 0xc6, 0xda, - 0xae, 0xb8, 0x5d, 0xc1, 0x38, 0xca, 0xe8, 0x2f, 0xc5, 0x15, 0xdd, 0xa0, 0xd3, 0x89, 0x80, 0x86, - 0xd3, 0x00, 0x87, 0x5e, 0x1a, 0x9f, 0x31, 0xe5, 0x23, 0xb7, 0x4b, 0xa7, 0x93, 0x23, 0x4d, 0x77, - 0xe3, 0x33, 0x86, 0x3e, 0x82, 0x8e, 0xc0, 0x12, 0x8e, 0x53, 0x5f, 0xe5, 0x56, 0x59, 0x02, 0xd7, - 0xe9, 0x74, 0x72, 0x98, 0x13, 0xcf, 0x8f, 0x65, 0x95, 0xc2, 0x58, 0xd6, 0x83, 0x56, 0x10, 0xd3, - 0x60, 0x9a, 0xa6, 0x98, 0x06, 0x73, 0x59, 0x28, 0x2a, 0xae, 0x49, 0x42, 0x2f, 0x60, 0x93, 0x93, - 0x61, 0xe4, 0xb3, 0xb1, 0x7c, 0x7f, 0x45, 0x3a, 0x73, 0x3c, 0xe3, 0xfa, 0x4e, 0xe8, 0x39, 0xe9, - 0x98, 0x1c, 0x08, 0x84, 0x28, 0x7f, 0xfb, 0x8a, 0xff, 0x74, 0xcd, 0x45, 0x5a, 0xce, 0xa0, 0xee, - 0xb5, 0x01, 0x1e, 0x63, 0xee, 0x93, 0x48, 0x14, 0xb1, 0xfe, 0xdf, 0xca, 0x80, 0x8a, 0xa2, 0xe8, - 0x07, 0x70, 0x8d, 0xc7, 0xdc, 0x8f, 0xbc, 0x70, 0x32, 0x24, 0x7a, 0x2e, 0x13, 0x03, 0x4c, 0xe2, - 0x07, 0xa7, 0x99, 0xf7, 0xde, 0x97, 0x88, 0xc7, 0x12, 0x30, 0x50, 0xfc, 0x23, 0xc1, 0x2e, 0x0a, - 0x9f, 0x92, 0x24, 0xc9, 0x85, 0x4b, 0x45, 0x61, 0xc5, 0x57, 0xc2, 0x0f, 0xe0, 0xea, 0xca, 0x9d, - 0x65, 0x28, 0x94, 0x87, 0xb7, 0x8a, 0x1b, 0xcb, 0x88, 0x14, 0x44, 0xf5, 0xbe, 0x52, 0xb4, 0x52, - 0x14, 0x55, 0x6c, 0x29, 0xfa, 0x63, 0xf8, 0x64, 0x49, 0x34, 0x8d, 0xa7, 0xa3, 0xb1, 0xc7, 0x30, - 0xf7, 0xd4, 0x33, 0x11, 0xc5, 0x7e, 0xe8, 0xc9, 0x6b, 0x34, 0x61, 0x3a, 0x44, 0x7d, 0x43, 0x95, - 0x2b, 0xe0, 0x03, 0xcc, 0xe5, 0x0b, 0xf4, 0x22, 0xf6, 0xc3, 0x63, 0x32, 0xc1, 0x5f, 0x32, 0xf4, - 0xd9, 0x39, 0x8b, 0x64, 0xe7, 0x9c, 0xa9, 0xa9, 0x49, 0x35, 0x57, 0x4c, 0x35, 0x38, 0x97, 0x7c, - 0x08, 0xd7, 0x95, 0x64, 0x90, 0x62, 0x9f, 0x63, 0x8f, 0x51, 0x3f, 0x61, 0xe3, 0x98, 0xe7, 0xd2, - 0x75, 0x29, 0xad, 0xd4, 0xef, 0x4b, 0xcc, 0x40, 0x43, 0x94, 0x86, 0xfe, 0x1b, 0xa8, 0x88, 0xf9, - 0x17, 0x7d, 0x0b, 0xea, 0x27, 0x32, 0xfd, 0xd9, 0xea, 0x9a, 0xa0, 0x99, 0xe8, 0x16, 0xac, 0x13, - 0x26, 0x5b, 0x5e, 0x3f, 0x12, 0x82, 0x2a, 0xd1, 0xdc, 0x65, 0xe2, 0x3b, 0x56, 0x87, 0x3f, 0x58, - 0x60, 0xab, 0xd1, 0xfa, 0x20, 0xf5, 0x27, 0x78, 0x2f, 0x9e, 0x52, 0x51, 0x2d, 0x2b, 0x46, 0x5b, - 0x78, 0xc5, 0x1c, 0xc0, 0x25, 0xc0, 0xe8, 0xf0, 0x24, 0x10, 0xf5, 0xa1, 0x39, 0xa5, 0x27, 0x82, - 0x85, 0xc3, 0xa5, 0xb4, 0x5f, 0x90, 0xc5, 0x0b, 0x1b, 0x0f, 0x87, 0x0c, 0x73, 0x7d, 0x37, 0xf4, - 0x0a, 0x6d, 0x43, 0x33, 0xf0, 0xa3, 0x40, 0x14, 0x51, 0xa6, 0xeb, 0xb2, 0x59, 0xe4, 0x17, 0xcc, - 0xfe, 0x6f, 0x2c, 0x68, 0x19, 0xb6, 0x5e, 0x66, 0xa6, 0x04, 0x14, 0xcc, 0xbc, 0x0d, 0x55, 0xc6, - 0x7d, 0xed, 0xb0, 0xfc, 0x8b, 0xce, 0xf9, 0xe3, 0xbb, 0x0a, 0x84, 0xb6, 0xa1, 0x8c, 0x69, 0xe6, - 0xbe, 0x8b, 0xb0, 0x02, 0xd2, 0xff, 0x87, 0x05, 0x35, 0xc5, 0x41, 0x1f, 0x43, 0x53, 0xbc, 0x17, - 0x9e, 0x6c, 0x33, 0x8a, 0x2f, 0x5b, 0x43, 0x30, 0x1f, 0x8b, 0x86, 0xe3, 0x0e, 0x2c, 0x5a, 0x77, - 0xf1, 0x0a, 0x94, 0x56, 0x44, 0xbc, 0x95, 0x23, 0xf6, 0xe6, 0x4b, 0x4f, 0x46, 0xf9, 0xb2, 0x27, - 0xe3, 0x63, 0xa8, 0x0e, 0x85, 0x81, 0x7a, 0x78, 0xdf, 0x28, 0x58, 0xee, 0x2a, 0xfe, 0xe2, 0x86, - 0x54, 0x2f, 0xbb, 0x21, 0x9f, 0x43, 0x5b, 0x3e, 0x8a, 0x84, 0x8e, 0xc4, 0x11, 0xd0, 0x1d, 0x58, - 0x1f, 0xe9, 0xb5, 0xec, 0x10, 0x56, 0x9c, 0xb2, 0x3d, 0x32, 0x04, 0xfa, 0x4f, 0xa1, 0x95, 0x29, - 0x18, 0x60, 0x8e, 0x1e, 0x40, 0x67, 0x49, 0x3e, 0xbb, 0xec, 0x7a, 0x8a, 0x30, 0xf7, 0x72, 0xd7, - 0x4d, 0x45, 0xac, 0x3f, 0x84, 0x9a, 0xfa, 0x88, 0x82, 0xbe, 0x67, 0x18, 0xc1, 0x30, 0xcf, 0x74, - 0x6c, 0x2c, 0xeb, 0x18, 0x60, 0xbe, 0xb0, 0x65, 0x80, 0x39, 0x7b, 0xb7, 0x77, 0x6e, 0xe7, 0xcf, - 0x25, 0xf5, 0xdd, 0x54, 0x4e, 0x2d, 0x1b, 0xb0, 0x2e, 0x7e, 0xf3, 0xc9, 0xd2, 0x5e, 0xcb, 0x48, - 0x79, 0x17, 0x6b, 0x5b, 0x19, 0x29, 0x6f, 0xfe, 0xec, 0x12, 0x7a, 0x0f, 0xba, 0x82, 0x64, 0xb4, - 0x3d, 0x76, 0x19, 0xb5, 0xa1, 0x21, 0xb5, 0xc5, 0xc9, 0x4b, 0xbb, 0x82, 0xd6, 0xa1, 0x29, 0x56, - 0xf2, 0x7d, 0xb6, 0xab, 0xb9, 0x12, 0xd9, 0xb5, 0x3c, 0x1a, 0x8d, 0xec, 0x5a, 0x86, 0x17, 0xe3, - 0x88, 0x5d, 0xcf, 0x56, 0xe2, 0x11, 0xb6, 0x1b, 0x68, 0x0b, 0x90, 0x58, 0x2d, 0x7f, 0x44, 0xb2, - 0x9b, 0xc8, 0x81, 0x4d, 0x93, 0x9e, 0x7d, 0x3a, 0xb1, 0x01, 0x21, 0xe8, 0x08, 0xce, 0xa2, 0x19, - 0xb4, 0x5b, 0xe8, 0x1a, 0x6c, 0x49, 0x5a, 0x61, 0x84, 0xb6, 0xdb, 0xd9, 0x7e, 0xa2, 0x9e, 0xd8, - 0xeb, 0xa8, 0x03, 0x20, 0x56, 0xea, 0x26, 0xd9, 0x9d, 0x6c, 0xad, 0x42, 0x62, 0x77, 0x77, 0x3e, - 0x83, 0xb6, 0xf9, 0xb1, 0x04, 0x75, 0xa1, 0x75, 0xe4, 0x33, 0x76, 0x3c, 0x96, 0x35, 0xda, 0x5e, - 0x13, 0xc7, 0xdd, 0x4b, 0x63, 0x3f, 0x0c, 0x7c, 0xc6, 0x6d, 0x0b, 0x35, 0xa0, 0xf2, 0xd4, 0x67, - 0x63, 0xbb, 0xb4, 0xb3, 0x0b, 0xb0, 0xf8, 0x22, 0x81, 0x9a, 0x50, 0x7d, 0x11, 0x07, 0x7e, 0x64, - 0xaf, 0x09, 0xc8, 0x31, 0x79, 0xfe, 0x13, 0xdb, 0x42, 0x2d, 0xa8, 0xeb, 0xd7, 0xcf, 0x2e, 0xed, - 0xfc, 0xc9, 0x82, 0x46, 0x36, 0xa6, 0x2e, 0xa2, 0x41, 0x71, 0x2a, 0xfd, 0xb4, 0x86, 0xae, 0xc0, - 0x86, 0xf4, 0x2b, 0x1e, 0xf2, 0xaf, 0xa6, 0x5c, 0x93, 0xad, 0xcc, 0x61, 0xae, 0x18, 0x89, 0x16, - 0xf4, 0x12, 0xb2, 0xa1, 0xad, 0x82, 0x37, 0x21, 0x92, 0x52, 0x46, 0x9b, 0x60, 0xcb, 0xd8, 0x51, - 0x4e, 0x72, 0x6a, 0x05, 0x5d, 0x85, 0x2b, 0x4b, 0x6a, 0x73, 0x56, 0x15, 0x5d, 0x87, 0xab, 0x99, - 0x40, 0x91, 0x5d, 0xdb, 0xe9, 0x41, 0xdb, 0x1c, 0x8f, 0xb3, 0x1d, 0xc5, 0xf1, 0x95, 0xc9, 0x3b, - 0x9f, 0x43, 0xf7, 0x5c, 0x85, 0x15, 0xee, 0x3a, 0x88, 0xa3, 0x28, 0x3e, 0x23, 0x74, 0xa4, 0xbc, - 0x77, 0x94, 0xe2, 0x00, 0x87, 0x62, 0x69, 0x09, 0xef, 0xef, 0xcb, 0xbe, 0x83, 0xbb, 0xf1, 0x99, - 0x5d, 0xda, 0xb9, 0x9f, 0x29, 0xc8, 0x6b, 0x9f, 0xf0, 0x9e, 0x78, 0x33, 0xed, 0x35, 0x04, 0x50, - 0x93, 0xdf, 0x6d, 0x98, 0x6d, 0x89, 0xff, 0x32, 0x41, 0x98, 0x5d, 0xda, 0xfb, 0xe4, 0xeb, 0xb7, - 0x37, 0xac, 0xbf, 0xbe, 0xbd, 0x61, 0xfd, 0xeb, 0xed, 0x0d, 0xeb, 0xb7, 0xff, 0xbe, 0xb1, 0x06, - 0x57, 0x82, 0x78, 0xb2, 0x2b, 0xf2, 0x25, 0xf0, 0x93, 0x5d, 0x4e, 0xc2, 0x13, 0x99, 0x22, 0x47, - 0xd6, 0x7f, 0x03, 0x00, 0x00, 0xff, 0xff, 0xa3, 0xb8, 0x22, 0x42, 0x99, 0x18, 0x00, 0x00, + // 2477 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xcc, 0x58, 0x4b, 0x73, 0xdb, 0xc8, + 0x11, 0x16, 0xf8, 0x66, 0x93, 0x22, 0xa1, 0x59, 0x49, 0x0b, 0x7b, 0x63, 0x9b, 0xcb, 0x78, 0xb3, + 0x5a, 0xd6, 0x46, 0xf6, 0x7a, 0xf3, 0xd8, 0xad, 0xad, 0xcd, 0xae, 0x25, 0x4b, 0x16, 0xfd, 0x90, + 0x55, 0xa0, 0x92, 0x1c, 0x51, 0x10, 0x30, 0x24, 0xc7, 0x02, 0x07, 0x30, 0x30, 0x8c, 0x48, 0x9f, + 0x72, 0xc9, 0x2d, 0xb7, 0xa4, 0x52, 0xa9, 0xfc, 0x83, 0x54, 0xaa, 0x72, 0xca, 0x21, 0x3f, 0x61, + 0x8f, 0xb9, 0xa5, 0x92, 0xc3, 0x56, 0xca, 0xf9, 0x21, 0x49, 0xcd, 0x03, 0xe0, 0x50, 0xa0, 0x14, + 0x1f, 0x73, 0x22, 0xd1, 0xfd, 0x7d, 0x8d, 0x9e, 0xee, 0xe9, 0x9e, 0x1e, 0x40, 0x0b, 0xcf, 0xb0, + 0x37, 0x65, 0x61, 0xbc, 0x1b, 0xc5, 0x21, 0x0b, 0x51, 0x89, 0x91, 0xe8, 0xec, 0xa6, 0x89, 0x67, + 0x51, 0x8c, 0x93, 0x84, 0x84, 0x54, 0xca, 0x6f, 0x36, 0x13, 0x6f, 0x8c, 0x27, 0xae, 0x7a, 0xda, + 0x1c, 0x85, 0xa3, 0x50, 0xfc, 0xbd, 0xc7, 0xff, 0x49, 0x69, 0xf7, 0x0f, 0x55, 0xa8, 0x1d, 0x28, + 0x73, 0xe8, 0x2e, 0x14, 0x58, 0x64, 0x19, 0x1d, 0x63, 0xa7, 0xf5, 0xa0, 0xb5, 0xcb, 0xad, 0xee, + 0x72, 0xdd, 0xe9, 0x3c, 0xc2, 0x7b, 0xa5, 0x6f, 0xbe, 0xbd, 0xb3, 0x66, 0x17, 0x58, 0x84, 0x7a, + 0x50, 0x63, 0x67, 0x81, 0x93, 0x78, 0x2e, 0xb5, 0x0a, 0x1d, 0x63, 0xa7, 0xf1, 0xa0, 0x2d, 0xb1, + 0xa7, 0xee, 0x59, 0x80, 0x07, 0x9e, 0x4b, 0xed, 0x2a, 0x3b, 0x0b, 0xf8, 0x1f, 0x8e, 0x25, 0xfe, + 0x4c, 0x62, 0x8b, 0x3a, 0xb6, 0x4f, 0x7d, 0x3c, 0x93, 0x58, 0xe2, 0x8b, 0x3f, 0xe8, 0xfb, 0x50, + 0x4f, 0x70, 0x80, 0x3d, 0x46, 0x42, 0x6a, 0x95, 0x74, 0xf0, 0x20, 0x15, 0xdb, 0x0b, 0x04, 0xfa, + 0x14, 0x1a, 0xee, 0x68, 0x14, 0xe3, 0x91, 0x2b, 0x08, 0x65, 0x41, 0xd8, 0x90, 0x84, 0x87, 0x0b, + 0x85, 0xad, 0xa3, 0xd0, 0x6d, 0x28, 0xb1, 0x30, 0x3a, 0xb6, 0x2a, 0x02, 0x0d, 0xca, 0xef, 0x30, + 0x3a, 0xb6, 0x85, 0x1c, 0xbd, 0x0f, 0xe5, 0x80, 0x4c, 0x08, 0xb3, 0xaa, 0x02, 0xd0, 0x90, 0x80, + 0x67, 0x5c, 0x64, 0x4b, 0x0d, 0xda, 0x87, 0x0d, 0x3c, 0xf3, 0xc6, 0x2e, 0x1d, 0x61, 0x27, 0xc6, + 0x1e, 0x26, 0xbf, 0xc0, 0xb1, 0x55, 0x13, 0xf0, 0xed, 0x34, 0x66, 0x52, 0x6d, 0x2b, 0xad, 0x6d, + 0xe2, 0x4b, 0x12, 0xee, 0xc7, 0xcb, 0x90, 0x50, 0xab, 0xae, 0xfb, 0xf1, 0x24, 0x24, 0xd4, 0x16, + 0x72, 0x74, 0x07, 0x1a, 0x69, 0x92, 0x1d, 0xe2, 0x5b, 0xd0, 0x31, 0x76, 0xea, 0x36, 0xa4, 0xa2, + 0xbe, 0xcf, 0x0d, 0x9c, 0x93, 0x20, 0xb0, 0x1a, 0xba, 0x81, 0xa7, 0x24, 0x08, 0x6c, 0x21, 0x47, + 0x5f, 0x42, 0x3b, 0xf3, 0x32, 0xc1, 0xd4, 0xc7, 0xb1, 0xd5, 0x14, 0xd0, 0xcd, 0x65, 0x1f, 0x07, + 0x42, 0x67, 0xb7, 0xf0, 0xd2, 0x33, 0xba, 0x0f, 0x70, 0x12, 0x87, 0x2f, 0x55, 0x32, 0xd6, 0x05, + 0xd3, 0x94, 0xcc, 0x85, 0xdc, 0xd6, 0x30, 0xe8, 0x09, 0x6c, 0x46, 0x6e, 0xcc, 0x08, 0x7f, 0x70, + 0x18, 0xdf, 0x09, 0x32, 0xeb, 0x2d, 0xc1, 0xb5, 0x14, 0x37, 0x45, 0x2c, 0xb6, 0x0a, 0x8a, 0x72, + 0x32, 0xbe, 0xb8, 0x24, 0x8c, 0x99, 0xd5, 0xd6, 0x17, 0x37, 0x08, 0x63, 0x66, 0x0b, 0x39, 0xba, + 0x0b, 0x95, 0x0b, 0x42, 0xfd, 0xf0, 0xc2, 0x32, 0x05, 0xa2, 0x29, 0x11, 0x3f, 0x17, 0x32, 0x5b, + 0xe9, 0xd0, 0x31, 0xbc, 0x3f, 0x24, 0x14, 0x3b, 0xa3, 0xd8, 0x25, 0x14, 0xfb, 0x4e, 0x32, 0x9e, + 0x0e, 0x87, 0xdc, 0x2d, 0x16, 0x63, 0x77, 0xe2, 0x78, 0xe1, 0x94, 0x32, 0x6b, 0xa3, 0x63, 0xec, + 0x94, 0xd4, 0xe6, 0xbe, 0xc5, 0xe1, 0x8f, 0x25, 0x7a, 0x20, 0xc1, 0x03, 0x81, 0xdd, 0xe7, 0x50, + 0xf4, 0x04, 0xee, 0xac, 0xb4, 0x77, 0xe6, 0x32, 0x6f, 0xec, 0x24, 0xe4, 0x35, 0xb6, 0x90, 0x66, + 0xed, 0xbd, 0xbc, 0xb5, 0x3d, 0x8e, 0x1c, 0x90, 0xd7, 0x98, 0xaf, 0x00, 0xcf, 0x22, 0x97, 0xfa, + 0xd6, 0x3b, 0xfa, 0x0a, 0x0e, 0x84, 0xcc, 0x56, 0xba, 0xee, 0xb7, 0x05, 0x68, 0x2d, 0x27, 0x0a, + 0xed, 0x68, 0x25, 0x8a, 0x96, 0x53, 0x99, 0x2b, 0xd3, 0x0d, 0x4c, 0xbd, 0xd0, 0xc7, 0xbe, 0xc3, + 0xdc, 0xe4, 0xdc, 0x99, 0x60, 0xe6, 0x5a, 0x85, 0x4e, 0x71, 0xa7, 0x69, 0xb7, 0x95, 0xe2, 0xd4, + 0x4d, 0xce, 0x9f, 0x63, 0xe6, 0xa2, 0x4f, 0xa0, 0xb5, 0x48, 0xde, 0x39, 0x9e, 0x27, 0x56, 0xb1, + 0x53, 0x5c, 0x84, 0xfe, 0x60, 0x16, 0xc5, 0xf6, 0x7a, 0x86, 0x78, 0x8a, 0xe7, 0x09, 0xba, 0x0b, + 0x65, 0x6f, 0x4c, 0x02, 0x5f, 0x55, 0xaa, 0xd6, 0x2e, 0xf8, 0x0e, 0xb5, 0xa5, 0x12, 0x7d, 0x00, + 0x65, 0x36, 0x8f, 0x70, 0x62, 0x95, 0x85, 0x3d, 0x55, 0xcf, 0x87, 0x04, 0x07, 0x3e, 0x77, 0xd7, + 0x96, 0x5a, 0xf4, 0x63, 0x68, 0xbb, 0x41, 0xe0, 0x0c, 0xb9, 0xdc, 0x91, 0x84, 0xca, 0x6a, 0xc2, + 0xba, 0x1b, 0x04, 0xd9, 0x53, 0x82, 0xbe, 0x84, 0x86, 0x17, 0x4e, 0xd2, 0xbe, 0x27, 0xaa, 0xb6, + 0xf5, 0x60, 0x4b, 0x92, 0xf6, 0x17, 0x8a, 0xe7, 0xa1, 0x9f, 0x86, 0x46, 0xc7, 0x77, 0x7f, 0x6b, + 0x80, 0x79, 0xb9, 0x5a, 0x57, 0x07, 0xce, 0x58, 0x1d, 0xb8, 0xfb, 0xd0, 0xd0, 0x9d, 0x2e, 0xac, + 0x76, 0x1a, 0x86, 0x0b, 0x8f, 0xbb, 0x22, 0x81, 0xc5, 0xab, 0x12, 0xc8, 0x53, 0xd7, 0xfd, 0x75, + 0x11, 0xea, 0x8b, 0x6a, 0xb8, 0x03, 0x35, 0x59, 0x4f, 0xc4, 0x17, 0x89, 0x2f, 0xaa, 0x95, 0x54, + 0x85, 0xb4, 0xef, 0xa3, 0x1e, 0x54, 0xbd, 0x30, 0x98, 0x4e, 0x68, 0xea, 0x80, 0x99, 0x06, 0x80, + 0x0b, 0xfb, 0x74, 0x18, 0xda, 0x29, 0x00, 0x59, 0x50, 0xf2, 0x71, 0xe2, 0x09, 0x07, 0x6a, 0xca, + 0x90, 0x90, 0xa0, 0x8f, 0x01, 0x45, 0x31, 0x99, 0xb8, 0xf1, 0xdc, 0x91, 0x60, 0x87, 0xf8, 0x89, + 0x55, 0xea, 0x14, 0x77, 0x8a, 0xb6, 0xa9, 0x34, 0xca, 0xa2, 0x9f, 0xa0, 0xaf, 0xc1, 0xa4, 0x78, + 0xc6, 0x9c, 0x18, 0xbb, 0xbe, 0x83, 0xe9, 0x88, 0x50, 0x2c, 0x5a, 0x70, 0x2b, 0x7d, 0xf9, 0x81, + 0x90, 0x69, 0x7b, 0xb2, 0xc5, 0xf1, 0x36, 0x76, 0x7d, 0xa9, 0x41, 0x1f, 0x43, 0x25, 0xe6, 0xab, + 0x4e, 0x53, 0xad, 0x76, 0xd0, 0x53, 0x3c, 0xb7, 0xb9, 0x58, 0xb1, 0x14, 0x06, 0x7d, 0x0e, 0x37, + 0x52, 0xef, 0xa2, 0x18, 0x0f, 0xc9, 0x4c, 0x77, 0xb2, 0x2a, 0x9c, 0xdc, 0x56, 0x80, 0x13, 0xa1, + 0x5f, 0xb8, 0x7a, 0x0b, 0xe0, 0x1c, 0xe3, 0xc8, 0x09, 0x63, 0x5f, 0x75, 0xea, 0x9a, 0x5d, 0xe7, + 0x92, 0x17, 0x5c, 0x80, 0x3a, 0xd0, 0x24, 0x89, 0x33, 0x74, 0x13, 0x26, 0x1b, 0x56, 0x5d, 0x00, + 0x80, 0x24, 0x87, 0x6e, 0xc2, 0x78, 0x02, 0xba, 0x7f, 0x2a, 0x00, 0xca, 0x77, 0xae, 0xff, 0xcf, + 0xbc, 0x5c, 0x1b, 0xa7, 0xf2, 0xb5, 0x71, 0xfa, 0x2e, 0x2c, 0x4a, 0x5c, 0xc0, 0x2b, 0x02, 0xde, + 0xcc, 0x84, 0x1c, 0x74, 0x39, 0x5a, 0xd5, 0x5c, 0xb4, 0xfe, 0x53, 0x82, 0x12, 0x3f, 0xc9, 0xd0, + 0x27, 0x50, 0xe7, 0x67, 0x99, 0x28, 0x8d, 0xe5, 0xa1, 0x82, 0xab, 0xb5, 0x9d, 0x51, 0x7b, 0xa9, + 0x9e, 0xd1, 0x4f, 0xa0, 0x25, 0x28, 0xfc, 0xa0, 0x93, 0xbc, 0x82, 0x5e, 0x28, 0x9c, 0x77, 0x69, + 0x20, 0x69, 0xbe, 0xd4, 0x64, 0x7c, 0xdc, 0x10, 0x7d, 0x27, 0xc6, 0x54, 0x75, 0xb0, 0xcb, 0x7d, + 0x29, 0xd3, 0xa3, 0xf7, 0xa1, 0x4e, 0x28, 0xc5, 0xfc, 0x7c, 0x9d, 0x89, 0x26, 0x96, 0xe6, 0xaf, + 0x26, 0xc4, 0x7d, 0x7f, 0x86, 0xee, 0x43, 0x2b, 0xc0, 0x43, 0xe6, 0x08, 0x9f, 0x44, 0x5b, 0x2c, + 0xe7, 0xda, 0x62, 0x93, 0x23, 0xb8, 0x63, 0xa2, 0x2b, 0x3e, 0x80, 0x76, 0x4c, 0x46, 0x63, 0x9d, + 0x52, 0xc9, 0x77, 0x52, 0x01, 0xc9, 0x38, 0xf7, 0xa1, 0x11, 0xc5, 0xe1, 0x19, 0x56, 0x3d, 0xa4, + 0x7a, 0x45, 0x0f, 0x11, 0x18, 0xd9, 0x43, 0xee, 0x43, 0xe3, 0x6c, 0x4a, 0xb2, 0xae, 0x53, 0xbb, + 0x82, 0x21, 0x30, 0x92, 0xf1, 0x29, 0xb4, 0xc5, 0x4a, 0xbc, 0x90, 0xfa, 0x22, 0x97, 0x89, 0x55, + 0xcf, 0xf9, 0x25, 0x16, 0xbb, 0x9f, 0x21, 0xd0, 0x0f, 0xc1, 0x94, 0x8b, 0xd1, 0x58, 0x90, 0x63, + 0xc9, 0x05, 0x2f, 0xd3, 0x42, 0x36, 0xc6, 0xb1, 0x4e, 0x6b, 0xe4, 0x69, 0x02, 0xa3, 0xd1, 0x8e, + 0xe0, 0x3d, 0x49, 0xc3, 0xaf, 0x34, 0xa6, 0x33, 0x8c, 0xc3, 0x89, 0x43, 0xa8, 0xd5, 0xcc, 0x59, + 0x78, 0x57, 0xc0, 0x0f, 0x5e, 0x2d, 0x6c, 0x1c, 0xc6, 0xe1, 0xa4, 0x4f, 0xbb, 0xff, 0x30, 0xa0, + 0x9e, 0xcd, 0x97, 0xff, 0xbb, 0x4c, 0xef, 0x40, 0x8d, 0x70, 0x34, 0x07, 0x14, 0x74, 0x80, 0x90, + 0x2e, 0xd7, 0x71, 0xf1, 0x6d, 0xeb, 0xb8, 0x94, 0xab, 0xe3, 0x6d, 0xa8, 0x4c, 0x29, 0x79, 0x35, + 0x95, 0x7d, 0xb2, 0x66, 0xab, 0xa7, 0x2b, 0xea, 0xbb, 0xb2, 0xba, 0xbe, 0xbb, 0xbf, 0x31, 0xa0, + 0x9e, 0x8d, 0xc3, 0xa8, 0x07, 0xa0, 0x05, 0xd9, 0xc8, 0x85, 0x48, 0xd3, 0xa2, 0x1f, 0x40, 0x2b, + 0x8e, 0xa8, 0x9e, 0x14, 0xd9, 0x94, 0xd6, 0x25, 0xde, 0x8e, 0xa8, 0xda, 0x9c, 0x11, 0xd5, 0xb2, + 0x92, 0x1d, 0xf3, 0xc5, 0x6b, 0x8e, 0xf9, 0xee, 0x2f, 0x0d, 0x7d, 0x5e, 0x44, 0x1d, 0x28, 0xf3, + 0xcb, 0xc8, 0x2a, 0x8f, 0xa4, 0x02, 0xf5, 0xa0, 0xce, 0x9d, 0x91, 0xa8, 0x95, 0x7e, 0xd4, 0x62, + 0xf9, 0xe7, 0x6d, 0x5d, 0xf8, 0x55, 0x01, 0x1a, 0xda, 0xd8, 0x8f, 0x3e, 0x80, 0xda, 0x28, 0x0e, + 0xa7, 0x91, 0x73, 0x36, 0x5f, 0xe1, 0x46, 0x55, 0xe8, 0xf6, 0xe6, 0x1c, 0xe6, 0x8e, 0x46, 0xce, + 0x70, 0x4a, 0x3d, 0xe5, 0xc7, 0x12, 0xcc, 0x1d, 0x8d, 0x0e, 0xa7, 0xd4, 0x43, 0x1d, 0xa8, 0xc9, + 0xb1, 0x11, 0xfb, 0x4b, 0x2d, 0x3a, 0x93, 0xa2, 0x7b, 0xd0, 0xe4, 0x2b, 0xca, 0xde, 0x59, 0x5a, + 0xb5, 0x28, 0x88, 0x23, 0xfa, 0x58, 0xbd, 0x59, 0x11, 0xb2, 0xb7, 0x97, 0xaf, 0x22, 0x3c, 0x54, + 0x3e, 0x64, 0x71, 0xa8, 0x5c, 0x17, 0x87, 0x57, 0x50, 0xe2, 0xf7, 0x19, 0xf4, 0x21, 0xd4, 0xc4, + 0x81, 0xb7, 0x58, 0xbf, 0x9a, 0x31, 0xf7, 0xe6, 0x7d, 0x86, 0x27, 0x76, 0x55, 0x68, 0xf7, 0xe6, + 0xe8, 0x66, 0x7a, 0xe5, 0x29, 0x68, 0xc3, 0xab, 0xba, 0xeb, 0xbc, 0x5d, 0xe8, 0xfb, 0x50, 0x16, + 0x37, 0xa4, 0x85, 0x29, 0xe3, 0x1a, 0x53, 0x85, 0xeb, 0x4c, 0x7d, 0x0d, 0x25, 0x7e, 0x89, 0x41, + 0xdf, 0x81, 0x8a, 0x17, 0x52, 0xda, 0x7f, 0xb4, 0x64, 0x4a, 0xc9, 0xf8, 0x7b, 0x5e, 0x4d, 0x71, + 0x3c, 0x17, 0xb6, 0xd2, 0x54, 0x48, 0x51, 0xf7, 0xaf, 0x05, 0xb0, 0x52, 0xab, 0xf2, 0x97, 0x84, + 0x74, 0x30, 0x9d, 0xf0, 0x32, 0xe2, 0xa3, 0x1d, 0x23, 0x13, 0xec, 0x44, 0x71, 0xe8, 0xe1, 0x24, + 0xc1, 0xbe, 0x23, 0xca, 0xc6, 0xd8, 0x29, 0xd9, 0x6d, 0xae, 0x38, 0x49, 0xe5, 0xc7, 0x7c, 0x8b, + 0x6e, 0xd0, 0xe9, 0x84, 0x43, 0xfd, 0xa9, 0x87, 0x7d, 0x27, 0x0e, 0x2f, 0x12, 0x19, 0x23, 0xbb, + 0x4d, 0xa7, 0x93, 0x13, 0x25, 0xb7, 0xc3, 0x8b, 0x04, 0x7d, 0x00, 0x2d, 0x8e, 0x25, 0x0c, 0xc7, + 0xae, 0xac, 0xad, 0xa2, 0x00, 0xae, 0xd3, 0xe9, 0xa4, 0x9f, 0x09, 0x2f, 0xdf, 0xea, 0x4a, 0xb9, + 0x5b, 0x5d, 0x87, 0x8f, 0xb3, 0xd4, 0x9b, 0xc6, 0x31, 0xa6, 0xde, 0x5c, 0x34, 0x8a, 0x92, 0xad, + 0x8b, 0xd0, 0x33, 0xd8, 0x64, 0x64, 0x18, 0xb8, 0xc9, 0x58, 0x9c, 0xbf, 0xbc, 0x9c, 0x19, 0x9e, + 0x31, 0xb5, 0x27, 0xd4, 0x35, 0xeb, 0x94, 0x1c, 0x72, 0x04, 0x6f, 0x7f, 0xfb, 0x52, 0x7f, 0xb4, + 0x66, 0x23, 0xc5, 0xd3, 0xa4, 0x7b, 0x4d, 0x80, 0x47, 0x98, 0xb9, 0x24, 0xe0, 0x4d, 0xac, 0xfb, + 0xf7, 0x22, 0xa0, 0x3c, 0x15, 0x7d, 0x01, 0x37, 0x59, 0xc8, 0xdc, 0xc0, 0xf1, 0x27, 0x43, 0xa2, + 0xae, 0x75, 0xfc, 0xfe, 0x13, 0xb9, 0xde, 0x79, 0x1a, 0xbd, 0x77, 0x05, 0xe2, 0x91, 0x00, 0x0c, + 0xa4, 0xfe, 0x84, 0xab, 0xf3, 0xe4, 0x73, 0x12, 0x45, 0x19, 0xb9, 0x90, 0x27, 0x4b, 0xbd, 0x24, + 0x7f, 0x0e, 0x37, 0x56, 0xbe, 0x59, 0xa4, 0x42, 0x46, 0x78, 0x3b, 0xff, 0x62, 0x91, 0x91, 0x1c, + 0x55, 0xbd, 0x57, 0x50, 0x4b, 0x79, 0xaa, 0x54, 0x0b, 0xea, 0x4f, 0xe1, 0xa3, 0x25, 0x6a, 0x1c, + 0x4e, 0x47, 0x63, 0x27, 0xc1, 0xcc, 0x91, 0xc7, 0x44, 0x10, 0xba, 0xbe, 0x23, 0xb6, 0xd1, 0x24, + 0x51, 0x29, 0xea, 0x6a, 0xa6, 0x6c, 0x0e, 0x1f, 0x60, 0x26, 0x4e, 0xa0, 0x67, 0xa1, 0xeb, 0x9f, + 0x92, 0x09, 0x7e, 0x9e, 0xa0, 0xcf, 0x2e, 0x79, 0x24, 0x26, 0xe7, 0xd4, 0x4c, 0x45, 0x98, 0xd9, + 0xd2, 0xcd, 0xe0, 0x8c, 0xf9, 0x35, 0xdc, 0x92, 0x4c, 0x2f, 0xc6, 0x2e, 0xc3, 0x4e, 0x42, 0xdd, + 0x28, 0x19, 0x87, 0x2c, 0x63, 0x57, 0x05, 0x5b, 0x9a, 0xdf, 0x17, 0x98, 0x81, 0x82, 0x48, 0x0b, + 0xdd, 0xd7, 0x50, 0xe2, 0xd7, 0x67, 0xf4, 0x3d, 0xa8, 0x9e, 0x89, 0xf2, 0x4f, 0x56, 0xf7, 0x04, + 0xa5, 0x44, 0x77, 0x61, 0x9d, 0x24, 0x62, 0xe4, 0x75, 0x03, 0x4e, 0x94, 0x85, 0x66, 0x2f, 0x0b, + 0xdf, 0xb2, 0x3b, 0xfc, 0xd1, 0x00, 0x53, 0xde, 0xcc, 0x0f, 0x63, 0x77, 0x82, 0xf7, 0xc2, 0x29, + 0xe5, 0xdd, 0xb2, 0xa4, 0x8d, 0x85, 0x5b, 0xfa, 0xfd, 0x5d, 0x00, 0xb4, 0x09, 0x4f, 0x00, 0x51, + 0x17, 0xea, 0x53, 0x7a, 0xc6, 0x55, 0xd8, 0x5f, 0x2a, 0xfb, 0x85, 0x98, 0x9f, 0xb0, 0xe1, 0x70, + 0x98, 0x60, 0xa6, 0xf6, 0x86, 0x7a, 0x42, 0x3b, 0x50, 0xf7, 0xdc, 0xc0, 0xe3, 0x4d, 0x34, 0x51, + 0x7d, 0x59, 0x6f, 0xf2, 0x0b, 0x65, 0xf7, 0x77, 0x06, 0x34, 0x34, 0x5f, 0xaf, 0x73, 0x53, 0x00, + 0x72, 0x6e, 0x7e, 0x0c, 0xe5, 0x84, 0xb9, 0x2a, 0x60, 0xd9, 0x07, 0xa1, 0xcb, 0xcb, 0xb7, 0x25, + 0x08, 0xed, 0x40, 0x11, 0xd3, 0x34, 0x7c, 0x57, 0x61, 0x39, 0xa4, 0xfb, 0x4f, 0x03, 0x2a, 0x52, + 0x83, 0x3e, 0x84, 0x3a, 0x3f, 0x2f, 0x1c, 0x31, 0x66, 0xe4, 0x4f, 0xb6, 0x1a, 0x57, 0x3e, 0xe2, + 0x03, 0xc7, 0x3d, 0x58, 0x8c, 0xee, 0xfc, 0x14, 0x28, 0xac, 0xc8, 0x78, 0x23, 0x43, 0xec, 0xcd, + 0x97, 0x8e, 0x8c, 0xe2, 0x75, 0x47, 0xc6, 0x87, 0x50, 0x1e, 0x72, 0x07, 0xd5, 0xdd, 0x7f, 0x23, + 0xe7, 0xb9, 0x2d, 0xf5, 0x8b, 0x1d, 0x52, 0xbe, 0x6e, 0x87, 0x7c, 0x05, 0x4d, 0x71, 0x28, 0x12, + 0x3a, 0xe2, 0x4b, 0x40, 0xf7, 0x60, 0x7d, 0xa4, 0x9e, 0xc5, 0x84, 0xb0, 0x62, 0x95, 0xcd, 0x91, + 0x46, 0xe8, 0x1e, 0x41, 0x23, 0x35, 0x30, 0xc0, 0x0c, 0x7d, 0x0e, 0xad, 0x25, 0x7e, 0xba, 0xd9, + 0xd5, 0x2d, 0x42, 0x7f, 0x97, 0xbd, 0xae, 0x1b, 0x4a, 0xba, 0x43, 0xa8, 0xc8, 0x6f, 0x30, 0xe8, + 0x47, 0x9a, 0x13, 0x09, 0x66, 0xa9, 0x8d, 0x8d, 0x65, 0x1b, 0x03, 0xcc, 0x16, 0xbe, 0x0c, 0x30, + 0x4b, 0xde, 0xee, 0x9c, 0xeb, 0xfd, 0xa5, 0x20, 0x3f, 0xbb, 0x8a, 0x5b, 0xcb, 0x06, 0xac, 0xf3, + 0xdf, 0xec, 0x66, 0x69, 0xae, 0xa5, 0xa2, 0x6c, 0x8a, 0x35, 0x8d, 0x54, 0x94, 0x0d, 0x7f, 0x66, + 0x01, 0xbd, 0x03, 0x6d, 0x2e, 0xd2, 0xc6, 0x1e, 0xb3, 0x88, 0x9a, 0x50, 0x13, 0xd6, 0xc2, 0xe8, + 0xd8, 0x2c, 0xa1, 0x75, 0xa8, 0xf3, 0x27, 0x71, 0x3e, 0x9b, 0xe5, 0xcc, 0x88, 0x98, 0x5a, 0x1e, + 0x8e, 0x46, 0x66, 0x25, 0xc5, 0xf3, 0xeb, 0x88, 0x59, 0x4d, 0x9f, 0xf8, 0x21, 0x6c, 0xd6, 0xd0, + 0x36, 0x20, 0xfe, 0xb4, 0xfc, 0x0d, 0xca, 0xac, 0x23, 0x0b, 0x36, 0x75, 0x79, 0xfa, 0xe9, 0xc4, + 0x04, 0x84, 0xa0, 0xc5, 0x35, 0x8b, 0x61, 0xd0, 0x6c, 0xa0, 0x9b, 0xb0, 0x2d, 0x64, 0xb9, 0x2b, + 0xb4, 0xd9, 0x4c, 0xdf, 0xc7, 0xfb, 0x89, 0xb9, 0x8e, 0x5a, 0x00, 0xfc, 0x49, 0xee, 0x24, 0xb3, + 0x95, 0x3e, 0xcb, 0x94, 0x98, 0xed, 0xde, 0x67, 0xd0, 0xd4, 0x3f, 0x96, 0xa0, 0x36, 0x34, 0x4e, + 0xdc, 0x24, 0x39, 0x1d, 0x8b, 0x1e, 0x6d, 0xae, 0xf1, 0xe5, 0xee, 0xc5, 0xa1, 0xeb, 0x7b, 0x6e, + 0xc2, 0x4c, 0x03, 0xd5, 0xa0, 0x74, 0xe4, 0x26, 0x63, 0xb3, 0xd0, 0xfb, 0x02, 0xda, 0x97, 0xbe, + 0x07, 0x71, 0xe5, 0xf1, 0x8b, 0xe3, 0x03, 0x73, 0x8d, 0xff, 0x3b, 0x7c, 0x38, 0x38, 0x35, 0x0d, + 0xb4, 0x09, 0xe6, 0x51, 0xff, 0xf1, 0x91, 0xb3, 0xff, 0xe2, 0xf9, 0x89, 0x7d, 0x30, 0x18, 0xf4, + 0x5f, 0x1c, 0x9b, 0x85, 0xde, 0x2e, 0xc0, 0xe2, 0x73, 0x06, 0xaa, 0x43, 0xf9, 0x59, 0xe8, 0xb9, + 0x81, 0x24, 0x9e, 0x92, 0xa7, 0x3f, 0x33, 0x0d, 0xd4, 0x80, 0xaa, 0x3a, 0x3a, 0xcd, 0x42, 0xef, + 0xcf, 0x06, 0xd4, 0xd2, 0x3b, 0xee, 0x22, 0x95, 0x14, 0xc7, 0x22, 0xc8, 0x6b, 0x68, 0x0b, 0x36, + 0x44, 0x52, 0xf0, 0x90, 0xbd, 0x98, 0x32, 0x25, 0x36, 0xd2, 0x68, 0xdb, 0xfc, 0x3e, 0xb5, 0x90, + 0x17, 0x90, 0x09, 0x4d, 0x99, 0xf9, 0x09, 0x11, 0x92, 0x22, 0x77, 0x53, 0x24, 0x9e, 0x32, 0x92, + 0x49, 0x4b, 0xe8, 0x06, 0x6c, 0x2d, 0x99, 0xcd, 0x54, 0x65, 0x74, 0x0b, 0x6e, 0xa4, 0x84, 0xbc, + 0xba, 0xd2, 0xeb, 0x40, 0x53, 0xbf, 0x5b, 0xa7, 0x6f, 0xe4, 0xb1, 0x93, 0x2e, 0xf7, 0xbe, 0x82, + 0xf6, 0xa5, 0xf6, 0xcc, 0x63, 0x7d, 0x18, 0x06, 0x41, 0x78, 0x41, 0xe8, 0x48, 0x86, 0xfe, 0x24, + 0xc6, 0x1e, 0xf6, 0xf9, 0xa3, 0xc1, 0x53, 0xb7, 0x2f, 0x86, 0x16, 0x66, 0x87, 0x17, 0x66, 0xa1, + 0xf7, 0x69, 0x6a, 0x20, 0x6b, 0x9c, 0x3c, 0x7a, 0xfc, 0xc0, 0x35, 0xd7, 0x10, 0x40, 0x45, 0x7c, + 0xf4, 0x49, 0x4c, 0x83, 0xff, 0x17, 0xd5, 0x95, 0x98, 0x85, 0xbd, 0x8f, 0xbe, 0x79, 0x73, 0xdb, + 0xf8, 0xdb, 0x9b, 0xdb, 0xc6, 0xbf, 0xde, 0xdc, 0x36, 0x7e, 0xff, 0xef, 0xdb, 0x6b, 0xb0, 0xe5, + 0x85, 0x93, 0x5d, 0x5e, 0x6c, 0x9e, 0x1b, 0xed, 0x32, 0xe2, 0x9f, 0x89, 0xfa, 0x3a, 0x31, 0xfe, + 0x1b, 0x00, 0x00, 0xff, 0xff, 0x21, 0xc3, 0x99, 0xa3, 0x15, 0x19, 0x00, 0x00, } diff --git a/proto/executor.proto b/proto/executor.proto index e2635d27..6051d720 100644 --- a/proto/executor.proto +++ b/proto/executor.proto @@ -76,7 +76,7 @@ message ExchangeSender { optional Executor child = 4; repeated FieldType types = 5; // partition keys' types repeated FieldType all_field_types = 6; - optional CompressionMode compression = 7; + optional CompressionMode compression = 7 [(gogoproto.nullable) = false]; } // ExchangeReceiver accept connection and receiver data from ExchangeSender.