diff --git a/pkg/kvrpcpb/kvrpcpb.pb.go b/pkg/kvrpcpb/kvrpcpb.pb.go index 8b92d3096..a3403a8a1 100644 --- a/pkg/kvrpcpb/kvrpcpb.pb.go +++ b/pkg/kvrpcpb/kvrpcpb.pb.go @@ -8287,6 +8287,426 @@ func (m *RawChecksumResponse) GetTotalBytes() uint64 { return 0 } +type CompactError struct { + // Types that are valid to be assigned to Error: + // *CompactError_ErrInvalidStartKey + // *CompactError_ErrPhysicalTableNotExist + // *CompactError_ErrCompactInProgress + // *CompactError_ErrTooManyPendingTasks + Error isCompactError_Error `protobuf_oneof:"error"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` +} + +func (m *CompactError) Reset() { *m = CompactError{} } +func (m *CompactError) String() string { return proto.CompactTextString(m) } +func (*CompactError) ProtoMessage() {} +func (*CompactError) Descriptor() ([]byte, []int) { + return fileDescriptor_1afe832be69693c7, []int{110} +} +func (m *CompactError) XXX_Unmarshal(b []byte) error { + return m.Unmarshal(b) +} +func (m *CompactError) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + if deterministic { + return xxx_messageInfo_CompactError.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 *CompactError) XXX_Merge(src proto.Message) { + xxx_messageInfo_CompactError.Merge(m, src) +} +func (m *CompactError) XXX_Size() int { + return m.Size() +} +func (m *CompactError) XXX_DiscardUnknown() { + xxx_messageInfo_CompactError.DiscardUnknown(m) +} + +var xxx_messageInfo_CompactError proto.InternalMessageInfo + +type isCompactError_Error interface { + isCompactError_Error() + MarshalTo([]byte) (int, error) + Size() int +} + +type CompactError_ErrInvalidStartKey struct { + ErrInvalidStartKey *CompactErrorInvalidStartKey `protobuf:"bytes,1,opt,name=err_invalid_start_key,json=errInvalidStartKey,proto3,oneof" json:"err_invalid_start_key,omitempty"` +} +type CompactError_ErrPhysicalTableNotExist struct { + ErrPhysicalTableNotExist *CompactErrorPhysicalTableNotExist `protobuf:"bytes,2,opt,name=err_physical_table_not_exist,json=errPhysicalTableNotExist,proto3,oneof" json:"err_physical_table_not_exist,omitempty"` +} +type CompactError_ErrCompactInProgress struct { + ErrCompactInProgress *CompactErrorCompactInProgress `protobuf:"bytes,3,opt,name=err_compact_in_progress,json=errCompactInProgress,proto3,oneof" json:"err_compact_in_progress,omitempty"` +} +type CompactError_ErrTooManyPendingTasks struct { + ErrTooManyPendingTasks *CompactErrorTooManyPendingTasks `protobuf:"bytes,4,opt,name=err_too_many_pending_tasks,json=errTooManyPendingTasks,proto3,oneof" json:"err_too_many_pending_tasks,omitempty"` +} + +func (*CompactError_ErrInvalidStartKey) isCompactError_Error() {} +func (*CompactError_ErrPhysicalTableNotExist) isCompactError_Error() {} +func (*CompactError_ErrCompactInProgress) isCompactError_Error() {} +func (*CompactError_ErrTooManyPendingTasks) isCompactError_Error() {} + +func (m *CompactError) GetError() isCompactError_Error { + if m != nil { + return m.Error + } + return nil +} + +func (m *CompactError) GetErrInvalidStartKey() *CompactErrorInvalidStartKey { + if x, ok := m.GetError().(*CompactError_ErrInvalidStartKey); ok { + return x.ErrInvalidStartKey + } + return nil +} + +func (m *CompactError) GetErrPhysicalTableNotExist() *CompactErrorPhysicalTableNotExist { + if x, ok := m.GetError().(*CompactError_ErrPhysicalTableNotExist); ok { + return x.ErrPhysicalTableNotExist + } + return nil +} + +func (m *CompactError) GetErrCompactInProgress() *CompactErrorCompactInProgress { + if x, ok := m.GetError().(*CompactError_ErrCompactInProgress); ok { + return x.ErrCompactInProgress + } + return nil +} + +func (m *CompactError) GetErrTooManyPendingTasks() *CompactErrorTooManyPendingTasks { + if x, ok := m.GetError().(*CompactError_ErrTooManyPendingTasks); ok { + return x.ErrTooManyPendingTasks + } + return nil +} + +// XXX_OneofWrappers is for the internal use of the proto package. +func (*CompactError) XXX_OneofWrappers() []interface{} { + return []interface{}{ + (*CompactError_ErrInvalidStartKey)(nil), + (*CompactError_ErrPhysicalTableNotExist)(nil), + (*CompactError_ErrCompactInProgress)(nil), + (*CompactError_ErrTooManyPendingTasks)(nil), + } +} + +type CompactErrorInvalidStartKey struct { + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` +} + +func (m *CompactErrorInvalidStartKey) Reset() { *m = CompactErrorInvalidStartKey{} } +func (m *CompactErrorInvalidStartKey) String() string { return proto.CompactTextString(m) } +func (*CompactErrorInvalidStartKey) ProtoMessage() {} +func (*CompactErrorInvalidStartKey) Descriptor() ([]byte, []int) { + return fileDescriptor_1afe832be69693c7, []int{111} +} +func (m *CompactErrorInvalidStartKey) XXX_Unmarshal(b []byte) error { + return m.Unmarshal(b) +} +func (m *CompactErrorInvalidStartKey) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + if deterministic { + return xxx_messageInfo_CompactErrorInvalidStartKey.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 *CompactErrorInvalidStartKey) XXX_Merge(src proto.Message) { + xxx_messageInfo_CompactErrorInvalidStartKey.Merge(m, src) +} +func (m *CompactErrorInvalidStartKey) XXX_Size() int { + return m.Size() +} +func (m *CompactErrorInvalidStartKey) XXX_DiscardUnknown() { + xxx_messageInfo_CompactErrorInvalidStartKey.DiscardUnknown(m) +} + +var xxx_messageInfo_CompactErrorInvalidStartKey proto.InternalMessageInfo + +type CompactErrorPhysicalTableNotExist struct { + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` +} + +func (m *CompactErrorPhysicalTableNotExist) Reset() { *m = CompactErrorPhysicalTableNotExist{} } +func (m *CompactErrorPhysicalTableNotExist) String() string { return proto.CompactTextString(m) } +func (*CompactErrorPhysicalTableNotExist) ProtoMessage() {} +func (*CompactErrorPhysicalTableNotExist) Descriptor() ([]byte, []int) { + return fileDescriptor_1afe832be69693c7, []int{112} +} +func (m *CompactErrorPhysicalTableNotExist) XXX_Unmarshal(b []byte) error { + return m.Unmarshal(b) +} +func (m *CompactErrorPhysicalTableNotExist) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + if deterministic { + return xxx_messageInfo_CompactErrorPhysicalTableNotExist.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 *CompactErrorPhysicalTableNotExist) XXX_Merge(src proto.Message) { + xxx_messageInfo_CompactErrorPhysicalTableNotExist.Merge(m, src) +} +func (m *CompactErrorPhysicalTableNotExist) XXX_Size() int { + return m.Size() +} +func (m *CompactErrorPhysicalTableNotExist) XXX_DiscardUnknown() { + xxx_messageInfo_CompactErrorPhysicalTableNotExist.DiscardUnknown(m) +} + +var xxx_messageInfo_CompactErrorPhysicalTableNotExist proto.InternalMessageInfo + +type CompactErrorCompactInProgress struct { + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` +} + +func (m *CompactErrorCompactInProgress) Reset() { *m = CompactErrorCompactInProgress{} } +func (m *CompactErrorCompactInProgress) String() string { return proto.CompactTextString(m) } +func (*CompactErrorCompactInProgress) ProtoMessage() {} +func (*CompactErrorCompactInProgress) Descriptor() ([]byte, []int) { + return fileDescriptor_1afe832be69693c7, []int{113} +} +func (m *CompactErrorCompactInProgress) XXX_Unmarshal(b []byte) error { + return m.Unmarshal(b) +} +func (m *CompactErrorCompactInProgress) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + if deterministic { + return xxx_messageInfo_CompactErrorCompactInProgress.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 *CompactErrorCompactInProgress) XXX_Merge(src proto.Message) { + xxx_messageInfo_CompactErrorCompactInProgress.Merge(m, src) +} +func (m *CompactErrorCompactInProgress) XXX_Size() int { + return m.Size() +} +func (m *CompactErrorCompactInProgress) XXX_DiscardUnknown() { + xxx_messageInfo_CompactErrorCompactInProgress.DiscardUnknown(m) +} + +var xxx_messageInfo_CompactErrorCompactInProgress proto.InternalMessageInfo + +type CompactErrorTooManyPendingTasks struct { + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` +} + +func (m *CompactErrorTooManyPendingTasks) Reset() { *m = CompactErrorTooManyPendingTasks{} } +func (m *CompactErrorTooManyPendingTasks) String() string { return proto.CompactTextString(m) } +func (*CompactErrorTooManyPendingTasks) ProtoMessage() {} +func (*CompactErrorTooManyPendingTasks) Descriptor() ([]byte, []int) { + return fileDescriptor_1afe832be69693c7, []int{114} +} +func (m *CompactErrorTooManyPendingTasks) XXX_Unmarshal(b []byte) error { + return m.Unmarshal(b) +} +func (m *CompactErrorTooManyPendingTasks) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + if deterministic { + return xxx_messageInfo_CompactErrorTooManyPendingTasks.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 *CompactErrorTooManyPendingTasks) XXX_Merge(src proto.Message) { + xxx_messageInfo_CompactErrorTooManyPendingTasks.Merge(m, src) +} +func (m *CompactErrorTooManyPendingTasks) XXX_Size() int { + return m.Size() +} +func (m *CompactErrorTooManyPendingTasks) XXX_DiscardUnknown() { + xxx_messageInfo_CompactErrorTooManyPendingTasks.DiscardUnknown(m) +} + +var xxx_messageInfo_CompactErrorTooManyPendingTasks proto.InternalMessageInfo + +type CompactRequest struct { + // If specified, the compaction will start from this start key. + // If unspecified, the compaction will start from beginning. + // NOTE 1: The start key should be never manually constructed. You should always use a key + // returned in CompactResponse. + // NOTE 2: the compaction range will be always restricted by physical_table_id. + StartKey []byte `protobuf:"bytes,1,opt,name=start_key,json=startKey,proto3" json:"start_key,omitempty"` + // The physical table that will be compacted. + // + // TODO: this is information that TiKV doesn't need to know. + // See https://github.com/pingcap/kvproto/issues/912 + PhysicalTableId int64 `protobuf:"varint,2,opt,name=physical_table_id,json=physicalTableId,proto3" json:"physical_table_id,omitempty"` + // The logical table id of the compaction. When receiving parallel requests with the same + // logical table id, err_compact_in_progress will be returned. + // + // TODO: this is information that TiKV doesn't need to know. + // See https://github.com/pingcap/kvproto/issues/912 + LogicalTableId int64 `protobuf:"varint,3,opt,name=logical_table_id,json=logicalTableId,proto3" json:"logical_table_id,omitempty"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` +} + +func (m *CompactRequest) Reset() { *m = CompactRequest{} } +func (m *CompactRequest) String() string { return proto.CompactTextString(m) } +func (*CompactRequest) ProtoMessage() {} +func (*CompactRequest) Descriptor() ([]byte, []int) { + return fileDescriptor_1afe832be69693c7, []int{115} +} +func (m *CompactRequest) XXX_Unmarshal(b []byte) error { + return m.Unmarshal(b) +} +func (m *CompactRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + if deterministic { + return xxx_messageInfo_CompactRequest.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 *CompactRequest) XXX_Merge(src proto.Message) { + xxx_messageInfo_CompactRequest.Merge(m, src) +} +func (m *CompactRequest) XXX_Size() int { + return m.Size() +} +func (m *CompactRequest) XXX_DiscardUnknown() { + xxx_messageInfo_CompactRequest.DiscardUnknown(m) +} + +var xxx_messageInfo_CompactRequest proto.InternalMessageInfo + +func (m *CompactRequest) GetStartKey() []byte { + if m != nil { + return m.StartKey + } + return nil +} + +func (m *CompactRequest) GetPhysicalTableId() int64 { + if m != nil { + return m.PhysicalTableId + } + return 0 +} + +func (m *CompactRequest) GetLogicalTableId() int64 { + if m != nil { + return m.LogicalTableId + } + return 0 +} + +type CompactResponse struct { + Error *CompactError `protobuf:"bytes,1,opt,name=error,proto3" json:"error,omitempty"` + // The compaction is done incrementally. If there are more data to compact, this field + // will be set. The client can request to compact more data according to the `compacted_end_key`. + HasRemaining bool `protobuf:"varint,2,opt,name=has_remaining,json=hasRemaining,proto3" json:"has_remaining,omitempty"` + CompactedStartKey []byte `protobuf:"bytes,3,opt,name=compacted_start_key,json=compactedStartKey,proto3" json:"compacted_start_key,omitempty"` + CompactedEndKey []byte `protobuf:"bytes,4,opt,name=compacted_end_key,json=compactedEndKey,proto3" json:"compacted_end_key,omitempty"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` +} + +func (m *CompactResponse) Reset() { *m = CompactResponse{} } +func (m *CompactResponse) String() string { return proto.CompactTextString(m) } +func (*CompactResponse) ProtoMessage() {} +func (*CompactResponse) Descriptor() ([]byte, []int) { + return fileDescriptor_1afe832be69693c7, []int{116} +} +func (m *CompactResponse) XXX_Unmarshal(b []byte) error { + return m.Unmarshal(b) +} +func (m *CompactResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + if deterministic { + return xxx_messageInfo_CompactResponse.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 *CompactResponse) XXX_Merge(src proto.Message) { + xxx_messageInfo_CompactResponse.Merge(m, src) +} +func (m *CompactResponse) XXX_Size() int { + return m.Size() +} +func (m *CompactResponse) XXX_DiscardUnknown() { + xxx_messageInfo_CompactResponse.DiscardUnknown(m) +} + +var xxx_messageInfo_CompactResponse proto.InternalMessageInfo + +func (m *CompactResponse) GetError() *CompactError { + if m != nil { + return m.Error + } + return nil +} + +func (m *CompactResponse) GetHasRemaining() bool { + if m != nil { + return m.HasRemaining + } + return false +} + +func (m *CompactResponse) GetCompactedStartKey() []byte { + if m != nil { + return m.CompactedStartKey + } + return nil +} + +func (m *CompactResponse) GetCompactedEndKey() []byte { + if m != nil { + return m.CompactedEndKey + } + return nil +} + func init() { proto.RegisterEnum("kvrpcpb.APIVersion", APIVersion_name, APIVersion_value) proto.RegisterEnum("kvrpcpb.CommandPri", CommandPri_name, CommandPri_value) @@ -8408,321 +8828,347 @@ func init() { proto.RegisterType((*RawCoprocessorResponse)(nil), "kvrpcpb.RawCoprocessorResponse") proto.RegisterType((*RawChecksumRequest)(nil), "kvrpcpb.RawChecksumRequest") proto.RegisterType((*RawChecksumResponse)(nil), "kvrpcpb.RawChecksumResponse") + proto.RegisterType((*CompactError)(nil), "kvrpcpb.CompactError") + proto.RegisterType((*CompactErrorInvalidStartKey)(nil), "kvrpcpb.CompactErrorInvalidStartKey") + proto.RegisterType((*CompactErrorPhysicalTableNotExist)(nil), "kvrpcpb.CompactErrorPhysicalTableNotExist") + proto.RegisterType((*CompactErrorCompactInProgress)(nil), "kvrpcpb.CompactErrorCompactInProgress") + proto.RegisterType((*CompactErrorTooManyPendingTasks)(nil), "kvrpcpb.CompactErrorTooManyPendingTasks") + proto.RegisterType((*CompactRequest)(nil), "kvrpcpb.CompactRequest") + proto.RegisterType((*CompactResponse)(nil), "kvrpcpb.CompactResponse") } func init() { proto.RegisterFile("kvrpcpb.proto", fileDescriptor_1afe832be69693c7) } var fileDescriptor_1afe832be69693c7 = []byte{ - // 4943 bytes of a gzipped FileDescriptorProto + // 5241 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xdc, 0x3c, 0x5d, 0x8f, 0x24, 0xc9, - 0x51, 0x5b, 0xfd, 0xdd, 0xd1, 0x3d, 0xdd, 0x35, 0x39, 0x33, 0x3b, 0xbd, 0xbb, 0x77, 0xb7, 0x73, - 0x05, 0x7b, 0x3b, 0x37, 0xbe, 0x9b, 0xf5, 0x8d, 0xcf, 0x87, 0x01, 0x0b, 0xdf, 0xee, 0xcc, 0xee, - 0xde, 0xdc, 0xce, 0xed, 0x8c, 0xaa, 0xdb, 0x7b, 0x9c, 0x84, 0x5d, 0xce, 0xad, 0xce, 0xee, 0x29, - 0x75, 0x75, 0x55, 0x5d, 0x55, 0x76, 0xef, 0xb4, 0x2d, 0x24, 0xcc, 0x97, 0x84, 0x04, 0x18, 0x8c, - 0xa5, 0xb3, 0x04, 0x42, 0xe2, 0xe1, 0x24, 0xe0, 0x8d, 0x37, 0x84, 0x04, 0x16, 0x12, 0x0f, 0xc6, - 0x12, 0xb2, 0x1f, 0x11, 0x3c, 0x00, 0xc7, 0x0b, 0xfc, 0x00, 0x5e, 0x78, 0x42, 0xf9, 0x55, 0x1f, - 0xdd, 0xbd, 0xb3, 0x73, 0xed, 0x99, 0xb5, 0xc5, 0xd3, 0x74, 0x46, 0x44, 0x65, 0x46, 0x44, 0x46, - 0x46, 0x46, 0x46, 0x46, 0x0e, 0x2c, 0x0d, 0xc6, 0x61, 0x60, 0x07, 0x8f, 0xb7, 0x83, 0xd0, 0xa7, - 0x3e, 0x2a, 0xcb, 0xe6, 0xd5, 0xfa, 0x90, 0x50, 0xac, 0xc0, 0x57, 0x97, 0x48, 0x18, 0xfa, 0x61, - 0xdc, 0x5c, 0xed, 0xfb, 0x7d, 0x9f, 0xff, 0xbc, 0xc5, 0x7e, 0x49, 0x68, 0x33, 0x1c, 0x45, 0x94, - 0xff, 0x94, 0x80, 0x46, 0x97, 0xe0, 0xae, 0xeb, 0xdb, 0x03, 0xd5, 0x0b, 0x0d, 0xb1, 0x4d, 0x54, - 0x2f, 0x46, 0x17, 0xe0, 0x3e, 0xa1, 0x26, 0xf9, 0x70, 0x44, 0x22, 0x8a, 0xb6, 0xa0, 0x6c, 0xfb, - 0x1e, 0x25, 0x27, 0xb4, 0xa5, 0x6d, 0x68, 0x9b, 0xb5, 0x1d, 0x7d, 0x5b, 0xb1, 0xb6, 0x2b, 0xe0, - 0xa6, 0x22, 0x40, 0x3a, 0xe4, 0x07, 0x64, 0xd2, 0xca, 0x6d, 0x68, 0x9b, 0x75, 0x93, 0xfd, 0x44, - 0x2d, 0x28, 0x8f, 0x49, 0x18, 0x39, 0xbe, 0xd7, 0xca, 0x6f, 0x68, 0x9b, 0x05, 0x53, 0x35, 0x8d, - 0x4f, 0x34, 0xa8, 0xf1, 0x61, 0xa2, 0xc0, 0xf7, 0x22, 0x82, 0xde, 0x80, 0x7a, 0x48, 0xfa, 0x8e, - 0xef, 0x59, 0x5c, 0x26, 0x39, 0x58, 0x63, 0x5b, 0x49, 0x78, 0x97, 0xfd, 0x35, 0x6b, 0x82, 0x86, - 0x37, 0xd0, 0x4d, 0x28, 0x0a, 0xda, 0x1c, 0xa7, 0x5d, 0x8e, 0x19, 0x7b, 0x40, 0x26, 0x82, 0x5c, - 0xe0, 0xd1, 0x2a, 0x14, 0xc7, 0xd8, 0x1d, 0x11, 0xce, 0x43, 0xdd, 0x14, 0x0d, 0x74, 0x0d, 0xaa, - 0x9e, 0x4f, 0xad, 0x9e, 0x3f, 0xf2, 0xba, 0xad, 0xc2, 0x86, 0xb6, 0x59, 0x31, 0x2b, 0x9e, 0x4f, - 0xef, 0xb1, 0x36, 0xfa, 0x25, 0x68, 0x92, 0x13, 0x62, 0x5b, 0x5d, 0x42, 0xb1, 0xe3, 0x46, 0xd6, - 0x78, 0xa7, 0x55, 0xe2, 0xa3, 0x5c, 0x8e, 0x47, 0xb9, 0x7b, 0x42, 0xec, 0x3d, 0x81, 0x7e, 0xb4, - 0x63, 0x2e, 0x91, 0x74, 0xf3, 0xdd, 0x42, 0xa5, 0xa8, 0x97, 0x8c, 0xff, 0xd1, 0xa0, 0xd6, 0xb6, - 0xb1, 0xb7, 0x88, 0x32, 0xaf, 0x41, 0x35, 0xa2, 0x38, 0xa4, 0x56, 0xa2, 0xd2, 0x0a, 0x07, 0x3c, - 0x20, 0x13, 0x26, 0x91, 0xeb, 0x0c, 0x1d, 0xca, 0x25, 0x5a, 0x32, 0x45, 0x23, 0xad, 0xed, 0x42, - 0x46, 0xdb, 0xe8, 0x0a, 0x54, 0x06, 0x64, 0x62, 0xf9, 0x9e, 0x3b, 0x69, 0x15, 0xb9, 0xa8, 0xe5, - 0x01, 0x99, 0x1c, 0x7a, 0x2e, 0x9f, 0xa2, 0x90, 0x30, 0x3a, 0xc2, 0x25, 0xac, 0x98, 0xaa, 0x89, - 0xd6, 0xa1, 0x4c, 0xbc, 0x2e, 0x1f, 0xbf, 0xcc, 0xc7, 0x2f, 0x11, 0xaf, 0xcb, 0x46, 0xbf, 0x0e, - 0xb5, 0x08, 0x0f, 0x03, 0x97, 0x58, 0x11, 0x25, 0x41, 0xab, 0xc2, 0x79, 0x00, 0x01, 0x6a, 0x53, - 0x12, 0x18, 0x7f, 0xa8, 0x41, 0x5d, 0xc8, 0xbd, 0xf8, 0xec, 0xde, 0x80, 0x62, 0x80, 0x9d, 0x30, - 0x6a, 0xe5, 0x36, 0xf2, 0x9b, 0xb5, 0x9d, 0x66, 0x32, 0xbb, 0xe3, 0x23, 0xec, 0x84, 0xa6, 0xc0, - 0x26, 0x46, 0x90, 0x3f, 0xdd, 0x08, 0x8c, 0xff, 0x2a, 0x40, 0xf3, 0x28, 0x24, 0x4f, 0x42, 0x87, - 0x92, 0x45, 0xe6, 0xe3, 0x16, 0x54, 0x87, 0x23, 0x8a, 0xa9, 0xe3, 0x7b, 0x8a, 0xa7, 0x64, 0xb0, - 0xf7, 0x24, 0xc6, 0x4c, 0x68, 0xd0, 0xcb, 0x50, 0x0f, 0x42, 0x67, 0x88, 0xc3, 0x89, 0xc5, 0x16, - 0x9b, 0x34, 0xbe, 0x9a, 0x84, 0x1d, 0xf8, 0xf6, 0x00, 0xfd, 0x0c, 0x2c, 0x89, 0x39, 0xce, 0x4e, - 0x5b, 0x9d, 0x03, 0x1f, 0x25, 0x73, 0xc7, 0xbe, 0xb7, 0x28, 0x75, 0xf9, 0xdc, 0x15, 0xcc, 0x32, - 0x6b, 0x77, 0xa8, 0x8b, 0x76, 0x60, 0x2d, 0x1a, 0x38, 0x81, 0x65, 0xfb, 0x5e, 0x44, 0x43, 0xec, - 0x78, 0xd4, 0xb2, 0x8f, 0x89, 0x3d, 0x90, 0x33, 0xb9, 0xc2, 0x90, 0xbb, 0x31, 0x6e, 0x97, 0xa1, - 0xd0, 0x36, 0xac, 0x38, 0x91, 0x15, 0x90, 0x28, 0x72, 0x86, 0x4e, 0x44, 0x1d, 0x5b, 0x70, 0x57, - 0xde, 0xc8, 0x6f, 0x56, 0xcc, 0x65, 0x27, 0x3a, 0x4a, 0x30, 0x9c, 0xc7, 0x2b, 0x50, 0xa1, 0x27, - 0x9e, 0x15, 0x39, 0x5f, 0x27, 0x7c, 0xa6, 0x0b, 0x66, 0x99, 0x9e, 0x78, 0x6d, 0xe7, 0xeb, 0x04, - 0x19, 0xb0, 0xd4, 0xf3, 0x43, 0x6b, 0x14, 0x74, 0x31, 0x25, 0x16, 0x8d, 0x5a, 0x55, 0x8e, 0xaf, - 0xf5, 0xfc, 0xf0, 0xcb, 0x1c, 0xd6, 0x89, 0x18, 0xcd, 0xd0, 0xf1, 0x2c, 0xdb, 0x1f, 0x0e, 0x1d, - 0xca, 0x68, 0x40, 0xd0, 0x0c, 0x1d, 0x6f, 0x97, 0xc3, 0x3a, 0x11, 0xda, 0x04, 0x7d, 0x14, 0x11, - 0x0b, 0x47, 0x13, 0xcf, 0x96, 0x94, 0xad, 0x1a, 0x97, 0xa0, 0x31, 0x8a, 0xc8, 0x6d, 0x06, 0x16, - 0xb4, 0x68, 0x03, 0x6a, 0x11, 0xb1, 0x7d, 0xaf, 0x8b, 0x43, 0x87, 0x44, 0xad, 0xfa, 0x46, 0x9e, - 0xa9, 0x34, 0x05, 0x42, 0x2f, 0x00, 0xd0, 0x90, 0x59, 0x3a, 0xb1, 0x02, 0xbb, 0xb5, 0x24, 0x96, - 0x35, 0x0d, 0x27, 0x87, 0x1e, 0x39, 0xb2, 0x39, 0x37, 0xf8, 0x24, 0xc5, 0x4d, 0x43, 0x72, 0x83, - 0x4f, 0x62, 0x6e, 0xde, 0x86, 0x26, 0x8e, 0x22, 0x12, 0xb2, 0x59, 0xb4, 0x5c, 0x32, 0x26, 0x6e, - 0xab, 0xb9, 0xa1, 0x6d, 0x36, 0x76, 0xd6, 0xe3, 0xe9, 0xbe, 0xad, 0xf0, 0x07, 0x0c, 0x6d, 0x36, - 0x70, 0xa6, 0x6d, 0xfc, 0xad, 0x06, 0x7a, 0x62, 0x6a, 0x8b, 0x2f, 0x81, 0x57, 0xa1, 0xc4, 0xb1, - 0xb3, 0xf6, 0x16, 0x1b, 0xb7, 0x24, 0x98, 0x55, 0x73, 0x7e, 0x56, 0xcd, 0x37, 0x41, 0x17, 0x6a, - 0x49, 0x91, 0x09, 0x83, 0x5b, 0xf2, 0x99, 0x76, 0x14, 0xa1, 0xf1, 0xc3, 0x3c, 0x5c, 0x9e, 0x32, - 0x83, 0xff, 0x2f, 0x2b, 0x66, 0xc6, 0x64, 0x4b, 0x73, 0x4d, 0xd6, 0x89, 0xac, 0x9e, 0x13, 0x46, - 0x54, 0xad, 0x0d, 0x66, 0x45, 0x35, 0x27, 0xba, 0xc7, 0x60, 0x9c, 0x8f, 0x97, 0xa1, 0xfe, 0x04, - 0x33, 0x15, 0x3a, 0x43, 0xe2, 0x8f, 0x28, 0x5f, 0x19, 0x79, 0xb3, 0xc6, 0x60, 0x1d, 0x01, 0x42, - 0x2d, 0x28, 0xf6, 0xfc, 0xd0, 0x26, 0x7c, 0x55, 0x54, 0xee, 0xe4, 0x5a, 0x9a, 0x29, 0x00, 0x4c, - 0x88, 0x90, 0xd0, 0x51, 0xe8, 0x59, 0x7c, 0x27, 0x12, 0x6b, 0xa2, 0x62, 0xd6, 0x05, 0xf0, 0x11, - 0x87, 0xcd, 0xce, 0x68, 0x6d, 0xde, 0x8c, 0x36, 0xf9, 0x7a, 0xb7, 0xc8, 0x89, 0x13, 0x51, 0xe2, - 0xd9, 0xa4, 0x55, 0x17, 0xeb, 0x86, 0x83, 0xef, 0x2a, 0xa8, 0xf1, 0xdf, 0x1a, 0xac, 0xcf, 0xcc, - 0xe8, 0x73, 0x31, 0xcc, 0xeb, 0x50, 0x9d, 0x32, 0x4a, 0xae, 0x89, 0x8a, 0xad, 0x64, 0x68, 0xa9, - 0xcd, 0x99, 0xcd, 0x64, 0x5d, 0xa8, 0x49, 0x6c, 0xd0, 0x97, 0xa1, 0x24, 0xf5, 0x53, 0xe4, 0xeb, - 0x5c, 0xb6, 0xd0, 0x8b, 0x00, 0xf1, 0xc6, 0xcd, 0x26, 0x90, 0x39, 0xae, 0xaa, 0xda, 0xb9, 0x23, - 0xe3, 0x63, 0x0d, 0xae, 0xa6, 0x64, 0x35, 0x7d, 0xd7, 0x7d, 0x8c, 0x17, 0xb3, 0xe0, 0x19, 0x6b, - 0xcb, 0xcd, 0xb1, 0xb6, 0x19, 0x93, 0xca, 0xcf, 0x9a, 0x14, 0x82, 0xc2, 0x80, 0x4c, 0xd8, 0x72, - 0x63, 0x82, 0xf0, 0xdf, 0xc6, 0x37, 0xe0, 0xda, 0x5c, 0x36, 0x9f, 0xc7, 0xb4, 0x18, 0x7f, 0xa5, - 0xc1, 0x4a, 0xe7, 0xc4, 0x7b, 0x87, 0xe0, 0x90, 0xde, 0x21, 0x78, 0xa1, 0x70, 0x6f, 0x7a, 0xb9, - 0xe6, 0xce, 0xb0, 0x5c, 0xf3, 0x73, 0x14, 0xf8, 0x0a, 0x34, 0x71, 0x77, 0xec, 0x44, 0xc4, 0x8a, - 0x57, 0xad, 0x74, 0x4b, 0x02, 0x7c, 0x20, 0xd6, 0xae, 0xf1, 0x7b, 0x1a, 0xac, 0x66, 0x79, 0x7e, - 0x0e, 0xb1, 0x63, 0xda, 0x97, 0xe4, 0x33, 0xbe, 0xc4, 0xf8, 0x8f, 0x1c, 0xac, 0xf1, 0x3d, 0xb5, - 0x73, 0xe2, 0xb5, 0x29, 0xa6, 0xa3, 0x68, 0x11, 0x2d, 0x5e, 0x07, 0xa5, 0xb1, 0x54, 0xa4, 0x07, - 0x12, 0xc4, 0xa2, 0xad, 0x75, 0x28, 0x0b, 0x0e, 0x94, 0x65, 0x95, 0x38, 0x03, 0x11, 0xd3, 0x9b, - 0x8d, 0x5d, 0x97, 0x84, 0x96, 0xd0, 0x71, 0xe2, 0xce, 0x05, 0xb8, 0xcd, 0xa0, 0x1d, 0xbe, 0x5e, - 0xec, 0x51, 0x18, 0x12, 0x8f, 0x93, 0x08, 0x87, 0x58, 0x95, 0x90, 0x4e, 0x84, 0xde, 0x80, 0xb5, - 0x50, 0x1a, 0x9f, 0xe5, 0xf4, 0x2c, 0xb6, 0xb4, 0xb8, 0x3b, 0x91, 0x41, 0x04, 0x52, 0xc8, 0xfd, - 0xde, 0x43, 0x9f, 0x72, 0x97, 0x82, 0xb6, 0x60, 0x99, 0x7b, 0x32, 0x2b, 0xbd, 0x63, 0x0b, 0x2f, - 0xd9, 0xe4, 0x88, 0x76, 0xb2, 0x65, 0x7f, 0x11, 0xae, 0x86, 0x24, 0xf2, 0xdd, 0xb1, 0xe3, 0xf5, - 0x67, 0xc3, 0x8e, 0x0a, 0xff, 0xa8, 0x15, 0x53, 0x4c, 0x39, 0x29, 0xe3, 0x5b, 0x39, 0xb8, 0x3c, - 0xad, 0xe3, 0x9f, 0xe8, 0xac, 0xa3, 0x1b, 0xd0, 0x90, 0x0e, 0x2d, 0xbb, 0x05, 0x2d, 0x09, 0xa8, - 0x32, 0xea, 0x9b, 0x50, 0xc2, 0x36, 0xdb, 0xd6, 0xb8, 0xc2, 0x1b, 0xa9, 0xf8, 0xf5, 0x36, 0x07, - 0x9b, 0x12, 0x8d, 0xb6, 0xa1, 0xca, 0x87, 0x72, 0xbc, 0x9e, 0x2f, 0xcf, 0x18, 0x09, 0x5f, 0x4c, - 0x07, 0xfb, 0x5e, 0xcf, 0x37, 0x39, 0x3b, 0xec, 0x97, 0xf1, 0x4d, 0x0d, 0xae, 0x72, 0x8d, 0xb4, - 0x65, 0xd4, 0xc3, 0x57, 0xda, 0x42, 0xa6, 0xa7, 0xbc, 0x52, 0x2e, 0xf1, 0x4a, 0x67, 0x5a, 0xb1, - 0xc6, 0xf7, 0x34, 0xb8, 0x36, 0x97, 0x87, 0xe7, 0x30, 0x35, 0x37, 0xa1, 0xc8, 0x74, 0xc1, 0x16, - 0x43, 0x7e, 0xbe, 0xae, 0x04, 0x9e, 0x1d, 0xa0, 0xa6, 0xe3, 0x9c, 0x78, 0xd7, 0x31, 0xfe, 0x42, - 0x83, 0x25, 0x61, 0xa0, 0x17, 0xb6, 0x2f, 0x28, 0xed, 0xe6, 0x53, 0xda, 0x3d, 0x9b, 0xf1, 0x88, - 0xd3, 0xa3, 0x59, 0x7a, 0xec, 0x78, 0xae, 0xdf, 0x37, 0xfe, 0x48, 0x83, 0x86, 0xe2, 0xf5, 0x39, - 0x28, 0x78, 0x96, 0xc7, 0xfc, 0x1c, 0x1e, 0x8d, 0x3e, 0x2c, 0xed, 0x0f, 0x03, 0x3f, 0x8c, 0x15, - 0x98, 0x09, 0xf7, 0xb4, 0x33, 0x84, 0x7b, 0xb3, 0x03, 0xe5, 0xe6, 0x0d, 0xf4, 0x01, 0x34, 0xd4, - 0x40, 0x8b, 0x4b, 0xbf, 0x9a, 0x96, 0xbe, 0xaa, 0xce, 0x84, 0xdf, 0x66, 0x9a, 0x75, 0x09, 0xf6, - 0x46, 0xc1, 0xf9, 0xe4, 0x3b, 0xce, 0xb4, 0xdf, 0x65, 0xfd, 0x71, 0x61, 0xca, 0x1f, 0x1b, 0xdf, - 0xd1, 0xa0, 0x19, 0x33, 0xf5, 0xd3, 0x33, 0xdf, 0x03, 0x68, 0xde, 0xc1, 0xd4, 0x3e, 0x5e, 0x30, - 0x37, 0x34, 0xcf, 0xd7, 0x3c, 0x3d, 0x3b, 0xf4, 0xaf, 0x1a, 0xe8, 0xc9, 0x68, 0x17, 0x9e, 0x44, - 0x98, 0x93, 0xed, 0x29, 0x7c, 0x8a, 0x6c, 0x4f, 0xa2, 0xeb, 0xe2, 0xe9, 0xba, 0x7e, 0xb7, 0x50, - 0xc9, 0xeb, 0x05, 0xe3, 0x1b, 0xb0, 0xca, 0x85, 0xbb, 0xf0, 0xd0, 0x74, 0x8e, 0x0b, 0x32, 0x22, - 0x58, 0x9b, 0x1a, 0xfc, 0xe2, 0x6d, 0xcc, 0xf8, 0x4b, 0x0d, 0x9a, 0x6d, 0x1b, 0x7b, 0x8b, 0x1e, - 0x25, 0xaf, 0x03, 0x3b, 0xa2, 0x4f, 0xc9, 0x0a, 0x43, 0x7c, 0xa2, 0x24, 0xcd, 0x64, 0xcb, 0xf2, - 0x4f, 0xcb, 0x96, 0x15, 0xd2, 0xd9, 0xb2, 0x54, 0x7a, 0xab, 0x98, 0x4e, 0x6f, 0x19, 0x1f, 0x69, - 0xa0, 0x27, 0xcc, 0xfe, 0x14, 0x6d, 0x69, 0xc6, 0x0f, 0x35, 0x40, 0x26, 0x0f, 0x95, 0xc8, 0xa2, - 0x9a, 0x3c, 0x93, 0xdd, 0x9c, 0xcd, 0x25, 0xa0, 0xd7, 0xa1, 0x4a, 0x4f, 0x3c, 0x1e, 0xb9, 0x88, - 0xa3, 0x4d, 0x7a, 0xe4, 0xce, 0x89, 0x27, 0x22, 0x17, 0x2a, 0x7e, 0x24, 0x87, 0xa0, 0x62, 0xca, - 0x1a, 0x3f, 0x84, 0x95, 0x8c, 0x40, 0xcf, 0xc1, 0x16, 0x1f, 0x41, 0xf5, 0xfe, 0xee, 0x22, 0xaa, - 0x7b, 0x11, 0x20, 0xc2, 0x3d, 0x62, 0x05, 0xbe, 0xe3, 0x51, 0xa9, 0xb7, 0x2a, 0x83, 0x1c, 0x31, - 0x80, 0x71, 0x0c, 0xc0, 0xfa, 0x7d, 0x0e, 0x12, 0x7c, 0xa4, 0x01, 0xda, 0x23, 0x2e, 0xa1, 0xc4, - 0xc4, 0x5e, 0x9f, 0x9c, 0x7b, 0x76, 0x39, 0xb5, 0x32, 0xf2, 0xd3, 0x89, 0x5f, 0xcf, 0xa7, 0x4e, - 0x4f, 0x66, 0x92, 0x45, 0xd2, 0x1c, 0x04, 0xe8, 0xd0, 0x73, 0x27, 0xc6, 0x57, 0x61, 0x25, 0xc3, - 0xd8, 0x79, 0x6f, 0xd8, 0x5f, 0x81, 0x25, 0x13, 0x3f, 0x39, 0xb7, 0xeb, 0x89, 0x06, 0xe4, 0xec, - 0x1e, 0x97, 0xb1, 0x6a, 0xe6, 0xec, 0x9e, 0xf1, 0xbb, 0x1a, 0x34, 0x54, 0xff, 0xe7, 0xcc, 0xfa, - 0x02, 0x97, 0x10, 0x46, 0x17, 0x90, 0x89, 0x9f, 0x9c, 0xf7, 0xae, 0x3b, 0x2d, 0xb4, 0x0f, 0x2b, - 0x99, 0x51, 0x2e, 0x7a, 0xb7, 0x35, 0xfe, 0x54, 0xe3, 0xb3, 0x78, 0x34, 0x3a, 0xa7, 0x59, 0x9c, - 0xaf, 0x59, 0x21, 0x66, 0x41, 0x89, 0xc9, 0xbe, 0x4b, 0xf2, 0x81, 0xec, 0x27, 0x33, 0xf3, 0x9e, - 0x1f, 0x5a, 0x36, 0x8e, 0xe4, 0x51, 0xb7, 0xd4, 0xf3, 0xc3, 0x5d, 0x1c, 0xb1, 0x88, 0x53, 0xf1, - 0x77, 0xde, 0x06, 0xfc, 0x37, 0x5a, 0x32, 0xa7, 0x0b, 0x2a, 0xe0, 0x8c, 0x31, 0xcd, 0xd4, 0x34, - 0xa3, 0x55, 0x21, 0x7f, 0x21, 0x4e, 0xc1, 0x4d, 0xeb, 0xa0, 0x98, 0xd6, 0x01, 0xb3, 0x1c, 0x4a, - 0x5d, 0x91, 0x5e, 0x2b, 0x98, 0xfc, 0x37, 0x5b, 0xdd, 0x19, 0xde, 0xcf, 0x5b, 0x39, 0x13, 0xd0, - 0x4d, 0xfc, 0x44, 0x3a, 0x90, 0x8b, 0x58, 0xe0, 0x69, 0x71, 0x0b, 0x99, 0x29, 0xff, 0x15, 0x58, - 0x4e, 0x0d, 0x7d, 0xde, 0x82, 0xfd, 0x9a, 0x06, 0x6b, 0x4a, 0x73, 0x8b, 0x8b, 0x77, 0x86, 0xc5, - 0xfc, 0x74, 0x01, 0x31, 0x5c, 0x9e, 0xe6, 0xe0, 0xbc, 0xa5, 0xfc, 0x27, 0xe1, 0x3d, 0x9f, 0xe3, - 0x85, 0x67, 0xfa, 0x5a, 0xb3, 0x90, 0xbd, 0xd6, 0x14, 0x8a, 0x29, 0xc6, 0x8a, 0xf9, 0xf4, 0xd7, - 0x9c, 0x46, 0x1f, 0x9a, 0xb1, 0x38, 0x8b, 0xeb, 0xea, 0x65, 0xc8, 0x0f, 0xc6, 0x4f, 0x5d, 0xac, - 0x0c, 0x67, 0xfc, 0x8e, 0x30, 0x8f, 0x9f, 0xc8, 0x96, 0x3e, 0xe5, 0x26, 0xa5, 0x9d, 0x5c, 0xe8, - 0x26, 0xfe, 0x23, 0x2d, 0xf1, 0x23, 0x8b, 0x1a, 0xcb, 0xab, 0x50, 0x0a, 0x19, 0x77, 0x73, 0x53, - 0xdd, 0x82, 0x6f, 0x49, 0xc0, 0xc2, 0x36, 0x82, 0xed, 0x63, 0x2b, 0x6d, 0x3f, 0x55, 0x06, 0x39, - 0x38, 0x37, 0x1b, 0x32, 0x5c, 0x58, 0xcd, 0x4a, 0x74, 0xa1, 0xf6, 0xf2, 0xab, 0x70, 0xe5, 0xcb, - 0x1e, 0x0b, 0x3c, 0xf7, 0x48, 0x44, 0x43, 0x7f, 0xf2, 0x7c, 0x4d, 0xc6, 0x20, 0x70, 0x75, 0xde, - 0xf0, 0xe7, 0x6d, 0x26, 0x5f, 0x83, 0x6b, 0x26, 0xe9, 0x3b, 0x11, 0x25, 0x21, 0x3b, 0x1b, 0x1c, - 0x3e, 0x8e, 0x48, 0x38, 0x26, 0xe1, 0x22, 0x72, 0xae, 0x41, 0x89, 0x1d, 0x1f, 0x69, 0x24, 0xa3, - 0xf6, 0xe2, 0x10, 0x9f, 0x74, 0x22, 0xe3, 0x4d, 0x78, 0x61, 0xfe, 0x08, 0x52, 0x94, 0x98, 0x2f, - 0x2d, 0x1b, 0x83, 0xb6, 0x78, 0xee, 0xf3, 0x82, 0x98, 0x1a, 0xc1, 0x95, 0x39, 0xdd, 0x9f, 0xc6, - 0x11, 0x33, 0x61, 0x27, 0xb2, 0x6c, 0x97, 0x60, 0x71, 0x9c, 0xab, 0x98, 0x65, 0x27, 0xe2, 0x29, - 0xa4, 0xb3, 0x1f, 0x2d, 0xbf, 0x0a, 0x57, 0x4c, 0x32, 0xf4, 0xc5, 0x39, 0xec, 0x02, 0xc4, 0xda, - 0x81, 0xab, 0xf3, 0xfa, 0x3f, 0x55, 0xd3, 0xdf, 0xd2, 0x60, 0xfd, 0xe8, 0x78, 0x12, 0x39, 0x36, - 0x76, 0x7f, 0x9c, 0xec, 0xc1, 0x7c, 0x96, 0x16, 0xc8, 0x19, 0x18, 0x1f, 0x40, 0x6b, 0x96, 0xa1, - 0x53, 0xe7, 0x26, 0x9e, 0x80, 0xdc, 0x33, 0x26, 0xe0, 0x4f, 0x34, 0x40, 0xed, 0xc0, 0x75, 0xa8, - 0xc9, 0x57, 0xc6, 0x62, 0x59, 0x92, 0x6a, 0xc4, 0x7a, 0x48, 0x96, 0xb3, 0xb8, 0x6b, 0xe5, 0x40, - 0x26, 0x14, 0x3b, 0xc1, 0x2a, 0x02, 0x95, 0x15, 0xaa, 0x2a, 0x6c, 0x84, 0xae, 0x42, 0xd5, 0x89, - 0xac, 0x10, 0x3f, 0xb1, 0x06, 0x63, 0xe5, 0x0b, 0x9d, 0xc8, 0xc4, 0x4f, 0x1e, 0x8c, 0x8d, 0x7f, - 0xd0, 0x60, 0x25, 0xc3, 0xde, 0xe2, 0xcb, 0xfd, 0x15, 0x28, 0xb8, 0xa4, 0x47, 0xe5, 0x31, 0xb7, - 0xb1, 0x2d, 0x4b, 0xda, 0x44, 0xc7, 0x9c, 0x63, 0x8e, 0x47, 0x9b, 0x50, 0x0c, 0x9d, 0xfe, 0x31, - 0x95, 0xa5, 0x3d, 0xf3, 0x08, 0x05, 0x01, 0xda, 0x64, 0x8e, 0xb9, 0xcf, 0x13, 0xcf, 0x22, 0x0d, - 0x31, 0x45, 0x6b, 0x2a, 0xb4, 0xf1, 0x9b, 0x1a, 0xe8, 0x26, 0xc1, 0xdd, 0x7d, 0xaf, 0x4b, 0x4e, - 0x16, 0xd1, 0xf1, 0x15, 0xa8, 0xc4, 0xb7, 0x6d, 0xc2, 0x9a, 0xca, 0x91, 0xbc, 0x67, 0x4b, 0xf6, - 0xa4, 0xfc, 0x33, 0xf6, 0x24, 0xe3, 0x0f, 0x34, 0x58, 0x4e, 0xb1, 0xb1, 0xb8, 0x2e, 0x5f, 0x04, - 0x08, 0x09, 0xee, 0x5a, 0x0e, 0xeb, 0x48, 0xe5, 0x24, 0x42, 0xd5, 0x33, 0x63, 0x89, 0x59, 0x17, - 0xe9, 0xce, 0x94, 0x47, 0xc5, 0xe6, 0x27, 0x09, 0x8c, 0x36, 0xac, 0xbc, 0x37, 0xb6, 0xed, 0xfb, - 0x84, 0xde, 0x99, 0x30, 0x7e, 0xcf, 0x23, 0xfe, 0x36, 0x7e, 0x5b, 0x83, 0xd5, 0x6c, 0xaf, 0xe7, - 0x7d, 0xac, 0xbe, 0x01, 0x05, 0x7e, 0x73, 0x36, 0x2d, 0x1f, 0x1b, 0x95, 0xcb, 0xc7, 0xd1, 0xc6, - 0xd7, 0x60, 0x3d, 0xe6, 0x43, 0xde, 0x8b, 0x9e, 0xef, 0xec, 0xb3, 0xf5, 0xdb, 0x9a, 0x1d, 0xe2, - 0xbc, 0xc5, 0x95, 0x2a, 0xce, 0x27, 0x47, 0x1c, 0xa5, 0x80, 0xc2, 0xe9, 0x0a, 0xf8, 0xbb, 0x32, - 0x94, 0x77, 0x93, 0x6d, 0x5f, 0x72, 0xe3, 0x74, 0x39, 0x2b, 0x05, 0xb3, 0x22, 0x00, 0xfb, 0x5d, - 0xf4, 0x56, 0xc2, 0x6a, 0xe0, 0xdb, 0xc7, 0x72, 0x95, 0xae, 0x64, 0x17, 0xd4, 0x5d, 0x86, 0x8a, - 0xf9, 0x65, 0x0d, 0xb4, 0x01, 0x85, 0x80, 0x10, 0x55, 0x87, 0x57, 0x57, 0xf4, 0x47, 0x84, 0x84, - 0x26, 0xc7, 0xf0, 0x23, 0x25, 0x09, 0x87, 0xf2, 0x08, 0xce, 0x7f, 0xa3, 0x5b, 0x50, 0x09, 0x42, - 0xc7, 0x0f, 0x1d, 0x3a, 0xe1, 0x31, 0x55, 0x63, 0x67, 0x25, 0xa5, 0xfd, 0xe1, 0x10, 0x7b, 0xdd, - 0xa3, 0xd0, 0x31, 0x63, 0x22, 0xf4, 0x36, 0x34, 0x9d, 0xc8, 0x77, 0x71, 0xaa, 0x3a, 0xab, 0x3c, - 0x55, 0x9d, 0xb5, 0xaf, 0xf0, 0xb2, 0x3a, 0xcb, 0xc9, 0xb4, 0xd1, 0xcf, 0x42, 0x83, 0xa7, 0x5c, - 0x1c, 0xd7, 0xb5, 0x6c, 0x6c, 0x1f, 0x13, 0x79, 0x09, 0x5d, 0xf7, 0x7c, 0x7a, 0xcf, 0x71, 0xdd, - 0x5d, 0x06, 0xe3, 0x33, 0x3d, 0xf1, 0x6c, 0xcb, 0xf5, 0xfb, 0xa2, 0x80, 0xc7, 0x2c, 0xb3, 0xf6, - 0x81, 0xdf, 0x47, 0x9b, 0xa0, 0x87, 0xc4, 0xf6, 0xc3, 0x2e, 0xaf, 0xfe, 0xb1, 0x22, 0x8a, 0xa9, - 0xac, 0xe0, 0x69, 0x08, 0x78, 0xc7, 0x19, 0x92, 0x36, 0xc5, 0x34, 0x45, 0x19, 0xd9, 0xd8, 0x13, - 0x94, 0xb5, 0x34, 0x25, 0xdb, 0x44, 0x38, 0xe5, 0xcb, 0x4c, 0xeb, 0x81, 0xeb, 0xd8, 0xd8, 0x62, - 0xab, 0x57, 0x96, 0xf1, 0xd4, 0x24, 0x8c, 0xb9, 0x0a, 0x74, 0x03, 0x1a, 0xe2, 0x9a, 0x9c, 0x74, - 0x2d, 0xb1, 0xa5, 0x2c, 0xf1, 0xb3, 0xf9, 0x92, 0x82, 0xf2, 0x3b, 0x58, 0xf4, 0xf3, 0x70, 0x85, - 0x6d, 0x76, 0xe4, 0x84, 0xd8, 0x23, 0xae, 0xa4, 0xee, 0x28, 0x14, 0xda, 0x1a, 0xaa, 0x72, 0xb7, - 0xcb, 0x43, 0x7c, 0x72, 0x57, 0xe1, 0xf7, 0x24, 0xfa, 0x3d, 0x7e, 0xf7, 0x8b, 0x83, 0xc0, 0x75, - 0x88, 0xf2, 0x27, 0x4d, 0x91, 0x1b, 0x96, 0x40, 0xe1, 0x52, 0xd6, 0xa1, 0x4c, 0x71, 0x34, 0x60, - 0xa6, 0xa3, 0x8b, 0x72, 0x04, 0xd6, 0xdc, 0xef, 0xf2, 0xcd, 0x85, 0x62, 0x97, 0x08, 0x01, 0x96, - 0xb9, 0x00, 0x55, 0x0e, 0xe1, 0xec, 0xbf, 0x06, 0x88, 0x31, 0x3a, 0x0a, 0x6d, 0x62, 0xf5, 0x43, - 0x7f, 0x14, 0x58, 0x14, 0xf7, 0x5b, 0x88, 0x1b, 0xb2, 0xae, 0x30, 0xf7, 0x19, 0xa2, 0x83, 0xfb, - 0xe8, 0x0b, 0xb0, 0xd4, 0x75, 0xa2, 0x81, 0xd5, 0x1b, 0xb9, 0xae, 0xe5, 0x07, 0xb4, 0xb5, 0xc2, - 0x27, 0x79, 0x35, 0x9e, 0xe4, 0x3d, 0x27, 0x1a, 0xdc, 0x1b, 0xb9, 0xee, 0x61, 0x40, 0xcd, 0x5a, - 0x37, 0x69, 0x30, 0x9d, 0xb3, 0x4d, 0x8c, 0xd0, 0x70, 0x62, 0x85, 0x62, 0x89, 0xb7, 0x56, 0x85, - 0xce, 0x9d, 0xc8, 0x64, 0x60, 0xb5, 0xf0, 0xdf, 0x84, 0x1a, 0x0e, 0x9c, 0x38, 0xc5, 0xbd, 0x36, - 0x65, 0x7e, 0xb7, 0x8f, 0xf6, 0x65, 0xa2, 0xdb, 0x04, 0x1c, 0x38, 0xc9, 0xc5, 0x7e, 0x53, 0x64, - 0xc1, 0x69, 0x3c, 0x0f, 0x97, 0xf9, 0x3c, 0x34, 0x62, 0xb0, 0x98, 0x88, 0x5f, 0x00, 0x51, 0x58, - 0x6d, 0x29, 0xef, 0xb2, 0xce, 0x57, 0xc6, 0xda, 0xb6, 0x2a, 0xb7, 0xee, 0xb0, 0xbf, 0xca, 0xc5, - 0xd4, 0x69, 0xaa, 0xf5, 0x6e, 0xa1, 0x52, 0xd0, 0x8b, 0x6c, 0xfa, 0x71, 0xd7, 0xfa, 0x70, 0xe4, - 0x87, 0xa3, 0xa1, 0xf1, 0x6f, 0x39, 0xa8, 0x28, 0xa7, 0x3d, 0x53, 0x7a, 0xa3, 0xcd, 0x96, 0xde, - 0xbc, 0x0c, 0x75, 0x5e, 0x57, 0x90, 0xcd, 0xf3, 0xd7, 0x18, 0x4c, 0x89, 0x32, 0xeb, 0x4c, 0xd2, - 0x75, 0x0f, 0x85, 0x6c, 0xdd, 0x43, 0xba, 0x0e, 0xb4, 0x98, 0xad, 0x03, 0xdd, 0x94, 0x25, 0x0c, - 0x74, 0x12, 0x10, 0xb9, 0x8a, 0x6b, 0xb1, 0x1a, 0x0f, 0x03, 0x51, 0xbc, 0xd0, 0x99, 0x04, 0x04, - 0x7d, 0x06, 0x10, 0xa7, 0xcc, 0x16, 0x4c, 0x95, 0x79, 0x77, 0x4d, 0x86, 0xb9, 0x97, 0x2a, 0x9a, - 0x9a, 0x57, 0x16, 0x5a, 0x99, 0x5b, 0x16, 0x3a, 0x53, 0x2b, 0x57, 0x9d, 0xad, 0x95, 0x9b, 0x2a, - 0x1d, 0x85, 0x99, 0xd2, 0x51, 0xe3, 0xa3, 0x02, 0x54, 0x54, 0xaa, 0x3d, 0xb5, 0x73, 0x6a, 0xcf, - 0xd8, 0x39, 0xd1, 0x0b, 0xcc, 0x9d, 0xd2, 0x70, 0x82, 0x1f, 0xbb, 0x44, 0x7a, 0xeb, 0x04, 0xc0, - 0xfc, 0x38, 0x7e, 0xec, 0x87, 0x54, 0x26, 0x69, 0x44, 0x03, 0xed, 0x40, 0xc5, 0xf6, 0xbd, 0x9e, - 0xeb, 0xd8, 0x74, 0xe6, 0xaa, 0xf1, 0xfd, 0xd0, 0xa1, 0xcc, 0x12, 0x38, 0xd6, 0x8c, 0xe9, 0x98, - 0x41, 0x61, 0x97, 0x99, 0xc4, 0x44, 0x16, 0xe8, 0x14, 0xa5, 0x41, 0xc5, 0x16, 0x2b, 0xb0, 0xbc, - 0x46, 0xc7, 0xac, 0xe3, 0x54, 0x0b, 0xbd, 0x0e, 0x15, 0x55, 0xf5, 0x3f, 0x53, 0x64, 0xb2, 0x27, - 0x11, 0x66, 0x4c, 0x82, 0xf6, 0x60, 0x39, 0x56, 0xa6, 0x45, 0x4e, 0x02, 0x27, 0x24, 0x5d, 0x3e, - 0x4d, 0xb5, 0x9d, 0x56, 0xc6, 0x3f, 0x33, 0xd5, 0xde, 0x15, 0x78, 0xb3, 0x69, 0x67, 0x01, 0x6c, - 0x11, 0x33, 0x93, 0x49, 0x12, 0xdc, 0x15, 0xde, 0xc3, 0x6a, 0xfa, 0x8e, 0xe8, 0xa1, 0x4c, 0x76, - 0x9b, 0x35, 0x9a, 0x34, 0xd0, 0x3b, 0xb0, 0x92, 0x8c, 0x4f, 0x7d, 0xdf, 0x72, 0x71, 0xd8, 0x17, - 0x95, 0x94, 0xb5, 0x9d, 0x2b, 0x33, 0x1c, 0x74, 0x7c, 0xff, 0x80, 0x11, 0x98, 0xba, 0x3d, 0x05, - 0x41, 0xbb, 0xa0, 0x27, 0xd5, 0xbc, 0x3d, 0xec, 0xb8, 0xa4, 0xcb, 0x9d, 0x75, 0x5a, 0x90, 0xb8, - 0x9c, 0xf7, 0x1e, 0xc7, 0x9b, 0x49, 0xfd, 0xaf, 0x00, 0x18, 0x1f, 0x6b, 0xb0, 0x94, 0x99, 0x95, - 0x4c, 0x20, 0xa0, 0x65, 0xc3, 0xc0, 0xeb, 0x50, 0x53, 0x53, 0x96, 0x84, 0x09, 0xa0, 0x40, 0x9d, - 0x68, 0xce, 0xb2, 0x6b, 0x41, 0x59, 0x2e, 0x5d, 0x51, 0x05, 0x69, 0xaa, 0x26, 0xf3, 0x9a, 0x71, - 0x67, 0x89, 0x79, 0x8b, 0xf5, 0xa7, 0x2b, 0x4c, 0x5c, 0xb8, 0xbb, 0x01, 0xf5, 0xb4, 0x0d, 0xa8, - 0x91, 0xb4, 0x24, 0x20, 0xfb, 0x33, 0x0d, 0x2a, 0x6a, 0xbe, 0xd3, 0x95, 0x65, 0x5a, 0xa6, 0xb2, - 0x4c, 0xb9, 0x81, 0x24, 0x9a, 0xe3, 0x84, 0xec, 0x08, 0xb1, 0x05, 0xcb, 0xca, 0x4a, 0x18, 0xda, - 0x3a, 0xc6, 0xd1, 0xb1, 0xbc, 0x1d, 0x6c, 0x2a, 0xc4, 0x03, 0x32, 0x79, 0x07, 0x47, 0xc7, 0xe8, - 0xf3, 0x00, 0xbc, 0x48, 0xd6, 0x3e, 0xc6, 0x8e, 0x27, 0x23, 0xf3, 0xcb, 0xdb, 0xf1, 0xeb, 0x93, - 0xf7, 0xb1, 0x43, 0xef, 0xf9, 0xe1, 0x5d, 0x8f, 0xf9, 0xe4, 0x2a, 0xa3, 0xdc, 0x65, 0x84, 0xc6, - 0xb7, 0x35, 0x68, 0x4e, 0xd9, 0xd6, 0x69, 0xfa, 0xde, 0x86, 0x15, 0x4c, 0x29, 0x19, 0x06, 0xcc, - 0x21, 0x27, 0x3a, 0x12, 0x7a, 0x5f, 0x8e, 0x51, 0xb1, 0x23, 0x98, 0x55, 0xff, 0x8c, 0xfb, 0x28, - 0xcc, 0xb8, 0x0f, 0x63, 0x1f, 0x6a, 0x29, 0x6b, 0x7d, 0xc6, 0xfc, 0x9f, 0x5a, 0xd0, 0x67, 0xdc, - 0x02, 0x7d, 0xda, 0x70, 0xb3, 0xc5, 0x4a, 0xda, 0x54, 0xb1, 0xd2, 0x0f, 0x34, 0x68, 0x4e, 0xd9, - 0xe8, 0x69, 0x0c, 0xcc, 0xa6, 0xc1, 0x3f, 0x0b, 0xd5, 0xd8, 0xa4, 0xb9, 0xe0, 0x8d, 0x1d, 0x34, - 0x6b, 0xfd, 0x66, 0x42, 0xc4, 0xa6, 0x99, 0xfb, 0x18, 0xc7, 0xeb, 0x4f, 0x57, 0x17, 0x36, 0x15, - 0x42, 0xd5, 0x17, 0xbe, 0x06, 0x28, 0xa6, 0x9d, 0xb1, 0x51, 0x85, 0x89, 0x15, 0xf9, 0x5d, 0x0d, - 0x80, 0x05, 0x48, 0xa2, 0x7a, 0x02, 0xbd, 0x0a, 0xcb, 0xdc, 0x46, 0x9e, 0x60, 0xd7, 0x15, 0xf1, - 0xd4, 0x50, 0x08, 0x94, 0x37, 0x1b, 0x0c, 0xf1, 0x3e, 0x76, 0x5d, 0x46, 0xfe, 0x5e, 0x84, 0x6e, - 0xc1, 0x6a, 0x10, 0xfa, 0x36, 0x89, 0xa2, 0x2c, 0x75, 0x8e, 0x53, 0x2f, 0x4b, 0x5c, 0xea, 0x83, - 0x6d, 0x58, 0x1d, 0x8c, 0x79, 0x38, 0x92, 0xfd, 0x20, 0xcf, 0x3f, 0xd0, 0x07, 0x63, 0x16, 0x98, - 0x24, 0xf4, 0xc6, 0x57, 0xa0, 0xc2, 0x02, 0x32, 0xbe, 0xc3, 0xae, 0x42, 0x91, 0xfa, 0x14, 0xbb, - 0x92, 0x17, 0xd1, 0x60, 0xae, 0x5e, 0x0e, 0x43, 0xba, 0x72, 0xdc, 0x04, 0x10, 0x1f, 0xc6, 0x1e, - 0x4f, 0x28, 0x51, 0xa3, 0xf0, 0xc3, 0xd8, 0x1d, 0x06, 0x30, 0x7e, 0x43, 0x03, 0x60, 0xfd, 0x4b, - 0xc9, 0x6f, 0x42, 0x91, 0xbf, 0x10, 0x98, 0xd9, 0x60, 0x14, 0x0f, 0xa6, 0xc0, 0xb3, 0x08, 0x3f, - 0xae, 0xaf, 0x9d, 0x4b, 0xc7, 0xd1, 0x8c, 0xac, 0x8b, 0x29, 0x9e, 0x39, 0x09, 0x25, 0x64, 0x0c, - 0x6d, 0xfc, 0x20, 0x2f, 0xde, 0xe6, 0x08, 0x2e, 0x1e, 0xed, 0xa0, 0xd7, 0x01, 0xc5, 0x22, 0xa8, - 0x68, 0x41, 0xd9, 0xd4, 0x72, 0x8c, 0x91, 0x31, 0x43, 0x84, 0xde, 0x82, 0xf5, 0x59, 0xf2, 0xf4, - 0xf3, 0x90, 0xb5, 0x99, 0x6f, 0x78, 0x90, 0x70, 0x03, 0x1a, 0x5c, 0x87, 0xc9, 0x10, 0xb2, 0xda, - 0x8b, 0x43, 0xe3, 0xee, 0xbf, 0x04, 0x2f, 0x84, 0x2c, 0x7c, 0xea, 0x3e, 0xb6, 0xba, 0x3c, 0x09, - 0x6d, 0x45, 0x03, 0x27, 0x08, 0xf8, 0xd2, 0x1e, 0x79, 0x54, 0xba, 0x9a, 0x2b, 0x92, 0x46, 0xe4, - 0xa9, 0xdb, 0x82, 0x62, 0x97, 0x11, 0xb0, 0xf8, 0x57, 0x75, 0xc0, 0xfc, 0x53, 0xf6, 0x6b, 0x61, - 0xc1, 0x97, 0x25, 0xc1, 0x03, 0x32, 0xc9, 0x7c, 0xfa, 0x36, 0xbc, 0xa8, 0x3e, 0x7d, 0xcc, 0x1d, - 0x1c, 0x3f, 0x1e, 0x58, 0xc7, 0xcc, 0x85, 0xf1, 0xcf, 0x8b, 0x99, 0xc1, 0xef, 0x30, 0x1a, 0x7e, - 0x5a, 0x78, 0xc7, 0xa1, 0xa2, 0x87, 0x9f, 0x83, 0x56, 0xb6, 0x07, 0x6e, 0x0f, 0xe2, 0x63, 0xf1, - 0xd2, 0x60, 0x2d, 0xfd, 0x31, 0xb3, 0x3f, 0xf1, 0xe1, 0xe7, 0x61, 0x7d, 0xce, 0x87, 0xcc, 0x90, - 0x64, 0x74, 0xb4, 0x3a, 0xfd, 0x1d, 0xb3, 0x29, 0xe3, 0xb7, 0x34, 0xa8, 0xa5, 0x2a, 0x93, 0x58, - 0x48, 0xcb, 0x8d, 0x5c, 0x14, 0x32, 0x49, 0xcb, 0x4a, 0x42, 0xda, 0x64, 0xdd, 0x99, 0x40, 0x93, - 0x35, 0xf8, 0x26, 0xd4, 0xf8, 0xf9, 0x44, 0x7e, 0x95, 0x9b, 0xfa, 0x2a, 0xb1, 0x16, 0x13, 0xa2, - 0xf8, 0xb7, 0xa8, 0x65, 0x12, 0x91, 0xaa, 0xf1, 0xeb, 0x1a, 0x2c, 0x65, 0x2a, 0xa4, 0x16, 0xe4, - 0xe4, 0x17, 0xa1, 0x91, 0xe2, 0xc4, 0x1a, 0xef, 0x48, 0x66, 0xd6, 0xe6, 0x30, 0xf3, 0x68, 0xc7, - 0xac, 0x47, 0xa9, 0x96, 0xf1, 0x01, 0x94, 0x44, 0x96, 0x3c, 0xa9, 0xa4, 0xd0, 0x9e, 0x51, 0x79, - 0x73, 0xc6, 0xcb, 0x64, 0xe3, 0x9b, 0x1a, 0x54, 0x54, 0x09, 0x23, 0xba, 0x06, 0x39, 0x3f, 0xe0, - 0x5d, 0x4f, 0xc5, 0xb9, 0x39, 0x3f, 0x38, 0xf3, 0xf5, 0x74, 0xc6, 0x25, 0x17, 0xce, 0xe0, 0x92, - 0x8d, 0xff, 0xd5, 0xa0, 0xca, 0x0e, 0xf5, 0x3c, 0x10, 0x41, 0xd7, 0xa1, 0xc0, 0xc3, 0xed, 0x39, - 0x6c, 0x70, 0xc4, 0x69, 0x89, 0xaa, 0x6b, 0x33, 0x6f, 0x32, 0x52, 0xef, 0x31, 0xae, 0x43, 0x2d, - 0x3a, 0xf6, 0x43, 0x6a, 0xa5, 0x5e, 0x65, 0x98, 0xc0, 0x41, 0xfc, 0x65, 0x0a, 0x73, 0x00, 0xc7, - 0x38, 0xb2, 0xfc, 0x31, 0x09, 0x5d, 0xcc, 0xd7, 0x96, 0xaa, 0x10, 0x97, 0x57, 0xc8, 0x6b, 0xc7, - 0x38, 0x3a, 0x8c, 0xb1, 0xaa, 0xce, 0x0c, 0x6d, 0x40, 0x9d, 0x7d, 0xd7, 0xb7, 0xad, 0x1e, 0x7f, - 0xa9, 0x22, 0xae, 0x50, 0xe0, 0x18, 0x47, 0xf7, 0xed, 0x7b, 0x0c, 0xc2, 0x58, 0x8e, 0xb1, 0xc2, - 0xea, 0xcb, 0x7d, 0x81, 0x32, 0xbe, 0x28, 0x64, 0x17, 0x1c, 0x9c, 0xb2, 0xf7, 0xc5, 0xca, 0xce, - 0xa5, 0xa7, 0xef, 0x7b, 0x39, 0xa8, 0xb0, 0xcf, 0xf9, 0xc1, 0xe8, 0xc7, 0xd1, 0x5c, 0x2a, 0x50, - 0xcb, 0x67, 0x03, 0xb5, 0x67, 0xaa, 0x6d, 0xb6, 0xfe, 0xe0, 0x2c, 0x6f, 0x91, 0xd2, 0xa7, 0xae, - 0xf2, 0xf4, 0xa9, 0xeb, 0xac, 0xc7, 0xa3, 0xa9, 0xa3, 0x4f, 0x75, 0xf6, 0xd5, 0xdc, 0x75, 0xa8, - 0xc5, 0x6f, 0x00, 0xa8, 0x38, 0x1c, 0x15, 0x4c, 0x50, 0xa0, 0x0e, 0xbf, 0xa2, 0xac, 0xa8, 0x8c, - 0x52, 0xbc, 0x21, 0x69, 0x73, 0x52, 0x4e, 0x3c, 0x25, 0x2e, 0x36, 0xa4, 0x2d, 0x28, 0xf1, 0x0d, - 0x4c, 0xe5, 0xbe, 0x51, 0x86, 0x90, 0x9b, 0xb1, 0x29, 0x29, 0x18, 0xad, 0x7c, 0xeb, 0x93, 0x9f, - 0x43, 0xcb, 0x35, 0xa8, 0xde, 0xff, 0x18, 0x9f, 0x83, 0xb2, 0x2c, 0x2e, 0xe3, 0x4a, 0x3d, 0xf1, - 0xa4, 0x11, 0xb0, 0x9f, 0xe8, 0x32, 0x94, 0x22, 0xfe, 0x4e, 0x40, 0x4e, 0x9d, 0x6c, 0x19, 0x6f, - 0xf3, 0xb3, 0x1d, 0xcf, 0xc2, 0x66, 0x13, 0xff, 0xda, 0xd3, 0xaf, 0xbd, 0x72, 0x99, 0x6b, 0xaf, - 0xbf, 0xd7, 0x00, 0x0e, 0x08, 0xee, 0x92, 0x90, 0x0f, 0x7d, 0x6a, 0x12, 0x6d, 0x1d, 0xca, 0x01, - 0x21, 0x21, 0x43, 0x49, 0x36, 0x58, 0x73, 0xbf, 0x1b, 0xe7, 0xc0, 0xf2, 0xa9, 0x1c, 0xd8, 0x74, - 0xc6, 0xad, 0x70, 0xc6, 0x8c, 0xdb, 0x1b, 0x32, 0xdc, 0x60, 0x12, 0x12, 0x79, 0x18, 0x4c, 0xf4, - 0xc6, 0xf6, 0x88, 0x36, 0xc3, 0x88, 0x10, 0x84, 0xff, 0x34, 0xf6, 0xa1, 0x1a, 0xc3, 0x67, 0xd3, - 0x3d, 0xda, 0xfc, 0x74, 0x0f, 0x2f, 0x7a, 0xa3, 0x89, 0x42, 0x71, 0x8f, 0x74, 0x22, 0xa3, 0x0d, - 0x48, 0xdc, 0x53, 0x71, 0x95, 0xa8, 0x9c, 0xca, 0xeb, 0x49, 0x26, 0x5e, 0x94, 0x80, 0x27, 0x2e, - 0x3f, 0xd1, 0x5d, 0x9c, 0x8e, 0x47, 0x0d, 0xc8, 0xc5, 0x1d, 0xe7, 0x68, 0x64, 0x7c, 0x09, 0x56, - 0x32, 0x9d, 0xca, 0xf4, 0x69, 0x2b, 0xdb, 0x6b, 0xe1, 0xe9, 0x1d, 0xec, 0x01, 0x6a, 0x53, 0x3f, - 0x24, 0x6d, 0xc6, 0x64, 0x5b, 0x71, 0xb5, 0x0d, 0x55, 0x16, 0x0b, 0xf0, 0xe4, 0xfb, 0xbc, 0x3d, - 0x41, 0x24, 0xe7, 0x2b, 0x03, 0xf9, 0xcb, 0xd8, 0x86, 0x95, 0x4c, 0x2f, 0x92, 0x8d, 0x94, 0x2e, - 0xb4, 0x8c, 0x2e, 0x6c, 0x7e, 0xa1, 0x7d, 0x9f, 0x30, 0x03, 0xea, 0x74, 0x0e, 0x2e, 0xa6, 0x38, - 0xed, 0xf7, 0x35, 0x7e, 0xc9, 0x9c, 0x1a, 0xe5, 0x02, 0x92, 0xcb, 0xc9, 0x83, 0x17, 0xee, 0xa2, - 0x4e, 0x2d, 0x4f, 0xfb, 0x17, 0x51, 0xc7, 0xb5, 0x7b, 0xbb, 0x7d, 0x91, 0x75, 0x5c, 0xaf, 0xb1, - 0xf0, 0x94, 0x8c, 0x1d, 0x7f, 0x14, 0xa5, 0xde, 0x26, 0x09, 0x5e, 0x74, 0x85, 0x89, 0x5f, 0x26, - 0xdd, 0x80, 0x46, 0x4c, 0x2d, 0x3a, 0x13, 0xb5, 0xbd, 0x4b, 0x0a, 0xfa, 0x28, 0x55, 0x1c, 0x56, - 0x9a, 0x2e, 0x0e, 0x2b, 0xc7, 0x92, 0x1b, 0xdf, 0x17, 0xc5, 0x2c, 0x5c, 0xb8, 0xf3, 0xd6, 0x73, - 0x0b, 0xca, 0xd1, 0xc8, 0xb6, 0x89, 0xbc, 0x96, 0xa9, 0x98, 0xaa, 0x79, 0x21, 0xc2, 0x1a, 0x7b, - 0x70, 0xf9, 0x3e, 0xe1, 0xcf, 0x56, 0xd9, 0x89, 0x9b, 0x2f, 0xc0, 0x4f, 0x3f, 0x5f, 0xc6, 0x77, - 0x34, 0x58, 0x9f, 0xe9, 0xe6, 0xbc, 0x35, 0xf3, 0x59, 0xe6, 0x7c, 0x29, 0xdf, 0xa5, 0xf2, 0xa7, - 0xa6, 0x0b, 0x14, 0x99, 0xf1, 0x8f, 0xa2, 0x76, 0x66, 0xd7, 0x97, 0xa7, 0x0e, 0x3f, 0x5c, 0xb0, - 0x10, 0xc2, 0xf6, 0x83, 0xd0, 0xf2, 0xf0, 0x50, 0xa5, 0xf0, 0x2a, 0x0c, 0xf0, 0x10, 0x0f, 0xf9, - 0x46, 0xcb, 0x91, 0xf2, 0xe0, 0x62, 0x85, 0xe4, 0x43, 0xb9, 0x2c, 0x1b, 0x0c, 0xae, 0x92, 0xc4, - 0xe4, 0xc3, 0xd4, 0x0d, 0x60, 0xe1, 0x59, 0x55, 0x29, 0x48, 0x9e, 0xd6, 0xc4, 0x8c, 0x89, 0xa3, - 0xd9, 0x88, 0xd7, 0xde, 0x64, 0x44, 0x39, 0x6f, 0x05, 0xa3, 0xd4, 0x21, 0x51, 0x0d, 0xfb, 0xb1, - 0xa8, 0x49, 0xe4, 0x8e, 0x37, 0x1a, 0x0d, 0x17, 0xd1, 0xdf, 0x17, 0xa0, 0x8a, 0xdd, 0xbe, 0x1f, - 0x3a, 0xf4, 0x78, 0xc8, 0x07, 0x6c, 0xec, 0x5c, 0x4d, 0xa8, 0x65, 0xc7, 0xb7, 0x15, 0x85, 0x99, - 0x10, 0x7f, 0x9a, 0x4b, 0xd3, 0xbf, 0x16, 0x75, 0x43, 0x09, 0x9f, 0xe7, 0xad, 0x9c, 0xab, 0x50, - 0xb1, 0x65, 0xe7, 0x71, 0x58, 0x2c, 0xdb, 0xcc, 0x42, 0xc4, 0xf1, 0x75, 0x30, 0x8e, 0x5f, 0x93, - 0x71, 0xc0, 0x83, 0x31, 0x0f, 0x9f, 0x04, 0x52, 0x9c, 0xfc, 0x45, 0x8c, 0x07, 0x1c, 0xc4, 0x8f, - 0xfe, 0x5b, 0x37, 0x01, 0x92, 0xeb, 0x04, 0x54, 0x82, 0xdc, 0xa3, 0x37, 0xf4, 0x4b, 0xa8, 0x0a, - 0xc5, 0x47, 0x6f, 0x74, 0x3a, 0x07, 0xba, 0xc6, 0x41, 0x3b, 0x7a, 0x6e, 0xeb, 0x33, 0x00, 0xc9, - 0xb5, 0x17, 0x02, 0x28, 0x3d, 0xf4, 0xc3, 0x21, 0x76, 0xf5, 0x4b, 0xa8, 0x0c, 0xf9, 0x03, 0xff, - 0x89, 0xae, 0xa1, 0x0a, 0x14, 0xde, 0x71, 0xfa, 0xc7, 0x7a, 0x6e, 0xeb, 0x16, 0x34, 0xb2, 0x77, - 0x5d, 0xac, 0x9b, 0xf6, 0xbe, 0x7e, 0x89, 0xfd, 0x35, 0x77, 0x75, 0x0d, 0x2d, 0x41, 0xd5, 0xdc, - 0x15, 0xef, 0x27, 0xdb, 0x7a, 0x6e, 0xeb, 0x11, 0xd4, 0x52, 0xf7, 0x26, 0x68, 0x15, 0xf4, 0x87, - 0x3e, 0xbd, 0xed, 0xba, 0xfe, 0x13, 0xd2, 0x3d, 0xf4, 0x18, 0x58, 0xbf, 0x84, 0xd6, 0x61, 0x25, - 0x06, 0xdd, 0x76, 0x87, 0x7e, 0x44, 0x39, 0x42, 0x43, 0x2d, 0x58, 0x4d, 0x21, 0x78, 0x9a, 0x91, - 0x63, 0x72, 0x5b, 0x36, 0xe4, 0x0e, 0x03, 0xc6, 0xe1, 0xd1, 0x88, 0x0a, 0x56, 0xf7, 0x88, 0x2b, - 0x58, 0x65, 0xfe, 0x42, 0xcf, 0xa1, 0x3a, 0x54, 0xd4, 0x41, 0x40, 0xcf, 0x33, 0xb9, 0xf6, 0x3d, - 0x76, 0xae, 0xd1, 0x0b, 0x68, 0x05, 0x9a, 0x53, 0x8f, 0x3e, 0xf5, 0x22, 0x42, 0xd0, 0xe0, 0x5c, - 0x2b, 0x57, 0x17, 0xe9, 0xa5, 0xad, 0x6d, 0xa8, 0xc6, 0xe7, 0x22, 0xd6, 0xf3, 0x43, 0xdf, 0x23, - 0x42, 0x89, 0x9c, 0x44, 0xd7, 0xd8, 0x20, 0xea, 0x03, 0xa1, 0x9d, 0xec, 0xff, 0x69, 0x60, 0x7c, - 0x1d, 0xf6, 0x7a, 0xfa, 0x25, 0xf6, 0xf5, 0x3d, 0xcc, 0x3f, 0x01, 0x28, 0xb5, 0x69, 0xe8, 0xd8, - 0xec, 0x83, 0x3f, 0xd6, 0xa0, 0x24, 0x1e, 0x67, 0x8a, 0x9e, 0xc4, 0x6f, 0xfd, 0x12, 0x5a, 0x83, - 0xe5, 0x4e, 0xe7, 0x40, 0xa4, 0x22, 0x63, 0x29, 0xb8, 0x3e, 0x18, 0xbb, 0x6a, 0xc8, 0x18, 0x93, - 0x63, 0x1f, 0xbc, 0x17, 0xe7, 0x0e, 0xdb, 0x47, 0xa3, 0xe8, 0x98, 0x74, 0xf5, 0x3c, 0xda, 0x80, - 0x17, 0xe2, 0x7e, 0xe6, 0x3c, 0xfd, 0xd6, 0x0b, 0xe8, 0x0a, 0xac, 0xa5, 0xbb, 0xdc, 0xf3, 0x1f, - 0xfa, 0xf4, 0xd8, 0xf1, 0xfa, 0x7a, 0x71, 0xeb, 0x06, 0x94, 0xef, 0x9e, 0xd0, 0x10, 0x1f, 0x06, - 0x42, 0x78, 0x3f, 0xd0, 0x2f, 0x21, 0x1d, 0xea, 0x2c, 0x9e, 0x3b, 0x74, 0xbb, 0xdc, 0xd5, 0xeb, - 0xda, 0x96, 0x01, 0xcb, 0x33, 0xeb, 0x8d, 0x99, 0xc1, 0x6e, 0x68, 0xbf, 0xf5, 0xa6, 0xf5, 0xcb, - 0x7e, 0xa8, 0x5f, 0xba, 0xf3, 0xca, 0x3f, 0xff, 0x79, 0x45, 0xfb, 0xfe, 0x27, 0x2f, 0x69, 0x3f, - 0xfa, 0xe4, 0x25, 0xed, 0xdf, 0x3f, 0x79, 0x49, 0xfb, 0xee, 0x7f, 0xbe, 0x74, 0x09, 0x74, 0x3f, - 0xec, 0x6f, 0x53, 0x67, 0x30, 0xde, 0x1e, 0x8c, 0xf9, 0x7f, 0x02, 0x7a, 0x5c, 0xe2, 0x7f, 0x3e, - 0xf7, 0x7f, 0x01, 0x00, 0x00, 0xff, 0xff, 0x74, 0xe8, 0xac, 0x59, 0x8d, 0x48, 0x00, 0x00, + 0x51, 0x53, 0xfd, 0x31, 0xdd, 0x1d, 0xdd, 0xd3, 0x5d, 0x93, 0xf3, 0xd5, 0xfb, 0x75, 0x3b, 0x5b, + 0xf6, 0xde, 0x8e, 0xc7, 0xbe, 0x59, 0xdf, 0xf8, 0x6c, 0x0c, 0x58, 0xf8, 0x76, 0x67, 0xbf, 0xc6, + 0xfb, 0x31, 0xa3, 0xea, 0xf6, 0x9a, 0x93, 0xb0, 0xcb, 0xb9, 0xd5, 0xd9, 0x3d, 0xa5, 0xae, 0xae, + 0xaa, 0xab, 0xca, 0xee, 0x9d, 0xb6, 0x85, 0x84, 0x31, 0x20, 0x21, 0x01, 0x06, 0x63, 0xe9, 0x2c, + 0x81, 0x90, 0x78, 0x38, 0x09, 0xf3, 0xc6, 0x1b, 0x42, 0x82, 0x13, 0x12, 0x0f, 0xc6, 0x12, 0xb2, + 0x1f, 0x11, 0x3c, 0x00, 0xc7, 0x0b, 0xfc, 0x00, 0x5e, 0x78, 0x42, 0xf9, 0x55, 0x1f, 0xdd, 0xbd, + 0xb3, 0x73, 0xed, 0x99, 0xb5, 0xc5, 0xd3, 0x74, 0x46, 0x44, 0x66, 0x46, 0x44, 0x46, 0x46, 0x46, + 0x46, 0x46, 0x0d, 0x2c, 0xf5, 0x47, 0x61, 0x60, 0x07, 0xcf, 0x76, 0x82, 0xd0, 0xa7, 0x3e, 0x2a, + 0xc9, 0xe6, 0xc5, 0xda, 0x80, 0x50, 0xac, 0xc0, 0x17, 0x97, 0x48, 0x18, 0xfa, 0x61, 0xdc, 0x5c, + 0xed, 0xf9, 0x3d, 0x9f, 0xff, 0xbc, 0xc9, 0x7e, 0x49, 0x68, 0x23, 0x1c, 0x46, 0x94, 0xff, 0x94, + 0x80, 0x7a, 0x87, 0xe0, 0x8e, 0xeb, 0xdb, 0x7d, 0x35, 0x0a, 0x0d, 0xb1, 0x4d, 0xd4, 0x28, 0x46, + 0x07, 0xe0, 0x3e, 0xa1, 0x26, 0x79, 0x77, 0x48, 0x22, 0x8a, 0xb6, 0xa1, 0x64, 0xfb, 0x1e, 0x25, + 0xc7, 0xb4, 0xa9, 0x6d, 0x6a, 0x5b, 0xd5, 0x5d, 0x7d, 0x47, 0xb1, 0xb6, 0x27, 0xe0, 0xa6, 0x22, + 0x40, 0x3a, 0xe4, 0xfb, 0x64, 0xdc, 0xcc, 0x6d, 0x6a, 0x5b, 0x35, 0x93, 0xfd, 0x44, 0x4d, 0x28, + 0x8d, 0x48, 0x18, 0x39, 0xbe, 0xd7, 0xcc, 0x6f, 0x6a, 0x5b, 0x05, 0x53, 0x35, 0x8d, 0x0f, 0x35, + 0xa8, 0xf2, 0x69, 0xa2, 0xc0, 0xf7, 0x22, 0x82, 0xde, 0x84, 0x5a, 0x48, 0x7a, 0x8e, 0xef, 0x59, + 0x5c, 0x26, 0x39, 0x59, 0x7d, 0x47, 0x49, 0x78, 0x97, 0xfd, 0x35, 0xab, 0x82, 0x86, 0x37, 0xd0, + 0x0d, 0x28, 0x0a, 0xda, 0x1c, 0xa7, 0x5d, 0x8e, 0x19, 0x7b, 0x48, 0xc6, 0x82, 0x5c, 0xe0, 0xd1, + 0x2a, 0x14, 0x47, 0xd8, 0x1d, 0x12, 0xce, 0x43, 0xcd, 0x14, 0x0d, 0x74, 0x09, 0x2a, 0x9e, 0x4f, + 0xad, 0xae, 0x3f, 0xf4, 0x3a, 0xcd, 0xc2, 0xa6, 0xb6, 0x55, 0x36, 0xcb, 0x9e, 0x4f, 0xef, 0xb1, + 0x36, 0xfa, 0x15, 0x68, 0x90, 0x63, 0x62, 0x5b, 0x1d, 0x42, 0xb1, 0xe3, 0x46, 0xd6, 0x68, 0xb7, + 0xb9, 0xc8, 0x67, 0x59, 0x8f, 0x67, 0xb9, 0x7b, 0x4c, 0xec, 0x3b, 0x02, 0xfd, 0x74, 0xd7, 0x5c, + 0x22, 0xe9, 0xe6, 0x97, 0x0a, 0xe5, 0xa2, 0xbe, 0x68, 0xfc, 0x8f, 0x06, 0xd5, 0x96, 0x8d, 0xbd, + 0x79, 0x94, 0x79, 0x09, 0x2a, 0x11, 0xc5, 0x21, 0xb5, 0x12, 0x95, 0x96, 0x39, 0xe0, 0x21, 0x19, + 0x33, 0x89, 0x5c, 0x67, 0xe0, 0x50, 0x2e, 0xd1, 0x92, 0x29, 0x1a, 0x69, 0x6d, 0x17, 0x32, 0xda, + 0x46, 0x17, 0xa0, 0xdc, 0x27, 0x63, 0xcb, 0xf7, 0xdc, 0x71, 0xb3, 0xc8, 0x45, 0x2d, 0xf5, 0xc9, + 0xf8, 0xc0, 0x73, 0xf9, 0x12, 0x85, 0x84, 0xd1, 0x11, 0x2e, 0x61, 0xd9, 0x54, 0x4d, 0xb4, 0x01, + 0x25, 0xe2, 0x75, 0xf8, 0xfc, 0x25, 0x3e, 0xff, 0x22, 0xf1, 0x3a, 0x6c, 0xf6, 0xab, 0x50, 0x8d, + 0xf0, 0x20, 0x70, 0x89, 0x15, 0x51, 0x12, 0x34, 0xcb, 0x9c, 0x07, 0x10, 0xa0, 0x16, 0x25, 0x81, + 0xf1, 0x47, 0x1a, 0xd4, 0x84, 0xdc, 0xf3, 0xaf, 0xee, 0x75, 0x28, 0x06, 0xd8, 0x09, 0xa3, 0x66, + 0x6e, 0x33, 0xbf, 0x55, 0xdd, 0x6d, 0x24, 0xab, 0x3b, 0x3a, 0xc4, 0x4e, 0x68, 0x0a, 0x6c, 0x62, + 0x04, 0xf9, 0x93, 0x8d, 0xc0, 0xf8, 0xaf, 0x02, 0x34, 0x0e, 0x43, 0xf2, 0x3c, 0x74, 0x28, 0x99, + 0x67, 0x3d, 0x6e, 0x42, 0x65, 0x30, 0xa4, 0x98, 0x3a, 0xbe, 0xa7, 0x78, 0x4a, 0x26, 0x7b, 0x2c, + 0x31, 0x66, 0x42, 0x83, 0xae, 0x41, 0x2d, 0x08, 0x9d, 0x01, 0x0e, 0xc7, 0x16, 0xdb, 0x6c, 0xd2, + 0xf8, 0xaa, 0x12, 0xf6, 0xc8, 0xb7, 0xfb, 0xe8, 0x63, 0xb0, 0x24, 0xd6, 0x38, 0xbb, 0x6c, 0x35, + 0x0e, 0x7c, 0x9a, 0xac, 0x1d, 0xeb, 0x6f, 0x51, 0xea, 0xf2, 0xb5, 0x2b, 0x98, 0x25, 0xd6, 0x6e, + 0x53, 0x17, 0xed, 0xc2, 0x5a, 0xd4, 0x77, 0x02, 0xcb, 0xf6, 0xbd, 0x88, 0x86, 0xd8, 0xf1, 0xa8, + 0x65, 0x1f, 0x11, 0xbb, 0x2f, 0x57, 0x72, 0x85, 0x21, 0xf7, 0x62, 0xdc, 0x1e, 0x43, 0xa1, 0x1d, + 0x58, 0x71, 0x22, 0x2b, 0x20, 0x51, 0xe4, 0x0c, 0x9c, 0x88, 0x3a, 0xb6, 0xe0, 0xae, 0xb4, 0x99, + 0xdf, 0x2a, 0x9b, 0xcb, 0x4e, 0x74, 0x98, 0x60, 0x38, 0x8f, 0x17, 0xa0, 0x4c, 0x8f, 0x3d, 0x2b, + 0x72, 0xbe, 0x41, 0xf8, 0x4a, 0x17, 0xcc, 0x12, 0x3d, 0xf6, 0x5a, 0xce, 0x37, 0x08, 0x32, 0x60, + 0xa9, 0xeb, 0x87, 0xd6, 0x30, 0xe8, 0x60, 0x4a, 0x2c, 0x1a, 0x35, 0x2b, 0x1c, 0x5f, 0xed, 0xfa, + 0xe1, 0x97, 0x39, 0xac, 0x1d, 0x31, 0x9a, 0x81, 0xe3, 0x59, 0xb6, 0x3f, 0x18, 0x38, 0x94, 0xd1, + 0x80, 0xa0, 0x19, 0x38, 0xde, 0x1e, 0x87, 0xb5, 0x23, 0xb4, 0x05, 0xfa, 0x30, 0x22, 0x16, 0x8e, + 0xc6, 0x9e, 0x2d, 0x29, 0x9b, 0x55, 0x2e, 0x41, 0x7d, 0x18, 0x91, 0x5b, 0x0c, 0x2c, 0x68, 0xd1, + 0x26, 0x54, 0x23, 0x62, 0xfb, 0x5e, 0x07, 0x87, 0x0e, 0x89, 0x9a, 0xb5, 0xcd, 0x3c, 0x53, 0x69, + 0x0a, 0x84, 0x2e, 0x03, 0xd0, 0x90, 0x59, 0x3a, 0xb1, 0x02, 0xbb, 0xb9, 0x24, 0xb6, 0x35, 0x0d, + 0xc7, 0x07, 0x1e, 0x39, 0xb4, 0x39, 0x37, 0xf8, 0x38, 0xc5, 0x4d, 0x5d, 0x72, 0x83, 0x8f, 0x63, + 0x6e, 0xde, 0x86, 0x06, 0x8e, 0x22, 0x12, 0xb2, 0x55, 0xb4, 0x5c, 0x32, 0x22, 0x6e, 0xb3, 0xb1, + 0xa9, 0x6d, 0xd5, 0x77, 0x37, 0xe2, 0xe5, 0xbe, 0xa5, 0xf0, 0x8f, 0x18, 0xda, 0xac, 0xe3, 0x4c, + 0xdb, 0xf8, 0x5b, 0x0d, 0xf4, 0xc4, 0xd4, 0xe6, 0xdf, 0x02, 0x9f, 0x80, 0x45, 0x8e, 0x9d, 0xb6, + 0xb7, 0xd8, 0xb8, 0x25, 0xc1, 0xb4, 0x9a, 0xf3, 0xd3, 0x6a, 0xbe, 0x01, 0xba, 0x50, 0x4b, 0x8a, + 0x4c, 0x18, 0xdc, 0x92, 0xcf, 0xb4, 0xa3, 0x08, 0x8d, 0x1f, 0xe7, 0x61, 0x7d, 0xc2, 0x0c, 0xfe, + 0xbf, 0xec, 0x98, 0x29, 0x93, 0x5d, 0x9c, 0x69, 0xb2, 0x4e, 0x64, 0x75, 0x9d, 0x30, 0xa2, 0x6a, + 0x6f, 0x30, 0x2b, 0xaa, 0x3a, 0xd1, 0x3d, 0x06, 0xe3, 0x7c, 0x5c, 0x83, 0xda, 0x73, 0xcc, 0x54, + 0xe8, 0x0c, 0x88, 0x3f, 0xa4, 0x7c, 0x67, 0xe4, 0xcd, 0x2a, 0x83, 0xb5, 0x05, 0x08, 0x35, 0xa1, + 0xd8, 0xf5, 0x43, 0x9b, 0xf0, 0x5d, 0x51, 0xbe, 0x9d, 0x6b, 0x6a, 0xa6, 0x00, 0x30, 0x21, 0x42, + 0x42, 0x87, 0xa1, 0x67, 0xf1, 0x93, 0x48, 0xec, 0x89, 0xb2, 0x59, 0x13, 0xc0, 0xa7, 0x1c, 0x36, + 0xbd, 0xa2, 0xd5, 0x59, 0x2b, 0xda, 0xe0, 0xfb, 0xdd, 0x22, 0xc7, 0x4e, 0x44, 0x89, 0x67, 0x93, + 0x66, 0x4d, 0xec, 0x1b, 0x0e, 0xbe, 0xab, 0xa0, 0xc6, 0x7f, 0x6b, 0xb0, 0x31, 0xb5, 0xa2, 0xaf, + 0xc4, 0x30, 0xaf, 0x42, 0x65, 0xc2, 0x28, 0xb9, 0x26, 0xca, 0xb6, 0x92, 0xa1, 0xa9, 0x0e, 0x67, + 0xb6, 0x92, 0x35, 0xa1, 0x26, 0x71, 0x40, 0xaf, 0xc3, 0xa2, 0xd4, 0x4f, 0x91, 0xef, 0x73, 0xd9, + 0x42, 0x57, 0x00, 0xe2, 0x83, 0x9b, 0x2d, 0x20, 0x73, 0x5c, 0x15, 0x75, 0x72, 0x47, 0xc6, 0xfb, + 0x1a, 0x5c, 0x4c, 0xc9, 0x6a, 0xfa, 0xae, 0xfb, 0x0c, 0xcf, 0x67, 0xc1, 0x53, 0xd6, 0x96, 0x9b, + 0x61, 0x6d, 0x53, 0x26, 0x95, 0x9f, 0x36, 0x29, 0x04, 0x85, 0x3e, 0x19, 0xb3, 0xed, 0xc6, 0x04, + 0xe1, 0xbf, 0x8d, 0x6f, 0xc2, 0xa5, 0x99, 0x6c, 0xbe, 0x8a, 0x65, 0x31, 0xfe, 0x4a, 0x83, 0x95, + 0xf6, 0xb1, 0xf7, 0x80, 0xe0, 0x90, 0xde, 0x26, 0x78, 0xae, 0x70, 0x6f, 0x72, 0xbb, 0xe6, 0x4e, + 0xb1, 0x5d, 0xf3, 0x33, 0x14, 0xf8, 0x3a, 0x34, 0x70, 0x67, 0xe4, 0x44, 0xc4, 0x8a, 0x77, 0xad, + 0x74, 0x4b, 0x02, 0xfc, 0x48, 0xec, 0x5d, 0xe3, 0xf7, 0x35, 0x58, 0xcd, 0xf2, 0xfc, 0x0a, 0x62, + 0xc7, 0xb4, 0x2f, 0xc9, 0x67, 0x7c, 0x89, 0xf1, 0x1f, 0x39, 0x58, 0xe3, 0x67, 0x6a, 0xfb, 0xd8, + 0x6b, 0x51, 0x4c, 0x87, 0xd1, 0x3c, 0x5a, 0xbc, 0x0a, 0x4a, 0x63, 0xa9, 0x48, 0x0f, 0x24, 0x88, + 0x45, 0x5b, 0x1b, 0x50, 0x12, 0x1c, 0x28, 0xcb, 0x5a, 0xe4, 0x0c, 0x44, 0x4c, 0x6f, 0x36, 0x76, + 0x5d, 0x12, 0x5a, 0x42, 0xc7, 0x89, 0x3b, 0x17, 0xe0, 0x16, 0x83, 0xb6, 0xf9, 0x7e, 0xb1, 0x87, + 0x61, 0x48, 0x3c, 0x4e, 0x22, 0x1c, 0x62, 0x45, 0x42, 0xda, 0x11, 0x7a, 0x13, 0xd6, 0x42, 0x69, + 0x7c, 0x96, 0xd3, 0xb5, 0xd8, 0xd6, 0xe2, 0xee, 0x44, 0x06, 0x11, 0x48, 0x21, 0xf7, 0xbb, 0x4f, + 0x7c, 0xca, 0x5d, 0x0a, 0xda, 0x86, 0x65, 0xee, 0xc9, 0xac, 0xf4, 0x89, 0x2d, 0xbc, 0x64, 0x83, + 0x23, 0x5a, 0xc9, 0x91, 0xfd, 0x05, 0xb8, 0x18, 0x92, 0xc8, 0x77, 0x47, 0x8e, 0xd7, 0x9b, 0x0e, + 0x3b, 0xca, 0xbc, 0x53, 0x33, 0xa6, 0x98, 0x70, 0x52, 0xc6, 0x77, 0x72, 0xb0, 0x3e, 0xa9, 0xe3, + 0x9f, 0xe9, 0xaa, 0xa3, 0xeb, 0x50, 0x97, 0x0e, 0x2d, 0x7b, 0x04, 0x2d, 0x09, 0xa8, 0x32, 0xea, + 0x1b, 0xb0, 0x88, 0x6d, 0x76, 0xac, 0x71, 0x85, 0xd7, 0x53, 0xf1, 0xeb, 0x2d, 0x0e, 0x36, 0x25, + 0x1a, 0xed, 0x40, 0x85, 0x4f, 0xe5, 0x78, 0x5d, 0x5f, 0xde, 0x31, 0x12, 0xbe, 0x98, 0x0e, 0xf6, + 0xbd, 0xae, 0x6f, 0x72, 0x76, 0xd8, 0x2f, 0xe3, 0x5b, 0x1a, 0x5c, 0xe4, 0x1a, 0x69, 0xc9, 0xa8, + 0x87, 0xef, 0xb4, 0xb9, 0x4c, 0x4f, 0x79, 0xa5, 0x5c, 0xe2, 0x95, 0x4e, 0xb5, 0x63, 0x8d, 0x0f, + 0x34, 0xb8, 0x34, 0x93, 0x87, 0x57, 0xb0, 0x34, 0x37, 0xa0, 0xc8, 0x74, 0xc1, 0x36, 0x43, 0x7e, + 0xb6, 0xae, 0x04, 0x9e, 0x5d, 0xa0, 0x26, 0xe3, 0x9c, 0xf8, 0xd4, 0x31, 0x7e, 0xa0, 0xc1, 0x92, + 0x30, 0xd0, 0x73, 0x3b, 0x17, 0x94, 0x76, 0xf3, 0x29, 0xed, 0x9e, 0xce, 0x78, 0xc4, 0xed, 0xd1, + 0x5c, 0x7c, 0xe6, 0x78, 0xae, 0xdf, 0x33, 0xfe, 0x58, 0x83, 0xba, 0xe2, 0xf5, 0x15, 0x28, 0x78, + 0x9a, 0xc7, 0xfc, 0x0c, 0x1e, 0x8d, 0x1e, 0x2c, 0xed, 0x0f, 0x02, 0x3f, 0x8c, 0x15, 0x98, 0x09, + 0xf7, 0xb4, 0x53, 0x84, 0x7b, 0xd3, 0x13, 0xe5, 0x66, 0x4d, 0xf4, 0x0e, 0xd4, 0xd5, 0x44, 0xf3, + 0x4b, 0xbf, 0x9a, 0x96, 0xbe, 0xa2, 0xee, 0x84, 0xdf, 0x65, 0x9a, 0x75, 0x09, 0xf6, 0x86, 0xc1, + 0xd9, 0xe4, 0x3b, 0x4e, 0x75, 0xde, 0x65, 0xfd, 0x71, 0x61, 0xc2, 0x1f, 0x1b, 0xdf, 0xd3, 0xa0, + 0x11, 0x33, 0xf5, 0xf3, 0xb3, 0xde, 0x7d, 0x68, 0xdc, 0xc6, 0xd4, 0x3e, 0x9a, 0x33, 0x37, 0x34, + 0xcb, 0xd7, 0xbc, 0x38, 0x3b, 0xf4, 0xaf, 0x1a, 0xe8, 0xc9, 0x6c, 0xe7, 0x9e, 0x44, 0x98, 0x91, + 0xed, 0x29, 0x7c, 0x84, 0x6c, 0x4f, 0xa2, 0xeb, 0xe2, 0xc9, 0xba, 0xfe, 0x52, 0xa1, 0x9c, 0xd7, + 0x0b, 0xc6, 0x37, 0x61, 0x95, 0x0b, 0x77, 0xee, 0xa1, 0xe9, 0x0c, 0x17, 0x64, 0x44, 0xb0, 0x36, + 0x31, 0xf9, 0xf9, 0xdb, 0x98, 0xf1, 0x97, 0x1a, 0x34, 0x5a, 0x36, 0xf6, 0xe6, 0xbd, 0x4a, 0x5e, + 0x05, 0x76, 0x45, 0x9f, 0x90, 0x15, 0x06, 0xf8, 0x58, 0x49, 0x9a, 0xc9, 0x96, 0xe5, 0x5f, 0x94, + 0x2d, 0x2b, 0xa4, 0xb3, 0x65, 0xa9, 0xf4, 0x56, 0x31, 0x9d, 0xde, 0x32, 0xde, 0xd3, 0x40, 0x4f, + 0x98, 0xfd, 0x39, 0x3a, 0xd2, 0x8c, 0x1f, 0x6b, 0x80, 0x4c, 0x1e, 0x2a, 0x91, 0x79, 0x35, 0x79, + 0x2a, 0xbb, 0x39, 0x9d, 0x4b, 0x40, 0x6f, 0x40, 0x85, 0x1e, 0x7b, 0x3c, 0x72, 0x11, 0x57, 0x9b, + 0xf4, 0xcc, 0xed, 0x63, 0x4f, 0x44, 0x2e, 0x54, 0xfc, 0x48, 0x2e, 0x41, 0xc5, 0x94, 0x35, 0xbe, + 0x0b, 0x2b, 0x19, 0x81, 0x5e, 0x81, 0x2d, 0x3e, 0x85, 0xca, 0xfd, 0xbd, 0x79, 0x54, 0x77, 0x05, + 0x20, 0xc2, 0x5d, 0x62, 0x05, 0xbe, 0xe3, 0x51, 0xa9, 0xb7, 0x0a, 0x83, 0x1c, 0x32, 0x80, 0x71, + 0x04, 0xc0, 0xc6, 0x7d, 0x05, 0x12, 0xbc, 0xa7, 0x01, 0xba, 0x43, 0x5c, 0x42, 0x89, 0x89, 0xbd, + 0x1e, 0x39, 0xf3, 0xec, 0x72, 0x6a, 0x67, 0xe4, 0x27, 0x13, 0xbf, 0x9e, 0x4f, 0x9d, 0xae, 0xcc, + 0x24, 0x8b, 0xa4, 0x39, 0x08, 0xd0, 0x81, 0xe7, 0x8e, 0x8d, 0xaf, 0xc1, 0x4a, 0x86, 0xb1, 0xb3, + 0x3e, 0xb0, 0xbf, 0x0a, 0x4b, 0x26, 0x7e, 0x7e, 0x66, 0xcf, 0x13, 0x75, 0xc8, 0xd9, 0x5d, 0x2e, + 0x63, 0xc5, 0xcc, 0xd9, 0x5d, 0xe3, 0xf7, 0x34, 0xa8, 0xab, 0xf1, 0xcf, 0x98, 0xf5, 0x39, 0x1e, + 0x21, 0x8c, 0x0e, 0x20, 0x13, 0x3f, 0x3f, 0xeb, 0x53, 0x77, 0x52, 0x68, 0x1f, 0x56, 0x32, 0xb3, + 0x9c, 0xf7, 0x69, 0x6b, 0xfc, 0x99, 0xc6, 0x57, 0xf1, 0x70, 0x78, 0x46, 0xab, 0x38, 0x5b, 0xb3, + 0x42, 0xcc, 0x82, 0x12, 0x93, 0xf5, 0x4b, 0xf2, 0x81, 0xec, 0x27, 0x33, 0xf3, 0xae, 0x1f, 0x5a, + 0x36, 0x8e, 0xe4, 0x55, 0x77, 0xb1, 0xeb, 0x87, 0x7b, 0x38, 0x62, 0x11, 0xa7, 0xe2, 0xef, 0xac, + 0x0d, 0xf8, 0x6f, 0xb4, 0x64, 0x4d, 0xe7, 0x54, 0xc0, 0x29, 0x63, 0x9a, 0x89, 0x65, 0x46, 0xab, + 0x42, 0xfe, 0x42, 0x9c, 0x82, 0x9b, 0xd4, 0x41, 0x31, 0xad, 0x03, 0x66, 0x39, 0x94, 0xba, 0x22, + 0xbd, 0x56, 0x30, 0xf9, 0x6f, 0xb6, 0xbb, 0x33, 0xbc, 0x9f, 0xb5, 0x72, 0xc6, 0xa0, 0x9b, 0xf8, + 0xb9, 0x74, 0x20, 0xe7, 0xb1, 0xc1, 0xd3, 0xe2, 0x16, 0x32, 0x4b, 0xfe, 0x6b, 0xb0, 0x9c, 0x9a, + 0xfa, 0xac, 0x05, 0xfb, 0x0d, 0x0d, 0xd6, 0x94, 0xe6, 0xe6, 0x17, 0xef, 0x14, 0x9b, 0xf9, 0xc5, + 0x02, 0x62, 0x58, 0x9f, 0xe4, 0xe0, 0xac, 0xa5, 0xfc, 0x27, 0xe1, 0x3d, 0x5f, 0xe1, 0x83, 0x67, + 0xfa, 0x59, 0xb3, 0x90, 0x7d, 0xd6, 0x14, 0x8a, 0x29, 0xc6, 0x8a, 0xf9, 0xe8, 0xcf, 0x9c, 0x46, + 0x0f, 0x1a, 0xb1, 0x38, 0xf3, 0xeb, 0xea, 0x1a, 0xe4, 0xfb, 0xa3, 0x17, 0x6e, 0x56, 0x86, 0x33, + 0x7e, 0x57, 0x98, 0xc7, 0xcf, 0xe4, 0x48, 0x9f, 0x70, 0x93, 0xd2, 0x4e, 0xce, 0xf5, 0x10, 0xff, + 0x89, 0x96, 0xf8, 0x91, 0x79, 0x8d, 0xe5, 0x13, 0xb0, 0x18, 0x32, 0xee, 0x66, 0xa6, 0xba, 0x05, + 0xdf, 0x92, 0x80, 0x85, 0x6d, 0x04, 0xdb, 0x47, 0x56, 0xda, 0x7e, 0x2a, 0x0c, 0xf2, 0xe8, 0xcc, + 0x6c, 0xc8, 0x70, 0x61, 0x35, 0x2b, 0xd1, 0xb9, 0xda, 0xcb, 0xaf, 0xc3, 0x85, 0x2f, 0x7b, 0x2c, + 0xf0, 0xbc, 0x43, 0x22, 0x1a, 0xfa, 0xe3, 0x57, 0x6b, 0x32, 0x06, 0x81, 0x8b, 0xb3, 0xa6, 0x3f, + 0x6b, 0x33, 0xf9, 0x3a, 0x5c, 0x32, 0x49, 0xcf, 0x89, 0x28, 0x09, 0xd9, 0xdd, 0xe0, 0xe0, 0x59, + 0x44, 0xc2, 0x11, 0x09, 0xe7, 0x91, 0x73, 0x0d, 0x16, 0xd9, 0xf5, 0x91, 0x46, 0x32, 0x6a, 0x2f, + 0x0e, 0xf0, 0x71, 0x3b, 0x32, 0xde, 0x82, 0xcb, 0xb3, 0x67, 0x90, 0xa2, 0xc4, 0x7c, 0x69, 0xd9, + 0x18, 0xb4, 0xc9, 0x73, 0x9f, 0xe7, 0xc4, 0xd4, 0x10, 0x2e, 0xcc, 0x18, 0xfe, 0x24, 0x8e, 0x98, + 0x09, 0x3b, 0x91, 0x65, 0xbb, 0x04, 0x8b, 0xeb, 0x5c, 0xd9, 0x2c, 0x39, 0x11, 0x4f, 0x21, 0x9d, + 0xfe, 0x6a, 0xf9, 0x35, 0xb8, 0x60, 0x92, 0x81, 0x2f, 0xee, 0x61, 0xe7, 0x20, 0xd6, 0x2e, 0x5c, + 0x9c, 0x35, 0xfe, 0x89, 0x9a, 0xfe, 0x8e, 0x06, 0x1b, 0x87, 0x47, 0xe3, 0xc8, 0xb1, 0xb1, 0xfb, + 0xd3, 0x64, 0x0f, 0x66, 0xb3, 0x34, 0x47, 0xce, 0xc0, 0x78, 0x07, 0x9a, 0xd3, 0x0c, 0x9d, 0xb8, + 0x36, 0xf1, 0x02, 0xe4, 0x5e, 0xb2, 0x00, 0x7f, 0xaa, 0x01, 0x6a, 0x05, 0xae, 0x43, 0x4d, 0xbe, + 0x33, 0xe6, 0xcb, 0x92, 0x54, 0x22, 0x36, 0x42, 0xb2, 0x9d, 0xc5, 0x5b, 0x2b, 0x07, 0x32, 0xa1, + 0xd8, 0x0d, 0x56, 0x11, 0xa8, 0xac, 0x50, 0x45, 0x61, 0x23, 0x74, 0x11, 0x2a, 0x4e, 0x64, 0x85, + 0xf8, 0xb9, 0xd5, 0x1f, 0x29, 0x5f, 0xe8, 0x44, 0x26, 0x7e, 0xfe, 0x70, 0x64, 0xfc, 0x83, 0x06, + 0x2b, 0x19, 0xf6, 0xe6, 0xdf, 0xee, 0xaf, 0x43, 0xc1, 0x25, 0x5d, 0x2a, 0xaf, 0xb9, 0xf5, 0x1d, + 0x59, 0xd2, 0x26, 0x06, 0xe6, 0x1c, 0x73, 0x3c, 0xda, 0x82, 0x62, 0xe8, 0xf4, 0x8e, 0xa8, 0x2c, + 0xed, 0x99, 0x45, 0x28, 0x08, 0xd0, 0x16, 0x73, 0xcc, 0x3d, 0x9e, 0x78, 0x16, 0x69, 0x88, 0x09, + 0x5a, 0x53, 0xa1, 0x8d, 0xdf, 0xd2, 0x40, 0x37, 0x09, 0xee, 0xec, 0x7b, 0x1d, 0x72, 0x3c, 0x8f, + 0x8e, 0x2f, 0x40, 0x39, 0x7e, 0x6d, 0x13, 0xd6, 0x54, 0x8a, 0xe4, 0x3b, 0x5b, 0x72, 0x26, 0xe5, + 0x5f, 0x72, 0x26, 0x19, 0x7f, 0xa8, 0xc1, 0x72, 0x8a, 0x8d, 0xf9, 0x75, 0x79, 0x05, 0x20, 0x24, + 0xb8, 0x63, 0x39, 0x6c, 0x20, 0x95, 0x93, 0x08, 0xd5, 0xc8, 0x8c, 0x25, 0x66, 0x5d, 0xa4, 0x33, + 0x55, 0x1e, 0x15, 0x9b, 0x9f, 0x24, 0x30, 0x5a, 0xb0, 0xf2, 0x78, 0x64, 0xdb, 0xf7, 0x09, 0xbd, + 0x3d, 0x66, 0xfc, 0x9e, 0x45, 0xfc, 0x6d, 0xfc, 0x8e, 0x06, 0xab, 0xd9, 0x51, 0xcf, 0xfa, 0x5a, + 0x7d, 0x1d, 0x0a, 0xfc, 0xe5, 0x6c, 0x52, 0x3e, 0x36, 0x2b, 0x97, 0x8f, 0xa3, 0x8d, 0xaf, 0xc3, + 0x46, 0xcc, 0x87, 0x7c, 0x17, 0x3d, 0xdb, 0xd5, 0x67, 0xfb, 0xb7, 0x39, 0x3d, 0xc5, 0x59, 0x8b, + 0x2b, 0x55, 0x9c, 0x4f, 0xae, 0x38, 0x4a, 0x01, 0x85, 0x93, 0x15, 0xf0, 0x77, 0x25, 0x28, 0xed, + 0x25, 0xc7, 0xbe, 0xe4, 0xc6, 0xe9, 0x70, 0x56, 0x0a, 0x66, 0x59, 0x00, 0xf6, 0x3b, 0xe8, 0x73, + 0x09, 0xab, 0x81, 0x6f, 0x1f, 0xc9, 0x5d, 0xba, 0x92, 0xdd, 0x50, 0x77, 0x19, 0x2a, 0xe6, 0x97, + 0x35, 0xd0, 0x26, 0x14, 0x02, 0x42, 0x54, 0x1d, 0x5e, 0x4d, 0xd1, 0x1f, 0x12, 0x12, 0x9a, 0x1c, + 0xc3, 0xaf, 0x94, 0x24, 0x1c, 0xc8, 0x2b, 0x38, 0xff, 0x8d, 0x6e, 0x42, 0x39, 0x08, 0x1d, 0x3f, + 0x74, 0xe8, 0x98, 0xc7, 0x54, 0xf5, 0xdd, 0x95, 0x94, 0xf6, 0x07, 0x03, 0xec, 0x75, 0x0e, 0x43, + 0xc7, 0x8c, 0x89, 0xd0, 0xdb, 0xd0, 0x70, 0x22, 0xdf, 0xc5, 0xa9, 0xea, 0xac, 0xd2, 0x44, 0x75, + 0xd6, 0xbe, 0xc2, 0xcb, 0xea, 0x2c, 0x27, 0xd3, 0x46, 0x1f, 0x87, 0x3a, 0x4f, 0xb9, 0x38, 0xae, + 0x6b, 0xd9, 0xd8, 0x3e, 0x22, 0xf2, 0x11, 0xba, 0xe6, 0xf9, 0xf4, 0x9e, 0xe3, 0xba, 0x7b, 0x0c, + 0xc6, 0x57, 0x7a, 0xec, 0xd9, 0x96, 0xeb, 0xf7, 0x44, 0x01, 0x8f, 0x59, 0x62, 0xed, 0x47, 0x7e, + 0x0f, 0x6d, 0x81, 0x1e, 0x12, 0xdb, 0x0f, 0x3b, 0xbc, 0xfa, 0xc7, 0x8a, 0x28, 0xa6, 0xb2, 0x82, + 0xa7, 0x2e, 0xe0, 0x6d, 0x67, 0x40, 0x5a, 0x14, 0xd3, 0x14, 0x65, 0x64, 0x63, 0x4f, 0x50, 0x56, + 0xd3, 0x94, 0xec, 0x10, 0xe1, 0x94, 0xd7, 0x98, 0xd6, 0x03, 0xd7, 0xb1, 0xb1, 0xc5, 0x76, 0xaf, + 0x2c, 0xe3, 0xa9, 0x4a, 0x18, 0x73, 0x15, 0xe8, 0x3a, 0xd4, 0xc5, 0x33, 0x39, 0xe9, 0x58, 0xe2, + 0x48, 0x59, 0xe2, 0x77, 0xf3, 0x25, 0x05, 0xe5, 0x6f, 0xb0, 0xe8, 0x17, 0xe1, 0x02, 0x3b, 0xec, + 0xc8, 0x31, 0xb1, 0x87, 0x5c, 0x49, 0x9d, 0x61, 0x28, 0xb4, 0x35, 0x50, 0xe5, 0x6e, 0xeb, 0x03, + 0x7c, 0x7c, 0x57, 0xe1, 0xef, 0x48, 0xf4, 0x63, 0xfe, 0xf6, 0x8b, 0x83, 0xc0, 0x75, 0x88, 0xf2, + 0x27, 0x0d, 0x91, 0x1b, 0x96, 0x40, 0xe1, 0x52, 0x36, 0xa0, 0x44, 0x71, 0xd4, 0x67, 0xa6, 0xa3, + 0x8b, 0x72, 0x04, 0xd6, 0xdc, 0xef, 0xf0, 0xc3, 0x85, 0x62, 0x97, 0x08, 0x01, 0x96, 0xb9, 0x00, + 0x15, 0x0e, 0xe1, 0xec, 0x7f, 0x0a, 0x10, 0x63, 0x74, 0x18, 0xda, 0xc4, 0xea, 0x85, 0xfe, 0x30, + 0xb0, 0x28, 0xee, 0x35, 0x11, 0x37, 0x64, 0x5d, 0x61, 0xee, 0x33, 0x44, 0x1b, 0xf7, 0xd0, 0xe7, + 0x61, 0xa9, 0xe3, 0x44, 0x7d, 0xab, 0x3b, 0x74, 0x5d, 0xcb, 0x0f, 0x68, 0x73, 0x85, 0x2f, 0xf2, + 0x6a, 0xbc, 0xc8, 0x77, 0x9c, 0xa8, 0x7f, 0x6f, 0xe8, 0xba, 0x07, 0x01, 0x35, 0xab, 0x9d, 0xa4, + 0xc1, 0x74, 0xce, 0x0e, 0x31, 0x42, 0xc3, 0xb1, 0x15, 0x8a, 0x2d, 0xde, 0x5c, 0x15, 0x3a, 0x77, + 0x22, 0x93, 0x81, 0xd5, 0xc6, 0x7f, 0x0b, 0xaa, 0x38, 0x70, 0xe2, 0x14, 0xf7, 0xda, 0x84, 0xf9, + 0xdd, 0x3a, 0xdc, 0x97, 0x89, 0x6e, 0x13, 0x70, 0xe0, 0x24, 0x0f, 0xfb, 0x0d, 0x91, 0x05, 0xa7, + 0xf1, 0x3a, 0xac, 0xf3, 0x75, 0xa8, 0xc7, 0x60, 0xb1, 0x10, 0xbf, 0x04, 0xa2, 0xb0, 0xda, 0x52, + 0xde, 0x65, 0x83, 0xef, 0x8c, 0xb5, 0x1d, 0x55, 0x6e, 0xdd, 0x66, 0x7f, 0x95, 0x8b, 0xa9, 0xd1, + 0x54, 0xeb, 0x4b, 0x85, 0x72, 0x41, 0x2f, 0xb2, 0xe5, 0xc7, 0x1d, 0xeb, 0xdd, 0xa1, 0x1f, 0x0e, + 0x07, 0xc6, 0xbf, 0xe5, 0xa0, 0xac, 0x9c, 0xf6, 0x54, 0xe9, 0x8d, 0x36, 0x5d, 0x7a, 0x73, 0x0d, + 0x6a, 0xbc, 0xae, 0x20, 0x9b, 0xe7, 0xaf, 0x32, 0x98, 0x12, 0x65, 0xda, 0x99, 0xa4, 0xeb, 0x1e, + 0x0a, 0xd9, 0xba, 0x87, 0x74, 0x1d, 0x68, 0x31, 0x5b, 0x07, 0xba, 0x25, 0x4b, 0x18, 0xe8, 0x38, + 0x20, 0x72, 0x17, 0x57, 0x63, 0x35, 0x1e, 0x04, 0xa2, 0x78, 0xa1, 0x3d, 0x0e, 0x08, 0xfa, 0x24, + 0x20, 0x4e, 0x99, 0x2d, 0x98, 0x2a, 0xf1, 0xe1, 0x1a, 0x0c, 0x73, 0x2f, 0x55, 0x34, 0x35, 0xab, + 0x2c, 0xb4, 0x3c, 0xb3, 0x2c, 0x74, 0xaa, 0x56, 0xae, 0x32, 0x5d, 0x2b, 0x37, 0x51, 0x3a, 0x0a, + 0x53, 0xa5, 0xa3, 0xc6, 0x7b, 0x05, 0x28, 0xab, 0x54, 0x7b, 0xea, 0xe4, 0xd4, 0x5e, 0x72, 0x72, + 0xa2, 0xcb, 0xcc, 0x9d, 0xd2, 0x70, 0x8c, 0x9f, 0xb9, 0x44, 0x7a, 0xeb, 0x04, 0xc0, 0xfc, 0x38, + 0x7e, 0xe6, 0x87, 0x54, 0x26, 0x69, 0x44, 0x03, 0xed, 0x42, 0xd9, 0xf6, 0xbd, 0xae, 0xeb, 0xd8, + 0x74, 0xea, 0xa9, 0xf1, 0x2b, 0xa1, 0x43, 0x99, 0x25, 0x70, 0xac, 0x19, 0xd3, 0x31, 0x83, 0xc2, + 0x2e, 0x33, 0x89, 0xb1, 0x2c, 0xd0, 0x29, 0x4a, 0x83, 0x8a, 0x2d, 0x56, 0x60, 0x79, 0x8d, 0x8e, + 0x59, 0xc3, 0xa9, 0x16, 0x7a, 0x03, 0xca, 0xaa, 0xea, 0x7f, 0xaa, 0xc8, 0xe4, 0x8e, 0x44, 0x98, + 0x31, 0x09, 0xba, 0x03, 0xcb, 0xb1, 0x32, 0x2d, 0x72, 0x1c, 0x38, 0x21, 0xe9, 0xf0, 0x65, 0xaa, + 0xee, 0x36, 0x33, 0xfe, 0x99, 0xa9, 0xf6, 0xae, 0xc0, 0x9b, 0x0d, 0x3b, 0x0b, 0x60, 0x9b, 0x98, + 0x99, 0x4c, 0x92, 0xe0, 0x2e, 0xf3, 0x11, 0x56, 0xd3, 0x6f, 0x44, 0x4f, 0x64, 0xb2, 0xdb, 0xac, + 0xd2, 0xa4, 0x81, 0x1e, 0xc0, 0x4a, 0x32, 0x3f, 0xf5, 0x7d, 0xcb, 0xc5, 0x61, 0x4f, 0x54, 0x52, + 0x56, 0x77, 0x2f, 0x4c, 0x71, 0xd0, 0xf6, 0xfd, 0x47, 0x8c, 0xc0, 0xd4, 0xed, 0x09, 0x08, 0xda, + 0x03, 0x3d, 0xa9, 0xe6, 0xed, 0x62, 0xc7, 0x25, 0x1d, 0xee, 0xac, 0xd3, 0x82, 0xc4, 0xe5, 0xbc, + 0xf7, 0x38, 0xde, 0x4c, 0xea, 0x7f, 0x05, 0xc0, 0x78, 0x5f, 0x83, 0xa5, 0xcc, 0xaa, 0x64, 0x02, + 0x01, 0x2d, 0x1b, 0x06, 0x5e, 0x85, 0xaa, 0x5a, 0xb2, 0x24, 0x4c, 0x00, 0x05, 0x6a, 0x47, 0x33, + 0xb6, 0x5d, 0x13, 0x4a, 0x72, 0xeb, 0x8a, 0x2a, 0x48, 0x53, 0x35, 0x99, 0xd7, 0x8c, 0x07, 0x4b, + 0xcc, 0x5b, 0xec, 0x3f, 0x5d, 0x61, 0xe2, 0xc2, 0xdd, 0x4d, 0xa8, 0xa5, 0x6d, 0x40, 0xcd, 0xa4, + 0x25, 0x01, 0xd9, 0x9f, 0x6b, 0x50, 0x56, 0xeb, 0x9d, 0xae, 0x2c, 0xd3, 0x32, 0x95, 0x65, 0xca, + 0x0d, 0x24, 0xd1, 0x1c, 0x27, 0x64, 0x57, 0x88, 0x6d, 0x58, 0x56, 0x56, 0xc2, 0xd0, 0xd6, 0x11, + 0x8e, 0x8e, 0xe4, 0xeb, 0x60, 0x43, 0x21, 0x1e, 0x92, 0xf1, 0x03, 0x1c, 0x1d, 0xa1, 0xcf, 0x02, + 0xf0, 0x22, 0x59, 0xfb, 0x08, 0x3b, 0x9e, 0x8c, 0xcc, 0xd7, 0x77, 0xe2, 0xaf, 0x4f, 0xbe, 0x82, + 0x1d, 0x7a, 0xcf, 0x0f, 0xef, 0x7a, 0xcc, 0x27, 0x57, 0x18, 0xe5, 0x1e, 0x23, 0x34, 0xbe, 0xab, + 0x41, 0x63, 0xc2, 0xb6, 0x4e, 0xd2, 0xf7, 0x0e, 0xac, 0x60, 0x4a, 0xc9, 0x20, 0x60, 0x0e, 0x39, + 0xd1, 0x91, 0xd0, 0xfb, 0x72, 0x8c, 0x8a, 0x1d, 0xc1, 0xb4, 0xfa, 0xa7, 0xdc, 0x47, 0x61, 0xca, + 0x7d, 0x18, 0xfb, 0x50, 0x4d, 0x59, 0xeb, 0x4b, 0xd6, 0xff, 0xc4, 0x82, 0x3e, 0xe3, 0x26, 0xe8, + 0x93, 0x86, 0x9b, 0x2d, 0x56, 0xd2, 0x26, 0x8a, 0x95, 0x7e, 0xa4, 0x41, 0x63, 0xc2, 0x46, 0x4f, + 0x62, 0x60, 0x3a, 0x0d, 0xfe, 0x69, 0xa8, 0xc4, 0x26, 0xcd, 0x05, 0xaf, 0xef, 0xa2, 0x69, 0xeb, + 0x37, 0x13, 0x22, 0xb6, 0xcc, 0xdc, 0xc7, 0x38, 0x5e, 0x6f, 0xb2, 0xba, 0xb0, 0xa1, 0x10, 0xaa, + 0xbe, 0xf0, 0x53, 0x80, 0x62, 0xda, 0x29, 0x1b, 0x55, 0x98, 0x58, 0x91, 0xdf, 0xd7, 0x00, 0x58, + 0x80, 0x24, 0xaa, 0x27, 0xd0, 0x27, 0x60, 0x99, 0xdb, 0xc8, 0x73, 0xec, 0xba, 0x22, 0x9e, 0x1a, + 0x08, 0x81, 0xf2, 0x66, 0x9d, 0x21, 0xbe, 0x82, 0x5d, 0x97, 0x91, 0x3f, 0x8e, 0xd0, 0x4d, 0x58, + 0x0d, 0x42, 0xdf, 0x26, 0x51, 0x94, 0xa5, 0xce, 0x71, 0xea, 0x65, 0x89, 0x4b, 0x75, 0xd8, 0x81, + 0xd5, 0xfe, 0x88, 0x87, 0x23, 0xd9, 0x0e, 0x79, 0xde, 0x41, 0xef, 0x8f, 0x58, 0x60, 0x92, 0xd0, + 0x1b, 0x5f, 0x85, 0x32, 0x0b, 0xc8, 0xf8, 0x09, 0xbb, 0x0a, 0x45, 0xea, 0x53, 0xec, 0x4a, 0x5e, + 0x44, 0x83, 0xb9, 0x7a, 0x39, 0x0d, 0xe9, 0xc8, 0x79, 0x13, 0x40, 0x7c, 0x19, 0x7b, 0x36, 0xa6, + 0x44, 0xcd, 0xc2, 0x2f, 0x63, 0xb7, 0x19, 0xc0, 0xf8, 0xb6, 0x06, 0xc0, 0xc6, 0x97, 0x92, 0xdf, + 0x80, 0x22, 0xff, 0x42, 0x60, 0xea, 0x80, 0x51, 0x3c, 0x98, 0x02, 0xcf, 0x22, 0xfc, 0xb8, 0xbe, + 0x76, 0x26, 0x1d, 0x47, 0x33, 0xb2, 0x0e, 0xa6, 0x78, 0xea, 0x26, 0x94, 0x90, 0x31, 0xb4, 0xf1, + 0xa3, 0xbc, 0xf8, 0x36, 0x47, 0x70, 0xf1, 0x74, 0x17, 0xbd, 0x01, 0x28, 0x16, 0x41, 0x45, 0x0b, + 0xca, 0xa6, 0x96, 0x63, 0x8c, 0x8c, 0x19, 0x22, 0xf4, 0x39, 0xd8, 0x98, 0x26, 0x4f, 0x7f, 0x1e, + 0xb2, 0x36, 0xd5, 0x87, 0x07, 0x09, 0xd7, 0xa1, 0xce, 0x75, 0x98, 0x4c, 0x21, 0xab, 0xbd, 0x38, + 0x34, 0x1e, 0xfe, 0x8b, 0x70, 0x39, 0x64, 0xe1, 0x53, 0xe7, 0x99, 0xd5, 0xe1, 0x49, 0x68, 0x2b, + 0xea, 0x3b, 0x41, 0xc0, 0xb7, 0xf6, 0xd0, 0xa3, 0xd2, 0xd5, 0x5c, 0x90, 0x34, 0x22, 0x4f, 0xdd, + 0x12, 0x14, 0x7b, 0x8c, 0x80, 0xc5, 0xbf, 0x6a, 0x00, 0xe6, 0x9f, 0xb2, 0xbd, 0x85, 0x05, 0xaf, + 0x4b, 0x82, 0x87, 0x64, 0x9c, 0xe9, 0xfa, 0x36, 0x5c, 0x51, 0x5d, 0x9f, 0x71, 0x07, 0xc7, 0xaf, + 0x07, 0xd6, 0x11, 0x73, 0x61, 0xbc, 0x7b, 0x31, 0x33, 0xf9, 0x6d, 0x46, 0xc3, 0x6f, 0x0b, 0x0f, + 0x1c, 0x2a, 0x46, 0xf8, 0x05, 0x68, 0x66, 0x47, 0xe0, 0xf6, 0x20, 0x3a, 0x8b, 0x2f, 0x0d, 0xd6, + 0xd2, 0x9d, 0x99, 0xfd, 0x89, 0x8e, 0x9f, 0x85, 0x8d, 0x19, 0x1d, 0x99, 0x21, 0xc9, 0xe8, 0x68, + 0x75, 0xb2, 0x1f, 0xb3, 0x29, 0xe3, 0xb7, 0x35, 0xa8, 0xa6, 0x2a, 0x93, 0x58, 0x48, 0xcb, 0x8d, + 0x5c, 0x14, 0x32, 0x49, 0xcb, 0x4a, 0x42, 0xda, 0x64, 0xdf, 0x99, 0x40, 0x93, 0x3d, 0xf8, 0x16, + 0x54, 0xf9, 0xfd, 0x44, 0xf6, 0xca, 0x4d, 0xf4, 0x4a, 0xac, 0xc5, 0x84, 0x28, 0xfe, 0x2d, 0x6a, + 0x99, 0x44, 0xa4, 0x6a, 0xfc, 0xa6, 0x06, 0x4b, 0x99, 0x0a, 0xa9, 0x39, 0x39, 0xf9, 0x65, 0xa8, + 0xa7, 0x38, 0xb1, 0x46, 0xbb, 0x92, 0x99, 0xb5, 0x19, 0xcc, 0x3c, 0xdd, 0x35, 0x6b, 0x51, 0xaa, + 0x65, 0xbc, 0x03, 0x8b, 0x22, 0x4b, 0x9e, 0x54, 0x52, 0x68, 0x2f, 0xa9, 0xbc, 0x39, 0xe5, 0x63, + 0xb2, 0xf1, 0x2d, 0x0d, 0xca, 0xaa, 0x84, 0x11, 0x5d, 0x82, 0x9c, 0x1f, 0xf0, 0xa1, 0x27, 0xe2, + 0xdc, 0x9c, 0x1f, 0x9c, 0xfa, 0x79, 0x3a, 0xe3, 0x92, 0x0b, 0xa7, 0x70, 0xc9, 0xc6, 0xff, 0x6a, + 0x50, 0x61, 0x97, 0x7a, 0x1e, 0x88, 0xa0, 0xab, 0x50, 0xe0, 0xe1, 0xf6, 0x0c, 0x36, 0x38, 0xe2, + 0xa4, 0x44, 0xd5, 0xa5, 0xa9, 0x6f, 0x32, 0x52, 0xdf, 0x63, 0x5c, 0x85, 0x6a, 0x74, 0xe4, 0x87, + 0xd4, 0x4a, 0x7d, 0x95, 0x61, 0x02, 0x07, 0xf1, 0x2f, 0x53, 0x98, 0x03, 0x38, 0xc2, 0x91, 0xe5, + 0x8f, 0x48, 0xe8, 0x62, 0xbe, 0xb7, 0x54, 0x85, 0xb8, 0x7c, 0x42, 0x5e, 0x3b, 0xc2, 0xd1, 0x41, + 0x8c, 0x55, 0x75, 0x66, 0x68, 0x13, 0x6a, 0xac, 0x5f, 0xcf, 0xb6, 0xba, 0xfc, 0x4b, 0x15, 0xf1, + 0x84, 0x02, 0x47, 0x38, 0xba, 0x6f, 0xdf, 0x63, 0x10, 0xc6, 0x72, 0x8c, 0x15, 0x56, 0x5f, 0xea, + 0x09, 0x94, 0xf1, 0x05, 0x21, 0xbb, 0xe0, 0xe0, 0x84, 0xb3, 0x2f, 0x56, 0x76, 0x2e, 0xbd, 0x7c, + 0x1f, 0xe4, 0xa0, 0xcc, 0xba, 0xf3, 0x8b, 0xd1, 0x4f, 0xa3, 0xb9, 0x54, 0xa0, 0x96, 0xcf, 0x06, + 0x6a, 0x2f, 0x55, 0xdb, 0x74, 0xfd, 0xc1, 0x69, 0xbe, 0x45, 0x4a, 0xdf, 0xba, 0x4a, 0x93, 0xb7, + 0xae, 0xd3, 0x5e, 0x8f, 0x26, 0xae, 0x3e, 0x95, 0xe9, 0xaf, 0xe6, 0xae, 0x42, 0x35, 0xfe, 0x06, + 0x80, 0x8a, 0xcb, 0x51, 0xc1, 0x04, 0x05, 0x6a, 0xf3, 0x27, 0xca, 0xb2, 0xca, 0x28, 0xc5, 0x07, + 0x92, 0x36, 0x23, 0xe5, 0xc4, 0x53, 0xe2, 0xe2, 0x40, 0xda, 0x86, 0x45, 0x7e, 0x80, 0xa9, 0xdc, + 0x37, 0xca, 0x10, 0x72, 0x33, 0x36, 0x25, 0x05, 0xa3, 0x95, 0xdf, 0xfa, 0xe4, 0x67, 0xd0, 0x72, + 0x0d, 0xaa, 0xef, 0x7f, 0x8c, 0xcf, 0x40, 0x49, 0x16, 0x97, 0x71, 0xa5, 0x1e, 0x7b, 0xd2, 0x08, + 0xd8, 0x4f, 0xb4, 0x0e, 0x8b, 0x11, 0xff, 0x4e, 0x40, 0x2e, 0x9d, 0x6c, 0x19, 0x6f, 0xf3, 0xbb, + 0x1d, 0xcf, 0xc2, 0x66, 0x13, 0xff, 0xda, 0x8b, 0x9f, 0xbd, 0x72, 0x99, 0x67, 0xaf, 0xbf, 0xd7, + 0x00, 0x1e, 0x11, 0xdc, 0x21, 0x21, 0x9f, 0xfa, 0xc4, 0x24, 0xda, 0x06, 0x94, 0x02, 0x42, 0x42, + 0x86, 0x92, 0x6c, 0xb0, 0xe6, 0x7e, 0x27, 0xce, 0x81, 0xe5, 0x53, 0x39, 0xb0, 0xc9, 0x8c, 0x5b, + 0xe1, 0x94, 0x19, 0xb7, 0x37, 0x65, 0xb8, 0xc1, 0x24, 0x24, 0xf2, 0x32, 0x98, 0xe8, 0x8d, 0x9d, + 0x11, 0x2d, 0x86, 0x11, 0x21, 0x08, 0xff, 0x69, 0xec, 0x43, 0x25, 0x86, 0x4f, 0xa7, 0x7b, 0xb4, + 0xd9, 0xe9, 0x1e, 0x5e, 0xf4, 0x46, 0x13, 0x85, 0xe2, 0x2e, 0x69, 0x47, 0x46, 0x0b, 0x90, 0x78, + 0xa7, 0xe2, 0x2a, 0x51, 0x39, 0x95, 0x37, 0x92, 0x4c, 0xbc, 0x28, 0x01, 0x4f, 0x5c, 0x7e, 0xa2, + 0xbb, 0x38, 0x1d, 0x8f, 0xea, 0x90, 0x8b, 0x07, 0xce, 0xd1, 0xc8, 0xf8, 0x22, 0xac, 0x64, 0x06, + 0x95, 0xe9, 0xd3, 0x66, 0x76, 0xd4, 0xc2, 0x8b, 0x07, 0xb8, 0x03, 0xa8, 0x45, 0xfd, 0x90, 0xb4, + 0x18, 0x93, 0x2d, 0xc5, 0xd5, 0x0e, 0x54, 0x58, 0x2c, 0xc0, 0x93, 0xef, 0xb3, 0xce, 0x04, 0x91, + 0x9c, 0x2f, 0xf7, 0xe5, 0x2f, 0x63, 0x07, 0x56, 0x32, 0xa3, 0x48, 0x36, 0x52, 0xba, 0xd0, 0x32, + 0xba, 0xb0, 0xf9, 0x83, 0xf6, 0x7d, 0xc2, 0x0c, 0xa8, 0xdd, 0x7e, 0x74, 0x3e, 0xc5, 0x69, 0x7f, + 0xa0, 0xf1, 0x47, 0xe6, 0xd4, 0x2c, 0xe7, 0x90, 0x5c, 0x4e, 0x3e, 0x78, 0xe1, 0x2e, 0xea, 0xc4, + 0xf2, 0xb4, 0x7f, 0x11, 0x75, 0x5c, 0x7b, 0xb7, 0x5a, 0xe7, 0x59, 0xc7, 0xf5, 0x29, 0x16, 0x9e, + 0x92, 0x91, 0xe3, 0x0f, 0xa3, 0xd4, 0xb7, 0x49, 0x82, 0x17, 0x5d, 0x61, 0xe2, 0x2f, 0x93, 0xae, + 0x43, 0x3d, 0xa6, 0x16, 0x83, 0x89, 0xda, 0xde, 0x25, 0x05, 0x7d, 0x9a, 0x2a, 0x0e, 0x5b, 0x9c, + 0x2c, 0x0e, 0x2b, 0xc5, 0x92, 0x1b, 0x3f, 0x14, 0xc5, 0x2c, 0x5c, 0xb8, 0xb3, 0xd6, 0x73, 0x13, + 0x4a, 0xd1, 0xd0, 0xb6, 0x89, 0x7c, 0x96, 0x29, 0x9b, 0xaa, 0x79, 0x2e, 0xc2, 0x1a, 0x77, 0x60, + 0xfd, 0x3e, 0xe1, 0x9f, 0xad, 0xb2, 0x1b, 0x37, 0xdf, 0x80, 0x1f, 0x7d, 0xbd, 0x8c, 0xef, 0x69, + 0xb0, 0x31, 0x35, 0xcc, 0x59, 0x6b, 0xe6, 0xd3, 0xcc, 0xf9, 0x52, 0x7e, 0x4a, 0xe5, 0x4f, 0x4c, + 0x17, 0x28, 0x32, 0xe3, 0x1f, 0x45, 0xed, 0xcc, 0x9e, 0x2f, 0x6f, 0x1d, 0x7e, 0x38, 0x67, 0x21, + 0x84, 0xed, 0x07, 0xa1, 0xe5, 0xe1, 0x81, 0x4a, 0xe1, 0x95, 0x19, 0xe0, 0x09, 0x1e, 0xf0, 0x83, + 0x96, 0x23, 0xe5, 0xc5, 0xc5, 0x0a, 0xc9, 0xbb, 0x72, 0x5b, 0xd6, 0x19, 0x5c, 0x25, 0x89, 0xc9, + 0xbb, 0xa9, 0x17, 0xc0, 0xc2, 0xcb, 0xaa, 0x52, 0x90, 0xbc, 0xad, 0x89, 0x15, 0x13, 0x57, 0xb3, + 0x21, 0xaf, 0xbd, 0xc9, 0x88, 0x72, 0xd6, 0x0a, 0x46, 0xa9, 0x4b, 0xa2, 0x9a, 0xf6, 0x7d, 0x51, + 0x93, 0xc8, 0x1d, 0x6f, 0x34, 0x1c, 0xcc, 0xa3, 0xbf, 0xcf, 0x43, 0x05, 0xbb, 0x3d, 0x3f, 0x74, + 0xe8, 0xd1, 0x80, 0x4f, 0x58, 0xdf, 0xbd, 0x98, 0x50, 0xcb, 0x81, 0x6f, 0x29, 0x0a, 0x33, 0x21, + 0xfe, 0x28, 0x8f, 0xa6, 0x7f, 0x2d, 0xea, 0x86, 0x12, 0x3e, 0xcf, 0x5a, 0x39, 0x17, 0xa1, 0x6c, + 0xcb, 0xc1, 0xe3, 0xb0, 0x58, 0xb6, 0x99, 0x85, 0x88, 0xeb, 0x6b, 0x7f, 0x14, 0x7f, 0x4d, 0xc6, + 0x01, 0x0f, 0x47, 0x3c, 0x7c, 0x12, 0x48, 0x71, 0xf3, 0x17, 0x31, 0x1e, 0x70, 0x90, 0xb8, 0xfa, + 0xff, 0x20, 0x0f, 0xb5, 0x3d, 0x7f, 0x10, 0x60, 0x9b, 0x0a, 0x06, 0xde, 0x81, 0x35, 0x12, 0x86, + 0x96, 0xe3, 0x8d, 0xb0, 0xeb, 0x74, 0xac, 0x6c, 0x38, 0x52, 0xdd, 0xfd, 0x78, 0x3a, 0xc5, 0x19, + 0xf7, 0xda, 0x17, 0xd4, 0x2d, 0x19, 0xaa, 0x3c, 0x58, 0x30, 0x11, 0x09, 0x27, 0xa1, 0xc8, 0x85, + 0xcb, 0x6c, 0xe8, 0x40, 0xd6, 0x29, 0x58, 0x14, 0x3f, 0x73, 0x49, 0xca, 0x9b, 0x88, 0x1b, 0xd5, + 0xf6, 0xcc, 0x19, 0x54, 0x71, 0x43, 0x9b, 0xf5, 0x51, 0x7e, 0xe6, 0xc1, 0x82, 0xd9, 0x24, 0xe1, + 0x6c, 0x1c, 0xb2, 0x60, 0x83, 0xcd, 0x66, 0x8b, 0x41, 0x2c, 0xc7, 0xb3, 0x82, 0xd0, 0xef, 0x85, + 0x24, 0x8a, 0x64, 0x22, 0xe2, 0xf5, 0x99, 0x13, 0xc9, 0xdf, 0xfb, 0xde, 0xa1, 0xa4, 0x7e, 0xb0, + 0x60, 0xae, 0x92, 0x70, 0x1a, 0x8e, 0xba, 0x70, 0x91, 0x4d, 0x40, 0x7d, 0xdf, 0x1a, 0x60, 0x6f, + 0x6c, 0x05, 0xc4, 0xeb, 0x38, 0x5e, 0xcf, 0xa2, 0x38, 0xea, 0x47, 0x32, 0x56, 0xda, 0x9a, 0x39, + 0x47, 0xdb, 0xf7, 0x1f, 0x63, 0x6f, 0x7c, 0x28, 0x3a, 0xb4, 0x19, 0xfd, 0x83, 0x05, 0x73, 0x9d, + 0x84, 0xb3, 0x30, 0xb7, 0x4b, 0xd2, 0x24, 0x8c, 0x2b, 0x70, 0xe9, 0x04, 0xa5, 0x1b, 0x1f, 0x83, + 0x6b, 0x2f, 0xd5, 0x98, 0x71, 0x15, 0xae, 0x9c, 0x28, 0xad, 0x71, 0x0d, 0xae, 0xbe, 0x84, 0x55, + 0xe3, 0xdb, 0xe2, 0xb3, 0x3f, 0x46, 0xa3, 0xb6, 0xe4, 0x89, 0x81, 0xeb, 0x36, 0x2c, 0x4f, 0xac, + 0xb9, 0xa3, 0x72, 0x54, 0x8d, 0x20, 0xcd, 0xe5, 0x7e, 0x87, 0xb9, 0x34, 0xd7, 0xef, 0x65, 0x49, + 0x45, 0xbe, 0xaa, 0x2e, 0xe1, 0x92, 0xd2, 0xf8, 0x40, 0x24, 0x63, 0x05, 0x17, 0x72, 0xc3, 0x7d, + 0x32, 0x7b, 0xbd, 0x5e, 0x9b, 0xa9, 0x7d, 0xb5, 0xa9, 0x3e, 0x06, 0x4b, 0xec, 0xda, 0x17, 0x92, + 0x01, 0x76, 0x3c, 0xc7, 0xeb, 0xc9, 0x0a, 0x25, 0x76, 0x17, 0x34, 0x15, 0x0c, 0xed, 0xf0, 0x7c, + 0x3f, 0xeb, 0x4b, 0xd2, 0x9b, 0x41, 0x78, 0xa9, 0xe5, 0x18, 0xd5, 0x4a, 0xc9, 0x9a, 0xd0, 0xab, + 0x70, 0x5d, 0xdc, 0xb9, 0x1a, 0x31, 0xe2, 0x2e, 0x8f, 0xdb, 0xb7, 0x6f, 0x00, 0x24, 0x4f, 0x79, + 0x68, 0x11, 0x72, 0x4f, 0xdf, 0xd4, 0x17, 0x50, 0x05, 0x8a, 0x4f, 0xdf, 0x6c, 0xb7, 0x1f, 0xe9, + 0x1a, 0x07, 0xed, 0xea, 0xb9, 0xed, 0x4f, 0x02, 0x24, 0x4f, 0xce, 0x08, 0x60, 0xf1, 0x89, 0x1f, + 0x0e, 0xb0, 0xab, 0x2f, 0xa0, 0x12, 0xe4, 0x1f, 0xf9, 0xcf, 0x75, 0x0d, 0x95, 0xa1, 0xf0, 0xc0, + 0xe9, 0x1d, 0xe9, 0xb9, 0xed, 0x9b, 0x50, 0xcf, 0xbe, 0x33, 0xb3, 0x61, 0x5a, 0xfb, 0xfa, 0x02, + 0xfb, 0x6b, 0xee, 0xe9, 0x1a, 0x5a, 0x82, 0x8a, 0xb9, 0x27, 0xbe, 0x5d, 0x6e, 0xe9, 0xb9, 0xed, + 0xa7, 0x50, 0x4d, 0xbd, 0x59, 0xa2, 0x55, 0xd0, 0x9f, 0xf8, 0xf4, 0x96, 0xeb, 0xfa, 0xcf, 0x49, + 0xe7, 0xc0, 0x63, 0x60, 0x7d, 0x01, 0x6d, 0xc0, 0x4a, 0x0c, 0xba, 0xe5, 0x0e, 0xfc, 0x88, 0x72, + 0x84, 0x86, 0x9a, 0xb0, 0x9a, 0x42, 0xf0, 0x14, 0x3f, 0xc7, 0xe4, 0xb6, 0x6d, 0xc8, 0x1d, 0x04, + 0x8c, 0xc3, 0xc3, 0x21, 0x15, 0xac, 0xde, 0x21, 0xae, 0x60, 0x95, 0x9d, 0xd5, 0x7a, 0x0e, 0xd5, + 0xa0, 0xac, 0x2e, 0xe1, 0x7a, 0x9e, 0xc9, 0xb5, 0xef, 0x45, 0x24, 0xa4, 0x7a, 0x01, 0xad, 0x40, + 0x63, 0xe2, 0x83, 0x6b, 0xbd, 0x88, 0x10, 0xd4, 0x39, 0xd7, 0xca, 0x98, 0x23, 0x7d, 0x71, 0x7b, + 0x07, 0x2a, 0x71, 0x4e, 0x82, 0x8d, 0xfc, 0xc4, 0xf7, 0x88, 0x50, 0x22, 0x27, 0xd1, 0x35, 0x36, + 0x89, 0xea, 0x20, 0xb4, 0x93, 0xfd, 0x1f, 0x29, 0x8c, 0xaf, 0x83, 0x6e, 0x57, 0x5f, 0x60, 0xbd, + 0xef, 0x61, 0xde, 0x05, 0x60, 0xb1, 0x45, 0x43, 0xc7, 0x66, 0x1d, 0xfe, 0x44, 0x83, 0x45, 0xf1, + 0x61, 0xb4, 0x18, 0x49, 0xfc, 0xd6, 0x17, 0xd0, 0x1a, 0x2c, 0xb7, 0xdb, 0x8f, 0xc4, 0x33, 0x40, + 0x2c, 0x05, 0xd7, 0x07, 0x63, 0x57, 0x4d, 0x19, 0x63, 0x72, 0xac, 0xc3, 0xe3, 0x38, 0x6f, 0xdf, + 0x3a, 0x1c, 0x46, 0x47, 0xa4, 0xa3, 0xe7, 0xd1, 0x26, 0x5c, 0x8e, 0xc7, 0x99, 0xf1, 0x6f, 0x17, + 0xf4, 0x02, 0xba, 0x00, 0x6b, 0xe9, 0x21, 0xef, 0xf8, 0x4f, 0x7c, 0x7a, 0xe4, 0x78, 0x3d, 0xbd, + 0xb8, 0x7d, 0x1d, 0x4a, 0x77, 0x8f, 0x69, 0x88, 0x0f, 0x02, 0x21, 0xbc, 0x1f, 0xe8, 0x0b, 0x48, + 0x87, 0x1a, 0xbb, 0x4b, 0x1d, 0xb8, 0x1d, 0x1e, 0x66, 0xe9, 0xda, 0xb6, 0x01, 0xcb, 0x53, 0x67, + 0x1d, 0x33, 0x83, 0xbd, 0xd0, 0xfe, 0xdc, 0x5b, 0xd6, 0xaf, 0xfa, 0xa1, 0xbe, 0x70, 0xfb, 0xf5, + 0x7f, 0xfe, 0x8b, 0xb2, 0xf6, 0xc3, 0x0f, 0x5f, 0xd3, 0x7e, 0xf2, 0xe1, 0x6b, 0xda, 0xbf, 0x7f, + 0xf8, 0x9a, 0xf6, 0xfd, 0xff, 0x7c, 0x6d, 0x01, 0x74, 0x3f, 0xec, 0xed, 0x50, 0xa7, 0x3f, 0xda, + 0xe9, 0x8f, 0xf8, 0x7f, 0xe1, 0x7a, 0xb6, 0xc8, 0xff, 0x7c, 0xe6, 0xff, 0x02, 0x00, 0x00, 0xff, + 0xff, 0x6f, 0x7f, 0xdd, 0x89, 0x09, 0x4c, 0x00, 0x00, } func (m *GetRequest) Marshal() (dAtA []byte, err error) { @@ -15420,24 +15866,359 @@ func (m *RawChecksumResponse) MarshalToSizedBuffer(dAtA []byte) (int, error) { return len(dAtA) - i, nil } -func encodeVarintKvrpcpb(dAtA []byte, offset int, v uint64) int { - offset -= sovKvrpcpb(v) - base := offset - for v >= 1<<7 { - dAtA[offset] = uint8(v&0x7f | 0x80) - v >>= 7 - offset++ +func (m *CompactError) Marshal() (dAtA []byte, err error) { + size := m.Size() + dAtA = make([]byte, size) + n, err := m.MarshalToSizedBuffer(dAtA[:size]) + if err != nil { + return nil, err } - dAtA[offset] = uint8(v) - return base + return dAtA[:n], nil } -func (m *GetRequest) Size() (n int) { - if m == nil { - return 0 - } - var l int - _ = l - if m.Context != nil { + +func (m *CompactError) MarshalTo(dAtA []byte) (int, error) { + size := m.Size() + return m.MarshalToSizedBuffer(dAtA[:size]) +} + +func (m *CompactError) 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 m.Error != nil { + { + size := m.Error.Size() + i -= size + if _, err := m.Error.MarshalTo(dAtA[i:]); err != nil { + return 0, err + } + } + } + return len(dAtA) - i, nil +} + +func (m *CompactError_ErrInvalidStartKey) MarshalTo(dAtA []byte) (int, error) { + size := m.Size() + return m.MarshalToSizedBuffer(dAtA[:size]) +} + +func (m *CompactError_ErrInvalidStartKey) MarshalToSizedBuffer(dAtA []byte) (int, error) { + i := len(dAtA) + if m.ErrInvalidStartKey != nil { + { + size, err := m.ErrInvalidStartKey.MarshalToSizedBuffer(dAtA[:i]) + if err != nil { + return 0, err + } + i -= size + i = encodeVarintKvrpcpb(dAtA, i, uint64(size)) + } + i-- + dAtA[i] = 0xa + } + return len(dAtA) - i, nil +} +func (m *CompactError_ErrPhysicalTableNotExist) MarshalTo(dAtA []byte) (int, error) { + size := m.Size() + return m.MarshalToSizedBuffer(dAtA[:size]) +} + +func (m *CompactError_ErrPhysicalTableNotExist) MarshalToSizedBuffer(dAtA []byte) (int, error) { + i := len(dAtA) + if m.ErrPhysicalTableNotExist != nil { + { + size, err := m.ErrPhysicalTableNotExist.MarshalToSizedBuffer(dAtA[:i]) + if err != nil { + return 0, err + } + i -= size + i = encodeVarintKvrpcpb(dAtA, i, uint64(size)) + } + i-- + dAtA[i] = 0x12 + } + return len(dAtA) - i, nil +} +func (m *CompactError_ErrCompactInProgress) MarshalTo(dAtA []byte) (int, error) { + size := m.Size() + return m.MarshalToSizedBuffer(dAtA[:size]) +} + +func (m *CompactError_ErrCompactInProgress) MarshalToSizedBuffer(dAtA []byte) (int, error) { + i := len(dAtA) + if m.ErrCompactInProgress != nil { + { + size, err := m.ErrCompactInProgress.MarshalToSizedBuffer(dAtA[:i]) + if err != nil { + return 0, err + } + i -= size + i = encodeVarintKvrpcpb(dAtA, i, uint64(size)) + } + i-- + dAtA[i] = 0x1a + } + return len(dAtA) - i, nil +} +func (m *CompactError_ErrTooManyPendingTasks) MarshalTo(dAtA []byte) (int, error) { + size := m.Size() + return m.MarshalToSizedBuffer(dAtA[:size]) +} + +func (m *CompactError_ErrTooManyPendingTasks) MarshalToSizedBuffer(dAtA []byte) (int, error) { + i := len(dAtA) + if m.ErrTooManyPendingTasks != nil { + { + size, err := m.ErrTooManyPendingTasks.MarshalToSizedBuffer(dAtA[:i]) + if err != nil { + return 0, err + } + i -= size + i = encodeVarintKvrpcpb(dAtA, i, uint64(size)) + } + i-- + dAtA[i] = 0x22 + } + return len(dAtA) - i, nil +} +func (m *CompactErrorInvalidStartKey) 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 *CompactErrorInvalidStartKey) MarshalTo(dAtA []byte) (int, error) { + size := m.Size() + return m.MarshalToSizedBuffer(dAtA[:size]) +} + +func (m *CompactErrorInvalidStartKey) 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) + } + return len(dAtA) - i, nil +} + +func (m *CompactErrorPhysicalTableNotExist) 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 *CompactErrorPhysicalTableNotExist) MarshalTo(dAtA []byte) (int, error) { + size := m.Size() + return m.MarshalToSizedBuffer(dAtA[:size]) +} + +func (m *CompactErrorPhysicalTableNotExist) 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) + } + return len(dAtA) - i, nil +} + +func (m *CompactErrorCompactInProgress) 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 *CompactErrorCompactInProgress) MarshalTo(dAtA []byte) (int, error) { + size := m.Size() + return m.MarshalToSizedBuffer(dAtA[:size]) +} + +func (m *CompactErrorCompactInProgress) 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) + } + return len(dAtA) - i, nil +} + +func (m *CompactErrorTooManyPendingTasks) 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 *CompactErrorTooManyPendingTasks) MarshalTo(dAtA []byte) (int, error) { + size := m.Size() + return m.MarshalToSizedBuffer(dAtA[:size]) +} + +func (m *CompactErrorTooManyPendingTasks) 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) + } + return len(dAtA) - i, nil +} + +func (m *CompactRequest) 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 *CompactRequest) MarshalTo(dAtA []byte) (int, error) { + size := m.Size() + return m.MarshalToSizedBuffer(dAtA[:size]) +} + +func (m *CompactRequest) 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 m.LogicalTableId != 0 { + i = encodeVarintKvrpcpb(dAtA, i, uint64(m.LogicalTableId)) + i-- + dAtA[i] = 0x18 + } + if m.PhysicalTableId != 0 { + i = encodeVarintKvrpcpb(dAtA, i, uint64(m.PhysicalTableId)) + i-- + dAtA[i] = 0x10 + } + if len(m.StartKey) > 0 { + i -= len(m.StartKey) + copy(dAtA[i:], m.StartKey) + i = encodeVarintKvrpcpb(dAtA, i, uint64(len(m.StartKey))) + i-- + dAtA[i] = 0xa + } + return len(dAtA) - i, nil +} + +func (m *CompactResponse) 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 *CompactResponse) MarshalTo(dAtA []byte) (int, error) { + size := m.Size() + return m.MarshalToSizedBuffer(dAtA[:size]) +} + +func (m *CompactResponse) 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.CompactedEndKey) > 0 { + i -= len(m.CompactedEndKey) + copy(dAtA[i:], m.CompactedEndKey) + i = encodeVarintKvrpcpb(dAtA, i, uint64(len(m.CompactedEndKey))) + i-- + dAtA[i] = 0x22 + } + if len(m.CompactedStartKey) > 0 { + i -= len(m.CompactedStartKey) + copy(dAtA[i:], m.CompactedStartKey) + i = encodeVarintKvrpcpb(dAtA, i, uint64(len(m.CompactedStartKey))) + i-- + dAtA[i] = 0x1a + } + if m.HasRemaining { + i-- + if m.HasRemaining { + dAtA[i] = 1 + } else { + dAtA[i] = 0 + } + i-- + dAtA[i] = 0x10 + } + if m.Error != nil { + { + size, err := m.Error.MarshalToSizedBuffer(dAtA[:i]) + if err != nil { + return 0, err + } + i -= size + i = encodeVarintKvrpcpb(dAtA, i, uint64(size)) + } + i-- + dAtA[i] = 0xa + } + return len(dAtA) - i, nil +} + +func encodeVarintKvrpcpb(dAtA []byte, offset int, v uint64) int { + offset -= sovKvrpcpb(v) + base := offset + for v >= 1<<7 { + dAtA[offset] = uint8(v&0x7f | 0x80) + v >>= 7 + offset++ + } + dAtA[offset] = uint8(v) + return base +} +func (m *GetRequest) Size() (n int) { + if m == nil { + return 0 + } + var l int + _ = l + if m.Context != nil { l = m.Context.Size() n += 1 + l + sovKvrpcpb(uint64(l)) } @@ -18352,22 +19133,182 @@ func (m *RawChecksumResponse) Size() (n int) { } var l int _ = l - if m.RegionError != nil { - l = m.RegionError.Size() + if m.RegionError != nil { + l = m.RegionError.Size() + n += 1 + l + sovKvrpcpb(uint64(l)) + } + l = len(m.Error) + if l > 0 { + n += 1 + l + sovKvrpcpb(uint64(l)) + } + if m.Checksum != 0 { + n += 1 + sovKvrpcpb(uint64(m.Checksum)) + } + if m.TotalKvs != 0 { + n += 1 + sovKvrpcpb(uint64(m.TotalKvs)) + } + if m.TotalBytes != 0 { + n += 1 + sovKvrpcpb(uint64(m.TotalBytes)) + } + if m.XXX_unrecognized != nil { + n += len(m.XXX_unrecognized) + } + return n +} + +func (m *CompactError) Size() (n int) { + if m == nil { + return 0 + } + var l int + _ = l + if m.Error != nil { + n += m.Error.Size() + } + if m.XXX_unrecognized != nil { + n += len(m.XXX_unrecognized) + } + return n +} + +func (m *CompactError_ErrInvalidStartKey) Size() (n int) { + if m == nil { + return 0 + } + var l int + _ = l + if m.ErrInvalidStartKey != nil { + l = m.ErrInvalidStartKey.Size() + n += 1 + l + sovKvrpcpb(uint64(l)) + } + return n +} +func (m *CompactError_ErrPhysicalTableNotExist) Size() (n int) { + if m == nil { + return 0 + } + var l int + _ = l + if m.ErrPhysicalTableNotExist != nil { + l = m.ErrPhysicalTableNotExist.Size() + n += 1 + l + sovKvrpcpb(uint64(l)) + } + return n +} +func (m *CompactError_ErrCompactInProgress) Size() (n int) { + if m == nil { + return 0 + } + var l int + _ = l + if m.ErrCompactInProgress != nil { + l = m.ErrCompactInProgress.Size() + n += 1 + l + sovKvrpcpb(uint64(l)) + } + return n +} +func (m *CompactError_ErrTooManyPendingTasks) Size() (n int) { + if m == nil { + return 0 + } + var l int + _ = l + if m.ErrTooManyPendingTasks != nil { + l = m.ErrTooManyPendingTasks.Size() + n += 1 + l + sovKvrpcpb(uint64(l)) + } + return n +} +func (m *CompactErrorInvalidStartKey) Size() (n int) { + if m == nil { + return 0 + } + var l int + _ = l + if m.XXX_unrecognized != nil { + n += len(m.XXX_unrecognized) + } + return n +} + +func (m *CompactErrorPhysicalTableNotExist) Size() (n int) { + if m == nil { + return 0 + } + var l int + _ = l + if m.XXX_unrecognized != nil { + n += len(m.XXX_unrecognized) + } + return n +} + +func (m *CompactErrorCompactInProgress) Size() (n int) { + if m == nil { + return 0 + } + var l int + _ = l + if m.XXX_unrecognized != nil { + n += len(m.XXX_unrecognized) + } + return n +} + +func (m *CompactErrorTooManyPendingTasks) Size() (n int) { + if m == nil { + return 0 + } + var l int + _ = l + if m.XXX_unrecognized != nil { + n += len(m.XXX_unrecognized) + } + return n +} + +func (m *CompactRequest) Size() (n int) { + if m == nil { + return 0 + } + var l int + _ = l + l = len(m.StartKey) + if l > 0 { + n += 1 + l + sovKvrpcpb(uint64(l)) + } + if m.PhysicalTableId != 0 { + n += 1 + sovKvrpcpb(uint64(m.PhysicalTableId)) + } + if m.LogicalTableId != 0 { + n += 1 + sovKvrpcpb(uint64(m.LogicalTableId)) + } + if m.XXX_unrecognized != nil { + n += len(m.XXX_unrecognized) + } + return n +} + +func (m *CompactResponse) Size() (n int) { + if m == nil { + return 0 + } + var l int + _ = l + if m.Error != nil { + l = m.Error.Size() n += 1 + l + sovKvrpcpb(uint64(l)) } - l = len(m.Error) + if m.HasRemaining { + n += 2 + } + l = len(m.CompactedStartKey) if l > 0 { n += 1 + l + sovKvrpcpb(uint64(l)) } - if m.Checksum != 0 { - n += 1 + sovKvrpcpb(uint64(m.Checksum)) - } - if m.TotalKvs != 0 { - n += 1 + sovKvrpcpb(uint64(m.TotalKvs)) - } - if m.TotalBytes != 0 { - n += 1 + sovKvrpcpb(uint64(m.TotalBytes)) + l = len(m.CompactedEndKey) + if l > 0 { + n += 1 + l + sovKvrpcpb(uint64(l)) } if m.XXX_unrecognized != nil { n += len(m.XXX_unrecognized) @@ -29831,12 +30772,259 @@ func (m *Context) Unmarshal(dAtA []byte) error { break } } - m.SyncLog = bool(v != 0) - case 10: + m.SyncLog = bool(v != 0) + case 10: + if wireType != 0 { + return fmt.Errorf("proto: wrong wireType = %d for field RecordTimeStat", wireType) + } + var v int + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowKvrpcpb + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + v |= int(b&0x7F) << shift + if b < 0x80 { + break + } + } + m.RecordTimeStat = bool(v != 0) + case 11: + if wireType != 0 { + return fmt.Errorf("proto: wrong wireType = %d for field RecordScanStat", wireType) + } + var v int + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowKvrpcpb + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + v |= int(b&0x7F) << shift + if b < 0x80 { + break + } + } + m.RecordScanStat = bool(v != 0) + case 12: + if wireType != 0 { + return fmt.Errorf("proto: wrong wireType = %d for field ReplicaRead", wireType) + } + var v int + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowKvrpcpb + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + v |= int(b&0x7F) << shift + if b < 0x80 { + break + } + } + m.ReplicaRead = bool(v != 0) + case 13: + if wireType == 0 { + var v uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowKvrpcpb + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + v |= uint64(b&0x7F) << shift + if b < 0x80 { + break + } + } + m.ResolvedLocks = append(m.ResolvedLocks, v) + } else if wireType == 2 { + var packedLen int + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowKvrpcpb + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + packedLen |= int(b&0x7F) << shift + if b < 0x80 { + break + } + } + if packedLen < 0 { + return ErrInvalidLengthKvrpcpb + } + postIndex := iNdEx + packedLen + if postIndex < 0 { + return ErrInvalidLengthKvrpcpb + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + var elementCount int + var count int + for _, integer := range dAtA[iNdEx:postIndex] { + if integer < 128 { + count++ + } + } + elementCount = count + if elementCount != 0 && len(m.ResolvedLocks) == 0 { + m.ResolvedLocks = make([]uint64, 0, elementCount) + } + for iNdEx < postIndex { + var v uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowKvrpcpb + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + v |= uint64(b&0x7F) << shift + if b < 0x80 { + break + } + } + m.ResolvedLocks = append(m.ResolvedLocks, v) + } + } else { + return fmt.Errorf("proto: wrong wireType = %d for field ResolvedLocks", wireType) + } + case 14: + if wireType != 0 { + return fmt.Errorf("proto: wrong wireType = %d for field MaxExecutionDurationMs", wireType) + } + m.MaxExecutionDurationMs = 0 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowKvrpcpb + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + m.MaxExecutionDurationMs |= uint64(b&0x7F) << shift + if b < 0x80 { + break + } + } + case 15: + if wireType != 0 { + return fmt.Errorf("proto: wrong wireType = %d for field AppliedIndex", wireType) + } + m.AppliedIndex = 0 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowKvrpcpb + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + m.AppliedIndex |= uint64(b&0x7F) << shift + if b < 0x80 { + break + } + } + case 16: + if wireType != 0 { + return fmt.Errorf("proto: wrong wireType = %d for field TaskId", wireType) + } + m.TaskId = 0 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowKvrpcpb + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + m.TaskId |= uint64(b&0x7F) << shift + if b < 0x80 { + break + } + } + case 17: + if wireType != 0 { + return fmt.Errorf("proto: wrong wireType = %d for field StaleRead", wireType) + } + var v int + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowKvrpcpb + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + v |= int(b&0x7F) << shift + if b < 0x80 { + break + } + } + m.StaleRead = bool(v != 0) + case 18: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field ResourceGroupTag", wireType) + } + var byteLen int + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowKvrpcpb + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + byteLen |= int(b&0x7F) << shift + if b < 0x80 { + break + } + } + if byteLen < 0 { + return ErrInvalidLengthKvrpcpb + } + postIndex := iNdEx + byteLen + if postIndex < 0 { + return ErrInvalidLengthKvrpcpb + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + m.ResourceGroupTag = append(m.ResourceGroupTag[:0], dAtA[iNdEx:postIndex]...) + if m.ResourceGroupTag == nil { + m.ResourceGroupTag = []byte{} + } + iNdEx = postIndex + case 19: if wireType != 0 { - return fmt.Errorf("proto: wrong wireType = %d for field RecordTimeStat", wireType) + return fmt.Errorf("proto: wrong wireType = %d for field DiskFullOpt", wireType) } - var v int + m.DiskFullOpt = 0 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowKvrpcpb @@ -29846,15 +31034,14 @@ func (m *Context) Unmarshal(dAtA []byte) error { } b := dAtA[iNdEx] iNdEx++ - v |= int(b&0x7F) << shift + m.DiskFullOpt |= DiskFullOpt(b&0x7F) << shift if b < 0x80 { break } } - m.RecordTimeStat = bool(v != 0) - case 11: + case 20: if wireType != 0 { - return fmt.Errorf("proto: wrong wireType = %d for field RecordScanStat", wireType) + return fmt.Errorf("proto: wrong wireType = %d for field IsRetryRequest", wireType) } var v int for shift := uint(0); ; shift += 7 { @@ -29871,12 +31058,12 @@ func (m *Context) Unmarshal(dAtA []byte) error { break } } - m.RecordScanStat = bool(v != 0) - case 12: + m.IsRetryRequest = bool(v != 0) + case 21: if wireType != 0 { - return fmt.Errorf("proto: wrong wireType = %d for field ReplicaRead", wireType) + return fmt.Errorf("proto: wrong wireType = %d for field ApiVersion", wireType) } - var v int + m.ApiVersion = 0 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowKvrpcpb @@ -29886,13 +31073,12 @@ func (m *Context) Unmarshal(dAtA []byte) error { } b := dAtA[iNdEx] iNdEx++ - v |= int(b&0x7F) << shift + m.ApiVersion |= APIVersion(b&0x7F) << shift if b < 0x80 { break } } - m.ReplicaRead = bool(v != 0) - case 13: + case 22: if wireType == 0 { var v uint64 for shift := uint(0); ; shift += 7 { @@ -29909,7 +31095,7 @@ func (m *Context) Unmarshal(dAtA []byte) error { break } } - m.ResolvedLocks = append(m.ResolvedLocks, v) + m.CommittedLocks = append(m.CommittedLocks, v) } else if wireType == 2 { var packedLen int for shift := uint(0); ; shift += 7 { @@ -29944,8 +31130,8 @@ func (m *Context) Unmarshal(dAtA []byte) error { } } elementCount = count - if elementCount != 0 && len(m.ResolvedLocks) == 0 { - m.ResolvedLocks = make([]uint64, 0, elementCount) + if elementCount != 0 && len(m.CommittedLocks) == 0 { + m.CommittedLocks = make([]uint64, 0, elementCount) } for iNdEx < postIndex { var v uint64 @@ -29963,16 +31149,16 @@ func (m *Context) Unmarshal(dAtA []byte) error { break } } - m.ResolvedLocks = append(m.ResolvedLocks, v) + m.CommittedLocks = append(m.CommittedLocks, v) } } else { - return fmt.Errorf("proto: wrong wireType = %d for field ResolvedLocks", wireType) + return fmt.Errorf("proto: wrong wireType = %d for field CommittedLocks", wireType) } - case 14: - if wireType != 0 { - return fmt.Errorf("proto: wrong wireType = %d for field MaxExecutionDurationMs", wireType) + case 23: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field TraceContext", wireType) } - m.MaxExecutionDurationMs = 0 + var msglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowKvrpcpb @@ -29982,35 +31168,84 @@ func (m *Context) Unmarshal(dAtA []byte) error { } b := dAtA[iNdEx] iNdEx++ - m.MaxExecutionDurationMs |= uint64(b&0x7F) << shift + msglen |= int(b&0x7F) << shift if b < 0x80 { break } } - case 15: - if wireType != 0 { - return fmt.Errorf("proto: wrong wireType = %d for field AppliedIndex", wireType) + if msglen < 0 { + return ErrInvalidLengthKvrpcpb } - m.AppliedIndex = 0 - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowKvrpcpb - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := dAtA[iNdEx] - iNdEx++ - m.AppliedIndex |= uint64(b&0x7F) << shift - if b < 0x80 { - break - } + postIndex := iNdEx + msglen + if postIndex < 0 { + return ErrInvalidLengthKvrpcpb } - case 16: - if wireType != 0 { - return fmt.Errorf("proto: wrong wireType = %d for field TaskId", wireType) + if postIndex > l { + return io.ErrUnexpectedEOF } - m.TaskId = 0 + if m.TraceContext == nil { + m.TraceContext = &tracepb.TraceContext{} + } + if err := m.TraceContext.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { + return err + } + iNdEx = postIndex + default: + iNdEx = preIndex + skippy, err := skipKvrpcpb(dAtA[iNdEx:]) + if err != nil { + return err + } + if (skippy < 0) || (iNdEx+skippy) < 0 { + return ErrInvalidLengthKvrpcpb + } + 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 *LockInfo) 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 ErrIntOverflowKvrpcpb + } + 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: LockInfo: wiretype end group for non-group") + } + if fieldNum <= 0 { + return fmt.Errorf("proto: LockInfo: illegal tag %d (wire type %d)", fieldNum, wire) + } + switch fieldNum { + case 1: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field PrimaryLock", wireType) + } + var byteLen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowKvrpcpb @@ -30020,16 +31255,31 @@ func (m *Context) Unmarshal(dAtA []byte) error { } b := dAtA[iNdEx] iNdEx++ - m.TaskId |= uint64(b&0x7F) << shift + byteLen |= int(b&0x7F) << shift if b < 0x80 { break } } - case 17: + if byteLen < 0 { + return ErrInvalidLengthKvrpcpb + } + postIndex := iNdEx + byteLen + if postIndex < 0 { + return ErrInvalidLengthKvrpcpb + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + m.PrimaryLock = append(m.PrimaryLock[:0], dAtA[iNdEx:postIndex]...) + if m.PrimaryLock == nil { + m.PrimaryLock = []byte{} + } + iNdEx = postIndex + case 2: if wireType != 0 { - return fmt.Errorf("proto: wrong wireType = %d for field StaleRead", wireType) + return fmt.Errorf("proto: wrong wireType = %d for field LockVersion", wireType) } - var v int + m.LockVersion = 0 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowKvrpcpb @@ -30039,15 +31289,14 @@ func (m *Context) Unmarshal(dAtA []byte) error { } b := dAtA[iNdEx] iNdEx++ - v |= int(b&0x7F) << shift + m.LockVersion |= uint64(b&0x7F) << shift if b < 0x80 { break } } - m.StaleRead = bool(v != 0) - case 18: + case 3: if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field ResourceGroupTag", wireType) + return fmt.Errorf("proto: wrong wireType = %d for field Key", wireType) } var byteLen int for shift := uint(0); ; shift += 7 { @@ -30074,16 +31323,16 @@ func (m *Context) Unmarshal(dAtA []byte) error { if postIndex > l { return io.ErrUnexpectedEOF } - m.ResourceGroupTag = append(m.ResourceGroupTag[:0], dAtA[iNdEx:postIndex]...) - if m.ResourceGroupTag == nil { - m.ResourceGroupTag = []byte{} + m.Key = append(m.Key[:0], dAtA[iNdEx:postIndex]...) + if m.Key == nil { + m.Key = []byte{} } iNdEx = postIndex - case 19: + case 4: if wireType != 0 { - return fmt.Errorf("proto: wrong wireType = %d for field DiskFullOpt", wireType) + return fmt.Errorf("proto: wrong wireType = %d for field LockTtl", wireType) } - m.DiskFullOpt = 0 + m.LockTtl = 0 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowKvrpcpb @@ -30093,16 +31342,16 @@ func (m *Context) Unmarshal(dAtA []byte) error { } b := dAtA[iNdEx] iNdEx++ - m.DiskFullOpt |= DiskFullOpt(b&0x7F) << shift + m.LockTtl |= uint64(b&0x7F) << shift if b < 0x80 { break } } - case 20: + case 5: if wireType != 0 { - return fmt.Errorf("proto: wrong wireType = %d for field IsRetryRequest", wireType) + return fmt.Errorf("proto: wrong wireType = %d for field TxnSize", wireType) } - var v int + m.TxnSize = 0 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowKvrpcpb @@ -30112,17 +31361,16 @@ func (m *Context) Unmarshal(dAtA []byte) error { } b := dAtA[iNdEx] iNdEx++ - v |= int(b&0x7F) << shift + m.TxnSize |= uint64(b&0x7F) << shift if b < 0x80 { break } } - m.IsRetryRequest = bool(v != 0) - case 21: + case 6: if wireType != 0 { - return fmt.Errorf("proto: wrong wireType = %d for field ApiVersion", wireType) + return fmt.Errorf("proto: wrong wireType = %d for field LockType", wireType) } - m.ApiVersion = 0 + m.LockType = 0 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowKvrpcpb @@ -30132,92 +31380,74 @@ func (m *Context) Unmarshal(dAtA []byte) error { } b := dAtA[iNdEx] iNdEx++ - m.ApiVersion |= APIVersion(b&0x7F) << shift + m.LockType |= Op(b&0x7F) << shift if b < 0x80 { break } } - case 22: - if wireType == 0 { - var v uint64 - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowKvrpcpb - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := dAtA[iNdEx] - iNdEx++ - v |= uint64(b&0x7F) << shift - if b < 0x80 { - break - } + case 7: + if wireType != 0 { + return fmt.Errorf("proto: wrong wireType = %d for field LockForUpdateTs", wireType) + } + m.LockForUpdateTs = 0 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowKvrpcpb } - m.CommittedLocks = append(m.CommittedLocks, v) - } else if wireType == 2 { - var packedLen int - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowKvrpcpb - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := dAtA[iNdEx] - iNdEx++ - packedLen |= int(b&0x7F) << shift - if b < 0x80 { - break - } + if iNdEx >= l { + return io.ErrUnexpectedEOF } - if packedLen < 0 { - return ErrInvalidLengthKvrpcpb + b := dAtA[iNdEx] + iNdEx++ + m.LockForUpdateTs |= uint64(b&0x7F) << shift + if b < 0x80 { + break } - postIndex := iNdEx + packedLen - if postIndex < 0 { - return ErrInvalidLengthKvrpcpb + } + case 8: + if wireType != 0 { + return fmt.Errorf("proto: wrong wireType = %d for field UseAsyncCommit", wireType) + } + var v int + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowKvrpcpb } - if postIndex > l { + if iNdEx >= l { return io.ErrUnexpectedEOF } - var elementCount int - var count int - for _, integer := range dAtA[iNdEx:postIndex] { - if integer < 128 { - count++ - } + b := dAtA[iNdEx] + iNdEx++ + v |= int(b&0x7F) << shift + if b < 0x80 { + break } - elementCount = count - if elementCount != 0 && len(m.CommittedLocks) == 0 { - m.CommittedLocks = make([]uint64, 0, elementCount) + } + m.UseAsyncCommit = bool(v != 0) + case 9: + if wireType != 0 { + return fmt.Errorf("proto: wrong wireType = %d for field MinCommitTs", wireType) + } + m.MinCommitTs = 0 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowKvrpcpb } - for iNdEx < postIndex { - var v uint64 - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowKvrpcpb - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := dAtA[iNdEx] - iNdEx++ - v |= uint64(b&0x7F) << shift - if b < 0x80 { - break - } - } - m.CommittedLocks = append(m.CommittedLocks, v) + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + m.MinCommitTs |= uint64(b&0x7F) << shift + if b < 0x80 { + break } - } else { - return fmt.Errorf("proto: wrong wireType = %d for field CommittedLocks", wireType) } - case 23: + case 10: if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field TraceContext", wireType) + return fmt.Errorf("proto: wrong wireType = %d for field Secondaries", wireType) } - var msglen int + var byteLen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowKvrpcpb @@ -30227,27 +31457,23 @@ func (m *Context) Unmarshal(dAtA []byte) error { } b := dAtA[iNdEx] iNdEx++ - msglen |= int(b&0x7F) << shift + byteLen |= int(b&0x7F) << shift if b < 0x80 { break } } - if msglen < 0 { + if byteLen < 0 { return ErrInvalidLengthKvrpcpb } - postIndex := iNdEx + msglen + postIndex := iNdEx + byteLen if postIndex < 0 { return ErrInvalidLengthKvrpcpb } if postIndex > l { return io.ErrUnexpectedEOF } - if m.TraceContext == nil { - m.TraceContext = &tracepb.TraceContext{} - } - if err := m.TraceContext.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { - return err - } + m.Secondaries = append(m.Secondaries, make([]byte, postIndex-iNdEx)) + copy(m.Secondaries[len(m.Secondaries)-1], dAtA[iNdEx:postIndex]) iNdEx = postIndex default: iNdEx = preIndex @@ -30271,7 +31497,7 @@ func (m *Context) Unmarshal(dAtA []byte) error { } return nil } -func (m *LockInfo) Unmarshal(dAtA []byte) error { +func (m *KeyError) Unmarshal(dAtA []byte) error { l := len(dAtA) iNdEx := 0 for iNdEx < l { @@ -30294,17 +31520,17 @@ func (m *LockInfo) Unmarshal(dAtA []byte) error { fieldNum := int32(wire >> 3) wireType := int(wire & 0x7) if wireType == 4 { - return fmt.Errorf("proto: LockInfo: wiretype end group for non-group") + return fmt.Errorf("proto: KeyError: wiretype end group for non-group") } if fieldNum <= 0 { - return fmt.Errorf("proto: LockInfo: illegal tag %d (wire type %d)", fieldNum, wire) + return fmt.Errorf("proto: KeyError: illegal tag %d (wire type %d)", fieldNum, wire) } switch fieldNum { case 1: if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field PrimaryLock", wireType) + return fmt.Errorf("proto: wrong wireType = %d for field Locked", wireType) } - var byteLen int + var msglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowKvrpcpb @@ -30314,31 +31540,33 @@ func (m *LockInfo) Unmarshal(dAtA []byte) error { } b := dAtA[iNdEx] iNdEx++ - byteLen |= int(b&0x7F) << shift + msglen |= int(b&0x7F) << shift if b < 0x80 { break } } - if byteLen < 0 { + if msglen < 0 { return ErrInvalidLengthKvrpcpb } - postIndex := iNdEx + byteLen + postIndex := iNdEx + msglen if postIndex < 0 { return ErrInvalidLengthKvrpcpb } if postIndex > l { return io.ErrUnexpectedEOF } - m.PrimaryLock = append(m.PrimaryLock[:0], dAtA[iNdEx:postIndex]...) - if m.PrimaryLock == nil { - m.PrimaryLock = []byte{} + if m.Locked == nil { + m.Locked = &LockInfo{} + } + if err := m.Locked.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { + return err } iNdEx = postIndex case 2: - if wireType != 0 { - return fmt.Errorf("proto: wrong wireType = %d for field LockVersion", wireType) + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field Retryable", wireType) } - m.LockVersion = 0 + var stringLen uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowKvrpcpb @@ -30348,16 +31576,29 @@ func (m *LockInfo) Unmarshal(dAtA []byte) error { } b := dAtA[iNdEx] iNdEx++ - m.LockVersion |= uint64(b&0x7F) << shift + stringLen |= uint64(b&0x7F) << shift if b < 0x80 { break } } + intStringLen := int(stringLen) + if intStringLen < 0 { + return ErrInvalidLengthKvrpcpb + } + postIndex := iNdEx + intStringLen + if postIndex < 0 { + return ErrInvalidLengthKvrpcpb + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + m.Retryable = string(dAtA[iNdEx:postIndex]) + iNdEx = postIndex case 3: if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field Key", wireType) + return fmt.Errorf("proto: wrong wireType = %d for field Abort", wireType) } - var byteLen int + var stringLen uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowKvrpcpb @@ -30367,31 +31608,29 @@ func (m *LockInfo) Unmarshal(dAtA []byte) error { } b := dAtA[iNdEx] iNdEx++ - byteLen |= int(b&0x7F) << shift + stringLen |= uint64(b&0x7F) << shift if b < 0x80 { break } } - if byteLen < 0 { + intStringLen := int(stringLen) + if intStringLen < 0 { return ErrInvalidLengthKvrpcpb } - postIndex := iNdEx + byteLen + postIndex := iNdEx + intStringLen if postIndex < 0 { return ErrInvalidLengthKvrpcpb } if postIndex > l { return io.ErrUnexpectedEOF } - m.Key = append(m.Key[:0], dAtA[iNdEx:postIndex]...) - if m.Key == nil { - m.Key = []byte{} - } + m.Abort = string(dAtA[iNdEx:postIndex]) iNdEx = postIndex case 4: - if wireType != 0 { - return fmt.Errorf("proto: wrong wireType = %d for field LockTtl", wireType) + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field Conflict", wireType) } - m.LockTtl = 0 + var msglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowKvrpcpb @@ -30401,16 +31640,33 @@ func (m *LockInfo) Unmarshal(dAtA []byte) error { } b := dAtA[iNdEx] iNdEx++ - m.LockTtl |= uint64(b&0x7F) << shift + msglen |= int(b&0x7F) << shift if b < 0x80 { break } } + if msglen < 0 { + return ErrInvalidLengthKvrpcpb + } + postIndex := iNdEx + msglen + if postIndex < 0 { + return ErrInvalidLengthKvrpcpb + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + if m.Conflict == nil { + m.Conflict = &WriteConflict{} + } + if err := m.Conflict.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { + return err + } + iNdEx = postIndex case 5: - if wireType != 0 { - return fmt.Errorf("proto: wrong wireType = %d for field TxnSize", wireType) + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field AlreadyExist", wireType) } - m.TxnSize = 0 + var msglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowKvrpcpb @@ -30420,16 +31676,33 @@ func (m *LockInfo) Unmarshal(dAtA []byte) error { } b := dAtA[iNdEx] iNdEx++ - m.TxnSize |= uint64(b&0x7F) << shift + msglen |= int(b&0x7F) << shift if b < 0x80 { break } } + if msglen < 0 { + return ErrInvalidLengthKvrpcpb + } + postIndex := iNdEx + msglen + if postIndex < 0 { + return ErrInvalidLengthKvrpcpb + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + if m.AlreadyExist == nil { + m.AlreadyExist = &AlreadyExist{} + } + if err := m.AlreadyExist.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { + return err + } + iNdEx = postIndex case 6: - if wireType != 0 { - return fmt.Errorf("proto: wrong wireType = %d for field LockType", wireType) + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field Deadlock", wireType) } - m.LockType = 0 + var msglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowKvrpcpb @@ -30439,16 +31712,33 @@ func (m *LockInfo) Unmarshal(dAtA []byte) error { } b := dAtA[iNdEx] iNdEx++ - m.LockType |= Op(b&0x7F) << shift + msglen |= int(b&0x7F) << shift if b < 0x80 { break } } + if msglen < 0 { + return ErrInvalidLengthKvrpcpb + } + postIndex := iNdEx + msglen + if postIndex < 0 { + return ErrInvalidLengthKvrpcpb + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + if m.Deadlock == nil { + m.Deadlock = &Deadlock{} + } + if err := m.Deadlock.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { + return err + } + iNdEx = postIndex case 7: - if wireType != 0 { - return fmt.Errorf("proto: wrong wireType = %d for field LockForUpdateTs", wireType) + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field CommitTsExpired", wireType) } - m.LockForUpdateTs = 0 + var msglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowKvrpcpb @@ -30458,16 +31748,33 @@ func (m *LockInfo) Unmarshal(dAtA []byte) error { } b := dAtA[iNdEx] iNdEx++ - m.LockForUpdateTs |= uint64(b&0x7F) << shift + msglen |= int(b&0x7F) << shift if b < 0x80 { break } } + if msglen < 0 { + return ErrInvalidLengthKvrpcpb + } + postIndex := iNdEx + msglen + if postIndex < 0 { + return ErrInvalidLengthKvrpcpb + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + if m.CommitTsExpired == nil { + m.CommitTsExpired = &CommitTsExpired{} + } + if err := m.CommitTsExpired.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { + return err + } + iNdEx = postIndex case 8: - if wireType != 0 { - return fmt.Errorf("proto: wrong wireType = %d for field UseAsyncCommit", wireType) + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field TxnNotFound", wireType) } - var v int + var msglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowKvrpcpb @@ -30477,17 +31784,33 @@ func (m *LockInfo) Unmarshal(dAtA []byte) error { } b := dAtA[iNdEx] iNdEx++ - v |= int(b&0x7F) << shift + msglen |= int(b&0x7F) << shift if b < 0x80 { break } } - m.UseAsyncCommit = bool(v != 0) + if msglen < 0 { + return ErrInvalidLengthKvrpcpb + } + postIndex := iNdEx + msglen + if postIndex < 0 { + return ErrInvalidLengthKvrpcpb + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + if m.TxnNotFound == nil { + m.TxnNotFound = &TxnNotFound{} + } + if err := m.TxnNotFound.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { + return err + } + iNdEx = postIndex case 9: - if wireType != 0 { - return fmt.Errorf("proto: wrong wireType = %d for field MinCommitTs", wireType) + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field CommitTsTooLarge", wireType) } - m.MinCommitTs = 0 + var msglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowKvrpcpb @@ -30497,16 +31820,33 @@ func (m *LockInfo) Unmarshal(dAtA []byte) error { } b := dAtA[iNdEx] iNdEx++ - m.MinCommitTs |= uint64(b&0x7F) << shift + msglen |= int(b&0x7F) << shift if b < 0x80 { break } } + if msglen < 0 { + return ErrInvalidLengthKvrpcpb + } + postIndex := iNdEx + msglen + if postIndex < 0 { + return ErrInvalidLengthKvrpcpb + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + if m.CommitTsTooLarge == nil { + m.CommitTsTooLarge = &CommitTsTooLarge{} + } + if err := m.CommitTsTooLarge.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { + return err + } + iNdEx = postIndex case 10: if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field Secondaries", wireType) + return fmt.Errorf("proto: wrong wireType = %d for field AssertionFailed", wireType) } - var byteLen int + var msglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowKvrpcpb @@ -30516,23 +31856,27 @@ func (m *LockInfo) Unmarshal(dAtA []byte) error { } b := dAtA[iNdEx] iNdEx++ - byteLen |= int(b&0x7F) << shift + msglen |= int(b&0x7F) << shift if b < 0x80 { break } } - if byteLen < 0 { + if msglen < 0 { return ErrInvalidLengthKvrpcpb } - postIndex := iNdEx + byteLen + postIndex := iNdEx + msglen if postIndex < 0 { return ErrInvalidLengthKvrpcpb } if postIndex > l { return io.ErrUnexpectedEOF } - m.Secondaries = append(m.Secondaries, make([]byte, postIndex-iNdEx)) - copy(m.Secondaries[len(m.Secondaries)-1], dAtA[iNdEx:postIndex]) + if m.AssertionFailed == nil { + m.AssertionFailed = &AssertionFailed{} + } + if err := m.AssertionFailed.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { + return err + } iNdEx = postIndex default: iNdEx = preIndex @@ -30556,7 +31900,7 @@ func (m *LockInfo) Unmarshal(dAtA []byte) error { } return nil } -func (m *KeyError) Unmarshal(dAtA []byte) error { +func (m *WriteConflict) Unmarshal(dAtA []byte) error { l := len(dAtA) iNdEx := 0 for iNdEx < l { @@ -30579,17 +31923,17 @@ func (m *KeyError) Unmarshal(dAtA []byte) error { fieldNum := int32(wire >> 3) wireType := int(wire & 0x7) if wireType == 4 { - return fmt.Errorf("proto: KeyError: wiretype end group for non-group") + return fmt.Errorf("proto: WriteConflict: wiretype end group for non-group") } if fieldNum <= 0 { - return fmt.Errorf("proto: KeyError: illegal tag %d (wire type %d)", fieldNum, wire) + return fmt.Errorf("proto: WriteConflict: illegal tag %d (wire type %d)", fieldNum, wire) } switch fieldNum { case 1: - if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field Locked", wireType) + if wireType != 0 { + return fmt.Errorf("proto: wrong wireType = %d for field StartTs", wireType) } - var msglen int + m.StartTs = 0 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowKvrpcpb @@ -30599,33 +31943,16 @@ func (m *KeyError) Unmarshal(dAtA []byte) error { } b := dAtA[iNdEx] iNdEx++ - msglen |= int(b&0x7F) << shift + m.StartTs |= uint64(b&0x7F) << shift if b < 0x80 { break } } - if msglen < 0 { - return ErrInvalidLengthKvrpcpb - } - postIndex := iNdEx + msglen - if postIndex < 0 { - return ErrInvalidLengthKvrpcpb - } - if postIndex > l { - return io.ErrUnexpectedEOF - } - if m.Locked == nil { - m.Locked = &LockInfo{} - } - if err := m.Locked.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { - return err - } - iNdEx = postIndex case 2: - if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field Retryable", wireType) + if wireType != 0 { + return fmt.Errorf("proto: wrong wireType = %d for field ConflictTs", wireType) } - var stringLen uint64 + m.ConflictTs = 0 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowKvrpcpb @@ -30635,29 +31962,16 @@ func (m *KeyError) Unmarshal(dAtA []byte) error { } b := dAtA[iNdEx] iNdEx++ - stringLen |= uint64(b&0x7F) << shift + m.ConflictTs |= uint64(b&0x7F) << shift if b < 0x80 { break } } - intStringLen := int(stringLen) - if intStringLen < 0 { - return ErrInvalidLengthKvrpcpb - } - postIndex := iNdEx + intStringLen - if postIndex < 0 { - return ErrInvalidLengthKvrpcpb - } - if postIndex > l { - return io.ErrUnexpectedEOF - } - m.Retryable = string(dAtA[iNdEx:postIndex]) - iNdEx = postIndex case 3: if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field Abort", wireType) + return fmt.Errorf("proto: wrong wireType = %d for field Key", wireType) } - var stringLen uint64 + var byteLen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowKvrpcpb @@ -30667,29 +31981,31 @@ func (m *KeyError) Unmarshal(dAtA []byte) error { } b := dAtA[iNdEx] iNdEx++ - stringLen |= uint64(b&0x7F) << shift + byteLen |= int(b&0x7F) << shift if b < 0x80 { break } } - intStringLen := int(stringLen) - if intStringLen < 0 { + if byteLen < 0 { return ErrInvalidLengthKvrpcpb } - postIndex := iNdEx + intStringLen + postIndex := iNdEx + byteLen if postIndex < 0 { return ErrInvalidLengthKvrpcpb } if postIndex > l { return io.ErrUnexpectedEOF } - m.Abort = string(dAtA[iNdEx:postIndex]) + m.Key = append(m.Key[:0], dAtA[iNdEx:postIndex]...) + if m.Key == nil { + m.Key = []byte{} + } iNdEx = postIndex case 4: if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field Conflict", wireType) + return fmt.Errorf("proto: wrong wireType = %d for field Primary", wireType) } - var msglen int + var byteLen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowKvrpcpb @@ -30699,33 +32015,31 @@ func (m *KeyError) Unmarshal(dAtA []byte) error { } b := dAtA[iNdEx] iNdEx++ - msglen |= int(b&0x7F) << shift + byteLen |= int(b&0x7F) << shift if b < 0x80 { break } } - if msglen < 0 { + if byteLen < 0 { return ErrInvalidLengthKvrpcpb } - postIndex := iNdEx + msglen + postIndex := iNdEx + byteLen if postIndex < 0 { return ErrInvalidLengthKvrpcpb } if postIndex > l { return io.ErrUnexpectedEOF } - if m.Conflict == nil { - m.Conflict = &WriteConflict{} - } - if err := m.Conflict.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { - return err + m.Primary = append(m.Primary[:0], dAtA[iNdEx:postIndex]...) + if m.Primary == nil { + m.Primary = []byte{} } iNdEx = postIndex case 5: - if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field AlreadyExist", wireType) + if wireType != 0 { + return fmt.Errorf("proto: wrong wireType = %d for field ConflictCommitTs", wireType) } - var msglen int + m.ConflictCommitTs = 0 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowKvrpcpb @@ -30735,33 +32049,67 @@ func (m *KeyError) Unmarshal(dAtA []byte) error { } b := dAtA[iNdEx] iNdEx++ - msglen |= int(b&0x7F) << shift + m.ConflictCommitTs |= uint64(b&0x7F) << shift if b < 0x80 { break } } - if msglen < 0 { - return ErrInvalidLengthKvrpcpb + default: + iNdEx = preIndex + skippy, err := skipKvrpcpb(dAtA[iNdEx:]) + if err != nil { + return err } - postIndex := iNdEx + msglen - if postIndex < 0 { + if (skippy < 0) || (iNdEx+skippy) < 0 { return ErrInvalidLengthKvrpcpb } - if postIndex > l { + if (iNdEx + skippy) > l { return io.ErrUnexpectedEOF } - if m.AlreadyExist == nil { - m.AlreadyExist = &AlreadyExist{} + m.XXX_unrecognized = append(m.XXX_unrecognized, dAtA[iNdEx:iNdEx+skippy]...) + iNdEx += skippy + } + } + + if iNdEx > l { + return io.ErrUnexpectedEOF + } + return nil +} +func (m *AlreadyExist) 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 ErrIntOverflowKvrpcpb } - if err := m.AlreadyExist.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { - return err + if iNdEx >= l { + return io.ErrUnexpectedEOF } - iNdEx = postIndex - case 6: + 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: AlreadyExist: wiretype end group for non-group") + } + if fieldNum <= 0 { + return fmt.Errorf("proto: AlreadyExist: illegal tag %d (wire type %d)", fieldNum, wire) + } + switch fieldNum { + case 1: if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field Deadlock", wireType) + return fmt.Errorf("proto: wrong wireType = %d for field Key", wireType) } - var msglen int + var byteLen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowKvrpcpb @@ -30771,33 +32119,82 @@ func (m *KeyError) Unmarshal(dAtA []byte) error { } b := dAtA[iNdEx] iNdEx++ - msglen |= int(b&0x7F) << shift + byteLen |= int(b&0x7F) << shift if b < 0x80 { break } } - if msglen < 0 { + if byteLen < 0 { return ErrInvalidLengthKvrpcpb } - postIndex := iNdEx + msglen + postIndex := iNdEx + byteLen if postIndex < 0 { return ErrInvalidLengthKvrpcpb } - if postIndex > l { + if postIndex > l { + return io.ErrUnexpectedEOF + } + m.Key = append(m.Key[:0], dAtA[iNdEx:postIndex]...) + if m.Key == nil { + m.Key = []byte{} + } + iNdEx = postIndex + default: + iNdEx = preIndex + skippy, err := skipKvrpcpb(dAtA[iNdEx:]) + if err != nil { + return err + } + if (skippy < 0) || (iNdEx+skippy) < 0 { + return ErrInvalidLengthKvrpcpb + } + 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 *Deadlock) 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 ErrIntOverflowKvrpcpb + } + if iNdEx >= l { return io.ErrUnexpectedEOF } - if m.Deadlock == nil { - m.Deadlock = &Deadlock{} - } - if err := m.Deadlock.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { - return err + b := dAtA[iNdEx] + iNdEx++ + wire |= uint64(b&0x7F) << shift + if b < 0x80 { + break } - iNdEx = postIndex - case 7: - if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field CommitTsExpired", wireType) + } + fieldNum := int32(wire >> 3) + wireType := int(wire & 0x7) + if wireType == 4 { + return fmt.Errorf("proto: Deadlock: wiretype end group for non-group") + } + if fieldNum <= 0 { + return fmt.Errorf("proto: Deadlock: illegal tag %d (wire type %d)", fieldNum, wire) + } + switch fieldNum { + case 1: + if wireType != 0 { + return fmt.Errorf("proto: wrong wireType = %d for field LockTs", wireType) } - var msglen int + m.LockTs = 0 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowKvrpcpb @@ -30807,33 +32204,16 @@ func (m *KeyError) Unmarshal(dAtA []byte) error { } b := dAtA[iNdEx] iNdEx++ - msglen |= int(b&0x7F) << shift + m.LockTs |= uint64(b&0x7F) << shift if b < 0x80 { break } } - if msglen < 0 { - return ErrInvalidLengthKvrpcpb - } - postIndex := iNdEx + msglen - if postIndex < 0 { - return ErrInvalidLengthKvrpcpb - } - if postIndex > l { - return io.ErrUnexpectedEOF - } - if m.CommitTsExpired == nil { - m.CommitTsExpired = &CommitTsExpired{} - } - if err := m.CommitTsExpired.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { - return err - } - iNdEx = postIndex - case 8: + case 2: if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field TxnNotFound", wireType) + return fmt.Errorf("proto: wrong wireType = %d for field LockKey", wireType) } - var msglen int + var byteLen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowKvrpcpb @@ -30843,33 +32223,31 @@ func (m *KeyError) Unmarshal(dAtA []byte) error { } b := dAtA[iNdEx] iNdEx++ - msglen |= int(b&0x7F) << shift + byteLen |= int(b&0x7F) << shift if b < 0x80 { break } } - if msglen < 0 { + if byteLen < 0 { return ErrInvalidLengthKvrpcpb } - postIndex := iNdEx + msglen + postIndex := iNdEx + byteLen if postIndex < 0 { return ErrInvalidLengthKvrpcpb } if postIndex > l { return io.ErrUnexpectedEOF } - if m.TxnNotFound == nil { - m.TxnNotFound = &TxnNotFound{} - } - if err := m.TxnNotFound.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { - return err + m.LockKey = append(m.LockKey[:0], dAtA[iNdEx:postIndex]...) + if m.LockKey == nil { + m.LockKey = []byte{} } iNdEx = postIndex - case 9: - if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field CommitTsTooLarge", wireType) + case 3: + if wireType != 0 { + return fmt.Errorf("proto: wrong wireType = %d for field DeadlockKeyHash", wireType) } - var msglen int + m.DeadlockKeyHash = 0 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowKvrpcpb @@ -30879,31 +32257,14 @@ func (m *KeyError) Unmarshal(dAtA []byte) error { } b := dAtA[iNdEx] iNdEx++ - msglen |= int(b&0x7F) << shift + m.DeadlockKeyHash |= uint64(b&0x7F) << shift if b < 0x80 { break } } - if msglen < 0 { - return ErrInvalidLengthKvrpcpb - } - postIndex := iNdEx + msglen - if postIndex < 0 { - return ErrInvalidLengthKvrpcpb - } - if postIndex > l { - return io.ErrUnexpectedEOF - } - if m.CommitTsTooLarge == nil { - m.CommitTsTooLarge = &CommitTsTooLarge{} - } - if err := m.CommitTsTooLarge.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { - return err - } - iNdEx = postIndex - case 10: + case 4: if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field AssertionFailed", wireType) + return fmt.Errorf("proto: wrong wireType = %d for field WaitChain", wireType) } var msglen int for shift := uint(0); ; shift += 7 { @@ -30930,10 +32291,8 @@ func (m *KeyError) Unmarshal(dAtA []byte) error { if postIndex > l { return io.ErrUnexpectedEOF } - if m.AssertionFailed == nil { - m.AssertionFailed = &AssertionFailed{} - } - if err := m.AssertionFailed.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { + m.WaitChain = append(m.WaitChain, &deadlock.WaitForEntry{}) + if err := m.WaitChain[len(m.WaitChain)-1].Unmarshal(dAtA[iNdEx:postIndex]); err != nil { return err } iNdEx = postIndex @@ -30959,7 +32318,7 @@ func (m *KeyError) Unmarshal(dAtA []byte) error { } return nil } -func (m *WriteConflict) Unmarshal(dAtA []byte) error { +func (m *CommitTsExpired) Unmarshal(dAtA []byte) error { l := len(dAtA) iNdEx := 0 for iNdEx < l { @@ -30982,10 +32341,10 @@ func (m *WriteConflict) Unmarshal(dAtA []byte) error { fieldNum := int32(wire >> 3) wireType := int(wire & 0x7) if wireType == 4 { - return fmt.Errorf("proto: WriteConflict: wiretype end group for non-group") + return fmt.Errorf("proto: CommitTsExpired: wiretype end group for non-group") } if fieldNum <= 0 { - return fmt.Errorf("proto: WriteConflict: illegal tag %d (wire type %d)", fieldNum, wire) + return fmt.Errorf("proto: CommitTsExpired: illegal tag %d (wire type %d)", fieldNum, wire) } switch fieldNum { case 1: @@ -31009,9 +32368,9 @@ func (m *WriteConflict) Unmarshal(dAtA []byte) error { } case 2: if wireType != 0 { - return fmt.Errorf("proto: wrong wireType = %d for field ConflictTs", wireType) + return fmt.Errorf("proto: wrong wireType = %d for field AttemptedCommitTs", wireType) } - m.ConflictTs = 0 + m.AttemptedCommitTs = 0 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowKvrpcpb @@ -31021,7 +32380,7 @@ func (m *WriteConflict) Unmarshal(dAtA []byte) error { } b := dAtA[iNdEx] iNdEx++ - m.ConflictTs |= uint64(b&0x7F) << shift + m.AttemptedCommitTs |= uint64(b&0x7F) << shift if b < 0x80 { break } @@ -31061,10 +32420,10 @@ func (m *WriteConflict) Unmarshal(dAtA []byte) error { } iNdEx = postIndex case 4: - if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field Primary", wireType) + if wireType != 0 { + return fmt.Errorf("proto: wrong wireType = %d for field MinCommitTs", wireType) } - var byteLen int + m.MinCommitTs = 0 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowKvrpcpb @@ -31074,31 +32433,67 @@ func (m *WriteConflict) Unmarshal(dAtA []byte) error { } b := dAtA[iNdEx] iNdEx++ - byteLen |= int(b&0x7F) << shift + m.MinCommitTs |= uint64(b&0x7F) << shift if b < 0x80 { break } } - if byteLen < 0 { - return ErrInvalidLengthKvrpcpb + default: + iNdEx = preIndex + skippy, err := skipKvrpcpb(dAtA[iNdEx:]) + if err != nil { + return err } - postIndex := iNdEx + byteLen - if postIndex < 0 { + if (skippy < 0) || (iNdEx+skippy) < 0 { return ErrInvalidLengthKvrpcpb } - if postIndex > l { + if (iNdEx + skippy) > l { return io.ErrUnexpectedEOF } - m.Primary = append(m.Primary[:0], dAtA[iNdEx:postIndex]...) - if m.Primary == nil { - m.Primary = []byte{} + m.XXX_unrecognized = append(m.XXX_unrecognized, dAtA[iNdEx:iNdEx+skippy]...) + iNdEx += skippy + } + } + + if iNdEx > l { + return io.ErrUnexpectedEOF + } + return nil +} +func (m *TxnNotFound) 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 ErrIntOverflowKvrpcpb } - iNdEx = postIndex - case 5: + 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: TxnNotFound: wiretype end group for non-group") + } + if fieldNum <= 0 { + return fmt.Errorf("proto: TxnNotFound: illegal tag %d (wire type %d)", fieldNum, wire) + } + switch fieldNum { + case 1: if wireType != 0 { - return fmt.Errorf("proto: wrong wireType = %d for field ConflictCommitTs", wireType) + return fmt.Errorf("proto: wrong wireType = %d for field StartTs", wireType) } - m.ConflictCommitTs = 0 + m.StartTs = 0 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowKvrpcpb @@ -31108,11 +32503,45 @@ func (m *WriteConflict) Unmarshal(dAtA []byte) error { } b := dAtA[iNdEx] iNdEx++ - m.ConflictCommitTs |= uint64(b&0x7F) << shift + m.StartTs |= uint64(b&0x7F) << shift + if b < 0x80 { + break + } + } + case 2: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field PrimaryKey", wireType) + } + var byteLen int + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowKvrpcpb + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + byteLen |= int(b&0x7F) << shift if b < 0x80 { break } } + if byteLen < 0 { + return ErrInvalidLengthKvrpcpb + } + postIndex := iNdEx + byteLen + if postIndex < 0 { + return ErrInvalidLengthKvrpcpb + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + m.PrimaryKey = append(m.PrimaryKey[:0], dAtA[iNdEx:postIndex]...) + if m.PrimaryKey == nil { + m.PrimaryKey = []byte{} + } + iNdEx = postIndex default: iNdEx = preIndex skippy, err := skipKvrpcpb(dAtA[iNdEx:]) @@ -31135,7 +32564,7 @@ func (m *WriteConflict) Unmarshal(dAtA []byte) error { } return nil } -func (m *AlreadyExist) Unmarshal(dAtA []byte) error { +func (m *CommitTsTooLarge) Unmarshal(dAtA []byte) error { l := len(dAtA) iNdEx := 0 for iNdEx < l { @@ -31158,17 +32587,17 @@ func (m *AlreadyExist) Unmarshal(dAtA []byte) error { fieldNum := int32(wire >> 3) wireType := int(wire & 0x7) if wireType == 4 { - return fmt.Errorf("proto: AlreadyExist: wiretype end group for non-group") + return fmt.Errorf("proto: CommitTsTooLarge: wiretype end group for non-group") } if fieldNum <= 0 { - return fmt.Errorf("proto: AlreadyExist: illegal tag %d (wire type %d)", fieldNum, wire) + return fmt.Errorf("proto: CommitTsTooLarge: illegal tag %d (wire type %d)", fieldNum, wire) } switch fieldNum { case 1: - if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field Key", wireType) + if wireType != 0 { + return fmt.Errorf("proto: wrong wireType = %d for field CommitTs", wireType) } - var byteLen int + m.CommitTs = 0 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowKvrpcpb @@ -31178,26 +32607,11 @@ func (m *AlreadyExist) Unmarshal(dAtA []byte) error { } b := dAtA[iNdEx] iNdEx++ - byteLen |= int(b&0x7F) << shift + m.CommitTs |= uint64(b&0x7F) << shift if b < 0x80 { break - } - } - if byteLen < 0 { - return ErrInvalidLengthKvrpcpb - } - postIndex := iNdEx + byteLen - if postIndex < 0 { - return ErrInvalidLengthKvrpcpb - } - if postIndex > l { - return io.ErrUnexpectedEOF - } - m.Key = append(m.Key[:0], dAtA[iNdEx:postIndex]...) - if m.Key == nil { - m.Key = []byte{} + } } - iNdEx = postIndex default: iNdEx = preIndex skippy, err := skipKvrpcpb(dAtA[iNdEx:]) @@ -31220,7 +32634,7 @@ func (m *AlreadyExist) Unmarshal(dAtA []byte) error { } return nil } -func (m *Deadlock) Unmarshal(dAtA []byte) error { +func (m *AssertionFailed) Unmarshal(dAtA []byte) error { l := len(dAtA) iNdEx := 0 for iNdEx < l { @@ -31243,17 +32657,17 @@ func (m *Deadlock) Unmarshal(dAtA []byte) error { fieldNum := int32(wire >> 3) wireType := int(wire & 0x7) if wireType == 4 { - return fmt.Errorf("proto: Deadlock: wiretype end group for non-group") + return fmt.Errorf("proto: AssertionFailed: wiretype end group for non-group") } if fieldNum <= 0 { - return fmt.Errorf("proto: Deadlock: illegal tag %d (wire type %d)", fieldNum, wire) + return fmt.Errorf("proto: AssertionFailed: illegal tag %d (wire type %d)", fieldNum, wire) } switch fieldNum { case 1: if wireType != 0 { - return fmt.Errorf("proto: wrong wireType = %d for field LockTs", wireType) + return fmt.Errorf("proto: wrong wireType = %d for field StartTs", wireType) } - m.LockTs = 0 + m.StartTs = 0 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowKvrpcpb @@ -31263,14 +32677,14 @@ func (m *Deadlock) Unmarshal(dAtA []byte) error { } b := dAtA[iNdEx] iNdEx++ - m.LockTs |= uint64(b&0x7F) << shift + m.StartTs |= uint64(b&0x7F) << shift if b < 0x80 { break } } case 2: if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field LockKey", wireType) + return fmt.Errorf("proto: wrong wireType = %d for field Key", wireType) } var byteLen int for shift := uint(0); ; shift += 7 { @@ -31297,16 +32711,16 @@ func (m *Deadlock) Unmarshal(dAtA []byte) error { if postIndex > l { return io.ErrUnexpectedEOF } - m.LockKey = append(m.LockKey[:0], dAtA[iNdEx:postIndex]...) - if m.LockKey == nil { - m.LockKey = []byte{} + m.Key = append(m.Key[:0], dAtA[iNdEx:postIndex]...) + if m.Key == nil { + m.Key = []byte{} } iNdEx = postIndex case 3: if wireType != 0 { - return fmt.Errorf("proto: wrong wireType = %d for field DeadlockKeyHash", wireType) + return fmt.Errorf("proto: wrong wireType = %d for field Assertion", wireType) } - m.DeadlockKeyHash = 0 + m.Assertion = 0 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowKvrpcpb @@ -31316,16 +32730,16 @@ func (m *Deadlock) Unmarshal(dAtA []byte) error { } b := dAtA[iNdEx] iNdEx++ - m.DeadlockKeyHash |= uint64(b&0x7F) << shift + m.Assertion |= Assertion(b&0x7F) << shift if b < 0x80 { break } } case 4: - if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field WaitChain", wireType) + if wireType != 0 { + return fmt.Errorf("proto: wrong wireType = %d for field ExistingStartTs", wireType) } - var msglen int + m.ExistingStartTs = 0 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowKvrpcpb @@ -31335,26 +32749,30 @@ func (m *Deadlock) Unmarshal(dAtA []byte) error { } b := dAtA[iNdEx] iNdEx++ - msglen |= int(b&0x7F) << shift + m.ExistingStartTs |= uint64(b&0x7F) << shift if b < 0x80 { break } } - if msglen < 0 { - return ErrInvalidLengthKvrpcpb - } - postIndex := iNdEx + msglen - if postIndex < 0 { - return ErrInvalidLengthKvrpcpb - } - if postIndex > l { - return io.ErrUnexpectedEOF + case 5: + if wireType != 0 { + return fmt.Errorf("proto: wrong wireType = %d for field ExistingCommitTs", wireType) } - m.WaitChain = append(m.WaitChain, &deadlock.WaitForEntry{}) - if err := m.WaitChain[len(m.WaitChain)-1].Unmarshal(dAtA[iNdEx:postIndex]); err != nil { - return err + m.ExistingCommitTs = 0 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowKvrpcpb + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + m.ExistingCommitTs |= uint64(b&0x7F) << shift + if b < 0x80 { + break + } } - iNdEx = postIndex default: iNdEx = preIndex skippy, err := skipKvrpcpb(dAtA[iNdEx:]) @@ -31377,7 +32795,7 @@ func (m *Deadlock) Unmarshal(dAtA []byte) error { } return nil } -func (m *CommitTsExpired) Unmarshal(dAtA []byte) error { +func (m *TimeDetail) Unmarshal(dAtA []byte) error { l := len(dAtA) iNdEx := 0 for iNdEx < l { @@ -31400,17 +32818,17 @@ func (m *CommitTsExpired) Unmarshal(dAtA []byte) error { fieldNum := int32(wire >> 3) wireType := int(wire & 0x7) if wireType == 4 { - return fmt.Errorf("proto: CommitTsExpired: wiretype end group for non-group") + return fmt.Errorf("proto: TimeDetail: wiretype end group for non-group") } if fieldNum <= 0 { - return fmt.Errorf("proto: CommitTsExpired: illegal tag %d (wire type %d)", fieldNum, wire) + return fmt.Errorf("proto: TimeDetail: illegal tag %d (wire type %d)", fieldNum, wire) } switch fieldNum { case 1: if wireType != 0 { - return fmt.Errorf("proto: wrong wireType = %d for field StartTs", wireType) + return fmt.Errorf("proto: wrong wireType = %d for field WaitWallTimeMs", wireType) } - m.StartTs = 0 + m.WaitWallTimeMs = 0 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowKvrpcpb @@ -31420,16 +32838,16 @@ func (m *CommitTsExpired) Unmarshal(dAtA []byte) error { } b := dAtA[iNdEx] iNdEx++ - m.StartTs |= uint64(b&0x7F) << shift + m.WaitWallTimeMs |= int64(b&0x7F) << shift if b < 0x80 { break } } case 2: if wireType != 0 { - return fmt.Errorf("proto: wrong wireType = %d for field AttemptedCommitTs", wireType) + return fmt.Errorf("proto: wrong wireType = %d for field ProcessWallTimeMs", wireType) } - m.AttemptedCommitTs = 0 + m.ProcessWallTimeMs = 0 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowKvrpcpb @@ -31439,50 +32857,16 @@ func (m *CommitTsExpired) Unmarshal(dAtA []byte) error { } b := dAtA[iNdEx] iNdEx++ - m.AttemptedCommitTs |= uint64(b&0x7F) << shift + m.ProcessWallTimeMs |= int64(b&0x7F) << shift if b < 0x80 { break } } case 3: - if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field Key", wireType) - } - var byteLen int - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowKvrpcpb - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := dAtA[iNdEx] - iNdEx++ - byteLen |= int(b&0x7F) << shift - if b < 0x80 { - break - } - } - if byteLen < 0 { - return ErrInvalidLengthKvrpcpb - } - postIndex := iNdEx + byteLen - if postIndex < 0 { - return ErrInvalidLengthKvrpcpb - } - if postIndex > l { - return io.ErrUnexpectedEOF - } - m.Key = append(m.Key[:0], dAtA[iNdEx:postIndex]...) - if m.Key == nil { - m.Key = []byte{} - } - iNdEx = postIndex - case 4: if wireType != 0 { - return fmt.Errorf("proto: wrong wireType = %d for field MinCommitTs", wireType) + return fmt.Errorf("proto: wrong wireType = %d for field KvReadWallTimeMs", wireType) } - m.MinCommitTs = 0 + m.KvReadWallTimeMs = 0 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowKvrpcpb @@ -31492,7 +32876,7 @@ func (m *CommitTsExpired) Unmarshal(dAtA []byte) error { } b := dAtA[iNdEx] iNdEx++ - m.MinCommitTs |= uint64(b&0x7F) << shift + m.KvReadWallTimeMs |= int64(b&0x7F) << shift if b < 0x80 { break } @@ -31519,7 +32903,7 @@ func (m *CommitTsExpired) Unmarshal(dAtA []byte) error { } return nil } -func (m *TxnNotFound) Unmarshal(dAtA []byte) error { +func (m *ScanInfo) Unmarshal(dAtA []byte) error { l := len(dAtA) iNdEx := 0 for iNdEx < l { @@ -31542,17 +32926,17 @@ func (m *TxnNotFound) Unmarshal(dAtA []byte) error { fieldNum := int32(wire >> 3) wireType := int(wire & 0x7) if wireType == 4 { - return fmt.Errorf("proto: TxnNotFound: wiretype end group for non-group") + return fmt.Errorf("proto: ScanInfo: wiretype end group for non-group") } if fieldNum <= 0 { - return fmt.Errorf("proto: TxnNotFound: illegal tag %d (wire type %d)", fieldNum, wire) + return fmt.Errorf("proto: ScanInfo: illegal tag %d (wire type %d)", fieldNum, wire) } switch fieldNum { case 1: if wireType != 0 { - return fmt.Errorf("proto: wrong wireType = %d for field StartTs", wireType) + return fmt.Errorf("proto: wrong wireType = %d for field Total", wireType) } - m.StartTs = 0 + m.Total = 0 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowKvrpcpb @@ -31562,16 +32946,16 @@ func (m *TxnNotFound) Unmarshal(dAtA []byte) error { } b := dAtA[iNdEx] iNdEx++ - m.StartTs |= uint64(b&0x7F) << shift + m.Total |= int64(b&0x7F) << shift if b < 0x80 { break } } case 2: - if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field PrimaryKey", wireType) + if wireType != 0 { + return fmt.Errorf("proto: wrong wireType = %d for field Processed", wireType) } - var byteLen int + m.Processed = 0 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowKvrpcpb @@ -31581,26 +32965,30 @@ func (m *TxnNotFound) Unmarshal(dAtA []byte) error { } b := dAtA[iNdEx] iNdEx++ - byteLen |= int(b&0x7F) << shift + m.Processed |= int64(b&0x7F) << shift if b < 0x80 { break } } - if byteLen < 0 { - return ErrInvalidLengthKvrpcpb - } - postIndex := iNdEx + byteLen - if postIndex < 0 { - return ErrInvalidLengthKvrpcpb - } - if postIndex > l { - return io.ErrUnexpectedEOF + case 3: + if wireType != 0 { + return fmt.Errorf("proto: wrong wireType = %d for field ReadBytes", wireType) } - m.PrimaryKey = append(m.PrimaryKey[:0], dAtA[iNdEx:postIndex]...) - if m.PrimaryKey == nil { - m.PrimaryKey = []byte{} + m.ReadBytes = 0 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowKvrpcpb + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + m.ReadBytes |= int64(b&0x7F) << shift + if b < 0x80 { + break + } } - iNdEx = postIndex default: iNdEx = preIndex skippy, err := skipKvrpcpb(dAtA[iNdEx:]) @@ -31623,7 +33011,7 @@ func (m *TxnNotFound) Unmarshal(dAtA []byte) error { } return nil } -func (m *CommitTsTooLarge) Unmarshal(dAtA []byte) error { +func (m *ScanDetail) Unmarshal(dAtA []byte) error { l := len(dAtA) iNdEx := 0 for iNdEx < l { @@ -31646,17 +33034,89 @@ func (m *CommitTsTooLarge) Unmarshal(dAtA []byte) error { fieldNum := int32(wire >> 3) wireType := int(wire & 0x7) if wireType == 4 { - return fmt.Errorf("proto: CommitTsTooLarge: wiretype end group for non-group") + return fmt.Errorf("proto: ScanDetail: wiretype end group for non-group") } if fieldNum <= 0 { - return fmt.Errorf("proto: CommitTsTooLarge: illegal tag %d (wire type %d)", fieldNum, wire) + return fmt.Errorf("proto: ScanDetail: illegal tag %d (wire type %d)", fieldNum, wire) } switch fieldNum { case 1: - if wireType != 0 { - return fmt.Errorf("proto: wrong wireType = %d for field CommitTs", wireType) + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field Write", wireType) + } + var msglen int + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowKvrpcpb + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + msglen |= int(b&0x7F) << shift + if b < 0x80 { + break + } + } + if msglen < 0 { + return ErrInvalidLengthKvrpcpb + } + postIndex := iNdEx + msglen + if postIndex < 0 { + return ErrInvalidLengthKvrpcpb + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + if m.Write == nil { + m.Write = &ScanInfo{} + } + if err := m.Write.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { + return err + } + iNdEx = postIndex + case 2: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field Lock", wireType) + } + var msglen int + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowKvrpcpb + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + msglen |= int(b&0x7F) << shift + if b < 0x80 { + break + } + } + if msglen < 0 { + return ErrInvalidLengthKvrpcpb + } + postIndex := iNdEx + msglen + if postIndex < 0 { + return ErrInvalidLengthKvrpcpb + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + if m.Lock == nil { + m.Lock = &ScanInfo{} + } + if err := m.Lock.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { + return err + } + iNdEx = postIndex + case 3: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field Data", wireType) } - m.CommitTs = 0 + var msglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowKvrpcpb @@ -31666,11 +33126,28 @@ func (m *CommitTsTooLarge) Unmarshal(dAtA []byte) error { } b := dAtA[iNdEx] iNdEx++ - m.CommitTs |= uint64(b&0x7F) << shift + msglen |= int(b&0x7F) << shift if b < 0x80 { break } } + if msglen < 0 { + return ErrInvalidLengthKvrpcpb + } + postIndex := iNdEx + msglen + if postIndex < 0 { + return ErrInvalidLengthKvrpcpb + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + if m.Data == nil { + m.Data = &ScanInfo{} + } + if err := m.Data.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { + return err + } + iNdEx = postIndex default: iNdEx = preIndex skippy, err := skipKvrpcpb(dAtA[iNdEx:]) @@ -31693,7 +33170,7 @@ func (m *CommitTsTooLarge) Unmarshal(dAtA []byte) error { } return nil } -func (m *AssertionFailed) Unmarshal(dAtA []byte) error { +func (m *ScanDetailV2) Unmarshal(dAtA []byte) error { l := len(dAtA) iNdEx := 0 for iNdEx < l { @@ -31716,17 +33193,17 @@ func (m *AssertionFailed) Unmarshal(dAtA []byte) error { fieldNum := int32(wire >> 3) wireType := int(wire & 0x7) if wireType == 4 { - return fmt.Errorf("proto: AssertionFailed: wiretype end group for non-group") + return fmt.Errorf("proto: ScanDetailV2: wiretype end group for non-group") } if fieldNum <= 0 { - return fmt.Errorf("proto: AssertionFailed: illegal tag %d (wire type %d)", fieldNum, wire) + return fmt.Errorf("proto: ScanDetailV2: illegal tag %d (wire type %d)", fieldNum, wire) } switch fieldNum { case 1: if wireType != 0 { - return fmt.Errorf("proto: wrong wireType = %d for field StartTs", wireType) + return fmt.Errorf("proto: wrong wireType = %d for field ProcessedVersions", wireType) } - m.StartTs = 0 + m.ProcessedVersions = 0 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowKvrpcpb @@ -31736,16 +33213,16 @@ func (m *AssertionFailed) Unmarshal(dAtA []byte) error { } b := dAtA[iNdEx] iNdEx++ - m.StartTs |= uint64(b&0x7F) << shift + m.ProcessedVersions |= uint64(b&0x7F) << shift if b < 0x80 { break } } case 2: - if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field Key", wireType) + if wireType != 0 { + return fmt.Errorf("proto: wrong wireType = %d for field TotalVersions", wireType) } - var byteLen int + m.TotalVersions = 0 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowKvrpcpb @@ -31755,31 +33232,54 @@ func (m *AssertionFailed) Unmarshal(dAtA []byte) error { } b := dAtA[iNdEx] iNdEx++ - byteLen |= int(b&0x7F) << shift + m.TotalVersions |= uint64(b&0x7F) << shift if b < 0x80 { break } } - if byteLen < 0 { - return ErrInvalidLengthKvrpcpb + case 3: + if wireType != 0 { + return fmt.Errorf("proto: wrong wireType = %d for field RocksdbDeleteSkippedCount", wireType) } - postIndex := iNdEx + byteLen - if postIndex < 0 { - return ErrInvalidLengthKvrpcpb + m.RocksdbDeleteSkippedCount = 0 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowKvrpcpb + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + m.RocksdbDeleteSkippedCount |= uint64(b&0x7F) << shift + if b < 0x80 { + break + } } - if postIndex > l { - return io.ErrUnexpectedEOF + case 4: + if wireType != 0 { + return fmt.Errorf("proto: wrong wireType = %d for field RocksdbKeySkippedCount", wireType) } - m.Key = append(m.Key[:0], dAtA[iNdEx:postIndex]...) - if m.Key == nil { - m.Key = []byte{} + m.RocksdbKeySkippedCount = 0 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowKvrpcpb + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + m.RocksdbKeySkippedCount |= uint64(b&0x7F) << shift + if b < 0x80 { + break + } } - iNdEx = postIndex - case 3: + case 5: if wireType != 0 { - return fmt.Errorf("proto: wrong wireType = %d for field Assertion", wireType) + return fmt.Errorf("proto: wrong wireType = %d for field RocksdbBlockCacheHitCount", wireType) } - m.Assertion = 0 + m.RocksdbBlockCacheHitCount = 0 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowKvrpcpb @@ -31789,16 +33289,16 @@ func (m *AssertionFailed) Unmarshal(dAtA []byte) error { } b := dAtA[iNdEx] iNdEx++ - m.Assertion |= Assertion(b&0x7F) << shift + m.RocksdbBlockCacheHitCount |= uint64(b&0x7F) << shift if b < 0x80 { break } } - case 4: + case 6: if wireType != 0 { - return fmt.Errorf("proto: wrong wireType = %d for field ExistingStartTs", wireType) + return fmt.Errorf("proto: wrong wireType = %d for field RocksdbBlockReadCount", wireType) } - m.ExistingStartTs = 0 + m.RocksdbBlockReadCount = 0 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowKvrpcpb @@ -31808,16 +33308,16 @@ func (m *AssertionFailed) Unmarshal(dAtA []byte) error { } b := dAtA[iNdEx] iNdEx++ - m.ExistingStartTs |= uint64(b&0x7F) << shift + m.RocksdbBlockReadCount |= uint64(b&0x7F) << shift if b < 0x80 { break } } - case 5: + case 7: if wireType != 0 { - return fmt.Errorf("proto: wrong wireType = %d for field ExistingCommitTs", wireType) + return fmt.Errorf("proto: wrong wireType = %d for field RocksdbBlockReadByte", wireType) } - m.ExistingCommitTs = 0 + m.RocksdbBlockReadByte = 0 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowKvrpcpb @@ -31827,7 +33327,26 @@ func (m *AssertionFailed) Unmarshal(dAtA []byte) error { } b := dAtA[iNdEx] iNdEx++ - m.ExistingCommitTs |= uint64(b&0x7F) << shift + m.RocksdbBlockReadByte |= uint64(b&0x7F) << shift + if b < 0x80 { + break + } + } + case 8: + if wireType != 0 { + return fmt.Errorf("proto: wrong wireType = %d for field ProcessedVersionsSize", wireType) + } + m.ProcessedVersionsSize = 0 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowKvrpcpb + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + m.ProcessedVersionsSize |= uint64(b&0x7F) << shift if b < 0x80 { break } @@ -31854,7 +33373,7 @@ func (m *AssertionFailed) Unmarshal(dAtA []byte) error { } return nil } -func (m *TimeDetail) Unmarshal(dAtA []byte) error { +func (m *ExecDetails) Unmarshal(dAtA []byte) error { l := len(dAtA) iNdEx := 0 for iNdEx < l { @@ -31877,17 +33396,17 @@ func (m *TimeDetail) Unmarshal(dAtA []byte) error { fieldNum := int32(wire >> 3) wireType := int(wire & 0x7) if wireType == 4 { - return fmt.Errorf("proto: TimeDetail: wiretype end group for non-group") + return fmt.Errorf("proto: ExecDetails: wiretype end group for non-group") } if fieldNum <= 0 { - return fmt.Errorf("proto: TimeDetail: illegal tag %d (wire type %d)", fieldNum, wire) + return fmt.Errorf("proto: ExecDetails: illegal tag %d (wire type %d)", fieldNum, wire) } switch fieldNum { case 1: - if wireType != 0 { - return fmt.Errorf("proto: wrong wireType = %d for field WaitWallTimeMs", wireType) + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field TimeDetail", wireType) } - m.WaitWallTimeMs = 0 + var msglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowKvrpcpb @@ -31897,16 +33416,33 @@ func (m *TimeDetail) Unmarshal(dAtA []byte) error { } b := dAtA[iNdEx] iNdEx++ - m.WaitWallTimeMs |= int64(b&0x7F) << shift + msglen |= int(b&0x7F) << shift if b < 0x80 { break } } + if msglen < 0 { + return ErrInvalidLengthKvrpcpb + } + postIndex := iNdEx + msglen + if postIndex < 0 { + return ErrInvalidLengthKvrpcpb + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + if m.TimeDetail == nil { + m.TimeDetail = &TimeDetail{} + } + if err := m.TimeDetail.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { + return err + } + iNdEx = postIndex case 2: - if wireType != 0 { - return fmt.Errorf("proto: wrong wireType = %d for field ProcessWallTimeMs", wireType) + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field ScanDetail", wireType) } - m.ProcessWallTimeMs = 0 + var msglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowKvrpcpb @@ -31916,30 +33452,28 @@ func (m *TimeDetail) Unmarshal(dAtA []byte) error { } b := dAtA[iNdEx] iNdEx++ - m.ProcessWallTimeMs |= int64(b&0x7F) << shift + msglen |= int(b&0x7F) << shift if b < 0x80 { break } } - case 3: - if wireType != 0 { - return fmt.Errorf("proto: wrong wireType = %d for field KvReadWallTimeMs", wireType) + if msglen < 0 { + return ErrInvalidLengthKvrpcpb } - m.KvReadWallTimeMs = 0 - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowKvrpcpb - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := dAtA[iNdEx] - iNdEx++ - m.KvReadWallTimeMs |= int64(b&0x7F) << shift - if b < 0x80 { - break - } + postIndex := iNdEx + msglen + if postIndex < 0 { + return ErrInvalidLengthKvrpcpb + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + if m.ScanDetail == nil { + m.ScanDetail = &ScanDetail{} } + if err := m.ScanDetail.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { + return err + } + iNdEx = postIndex default: iNdEx = preIndex skippy, err := skipKvrpcpb(dAtA[iNdEx:]) @@ -31962,7 +33496,7 @@ func (m *TimeDetail) Unmarshal(dAtA []byte) error { } return nil } -func (m *ScanInfo) Unmarshal(dAtA []byte) error { +func (m *ExecDetailsV2) Unmarshal(dAtA []byte) error { l := len(dAtA) iNdEx := 0 for iNdEx < l { @@ -31985,17 +33519,17 @@ func (m *ScanInfo) Unmarshal(dAtA []byte) error { fieldNum := int32(wire >> 3) wireType := int(wire & 0x7) if wireType == 4 { - return fmt.Errorf("proto: ScanInfo: wiretype end group for non-group") + return fmt.Errorf("proto: ExecDetailsV2: wiretype end group for non-group") } if fieldNum <= 0 { - return fmt.Errorf("proto: ScanInfo: illegal tag %d (wire type %d)", fieldNum, wire) + return fmt.Errorf("proto: ExecDetailsV2: illegal tag %d (wire type %d)", fieldNum, wire) } switch fieldNum { case 1: - if wireType != 0 { - return fmt.Errorf("proto: wrong wireType = %d for field Total", wireType) + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field TimeDetail", wireType) } - m.Total = 0 + var msglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowKvrpcpb @@ -32005,35 +33539,33 @@ func (m *ScanInfo) Unmarshal(dAtA []byte) error { } b := dAtA[iNdEx] iNdEx++ - m.Total |= int64(b&0x7F) << shift + msglen |= int(b&0x7F) << shift if b < 0x80 { break } } - case 2: - if wireType != 0 { - return fmt.Errorf("proto: wrong wireType = %d for field Processed", wireType) + if msglen < 0 { + return ErrInvalidLengthKvrpcpb } - m.Processed = 0 - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowKvrpcpb - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := dAtA[iNdEx] - iNdEx++ - m.Processed |= int64(b&0x7F) << shift - if b < 0x80 { - break - } + postIndex := iNdEx + msglen + if postIndex < 0 { + return ErrInvalidLengthKvrpcpb } - case 3: - if wireType != 0 { - return fmt.Errorf("proto: wrong wireType = %d for field ReadBytes", wireType) + if postIndex > l { + return io.ErrUnexpectedEOF } - m.ReadBytes = 0 + if m.TimeDetail == nil { + m.TimeDetail = &TimeDetail{} + } + if err := m.TimeDetail.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { + return err + } + iNdEx = postIndex + case 2: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field ScanDetailV2", wireType) + } + var msglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowKvrpcpb @@ -32043,11 +33575,28 @@ func (m *ScanInfo) Unmarshal(dAtA []byte) error { } b := dAtA[iNdEx] iNdEx++ - m.ReadBytes |= int64(b&0x7F) << shift + msglen |= int(b&0x7F) << shift if b < 0x80 { break } } + if msglen < 0 { + return ErrInvalidLengthKvrpcpb + } + postIndex := iNdEx + msglen + if postIndex < 0 { + return ErrInvalidLengthKvrpcpb + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + if m.ScanDetailV2 == nil { + m.ScanDetailV2 = &ScanDetailV2{} + } + if err := m.ScanDetailV2.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { + return err + } + iNdEx = postIndex default: iNdEx = preIndex skippy, err := skipKvrpcpb(dAtA[iNdEx:]) @@ -32070,7 +33619,7 @@ func (m *ScanInfo) Unmarshal(dAtA []byte) error { } return nil } -func (m *ScanDetail) Unmarshal(dAtA []byte) error { +func (m *KvPair) Unmarshal(dAtA []byte) error { l := len(dAtA) iNdEx := 0 for iNdEx < l { @@ -32093,15 +33642,15 @@ func (m *ScanDetail) Unmarshal(dAtA []byte) error { fieldNum := int32(wire >> 3) wireType := int(wire & 0x7) if wireType == 4 { - return fmt.Errorf("proto: ScanDetail: wiretype end group for non-group") + return fmt.Errorf("proto: KvPair: wiretype end group for non-group") } if fieldNum <= 0 { - return fmt.Errorf("proto: ScanDetail: illegal tag %d (wire type %d)", fieldNum, wire) + return fmt.Errorf("proto: KvPair: illegal tag %d (wire type %d)", fieldNum, wire) } switch fieldNum { case 1: if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field Write", wireType) + return fmt.Errorf("proto: wrong wireType = %d for field Error", wireType) } var msglen int for shift := uint(0); ; shift += 7 { @@ -32128,18 +33677,18 @@ func (m *ScanDetail) Unmarshal(dAtA []byte) error { if postIndex > l { return io.ErrUnexpectedEOF } - if m.Write == nil { - m.Write = &ScanInfo{} + if m.Error == nil { + m.Error = &KeyError{} } - if err := m.Write.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { + if err := m.Error.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { return err } iNdEx = postIndex case 2: if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field Lock", wireType) + return fmt.Errorf("proto: wrong wireType = %d for field Key", wireType) } - var msglen int + var byteLen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowKvrpcpb @@ -32149,33 +33698,31 @@ func (m *ScanDetail) Unmarshal(dAtA []byte) error { } b := dAtA[iNdEx] iNdEx++ - msglen |= int(b&0x7F) << shift + byteLen |= int(b&0x7F) << shift if b < 0x80 { break } } - if msglen < 0 { + if byteLen < 0 { return ErrInvalidLengthKvrpcpb } - postIndex := iNdEx + msglen + postIndex := iNdEx + byteLen if postIndex < 0 { return ErrInvalidLengthKvrpcpb } if postIndex > l { return io.ErrUnexpectedEOF } - if m.Lock == nil { - m.Lock = &ScanInfo{} - } - if err := m.Lock.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { - return err + m.Key = append(m.Key[:0], dAtA[iNdEx:postIndex]...) + if m.Key == nil { + m.Key = []byte{} } iNdEx = postIndex case 3: if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field Data", wireType) + return fmt.Errorf("proto: wrong wireType = %d for field Value", wireType) } - var msglen int + var byteLen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowKvrpcpb @@ -32185,26 +33732,24 @@ func (m *ScanDetail) Unmarshal(dAtA []byte) error { } b := dAtA[iNdEx] iNdEx++ - msglen |= int(b&0x7F) << shift + byteLen |= int(b&0x7F) << shift if b < 0x80 { break } } - if msglen < 0 { + if byteLen < 0 { return ErrInvalidLengthKvrpcpb } - postIndex := iNdEx + msglen + postIndex := iNdEx + byteLen if postIndex < 0 { return ErrInvalidLengthKvrpcpb } if postIndex > l { return io.ErrUnexpectedEOF } - if m.Data == nil { - m.Data = &ScanInfo{} - } - if err := m.Data.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { - return err + m.Value = append(m.Value[:0], dAtA[iNdEx:postIndex]...) + if m.Value == nil { + m.Value = []byte{} } iNdEx = postIndex default: @@ -32229,7 +33774,7 @@ func (m *ScanDetail) Unmarshal(dAtA []byte) error { } return nil } -func (m *ScanDetailV2) Unmarshal(dAtA []byte) error { +func (m *Mutation) Unmarshal(dAtA []byte) error { l := len(dAtA) iNdEx := 0 for iNdEx < l { @@ -32252,17 +33797,17 @@ func (m *ScanDetailV2) Unmarshal(dAtA []byte) error { fieldNum := int32(wire >> 3) wireType := int(wire & 0x7) if wireType == 4 { - return fmt.Errorf("proto: ScanDetailV2: wiretype end group for non-group") + return fmt.Errorf("proto: Mutation: wiretype end group for non-group") } if fieldNum <= 0 { - return fmt.Errorf("proto: ScanDetailV2: illegal tag %d (wire type %d)", fieldNum, wire) + return fmt.Errorf("proto: Mutation: illegal tag %d (wire type %d)", fieldNum, wire) } switch fieldNum { case 1: if wireType != 0 { - return fmt.Errorf("proto: wrong wireType = %d for field ProcessedVersions", wireType) + return fmt.Errorf("proto: wrong wireType = %d for field Op", wireType) } - m.ProcessedVersions = 0 + m.Op = 0 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowKvrpcpb @@ -32272,16 +33817,16 @@ func (m *ScanDetailV2) Unmarshal(dAtA []byte) error { } b := dAtA[iNdEx] iNdEx++ - m.ProcessedVersions |= uint64(b&0x7F) << shift + m.Op |= Op(b&0x7F) << shift if b < 0x80 { break } } case 2: - if wireType != 0 { - return fmt.Errorf("proto: wrong wireType = %d for field TotalVersions", wireType) + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field Key", wireType) } - m.TotalVersions = 0 + var byteLen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowKvrpcpb @@ -32291,54 +33836,31 @@ func (m *ScanDetailV2) Unmarshal(dAtA []byte) error { } b := dAtA[iNdEx] iNdEx++ - m.TotalVersions |= uint64(b&0x7F) << shift + byteLen |= int(b&0x7F) << shift if b < 0x80 { break } } - case 3: - if wireType != 0 { - return fmt.Errorf("proto: wrong wireType = %d for field RocksdbDeleteSkippedCount", wireType) + if byteLen < 0 { + return ErrInvalidLengthKvrpcpb } - m.RocksdbDeleteSkippedCount = 0 - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowKvrpcpb - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := dAtA[iNdEx] - iNdEx++ - m.RocksdbDeleteSkippedCount |= uint64(b&0x7F) << shift - if b < 0x80 { - break - } + postIndex := iNdEx + byteLen + if postIndex < 0 { + return ErrInvalidLengthKvrpcpb } - case 4: - if wireType != 0 { - return fmt.Errorf("proto: wrong wireType = %d for field RocksdbKeySkippedCount", wireType) + if postIndex > l { + return io.ErrUnexpectedEOF } - m.RocksdbKeySkippedCount = 0 - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowKvrpcpb - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := dAtA[iNdEx] - iNdEx++ - m.RocksdbKeySkippedCount |= uint64(b&0x7F) << shift - if b < 0x80 { - break - } + m.Key = append(m.Key[:0], dAtA[iNdEx:postIndex]...) + if m.Key == nil { + m.Key = []byte{} } - case 5: - if wireType != 0 { - return fmt.Errorf("proto: wrong wireType = %d for field RocksdbBlockCacheHitCount", wireType) + iNdEx = postIndex + case 3: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field Value", wireType) } - m.RocksdbBlockCacheHitCount = 0 + var byteLen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowKvrpcpb @@ -32348,54 +33870,31 @@ func (m *ScanDetailV2) Unmarshal(dAtA []byte) error { } b := dAtA[iNdEx] iNdEx++ - m.RocksdbBlockCacheHitCount |= uint64(b&0x7F) << shift + byteLen |= int(b&0x7F) << shift if b < 0x80 { break } } - case 6: - if wireType != 0 { - return fmt.Errorf("proto: wrong wireType = %d for field RocksdbBlockReadCount", wireType) + if byteLen < 0 { + return ErrInvalidLengthKvrpcpb } - m.RocksdbBlockReadCount = 0 - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowKvrpcpb - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := dAtA[iNdEx] - iNdEx++ - m.RocksdbBlockReadCount |= uint64(b&0x7F) << shift - if b < 0x80 { - break - } + postIndex := iNdEx + byteLen + if postIndex < 0 { + return ErrInvalidLengthKvrpcpb } - case 7: - if wireType != 0 { - return fmt.Errorf("proto: wrong wireType = %d for field RocksdbBlockReadByte", wireType) + if postIndex > l { + return io.ErrUnexpectedEOF } - m.RocksdbBlockReadByte = 0 - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowKvrpcpb - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := dAtA[iNdEx] - iNdEx++ - m.RocksdbBlockReadByte |= uint64(b&0x7F) << shift - if b < 0x80 { - break - } + m.Value = append(m.Value[:0], dAtA[iNdEx:postIndex]...) + if m.Value == nil { + m.Value = []byte{} } - case 8: + iNdEx = postIndex + case 4: if wireType != 0 { - return fmt.Errorf("proto: wrong wireType = %d for field ProcessedVersionsSize", wireType) + return fmt.Errorf("proto: wrong wireType = %d for field Assertion", wireType) } - m.ProcessedVersionsSize = 0 + m.Assertion = 0 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowKvrpcpb @@ -32405,7 +33904,7 @@ func (m *ScanDetailV2) Unmarshal(dAtA []byte) error { } b := dAtA[iNdEx] iNdEx++ - m.ProcessedVersionsSize |= uint64(b&0x7F) << shift + m.Assertion |= Assertion(b&0x7F) << shift if b < 0x80 { break } @@ -32432,7 +33931,7 @@ func (m *ScanDetailV2) Unmarshal(dAtA []byte) error { } return nil } -func (m *ExecDetails) Unmarshal(dAtA []byte) error { +func (m *MvccWrite) Unmarshal(dAtA []byte) error { l := len(dAtA) iNdEx := 0 for iNdEx < l { @@ -32455,17 +33954,74 @@ func (m *ExecDetails) Unmarshal(dAtA []byte) error { fieldNum := int32(wire >> 3) wireType := int(wire & 0x7) if wireType == 4 { - return fmt.Errorf("proto: ExecDetails: wiretype end group for non-group") + return fmt.Errorf("proto: MvccWrite: wiretype end group for non-group") } if fieldNum <= 0 { - return fmt.Errorf("proto: ExecDetails: illegal tag %d (wire type %d)", fieldNum, wire) + return fmt.Errorf("proto: MvccWrite: illegal tag %d (wire type %d)", fieldNum, wire) } switch fieldNum { case 1: + if wireType != 0 { + return fmt.Errorf("proto: wrong wireType = %d for field Type", wireType) + } + m.Type = 0 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowKvrpcpb + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + m.Type |= Op(b&0x7F) << shift + if b < 0x80 { + break + } + } + case 2: + if wireType != 0 { + return fmt.Errorf("proto: wrong wireType = %d for field StartTs", wireType) + } + m.StartTs = 0 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowKvrpcpb + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + m.StartTs |= uint64(b&0x7F) << shift + if b < 0x80 { + break + } + } + case 3: + if wireType != 0 { + return fmt.Errorf("proto: wrong wireType = %d for field CommitTs", wireType) + } + m.CommitTs = 0 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowKvrpcpb + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + m.CommitTs |= uint64(b&0x7F) << shift + if b < 0x80 { + break + } + } + case 4: if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field TimeDetail", wireType) + return fmt.Errorf("proto: wrong wireType = %d for field ShortValue", wireType) } - var msglen int + var byteLen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowKvrpcpb @@ -32475,33 +34031,31 @@ func (m *ExecDetails) Unmarshal(dAtA []byte) error { } b := dAtA[iNdEx] iNdEx++ - msglen |= int(b&0x7F) << shift + byteLen |= int(b&0x7F) << shift if b < 0x80 { break } } - if msglen < 0 { + if byteLen < 0 { return ErrInvalidLengthKvrpcpb } - postIndex := iNdEx + msglen + postIndex := iNdEx + byteLen if postIndex < 0 { return ErrInvalidLengthKvrpcpb } if postIndex > l { return io.ErrUnexpectedEOF } - if m.TimeDetail == nil { - m.TimeDetail = &TimeDetail{} - } - if err := m.TimeDetail.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { - return err + m.ShortValue = append(m.ShortValue[:0], dAtA[iNdEx:postIndex]...) + if m.ShortValue == nil { + m.ShortValue = []byte{} } iNdEx = postIndex - case 2: - if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field ScanDetail", wireType) + case 5: + if wireType != 0 { + return fmt.Errorf("proto: wrong wireType = %d for field HasOverlappedRollback", wireType) } - var msglen int + var v int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowKvrpcpb @@ -32511,28 +34065,51 @@ func (m *ExecDetails) Unmarshal(dAtA []byte) error { } b := dAtA[iNdEx] iNdEx++ - msglen |= int(b&0x7F) << shift + v |= int(b&0x7F) << shift if b < 0x80 { break } } - if msglen < 0 { - return ErrInvalidLengthKvrpcpb - } - postIndex := iNdEx + msglen - if postIndex < 0 { - return ErrInvalidLengthKvrpcpb + m.HasOverlappedRollback = bool(v != 0) + case 6: + if wireType != 0 { + return fmt.Errorf("proto: wrong wireType = %d for field HasGcFence", wireType) } - if postIndex > l { - return io.ErrUnexpectedEOF + var v int + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowKvrpcpb + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + v |= int(b&0x7F) << shift + if b < 0x80 { + break + } } - if m.ScanDetail == nil { - m.ScanDetail = &ScanDetail{} + m.HasGcFence = bool(v != 0) + case 7: + if wireType != 0 { + return fmt.Errorf("proto: wrong wireType = %d for field GcFence", wireType) } - if err := m.ScanDetail.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { - return err + m.GcFence = 0 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowKvrpcpb + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + m.GcFence |= uint64(b&0x7F) << shift + if b < 0x80 { + break + } } - iNdEx = postIndex default: iNdEx = preIndex skippy, err := skipKvrpcpb(dAtA[iNdEx:]) @@ -32555,7 +34132,7 @@ func (m *ExecDetails) Unmarshal(dAtA []byte) error { } return nil } -func (m *ExecDetailsV2) Unmarshal(dAtA []byte) error { +func (m *MvccValue) Unmarshal(dAtA []byte) error { l := len(dAtA) iNdEx := 0 for iNdEx < l { @@ -32578,17 +34155,17 @@ func (m *ExecDetailsV2) Unmarshal(dAtA []byte) error { fieldNum := int32(wire >> 3) wireType := int(wire & 0x7) if wireType == 4 { - return fmt.Errorf("proto: ExecDetailsV2: wiretype end group for non-group") + return fmt.Errorf("proto: MvccValue: wiretype end group for non-group") } if fieldNum <= 0 { - return fmt.Errorf("proto: ExecDetailsV2: illegal tag %d (wire type %d)", fieldNum, wire) + return fmt.Errorf("proto: MvccValue: illegal tag %d (wire type %d)", fieldNum, wire) } switch fieldNum { case 1: - if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field TimeDetail", wireType) + if wireType != 0 { + return fmt.Errorf("proto: wrong wireType = %d for field StartTs", wireType) } - var msglen int + m.StartTs = 0 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowKvrpcpb @@ -32598,33 +34175,16 @@ func (m *ExecDetailsV2) Unmarshal(dAtA []byte) error { } b := dAtA[iNdEx] iNdEx++ - msglen |= int(b&0x7F) << shift + m.StartTs |= uint64(b&0x7F) << shift if b < 0x80 { break } } - if msglen < 0 { - return ErrInvalidLengthKvrpcpb - } - postIndex := iNdEx + msglen - if postIndex < 0 { - return ErrInvalidLengthKvrpcpb - } - if postIndex > l { - return io.ErrUnexpectedEOF - } - if m.TimeDetail == nil { - m.TimeDetail = &TimeDetail{} - } - if err := m.TimeDetail.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { - return err - } - iNdEx = postIndex case 2: if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field ScanDetailV2", wireType) + return fmt.Errorf("proto: wrong wireType = %d for field Value", wireType) } - var msglen int + var byteLen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowKvrpcpb @@ -32634,26 +34194,24 @@ func (m *ExecDetailsV2) Unmarshal(dAtA []byte) error { } b := dAtA[iNdEx] iNdEx++ - msglen |= int(b&0x7F) << shift + byteLen |= int(b&0x7F) << shift if b < 0x80 { break } } - if msglen < 0 { + if byteLen < 0 { return ErrInvalidLengthKvrpcpb } - postIndex := iNdEx + msglen + postIndex := iNdEx + byteLen if postIndex < 0 { return ErrInvalidLengthKvrpcpb } if postIndex > l { return io.ErrUnexpectedEOF } - if m.ScanDetailV2 == nil { - m.ScanDetailV2 = &ScanDetailV2{} - } - if err := m.ScanDetailV2.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { - return err + m.Value = append(m.Value[:0], dAtA[iNdEx:postIndex]...) + if m.Value == nil { + m.Value = []byte{} } iNdEx = postIndex default: @@ -32678,7 +34236,7 @@ func (m *ExecDetailsV2) Unmarshal(dAtA []byte) error { } return nil } -func (m *KvPair) Unmarshal(dAtA []byte) error { +func (m *MvccLock) Unmarshal(dAtA []byte) error { l := len(dAtA) iNdEx := 0 for iNdEx < l { @@ -32701,17 +34259,17 @@ func (m *KvPair) Unmarshal(dAtA []byte) error { fieldNum := int32(wire >> 3) wireType := int(wire & 0x7) if wireType == 4 { - return fmt.Errorf("proto: KvPair: wiretype end group for non-group") + return fmt.Errorf("proto: MvccLock: wiretype end group for non-group") } if fieldNum <= 0 { - return fmt.Errorf("proto: KvPair: illegal tag %d (wire type %d)", fieldNum, wire) + return fmt.Errorf("proto: MvccLock: illegal tag %d (wire type %d)", fieldNum, wire) } switch fieldNum { case 1: - if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field Error", wireType) + if wireType != 0 { + return fmt.Errorf("proto: wrong wireType = %d for field Type", wireType) } - var msglen int + m.Type = 0 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowKvrpcpb @@ -32721,31 +34279,33 @@ func (m *KvPair) Unmarshal(dAtA []byte) error { } b := dAtA[iNdEx] iNdEx++ - msglen |= int(b&0x7F) << shift + m.Type |= Op(b&0x7F) << shift if b < 0x80 { break } } - if msglen < 0 { - return ErrInvalidLengthKvrpcpb - } - postIndex := iNdEx + msglen - if postIndex < 0 { - return ErrInvalidLengthKvrpcpb - } - if postIndex > l { - return io.ErrUnexpectedEOF - } - if m.Error == nil { - m.Error = &KeyError{} + case 2: + if wireType != 0 { + return fmt.Errorf("proto: wrong wireType = %d for field StartTs", wireType) } - if err := m.Error.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { - return err + m.StartTs = 0 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowKvrpcpb + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + m.StartTs |= uint64(b&0x7F) << shift + if b < 0x80 { + break + } } - iNdEx = postIndex - case 2: + case 3: if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field Key", wireType) + return fmt.Errorf("proto: wrong wireType = %d for field Primary", wireType) } var byteLen int for shift := uint(0); ; shift += 7 { @@ -32772,14 +34332,14 @@ func (m *KvPair) Unmarshal(dAtA []byte) error { if postIndex > l { return io.ErrUnexpectedEOF } - m.Key = append(m.Key[:0], dAtA[iNdEx:postIndex]...) - if m.Key == nil { - m.Key = []byte{} + m.Primary = append(m.Primary[:0], dAtA[iNdEx:postIndex]...) + if m.Primary == nil { + m.Primary = []byte{} } iNdEx = postIndex - case 3: + case 4: if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field Value", wireType) + return fmt.Errorf("proto: wrong wireType = %d for field ShortValue", wireType) } var byteLen int for shift := uint(0); ; shift += 7 { @@ -32806,67 +34366,35 @@ func (m *KvPair) Unmarshal(dAtA []byte) error { if postIndex > l { return io.ErrUnexpectedEOF } - m.Value = append(m.Value[:0], dAtA[iNdEx:postIndex]...) - if m.Value == nil { - m.Value = []byte{} + m.ShortValue = append(m.ShortValue[:0], dAtA[iNdEx:postIndex]...) + if m.ShortValue == nil { + m.ShortValue = []byte{} } iNdEx = postIndex - default: - iNdEx = preIndex - skippy, err := skipKvrpcpb(dAtA[iNdEx:]) - if err != nil { - return err - } - if (skippy < 0) || (iNdEx+skippy) < 0 { - return ErrInvalidLengthKvrpcpb - } - 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 *Mutation) 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 ErrIntOverflowKvrpcpb - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := dAtA[iNdEx] - iNdEx++ - wire |= uint64(b&0x7F) << shift - if b < 0x80 { - break + case 5: + if wireType != 0 { + return fmt.Errorf("proto: wrong wireType = %d for field Ttl", wireType) } - } - fieldNum := int32(wire >> 3) - wireType := int(wire & 0x7) - if wireType == 4 { - return fmt.Errorf("proto: Mutation: wiretype end group for non-group") - } - if fieldNum <= 0 { - return fmt.Errorf("proto: Mutation: illegal tag %d (wire type %d)", fieldNum, wire) - } - switch fieldNum { - case 1: + m.Ttl = 0 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowKvrpcpb + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + m.Ttl |= uint64(b&0x7F) << shift + if b < 0x80 { + break + } + } + case 6: if wireType != 0 { - return fmt.Errorf("proto: wrong wireType = %d for field Op", wireType) + return fmt.Errorf("proto: wrong wireType = %d for field ForUpdateTs", wireType) } - m.Op = 0 + m.ForUpdateTs = 0 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowKvrpcpb @@ -32876,16 +34404,16 @@ func (m *Mutation) Unmarshal(dAtA []byte) error { } b := dAtA[iNdEx] iNdEx++ - m.Op |= Op(b&0x7F) << shift + m.ForUpdateTs |= uint64(b&0x7F) << shift if b < 0x80 { break } } - case 2: - if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field Key", wireType) + case 7: + if wireType != 0 { + return fmt.Errorf("proto: wrong wireType = %d for field TxnSize", wireType) } - var byteLen int + m.TxnSize = 0 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowKvrpcpb @@ -32895,29 +34423,34 @@ func (m *Mutation) Unmarshal(dAtA []byte) error { } b := dAtA[iNdEx] iNdEx++ - byteLen |= int(b&0x7F) << shift + m.TxnSize |= uint64(b&0x7F) << shift if b < 0x80 { break } } - if byteLen < 0 { - return ErrInvalidLengthKvrpcpb - } - postIndex := iNdEx + byteLen - if postIndex < 0 { - return ErrInvalidLengthKvrpcpb - } - if postIndex > l { - return io.ErrUnexpectedEOF + case 8: + if wireType != 0 { + return fmt.Errorf("proto: wrong wireType = %d for field UseAsyncCommit", wireType) } - m.Key = append(m.Key[:0], dAtA[iNdEx:postIndex]...) - if m.Key == nil { - m.Key = []byte{} + var v int + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowKvrpcpb + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + v |= int(b&0x7F) << shift + if b < 0x80 { + break + } } - iNdEx = postIndex - case 3: + m.UseAsyncCommit = bool(v != 0) + case 9: if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field Value", wireType) + return fmt.Errorf("proto: wrong wireType = %d for field Secondaries", wireType) } var byteLen int for shift := uint(0); ; shift += 7 { @@ -32944,29 +34477,84 @@ func (m *Mutation) Unmarshal(dAtA []byte) error { if postIndex > l { return io.ErrUnexpectedEOF } - m.Value = append(m.Value[:0], dAtA[iNdEx:postIndex]...) - if m.Value == nil { - m.Value = []byte{} - } + m.Secondaries = append(m.Secondaries, make([]byte, postIndex-iNdEx)) + copy(m.Secondaries[len(m.Secondaries)-1], dAtA[iNdEx:postIndex]) iNdEx = postIndex - case 4: - if wireType != 0 { - return fmt.Errorf("proto: wrong wireType = %d for field Assertion", wireType) - } - m.Assertion = 0 - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowKvrpcpb + case 10: + if wireType == 0 { + var v uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowKvrpcpb + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + v |= uint64(b&0x7F) << shift + if b < 0x80 { + break + } } - if iNdEx >= l { + m.RollbackTs = append(m.RollbackTs, v) + } else if wireType == 2 { + var packedLen int + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowKvrpcpb + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + packedLen |= int(b&0x7F) << shift + if b < 0x80 { + break + } + } + if packedLen < 0 { + return ErrInvalidLengthKvrpcpb + } + postIndex := iNdEx + packedLen + if postIndex < 0 { + return ErrInvalidLengthKvrpcpb + } + if postIndex > l { return io.ErrUnexpectedEOF } - b := dAtA[iNdEx] - iNdEx++ - m.Assertion |= Assertion(b&0x7F) << shift - if b < 0x80 { - break + var elementCount int + var count int + for _, integer := range dAtA[iNdEx:postIndex] { + if integer < 128 { + count++ + } + } + elementCount = count + if elementCount != 0 && len(m.RollbackTs) == 0 { + m.RollbackTs = make([]uint64, 0, elementCount) + } + for iNdEx < postIndex { + var v uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowKvrpcpb + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + v |= uint64(b&0x7F) << shift + if b < 0x80 { + break + } + } + m.RollbackTs = append(m.RollbackTs, v) } + } else { + return fmt.Errorf("proto: wrong wireType = %d for field RollbackTs", wireType) } default: iNdEx = preIndex @@ -32990,7 +34578,7 @@ func (m *Mutation) Unmarshal(dAtA []byte) error { } return nil } -func (m *MvccWrite) Unmarshal(dAtA []byte) error { +func (m *MvccInfo) Unmarshal(dAtA []byte) error { l := len(dAtA) iNdEx := 0 for iNdEx < l { @@ -33013,17 +34601,17 @@ func (m *MvccWrite) Unmarshal(dAtA []byte) error { fieldNum := int32(wire >> 3) wireType := int(wire & 0x7) if wireType == 4 { - return fmt.Errorf("proto: MvccWrite: wiretype end group for non-group") + return fmt.Errorf("proto: MvccInfo: wiretype end group for non-group") } if fieldNum <= 0 { - return fmt.Errorf("proto: MvccWrite: illegal tag %d (wire type %d)", fieldNum, wire) + return fmt.Errorf("proto: MvccInfo: illegal tag %d (wire type %d)", fieldNum, wire) } switch fieldNum { case 1: - if wireType != 0 { - return fmt.Errorf("proto: wrong wireType = %d for field Type", wireType) + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field Lock", wireType) } - m.Type = 0 + var msglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowKvrpcpb @@ -33033,16 +34621,33 @@ func (m *MvccWrite) Unmarshal(dAtA []byte) error { } b := dAtA[iNdEx] iNdEx++ - m.Type |= Op(b&0x7F) << shift + msglen |= int(b&0x7F) << shift if b < 0x80 { break } } + if msglen < 0 { + return ErrInvalidLengthKvrpcpb + } + postIndex := iNdEx + msglen + if postIndex < 0 { + return ErrInvalidLengthKvrpcpb + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + if m.Lock == nil { + m.Lock = &MvccLock{} + } + if err := m.Lock.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { + return err + } + iNdEx = postIndex case 2: - if wireType != 0 { - return fmt.Errorf("proto: wrong wireType = %d for field StartTs", wireType) + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field Writes", wireType) } - m.StartTs = 0 + var msglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowKvrpcpb @@ -33052,35 +34657,31 @@ func (m *MvccWrite) Unmarshal(dAtA []byte) error { } b := dAtA[iNdEx] iNdEx++ - m.StartTs |= uint64(b&0x7F) << shift + msglen |= int(b&0x7F) << shift if b < 0x80 { break } } - case 3: - if wireType != 0 { - return fmt.Errorf("proto: wrong wireType = %d for field CommitTs", wireType) + if msglen < 0 { + return ErrInvalidLengthKvrpcpb } - m.CommitTs = 0 - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowKvrpcpb - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := dAtA[iNdEx] - iNdEx++ - m.CommitTs |= uint64(b&0x7F) << shift - if b < 0x80 { - break - } + postIndex := iNdEx + msglen + if postIndex < 0 { + return ErrInvalidLengthKvrpcpb } - case 4: + if postIndex > l { + return io.ErrUnexpectedEOF + } + m.Writes = append(m.Writes, &MvccWrite{}) + if err := m.Writes[len(m.Writes)-1].Unmarshal(dAtA[iNdEx:postIndex]); err != nil { + return err + } + iNdEx = postIndex + case 3: if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field ShortValue", wireType) + return fmt.Errorf("proto: wrong wireType = %d for field Values", wireType) } - var byteLen int + var msglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowKvrpcpb @@ -33090,51 +34691,82 @@ func (m *MvccWrite) Unmarshal(dAtA []byte) error { } b := dAtA[iNdEx] iNdEx++ - byteLen |= int(b&0x7F) << shift + msglen |= int(b&0x7F) << shift if b < 0x80 { break } } - if byteLen < 0 { + if msglen < 0 { return ErrInvalidLengthKvrpcpb } - postIndex := iNdEx + byteLen + postIndex := iNdEx + msglen if postIndex < 0 { return ErrInvalidLengthKvrpcpb } - if postIndex > l { + if postIndex > l { + return io.ErrUnexpectedEOF + } + m.Values = append(m.Values, &MvccValue{}) + if err := m.Values[len(m.Values)-1].Unmarshal(dAtA[iNdEx:postIndex]); err != nil { + return err + } + iNdEx = postIndex + default: + iNdEx = preIndex + skippy, err := skipKvrpcpb(dAtA[iNdEx:]) + if err != nil { + return err + } + if (skippy < 0) || (iNdEx+skippy) < 0 { + return ErrInvalidLengthKvrpcpb + } + 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 *TxnInfo) 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 ErrIntOverflowKvrpcpb + } + if iNdEx >= l { return io.ErrUnexpectedEOF } - m.ShortValue = append(m.ShortValue[:0], dAtA[iNdEx:postIndex]...) - if m.ShortValue == nil { - m.ShortValue = []byte{} - } - iNdEx = postIndex - case 5: - if wireType != 0 { - return fmt.Errorf("proto: wrong wireType = %d for field HasOverlappedRollback", wireType) - } - var v int - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowKvrpcpb - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := dAtA[iNdEx] - iNdEx++ - v |= int(b&0x7F) << shift - if b < 0x80 { - break - } + b := dAtA[iNdEx] + iNdEx++ + wire |= uint64(b&0x7F) << shift + if b < 0x80 { + break } - m.HasOverlappedRollback = bool(v != 0) - case 6: + } + fieldNum := int32(wire >> 3) + wireType := int(wire & 0x7) + if wireType == 4 { + return fmt.Errorf("proto: TxnInfo: wiretype end group for non-group") + } + if fieldNum <= 0 { + return fmt.Errorf("proto: TxnInfo: illegal tag %d (wire type %d)", fieldNum, wire) + } + switch fieldNum { + case 1: if wireType != 0 { - return fmt.Errorf("proto: wrong wireType = %d for field HasGcFence", wireType) + return fmt.Errorf("proto: wrong wireType = %d for field Txn", wireType) } - var v int + m.Txn = 0 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowKvrpcpb @@ -33144,17 +34776,16 @@ func (m *MvccWrite) Unmarshal(dAtA []byte) error { } b := dAtA[iNdEx] iNdEx++ - v |= int(b&0x7F) << shift + m.Txn |= uint64(b&0x7F) << shift if b < 0x80 { break } } - m.HasGcFence = bool(v != 0) - case 7: + case 2: if wireType != 0 { - return fmt.Errorf("proto: wrong wireType = %d for field GcFence", wireType) + return fmt.Errorf("proto: wrong wireType = %d for field Status", wireType) } - m.GcFence = 0 + m.Status = 0 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowKvrpcpb @@ -33164,7 +34795,7 @@ func (m *MvccWrite) Unmarshal(dAtA []byte) error { } b := dAtA[iNdEx] iNdEx++ - m.GcFence |= uint64(b&0x7F) << shift + m.Status |= uint64(b&0x7F) << shift if b < 0x80 { break } @@ -33191,7 +34822,7 @@ func (m *MvccWrite) Unmarshal(dAtA []byte) error { } return nil } -func (m *MvccValue) Unmarshal(dAtA []byte) error { +func (m *KeyRange) Unmarshal(dAtA []byte) error { l := len(dAtA) iNdEx := 0 for iNdEx < l { @@ -33214,17 +34845,17 @@ func (m *MvccValue) Unmarshal(dAtA []byte) error { fieldNum := int32(wire >> 3) wireType := int(wire & 0x7) if wireType == 4 { - return fmt.Errorf("proto: MvccValue: wiretype end group for non-group") + return fmt.Errorf("proto: KeyRange: wiretype end group for non-group") } if fieldNum <= 0 { - return fmt.Errorf("proto: MvccValue: illegal tag %d (wire type %d)", fieldNum, wire) + return fmt.Errorf("proto: KeyRange: illegal tag %d (wire type %d)", fieldNum, wire) } switch fieldNum { case 1: - if wireType != 0 { - return fmt.Errorf("proto: wrong wireType = %d for field StartTs", wireType) + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field StartKey", wireType) } - m.StartTs = 0 + var byteLen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowKvrpcpb @@ -33234,14 +34865,29 @@ func (m *MvccValue) Unmarshal(dAtA []byte) error { } b := dAtA[iNdEx] iNdEx++ - m.StartTs |= uint64(b&0x7F) << shift + byteLen |= int(b&0x7F) << shift if b < 0x80 { break } } + if byteLen < 0 { + return ErrInvalidLengthKvrpcpb + } + postIndex := iNdEx + byteLen + if postIndex < 0 { + return ErrInvalidLengthKvrpcpb + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + m.StartKey = append(m.StartKey[:0], dAtA[iNdEx:postIndex]...) + if m.StartKey == nil { + m.StartKey = []byte{} + } + iNdEx = postIndex case 2: if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field Value", wireType) + return fmt.Errorf("proto: wrong wireType = %d for field EndKey", wireType) } var byteLen int for shift := uint(0); ; shift += 7 { @@ -33268,9 +34914,9 @@ func (m *MvccValue) Unmarshal(dAtA []byte) error { if postIndex > l { return io.ErrUnexpectedEOF } - m.Value = append(m.Value[:0], dAtA[iNdEx:postIndex]...) - if m.Value == nil { - m.Value = []byte{} + m.EndKey = append(m.EndKey[:0], dAtA[iNdEx:postIndex]...) + if m.EndKey == nil { + m.EndKey = []byte{} } iNdEx = postIndex default: @@ -33295,7 +34941,7 @@ func (m *MvccValue) Unmarshal(dAtA []byte) error { } return nil } -func (m *MvccLock) Unmarshal(dAtA []byte) error { +func (m *LeaderInfo) Unmarshal(dAtA []byte) error { l := len(dAtA) iNdEx := 0 for iNdEx < l { @@ -33318,17 +34964,17 @@ func (m *MvccLock) Unmarshal(dAtA []byte) error { fieldNum := int32(wire >> 3) wireType := int(wire & 0x7) if wireType == 4 { - return fmt.Errorf("proto: MvccLock: wiretype end group for non-group") + return fmt.Errorf("proto: LeaderInfo: wiretype end group for non-group") } if fieldNum <= 0 { - return fmt.Errorf("proto: MvccLock: illegal tag %d (wire type %d)", fieldNum, wire) + return fmt.Errorf("proto: LeaderInfo: illegal tag %d (wire type %d)", fieldNum, wire) } switch fieldNum { case 1: if wireType != 0 { - return fmt.Errorf("proto: wrong wireType = %d for field Type", wireType) + return fmt.Errorf("proto: wrong wireType = %d for field RegionId", wireType) } - m.Type = 0 + m.RegionId = 0 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowKvrpcpb @@ -33338,16 +34984,16 @@ func (m *MvccLock) Unmarshal(dAtA []byte) error { } b := dAtA[iNdEx] iNdEx++ - m.Type |= Op(b&0x7F) << shift + m.RegionId |= uint64(b&0x7F) << shift if b < 0x80 { break } } case 2: if wireType != 0 { - return fmt.Errorf("proto: wrong wireType = %d for field StartTs", wireType) + return fmt.Errorf("proto: wrong wireType = %d for field PeerId", wireType) } - m.StartTs = 0 + m.PeerId = 0 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowKvrpcpb @@ -33357,16 +35003,16 @@ func (m *MvccLock) Unmarshal(dAtA []byte) error { } b := dAtA[iNdEx] iNdEx++ - m.StartTs |= uint64(b&0x7F) << shift + m.PeerId |= uint64(b&0x7F) << shift if b < 0x80 { break } } case 3: - if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field Primary", wireType) + if wireType != 0 { + return fmt.Errorf("proto: wrong wireType = %d for field Term", wireType) } - var byteLen int + m.Term = 0 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowKvrpcpb @@ -33376,31 +35022,16 @@ func (m *MvccLock) Unmarshal(dAtA []byte) error { } b := dAtA[iNdEx] iNdEx++ - byteLen |= int(b&0x7F) << shift + m.Term |= uint64(b&0x7F) << shift if b < 0x80 { break } } - if byteLen < 0 { - return ErrInvalidLengthKvrpcpb - } - postIndex := iNdEx + byteLen - if postIndex < 0 { - return ErrInvalidLengthKvrpcpb - } - if postIndex > l { - return io.ErrUnexpectedEOF - } - m.Primary = append(m.Primary[:0], dAtA[iNdEx:postIndex]...) - if m.Primary == nil { - m.Primary = []byte{} - } - iNdEx = postIndex case 4: if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field ShortValue", wireType) + return fmt.Errorf("proto: wrong wireType = %d for field RegionEpoch", wireType) } - var byteLen int + var msglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowKvrpcpb @@ -33410,31 +35041,33 @@ func (m *MvccLock) Unmarshal(dAtA []byte) error { } b := dAtA[iNdEx] iNdEx++ - byteLen |= int(b&0x7F) << shift + msglen |= int(b&0x7F) << shift if b < 0x80 { break } } - if byteLen < 0 { + if msglen < 0 { return ErrInvalidLengthKvrpcpb } - postIndex := iNdEx + byteLen + postIndex := iNdEx + msglen if postIndex < 0 { return ErrInvalidLengthKvrpcpb } if postIndex > l { return io.ErrUnexpectedEOF } - m.ShortValue = append(m.ShortValue[:0], dAtA[iNdEx:postIndex]...) - if m.ShortValue == nil { - m.ShortValue = []byte{} + if m.RegionEpoch == nil { + m.RegionEpoch = &metapb.RegionEpoch{} + } + if err := m.RegionEpoch.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { + return err } iNdEx = postIndex case 5: - if wireType != 0 { - return fmt.Errorf("proto: wrong wireType = %d for field Ttl", wireType) + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field ReadState", wireType) } - m.Ttl = 0 + var msglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowKvrpcpb @@ -33444,16 +35077,84 @@ func (m *MvccLock) Unmarshal(dAtA []byte) error { } b := dAtA[iNdEx] iNdEx++ - m.Ttl |= uint64(b&0x7F) << shift + msglen |= int(b&0x7F) << shift if b < 0x80 { break } } - case 6: + if msglen < 0 { + return ErrInvalidLengthKvrpcpb + } + postIndex := iNdEx + msglen + if postIndex < 0 { + return ErrInvalidLengthKvrpcpb + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + if m.ReadState == nil { + m.ReadState = &ReadState{} + } + if err := m.ReadState.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { + return err + } + iNdEx = postIndex + default: + iNdEx = preIndex + skippy, err := skipKvrpcpb(dAtA[iNdEx:]) + if err != nil { + return err + } + if (skippy < 0) || (iNdEx+skippy) < 0 { + return ErrInvalidLengthKvrpcpb + } + 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 *ReadState) 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 ErrIntOverflowKvrpcpb + } + 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: ReadState: wiretype end group for non-group") + } + if fieldNum <= 0 { + return fmt.Errorf("proto: ReadState: illegal tag %d (wire type %d)", fieldNum, wire) + } + switch fieldNum { + case 1: if wireType != 0 { - return fmt.Errorf("proto: wrong wireType = %d for field ForUpdateTs", wireType) + return fmt.Errorf("proto: wrong wireType = %d for field AppliedIndex", wireType) } - m.ForUpdateTs = 0 + m.AppliedIndex = 0 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowKvrpcpb @@ -33463,16 +35164,16 @@ func (m *MvccLock) Unmarshal(dAtA []byte) error { } b := dAtA[iNdEx] iNdEx++ - m.ForUpdateTs |= uint64(b&0x7F) << shift + m.AppliedIndex |= uint64(b&0x7F) << shift if b < 0x80 { break } } - case 7: + case 2: if wireType != 0 { - return fmt.Errorf("proto: wrong wireType = %d for field TxnSize", wireType) + return fmt.Errorf("proto: wrong wireType = %d for field SafeTs", wireType) } - m.TxnSize = 0 + m.SafeTs = 0 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowKvrpcpb @@ -33482,16 +35183,67 @@ func (m *MvccLock) Unmarshal(dAtA []byte) error { } b := dAtA[iNdEx] iNdEx++ - m.TxnSize |= uint64(b&0x7F) << shift + m.SafeTs |= uint64(b&0x7F) << shift if b < 0x80 { break } } - case 8: - if wireType != 0 { - return fmt.Errorf("proto: wrong wireType = %d for field UseAsyncCommit", wireType) + default: + iNdEx = preIndex + skippy, err := skipKvrpcpb(dAtA[iNdEx:]) + if err != nil { + return err } - var v int + if (skippy < 0) || (iNdEx+skippy) < 0 { + return ErrInvalidLengthKvrpcpb + } + 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 *CheckLeaderRequest) 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 ErrIntOverflowKvrpcpb + } + 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: CheckLeaderRequest: wiretype end group for non-group") + } + if fieldNum <= 0 { + return fmt.Errorf("proto: CheckLeaderRequest: illegal tag %d (wire type %d)", fieldNum, wire) + } + switch fieldNum { + case 1: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field Regions", wireType) + } + var msglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowKvrpcpb @@ -33501,17 +35253,31 @@ func (m *MvccLock) Unmarshal(dAtA []byte) error { } b := dAtA[iNdEx] iNdEx++ - v |= int(b&0x7F) << shift + msglen |= int(b&0x7F) << shift if b < 0x80 { break } } - m.UseAsyncCommit = bool(v != 0) - case 9: - if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field Secondaries", wireType) + if msglen < 0 { + return ErrInvalidLengthKvrpcpb } - var byteLen int + postIndex := iNdEx + msglen + if postIndex < 0 { + return ErrInvalidLengthKvrpcpb + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + m.Regions = append(m.Regions, &LeaderInfo{}) + if err := m.Regions[len(m.Regions)-1].Unmarshal(dAtA[iNdEx:postIndex]); err != nil { + return err + } + iNdEx = postIndex + case 2: + if wireType != 0 { + return fmt.Errorf("proto: wrong wireType = %d for field Ts", wireType) + } + m.Ts = 0 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowKvrpcpb @@ -33521,25 +35287,63 @@ func (m *MvccLock) Unmarshal(dAtA []byte) error { } b := dAtA[iNdEx] iNdEx++ - byteLen |= int(b&0x7F) << shift + m.Ts |= uint64(b&0x7F) << shift if b < 0x80 { break } } - if byteLen < 0 { - return ErrInvalidLengthKvrpcpb + default: + iNdEx = preIndex + skippy, err := skipKvrpcpb(dAtA[iNdEx:]) + if err != nil { + return err } - postIndex := iNdEx + byteLen - if postIndex < 0 { + if (skippy < 0) || (iNdEx+skippy) < 0 { return ErrInvalidLengthKvrpcpb } - if postIndex > l { + if (iNdEx + skippy) > l { return io.ErrUnexpectedEOF } - m.Secondaries = append(m.Secondaries, make([]byte, postIndex-iNdEx)) - copy(m.Secondaries[len(m.Secondaries)-1], dAtA[iNdEx:postIndex]) - iNdEx = postIndex - case 10: + m.XXX_unrecognized = append(m.XXX_unrecognized, dAtA[iNdEx:iNdEx+skippy]...) + iNdEx += skippy + } + } + + if iNdEx > l { + return io.ErrUnexpectedEOF + } + return nil +} +func (m *CheckLeaderResponse) 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 ErrIntOverflowKvrpcpb + } + 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: CheckLeaderResponse: wiretype end group for non-group") + } + if fieldNum <= 0 { + return fmt.Errorf("proto: CheckLeaderResponse: illegal tag %d (wire type %d)", fieldNum, wire) + } + switch fieldNum { + case 1: if wireType == 0 { var v uint64 for shift := uint(0); ; shift += 7 { @@ -33556,7 +35360,7 @@ func (m *MvccLock) Unmarshal(dAtA []byte) error { break } } - m.RollbackTs = append(m.RollbackTs, v) + m.Regions = append(m.Regions, v) } else if wireType == 2 { var packedLen int for shift := uint(0); ; shift += 7 { @@ -33591,8 +35395,8 @@ func (m *MvccLock) Unmarshal(dAtA []byte) error { } } elementCount = count - if elementCount != 0 && len(m.RollbackTs) == 0 { - m.RollbackTs = make([]uint64, 0, elementCount) + if elementCount != 0 && len(m.Regions) == 0 { + m.Regions = make([]uint64, 0, elementCount) } for iNdEx < postIndex { var v uint64 @@ -33610,10 +35414,29 @@ func (m *MvccLock) Unmarshal(dAtA []byte) error { break } } - m.RollbackTs = append(m.RollbackTs, v) + m.Regions = append(m.Regions, v) } } else { - return fmt.Errorf("proto: wrong wireType = %d for field RollbackTs", wireType) + return fmt.Errorf("proto: wrong wireType = %d for field Regions", wireType) + } + case 2: + if wireType != 0 { + return fmt.Errorf("proto: wrong wireType = %d for field Ts", wireType) + } + m.Ts = 0 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowKvrpcpb + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + m.Ts |= uint64(b&0x7F) << shift + if b < 0x80 { + break + } } default: iNdEx = preIndex @@ -33637,7 +35460,7 @@ func (m *MvccLock) Unmarshal(dAtA []byte) error { } return nil } -func (m *MvccInfo) Unmarshal(dAtA []byte) error { +func (m *StoreSafeTSRequest) Unmarshal(dAtA []byte) error { l := len(dAtA) iNdEx := 0 for iNdEx < l { @@ -33660,85 +35483,15 @@ func (m *MvccInfo) Unmarshal(dAtA []byte) error { fieldNum := int32(wire >> 3) wireType := int(wire & 0x7) if wireType == 4 { - return fmt.Errorf("proto: MvccInfo: wiretype end group for non-group") - } - if fieldNum <= 0 { - return fmt.Errorf("proto: MvccInfo: illegal tag %d (wire type %d)", fieldNum, wire) - } - switch fieldNum { - case 1: - if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field Lock", wireType) - } - var msglen int - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowKvrpcpb - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := dAtA[iNdEx] - iNdEx++ - msglen |= int(b&0x7F) << shift - if b < 0x80 { - break - } - } - if msglen < 0 { - return ErrInvalidLengthKvrpcpb - } - postIndex := iNdEx + msglen - if postIndex < 0 { - return ErrInvalidLengthKvrpcpb - } - if postIndex > l { - return io.ErrUnexpectedEOF - } - if m.Lock == nil { - m.Lock = &MvccLock{} - } - if err := m.Lock.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { - return err - } - iNdEx = postIndex - case 2: - if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field Writes", wireType) - } - var msglen int - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowKvrpcpb - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := dAtA[iNdEx] - iNdEx++ - msglen |= int(b&0x7F) << shift - if b < 0x80 { - break - } - } - if msglen < 0 { - return ErrInvalidLengthKvrpcpb - } - postIndex := iNdEx + msglen - if postIndex < 0 { - return ErrInvalidLengthKvrpcpb - } - if postIndex > l { - return io.ErrUnexpectedEOF - } - m.Writes = append(m.Writes, &MvccWrite{}) - if err := m.Writes[len(m.Writes)-1].Unmarshal(dAtA[iNdEx:postIndex]); err != nil { - return err - } - iNdEx = postIndex - case 3: + return fmt.Errorf("proto: StoreSafeTSRequest: wiretype end group for non-group") + } + if fieldNum <= 0 { + return fmt.Errorf("proto: StoreSafeTSRequest: illegal tag %d (wire type %d)", fieldNum, wire) + } + switch fieldNum { + case 1: if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field Values", wireType) + return fmt.Errorf("proto: wrong wireType = %d for field KeyRange", wireType) } var msglen int for shift := uint(0); ; shift += 7 { @@ -33765,8 +35518,10 @@ func (m *MvccInfo) Unmarshal(dAtA []byte) error { if postIndex > l { return io.ErrUnexpectedEOF } - m.Values = append(m.Values, &MvccValue{}) - if err := m.Values[len(m.Values)-1].Unmarshal(dAtA[iNdEx:postIndex]); err != nil { + if m.KeyRange == nil { + m.KeyRange = &KeyRange{} + } + if err := m.KeyRange.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { return err } iNdEx = postIndex @@ -33792,7 +35547,7 @@ func (m *MvccInfo) Unmarshal(dAtA []byte) error { } return nil } -func (m *TxnInfo) Unmarshal(dAtA []byte) error { +func (m *StoreSafeTSResponse) Unmarshal(dAtA []byte) error { l := len(dAtA) iNdEx := 0 for iNdEx < l { @@ -33815,36 +35570,17 @@ func (m *TxnInfo) Unmarshal(dAtA []byte) error { fieldNum := int32(wire >> 3) wireType := int(wire & 0x7) if wireType == 4 { - return fmt.Errorf("proto: TxnInfo: wiretype end group for non-group") + return fmt.Errorf("proto: StoreSafeTSResponse: wiretype end group for non-group") } if fieldNum <= 0 { - return fmt.Errorf("proto: TxnInfo: illegal tag %d (wire type %d)", fieldNum, wire) + return fmt.Errorf("proto: StoreSafeTSResponse: illegal tag %d (wire type %d)", fieldNum, wire) } switch fieldNum { case 1: if wireType != 0 { - return fmt.Errorf("proto: wrong wireType = %d for field Txn", wireType) - } - m.Txn = 0 - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowKvrpcpb - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := dAtA[iNdEx] - iNdEx++ - m.Txn |= uint64(b&0x7F) << shift - if b < 0x80 { - break - } - } - case 2: - if wireType != 0 { - return fmt.Errorf("proto: wrong wireType = %d for field Status", wireType) + return fmt.Errorf("proto: wrong wireType = %d for field SafeTs", wireType) } - m.Status = 0 + m.SafeTs = 0 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowKvrpcpb @@ -33854,7 +35590,7 @@ func (m *TxnInfo) Unmarshal(dAtA []byte) error { } b := dAtA[iNdEx] iNdEx++ - m.Status |= uint64(b&0x7F) << shift + m.SafeTs |= uint64(b&0x7F) << shift if b < 0x80 { break } @@ -33881,7 +35617,7 @@ func (m *TxnInfo) Unmarshal(dAtA []byte) error { } return nil } -func (m *KeyRange) Unmarshal(dAtA []byte) error { +func (m *RawGetKeyTTLRequest) Unmarshal(dAtA []byte) error { l := len(dAtA) iNdEx := 0 for iNdEx < l { @@ -33904,17 +35640,17 @@ func (m *KeyRange) Unmarshal(dAtA []byte) error { fieldNum := int32(wire >> 3) wireType := int(wire & 0x7) if wireType == 4 { - return fmt.Errorf("proto: KeyRange: wiretype end group for non-group") + return fmt.Errorf("proto: RawGetKeyTTLRequest: wiretype end group for non-group") } if fieldNum <= 0 { - return fmt.Errorf("proto: KeyRange: illegal tag %d (wire type %d)", fieldNum, wire) + return fmt.Errorf("proto: RawGetKeyTTLRequest: illegal tag %d (wire type %d)", fieldNum, wire) } switch fieldNum { case 1: if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field StartKey", wireType) + return fmt.Errorf("proto: wrong wireType = %d for field Context", wireType) } - var byteLen int + var msglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowKvrpcpb @@ -33924,29 +35660,31 @@ func (m *KeyRange) Unmarshal(dAtA []byte) error { } b := dAtA[iNdEx] iNdEx++ - byteLen |= int(b&0x7F) << shift + msglen |= int(b&0x7F) << shift if b < 0x80 { break } } - if byteLen < 0 { + if msglen < 0 { return ErrInvalidLengthKvrpcpb } - postIndex := iNdEx + byteLen + postIndex := iNdEx + msglen if postIndex < 0 { return ErrInvalidLengthKvrpcpb } if postIndex > l { return io.ErrUnexpectedEOF } - m.StartKey = append(m.StartKey[:0], dAtA[iNdEx:postIndex]...) - if m.StartKey == nil { - m.StartKey = []byte{} + if m.Context == nil { + m.Context = &Context{} + } + if err := m.Context.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { + return err } iNdEx = postIndex case 2: if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field EndKey", wireType) + return fmt.Errorf("proto: wrong wireType = %d for field Key", wireType) } var byteLen int for shift := uint(0); ; shift += 7 { @@ -33973,10 +35711,42 @@ func (m *KeyRange) Unmarshal(dAtA []byte) error { if postIndex > l { return io.ErrUnexpectedEOF } - m.EndKey = append(m.EndKey[:0], dAtA[iNdEx:postIndex]...) - if m.EndKey == nil { - m.EndKey = []byte{} + m.Key = append(m.Key[:0], dAtA[iNdEx:postIndex]...) + if m.Key == nil { + m.Key = []byte{} + } + iNdEx = postIndex + case 3: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field Cf", wireType) + } + var stringLen uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowKvrpcpb + } + 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 ErrInvalidLengthKvrpcpb + } + postIndex := iNdEx + intStringLen + if postIndex < 0 { + return ErrInvalidLengthKvrpcpb + } + if postIndex > l { + return io.ErrUnexpectedEOF } + m.Cf = string(dAtA[iNdEx:postIndex]) iNdEx = postIndex default: iNdEx = preIndex @@ -34000,7 +35770,7 @@ func (m *KeyRange) Unmarshal(dAtA []byte) error { } return nil } -func (m *LeaderInfo) Unmarshal(dAtA []byte) error { +func (m *RawGetKeyTTLResponse) Unmarshal(dAtA []byte) error { l := len(dAtA) iNdEx := 0 for iNdEx < l { @@ -34023,72 +35793,15 @@ func (m *LeaderInfo) Unmarshal(dAtA []byte) error { fieldNum := int32(wire >> 3) wireType := int(wire & 0x7) if wireType == 4 { - return fmt.Errorf("proto: LeaderInfo: wiretype end group for non-group") + return fmt.Errorf("proto: RawGetKeyTTLResponse: wiretype end group for non-group") } if fieldNum <= 0 { - return fmt.Errorf("proto: LeaderInfo: illegal tag %d (wire type %d)", fieldNum, wire) + return fmt.Errorf("proto: RawGetKeyTTLResponse: illegal tag %d (wire type %d)", fieldNum, wire) } switch fieldNum { case 1: - if wireType != 0 { - return fmt.Errorf("proto: wrong wireType = %d for field RegionId", wireType) - } - m.RegionId = 0 - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowKvrpcpb - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := dAtA[iNdEx] - iNdEx++ - m.RegionId |= uint64(b&0x7F) << shift - if b < 0x80 { - break - } - } - case 2: - if wireType != 0 { - return fmt.Errorf("proto: wrong wireType = %d for field PeerId", wireType) - } - m.PeerId = 0 - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowKvrpcpb - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := dAtA[iNdEx] - iNdEx++ - m.PeerId |= uint64(b&0x7F) << shift - if b < 0x80 { - break - } - } - case 3: - if wireType != 0 { - return fmt.Errorf("proto: wrong wireType = %d for field Term", wireType) - } - m.Term = 0 - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowKvrpcpb - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := dAtA[iNdEx] - iNdEx++ - m.Term |= uint64(b&0x7F) << shift - if b < 0x80 { - break - } - } - case 4: if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field RegionEpoch", wireType) + return fmt.Errorf("proto: wrong wireType = %d for field RegionError", wireType) } var msglen int for shift := uint(0); ; shift += 7 { @@ -34115,18 +35828,18 @@ func (m *LeaderInfo) Unmarshal(dAtA []byte) error { if postIndex > l { return io.ErrUnexpectedEOF } - if m.RegionEpoch == nil { - m.RegionEpoch = &metapb.RegionEpoch{} + if m.RegionError == nil { + m.RegionError = &errorpb.Error{} } - if err := m.RegionEpoch.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { + if err := m.RegionError.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { return err } iNdEx = postIndex - case 5: + case 2: if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field ReadState", wireType) + return fmt.Errorf("proto: wrong wireType = %d for field Error", wireType) } - var msglen int + var stringLen uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowKvrpcpb @@ -34136,84 +35849,29 @@ func (m *LeaderInfo) Unmarshal(dAtA []byte) error { } b := dAtA[iNdEx] iNdEx++ - msglen |= int(b&0x7F) << shift + stringLen |= uint64(b&0x7F) << shift if b < 0x80 { break } } - if msglen < 0 { + intStringLen := int(stringLen) + if intStringLen < 0 { return ErrInvalidLengthKvrpcpb } - postIndex := iNdEx + msglen + postIndex := iNdEx + intStringLen if postIndex < 0 { return ErrInvalidLengthKvrpcpb } if postIndex > l { return io.ErrUnexpectedEOF } - if m.ReadState == nil { - m.ReadState = &ReadState{} - } - if err := m.ReadState.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { - return err - } + m.Error = string(dAtA[iNdEx:postIndex]) iNdEx = postIndex - default: - iNdEx = preIndex - skippy, err := skipKvrpcpb(dAtA[iNdEx:]) - if err != nil { - return err - } - if (skippy < 0) || (iNdEx+skippy) < 0 { - return ErrInvalidLengthKvrpcpb - } - 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 *ReadState) 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 ErrIntOverflowKvrpcpb - } - 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: ReadState: wiretype end group for non-group") - } - if fieldNum <= 0 { - return fmt.Errorf("proto: ReadState: illegal tag %d (wire type %d)", fieldNum, wire) - } - switch fieldNum { - case 1: + case 3: if wireType != 0 { - return fmt.Errorf("proto: wrong wireType = %d for field AppliedIndex", wireType) + return fmt.Errorf("proto: wrong wireType = %d for field Ttl", wireType) } - m.AppliedIndex = 0 + m.Ttl = 0 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowKvrpcpb @@ -34223,16 +35881,16 @@ func (m *ReadState) Unmarshal(dAtA []byte) error { } b := dAtA[iNdEx] iNdEx++ - m.AppliedIndex |= uint64(b&0x7F) << shift + m.Ttl |= uint64(b&0x7F) << shift if b < 0x80 { break } } - case 2: + case 4: if wireType != 0 { - return fmt.Errorf("proto: wrong wireType = %d for field SafeTs", wireType) + return fmt.Errorf("proto: wrong wireType = %d for field NotFound", wireType) } - m.SafeTs = 0 + var v int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowKvrpcpb @@ -34242,11 +35900,12 @@ func (m *ReadState) Unmarshal(dAtA []byte) error { } b := dAtA[iNdEx] iNdEx++ - m.SafeTs |= uint64(b&0x7F) << shift + v |= int(b&0x7F) << shift if b < 0x80 { break } } + m.NotFound = bool(v != 0) default: iNdEx = preIndex skippy, err := skipKvrpcpb(dAtA[iNdEx:]) @@ -34269,7 +35928,7 @@ func (m *ReadState) Unmarshal(dAtA []byte) error { } return nil } -func (m *CheckLeaderRequest) Unmarshal(dAtA []byte) error { +func (m *RawCASRequest) Unmarshal(dAtA []byte) error { l := len(dAtA) iNdEx := 0 for iNdEx < l { @@ -34292,15 +35951,15 @@ func (m *CheckLeaderRequest) Unmarshal(dAtA []byte) error { fieldNum := int32(wire >> 3) wireType := int(wire & 0x7) if wireType == 4 { - return fmt.Errorf("proto: CheckLeaderRequest: wiretype end group for non-group") + return fmt.Errorf("proto: RawCASRequest: wiretype end group for non-group") } if fieldNum <= 0 { - return fmt.Errorf("proto: CheckLeaderRequest: illegal tag %d (wire type %d)", fieldNum, wire) + return fmt.Errorf("proto: RawCASRequest: illegal tag %d (wire type %d)", fieldNum, wire) } switch fieldNum { case 1: if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field Regions", wireType) + return fmt.Errorf("proto: wrong wireType = %d for field Context", wireType) } var msglen int for shift := uint(0); ; shift += 7 { @@ -34327,16 +35986,18 @@ func (m *CheckLeaderRequest) Unmarshal(dAtA []byte) error { if postIndex > l { return io.ErrUnexpectedEOF } - m.Regions = append(m.Regions, &LeaderInfo{}) - if err := m.Regions[len(m.Regions)-1].Unmarshal(dAtA[iNdEx:postIndex]); err != nil { + if m.Context == nil { + m.Context = &Context{} + } + if err := m.Context.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { return err } iNdEx = postIndex case 2: - if wireType != 0 { - return fmt.Errorf("proto: wrong wireType = %d for field Ts", wireType) + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field Key", wireType) } - m.Ts = 0 + var byteLen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowKvrpcpb @@ -34346,143 +36007,151 @@ func (m *CheckLeaderRequest) Unmarshal(dAtA []byte) error { } b := dAtA[iNdEx] iNdEx++ - m.Ts |= uint64(b&0x7F) << shift + byteLen |= int(b&0x7F) << shift if b < 0x80 { break } } - default: - iNdEx = preIndex - skippy, err := skipKvrpcpb(dAtA[iNdEx:]) - if err != nil { - return err + if byteLen < 0 { + return ErrInvalidLengthKvrpcpb } - if (skippy < 0) || (iNdEx+skippy) < 0 { + postIndex := iNdEx + byteLen + if postIndex < 0 { return ErrInvalidLengthKvrpcpb } - if (iNdEx + skippy) > l { + if postIndex > 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 *CheckLeaderResponse) 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 ErrIntOverflowKvrpcpb + m.Key = append(m.Key[:0], dAtA[iNdEx:postIndex]...) + if m.Key == nil { + m.Key = []byte{} } - if iNdEx >= l { + iNdEx = postIndex + case 3: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field Value", wireType) + } + var byteLen int + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowKvrpcpb + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + byteLen |= int(b&0x7F) << shift + if b < 0x80 { + break + } + } + if byteLen < 0 { + return ErrInvalidLengthKvrpcpb + } + postIndex := iNdEx + byteLen + if postIndex < 0 { + return ErrInvalidLengthKvrpcpb + } + if postIndex > l { return io.ErrUnexpectedEOF } - b := dAtA[iNdEx] - iNdEx++ - wire |= uint64(b&0x7F) << shift - if b < 0x80 { - break + m.Value = append(m.Value[:0], dAtA[iNdEx:postIndex]...) + if m.Value == nil { + m.Value = []byte{} } - } - fieldNum := int32(wire >> 3) - wireType := int(wire & 0x7) - if wireType == 4 { - return fmt.Errorf("proto: CheckLeaderResponse: wiretype end group for non-group") - } - if fieldNum <= 0 { - return fmt.Errorf("proto: CheckLeaderResponse: illegal tag %d (wire type %d)", fieldNum, wire) - } - switch fieldNum { - case 1: - if wireType == 0 { - var v uint64 - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowKvrpcpb - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := dAtA[iNdEx] - iNdEx++ - v |= uint64(b&0x7F) << shift - if b < 0x80 { - break - } + iNdEx = postIndex + case 4: + if wireType != 0 { + return fmt.Errorf("proto: wrong wireType = %d for field PreviousNotExist", wireType) + } + var v int + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowKvrpcpb } - m.Regions = append(m.Regions, v) - } else if wireType == 2 { - var packedLen int - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowKvrpcpb - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := dAtA[iNdEx] - iNdEx++ - packedLen |= int(b&0x7F) << shift - if b < 0x80 { - break - } + if iNdEx >= l { + return io.ErrUnexpectedEOF } - if packedLen < 0 { - return ErrInvalidLengthKvrpcpb + b := dAtA[iNdEx] + iNdEx++ + v |= int(b&0x7F) << shift + if b < 0x80 { + break } - postIndex := iNdEx + packedLen - if postIndex < 0 { - return ErrInvalidLengthKvrpcpb + } + m.PreviousNotExist = bool(v != 0) + case 5: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field PreviousValue", wireType) + } + var byteLen int + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowKvrpcpb } - if postIndex > l { + if iNdEx >= l { return io.ErrUnexpectedEOF } - var elementCount int - var count int - for _, integer := range dAtA[iNdEx:postIndex] { - if integer < 128 { - count++ - } + b := dAtA[iNdEx] + iNdEx++ + byteLen |= int(b&0x7F) << shift + if b < 0x80 { + break } - elementCount = count - if elementCount != 0 && len(m.Regions) == 0 { - m.Regions = make([]uint64, 0, elementCount) + } + if byteLen < 0 { + return ErrInvalidLengthKvrpcpb + } + postIndex := iNdEx + byteLen + if postIndex < 0 { + return ErrInvalidLengthKvrpcpb + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + m.PreviousValue = append(m.PreviousValue[:0], dAtA[iNdEx:postIndex]...) + if m.PreviousValue == nil { + m.PreviousValue = []byte{} + } + iNdEx = postIndex + case 6: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field Cf", wireType) + } + var stringLen uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowKvrpcpb } - for iNdEx < postIndex { - var v uint64 - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowKvrpcpb - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := dAtA[iNdEx] - iNdEx++ - v |= uint64(b&0x7F) << shift - if b < 0x80 { - break - } - } - m.Regions = append(m.Regions, v) + if iNdEx >= l { + return io.ErrUnexpectedEOF } - } else { - return fmt.Errorf("proto: wrong wireType = %d for field Regions", wireType) + b := dAtA[iNdEx] + iNdEx++ + stringLen |= uint64(b&0x7F) << shift + if b < 0x80 { + break + } + } + intStringLen := int(stringLen) + if intStringLen < 0 { + return ErrInvalidLengthKvrpcpb + } + postIndex := iNdEx + intStringLen + if postIndex < 0 { + return ErrInvalidLengthKvrpcpb + } + if postIndex > l { + return io.ErrUnexpectedEOF } - case 2: + m.Cf = string(dAtA[iNdEx:postIndex]) + iNdEx = postIndex + case 7: if wireType != 0 { - return fmt.Errorf("proto: wrong wireType = %d for field Ts", wireType) + return fmt.Errorf("proto: wrong wireType = %d for field Ttl", wireType) } - m.Ts = 0 + m.Ttl = 0 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowKvrpcpb @@ -34492,7 +36161,7 @@ func (m *CheckLeaderResponse) Unmarshal(dAtA []byte) error { } b := dAtA[iNdEx] iNdEx++ - m.Ts |= uint64(b&0x7F) << shift + m.Ttl |= uint64(b&0x7F) << shift if b < 0x80 { break } @@ -34519,7 +36188,7 @@ func (m *CheckLeaderResponse) Unmarshal(dAtA []byte) error { } return nil } -func (m *StoreSafeTSRequest) Unmarshal(dAtA []byte) error { +func (m *RawCASResponse) Unmarshal(dAtA []byte) error { l := len(dAtA) iNdEx := 0 for iNdEx < l { @@ -34542,15 +36211,15 @@ func (m *StoreSafeTSRequest) Unmarshal(dAtA []byte) error { fieldNum := int32(wire >> 3) wireType := int(wire & 0x7) if wireType == 4 { - return fmt.Errorf("proto: StoreSafeTSRequest: wiretype end group for non-group") + return fmt.Errorf("proto: RawCASResponse: wiretype end group for non-group") } if fieldNum <= 0 { - return fmt.Errorf("proto: StoreSafeTSRequest: illegal tag %d (wire type %d)", fieldNum, wire) + return fmt.Errorf("proto: RawCASResponse: illegal tag %d (wire type %d)", fieldNum, wire) } switch fieldNum { case 1: if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field KeyRange", wireType) + return fmt.Errorf("proto: wrong wireType = %d for field RegionError", wireType) } var msglen int for shift := uint(0); ; shift += 7 { @@ -34577,69 +36246,70 @@ func (m *StoreSafeTSRequest) Unmarshal(dAtA []byte) error { if postIndex > l { return io.ErrUnexpectedEOF } - if m.KeyRange == nil { - m.KeyRange = &KeyRange{} + if m.RegionError == nil { + m.RegionError = &errorpb.Error{} } - if err := m.KeyRange.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { + if err := m.RegionError.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { return err } iNdEx = postIndex - default: - iNdEx = preIndex - skippy, err := skipKvrpcpb(dAtA[iNdEx:]) - if err != nil { - return err + case 2: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field Error", wireType) } - if (skippy < 0) || (iNdEx+skippy) < 0 { - return ErrInvalidLengthKvrpcpb + var stringLen uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowKvrpcpb + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + stringLen |= uint64(b&0x7F) << shift + if b < 0x80 { + break + } } - if (iNdEx + skippy) > l { - return io.ErrUnexpectedEOF + intStringLen := int(stringLen) + if intStringLen < 0 { + return ErrInvalidLengthKvrpcpb } - m.XXX_unrecognized = append(m.XXX_unrecognized, dAtA[iNdEx:iNdEx+skippy]...) - iNdEx += skippy - } - } - - if iNdEx > l { - return io.ErrUnexpectedEOF - } - return nil -} -func (m *StoreSafeTSResponse) 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 ErrIntOverflowKvrpcpb + postIndex := iNdEx + intStringLen + if postIndex < 0 { + return ErrInvalidLengthKvrpcpb } - if iNdEx >= l { + if postIndex > l { return io.ErrUnexpectedEOF } - b := dAtA[iNdEx] - iNdEx++ - wire |= uint64(b&0x7F) << shift - if b < 0x80 { - break + m.Error = string(dAtA[iNdEx:postIndex]) + iNdEx = postIndex + case 3: + if wireType != 0 { + return fmt.Errorf("proto: wrong wireType = %d for field Succeed", wireType) } - } - fieldNum := int32(wire >> 3) - wireType := int(wire & 0x7) - if wireType == 4 { - return fmt.Errorf("proto: StoreSafeTSResponse: wiretype end group for non-group") - } - if fieldNum <= 0 { - return fmt.Errorf("proto: StoreSafeTSResponse: illegal tag %d (wire type %d)", fieldNum, wire) - } - switch fieldNum { - case 1: + var v int + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowKvrpcpb + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + v |= int(b&0x7F) << shift + if b < 0x80 { + break + } + } + m.Succeed = bool(v != 0) + case 4: if wireType != 0 { - return fmt.Errorf("proto: wrong wireType = %d for field SafeTs", wireType) + return fmt.Errorf("proto: wrong wireType = %d for field PreviousNotExist", wireType) } - m.SafeTs = 0 + var v int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowKvrpcpb @@ -34649,11 +36319,46 @@ func (m *StoreSafeTSResponse) Unmarshal(dAtA []byte) error { } b := dAtA[iNdEx] iNdEx++ - m.SafeTs |= uint64(b&0x7F) << shift + v |= int(b&0x7F) << shift + if b < 0x80 { + break + } + } + m.PreviousNotExist = bool(v != 0) + case 5: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field PreviousValue", wireType) + } + var byteLen int + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowKvrpcpb + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + byteLen |= int(b&0x7F) << shift if b < 0x80 { break } } + if byteLen < 0 { + return ErrInvalidLengthKvrpcpb + } + postIndex := iNdEx + byteLen + if postIndex < 0 { + return ErrInvalidLengthKvrpcpb + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + m.PreviousValue = append(m.PreviousValue[:0], dAtA[iNdEx:postIndex]...) + if m.PreviousValue == nil { + m.PreviousValue = []byte{} + } + iNdEx = postIndex default: iNdEx = preIndex skippy, err := skipKvrpcpb(dAtA[iNdEx:]) @@ -34676,7 +36381,7 @@ func (m *StoreSafeTSResponse) Unmarshal(dAtA []byte) error { } return nil } -func (m *RawGetKeyTTLRequest) Unmarshal(dAtA []byte) error { +func (m *GetLockWaitInfoRequest) Unmarshal(dAtA []byte) error { l := len(dAtA) iNdEx := 0 for iNdEx < l { @@ -34699,10 +36404,10 @@ func (m *RawGetKeyTTLRequest) Unmarshal(dAtA []byte) error { fieldNum := int32(wire >> 3) wireType := int(wire & 0x7) if wireType == 4 { - return fmt.Errorf("proto: RawGetKeyTTLRequest: wiretype end group for non-group") + return fmt.Errorf("proto: GetLockWaitInfoRequest: wiretype end group for non-group") } if fieldNum <= 0 { - return fmt.Errorf("proto: RawGetKeyTTLRequest: illegal tag %d (wire type %d)", fieldNum, wire) + return fmt.Errorf("proto: GetLockWaitInfoRequest: illegal tag %d (wire type %d)", fieldNum, wire) } switch fieldNum { case 1: @@ -34741,72 +36446,6 @@ func (m *RawGetKeyTTLRequest) Unmarshal(dAtA []byte) error { return err } iNdEx = postIndex - case 2: - if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field Key", wireType) - } - var byteLen int - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowKvrpcpb - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := dAtA[iNdEx] - iNdEx++ - byteLen |= int(b&0x7F) << shift - if b < 0x80 { - break - } - } - if byteLen < 0 { - return ErrInvalidLengthKvrpcpb - } - postIndex := iNdEx + byteLen - if postIndex < 0 { - return ErrInvalidLengthKvrpcpb - } - if postIndex > l { - return io.ErrUnexpectedEOF - } - m.Key = append(m.Key[:0], dAtA[iNdEx:postIndex]...) - if m.Key == nil { - m.Key = []byte{} - } - iNdEx = postIndex - case 3: - if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field Cf", wireType) - } - var stringLen uint64 - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowKvrpcpb - } - 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 ErrInvalidLengthKvrpcpb - } - postIndex := iNdEx + intStringLen - if postIndex < 0 { - return ErrInvalidLengthKvrpcpb - } - if postIndex > l { - return io.ErrUnexpectedEOF - } - m.Cf = string(dAtA[iNdEx:postIndex]) - iNdEx = postIndex default: iNdEx = preIndex skippy, err := skipKvrpcpb(dAtA[iNdEx:]) @@ -34829,7 +36468,7 @@ func (m *RawGetKeyTTLRequest) Unmarshal(dAtA []byte) error { } return nil } -func (m *RawGetKeyTTLResponse) Unmarshal(dAtA []byte) error { +func (m *GetLockWaitInfoResponse) Unmarshal(dAtA []byte) error { l := len(dAtA) iNdEx := 0 for iNdEx < l { @@ -34852,10 +36491,10 @@ func (m *RawGetKeyTTLResponse) Unmarshal(dAtA []byte) error { fieldNum := int32(wire >> 3) wireType := int(wire & 0x7) if wireType == 4 { - return fmt.Errorf("proto: RawGetKeyTTLResponse: wiretype end group for non-group") + return fmt.Errorf("proto: GetLockWaitInfoResponse: wiretype end group for non-group") } if fieldNum <= 0 { - return fmt.Errorf("proto: RawGetKeyTTLResponse: illegal tag %d (wire type %d)", fieldNum, wire) + return fmt.Errorf("proto: GetLockWaitInfoResponse: illegal tag %d (wire type %d)", fieldNum, wire) } switch fieldNum { case 1: @@ -34924,32 +36563,13 @@ func (m *RawGetKeyTTLResponse) Unmarshal(dAtA []byte) error { if postIndex > l { return io.ErrUnexpectedEOF } - m.Error = string(dAtA[iNdEx:postIndex]) - iNdEx = postIndex - case 3: - if wireType != 0 { - return fmt.Errorf("proto: wrong wireType = %d for field Ttl", wireType) - } - m.Ttl = 0 - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowKvrpcpb - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := dAtA[iNdEx] - iNdEx++ - m.Ttl |= uint64(b&0x7F) << shift - if b < 0x80 { - break - } - } - case 4: - if wireType != 0 { - return fmt.Errorf("proto: wrong wireType = %d for field NotFound", wireType) + m.Error = string(dAtA[iNdEx:postIndex]) + iNdEx = postIndex + case 3: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field Entries", wireType) } - var v int + var msglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowKvrpcpb @@ -34959,12 +36579,26 @@ func (m *RawGetKeyTTLResponse) Unmarshal(dAtA []byte) error { } b := dAtA[iNdEx] iNdEx++ - v |= int(b&0x7F) << shift + msglen |= int(b&0x7F) << shift if b < 0x80 { break } } - m.NotFound = bool(v != 0) + if msglen < 0 { + return ErrInvalidLengthKvrpcpb + } + postIndex := iNdEx + msglen + if postIndex < 0 { + return ErrInvalidLengthKvrpcpb + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + m.Entries = append(m.Entries, &deadlock.WaitForEntry{}) + if err := m.Entries[len(m.Entries)-1].Unmarshal(dAtA[iNdEx:postIndex]); err != nil { + return err + } + iNdEx = postIndex default: iNdEx = preIndex skippy, err := skipKvrpcpb(dAtA[iNdEx:]) @@ -34987,7 +36621,7 @@ func (m *RawGetKeyTTLResponse) Unmarshal(dAtA []byte) error { } return nil } -func (m *RawCASRequest) Unmarshal(dAtA []byte) error { +func (m *RawCoprocessorRequest) Unmarshal(dAtA []byte) error { l := len(dAtA) iNdEx := 0 for iNdEx < l { @@ -35010,10 +36644,10 @@ func (m *RawCASRequest) Unmarshal(dAtA []byte) error { fieldNum := int32(wire >> 3) wireType := int(wire & 0x7) if wireType == 4 { - return fmt.Errorf("proto: RawCASRequest: wiretype end group for non-group") + return fmt.Errorf("proto: RawCoprocessorRequest: wiretype end group for non-group") } if fieldNum <= 0 { - return fmt.Errorf("proto: RawCASRequest: illegal tag %d (wire type %d)", fieldNum, wire) + return fmt.Errorf("proto: RawCoprocessorRequest: illegal tag %d (wire type %d)", fieldNum, wire) } switch fieldNum { case 1: @@ -35054,9 +36688,9 @@ func (m *RawCASRequest) Unmarshal(dAtA []byte) error { iNdEx = postIndex case 2: if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field Key", wireType) + return fmt.Errorf("proto: wrong wireType = %d for field CoprName", wireType) } - var byteLen int + var stringLen uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowKvrpcpb @@ -35066,31 +36700,29 @@ func (m *RawCASRequest) Unmarshal(dAtA []byte) error { } b := dAtA[iNdEx] iNdEx++ - byteLen |= int(b&0x7F) << shift + stringLen |= uint64(b&0x7F) << shift if b < 0x80 { break } } - if byteLen < 0 { + intStringLen := int(stringLen) + if intStringLen < 0 { return ErrInvalidLengthKvrpcpb } - postIndex := iNdEx + byteLen + postIndex := iNdEx + intStringLen if postIndex < 0 { return ErrInvalidLengthKvrpcpb } if postIndex > l { return io.ErrUnexpectedEOF } - m.Key = append(m.Key[:0], dAtA[iNdEx:postIndex]...) - if m.Key == nil { - m.Key = []byte{} - } + m.CoprName = string(dAtA[iNdEx:postIndex]) iNdEx = postIndex case 3: if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field Value", wireType) + return fmt.Errorf("proto: wrong wireType = %d for field CoprVersionReq", wireType) } - var byteLen int + var stringLen uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowKvrpcpb @@ -35100,51 +36732,29 @@ func (m *RawCASRequest) Unmarshal(dAtA []byte) error { } b := dAtA[iNdEx] iNdEx++ - byteLen |= int(b&0x7F) << shift + stringLen |= uint64(b&0x7F) << shift if b < 0x80 { break } } - if byteLen < 0 { + intStringLen := int(stringLen) + if intStringLen < 0 { return ErrInvalidLengthKvrpcpb } - postIndex := iNdEx + byteLen + postIndex := iNdEx + intStringLen if postIndex < 0 { return ErrInvalidLengthKvrpcpb } if postIndex > l { return io.ErrUnexpectedEOF } - m.Value = append(m.Value[:0], dAtA[iNdEx:postIndex]...) - if m.Value == nil { - m.Value = []byte{} - } + m.CoprVersionReq = string(dAtA[iNdEx:postIndex]) iNdEx = postIndex case 4: - if wireType != 0 { - return fmt.Errorf("proto: wrong wireType = %d for field PreviousNotExist", wireType) - } - var v int - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowKvrpcpb - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := dAtA[iNdEx] - iNdEx++ - v |= int(b&0x7F) << shift - if b < 0x80 { - break - } - } - m.PreviousNotExist = bool(v != 0) - case 5: if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field PreviousValue", wireType) + return fmt.Errorf("proto: wrong wireType = %d for field Ranges", wireType) } - var byteLen int + var msglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowKvrpcpb @@ -35154,31 +36764,31 @@ func (m *RawCASRequest) Unmarshal(dAtA []byte) error { } b := dAtA[iNdEx] iNdEx++ - byteLen |= int(b&0x7F) << shift + msglen |= int(b&0x7F) << shift if b < 0x80 { break } } - if byteLen < 0 { + if msglen < 0 { return ErrInvalidLengthKvrpcpb } - postIndex := iNdEx + byteLen + postIndex := iNdEx + msglen if postIndex < 0 { return ErrInvalidLengthKvrpcpb } if postIndex > l { return io.ErrUnexpectedEOF } - m.PreviousValue = append(m.PreviousValue[:0], dAtA[iNdEx:postIndex]...) - if m.PreviousValue == nil { - m.PreviousValue = []byte{} + m.Ranges = append(m.Ranges, &KeyRange{}) + if err := m.Ranges[len(m.Ranges)-1].Unmarshal(dAtA[iNdEx:postIndex]); err != nil { + return err } iNdEx = postIndex - case 6: + case 5: if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field Cf", wireType) + return fmt.Errorf("proto: wrong wireType = %d for field Data", wireType) } - var stringLen uint64 + var byteLen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowKvrpcpb @@ -35188,43 +36798,26 @@ func (m *RawCASRequest) Unmarshal(dAtA []byte) error { } b := dAtA[iNdEx] iNdEx++ - stringLen |= uint64(b&0x7F) << shift + byteLen |= int(b&0x7F) << shift if b < 0x80 { break } } - intStringLen := int(stringLen) - if intStringLen < 0 { + if byteLen < 0 { return ErrInvalidLengthKvrpcpb } - postIndex := iNdEx + intStringLen + postIndex := iNdEx + byteLen if postIndex < 0 { return ErrInvalidLengthKvrpcpb } if postIndex > l { return io.ErrUnexpectedEOF } - m.Cf = string(dAtA[iNdEx:postIndex]) - iNdEx = postIndex - case 7: - if wireType != 0 { - return fmt.Errorf("proto: wrong wireType = %d for field Ttl", wireType) - } - m.Ttl = 0 - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowKvrpcpb - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := dAtA[iNdEx] - iNdEx++ - m.Ttl |= uint64(b&0x7F) << shift - if b < 0x80 { - break - } + m.Data = append(m.Data[:0], dAtA[iNdEx:postIndex]...) + if m.Data == nil { + m.Data = []byte{} } + iNdEx = postIndex default: iNdEx = preIndex skippy, err := skipKvrpcpb(dAtA[iNdEx:]) @@ -35247,7 +36840,7 @@ func (m *RawCASRequest) Unmarshal(dAtA []byte) error { } return nil } -func (m *RawCASResponse) Unmarshal(dAtA []byte) error { +func (m *RawCoprocessorResponse) Unmarshal(dAtA []byte) error { l := len(dAtA) iNdEx := 0 for iNdEx < l { @@ -35270,10 +36863,10 @@ func (m *RawCASResponse) Unmarshal(dAtA []byte) error { fieldNum := int32(wire >> 3) wireType := int(wire & 0x7) if wireType == 4 { - return fmt.Errorf("proto: RawCASResponse: wiretype end group for non-group") + return fmt.Errorf("proto: RawCoprocessorResponse: wiretype end group for non-group") } if fieldNum <= 0 { - return fmt.Errorf("proto: RawCASResponse: illegal tag %d (wire type %d)", fieldNum, wire) + return fmt.Errorf("proto: RawCoprocessorResponse: illegal tag %d (wire type %d)", fieldNum, wire) } switch fieldNum { case 1: @@ -35345,48 +36938,8 @@ func (m *RawCASResponse) Unmarshal(dAtA []byte) error { m.Error = string(dAtA[iNdEx:postIndex]) iNdEx = postIndex case 3: - if wireType != 0 { - return fmt.Errorf("proto: wrong wireType = %d for field Succeed", wireType) - } - var v int - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowKvrpcpb - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := dAtA[iNdEx] - iNdEx++ - v |= int(b&0x7F) << shift - if b < 0x80 { - break - } - } - m.Succeed = bool(v != 0) - case 4: - if wireType != 0 { - return fmt.Errorf("proto: wrong wireType = %d for field PreviousNotExist", wireType) - } - var v int - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowKvrpcpb - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := dAtA[iNdEx] - iNdEx++ - v |= int(b&0x7F) << shift - if b < 0x80 { - break - } - } - m.PreviousNotExist = bool(v != 0) - case 5: if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field PreviousValue", wireType) + return fmt.Errorf("proto: wrong wireType = %d for field Data", wireType) } var byteLen int for shift := uint(0); ; shift += 7 { @@ -35413,9 +36966,9 @@ func (m *RawCASResponse) Unmarshal(dAtA []byte) error { if postIndex > l { return io.ErrUnexpectedEOF } - m.PreviousValue = append(m.PreviousValue[:0], dAtA[iNdEx:postIndex]...) - if m.PreviousValue == nil { - m.PreviousValue = []byte{} + m.Data = append(m.Data[:0], dAtA[iNdEx:postIndex]...) + if m.Data == nil { + m.Data = []byte{} } iNdEx = postIndex default: @@ -35440,7 +36993,7 @@ func (m *RawCASResponse) Unmarshal(dAtA []byte) error { } return nil } -func (m *GetLockWaitInfoRequest) Unmarshal(dAtA []byte) error { +func (m *RawChecksumRequest) Unmarshal(dAtA []byte) error { l := len(dAtA) iNdEx := 0 for iNdEx < l { @@ -35459,19 +37012,74 @@ func (m *GetLockWaitInfoRequest) Unmarshal(dAtA []byte) error { if b < 0x80 { break } - } - fieldNum := int32(wire >> 3) - wireType := int(wire & 0x7) - if wireType == 4 { - return fmt.Errorf("proto: GetLockWaitInfoRequest: wiretype end group for non-group") - } - if fieldNum <= 0 { - return fmt.Errorf("proto: GetLockWaitInfoRequest: illegal tag %d (wire type %d)", fieldNum, wire) - } - switch fieldNum { - case 1: + } + fieldNum := int32(wire >> 3) + wireType := int(wire & 0x7) + if wireType == 4 { + return fmt.Errorf("proto: RawChecksumRequest: wiretype end group for non-group") + } + if fieldNum <= 0 { + return fmt.Errorf("proto: RawChecksumRequest: illegal tag %d (wire type %d)", fieldNum, wire) + } + switch fieldNum { + case 1: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field Context", wireType) + } + var msglen int + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowKvrpcpb + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + msglen |= int(b&0x7F) << shift + if b < 0x80 { + break + } + } + if msglen < 0 { + return ErrInvalidLengthKvrpcpb + } + postIndex := iNdEx + msglen + if postIndex < 0 { + return ErrInvalidLengthKvrpcpb + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + if m.Context == nil { + m.Context = &Context{} + } + if err := m.Context.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { + return err + } + iNdEx = postIndex + case 2: + if wireType != 0 { + return fmt.Errorf("proto: wrong wireType = %d for field Algorithm", wireType) + } + m.Algorithm = 0 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowKvrpcpb + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + m.Algorithm |= ChecksumAlgorithm(b&0x7F) << shift + if b < 0x80 { + break + } + } + case 3: if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field Context", wireType) + return fmt.Errorf("proto: wrong wireType = %d for field Ranges", wireType) } var msglen int for shift := uint(0); ; shift += 7 { @@ -35498,10 +37106,8 @@ func (m *GetLockWaitInfoRequest) Unmarshal(dAtA []byte) error { if postIndex > l { return io.ErrUnexpectedEOF } - if m.Context == nil { - m.Context = &Context{} - } - if err := m.Context.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { + m.Ranges = append(m.Ranges, &KeyRange{}) + if err := m.Ranges[len(m.Ranges)-1].Unmarshal(dAtA[iNdEx:postIndex]); err != nil { return err } iNdEx = postIndex @@ -35527,7 +37133,7 @@ func (m *GetLockWaitInfoRequest) Unmarshal(dAtA []byte) error { } return nil } -func (m *GetLockWaitInfoResponse) Unmarshal(dAtA []byte) error { +func (m *RawChecksumResponse) Unmarshal(dAtA []byte) error { l := len(dAtA) iNdEx := 0 for iNdEx < l { @@ -35550,10 +37156,10 @@ func (m *GetLockWaitInfoResponse) Unmarshal(dAtA []byte) error { fieldNum := int32(wire >> 3) wireType := int(wire & 0x7) if wireType == 4 { - return fmt.Errorf("proto: GetLockWaitInfoResponse: wiretype end group for non-group") + return fmt.Errorf("proto: RawChecksumResponse: wiretype end group for non-group") } if fieldNum <= 0 { - return fmt.Errorf("proto: GetLockWaitInfoResponse: illegal tag %d (wire type %d)", fieldNum, wire) + return fmt.Errorf("proto: RawChecksumResponse: illegal tag %d (wire type %d)", fieldNum, wire) } switch fieldNum { case 1: @@ -35625,10 +37231,10 @@ func (m *GetLockWaitInfoResponse) Unmarshal(dAtA []byte) error { m.Error = string(dAtA[iNdEx:postIndex]) iNdEx = postIndex case 3: - if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field Entries", wireType) + if wireType != 0 { + return fmt.Errorf("proto: wrong wireType = %d for field Checksum", wireType) } - var msglen int + m.Checksum = 0 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowKvrpcpb @@ -35638,26 +37244,49 @@ func (m *GetLockWaitInfoResponse) Unmarshal(dAtA []byte) error { } b := dAtA[iNdEx] iNdEx++ - msglen |= int(b&0x7F) << shift + m.Checksum |= uint64(b&0x7F) << shift if b < 0x80 { break } } - if msglen < 0 { - return ErrInvalidLengthKvrpcpb + case 4: + if wireType != 0 { + return fmt.Errorf("proto: wrong wireType = %d for field TotalKvs", wireType) } - postIndex := iNdEx + msglen - if postIndex < 0 { - return ErrInvalidLengthKvrpcpb + m.TotalKvs = 0 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowKvrpcpb + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + m.TotalKvs |= uint64(b&0x7F) << shift + if b < 0x80 { + break + } } - if postIndex > l { - return io.ErrUnexpectedEOF + case 5: + if wireType != 0 { + return fmt.Errorf("proto: wrong wireType = %d for field TotalBytes", wireType) } - m.Entries = append(m.Entries, &deadlock.WaitForEntry{}) - if err := m.Entries[len(m.Entries)-1].Unmarshal(dAtA[iNdEx:postIndex]); err != nil { - return err + m.TotalBytes = 0 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowKvrpcpb + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + m.TotalBytes |= uint64(b&0x7F) << shift + if b < 0x80 { + break + } } - iNdEx = postIndex default: iNdEx = preIndex skippy, err := skipKvrpcpb(dAtA[iNdEx:]) @@ -35680,7 +37309,7 @@ func (m *GetLockWaitInfoResponse) Unmarshal(dAtA []byte) error { } return nil } -func (m *RawCoprocessorRequest) Unmarshal(dAtA []byte) error { +func (m *CompactError) Unmarshal(dAtA []byte) error { l := len(dAtA) iNdEx := 0 for iNdEx < l { @@ -35703,15 +37332,15 @@ func (m *RawCoprocessorRequest) Unmarshal(dAtA []byte) error { fieldNum := int32(wire >> 3) wireType := int(wire & 0x7) if wireType == 4 { - return fmt.Errorf("proto: RawCoprocessorRequest: wiretype end group for non-group") + return fmt.Errorf("proto: CompactError: wiretype end group for non-group") } if fieldNum <= 0 { - return fmt.Errorf("proto: RawCoprocessorRequest: illegal tag %d (wire type %d)", fieldNum, wire) + return fmt.Errorf("proto: CompactError: illegal tag %d (wire type %d)", fieldNum, wire) } switch fieldNum { case 1: if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field Context", wireType) + return fmt.Errorf("proto: wrong wireType = %d for field ErrInvalidStartKey", wireType) } var msglen int for shift := uint(0); ; shift += 7 { @@ -35738,18 +37367,17 @@ func (m *RawCoprocessorRequest) Unmarshal(dAtA []byte) error { if postIndex > l { return io.ErrUnexpectedEOF } - if m.Context == nil { - m.Context = &Context{} - } - if err := m.Context.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { + v := &CompactErrorInvalidStartKey{} + if err := v.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { return err } + m.Error = &CompactError_ErrInvalidStartKey{v} iNdEx = postIndex case 2: if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field CoprName", wireType) + return fmt.Errorf("proto: wrong wireType = %d for field ErrPhysicalTableNotExist", wireType) } - var stringLen uint64 + var msglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowKvrpcpb @@ -35759,29 +37387,32 @@ func (m *RawCoprocessorRequest) Unmarshal(dAtA []byte) error { } b := dAtA[iNdEx] iNdEx++ - stringLen |= uint64(b&0x7F) << shift + msglen |= int(b&0x7F) << shift if b < 0x80 { break } } - intStringLen := int(stringLen) - if intStringLen < 0 { + if msglen < 0 { return ErrInvalidLengthKvrpcpb } - postIndex := iNdEx + intStringLen + postIndex := iNdEx + msglen if postIndex < 0 { return ErrInvalidLengthKvrpcpb } if postIndex > l { return io.ErrUnexpectedEOF } - m.CoprName = string(dAtA[iNdEx:postIndex]) + v := &CompactErrorPhysicalTableNotExist{} + if err := v.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { + return err + } + m.Error = &CompactError_ErrPhysicalTableNotExist{v} iNdEx = postIndex case 3: if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field CoprVersionReq", wireType) + return fmt.Errorf("proto: wrong wireType = %d for field ErrCompactInProgress", wireType) } - var stringLen uint64 + var msglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowKvrpcpb @@ -35791,27 +37422,30 @@ func (m *RawCoprocessorRequest) Unmarshal(dAtA []byte) error { } b := dAtA[iNdEx] iNdEx++ - stringLen |= uint64(b&0x7F) << shift + msglen |= int(b&0x7F) << shift if b < 0x80 { break } } - intStringLen := int(stringLen) - if intStringLen < 0 { + if msglen < 0 { return ErrInvalidLengthKvrpcpb } - postIndex := iNdEx + intStringLen + postIndex := iNdEx + msglen if postIndex < 0 { return ErrInvalidLengthKvrpcpb } if postIndex > l { return io.ErrUnexpectedEOF } - m.CoprVersionReq = string(dAtA[iNdEx:postIndex]) + v := &CompactErrorCompactInProgress{} + if err := v.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { + return err + } + m.Error = &CompactError_ErrCompactInProgress{v} iNdEx = postIndex case 4: if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field Ranges", wireType) + return fmt.Errorf("proto: wrong wireType = %d for field ErrTooManyPendingTasks", wireType) } var msglen int for shift := uint(0); ; shift += 7 { @@ -35838,45 +37472,165 @@ func (m *RawCoprocessorRequest) Unmarshal(dAtA []byte) error { if postIndex > l { return io.ErrUnexpectedEOF } - m.Ranges = append(m.Ranges, &KeyRange{}) - if err := m.Ranges[len(m.Ranges)-1].Unmarshal(dAtA[iNdEx:postIndex]); err != nil { + v := &CompactErrorTooManyPendingTasks{} + if err := v.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { return err } + m.Error = &CompactError_ErrTooManyPendingTasks{v} iNdEx = postIndex - case 5: - if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field Data", wireType) + default: + iNdEx = preIndex + skippy, err := skipKvrpcpb(dAtA[iNdEx:]) + if err != nil { + return err } - var byteLen int - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowKvrpcpb - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := dAtA[iNdEx] - iNdEx++ - byteLen |= int(b&0x7F) << shift - if b < 0x80 { - break - } + if (skippy < 0) || (iNdEx+skippy) < 0 { + return ErrInvalidLengthKvrpcpb } - if byteLen < 0 { + 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 *CompactErrorInvalidStartKey) 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 ErrIntOverflowKvrpcpb + } + 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: CompactErrorInvalidStartKey: wiretype end group for non-group") + } + if fieldNum <= 0 { + return fmt.Errorf("proto: CompactErrorInvalidStartKey: illegal tag %d (wire type %d)", fieldNum, wire) + } + switch fieldNum { + default: + iNdEx = preIndex + skippy, err := skipKvrpcpb(dAtA[iNdEx:]) + if err != nil { + return err + } + if (skippy < 0) || (iNdEx+skippy) < 0 { return ErrInvalidLengthKvrpcpb } - postIndex := iNdEx + byteLen - if postIndex < 0 { + 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 *CompactErrorPhysicalTableNotExist) 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 ErrIntOverflowKvrpcpb + } + 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: CompactErrorPhysicalTableNotExist: wiretype end group for non-group") + } + if fieldNum <= 0 { + return fmt.Errorf("proto: CompactErrorPhysicalTableNotExist: illegal tag %d (wire type %d)", fieldNum, wire) + } + switch fieldNum { + default: + iNdEx = preIndex + skippy, err := skipKvrpcpb(dAtA[iNdEx:]) + if err != nil { + return err + } + if (skippy < 0) || (iNdEx+skippy) < 0 { return ErrInvalidLengthKvrpcpb } - if postIndex > l { + 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 *CompactErrorCompactInProgress) 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 ErrIntOverflowKvrpcpb + } + if iNdEx >= l { return io.ErrUnexpectedEOF } - m.Data = append(m.Data[:0], dAtA[iNdEx:postIndex]...) - if m.Data == nil { - m.Data = []byte{} + b := dAtA[iNdEx] + iNdEx++ + wire |= uint64(b&0x7F) << shift + if b < 0x80 { + break } - iNdEx = postIndex + } + fieldNum := int32(wire >> 3) + wireType := int(wire & 0x7) + if wireType == 4 { + return fmt.Errorf("proto: CompactErrorCompactInProgress: wiretype end group for non-group") + } + if fieldNum <= 0 { + return fmt.Errorf("proto: CompactErrorCompactInProgress: illegal tag %d (wire type %d)", fieldNum, wire) + } + switch fieldNum { default: iNdEx = preIndex skippy, err := skipKvrpcpb(dAtA[iNdEx:]) @@ -35899,7 +37653,7 @@ func (m *RawCoprocessorRequest) Unmarshal(dAtA []byte) error { } return nil } -func (m *RawCoprocessorResponse) Unmarshal(dAtA []byte) error { +func (m *CompactErrorTooManyPendingTasks) Unmarshal(dAtA []byte) error { l := len(dAtA) iNdEx := 0 for iNdEx < l { @@ -35922,114 +37676,12 @@ func (m *RawCoprocessorResponse) Unmarshal(dAtA []byte) error { fieldNum := int32(wire >> 3) wireType := int(wire & 0x7) if wireType == 4 { - return fmt.Errorf("proto: RawCoprocessorResponse: wiretype end group for non-group") + return fmt.Errorf("proto: CompactErrorTooManyPendingTasks: wiretype end group for non-group") } if fieldNum <= 0 { - return fmt.Errorf("proto: RawCoprocessorResponse: illegal tag %d (wire type %d)", fieldNum, wire) + return fmt.Errorf("proto: CompactErrorTooManyPendingTasks: illegal tag %d (wire type %d)", fieldNum, wire) } switch fieldNum { - case 1: - if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field RegionError", wireType) - } - var msglen int - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowKvrpcpb - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := dAtA[iNdEx] - iNdEx++ - msglen |= int(b&0x7F) << shift - if b < 0x80 { - break - } - } - if msglen < 0 { - return ErrInvalidLengthKvrpcpb - } - postIndex := iNdEx + msglen - if postIndex < 0 { - return ErrInvalidLengthKvrpcpb - } - if postIndex > l { - return io.ErrUnexpectedEOF - } - if m.RegionError == nil { - m.RegionError = &errorpb.Error{} - } - if err := m.RegionError.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { - return err - } - iNdEx = postIndex - case 2: - if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field Error", wireType) - } - var stringLen uint64 - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowKvrpcpb - } - 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 ErrInvalidLengthKvrpcpb - } - postIndex := iNdEx + intStringLen - if postIndex < 0 { - return ErrInvalidLengthKvrpcpb - } - if postIndex > l { - return io.ErrUnexpectedEOF - } - m.Error = string(dAtA[iNdEx:postIndex]) - iNdEx = postIndex - case 3: - if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field Data", wireType) - } - var byteLen int - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowKvrpcpb - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := dAtA[iNdEx] - iNdEx++ - byteLen |= int(b&0x7F) << shift - if b < 0x80 { - break - } - } - if byteLen < 0 { - return ErrInvalidLengthKvrpcpb - } - postIndex := iNdEx + byteLen - if postIndex < 0 { - return ErrInvalidLengthKvrpcpb - } - if postIndex > l { - return io.ErrUnexpectedEOF - } - m.Data = append(m.Data[:0], dAtA[iNdEx:postIndex]...) - if m.Data == nil { - m.Data = []byte{} - } - iNdEx = postIndex default: iNdEx = preIndex skippy, err := skipKvrpcpb(dAtA[iNdEx:]) @@ -36052,7 +37704,7 @@ func (m *RawCoprocessorResponse) Unmarshal(dAtA []byte) error { } return nil } -func (m *RawChecksumRequest) Unmarshal(dAtA []byte) error { +func (m *CompactRequest) Unmarshal(dAtA []byte) error { l := len(dAtA) iNdEx := 0 for iNdEx < l { @@ -36075,17 +37727,17 @@ func (m *RawChecksumRequest) Unmarshal(dAtA []byte) error { fieldNum := int32(wire >> 3) wireType := int(wire & 0x7) if wireType == 4 { - return fmt.Errorf("proto: RawChecksumRequest: wiretype end group for non-group") + return fmt.Errorf("proto: CompactRequest: wiretype end group for non-group") } if fieldNum <= 0 { - return fmt.Errorf("proto: RawChecksumRequest: illegal tag %d (wire type %d)", fieldNum, wire) + return fmt.Errorf("proto: CompactRequest: illegal tag %d (wire type %d)", fieldNum, wire) } switch fieldNum { case 1: if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field Context", wireType) + return fmt.Errorf("proto: wrong wireType = %d for field StartKey", wireType) } - var msglen int + var byteLen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowKvrpcpb @@ -36095,33 +37747,31 @@ func (m *RawChecksumRequest) Unmarshal(dAtA []byte) error { } b := dAtA[iNdEx] iNdEx++ - msglen |= int(b&0x7F) << shift + byteLen |= int(b&0x7F) << shift if b < 0x80 { break } } - if msglen < 0 { + if byteLen < 0 { return ErrInvalidLengthKvrpcpb } - postIndex := iNdEx + msglen + postIndex := iNdEx + byteLen if postIndex < 0 { return ErrInvalidLengthKvrpcpb } if postIndex > l { return io.ErrUnexpectedEOF } - if m.Context == nil { - m.Context = &Context{} - } - if err := m.Context.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { - return err + m.StartKey = append(m.StartKey[:0], dAtA[iNdEx:postIndex]...) + if m.StartKey == nil { + m.StartKey = []byte{} } iNdEx = postIndex case 2: if wireType != 0 { - return fmt.Errorf("proto: wrong wireType = %d for field Algorithm", wireType) + return fmt.Errorf("proto: wrong wireType = %d for field PhysicalTableId", wireType) } - m.Algorithm = 0 + m.PhysicalTableId = 0 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowKvrpcpb @@ -36131,16 +37781,16 @@ func (m *RawChecksumRequest) Unmarshal(dAtA []byte) error { } b := dAtA[iNdEx] iNdEx++ - m.Algorithm |= ChecksumAlgorithm(b&0x7F) << shift + m.PhysicalTableId |= int64(b&0x7F) << shift if b < 0x80 { break } } case 3: - if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field Ranges", wireType) + if wireType != 0 { + return fmt.Errorf("proto: wrong wireType = %d for field LogicalTableId", wireType) } - var msglen int + m.LogicalTableId = 0 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowKvrpcpb @@ -36150,26 +37800,11 @@ func (m *RawChecksumRequest) Unmarshal(dAtA []byte) error { } b := dAtA[iNdEx] iNdEx++ - msglen |= int(b&0x7F) << shift + m.LogicalTableId |= int64(b&0x7F) << shift if b < 0x80 { break } } - if msglen < 0 { - return ErrInvalidLengthKvrpcpb - } - postIndex := iNdEx + msglen - if postIndex < 0 { - return ErrInvalidLengthKvrpcpb - } - if postIndex > l { - return io.ErrUnexpectedEOF - } - m.Ranges = append(m.Ranges, &KeyRange{}) - if err := m.Ranges[len(m.Ranges)-1].Unmarshal(dAtA[iNdEx:postIndex]); err != nil { - return err - } - iNdEx = postIndex default: iNdEx = preIndex skippy, err := skipKvrpcpb(dAtA[iNdEx:]) @@ -36192,7 +37827,7 @@ func (m *RawChecksumRequest) Unmarshal(dAtA []byte) error { } return nil } -func (m *RawChecksumResponse) Unmarshal(dAtA []byte) error { +func (m *CompactResponse) Unmarshal(dAtA []byte) error { l := len(dAtA) iNdEx := 0 for iNdEx < l { @@ -36215,15 +37850,15 @@ func (m *RawChecksumResponse) Unmarshal(dAtA []byte) error { fieldNum := int32(wire >> 3) wireType := int(wire & 0x7) if wireType == 4 { - return fmt.Errorf("proto: RawChecksumResponse: wiretype end group for non-group") + return fmt.Errorf("proto: CompactResponse: wiretype end group for non-group") } if fieldNum <= 0 { - return fmt.Errorf("proto: RawChecksumResponse: illegal tag %d (wire type %d)", fieldNum, wire) + return fmt.Errorf("proto: CompactResponse: illegal tag %d (wire type %d)", fieldNum, wire) } switch fieldNum { case 1: if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field RegionError", wireType) + return fmt.Errorf("proto: wrong wireType = %d for field Error", wireType) } var msglen int for shift := uint(0); ; shift += 7 { @@ -36250,18 +37885,18 @@ func (m *RawChecksumResponse) Unmarshal(dAtA []byte) error { if postIndex > l { return io.ErrUnexpectedEOF } - if m.RegionError == nil { - m.RegionError = &errorpb.Error{} + if m.Error == nil { + m.Error = &CompactError{} } - if err := m.RegionError.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { + if err := m.Error.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { return err } iNdEx = postIndex case 2: - if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field Error", wireType) + if wireType != 0 { + return fmt.Errorf("proto: wrong wireType = %d for field HasRemaining", wireType) } - var stringLen uint64 + var v int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowKvrpcpb @@ -36271,29 +37906,17 @@ func (m *RawChecksumResponse) Unmarshal(dAtA []byte) error { } b := dAtA[iNdEx] iNdEx++ - stringLen |= uint64(b&0x7F) << shift + v |= int(b&0x7F) << shift if b < 0x80 { break } } - intStringLen := int(stringLen) - if intStringLen < 0 { - return ErrInvalidLengthKvrpcpb - } - postIndex := iNdEx + intStringLen - if postIndex < 0 { - return ErrInvalidLengthKvrpcpb - } - if postIndex > l { - return io.ErrUnexpectedEOF - } - m.Error = string(dAtA[iNdEx:postIndex]) - iNdEx = postIndex + m.HasRemaining = bool(v != 0) case 3: - if wireType != 0 { - return fmt.Errorf("proto: wrong wireType = %d for field Checksum", wireType) + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field CompactedStartKey", wireType) } - m.Checksum = 0 + var byteLen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowKvrpcpb @@ -36303,16 +37926,31 @@ func (m *RawChecksumResponse) Unmarshal(dAtA []byte) error { } b := dAtA[iNdEx] iNdEx++ - m.Checksum |= uint64(b&0x7F) << shift + byteLen |= int(b&0x7F) << shift if b < 0x80 { break } } + if byteLen < 0 { + return ErrInvalidLengthKvrpcpb + } + postIndex := iNdEx + byteLen + if postIndex < 0 { + return ErrInvalidLengthKvrpcpb + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + m.CompactedStartKey = append(m.CompactedStartKey[:0], dAtA[iNdEx:postIndex]...) + if m.CompactedStartKey == nil { + m.CompactedStartKey = []byte{} + } + iNdEx = postIndex case 4: - if wireType != 0 { - return fmt.Errorf("proto: wrong wireType = %d for field TotalKvs", wireType) + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field CompactedEndKey", wireType) } - m.TotalKvs = 0 + var byteLen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowKvrpcpb @@ -36322,30 +37960,26 @@ func (m *RawChecksumResponse) Unmarshal(dAtA []byte) error { } b := dAtA[iNdEx] iNdEx++ - m.TotalKvs |= uint64(b&0x7F) << shift + byteLen |= int(b&0x7F) << shift if b < 0x80 { break } } - case 5: - if wireType != 0 { - return fmt.Errorf("proto: wrong wireType = %d for field TotalBytes", wireType) + if byteLen < 0 { + return ErrInvalidLengthKvrpcpb } - m.TotalBytes = 0 - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowKvrpcpb - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := dAtA[iNdEx] - iNdEx++ - m.TotalBytes |= uint64(b&0x7F) << shift - if b < 0x80 { - break - } + postIndex := iNdEx + byteLen + if postIndex < 0 { + return ErrInvalidLengthKvrpcpb + } + if postIndex > l { + return io.ErrUnexpectedEOF } + m.CompactedEndKey = append(m.CompactedEndKey[:0], dAtA[iNdEx:postIndex]...) + if m.CompactedEndKey == nil { + m.CompactedEndKey = []byte{} + } + iNdEx = postIndex default: iNdEx = preIndex skippy, err := skipKvrpcpb(dAtA[iNdEx:]) diff --git a/pkg/tikvpb/tikvpb.pb.go b/pkg/tikvpb/tikvpb.pb.go index 93e577760..84c08e405 100644 --- a/pkg/tikvpb/tikvpb.pb.go +++ b/pkg/tikvpb/tikvpb.pb.go @@ -1194,144 +1194,145 @@ func init() { func init() { proto.RegisterFile("tikvpb.proto", fileDescriptor_274fe050f0c997b3) } var fileDescriptor_274fe050f0c997b3 = []byte{ - // 2183 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x94, 0x9a, 0xdb, 0x52, 0x1b, 0xc9, - 0x19, 0x80, 0x47, 0xb6, 0xcc, 0xa1, 0x31, 0xa7, 0x06, 0xcc, 0xd0, 0xcb, 0xc1, 0xcc, 0xb2, 0x1b, - 0x2a, 0xa9, 0x22, 0xc6, 0xeb, 0xac, 0xb3, 0xbb, 0xc9, 0x06, 0x23, 0xbc, 0x80, 0x05, 0xb5, 0x2a, - 0x49, 0x9b, 0x75, 0xaa, 0x52, 0x45, 0x35, 0x52, 0x03, 0x2a, 0xa4, 0x19, 0x65, 0xa6, 0x19, 0xac, - 0xd7, 0xc8, 0x45, 0x2a, 0x8f, 0x90, 0x07, 0xc8, 0x43, 0xe4, 0x22, 0x17, 0xb9, 0xcc, 0x65, 0xca, - 0xb9, 0xc8, 0x63, 0x24, 0xd5, 0x3d, 0x33, 0x3d, 0xdd, 0x3d, 0xdd, 0x23, 0x72, 0xc5, 0xe8, 0x3f, - 0xf6, 0xf9, 0xfb, 0xbb, 0x6d, 0xf0, 0x94, 0xf6, 0x6e, 0xe3, 0xe1, 0xe5, 0xde, 0x30, 0x0c, 0x68, - 0x00, 0x27, 0x92, 0x5f, 0x68, 0xb1, 0x13, 0x0c, 0xc3, 0xa0, 0x43, 0xa2, 0x28, 0x08, 0x13, 0x15, - 0x9a, 0xbd, 0x8d, 0xc3, 0x61, 0x27, 0xb3, 0x44, 0xd3, 0x83, 0xe1, 0x30, 0xfd, 0x5c, 0x0a, 0xf1, - 0x15, 0xbd, 0x88, 0x48, 0x18, 0x93, 0x50, 0xe8, 0x97, 0xaf, 0x83, 0xeb, 0x80, 0x7f, 0xfe, 0x9c, - 0x7d, 0xa5, 0xd2, 0xf9, 0xf0, 0x2e, 0xa2, 0xfc, 0x33, 0x11, 0x78, 0x7f, 0x9c, 0x07, 0xcb, 0x87, - 0x98, 0x76, 0x6e, 0x6a, 0xc1, 0x60, 0x80, 0xfd, 0x6e, 0xd4, 0x24, 0x7f, 0xb8, 0x23, 0x11, 0x85, - 0x07, 0x60, 0x2a, 0x4c, 0x3e, 0x23, 0xb7, 0xf2, 0xfc, 0xf1, 0xee, 0xcc, 0xcb, 0x9d, 0xbd, 0xb4, - 0xa9, 0x26, 0xfb, 0xbd, 0xf4, 0x6f, 0x53, 0x78, 0xc1, 0x2d, 0x30, 0x93, 0x7e, 0x5f, 0xf4, 0xba, - 0x91, 0xfb, 0xe8, 0xf9, 0xe3, 0xdd, 0x6a, 0x13, 0xa4, 0xa2, 0xd3, 0x6e, 0x84, 0xfe, 0x34, 0x07, - 0x26, 0xb3, 0x74, 0x3f, 0x01, 0x8f, 0x8f, 0x09, 0x75, 0x2b, 0xcf, 0x2b, 0xbb, 0x33, 0x2f, 0x97, - 0xf6, 0xb2, 0xbe, 0x1e, 0x13, 0x9a, 0x5a, 0x9c, 0x38, 0x4d, 0x66, 0x01, 0x7f, 0x0a, 0xaa, 0xad, - 0x0e, 0xf6, 0xdd, 0x47, 0xdc, 0x72, 0x59, 0x58, 0x32, 0x61, 0x6e, 0xca, 0x6d, 0xe0, 0x97, 0x60, - 0xaa, 0x11, 0x92, 0xfb, 0xb0, 0x47, 0x89, 0xfb, 0x98, 0xdb, 0xbb, 0xc2, 0x3e, 0x53, 0xe4, 0x3e, - 0xc2, 0x16, 0xbe, 0x00, 0x13, 0xac, 0x7b, 0x3d, 0xea, 0x56, 0xb9, 0xd7, 0x33, 0xe1, 0x95, 0x88, - 0x73, 0x9f, 0xd4, 0x8e, 0x79, 0x9c, 0x0e, 0x86, 0x41, 0x48, 0xdd, 0x27, 0x9a, 0x47, 0x22, 0x96, - 0x3c, 0x12, 0x01, 0xfc, 0x02, 0x4c, 0xd6, 0xfa, 0x04, 0xfb, 0x77, 0x43, 0x77, 0x82, 0xbb, 0xac, - 0xe6, 0x49, 0x12, 0x79, 0xee, 0x93, 0x59, 0xb2, 0x0e, 0xf1, 0xc1, 0x67, 0x43, 0x35, 0xa9, 0x75, - 0x28, 0x53, 0x48, 0x1d, 0xca, 0x44, 0xf0, 0x2d, 0x98, 0xe5, 0xdf, 0xcd, 0xa0, 0xdf, 0xbf, 0xc4, - 0x9d, 0x5b, 0x77, 0x8a, 0x3b, 0x6f, 0xa8, 0xce, 0x99, 0x36, 0x8f, 0xa0, 0x7a, 0xb1, 0xf4, 0x6c, - 0x5c, 0xcf, 0x82, 0xce, 0xad, 0x3b, 0xad, 0xa5, 0xcf, 0x14, 0x52, 0xfa, 0x4c, 0x04, 0x7f, 0x03, - 0x66, 0x9a, 0x24, 0x0a, 0xfa, 0x31, 0xe1, 0xae, 0x80, 0xbb, 0x7e, 0x22, 0x5c, 0x25, 0x5d, 0xee, - 0x2d, 0x7b, 0xc0, 0x1d, 0xf0, 0xe8, 0xb8, 0xe6, 0xce, 0x70, 0x3f, 0x98, 0x2f, 0x8e, 0x5a, 0x6e, - 0xfe, 0xe8, 0xb8, 0xc6, 0xd2, 0x1c, 0x91, 0x3e, 0xa1, 0xa4, 0x89, 0xfd, 0x6b, 0xe2, 0x3e, 0xd5, - 0xd2, 0x48, 0x3a, 0x29, 0x8d, 0x24, 0x65, 0xb3, 0xd8, 0xc4, 0xf7, 0x6c, 0x70, 0x67, 0xb5, 0x59, - 0x4c, 0xc4, 0xd2, 0x2c, 0x26, 0x02, 0xde, 0x33, 0x7c, 0x2f, 0xe6, 0x64, 0x4e, 0xef, 0x59, 0xae, - 0x93, 0x7b, 0x96, 0x4b, 0xd3, 0x94, 0x8d, 0x3b, 0xea, 0xce, 0x17, 0x53, 0x36, 0xee, 0xb4, 0x94, - 0x8d, 0x3b, 0x25, 0x25, 0x73, 0x5b, 0xb0, 0xa4, 0x54, 0x7c, 0x65, 0x0f, 0xf8, 0x15, 0x98, 0x6e, - 0xe2, 0xfb, 0xa4, 0xdf, 0xee, 0x22, 0x77, 0x5f, 0x93, 0xdd, 0xd3, 0x11, 0x11, 0xce, 0xb9, 0x35, - 0x3c, 0x01, 0x73, 0x59, 0xa4, 0xd4, 0x1f, 0x72, 0xff, 0xcd, 0x42, 0x7a, 0x3d, 0x88, 0xe6, 0xc7, - 0x96, 0x7f, 0x13, 0xdf, 0xf3, 0x9d, 0xbc, 0xa4, 0x2d, 0xff, 0x54, 0x2e, 0x2d, 0xff, 0x54, 0x92, - 0xa6, 0x97, 0xe7, 0x78, 0xb9, 0x98, 0xde, 0x38, 0xcd, 0x9a, 0x1f, 0x3c, 0x04, 0x4f, 0xb3, 0x06, - 0xf1, 0x36, 0xac, 0xf0, 0x38, 0xeb, 0x85, 0x6e, 0xa8, 0x0d, 0x51, 0x7c, 0xe0, 0x2f, 0xc1, 0x4c, - 0x2d, 0x3f, 0xa5, 0xdd, 0x67, 0xe9, 0x81, 0x24, 0x9f, 0xdc, 0xd2, 0x0c, 0x48, 0xa6, 0xb0, 0x0e, - 0xe6, 0x1b, 0x24, 0x8a, 0x7a, 0x83, 0x5e, 0x44, 0x7b, 0x1d, 0xbe, 0x27, 0x56, 0xb9, 0xf7, 0x56, - 0x7e, 0x3c, 0xa9, 0xfa, 0x3c, 0x90, 0xee, 0x09, 0x7f, 0x04, 0x4b, 0x92, 0x48, 0xec, 0x70, 0x97, - 0x07, 0xfc, 0xd4, 0x14, 0xb0, 0xb8, 0xcf, 0x4d, 0x11, 0xd8, 0x68, 0xd7, 0x6e, 0x48, 0xe7, 0xb6, - 0xfd, 0xc1, 0x6f, 0x51, 0x4c, 0xef, 0x22, 0x77, 0x4d, 0x1b, 0x6d, 0x55, 0x2d, 0x8d, 0xb6, 0xaa, - 0x60, 0xa3, 0xdd, 0xfe, 0xe0, 0x9f, 0x10, 0x1c, 0xd2, 0x43, 0x82, 0xa9, 0x8b, 0xb4, 0xd1, 0x96, - 0x95, 0xd2, 0x68, 0xcb, 0x62, 0xd6, 0x4d, 0x1e, 0xb5, 0x45, 0x3a, 0x81, 0xdf, 0xc5, 0xe1, 0x88, - 0x75, 0x3e, 0x72, 0xb7, 0xb5, 0x6e, 0x1a, 0x6c, 0xa4, 0x6e, 0x1a, 0xb4, 0xe9, 0xa2, 0x92, 0x67, - 0xd2, 0x2b, 0x2e, 0x2a, 0x49, 0xad, 0x2e, 0x2a, 0x79, 0x5a, 0xbf, 0x06, 0x4f, 0xde, 0x0e, 0x86, - 0x74, 0xe4, 0xfe, 0x37, 0xc1, 0xd8, 0xb6, 0x11, 0x98, 0xdc, 0x24, 0x0f, 0x92, 0xb8, 0x1c, 0x3e, - 0x01, 0x8f, 0x3b, 0x83, 0xee, 0xbb, 0xea, 0xd4, 0x27, 0x0b, 0xdb, 0xde, 0x7f, 0xe6, 0xc1, 0x8a, - 0x06, 0xd9, 0x68, 0x18, 0xf8, 0x11, 0x81, 0x47, 0x60, 0x3a, 0x4c, 0xbf, 0x33, 0x2c, 0x7f, 0x6e, - 0xc1, 0x72, 0x62, 0xb5, 0x97, 0x7d, 0x34, 0x73, 0xc7, 0xb1, 0x64, 0x86, 0x2f, 0xc0, 0x32, 0x0d, - 0xb1, 0x1f, 0x31, 0x52, 0x5d, 0xf4, 0xf1, 0x88, 0x84, 0x17, 0xfd, 0x00, 0x77, 0x39, 0x44, 0xab, - 0x4d, 0x28, 0x74, 0x67, 0x4c, 0x75, 0x16, 0xe0, 0x2e, 0xfa, 0xeb, 0x1c, 0x98, 0x12, 0xad, 0xdc, - 0x95, 0x61, 0xbe, 0xac, 0xc2, 0x3c, 0x31, 0xc9, 0x68, 0xfe, 0x33, 0x85, 0xe6, 0x2b, 0x1a, 0xcd, - 0x85, 0x6d, 0x82, 0xf3, 0xd7, 0x05, 0x9c, 0xaf, 0x19, 0x70, 0x2e, 0x9c, 0x72, 0x9e, 0xef, 0x6b, - 0x3c, 0x5f, 0x2d, 0xf0, 0x5c, 0x38, 0x65, 0x40, 0xdf, 0xd7, 0x80, 0xbe, 0x5a, 0x00, 0x7a, 0xee, - 0x92, 0x12, 0xfd, 0x95, 0x4e, 0x74, 0xb7, 0x48, 0x74, 0xe1, 0x24, 0x90, 0xfe, 0xba, 0x80, 0xf4, - 0x35, 0x03, 0xd2, 0xf3, 0x4e, 0x09, 0x72, 0x7c, 0x67, 0x66, 0xfa, 0xa6, 0x8d, 0xe9, 0x22, 0x84, - 0x06, 0xf5, 0xd7, 0x05, 0xa8, 0xaf, 0x19, 0xa0, 0x9e, 0x37, 0x40, 0x50, 0xfd, 0xc0, 0x44, 0xf5, - 0x75, 0x33, 0xd5, 0x85, 0xbb, 0x82, 0xf5, 0xcf, 0x24, 0xac, 0x2f, 0x29, 0x58, 0x17, 0xf6, 0x8c, - 0xeb, 0x07, 0x26, 0xae, 0xaf, 0x9b, 0xb9, 0x9e, 0x27, 0x92, 0x8f, 0xfb, 0x7d, 0x0d, 0xec, 0xab, - 0x05, 0xb0, 0xe7, 0xb3, 0x99, 0x92, 0xfd, 0xc0, 0x44, 0xf6, 0x75, 0x33, 0xd9, 0xa5, 0xde, 0x49, - 0x68, 0xdf, 0xd7, 0xd0, 0xbe, 0x5a, 0x40, 0xbb, 0x92, 0x94, 0xa1, 0xf9, 0xc0, 0xc4, 0xf6, 0x75, - 0x33, 0xdb, 0x8b, 0x49, 0x59, 0x84, 0xaf, 0x8b, 0x70, 0x47, 0x26, 0xb8, 0x0b, 0x6f, 0x89, 0xee, - 0xa7, 0x16, 0xba, 0x6f, 0x59, 0xe9, 0x2e, 0xa2, 0xe8, 0x78, 0x7f, 0xa5, 0xe3, 0xdd, 0x2d, 0xe2, - 0x3d, 0xdf, 0x0b, 0x19, 0xdf, 0x4f, 0x2d, 0x7c, 0xdf, 0xb2, 0xf2, 0x5d, 0x69, 0x80, 0x3c, 0xe3, - 0x35, 0x23, 0xe0, 0x37, 0x2c, 0x80, 0x17, 0x61, 0x54, 0xc2, 0x7f, 0x65, 0x22, 0xfc, 0x8a, 0x46, - 0xf8, 0x7c, 0x1e, 0x64, 0x16, 0x9c, 0xd9, 0x10, 0xff, 0xdc, 0x8e, 0x78, 0x11, 0xa9, 0xc0, 0xf8, - 0xf7, 0x65, 0x8c, 0xdf, 0x29, 0x67, 0xbc, 0x88, 0x6a, 0x84, 0xfc, 0xa9, 0x05, 0xf2, 0x5b, 0x56, - 0xc8, 0xe7, 0x43, 0xae, 0x51, 0xbe, 0x66, 0xa4, 0xfc, 0x86, 0x85, 0xf2, 0xf9, 0x90, 0x2b, 0x98, - 0x7f, 0x5f, 0x86, 0xf9, 0x9d, 0x72, 0xcc, 0xe7, 0x3d, 0x35, 0x71, 0xfe, 0xd4, 0xc2, 0xf9, 0x2d, - 0x2b, 0xe7, 0x95, 0xc5, 0x25, 0x4f, 0xee, 0x37, 0x1a, 0xe8, 0xbd, 0x32, 0xd0, 0x8b, 0x28, 0x26, - 0xd2, 0x1f, 0x82, 0x85, 0xe4, 0x34, 0xc6, 0x57, 0xf4, 0x9c, 0x44, 0x11, 0xbe, 0x26, 0x70, 0x0f, - 0x54, 0x07, 0xd1, 0x75, 0x86, 0x77, 0xb4, 0xa7, 0xde, 0xee, 0x25, 0xcb, 0x26, 0xb7, 0xf3, 0x5a, - 0x60, 0xcd, 0x5a, 0x60, 0xc0, 0x55, 0x30, 0x49, 0x13, 0xce, 0x73, 0x1c, 0x57, 0x9b, 0x13, 0x94, - 0x33, 0x1e, 0x6e, 0x00, 0xd0, 0x25, 0x7d, 0x3c, 0xba, 0xa0, 0xbd, 0x01, 0xe1, 0xfc, 0xad, 0x36, - 0xa7, 0xb9, 0xa4, 0xdd, 0x1b, 0x10, 0xef, 0x17, 0x00, 0xd9, 0x3b, 0x63, 0x8d, 0xfa, 0xf2, 0xef, - 0x5b, 0xa0, 0xda, 0xee, 0xdd, 0xc6, 0xf0, 0x15, 0x78, 0x52, 0x8f, 0xd9, 0x29, 0x68, 0xba, 0xcb, - 0x23, 0x63, 0x4d, 0xe0, 0x39, 0xf0, 0x35, 0x98, 0xa8, 0xc7, 0x7c, 0xeb, 0x19, 0x2f, 0xf6, 0xc8, - 0x5c, 0x20, 0x78, 0x0e, 0xac, 0x01, 0x50, 0x8f, 0x05, 0xef, 0xad, 0xb7, 0x7c, 0x64, 0x2f, 0x18, - 0x3c, 0x07, 0xbe, 0x07, 0x8b, 0xf5, 0x58, 0xdf, 0x7a, 0xe3, 0x4a, 0x72, 0x34, 0x76, 0x43, 0x7b, - 0x0e, 0xec, 0x82, 0x95, 0xfa, 0x6f, 0x4d, 0xdb, 0xef, 0x21, 0xf5, 0x39, 0x7a, 0xd0, 0x06, 0xf7, - 0x1c, 0xf8, 0x3d, 0x98, 0xab, 0xc7, 0xca, 0x6e, 0x2a, 0x2d, 0xb1, 0x51, 0xf9, 0xd6, 0xf4, 0x1c, - 0xf8, 0x03, 0x58, 0xa8, 0xc7, 0xda, 0x2e, 0x1f, 0x53, 0xfd, 0xa3, 0x71, 0x07, 0x47, 0x3a, 0x1a, - 0xb1, 0x69, 0x8b, 0x3e, 0xa4, 0x8c, 0x47, 0x0f, 0x3a, 0x04, 0x3c, 0x07, 0xfe, 0x1a, 0x4c, 0xd5, - 0xe3, 0xb4, 0x9a, 0xb3, 0x3c, 0xe0, 0x20, 0x5b, 0x21, 0x98, 0xb9, 0xa7, 0x95, 0x9d, 0xe5, 0x35, - 0x07, 0xd9, 0x8a, 0x42, 0xcf, 0x81, 0x07, 0x60, 0xba, 0x1e, 0x67, 0x35, 0x9e, 0xed, 0x69, 0x07, - 0x59, 0x2b, 0xc4, 0x6c, 0x49, 0x8b, 0x62, 0xc2, 0xfa, 0xce, 0x83, 0xec, 0xe5, 0xa2, 0xe7, 0xc0, - 0x26, 0x98, 0x4f, 0x83, 0x88, 0x25, 0x57, 0xfe, 0xe8, 0x83, 0xc6, 0xd4, 0x8f, 0x59, 0xc3, 0x44, - 0x15, 0x68, 0x7d, 0x01, 0x42, 0xf6, 0x32, 0xd2, 0x73, 0xe0, 0x19, 0x98, 0xad, 0xc7, 0x72, 0x2d, - 0x58, 0xf6, 0x1c, 0x84, 0x4a, 0xab, 0x4a, 0xcf, 0x81, 0xfb, 0xa0, 0x5a, 0x8f, 0x8f, 0x6b, 0xd0, - 0xf0, 0x36, 0x84, 0x4c, 0x85, 0x65, 0xd6, 0x00, 0xb9, 0x62, 0x28, 0x7b, 0x28, 0x42, 0xa5, 0xd5, - 0xa6, 0xe7, 0xc0, 0x6f, 0xb2, 0x02, 0x13, 0x5a, 0xde, 0x8c, 0x90, 0xad, 0xe4, 0xf4, 0x1c, 0xf8, - 0x4e, 0x29, 0x35, 0x61, 0xd9, 0xf3, 0x11, 0x2a, 0xad, 0x40, 0x45, 0x43, 0x58, 0x25, 0x68, 0x79, - 0x49, 0x42, 0xb6, 0x32, 0x54, 0x6d, 0x08, 0x8b, 0x50, 0xf6, 0xa8, 0x84, 0x4a, 0xab, 0x52, 0xcf, - 0x61, 0x37, 0xd5, 0xbc, 0xb2, 0xb4, 0xbf, 0x2f, 0xa1, 0x92, 0xea, 0xd4, 0x73, 0x60, 0x4b, 0x2f, - 0x49, 0xe1, 0x98, 0xa7, 0x26, 0x34, 0xae, 0x58, 0xf5, 0x1c, 0xf8, 0xad, 0x28, 0x4e, 0xa1, 0xed, - 0xd5, 0x09, 0x59, 0xeb, 0x55, 0xd1, 0x28, 0x79, 0xed, 0x8c, 0x79, 0x80, 0x42, 0xe3, 0x0a, 0x58, - 0xcf, 0x81, 0xe7, 0x6a, 0xc1, 0x0a, 0x4b, 0xdf, 0xa2, 0x50, 0x79, 0x21, 0x2b, 0xc2, 0x1d, 0x13, - 0x5a, 0x27, 0xa3, 0x76, 0xfb, 0x4c, 0x0d, 0x27, 0xc4, 0xc6, 0x70, 0x92, 0x56, 0x84, 0xfb, 0x0e, - 0x2c, 0xf2, 0x1a, 0x68, 0x30, 0xc4, 0x21, 0x79, 0xe3, 0x77, 0x5b, 0xf7, 0x78, 0xa8, 0xae, 0xb0, - 0xda, 0x9b, 0x96, 0x71, 0x85, 0x71, 0xb9, 0xb6, 0xc2, 0xf8, 0xc1, 0x1d, 0xdd, 0x0d, 0xd4, 0x15, - 0x96, 0x49, 0x8d, 0x2b, 0x2c, 0x57, 0x8a, 0x58, 0x17, 0x00, 0xfe, 0xe0, 0x47, 0xf8, 0x8a, 0x1c, - 0x91, 0x88, 0x86, 0xc1, 0x28, 0x99, 0x0a, 0x4f, 0x78, 0x15, 0x95, 0x59, 0xe4, 0x4f, 0x4b, 0x6d, - 0x44, 0x02, 0x02, 0x96, 0x9b, 0xe4, 0xba, 0x17, 0x51, 0x12, 0xb2, 0xf3, 0xe6, 0xfb, 0xcb, 0xa4, - 0x08, 0x83, 0x3b, 0xd2, 0x69, 0x54, 0x54, 0x67, 0x49, 0x3e, 0x1b, 0x63, 0x25, 0xd2, 0xfc, 0x1e, - 0x2c, 0xf2, 0xde, 0x29, 0x39, 0xb6, 0x55, 0xca, 0x99, 0x12, 0x78, 0x65, 0x26, 0xf2, 0x28, 0x35, - 0xc9, 0x20, 0x48, 0x8e, 0x4c, 0x11, 0xde, 0x93, 0x1a, 0xa7, 0x2b, 0x8b, 0xa3, 0x64, 0xb2, 0x11, - 0x09, 0x7e, 0x07, 0x16, 0x1a, 0x37, 0xa3, 0xa8, 0xd7, 0xc1, 0x7d, 0x01, 0x05, 0xa9, 0x26, 0xd2, - 0x54, 0x59, 0xf0, 0xed, 0x12, 0x0b, 0x11, 0xfa, 0x57, 0xca, 0xfd, 0x0b, 0x1a, 0xdf, 0x56, 0x91, - 0xf9, 0x3e, 0xc6, 0x4f, 0xa0, 0x45, 0xc9, 0xbb, 0x45, 0x43, 0x82, 0x07, 0xff, 0x67, 0x8c, 0x17, - 0x15, 0x78, 0x9e, 0x56, 0xe8, 0x72, 0x43, 0xd6, 0x14, 0xf3, 0x84, 0x93, 0xe2, 0x38, 0x33, 0xa8, - 0xa4, 0x70, 0x2d, 0xfd, 0x16, 0x02, 0xc7, 0xbc, 0x33, 0xa2, 0x71, 0xf7, 0x13, 0x7e, 0xe8, 0x57, - 0xd9, 0xb5, 0x00, 0x96, 0xdc, 0x15, 0xd0, 0x92, 0xa6, 0x3b, 0x0a, 0x7c, 0xe2, 0x39, 0xbb, 0x15, - 0xf8, 0x2d, 0x98, 0x16, 0x57, 0x10, 0xe8, 0x2a, 0x37, 0x99, 0x07, 0xf9, 0xbf, 0x01, 0x53, 0x2d, - 0x1f, 0x0f, 0xa3, 0x9b, 0x80, 0xd5, 0x9b, 0xaa, 0x51, 0xa6, 0xa8, 0xdd, 0xdc, 0xf9, 0xb7, 0xf6, - 0x10, 0xef, 0xc0, 0x4c, 0x6b, 0xd8, 0x67, 0xe5, 0xd7, 0x75, 0x2f, 0xf0, 0xa5, 0x53, 0x41, 0x92, - 0x16, 0x4f, 0x05, 0x45, 0xa9, 0x70, 0x87, 0xe0, 0xee, 0xa9, 0xdf, 0x25, 0x1f, 0x64, 0xee, 0x64, - 0x32, 0x03, 0x77, 0x72, 0x95, 0x7c, 0x7c, 0x9e, 0xc7, 0x9d, 0xce, 0x31, 0xa1, 0x87, 0xa3, 0x3a, - 0x19, 0x49, 0xc7, 0xa7, 0x2c, 0x2e, 0x1e, 0x9f, 0xaa, 0x56, 0xde, 0x23, 0x42, 0xd3, 0xa2, 0x38, - 0xa4, 0xed, 0x48, 0xda, 0x23, 0xba, 0xaa, 0xb8, 0x47, 0x8a, 0x16, 0x52, 0x85, 0x37, 0xab, 0x5c, - 0xd4, 0xe0, 0x7a, 0xd9, 0x3f, 0xd3, 0xa2, 0x8d, 0xd2, 0xd7, 0x62, 0x36, 0x1b, 0x2f, 0x2a, 0xf0, - 0x04, 0xcc, 0x1f, 0xf5, 0xa2, 0x21, 0xb3, 0x38, 0x6f, 0x34, 0xda, 0x38, 0x62, 0x65, 0xde, 0x60, - 0x38, 0xdc, 0xcb, 0xa4, 0x4c, 0x94, 0x97, 0x79, 0x45, 0x8d, 0x68, 0xdd, 0x21, 0x98, 0xad, 0x61, - 0xbf, 0x43, 0xfa, 0x59, 0x9c, 0x67, 0xdc, 0x3a, 0x91, 0xc9, 0x51, 0x56, 0x0b, 0x72, 0x11, 0xa3, - 0x0d, 0x9e, 0xbd, 0x8d, 0x28, 0xbe, 0xec, 0xf7, 0x22, 0xd6, 0x9c, 0x5a, 0xe0, 0xfb, 0xa4, 0x43, - 0xd9, 0x42, 0xf1, 0xb8, 0x93, 0x59, 0x99, 0x05, 0x86, 0xdc, 0xe6, 0xbc, 0xd1, 0x38, 0xc2, 0x14, - 0x37, 0x70, 0xe7, 0x96, 0x50, 0xbe, 0x11, 0xbf, 0x04, 0x93, 0xa7, 0xd1, 0x9b, 0x7e, 0x2f, 0x26, - 0x70, 0x89, 0x9b, 0xa4, 0xbf, 0xf2, 0x2b, 0xaa, 0x22, 0x14, 0xad, 0x39, 0x01, 0x33, 0xc9, 0x71, - 0x4b, 0x70, 0x97, 0x84, 0xd2, 0x5a, 0x95, 0xa4, 0xc5, 0xb5, 0xaa, 0x28, 0xd3, 0x4b, 0x74, 0x1d, - 0xcc, 0x1d, 0x13, 0xda, 0xa2, 0x41, 0x48, 0x5a, 0xf8, 0x8a, 0xb4, 0x5b, 0xf2, 0xc2, 0xcf, 0xa5, - 0x86, 0x85, 0x2f, 0x2b, 0xd3, 0x60, 0x6d, 0x30, 0x7f, 0x4c, 0x28, 0x3b, 0x3f, 0x7f, 0xc4, 0x3d, - 0x7a, 0xea, 0x5f, 0x05, 0xd2, 0xcd, 0x55, 0xd3, 0x14, 0x6f, 0xae, 0x05, 0x83, 0x24, 0xea, 0xe1, - 0xe7, 0xff, 0xfc, 0xcb, 0x54, 0xe5, 0x6f, 0x1f, 0x37, 0x2b, 0xff, 0xf8, 0xb8, 0x59, 0xf9, 0xd7, - 0xc7, 0xcd, 0xca, 0x9f, 0xff, 0xbd, 0xe9, 0x80, 0x85, 0x20, 0xbc, 0xe6, 0xcb, 0x68, 0xef, 0x36, - 0xe6, 0xff, 0x8b, 0xe0, 0x72, 0x82, 0xff, 0xf9, 0xe2, 0x7f, 0x01, 0x00, 0x00, 0xff, 0xff, 0x80, - 0x5c, 0x8a, 0x7a, 0xcd, 0x20, 0x00, 0x00, + // 2200 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x94, 0x9a, 0xdb, 0x52, 0x1c, 0xb9, + 0xdd, 0xc0, 0x7b, 0xcc, 0x98, 0x83, 0x30, 0x27, 0x01, 0xa6, 0xd1, 0x72, 0xec, 0x65, 0xf7, 0xa3, + 0xbe, 0x54, 0x11, 0xe3, 0x75, 0xd6, 0xd9, 0x43, 0x36, 0x98, 0xc1, 0x0b, 0x78, 0xa0, 0x76, 0x6a, + 0x66, 0x36, 0xeb, 0x54, 0xa5, 0x8a, 0x12, 0x33, 0x02, 0xa6, 0x98, 0xe9, 0x9e, 0x74, 0x8b, 0xc6, + 0xbc, 0x42, 0x2e, 0x73, 0x91, 0xca, 0x23, 0xe4, 0x01, 0xf2, 0x10, 0xb9, 0xcc, 0x65, 0x2e, 0x53, + 0xce, 0x45, 0x1e, 0x23, 0x29, 0xa9, 0xbb, 0xd5, 0x92, 0x5a, 0xea, 0x21, 0x57, 0xf4, 0xfc, 0x8f, + 0x3a, 0xff, 0xfe, 0x92, 0x0d, 0x9e, 0xd1, 0xde, 0x6d, 0x3c, 0xbc, 0xdc, 0x1b, 0x86, 0x01, 0x0d, + 0xe0, 0x78, 0xf2, 0x0b, 0x2d, 0x74, 0x82, 0x61, 0x18, 0x74, 0x48, 0x14, 0x05, 0x61, 0xa2, 0x42, + 0x33, 0xb7, 0x71, 0x38, 0xec, 0x64, 0x96, 0x68, 0x6a, 0x30, 0x1c, 0xa6, 0x9f, 0x8b, 0x21, 0xbe, + 0xa2, 0x17, 0x11, 0x09, 0x63, 0x12, 0x0a, 0xfd, 0xd2, 0x75, 0x70, 0x1d, 0xf0, 0xcf, 0x9f, 0xb3, + 0xaf, 0x54, 0x3a, 0x17, 0xde, 0x45, 0x94, 0x7f, 0x26, 0x02, 0xef, 0x8f, 0x73, 0x60, 0xe9, 0x10, + 0xd3, 0xce, 0x4d, 0x2d, 0x18, 0x0c, 0xb0, 0xdf, 0x8d, 0x9a, 0xe4, 0xf7, 0x77, 0x24, 0xa2, 0xf0, + 0x00, 0x4c, 0x86, 0xc9, 0x67, 0xe4, 0x56, 0xb6, 0xc6, 0x76, 0xa7, 0x5f, 0xee, 0xec, 0xa5, 0x4d, + 0x35, 0xd9, 0xef, 0xa5, 0x7f, 0x9b, 0xc2, 0x0b, 0x6e, 0x82, 0xe9, 0xf4, 0xfb, 0xa2, 0xd7, 0x8d, + 0xdc, 0x27, 0x5b, 0x63, 0xbb, 0xd5, 0x26, 0x48, 0x45, 0xa7, 0xdd, 0x08, 0xfd, 0x69, 0x16, 0x4c, + 0x64, 0xe9, 0xfe, 0x0f, 0x8c, 0x1d, 0x13, 0xea, 0x56, 0xb6, 0x2a, 0xbb, 0xd3, 0x2f, 0x17, 0xf7, + 0xb2, 0xbe, 0x1e, 0x13, 0x9a, 0x5a, 0x9c, 0x38, 0x4d, 0x66, 0x01, 0xff, 0x1f, 0x54, 0x5b, 0x1d, + 0xec, 0xbb, 0x4f, 0xb8, 0xe5, 0x92, 0xb0, 0x64, 0xc2, 0xdc, 0x94, 0xdb, 0xc0, 0x2f, 0xc1, 0x64, + 0x23, 0x24, 0xf7, 0x61, 0x8f, 0x12, 0x77, 0x8c, 0xdb, 0xbb, 0xc2, 0x3e, 0x53, 0xe4, 0x3e, 0xc2, + 0x16, 0xbe, 0x00, 0xe3, 0xac, 0x7b, 0x3d, 0xea, 0x56, 0xb9, 0xd7, 0x73, 0xe1, 0x95, 0x88, 0x73, + 0x9f, 0xd4, 0x8e, 0x79, 0x9c, 0x0e, 0x86, 0x41, 0x48, 0xdd, 0xa7, 0x9a, 0x47, 0x22, 0x96, 0x3c, + 0x12, 0x01, 0xfc, 0x02, 0x4c, 0xd4, 0xfa, 0x04, 0xfb, 0x77, 0x43, 0x77, 0x9c, 0xbb, 0xac, 0xe4, + 0x49, 0x12, 0x79, 0xee, 0x93, 0x59, 0xb2, 0x0e, 0xf1, 0xc1, 0x67, 0x43, 0x35, 0xa1, 0x75, 0x28, + 0x53, 0x48, 0x1d, 0xca, 0x44, 0xf0, 0x2d, 0x98, 0xe1, 0xdf, 0xcd, 0xa0, 0xdf, 0xbf, 0xc4, 0x9d, + 0x5b, 0x77, 0x92, 0x3b, 0xaf, 0xab, 0xce, 0x99, 0x36, 0x8f, 0xa0, 0x7a, 0xb1, 0xf4, 0x6c, 0x5c, + 0xcf, 0x82, 0xce, 0xad, 0x3b, 0xa5, 0xa5, 0xcf, 0x14, 0x52, 0xfa, 0x4c, 0x04, 0x7f, 0x0d, 0xa6, + 0x9b, 0x24, 0x0a, 0xfa, 0x31, 0xe1, 0xae, 0x80, 0xbb, 0x7e, 0x22, 0x5c, 0x25, 0x5d, 0xee, 0x2d, + 0x7b, 0xc0, 0x1d, 0xf0, 0xe4, 0xb8, 0xe6, 0x4e, 0x73, 0x3f, 0x98, 0x2f, 0x8e, 0x5a, 0x6e, 0xfe, + 0xe4, 0xb8, 0xc6, 0xd2, 0x1c, 0x91, 0x3e, 0xa1, 0xa4, 0x89, 0xfd, 0x6b, 0xe2, 0x3e, 0xd3, 0xd2, + 0x48, 0x3a, 0x29, 0x8d, 0x24, 0x65, 0xb3, 0xd8, 0xc4, 0xf7, 0x6c, 0x70, 0x67, 0xb4, 0x59, 0x4c, + 0xc4, 0xd2, 0x2c, 0x26, 0x02, 0xde, 0x33, 0x7c, 0x2f, 0xe6, 0x64, 0x56, 0xef, 0x59, 0xae, 0x93, + 0x7b, 0x96, 0x4b, 0xd3, 0x94, 0x8d, 0x3b, 0xea, 0xce, 0x15, 0x53, 0x36, 0xee, 0xb4, 0x94, 0x8d, + 0x3b, 0x25, 0x25, 0x73, 0x9b, 0xb7, 0xa4, 0x54, 0x7c, 0x65, 0x0f, 0xf8, 0x15, 0x98, 0x6a, 0xe2, + 0xfb, 0xa4, 0xdf, 0xee, 0x02, 0x77, 0x5f, 0x95, 0xdd, 0xd3, 0x11, 0x11, 0xce, 0xb9, 0x35, 0x3c, + 0x01, 0xb3, 0x59, 0xa4, 0xd4, 0x1f, 0x72, 0xff, 0x8d, 0x42, 0x7a, 0x3d, 0x88, 0xe6, 0xc7, 0x96, + 0x7f, 0x13, 0xdf, 0xf3, 0x9d, 0xbc, 0xa8, 0x2d, 0xff, 0x54, 0x2e, 0x2d, 0xff, 0x54, 0x92, 0xa6, + 0x97, 0xe7, 0x78, 0xa9, 0x98, 0xde, 0x38, 0xcd, 0x9a, 0x1f, 0x3c, 0x04, 0xcf, 0xb2, 0x06, 0xf1, + 0x36, 0x2c, 0xf3, 0x38, 0x6b, 0x85, 0x6e, 0xa8, 0x0d, 0x51, 0x7c, 0xe0, 0x2f, 0xc1, 0x74, 0x2d, + 0x3f, 0xa5, 0xdd, 0xe7, 0xe9, 0x81, 0x24, 0x9f, 0xdc, 0xd2, 0x0c, 0x48, 0xa6, 0xb0, 0x0e, 0xe6, + 0x1a, 0x24, 0x8a, 0x7a, 0x83, 0x5e, 0x44, 0x7b, 0x1d, 0xbe, 0x27, 0x56, 0xb8, 0xf7, 0x66, 0x7e, + 0x3c, 0xa9, 0xfa, 0x3c, 0x90, 0xee, 0x09, 0x7f, 0x02, 0x8b, 0x92, 0x48, 0xec, 0x70, 0x97, 0x07, + 0xfc, 0xd4, 0x14, 0xb0, 0xb8, 0xcf, 0x4d, 0x11, 0xd8, 0x68, 0xd7, 0x6e, 0x48, 0xe7, 0xb6, 0xfd, + 0xc1, 0x6f, 0x51, 0x4c, 0xef, 0x22, 0x77, 0x55, 0x1b, 0x6d, 0x55, 0x2d, 0x8d, 0xb6, 0xaa, 0x60, + 0xa3, 0xdd, 0xfe, 0xe0, 0x9f, 0x10, 0x1c, 0xd2, 0x43, 0x82, 0xa9, 0x8b, 0xb4, 0xd1, 0x96, 0x95, + 0xd2, 0x68, 0xcb, 0x62, 0xd6, 0x4d, 0x1e, 0xb5, 0x45, 0x3a, 0x81, 0xdf, 0xc5, 0xe1, 0x03, 0xeb, + 0x7c, 0xe4, 0x6e, 0x6b, 0xdd, 0x34, 0xd8, 0x48, 0xdd, 0x34, 0x68, 0xd3, 0x45, 0x25, 0xcf, 0xa4, + 0x57, 0x5c, 0x54, 0x92, 0x5a, 0x5d, 0x54, 0xf2, 0xb4, 0x7e, 0x0d, 0x9e, 0xbe, 0x1d, 0x0c, 0xe9, + 0x83, 0xfb, 0x9f, 0x04, 0x63, 0xdb, 0x46, 0x60, 0x72, 0x93, 0x3c, 0x48, 0xe2, 0x72, 0xf8, 0x14, + 0x8c, 0x75, 0x06, 0xdd, 0x77, 0xd5, 0xc9, 0x4f, 0xe6, 0xb7, 0xbd, 0x7f, 0xcf, 0x81, 0x65, 0x0d, + 0xb2, 0xd1, 0x30, 0xf0, 0x23, 0x02, 0x8f, 0xc0, 0x54, 0x98, 0x7e, 0x67, 0x58, 0xfe, 0xdc, 0x82, + 0xe5, 0xc4, 0x6a, 0x2f, 0xfb, 0x68, 0xe6, 0x8e, 0x23, 0xc9, 0x0c, 0x5f, 0x80, 0x25, 0x1a, 0x62, + 0x3f, 0x62, 0xa4, 0xba, 0xe8, 0xe3, 0x07, 0x12, 0x5e, 0xf4, 0x03, 0xdc, 0xe5, 0x10, 0xad, 0x36, + 0xa1, 0xd0, 0x9d, 0x31, 0xd5, 0x59, 0x80, 0xbb, 0xe8, 0xaf, 0xb3, 0x60, 0x52, 0xb4, 0x72, 0x57, + 0x86, 0xf9, 0x92, 0x0a, 0xf3, 0xc4, 0x24, 0xa3, 0xf9, 0xcf, 0x14, 0x9a, 0x2f, 0x6b, 0x34, 0x17, + 0xb6, 0x09, 0xce, 0x5f, 0x17, 0x70, 0xbe, 0x6a, 0xc0, 0xb9, 0x70, 0xca, 0x79, 0xbe, 0xaf, 0xf1, + 0x7c, 0xa5, 0xc0, 0x73, 0xe1, 0x94, 0x01, 0x7d, 0x5f, 0x03, 0xfa, 0x4a, 0x01, 0xe8, 0xb9, 0x4b, + 0x4a, 0xf4, 0x57, 0x3a, 0xd1, 0xdd, 0x22, 0xd1, 0x85, 0x93, 0x40, 0xfa, 0xeb, 0x02, 0xd2, 0x57, + 0x0d, 0x48, 0xcf, 0x3b, 0x25, 0xc8, 0xf1, 0xbd, 0x99, 0xe9, 0x1b, 0x36, 0xa6, 0x8b, 0x10, 0x1a, + 0xd4, 0x5f, 0x17, 0xa0, 0xbe, 0x6a, 0x80, 0x7a, 0xde, 0x00, 0x41, 0xf5, 0x03, 0x13, 0xd5, 0xd7, + 0xcc, 0x54, 0x17, 0xee, 0x0a, 0xd6, 0x3f, 0x93, 0xb0, 0xbe, 0xa8, 0x60, 0x5d, 0xd8, 0x33, 0xae, + 0x1f, 0x98, 0xb8, 0xbe, 0x66, 0xe6, 0x7a, 0x9e, 0x48, 0x3e, 0xee, 0xf7, 0x35, 0xb0, 0xaf, 0x14, + 0xc0, 0x9e, 0xcf, 0x66, 0x4a, 0xf6, 0x03, 0x13, 0xd9, 0xd7, 0xcc, 0x64, 0x97, 0x7a, 0x27, 0xa1, + 0x7d, 0x5f, 0x43, 0xfb, 0x4a, 0x01, 0xed, 0x4a, 0x52, 0x86, 0xe6, 0x03, 0x13, 0xdb, 0xd7, 0xcc, + 0x6c, 0x2f, 0x26, 0x65, 0x11, 0xbe, 0x2e, 0xc2, 0x1d, 0x99, 0xe0, 0x2e, 0xbc, 0x25, 0xba, 0x9f, + 0x5a, 0xe8, 0xbe, 0x69, 0xa5, 0xbb, 0x88, 0xa2, 0xe3, 0xfd, 0x95, 0x8e, 0x77, 0xb7, 0x88, 0xf7, + 0x7c, 0x2f, 0x64, 0x7c, 0x3f, 0xb5, 0xf0, 0x7d, 0xd3, 0xca, 0x77, 0xa5, 0x01, 0xf2, 0x8c, 0xd7, + 0x8c, 0x80, 0x5f, 0xb7, 0x00, 0x5e, 0x84, 0x51, 0x09, 0xff, 0x95, 0x89, 0xf0, 0xcb, 0x1a, 0xe1, + 0xf3, 0x79, 0x90, 0x59, 0x70, 0x66, 0x43, 0xfc, 0x96, 0x1d, 0xf1, 0x22, 0x52, 0x81, 0xf1, 0xef, + 0xcb, 0x18, 0xbf, 0x53, 0xce, 0x78, 0x11, 0xd5, 0x08, 0xf9, 0x53, 0x0b, 0xe4, 0x37, 0xad, 0x90, + 0xcf, 0x87, 0x5c, 0xa3, 0x7c, 0xcd, 0x48, 0xf9, 0x75, 0x0b, 0xe5, 0xf3, 0x21, 0x57, 0x30, 0xff, + 0xbe, 0x0c, 0xf3, 0x3b, 0xe5, 0x98, 0xcf, 0x7b, 0x6a, 0xe2, 0xfc, 0xa9, 0x85, 0xf3, 0x9b, 0x56, + 0xce, 0x2b, 0x8b, 0x4b, 0x9e, 0xdc, 0x6f, 0x34, 0xd0, 0x7b, 0x65, 0xa0, 0x17, 0x51, 0x4c, 0xa4, + 0x3f, 0x04, 0xf3, 0xc9, 0x69, 0x8c, 0xaf, 0xe8, 0x39, 0x89, 0x22, 0x7c, 0x4d, 0xe0, 0x1e, 0xa8, + 0x0e, 0xa2, 0xeb, 0x0c, 0xef, 0x68, 0x4f, 0xbd, 0xdd, 0x4b, 0x96, 0x4d, 0x6e, 0xe7, 0xb5, 0xc0, + 0xaa, 0xb5, 0xc0, 0x80, 0x2b, 0x60, 0x82, 0x26, 0x9c, 0xe7, 0x38, 0xae, 0x36, 0xc7, 0x29, 0x67, + 0x3c, 0x5c, 0x07, 0xa0, 0x4b, 0xfa, 0xf8, 0xe1, 0x82, 0xf6, 0x06, 0x84, 0xf3, 0xb7, 0xda, 0x9c, + 0xe2, 0x92, 0x76, 0x6f, 0x40, 0xbc, 0x5f, 0x00, 0x64, 0xef, 0x8c, 0x35, 0xea, 0xcb, 0x3f, 0x6c, + 0x81, 0x6a, 0xbb, 0x77, 0x1b, 0xc3, 0x57, 0xe0, 0x69, 0x3d, 0x66, 0xa7, 0xa0, 0xe9, 0x2e, 0x8f, + 0x8c, 0x35, 0x81, 0xe7, 0xc0, 0xd7, 0x60, 0xbc, 0x1e, 0xf3, 0xad, 0x67, 0xbc, 0xd8, 0x23, 0x73, + 0x81, 0xe0, 0x39, 0xb0, 0x06, 0x40, 0x3d, 0x16, 0xbc, 0xb7, 0xde, 0xf2, 0x91, 0xbd, 0x60, 0xf0, + 0x1c, 0xf8, 0x1e, 0x2c, 0xd4, 0x63, 0x7d, 0xeb, 0x8d, 0x2a, 0xc9, 0xd1, 0xc8, 0x0d, 0xed, 0x39, + 0xb0, 0x0b, 0x96, 0xeb, 0xbf, 0x31, 0x6d, 0xbf, 0xc7, 0xd4, 0xe7, 0xe8, 0x51, 0x1b, 0xdc, 0x73, + 0xe0, 0x0f, 0x60, 0xb6, 0x1e, 0x2b, 0xbb, 0xa9, 0xb4, 0xc4, 0x46, 0xe5, 0x5b, 0xd3, 0x73, 0xe0, + 0x8f, 0x60, 0xbe, 0x1e, 0x6b, 0xbb, 0x7c, 0x44, 0xf5, 0x8f, 0x46, 0x1d, 0x1c, 0xe9, 0x68, 0xc4, + 0xa6, 0x2d, 0xfa, 0x98, 0x32, 0x1e, 0x3d, 0xea, 0x10, 0xf0, 0x1c, 0xf8, 0x2b, 0x30, 0x59, 0x8f, + 0xd3, 0x6a, 0xce, 0xf2, 0x80, 0x83, 0x6c, 0x85, 0x60, 0xe6, 0x9e, 0x56, 0x76, 0x96, 0xd7, 0x1c, + 0x64, 0x2b, 0x0a, 0x3d, 0x07, 0x1e, 0x80, 0xa9, 0x7a, 0x9c, 0xd5, 0x78, 0xb6, 0xa7, 0x1d, 0x64, + 0xad, 0x10, 0xb3, 0x25, 0x2d, 0x8a, 0x09, 0xeb, 0x3b, 0x0f, 0xb2, 0x97, 0x8b, 0x9e, 0x03, 0x9b, + 0x60, 0x2e, 0x0d, 0x22, 0x96, 0x5c, 0xf9, 0xa3, 0x0f, 0x1a, 0x51, 0x3f, 0x66, 0x0d, 0x13, 0x55, + 0xa0, 0xf5, 0x05, 0x08, 0xd9, 0xcb, 0x48, 0xcf, 0x81, 0x67, 0x60, 0xa6, 0x1e, 0xcb, 0xb5, 0x60, + 0xd9, 0x73, 0x10, 0x2a, 0xad, 0x2a, 0x3d, 0x07, 0xee, 0x83, 0x6a, 0x3d, 0x3e, 0xae, 0x41, 0xc3, + 0xdb, 0x10, 0x32, 0x15, 0x96, 0x59, 0x03, 0xe4, 0x8a, 0xa1, 0xec, 0xa1, 0x08, 0x95, 0x56, 0x9b, + 0x9e, 0x03, 0xbf, 0xc9, 0x0a, 0x4c, 0x68, 0x79, 0x33, 0x42, 0xb6, 0x92, 0xd3, 0x73, 0xe0, 0x3b, + 0xa5, 0xd4, 0x84, 0x65, 0xcf, 0x47, 0xa8, 0xb4, 0x02, 0x15, 0x0d, 0x61, 0x95, 0xa0, 0xe5, 0x25, + 0x09, 0xd9, 0xca, 0x50, 0xb5, 0x21, 0x2c, 0x42, 0xd9, 0xa3, 0x12, 0x2a, 0xad, 0x4a, 0x3d, 0x87, + 0xdd, 0x54, 0xf3, 0xca, 0xd2, 0xfe, 0xbe, 0x84, 0x4a, 0xaa, 0x53, 0xcf, 0x81, 0x2d, 0xbd, 0x24, + 0x85, 0x23, 0x9e, 0x9a, 0xd0, 0xa8, 0x62, 0xd5, 0x73, 0xe0, 0x77, 0xa2, 0x38, 0x85, 0xb6, 0x57, + 0x27, 0x64, 0xad, 0x57, 0x45, 0xa3, 0xe4, 0xb5, 0x33, 0xe2, 0x01, 0x0a, 0x8d, 0x2a, 0x60, 0x3d, + 0x07, 0x9e, 0xab, 0x05, 0x2b, 0x2c, 0x7d, 0x8b, 0x42, 0xe5, 0x85, 0xac, 0x08, 0x77, 0x4c, 0x68, + 0x9d, 0x3c, 0xb4, 0xdb, 0x67, 0x6a, 0x38, 0x21, 0x36, 0x86, 0x93, 0xb4, 0x22, 0xdc, 0xf7, 0x60, + 0x81, 0xd7, 0x40, 0x83, 0x21, 0x0e, 0xc9, 0x1b, 0xbf, 0xdb, 0xba, 0xc7, 0x43, 0x75, 0x85, 0xd5, + 0xde, 0xb4, 0x8c, 0x2b, 0x8c, 0xcb, 0xb5, 0x15, 0xc6, 0x0f, 0xee, 0xe8, 0x6e, 0xa0, 0xae, 0xb0, + 0x4c, 0x6a, 0x5c, 0x61, 0xb9, 0x52, 0xc4, 0xba, 0x00, 0xf0, 0x47, 0x3f, 0xc2, 0x57, 0xe4, 0x88, + 0x44, 0x34, 0x0c, 0x1e, 0x92, 0xa9, 0xf0, 0x84, 0x57, 0x51, 0x99, 0x45, 0xfe, 0xb4, 0xd4, 0x46, + 0x24, 0x20, 0x60, 0xa9, 0x49, 0xae, 0x7b, 0x11, 0x25, 0x21, 0x3b, 0x6f, 0x7e, 0xb8, 0x4c, 0x8a, + 0x30, 0xb8, 0x23, 0x9d, 0x46, 0x45, 0x75, 0x96, 0xe4, 0xb3, 0x11, 0x56, 0x22, 0xcd, 0xef, 0xc0, + 0x02, 0xef, 0x9d, 0x92, 0x63, 0x5b, 0xa5, 0x9c, 0x29, 0x81, 0x57, 0x66, 0x22, 0x8f, 0x52, 0x93, + 0x0c, 0x82, 0xe4, 0xc8, 0x14, 0xe1, 0x3d, 0xa9, 0x71, 0xba, 0xb2, 0x38, 0x4a, 0x26, 0x1b, 0x91, + 0xe0, 0xb7, 0x60, 0xbe, 0x71, 0xf3, 0x10, 0xf5, 0x3a, 0xb8, 0x2f, 0xa0, 0x20, 0xd5, 0x44, 0x9a, + 0x2a, 0x0b, 0xbe, 0x5d, 0x62, 0x21, 0x42, 0x7f, 0xab, 0xdc, 0xbf, 0xa0, 0xf1, 0x6d, 0x15, 0x99, + 0xef, 0x63, 0xfc, 0x04, 0x5a, 0x90, 0xbc, 0x5b, 0x34, 0x24, 0x78, 0xf0, 0x3f, 0xc6, 0x78, 0x51, + 0x81, 0xe7, 0x69, 0x85, 0x2e, 0x37, 0x64, 0x55, 0x31, 0x4f, 0x38, 0x29, 0x8e, 0x33, 0x83, 0x4a, + 0x0a, 0xd7, 0xd2, 0x6f, 0x21, 0x70, 0xc4, 0x3b, 0x23, 0x1a, 0x75, 0x3f, 0xe1, 0x87, 0x7e, 0x95, + 0x5d, 0x0b, 0x60, 0xc9, 0x5d, 0x01, 0x2d, 0x6a, 0xba, 0xa3, 0xc0, 0x27, 0x9e, 0xb3, 0x5b, 0x81, + 0xdf, 0x81, 0x29, 0x71, 0x05, 0x81, 0xae, 0x72, 0x93, 0x79, 0x94, 0xff, 0x1b, 0x30, 0xd9, 0xf2, + 0xf1, 0x30, 0xba, 0x09, 0x58, 0xbd, 0xa9, 0x1a, 0x65, 0x8a, 0xda, 0xcd, 0x9d, 0x7f, 0x6b, 0x0f, + 0xf1, 0x0e, 0x4c, 0xb7, 0x86, 0x7d, 0x56, 0x7e, 0x5d, 0xf7, 0x02, 0x5f, 0x3a, 0x15, 0x24, 0x69, + 0xf1, 0x54, 0x50, 0x94, 0x0a, 0x77, 0x08, 0xee, 0x9e, 0xfa, 0x5d, 0xf2, 0x41, 0xe6, 0x4e, 0x26, + 0x33, 0x70, 0x27, 0x57, 0xc9, 0xc7, 0xe7, 0x79, 0xdc, 0xe9, 0x1c, 0x13, 0x7a, 0xf8, 0x50, 0x27, + 0x0f, 0xd2, 0xf1, 0x29, 0x8b, 0x8b, 0xc7, 0xa7, 0xaa, 0x95, 0xf7, 0x88, 0xd0, 0xb4, 0x28, 0x0e, + 0x69, 0x3b, 0x92, 0xf6, 0x88, 0xae, 0x2a, 0xee, 0x91, 0xa2, 0x85, 0x54, 0xe1, 0xcd, 0x28, 0x17, + 0x35, 0xb8, 0x56, 0xf6, 0xcf, 0xb4, 0x68, 0xbd, 0xf4, 0xb5, 0x98, 0xcd, 0xc6, 0x8b, 0x0a, 0x3c, + 0x01, 0x73, 0x47, 0xbd, 0x68, 0xc8, 0x2c, 0xce, 0x1b, 0x8d, 0x36, 0x8e, 0x58, 0x99, 0x37, 0x18, + 0x0e, 0xf7, 0x32, 0x29, 0x13, 0xe5, 0x65, 0x5e, 0x51, 0x23, 0x5a, 0x77, 0x08, 0x66, 0x6a, 0xd8, + 0xef, 0x90, 0x7e, 0x16, 0xe7, 0x39, 0xb7, 0x4e, 0x64, 0x72, 0x94, 0x95, 0x82, 0x5c, 0xc4, 0x68, + 0x83, 0xe7, 0x6f, 0x23, 0x8a, 0x2f, 0xfb, 0xbd, 0x88, 0x35, 0xa7, 0x16, 0xf8, 0x3e, 0xe9, 0x50, + 0xb6, 0x50, 0x3c, 0xee, 0x64, 0x56, 0x66, 0x81, 0x21, 0xb7, 0x39, 0x6f, 0x34, 0x8e, 0x30, 0xc5, + 0x0d, 0xdc, 0xb9, 0x25, 0x94, 0x6f, 0xc4, 0x2f, 0xc1, 0xc4, 0x69, 0xf4, 0xa6, 0xdf, 0x8b, 0x09, + 0x5c, 0xe4, 0x26, 0xe9, 0xaf, 0xfc, 0x8a, 0xaa, 0x08, 0x45, 0x6b, 0x4e, 0xc0, 0x74, 0x72, 0xdc, + 0x12, 0xdc, 0x25, 0xa1, 0xb4, 0x56, 0x25, 0x69, 0x71, 0xad, 0x2a, 0xca, 0xf4, 0x12, 0x5d, 0x07, + 0xb3, 0xc7, 0x84, 0xb6, 0x68, 0x10, 0x92, 0x16, 0xbe, 0x22, 0xed, 0x96, 0xbc, 0xf0, 0x73, 0xa9, + 0x61, 0xe1, 0xcb, 0xca, 0x34, 0x58, 0x1b, 0xcc, 0x1d, 0x13, 0xca, 0xce, 0xcf, 0x9f, 0x70, 0x8f, + 0x9e, 0xfa, 0x57, 0x81, 0x74, 0x73, 0xd5, 0x34, 0xc5, 0x9b, 0x6b, 0xc1, 0x20, 0x8d, 0xfa, 0x2d, + 0x98, 0xe0, 0xcc, 0xef, 0x50, 0xa8, 0x5c, 0x95, 0x98, 0xc4, 0x70, 0x87, 0xc9, 0x14, 0x89, 0xf7, + 0xe1, 0xe7, 0xff, 0xf8, 0xcb, 0x64, 0xe5, 0x6f, 0x1f, 0x37, 0x2a, 0x7f, 0xff, 0xb8, 0x51, 0xf9, + 0xe7, 0xc7, 0x8d, 0xca, 0x9f, 0xff, 0xb5, 0xe1, 0x80, 0xf9, 0x20, 0xbc, 0xe6, 0x8b, 0x70, 0xef, + 0x36, 0xe6, 0xff, 0x07, 0xe1, 0x72, 0x9c, 0xff, 0xf9, 0xe2, 0xbf, 0x01, 0x00, 0x00, 0xff, 0xff, + 0xee, 0xcd, 0x64, 0xb1, 0x0b, 0x21, 0x00, 0x00, } // Reference imports to suppress errors if they are not otherwise used. @@ -1420,6 +1421,11 @@ type TikvClient interface { GetStoreSafeTS(ctx context.Context, in *kvrpcpb.StoreSafeTSRequest, opts ...grpc.CallOption) (*kvrpcpb.StoreSafeTSResponse, error) /// Get the information about lock waiting from TiKV. GetLockWaitInfo(ctx context.Context, in *kvrpcpb.GetLockWaitInfoRequest, opts ...grpc.CallOption) (*kvrpcpb.GetLockWaitInfoResponse, error) + /// Compact a specified key range. This request is not restricted to raft leaders and will not be replicated. + /// It only compacts data on this node. + /// TODO: Currently this RPC is designed to be only compatible with TiFlash. + /// Shall be move out in https://github.com/pingcap/kvproto/issues/912 + Compact(ctx context.Context, in *kvrpcpb.CompactRequest, opts ...grpc.CallOption) (*kvrpcpb.CompactResponse, error) } type tikvClient struct { @@ -2073,6 +2079,15 @@ func (c *tikvClient) GetLockWaitInfo(ctx context.Context, in *kvrpcpb.GetLockWai return out, nil } +func (c *tikvClient) Compact(ctx context.Context, in *kvrpcpb.CompactRequest, opts ...grpc.CallOption) (*kvrpcpb.CompactResponse, error) { + out := new(kvrpcpb.CompactResponse) + err := c.cc.Invoke(ctx, "/tikvpb.Tikv/Compact", in, out, opts...) + if err != nil { + return nil, err + } + return out, nil +} + // TikvServer is the server API for Tikv service. type TikvServer interface { // Commands using a transactional interface. @@ -2149,6 +2164,11 @@ type TikvServer interface { GetStoreSafeTS(context.Context, *kvrpcpb.StoreSafeTSRequest) (*kvrpcpb.StoreSafeTSResponse, error) /// Get the information about lock waiting from TiKV. GetLockWaitInfo(context.Context, *kvrpcpb.GetLockWaitInfoRequest) (*kvrpcpb.GetLockWaitInfoResponse, error) + /// Compact a specified key range. This request is not restricted to raft leaders and will not be replicated. + /// It only compacts data on this node. + /// TODO: Currently this RPC is designed to be only compatible with TiFlash. + /// Shall be move out in https://github.com/pingcap/kvproto/issues/912 + Compact(context.Context, *kvrpcpb.CompactRequest) (*kvrpcpb.CompactResponse, error) } // UnimplementedTikvServer can be embedded to have forward compatible implementations. @@ -2314,6 +2334,9 @@ func (*UnimplementedTikvServer) GetStoreSafeTS(ctx context.Context, req *kvrpcpb func (*UnimplementedTikvServer) GetLockWaitInfo(ctx context.Context, req *kvrpcpb.GetLockWaitInfoRequest) (*kvrpcpb.GetLockWaitInfoResponse, error) { return nil, status.Errorf(codes.Unimplemented, "method GetLockWaitInfo not implemented") } +func (*UnimplementedTikvServer) Compact(ctx context.Context, req *kvrpcpb.CompactRequest) (*kvrpcpb.CompactResponse, error) { + return nil, status.Errorf(codes.Unimplemented, "method Compact not implemented") +} func RegisterTikvServer(s *grpc.Server, srv TikvServer) { s.RegisterService(&_Tikv_serviceDesc, srv) @@ -3314,6 +3337,24 @@ func _Tikv_GetLockWaitInfo_Handler(srv interface{}, ctx context.Context, dec fun return interceptor(ctx, in, info, handler) } +func _Tikv_Compact_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) { + in := new(kvrpcpb.CompactRequest) + if err := dec(in); err != nil { + return nil, err + } + if interceptor == nil { + return srv.(TikvServer).Compact(ctx, in) + } + info := &grpc.UnaryServerInfo{ + Server: srv, + FullMethod: "/tikvpb.Tikv/Compact", + } + handler := func(ctx context.Context, req interface{}) (interface{}, error) { + return srv.(TikvServer).Compact(ctx, req.(*kvrpcpb.CompactRequest)) + } + return interceptor(ctx, in, info, handler) +} + var _Tikv_serviceDesc = grpc.ServiceDesc{ ServiceName: "tikvpb.Tikv", HandlerType: (*TikvServer)(nil), @@ -3502,6 +3543,10 @@ var _Tikv_serviceDesc = grpc.ServiceDesc{ MethodName: "GetLockWaitInfo", Handler: _Tikv_GetLockWaitInfo_Handler, }, + { + MethodName: "Compact", + Handler: _Tikv_Compact_Handler, + }, }, Streams: []grpc.StreamDesc{ { diff --git a/proto/kvrpcpb.proto b/proto/kvrpcpb.proto index 94c5219b3..f9c3bc4d2 100644 --- a/proto/kvrpcpb.proto +++ b/proto/kvrpcpb.proto @@ -1151,3 +1151,53 @@ message RawChecksumResponse { uint64 total_kvs = 4; uint64 total_bytes = 5; } + +message CompactError { + oneof error { + CompactErrorInvalidStartKey err_invalid_start_key = 1; + CompactErrorPhysicalTableNotExist err_physical_table_not_exist = 2; + CompactErrorCompactInProgress err_compact_in_progress = 3; + CompactErrorTooManyPendingTasks err_too_many_pending_tasks = 4; + } +} + +message CompactErrorInvalidStartKey {} + +message CompactErrorPhysicalTableNotExist {} + +message CompactErrorCompactInProgress {} + +message CompactErrorTooManyPendingTasks {} + +message CompactRequest { + // If specified, the compaction will start from this start key. + // If unspecified, the compaction will start from beginning. + // NOTE 1: The start key should be never manually constructed. You should always use a key + // returned in CompactResponse. + // NOTE 2: the compaction range will be always restricted by physical_table_id. + bytes start_key = 1; + + // The physical table that will be compacted. + // + // TODO: this is information that TiKV doesn't need to know. + // See https://github.com/pingcap/kvproto/issues/912 + int64 physical_table_id = 2; + + // The logical table id of the compaction. When receiving parallel requests with the same + // logical table id, err_compact_in_progress will be returned. + // + // TODO: this is information that TiKV doesn't need to know. + // See https://github.com/pingcap/kvproto/issues/912 + int64 logical_table_id = 3; +} + +message CompactResponse { + CompactError error = 1; + + // The compaction is done incrementally. If there are more data to compact, this field + // will be set. The client can request to compact more data according to the `compacted_end_key`. + bool has_remaining = 2; + + bytes compacted_start_key = 3; + bytes compacted_end_key = 4; +} diff --git a/proto/tikvpb.proto b/proto/tikvpb.proto index c3fd6ad3e..dd37fcfaa 100644 --- a/proto/tikvpb.proto +++ b/proto/tikvpb.proto @@ -104,6 +104,12 @@ service Tikv { /// Get the information about lock waiting from TiKV. rpc GetLockWaitInfo(kvrpcpb.GetLockWaitInfoRequest) returns (kvrpcpb.GetLockWaitInfoResponse); + + /// Compact a specified key range. This request is not restricted to raft leaders and will not be replicated. + /// It only compacts data on this node. + /// TODO: Currently this RPC is designed to be only compatible with TiFlash. + /// Shall be move out in https://github.com/pingcap/kvproto/issues/912 + rpc Compact(kvrpcpb.CompactRequest) returns (kvrpcpb.CompactResponse); } message BatchCommandsRequest {