diff --git a/pkg/kvrpcpb/kvrpcpb.pb.go b/pkg/kvrpcpb/kvrpcpb.pb.go index fe8a3b06d..ac2c9ced0 100644 --- a/pkg/kvrpcpb/kvrpcpb.pb.go +++ b/pkg/kvrpcpb/kvrpcpb.pb.go @@ -1901,9 +1901,10 @@ type CheckTxnStatusResponse struct { RegionError *errorpb.Error `protobuf:"bytes,1,opt,name=region_error,json=regionError,proto3" json:"region_error,omitempty"` Error *KeyError `protobuf:"bytes,2,opt,name=error,proto3" json:"error,omitempty"` // Three kinds of transaction status: - // locked: lock_ttl > 0 - // committed: commit_version > 0 - // rollbacked: lock_ttl = 0 && commit_version = 0 + // + // locked: lock_ttl > 0 + // committed: commit_version > 0 + // rollbacked: lock_ttl = 0 && commit_version = 0 LockTtl uint64 `protobuf:"varint,3,opt,name=lock_ttl,json=lockTtl,proto3" json:"lock_ttl,omitempty"` CommitVersion uint64 `protobuf:"varint,4,opt,name=commit_version,json=commitVersion,proto3" json:"commit_version,omitempty"` // The action performed by TiKV (and why if the action is to rollback). @@ -3517,7 +3518,7 @@ type FlashbackToVersionRequest struct { Version uint64 `protobuf:"varint,2,opt,name=version,proto3" json:"version,omitempty"` StartKey []byte `protobuf:"bytes,3,opt,name=start_key,json=startKey,proto3" json:"start_key,omitempty"` EndKey []byte `protobuf:"bytes,4,opt,name=end_key,json=endKey,proto3" json:"end_key,omitempty"` - // The `start_ts`` and `commit_ts` which the newly written MVCC version will use. + // The `start_ts“ and `commit_ts` which the newly written MVCC version will use. // Please make sure the `start_ts` is the same one in `PrepareFlashbackToVersionRequest`. StartTs uint64 `protobuf:"varint,5,opt,name=start_ts,json=startTs,proto3" json:"start_ts,omitempty"` CommitTs uint64 `protobuf:"varint,6,opt,name=commit_ts,json=commitTs,proto3" json:"commit_ts,omitempty"` @@ -9414,6 +9415,7 @@ func (m *RawChecksumResponse) GetTotalBytes() uint64 { type CompactError struct { // Types that are valid to be assigned to Error: + // // *CompactError_ErrInvalidStartKey // *CompactError_ErrPhysicalTableNotExist // *CompactError_ErrCompactInProgress diff --git a/pkg/raft_cmdpb/raft_cmdpb.pb.go b/pkg/raft_cmdpb/raft_cmdpb.pb.go index 787c40ae4..06b963db4 100644 --- a/pkg/raft_cmdpb/raft_cmdpb.pb.go +++ b/pkg/raft_cmdpb/raft_cmdpb.pb.go @@ -1393,10 +1393,15 @@ type SplitRequest struct { // If true, right region derive the origin region_id, // left region use new_region_id. // Will be ignored in batch split, use `BatchSplitRequest::right_derive` instead. - RightDerive bool `protobuf:"varint,4,opt,name=right_derive,json=rightDerive,proto3" json:"right_derive,omitempty"` // Deprecated: Do not use. - XXX_NoUnkeyedLiteral struct{} `json:"-"` - XXX_unrecognized []byte `json:"-"` - XXX_sizecache int32 `json:"-"` + RightDerive bool `protobuf:"varint,4,opt,name=right_derive,json=rightDerive,proto3" json:"right_derive,omitempty"` // Deprecated: Do not use. + // It should be false iff the region split by user key such as split table or create partion table etc, + // the new region's will not share the source region size, so it's region size is zero. + // It should be true iff the region's load reaches the threshold such as size, keys, load check etc, + // the new region's size will share the origin region, so it's region size is half of the source region. + ShareSourceRegionSize bool `protobuf:"varint,5,opt,name=share_source_region_size,json=shareSourceRegionSize,proto3" json:"share_source_region_size,omitempty"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` } func (m *SplitRequest) Reset() { *m = SplitRequest{} } @@ -1461,6 +1466,13 @@ func (m *SplitRequest) GetRightDerive() bool { return false } +func (m *SplitRequest) GetShareSourceRegionSize() bool { + if m != nil { + return m.ShareSourceRegionSize + } + return false +} + type SplitResponse struct { Left *metapb.Region `protobuf:"bytes,1,opt,name=left,proto3" json:"left,omitempty"` Right *metapb.Region `protobuf:"bytes,2,opt,name=right,proto3" json:"right,omitempty"` @@ -1520,10 +1532,15 @@ type BatchSplitRequest struct { Requests []*SplitRequest `protobuf:"bytes,1,rep,name=requests,proto3" json:"requests,omitempty"` // If true, the last region derive the origin region_id, // other regions use new ids. - RightDerive bool `protobuf:"varint,2,opt,name=right_derive,json=rightDerive,proto3" json:"right_derive,omitempty"` - XXX_NoUnkeyedLiteral struct{} `json:"-"` - XXX_unrecognized []byte `json:"-"` - XXX_sizecache int32 `json:"-"` + RightDerive bool `protobuf:"varint,2,opt,name=right_derive,json=rightDerive,proto3" json:"right_derive,omitempty"` + // It should be false iff the region split by user key such as split table or create partion table etc, + // the new region's will not share the source region size, so it's region size is zero. + // It should be true iff the region's load reaches the threshold such as size, keys, load check etc, + // the new region's size will share the origin region, so it's region size is half of the source region. + ShareSourceRegionSize bool `protobuf:"varint,3,opt,name=share_source_region_size,json=shareSourceRegionSize,proto3" json:"share_source_region_size,omitempty"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` } func (m *BatchSplitRequest) Reset() { *m = BatchSplitRequest{} } @@ -1573,6 +1590,13 @@ func (m *BatchSplitRequest) GetRightDerive() bool { return false } +func (m *BatchSplitRequest) GetShareSourceRegionSize() bool { + if m != nil { + return m.ShareSourceRegionSize + } + return false +} + type BatchSplitResponse struct { Regions []*metapb.Region `protobuf:"bytes,1,rep,name=regions,proto3" json:"regions,omitempty"` XXX_NoUnkeyedLiteral struct{} `json:"-"` @@ -3569,168 +3593,170 @@ func init() { func init() { proto.RegisterFile("raft_cmdpb.proto", fileDescriptor_661741b5e7485333) } var fileDescriptor_661741b5e7485333 = []byte{ - // 2570 bytes of a gzipped FileDescriptorProto + // 2607 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x9c, 0x59, 0x5b, 0x73, 0xdb, 0xc6, - 0x15, 0x36, 0x2f, 0xe2, 0xe5, 0xf0, 0x22, 0x68, 0x45, 0x4b, 0x94, 0x9c, 0x48, 0x34, 0xec, 0xb8, - 0xb2, 0xdb, 0x61, 0x1b, 0xb9, 0x71, 0x32, 0x13, 0xd7, 0x4e, 0x2c, 0xc9, 0xb6, 0xea, 0x4b, 0xe5, - 0x95, 0x26, 0x99, 0xb6, 0x93, 0xc1, 0xc0, 0xc0, 0x52, 0xc4, 0x88, 0x04, 0x61, 0x00, 0x94, 0xc2, - 0xc9, 0x4c, 0x9f, 0xfa, 0xd2, 0x7f, 0x90, 0xb7, 0xbe, 0xf6, 0xa7, 0xf4, 0xb1, 0x9d, 0xc9, 0x43, - 0x1f, 0x3b, 0xce, 0x53, 0xfb, 0x0f, 0xfa, 0xd6, 0xd9, 0x1b, 0xb1, 0x0b, 0x80, 0xbe, 0xe4, 0x89, - 0xd8, 0xb3, 0xe7, 0xb6, 0xe7, 0xec, 0xf9, 0xf6, 0xec, 0x12, 0x8c, 0xd0, 0x1e, 0xc4, 0x96, 0x33, - 0x76, 0x83, 0x97, 0xfd, 0x20, 0x9c, 0xc4, 0x13, 0x04, 0x09, 0x65, 0xb3, 0x39, 0x26, 0xb1, 0x2d, - 0x67, 0x36, 0x5b, 0x24, 0x0c, 0x27, 0xa1, 0x3a, 0xb4, 0x07, 0x71, 0x32, 0x3c, 0x3b, 0x0f, 0x03, - 0x67, 0x3e, 0x44, 0xde, 0x38, 0x98, 0x84, 0xb1, 0x15, 0x45, 0x09, 0xcb, 0x72, 0x38, 0x8d, 0x62, - 0xf6, 0xc9, 0x09, 0x66, 0x1f, 0xe0, 0x11, 0x89, 0x31, 0x79, 0x35, 0x25, 0x51, 0x8c, 0xda, 0x50, - 0x74, 0x06, 0xdd, 0x42, 0xaf, 0xb0, 0x53, 0xc7, 0x45, 0x67, 0x80, 0x0c, 0x28, 0x9d, 0x91, 0x59, - 0xb7, 0xd8, 0x2b, 0xec, 0x34, 0x31, 0xfd, 0x34, 0xaf, 0x41, 0x83, 0xf1, 0x47, 0xc1, 0xc4, 0x8f, - 0x08, 0xea, 0xc0, 0xd2, 0xb9, 0x3d, 0x9a, 0x12, 0x26, 0xd3, 0xc4, 0x7c, 0x60, 0xee, 0x03, 0x1c, - 0x4d, 0xdf, 0x5d, 0x69, 0xa2, 0xa5, 0xa4, 0x6a, 0x69, 0x41, 0x83, 0x69, 0xe1, 0xa6, 0xcc, 0x8f, - 0xa1, 0xb5, 0x4f, 0x46, 0x24, 0x26, 0xef, 0xee, 0xac, 0x01, 0x6d, 0x29, 0x22, 0x94, 0x7c, 0x07, - 0x48, 0x50, 0x6c, 0xff, 0x74, 0xa1, 0xa6, 0x2b, 0x50, 0x8f, 0x62, 0x3b, 0x8c, 0xad, 0x44, 0x5f, - 0x8d, 0x11, 0x9e, 0x90, 0x19, 0x5a, 0x87, 0x2a, 0xf1, 0x5d, 0x36, 0xc5, 0xdd, 0xad, 0x10, 0xdf, - 0xa5, 0x13, 0xdb, 0xd0, 0xf0, 0x27, 0xb1, 0x37, 0x98, 0x59, 0x13, 0x7f, 0x34, 0xeb, 0x96, 0x7b, - 0x85, 0x9d, 0x1a, 0x06, 0x4e, 0xfa, 0x9d, 0x3f, 0x9a, 0x99, 0x97, 0x61, 0x55, 0x33, 0x2e, 0x7c, - 0x6a, 0x41, 0xe3, 0xd8, 0xb7, 0x03, 0xe1, 0x8c, 0x79, 0x07, 0x9a, 0x7c, 0x28, 0x42, 0x7c, 0x03, - 0x2a, 0x21, 0x39, 0xf5, 0x26, 0x3e, 0x73, 0xb0, 0xb1, 0xdb, 0xee, 0x8b, 0x2d, 0x81, 0x19, 0x15, - 0x8b, 0x59, 0xf3, 0x19, 0x2c, 0x1f, 0x85, 0xe4, 0x22, 0xf4, 0x92, 0x08, 0x89, 0x88, 0x14, 0x72, - 0x22, 0x5d, 0x54, 0x22, 0x8d, 0x10, 0x94, 0x47, 0x13, 0xe7, 0x4c, 0xac, 0x87, 0x7d, 0x9b, 0x08, - 0x8c, 0x44, 0x9d, 0xf0, 0xf4, 0x73, 0x30, 0x0e, 0xfd, 0x53, 0x12, 0xc5, 0xc7, 0xc7, 0x27, 0xd2, - 0xc6, 0xcf, 0xa0, 0x14, 0x45, 0xb1, 0xf0, 0xed, 0x72, 0x5f, 0xdb, 0x73, 0xc7, 0xc7, 0x27, 0xcf, - 0x48, 0x6c, 0x63, 0xca, 0x61, 0xae, 0xc2, 0x8a, 0x22, 0x2c, 0x34, 0x5a, 0x60, 0x60, 0x62, 0xbb, - 0x87, 0xbe, 0x4b, 0xbe, 0x95, 0x1a, 0x37, 0x80, 0x07, 0xdb, 0x8a, 0x23, 0xa6, 0xb6, 0x8c, 0xab, - 0x6c, 0x7c, 0x12, 0xa1, 0x5f, 0x01, 0x9c, 0x91, 0x99, 0x15, 0xd2, 0xf8, 0x45, 0xdd, 0x62, 0xaf, - 0xb4, 0xd3, 0xd8, 0x5d, 0xe9, 0xcb, 0x6d, 0xff, 0x84, 0xcc, 0x78, 0x64, 0xeb, 0x67, 0xe2, 0x2b, - 0x32, 0xbf, 0x81, 0x15, 0xc5, 0x80, 0x08, 0xe9, 0x87, 0x00, 0x21, 0xb1, 0x5d, 0xcb, 0xa3, 0x54, - 0x61, 0xa3, 0x1e, 0x4a, 0x36, 0x74, 0x13, 0x2a, 0x34, 0x04, 0xc4, 0x65, 0x51, 0x52, 0x2d, 0x3c, - 0x9d, 0x38, 0x67, 0x87, 0xfe, 0x60, 0x82, 0x05, 0x83, 0xf9, 0x63, 0x09, 0xaa, 0xd2, 0xef, 0x3e, - 0xd4, 0x9c, 0xb1, 0x6b, 0xc5, 0xb3, 0x80, 0x97, 0x43, 0x7b, 0x77, 0xb5, 0xaf, 0xd4, 0xf6, 0xde, - 0xd8, 0x3d, 0x99, 0x05, 0x04, 0x57, 0x1d, 0xfe, 0x81, 0x76, 0xa0, 0x74, 0x4a, 0x62, 0x61, 0x63, - 0x4d, 0x65, 0x4d, 0x2a, 0x12, 0x53, 0x16, 0xca, 0x19, 0x4c, 0x63, 0xb6, 0xa3, 0x52, 0x9c, 0x49, - 0x99, 0x61, 0xca, 0x82, 0x3e, 0x86, 0x8a, 0xcb, 0xb6, 0x58, 0x77, 0x89, 0x31, 0x6f, 0xa8, 0xcc, - 0x5a, 0xf9, 0x60, 0xc1, 0x88, 0x7e, 0x0e, 0xe5, 0xc8, 0xb7, 0x83, 0x6e, 0x85, 0x09, 0xac, 0xab, - 0x02, 0xca, 0xb6, 0xc4, 0x8c, 0x09, 0x7d, 0x0a, 0xb5, 0x40, 0xec, 0x8a, 0x6e, 0x95, 0x09, 0x5c, - 0xd1, 0xdc, 0xd1, 0x37, 0x20, 0x9e, 0x33, 0xa3, 0x2f, 0xa1, 0xc9, 0xed, 0xf1, 0xe4, 0x75, 0x6b, - 0x4c, 0x78, 0x2b, 0xc7, 0x3d, 0xa5, 0x30, 0x71, 0xc3, 0x4d, 0x68, 0xe8, 0x73, 0x00, 0x8f, 0x6d, - 0x20, 0xba, 0xbb, 0xba, 0x75, 0xa6, 0xe0, 0x03, 0x55, 0x41, 0x7a, 0x6f, 0xe2, 0x3a, 0xe7, 0x3f, - 0x8e, 0x62, 0x2a, 0xac, 0xa4, 0x1c, 0xb2, 0xc2, 0xe9, 0x6d, 0xa8, 0x6c, 0x08, 0xf3, 0xbf, 0x25, - 0xa8, 0xcd, 0x37, 0xcf, 0xfb, 0xa6, 0xf9, 0xa6, 0x9a, 0xe6, 0xf5, 0x4c, 0x9a, 0xb9, 0x56, 0x9e, - 0xe7, 0x9b, 0x6a, 0x9e, 0xd7, 0x33, 0x79, 0x96, 0xac, 0x34, 0xd1, 0xbb, 0xa9, 0x44, 0x6f, 0xe6, - 0x25, 0x5a, 0x08, 0xc8, 0x4c, 0xff, 0x42, 0xcb, 0x74, 0x37, 0x9b, 0x69, 0xc1, 0xcf, 0x53, 0xfd, - 0x59, 0x26, 0xd5, 0x1f, 0xe4, 0xa7, 0x5a, 0x48, 0x25, 0xb9, 0xfe, 0x02, 0x68, 0xde, 0x52, 0xa9, - 0xde, 0x5e, 0x98, 0x6a, 0x21, 0x0f, 0x4c, 0x86, 0xa7, 0xfa, 0x6e, 0x4e, 0xaa, 0x3f, 0x5c, 0x90, - 0x6a, 0x21, 0xae, 0xe4, 0xfa, 0x6e, 0x4e, 0xae, 0x3f, 0x5c, 0x90, 0x6b, 0x29, 0x9d, 0x24, 0x7b, - 0x02, 0x2b, 0x7b, 0x43, 0xea, 0xc5, 0x11, 0x21, 0xa1, 0xac, 0xed, 0xcf, 0xa0, 0xe1, 0x30, 0xa2, - 0x9a, 0xf7, 0xf5, 0xbe, 0x3c, 0x7f, 0xf7, 0x26, 0xfe, 0x80, 0x0b, 0xb1, 0xdc, 0x83, 0x33, 0xff, - 0x46, 0x3d, 0x28, 0x07, 0x84, 0x84, 0x22, 0xff, 0x4d, 0x09, 0xde, 0x4c, 0x39, 0x9b, 0x31, 0xef, - 0x02, 0x52, 0x0d, 0xbe, 0x27, 0xec, 0x3f, 0x87, 0xd5, 0x44, 0xfa, 0xab, 0x5d, 0xe9, 0xf0, 0xa7, - 0x50, 0xe5, 0x4e, 0x50, 0x0c, 0x2d, 0xa5, 0x03, 0x90, 0x59, 0x20, 0x96, 0xdc, 0xe6, 0x3d, 0xe8, - 0xe8, 0xfa, 0xde, 0xd3, 0x9f, 0xef, 0x0b, 0xd0, 0x3c, 0x0e, 0x46, 0xde, 0xfc, 0xf8, 0xa7, 0x87, - 0x29, 0x1d, 0x5b, 0xc9, 0x51, 0x54, 0x63, 0x04, 0x7a, 0x66, 0x9a, 0xd0, 0xf2, 0xc9, 0x85, 0xc5, - 0x65, 0x2d, 0x8f, 0x23, 0x6e, 0x19, 0x37, 0x7c, 0x72, 0xc1, 0xf5, 0x1e, 0xba, 0xa8, 0x07, 0x4d, - 0xca, 0x43, 0x63, 0x65, 0x79, 0x6e, 0xd4, 0x2d, 0xf5, 0x4a, 0x3b, 0x65, 0x0c, 0x3e, 0xb9, 0xa0, - 0x2e, 0x1e, 0xba, 0x11, 0xfa, 0x08, 0x9a, 0xa1, 0x77, 0x3a, 0x8c, 0x2d, 0x97, 0x84, 0xde, 0x39, - 0xe1, 0x47, 0xef, 0x83, 0x62, 0xb7, 0x80, 0x1b, 0x8c, 0xbe, 0xcf, 0xc8, 0xe6, 0xef, 0xa1, 0x25, - 0x3c, 0x13, 0x6b, 0x32, 0xa1, 0x3c, 0x22, 0x83, 0x78, 0xc1, 0x8a, 0xd8, 0x1c, 0xba, 0x0e, 0x4b, - 0x4c, 0x87, 0x48, 0x60, 0x9a, 0x89, 0x4f, 0x9a, 0x23, 0x58, 0x79, 0x60, 0xc7, 0xce, 0x50, 0x5b, - 0xf9, 0xaf, 0xa1, 0x16, 0xf2, 0x4f, 0x99, 0x04, 0xbd, 0xe6, 0x14, 0x5e, 0x3c, 0xe7, 0x44, 0x57, - 0x53, 0x8b, 0x29, 0xb2, 0x3e, 0x42, 0x5b, 0xc8, 0x3d, 0x40, 0xaa, 0x35, 0xb1, 0x9a, 0x1d, 0xa8, - 0xf2, 0x38, 0x4a, 0x6b, 0x69, 0x5f, 0xe5, 0xb4, 0xf9, 0x47, 0x58, 0xd9, 0x9b, 0x8c, 0x03, 0xdb, - 0x89, 0x9f, 0x4e, 0x4e, 0xa5, 0xb7, 0xd7, 0xa0, 0xe5, 0x70, 0xa2, 0x76, 0x2e, 0x36, 0x05, 0x91, - 0x1f, 0x8d, 0x57, 0x41, 0x8e, 0xad, 0x98, 0x84, 0x63, 0x99, 0x2e, 0x41, 0x3b, 0x21, 0xe1, 0xd8, - 0xec, 0x00, 0x52, 0x95, 0x8b, 0x83, 0xfe, 0x1b, 0xb8, 0x7c, 0x12, 0xda, 0x7e, 0x34, 0x20, 0xe1, - 0x53, 0x62, 0xbb, 0x49, 0x65, 0xc9, 0xfa, 0x28, 0x2c, 0xaa, 0x0f, 0x64, 0xc2, 0x12, 0xfd, 0x95, - 0xe7, 0xbd, 0xce, 0xc2, 0xa7, 0xcc, 0x2e, 0xac, 0xa5, 0xd5, 0x0b, 0xc3, 0x7d, 0xee, 0xce, 0x34, - 0x26, 0x8f, 0xed, 0x68, 0x28, 0xad, 0x76, 0xa1, 0xea, 0x4c, 0xfc, 0x98, 0x7c, 0x1b, 0x8b, 0x2d, - 0x29, 0x87, 0xe6, 0xd7, 0xb0, 0xf2, 0x15, 0x09, 0xbd, 0xc1, 0x4c, 0x65, 0xef, 0xc0, 0x92, 0x1a, - 0x13, 0x3e, 0xa0, 0x6d, 0xd3, 0xd0, 0x8e, 0x86, 0xa2, 0x97, 0x62, 0xdf, 0xaa, 0xe2, 0x92, 0xae, - 0xb8, 0x03, 0x48, 0x55, 0x2c, 0xdc, 0xfb, 0x03, 0xac, 0x1e, 0x85, 0x24, 0xb0, 0x43, 0xf2, 0x8c, - 0x84, 0x49, 0x47, 0x7a, 0x05, 0xea, 0x63, 0xcf, 0xd7, 0x12, 0x51, 0x1b, 0x7b, 0x3e, 0x4f, 0xc2, - 0x0d, 0xa8, 0xc4, 0x76, 0x98, 0x1c, 0x2a, 0x99, 0x52, 0xe4, 0xb3, 0xe6, 0x1a, 0x74, 0x74, 0xdd, - 0xc2, 0xe6, 0x06, 0xac, 0x0b, 0xfa, 0xc3, 0x91, 0x1d, 0x0d, 0x5f, 0xda, 0xce, 0x99, 0x6c, 0x3e, - 0x37, 0xa1, 0x9b, 0x9d, 0x12, 0x62, 0x5d, 0x58, 0x7b, 0xe8, 0xf9, 0x5e, 0x34, 0xcc, 0x48, 0x6d, - 0xc0, 0x7a, 0x66, 0x46, 0x08, 0xfd, 0x89, 0x85, 0x7f, 0xec, 0xc5, 0xda, 0xf2, 0x6e, 0x40, 0x25, - 0x9a, 0x4c, 0x43, 0x87, 0x2c, 0x02, 0x13, 0x3e, 0x8b, 0xd6, 0xa0, 0xe2, 0x30, 0x69, 0xb1, 0xd1, - 0xc4, 0x88, 0x6e, 0x75, 0xe2, 0xc7, 0xa1, 0x47, 0x38, 0x1a, 0x50, 0x05, 0x12, 0x8a, 0x0f, 0xfc, - 0x38, 0x9c, 0x61, 0x39, 0x4d, 0x7b, 0x6e, 0xcd, 0xfe, 0x7c, 0x57, 0x74, 0xf0, 0x64, 0x34, 0xa2, - 0xae, 0x6a, 0x8e, 0x25, 0x06, 0x0b, 0xaa, 0x41, 0x73, 0x1d, 0x2e, 0xa7, 0xf8, 0x85, 0xa2, 0xe7, - 0xd0, 0x39, 0xbe, 0xf0, 0x62, 0x67, 0xf8, 0xb5, 0x17, 0xfb, 0x24, 0x8a, 0xa4, 0xa2, 0x75, 0xa8, - 0x0a, 0xc0, 0x92, 0x9a, 0x02, 0x06, 0x56, 0xb4, 0xf7, 0xf4, 0x22, 0xeb, 0x82, 0x73, 0x8b, 0xe2, - 0xae, 0x7b, 0x91, 0x10, 0x37, 0x87, 0xb0, 0xc1, 0x4b, 0x3b, 0x4f, 0xe9, 0x13, 0x30, 0x22, 0x46, - 0x97, 0xf2, 0x73, 0x74, 0xef, 0x69, 0xc0, 0x92, 0x23, 0x8b, 0x97, 0x23, 0x95, 0x4a, 0x22, 0xf3, - 0x03, 0xd8, 0xcc, 0xb3, 0x24, 0xd6, 0xf5, 0x97, 0x1a, 0x34, 0xbf, 0x74, 0xc7, 0x9e, 0x2f, 0x6d, - 0xdf, 0xce, 0xb4, 0x3d, 0x1a, 0x98, 0x31, 0xde, 0x4c, 0xef, 0x73, 0x6f, 0x7e, 0x6c, 0x2a, 0x67, - 0xe0, 0x5b, 0x4e, 0x22, 0x71, 0x78, 0x52, 0x12, 0xda, 0x85, 0x25, 0x76, 0x54, 0xb0, 0x5a, 0x7a, - 0x03, 0x7c, 0x32, 0xac, 0xe7, 0xac, 0xcc, 0xa6, 0x80, 0xa8, 0xd1, 0xe4, 0x54, 0x34, 0x53, 0xba, - 0xcd, 0x34, 0xf6, 0x61, 0x70, 0xe6, 0x24, 0xf4, 0x5b, 0x58, 0x8e, 0x05, 0x94, 0x58, 0x23, 0x86, - 0x25, 0xa2, 0xc5, 0xba, 0xaa, 0xea, 0xc8, 0x05, 0x33, 0xdc, 0x8e, 0x35, 0x32, 0xf5, 0xe5, 0x9c, - 0xd5, 0xbc, 0xc5, 0x80, 0xa2, 0x92, 0xf5, 0x25, 0x83, 0x35, 0x18, 0xce, 0xe7, 0x24, 0xb4, 0x0f, - 0xad, 0x80, 0x97, 0xa3, 0x35, 0xa6, 0xdb, 0x4e, 0x34, 0x62, 0xdb, 0xa9, 0x46, 0x2c, 0x0d, 0x1f, - 0xb8, 0x19, 0x28, 0x44, 0xda, 0x7b, 0xf3, 0x6d, 0x2c, 0x94, 0xe4, 0xf4, 0xde, 0xd9, 0x1a, 0x65, - 0xa0, 0x2e, 0x69, 0xe8, 0x11, 0xb4, 0x43, 0xb1, 0xff, 0x85, 0x12, 0xde, 0x94, 0x69, 0xfb, 0x2e, - 0xaf, 0xa2, 0x70, 0x2b, 0x54, 0xa9, 0xe8, 0x13, 0xa8, 0xb0, 0x34, 0x45, 0x79, 0x7d, 0x59, 0xe6, - 0x08, 0xc5, 0x82, 0x19, 0x1d, 0x40, 0x5b, 0xd9, 0x48, 0xd6, 0xf9, 0x6e, 0xb7, 0x91, 0x8d, 0x44, - 0x4e, 0x1f, 0x84, 0x9b, 0x8e, 0x42, 0x14, 0x91, 0xa0, 0x87, 0x01, 0x4f, 0x48, 0x33, 0x37, 0x12, - 0xa9, 0xc3, 0x82, 0x1f, 0x6f, 0x82, 0x86, 0x8e, 0x60, 0x45, 0xa6, 0x64, 0x20, 0xd1, 0xae, 0xdb, - 0x62, 0x7a, 0xae, 0xe5, 0xa4, 0x25, 0x8d, 0x95, 0xd8, 0x08, 0x52, 0x13, 0xe8, 0x19, 0x18, 0x03, - 0x86, 0x9e, 0x8a, 0xc2, 0x36, 0x53, 0x68, 0xaa, 0x0a, 0xf3, 0xb1, 0x17, 0x2f, 0x0f, 0x74, 0x3a, - 0x3a, 0xca, 0x01, 0x89, 0x65, 0xa6, 0xee, 0xa3, 0x6c, 0xac, 0xdf, 0x09, 0x29, 0x7e, 0xa8, 0x42, - 0x4b, 0x60, 0x81, 0x68, 0x35, 0x7e, 0x12, 0x18, 0xdc, 0xcf, 0x03, 0x83, 0xad, 0x45, 0x60, 0x20, - 0x6f, 0x05, 0x0a, 0x1a, 0xdc, 0xd6, 0xd1, 0x60, 0x23, 0x07, 0x0d, 0xb8, 0x94, 0x0a, 0x07, 0xf7, - 0xf3, 0xe0, 0x60, 0x6b, 0x11, 0x1c, 0xcc, 0xad, 0x26, 0x78, 0xf0, 0x64, 0x11, 0x1e, 0x98, 0x6f, - 0xc2, 0x03, 0xa1, 0x28, 0x0d, 0x08, 0xf7, 0xf3, 0x00, 0x61, 0x6b, 0x11, 0x20, 0x48, 0x6f, 0x14, - 0x44, 0x38, 0xc8, 0x47, 0x84, 0xde, 0x62, 0x44, 0x10, 0x4a, 0x74, 0x48, 0x78, 0x90, 0x0b, 0x09, - 0xdb, 0x0b, 0x21, 0x41, 0x28, 0xd1, 0x30, 0xe1, 0xf1, 0x02, 0x4c, 0xb8, 0xfa, 0x06, 0x4c, 0x10, - 0x7a, 0x52, 0xa0, 0x70, 0x27, 0x05, 0x0a, 0x5b, 0x8b, 0x40, 0x41, 0x5e, 0x68, 0x05, 0x2a, 0x3c, - 0x5c, 0x80, 0x0a, 0xbd, 0xc5, 0xa8, 0x20, 0xa3, 0xa1, 0xc1, 0xc2, 0x8b, 0xbc, 0x9a, 0xe6, 0xd8, - 0x70, 0xfd, 0xcd, 0x35, 0x2d, 0xd4, 0x65, 0x8b, 0xfa, 0x79, 0x4e, 0x51, 0xe7, 0xa0, 0xc4, 0x82, - 0xb6, 0x29, 0x5b, 0xd5, 0x2f, 0x72, 0xaa, 0x9a, 0x83, 0xc4, 0x8d, 0xb7, 0x55, 0xb5, 0x54, 0x99, - 0x2e, 0xeb, 0xcb, 0xb0, 0xca, 0xdb, 0x2d, 0xed, 0x0c, 0x33, 0xef, 0x42, 0x47, 0x27, 0x8b, 0x9a, - 0xbf, 0x0e, 0x15, 0xb1, 0xfd, 0xf3, 0x5a, 0x75, 0x31, 0x97, 0x28, 0xdd, 0x27, 0xb1, 0xed, 0x8d, - 0xa4, 0x52, 0x57, 0x2a, 0x95, 0xe4, 0xf7, 0xbb, 0x55, 0x2a, 0xc6, 0x8b, 0x6f, 0x30, 0xfe, 0xcf, - 0x02, 0xb4, 0x8e, 0x63, 0x3b, 0x9e, 0x46, 0xca, 0x15, 0x2c, 0x05, 0x54, 0x3a, 0x6a, 0x30, 0xe6, - 0x0c, 0x52, 0xed, 0x43, 0x4b, 0xdc, 0x48, 0x35, 0xa3, 0xdb, 0xfa, 0x1b, 0x42, 0x26, 0x74, 0xb8, - 0x19, 0x2a, 0x44, 0x45, 0x8b, 0xcb, 0x16, 0x2d, 0x60, 0x2b, 0x47, 0x8b, 0x16, 0x2b, 0xa9, 0x85, - 0x13, 0xcd, 0x1f, 0x0a, 0xd0, 0x96, 0x6b, 0x12, 0x41, 0xfb, 0x69, 0x8b, 0x3a, 0xc8, 0x5f, 0x54, - 0x6f, 0xf1, 0xa2, 0x64, 0xad, 0x68, 0xab, 0x3a, 0xc8, 0x5f, 0x55, 0x6f, 0xf1, 0xaa, 0x74, 0x35, - 0x62, 0x59, 0xff, 0x29, 0xc2, 0x0a, 0xb6, 0x07, 0xf2, 0xa0, 0x7f, 0xcc, 0x95, 0x5f, 0x81, 0x7a, - 0xf2, 0x14, 0x20, 0xae, 0x3d, 0x61, 0xf2, 0x0e, 0xf0, 0x96, 0x97, 0x14, 0xb4, 0x0d, 0x0d, 0xf6, - 0xf0, 0xf3, 0x6a, 0x3a, 0x09, 0xa7, 0x63, 0xe6, 0x59, 0x0d, 0xb3, 0xb7, 0xa0, 0x17, 0x8c, 0x42, - 0x6f, 0x6c, 0xd3, 0xa9, 0xe7, 0xb2, 0x53, 0xa0, 0x89, 0xd9, 0x37, 0xba, 0x03, 0xc2, 0x33, 0x8b, - 0x04, 0x13, 0x67, 0x28, 0xc0, 0x7d, 0x55, 0xdf, 0x88, 0x07, 0x74, 0x0a, 0x37, 0xc2, 0x64, 0x40, - 0x75, 0xb1, 0x2b, 0x70, 0x85, 0xb9, 0xc9, 0xbe, 0xd9, 0xd3, 0xf5, 0xcc, 0x77, 0xd8, 0x49, 0x53, - 0x65, 0xd6, 0xab, 0x74, 0x4c, 0x8f, 0x11, 0x7a, 0xad, 0x27, 0xc1, 0xc8, 0x73, 0x6c, 0x8b, 0x3a, - 0xc4, 0x10, 0x97, 0x5e, 0xeb, 0x39, 0x0d, 0x13, 0xdb, 0xa5, 0x37, 0x70, 0x3b, 0x08, 0x46, 0x1e, - 0x91, 0x4f, 0x57, 0x75, 0x7e, 0x03, 0x17, 0x44, 0x7e, 0xf9, 0xeb, 0xc0, 0xd2, 0x60, 0x64, 0x9f, - 0x72, 0xa8, 0x2c, 0x63, 0x3e, 0xa0, 0x81, 0xa3, 0x1f, 0x96, 0x6b, 0xc7, 0x36, 0x03, 0xc1, 0x26, - 0xae, 0x51, 0xc2, 0xbe, 0x1d, 0xdb, 0xe6, 0x2b, 0x40, 0x3c, 0xd4, 0x3c, 0x13, 0x22, 0xd6, 0xd7, - 0x61, 0x89, 0xfd, 0x9b, 0x34, 0xaf, 0x3c, 0xf9, 0xdf, 0xd2, 0x01, 0xfd, 0xc5, 0x7c, 0x72, 0x1e, - 0xb1, 0xa2, 0x12, 0xb1, 0xab, 0xd0, 0x74, 0xa6, 0x61, 0x48, 0x7c, 0xf1, 0x08, 0x50, 0x12, 0x8f, - 0x00, 0x9c, 0xc6, 0x1e, 0x01, 0xfe, 0x57, 0x80, 0x36, 0xb5, 0xb9, 0x37, 0x76, 0x65, 0x29, 0x7e, - 0x02, 0x95, 0xa1, 0x8a, 0x1f, 0xfa, 0x8b, 0x5c, 0x7a, 0x2b, 0x60, 0xc1, 0x8c, 0x7e, 0xa9, 0x3c, - 0xa2, 0xf0, 0x07, 0x80, 0x55, 0x7d, 0xab, 0xa5, 0xdf, 0x4f, 0x7e, 0x03, 0x2d, 0x9b, 0xf6, 0x1f, - 0x96, 0xa0, 0xe4, 0xdd, 0x1d, 0xd4, 0x9b, 0x0d, 0x6e, 0xda, 0xea, 0x3d, 0xe7, 0x0b, 0x68, 0x47, - 0xac, 0x80, 0xe6, 0xf2, 0xe5, 0x9c, 0x6e, 0x43, 0x05, 0x19, 0xdc, 0x8a, 0xd4, 0xa1, 0xf9, 0xe7, - 0x22, 0x2c, 0xcf, 0xd7, 0x2e, 0x4a, 0xf6, 0x4e, 0x6a, 0xf1, 0x5b, 0xd9, 0xc5, 0xab, 0xc9, 0x99, - 0xaf, 0x7e, 0x97, 0x16, 0x04, 0x9f, 0x91, 0xcb, 0xef, 0xe8, 0xcb, 0x4f, 0x1e, 0x30, 0x05, 0x1b, - 0x5d, 0x81, 0x0c, 0x00, 0x27, 0xe5, 0xf5, 0x4b, 0x5a, 0x3f, 0x87, 0x5b, 0xb6, 0xd6, 0xde, 0xed, - 0xc1, 0xf2, 0x3c, 0x06, 0x42, 0x45, 0x39, 0xfb, 0xca, 0xac, 0xa3, 0x12, 0x6e, 0x47, 0xda, 0xf8, - 0xd6, 0x77, 0x50, 0x15, 0x18, 0x84, 0x1a, 0x50, 0x3d, 0xf4, 0xcf, 0xed, 0x91, 0xe7, 0x1a, 0x97, - 0x50, 0x15, 0x4a, 0x8f, 0x48, 0x6c, 0x14, 0xe8, 0xc7, 0xd1, 0x34, 0x36, 0x4a, 0x08, 0xa0, 0xc2, - 0x1f, 0x84, 0x8d, 0x32, 0xaa, 0x41, 0xf9, 0xd8, 0xb7, 0x03, 0x63, 0x09, 0x35, 0xa1, 0x26, 0xdf, - 0x98, 0x8d, 0x0a, 0x5a, 0x86, 0x86, 0xf2, 0x68, 0x6c, 0x54, 0x51, 0x0b, 0xea, 0xf3, 0x47, 0x60, - 0xa3, 0x46, 0x87, 0xf3, 0x57, 0x5d, 0xa3, 0x7e, 0xeb, 0xaf, 0x45, 0x71, 0x7d, 0x95, 0x2e, 0x18, - 0xd0, 0x14, 0x2e, 0x30, 0xb2, 0x71, 0x09, 0xb5, 0x01, 0x92, 0xd6, 0xc0, 0x28, 0xa0, 0x16, 0x2c, - 0xb1, 0x2e, 0xc3, 0x28, 0x6e, 0x16, 0x6b, 0x05, 0x36, 0x3d, 0x6f, 0x02, 0x8d, 0x12, 0x42, 0xd0, - 0xd6, 0x7b, 0x3c, 0xa3, 0x4c, 0x9d, 0x52, 0xae, 0x0b, 0xc6, 0x12, 0x15, 0x4a, 0xfa, 0x37, 0xa3, - 0x42, 0xad, 0xaa, 0xcd, 0x98, 0x51, 0x15, 0x22, 0xb2, 0x87, 0x32, 0x6a, 0x68, 0x05, 0x5a, 0x5a, - 0x8f, 0x64, 0xd4, 0xa9, 0x96, 0xa4, 0xe9, 0x31, 0x80, 0x6a, 0x51, 0x9b, 0x18, 0xa3, 0x81, 0x3a, - 0xec, 0xcf, 0x39, 0xad, 0xe3, 0x30, 0x9a, 0x68, 0x15, 0x96, 0x53, 0xfd, 0x84, 0xd1, 0x42, 0x6b, - 0xf2, 0xad, 0x50, 0x3d, 0xfd, 0x8d, 0xf6, 0xad, 0x87, 0xf2, 0xa8, 0x94, 0x11, 0x5a, 0x81, 0x96, - 0x88, 0x10, 0xa7, 0x1b, 0x97, 0xa8, 0x61, 0xf5, 0x44, 0x30, 0x0a, 0x09, 0x85, 0xc3, 0xb8, 0x51, - 0x7c, 0x70, 0xe3, 0x5f, 0x7f, 0xab, 0x15, 0xfe, 0xfe, 0x7a, 0xab, 0xf0, 0x8f, 0xd7, 0x5b, 0x85, - 0x7f, 0xbf, 0xde, 0x2a, 0x7c, 0xff, 0xe3, 0xd6, 0x25, 0x30, 0x26, 0xe1, 0x69, 0x3f, 0xf6, 0xce, - 0xce, 0xfb, 0x67, 0xe7, 0xec, 0x8f, 0xe6, 0x97, 0x15, 0xf6, 0x73, 0xfb, 0xff, 0x01, 0x00, 0x00, - 0xff, 0xff, 0x64, 0x9f, 0x83, 0xc4, 0xef, 0x1e, 0x00, 0x00, + 0xf5, 0x37, 0x2f, 0xe2, 0xe5, 0xf0, 0x22, 0x68, 0x45, 0x49, 0x94, 0x9c, 0x48, 0x14, 0xe2, 0xf8, + 0xaf, 0xe4, 0xdf, 0x51, 0x1b, 0xa5, 0x71, 0x32, 0x13, 0x37, 0x17, 0x4b, 0x72, 0xac, 0xfa, 0x52, + 0x79, 0xa9, 0x49, 0xa6, 0xed, 0x64, 0x30, 0x30, 0xb0, 0x14, 0x31, 0x22, 0x41, 0x18, 0x00, 0xa5, + 0x30, 0x99, 0xe9, 0x53, 0x5f, 0xfa, 0x0d, 0xfa, 0xd6, 0xa7, 0xce, 0xf4, 0xa3, 0xf4, 0xb1, 0x99, + 0xc9, 0x43, 0x1f, 0x3b, 0xce, 0x53, 0xfb, 0x0d, 0xfa, 0xd6, 0xd9, 0x1b, 0xb1, 0x0b, 0x80, 0xb2, + 0x9d, 0x27, 0x62, 0xcf, 0x9e, 0xdb, 0x9e, 0xb3, 0xe7, 0xb7, 0x67, 0x97, 0x60, 0x84, 0xf6, 0x20, + 0xb6, 0x9c, 0xb1, 0x1b, 0x3c, 0xdb, 0x0f, 0xc2, 0x49, 0x3c, 0x41, 0x90, 0x50, 0xb6, 0x9a, 0x63, + 0x12, 0xdb, 0x72, 0x66, 0xab, 0x45, 0xc2, 0x70, 0x12, 0xaa, 0x43, 0x7b, 0x10, 0x27, 0xc3, 0x8b, + 0xcb, 0x30, 0x70, 0xe6, 0x43, 0xe4, 0x8d, 0x83, 0x49, 0x18, 0x5b, 0x51, 0x94, 0xb0, 0x2c, 0x87, + 0xd3, 0x28, 0x66, 0x9f, 0x9c, 0x60, 0xee, 0x03, 0x7c, 0x41, 0x62, 0x4c, 0x9e, 0x4f, 0x49, 0x14, + 0xa3, 0x36, 0x14, 0x9d, 0x41, 0xb7, 0xd0, 0x2b, 0xec, 0xd5, 0x71, 0xd1, 0x19, 0x20, 0x03, 0x4a, + 0x17, 0x64, 0xd6, 0x2d, 0xf6, 0x0a, 0x7b, 0x4d, 0x4c, 0x3f, 0xcd, 0xb7, 0xa0, 0xc1, 0xf8, 0xa3, + 0x60, 0xe2, 0x47, 0x04, 0x75, 0x60, 0xe9, 0xd2, 0x1e, 0x4d, 0x09, 0x93, 0x69, 0x62, 0x3e, 0x30, + 0x8f, 0x00, 0x4e, 0xa7, 0xaf, 0xae, 0x34, 0xd1, 0x52, 0x52, 0xb5, 0xb4, 0xa0, 0xc1, 0xb4, 0x70, + 0x53, 0xe6, 0x7b, 0xd0, 0x3a, 0x22, 0x23, 0x12, 0x93, 0x57, 0x77, 0xd6, 0x80, 0xb6, 0x14, 0x11, + 0x4a, 0xbe, 0x03, 0x24, 0x28, 0xb6, 0x7f, 0xbe, 0x50, 0xd3, 0x4d, 0xa8, 0x47, 0xb1, 0x1d, 0xc6, + 0x56, 0xa2, 0xaf, 0xc6, 0x08, 0x0f, 0xc9, 0x0c, 0x6d, 0x40, 0x95, 0xf8, 0x2e, 0x9b, 0xe2, 0xee, + 0x56, 0x88, 0xef, 0xd2, 0x89, 0x1d, 0x68, 0xf8, 0x93, 0xd8, 0x1b, 0xcc, 0xac, 0x89, 0x3f, 0x9a, + 0x75, 0xcb, 0xbd, 0xc2, 0x5e, 0x0d, 0x03, 0x27, 0xfd, 0xc6, 0x1f, 0xcd, 0xcc, 0x35, 0x58, 0xd5, + 0x8c, 0x0b, 0x9f, 0x5a, 0xd0, 0xe8, 0xfb, 0x76, 0x20, 0x9c, 0x31, 0xef, 0x40, 0x93, 0x0f, 0x45, + 0x88, 0x6f, 0x43, 0x25, 0x24, 0xe7, 0xde, 0xc4, 0x67, 0x0e, 0x36, 0x0e, 0xda, 0xfb, 0x62, 0x4b, + 0x60, 0x46, 0xc5, 0x62, 0xd6, 0x7c, 0x0c, 0xcb, 0xa7, 0x21, 0xb9, 0x0a, 0xbd, 0x24, 0x42, 0x22, + 0x22, 0x85, 0x9c, 0x48, 0x17, 0x95, 0x48, 0x23, 0x04, 0xe5, 0xd1, 0xc4, 0xb9, 0x10, 0xeb, 0x61, + 0xdf, 0x26, 0x02, 0x23, 0x51, 0x27, 0x3c, 0xfd, 0x18, 0x8c, 0x13, 0xff, 0x9c, 0x44, 0x71, 0xbf, + 0x7f, 0x26, 0x6d, 0xfc, 0x1f, 0x94, 0xa2, 0x28, 0x16, 0xbe, 0xad, 0xed, 0x6b, 0x7b, 0xae, 0xdf, + 0x3f, 0x7b, 0x4c, 0x62, 0x1b, 0x53, 0x0e, 0x73, 0x15, 0x56, 0x14, 0x61, 0xa1, 0xd1, 0x02, 0x03, + 0x13, 0xdb, 0x3d, 0xf1, 0x5d, 0xf2, 0x8d, 0xd4, 0xb8, 0x09, 0x3c, 0xd8, 0x56, 0x1c, 0x31, 0xb5, + 0x65, 0x5c, 0x65, 0xe3, 0xb3, 0x08, 0xfd, 0x02, 0xe0, 0x82, 0xcc, 0xac, 0x90, 0xc6, 0x2f, 0xea, + 0x16, 0x7b, 0xa5, 0xbd, 0xc6, 0xc1, 0xca, 0xbe, 0xdc, 0xf6, 0x0f, 0xc9, 0x8c, 0x47, 0xb6, 0x7e, + 0x21, 0xbe, 0x22, 0xf3, 0x6b, 0x58, 0x51, 0x0c, 0x88, 0x90, 0xbe, 0x09, 0x10, 0x12, 0xdb, 0xb5, + 0x3c, 0x4a, 0x15, 0x36, 0xea, 0xa1, 0x64, 0x43, 0xef, 0x40, 0x85, 0x86, 0x80, 0xb8, 0x2c, 0x4a, + 0xaa, 0x85, 0x47, 0x13, 0xe7, 0xe2, 0xc4, 0x1f, 0x4c, 0xb0, 0x60, 0x30, 0x7f, 0x2c, 0x41, 0x55, + 0xfa, 0xbd, 0x0f, 0x35, 0x67, 0xec, 0x5a, 0xf1, 0x2c, 0xe0, 0xe5, 0xd0, 0x3e, 0x58, 0xdd, 0x57, + 0x6a, 0xfb, 0x70, 0xec, 0x9e, 0xcd, 0x02, 0x82, 0xab, 0x0e, 0xff, 0x40, 0x7b, 0x50, 0x3a, 0x27, + 0xb1, 0xb0, 0xb1, 0xae, 0xb2, 0x26, 0x15, 0x89, 0x29, 0x0b, 0xe5, 0x0c, 0xa6, 0x31, 0xdb, 0x51, + 0x29, 0xce, 0xa4, 0xcc, 0x30, 0x65, 0x41, 0xef, 0x41, 0xc5, 0x65, 0x5b, 0xac, 0xbb, 0xc4, 0x98, + 0x37, 0x55, 0x66, 0xad, 0x7c, 0xb0, 0x60, 0x44, 0xff, 0x0f, 0xe5, 0xc8, 0xb7, 0x83, 0x6e, 0x85, + 0x09, 0x6c, 0xa8, 0x02, 0xca, 0xb6, 0xc4, 0x8c, 0x09, 0x7d, 0x08, 0xb5, 0x40, 0xec, 0x8a, 0x6e, + 0x95, 0x09, 0xdc, 0xd4, 0xdc, 0xd1, 0x37, 0x20, 0x9e, 0x33, 0xa3, 0xcf, 0xa1, 0xc9, 0xed, 0xf1, + 0xe4, 0x75, 0x6b, 0x4c, 0x78, 0x3b, 0xc7, 0x3d, 0xa5, 0x30, 0x71, 0xc3, 0x4d, 0x68, 0xe8, 0x63, + 0x00, 0x8f, 0x6d, 0x20, 0xba, 0xbb, 0xba, 0x75, 0xa6, 0xe0, 0x0d, 0x55, 0x41, 0x7a, 0x6f, 0xe2, + 0x3a, 0xe7, 0xef, 0x47, 0x31, 0x15, 0x56, 0x52, 0x0e, 0x59, 0xe1, 0xf4, 0x36, 0x54, 0x36, 0x84, + 0xf9, 0x9f, 0x12, 0xd4, 0xe6, 0x9b, 0xe7, 0x75, 0xd3, 0xfc, 0x8e, 0x9a, 0xe6, 0x8d, 0x4c, 0x9a, + 0xb9, 0x56, 0x9e, 0xe7, 0x77, 0xd4, 0x3c, 0x6f, 0x64, 0xf2, 0x2c, 0x59, 0x69, 0xa2, 0x0f, 0x52, + 0x89, 0xde, 0xca, 0x4b, 0xb4, 0x10, 0x90, 0x99, 0xfe, 0x99, 0x96, 0xe9, 0x6e, 0x36, 0xd3, 0x82, + 0x9f, 0xa7, 0xfa, 0xa3, 0x4c, 0xaa, 0xdf, 0xc8, 0x4f, 0xb5, 0x90, 0x4a, 0x72, 0xfd, 0x19, 0xd0, + 0xbc, 0xa5, 0x52, 0xbd, 0xb3, 0x30, 0xd5, 0x42, 0x1e, 0x98, 0x0c, 0x4f, 0xf5, 0xdd, 0x9c, 0x54, + 0xbf, 0xb9, 0x20, 0xd5, 0x42, 0x5c, 0xc9, 0xf5, 0xdd, 0x9c, 0x5c, 0xbf, 0xb9, 0x20, 0xd7, 0x52, + 0x3a, 0x49, 0xf6, 0x04, 0x56, 0x0e, 0x87, 0xd4, 0x8b, 0x53, 0x42, 0x42, 0x59, 0xdb, 0x1f, 0x41, + 0xc3, 0x61, 0x44, 0x35, 0xef, 0x1b, 0xfb, 0xf2, 0xfc, 0x3d, 0x9c, 0xf8, 0x03, 0x2e, 0xc4, 0x72, + 0x0f, 0xce, 0xfc, 0x1b, 0xf5, 0xa0, 0x1c, 0x10, 0x12, 0x8a, 0xfc, 0x37, 0x25, 0x78, 0x33, 0xe5, + 0x6c, 0xc6, 0xbc, 0x0b, 0x48, 0x35, 0xf8, 0x9a, 0xb0, 0xff, 0x04, 0x56, 0x13, 0xe9, 0x2f, 0x0f, + 0xa4, 0xc3, 0x1f, 0x42, 0x95, 0x3b, 0x41, 0x31, 0xb4, 0x94, 0x0e, 0x40, 0x66, 0x81, 0x58, 0x72, + 0x9b, 0x9f, 0x40, 0x47, 0xd7, 0xf7, 0x9a, 0xfe, 0x7c, 0x5f, 0x80, 0x66, 0x3f, 0x18, 0x79, 0xf3, + 0xe3, 0x9f, 0x1e, 0xa6, 0x74, 0x6c, 0x25, 0x47, 0x51, 0x8d, 0x11, 0xe8, 0x99, 0x69, 0x42, 0xcb, + 0x27, 0x57, 0x16, 0x97, 0xb5, 0x3c, 0x8e, 0xb8, 0x65, 0xdc, 0xf0, 0xc9, 0x15, 0xd7, 0x7b, 0xe2, + 0xa2, 0x1e, 0x34, 0x29, 0x0f, 0x8d, 0x95, 0xe5, 0xb9, 0x51, 0xb7, 0xd4, 0x2b, 0xed, 0x95, 0x31, + 0xf8, 0xe4, 0x8a, 0xba, 0x78, 0xe2, 0x46, 0xe8, 0x6d, 0x68, 0x86, 0xde, 0xf9, 0x30, 0xb6, 0x5c, + 0x12, 0x7a, 0x97, 0x84, 0x1f, 0xbd, 0xf7, 0x8a, 0xdd, 0x02, 0x6e, 0x30, 0xfa, 0x11, 0x23, 0xa3, + 0x0f, 0xa1, 0x1b, 0x0d, 0xed, 0x90, 0x58, 0xd1, 0x64, 0x1a, 0x3a, 0x44, 0x5a, 0x8d, 0xbc, 0x6f, + 0x79, 0x15, 0xd5, 0xf0, 0x1a, 0x9b, 0xef, 0xb3, 0x69, 0x6e, 0xbf, 0xef, 0x7d, 0x4b, 0xcc, 0xdf, + 0x42, 0x4b, 0x2c, 0x49, 0x04, 0xc3, 0x84, 0xf2, 0x88, 0x0c, 0xe2, 0x05, 0xa1, 0x60, 0x73, 0xe8, + 0x16, 0x2c, 0x31, 0xe3, 0x22, 0xf3, 0x69, 0x26, 0x3e, 0x69, 0xfe, 0xb5, 0x00, 0x2b, 0xf7, 0xec, + 0xd8, 0x19, 0x6a, 0x31, 0xfb, 0x25, 0xd4, 0x42, 0xfe, 0x29, 0xd3, 0xa7, 0x57, 0xab, 0xc2, 0x8b, + 0xe7, 0x9c, 0x68, 0x37, 0x15, 0x86, 0x22, 0x5b, 0xd3, 0x2b, 0x87, 0xa0, 0x74, 0x5d, 0x08, 0x3e, + 0x01, 0xa4, 0xba, 0x29, 0xe2, 0xb0, 0x07, 0x55, 0xae, 0x41, 0xba, 0x99, 0x5e, 0xa5, 0x9c, 0x36, + 0x7f, 0x0f, 0x2b, 0x87, 0x93, 0x71, 0x60, 0x3b, 0xf1, 0xa3, 0xc9, 0xb9, 0x5c, 0xe6, 0x5b, 0xd0, + 0x72, 0x38, 0x51, 0x3b, 0x8a, 0x9b, 0x82, 0xc8, 0x4f, 0xe3, 0x5d, 0x90, 0x63, 0x2b, 0x26, 0xe1, + 0x58, 0xee, 0x10, 0x41, 0x3b, 0x23, 0xe1, 0xd8, 0xec, 0x00, 0x52, 0x95, 0x8b, 0xde, 0xe2, 0x6b, + 0x58, 0x3b, 0x0b, 0x6d, 0x3f, 0x1a, 0x90, 0xf0, 0x11, 0xb1, 0xdd, 0xa4, 0x98, 0x65, 0x49, 0x16, + 0x16, 0x95, 0x24, 0x32, 0x61, 0x89, 0xfe, 0xca, 0x16, 0x43, 0x67, 0xe1, 0x53, 0x66, 0x17, 0xd6, + 0xd3, 0xea, 0x85, 0xe1, 0x7d, 0xee, 0xce, 0x34, 0x26, 0x0f, 0xec, 0x68, 0x28, 0xad, 0x76, 0xa1, + 0xea, 0x4c, 0xfc, 0x98, 0x7c, 0x13, 0x8b, 0x2a, 0x90, 0x43, 0xf3, 0x2b, 0x58, 0xf9, 0x92, 0x84, + 0xde, 0x60, 0xa6, 0xb2, 0x77, 0x60, 0x49, 0x8d, 0x09, 0x1f, 0xd0, 0x4e, 0x6d, 0x68, 0x47, 0x43, + 0xd1, 0xbe, 0xb1, 0x6f, 0x55, 0x71, 0x49, 0x57, 0xdc, 0x01, 0xa4, 0x2a, 0x16, 0xee, 0xfd, 0x0e, + 0x56, 0x4f, 0x43, 0x12, 0xd8, 0x21, 0x79, 0x4c, 0xc2, 0xa4, 0x09, 0xbe, 0x09, 0xf5, 0xb1, 0xe7, + 0x6b, 0x89, 0xa8, 0x8d, 0x3d, 0x9f, 0x27, 0xe1, 0x36, 0x54, 0x62, 0x3b, 0x4c, 0xce, 0xb1, 0x4c, + 0xf5, 0xf3, 0x59, 0x73, 0x1d, 0x3a, 0xba, 0x6e, 0x61, 0x73, 0x13, 0x36, 0x04, 0xfd, 0xfe, 0xc8, + 0x8e, 0x86, 0xcf, 0x6c, 0xe7, 0x42, 0xf6, 0xbb, 0x5b, 0xd0, 0xcd, 0x4e, 0x09, 0xb1, 0x2e, 0xac, + 0xdf, 0xf7, 0x7c, 0x2f, 0x1a, 0x66, 0xa4, 0x36, 0x61, 0x23, 0x33, 0x23, 0x84, 0xfe, 0xc0, 0xc2, + 0x3f, 0xf6, 0x62, 0x6d, 0x79, 0xb7, 0xa1, 0xc2, 0xf7, 0xfc, 0x22, 0xfc, 0xe2, 0xb3, 0x68, 0x1d, + 0x2a, 0x0e, 0x93, 0x16, 0x1b, 0x4d, 0x8c, 0xe8, 0x56, 0x27, 0x7e, 0x1c, 0x7a, 0x84, 0x03, 0x10, + 0x55, 0x20, 0xd1, 0xff, 0xd8, 0x8f, 0xc3, 0x19, 0x96, 0xd3, 0xb4, 0xcd, 0xd7, 0xec, 0xcf, 0x77, + 0x45, 0x07, 0x4f, 0x46, 0x23, 0xea, 0xaa, 0xe6, 0x58, 0x62, 0xb0, 0xa0, 0x1a, 0x34, 0x37, 0x60, + 0x2d, 0xc5, 0x2f, 0x14, 0x3d, 0x81, 0x4e, 0xff, 0xca, 0x8b, 0x9d, 0xe1, 0x57, 0x5e, 0xec, 0x93, + 0x28, 0x92, 0x8a, 0x36, 0xa0, 0x2a, 0x30, 0x52, 0x6a, 0x0a, 0x18, 0x3e, 0xd2, 0x76, 0xd7, 0x8b, + 0xac, 0x2b, 0xce, 0x2d, 0x50, 0xa1, 0xee, 0x45, 0x42, 0xdc, 0x1c, 0xc2, 0x26, 0x2f, 0xed, 0x3c, + 0xa5, 0x0f, 0xc1, 0x88, 0x18, 0x5d, 0xca, 0xcf, 0x0f, 0x94, 0x9e, 0x86, 0x48, 0x39, 0xb2, 0x78, + 0x39, 0x52, 0xa9, 0x24, 0x32, 0xdf, 0x80, 0xad, 0x3c, 0x4b, 0x62, 0x5d, 0x7f, 0xaa, 0x41, 0xf3, + 0x73, 0x77, 0xec, 0xf9, 0xd2, 0xf6, 0xfb, 0x99, 0x4e, 0x4b, 0x43, 0x41, 0xc6, 0x9b, 0x69, 0xb7, + 0x3e, 0x99, 0x9f, 0xd4, 0xca, 0xb1, 0xfb, 0x92, 0xc3, 0x4f, 0x9c, 0xd7, 0x94, 0x84, 0x0e, 0x60, + 0x89, 0x9d, 0x4e, 0xac, 0x96, 0xae, 0xc1, 0x5d, 0x76, 0xbc, 0x70, 0x56, 0x66, 0x53, 0x40, 0xd4, + 0x68, 0x72, 0x2e, 0xfa, 0x37, 0xdd, 0x66, 0x1a, 0xfb, 0x30, 0x38, 0x73, 0x12, 0xfa, 0x35, 0x2c, + 0xc7, 0x02, 0x4a, 0xac, 0x11, 0xc3, 0x12, 0xd1, 0xd5, 0xed, 0xaa, 0x3a, 0x72, 0xc1, 0x0c, 0xb7, + 0x63, 0x8d, 0x4c, 0x7d, 0xb9, 0x64, 0x35, 0x6f, 0x31, 0xa0, 0xa8, 0x64, 0x7d, 0xc9, 0x60, 0x0d, + 0x86, 0xcb, 0x39, 0x09, 0x1d, 0x41, 0x2b, 0xe0, 0xe5, 0x68, 0x8d, 0xe9, 0xb6, 0x13, 0xbd, 0xdf, + 0x4e, 0xaa, 0xf7, 0x4b, 0xc3, 0x07, 0x6e, 0x06, 0x0a, 0x91, 0xb6, 0xfb, 0x7c, 0x1b, 0x0b, 0x25, + 0x39, 0xed, 0x7e, 0xb6, 0x46, 0x19, 0xa8, 0x4b, 0x1a, 0xfa, 0x02, 0xda, 0xa1, 0xd8, 0xff, 0x42, + 0x09, 0xef, 0x03, 0xb5, 0x7d, 0x97, 0x57, 0x51, 0xb8, 0x15, 0xaa, 0x54, 0xf4, 0x01, 0x54, 0x58, + 0x9a, 0xa2, 0xbc, 0x56, 0x30, 0x73, 0xf6, 0x62, 0xc1, 0x8c, 0x8e, 0xa1, 0xad, 0x6c, 0x24, 0xeb, + 0xf2, 0xa0, 0xdb, 0xc8, 0x46, 0x22, 0xa7, 0xf5, 0xc2, 0x4d, 0x47, 0x21, 0x8a, 0x48, 0xd0, 0xc3, + 0x80, 0x27, 0xa4, 0x99, 0x1b, 0x89, 0xd4, 0x61, 0xc1, 0x8f, 0x37, 0x41, 0x43, 0xa7, 0xb0, 0x22, + 0x53, 0x32, 0x90, 0x68, 0xd7, 0x6d, 0x31, 0x3d, 0x6f, 0xe5, 0xa4, 0x25, 0x8d, 0x95, 0xd8, 0x08, + 0x52, 0x13, 0xe8, 0x31, 0x18, 0x03, 0x86, 0x9e, 0x8a, 0xc2, 0x36, 0x53, 0x68, 0xaa, 0x0a, 0xf3, + 0xb1, 0x17, 0x2f, 0x0f, 0x74, 0x3a, 0x3a, 0xcd, 0x01, 0x89, 0x65, 0xa6, 0xee, 0xed, 0x6c, 0xac, + 0x5f, 0x09, 0x29, 0x7e, 0xa8, 0x42, 0x4b, 0x60, 0x81, 0x68, 0x35, 0x7e, 0x12, 0x18, 0x7c, 0x9a, + 0x07, 0x06, 0xdb, 0x8b, 0xc0, 0x40, 0x5e, 0x44, 0x14, 0x34, 0x78, 0x5f, 0x47, 0x83, 0xcd, 0x1c, + 0x34, 0xe0, 0x52, 0x2a, 0x1c, 0x7c, 0x9a, 0x07, 0x07, 0xdb, 0x8b, 0xe0, 0x60, 0x6e, 0x35, 0xc1, + 0x83, 0x87, 0x8b, 0xf0, 0xc0, 0xbc, 0x0e, 0x0f, 0x84, 0xa2, 0x34, 0x20, 0x7c, 0x9a, 0x07, 0x08, + 0xdb, 0x8b, 0x00, 0x41, 0x7a, 0xa3, 0x20, 0xc2, 0x71, 0x3e, 0x22, 0xf4, 0x16, 0x23, 0x82, 0x50, + 0xa2, 0x43, 0xc2, 0xbd, 0x5c, 0x48, 0xd8, 0x59, 0x08, 0x09, 0x42, 0x89, 0x86, 0x09, 0x0f, 0x16, + 0x60, 0xc2, 0xee, 0x35, 0x98, 0x20, 0xf4, 0xa4, 0x40, 0xe1, 0x4e, 0x0a, 0x14, 0xb6, 0x17, 0x81, + 0x82, 0xbc, 0x43, 0x0b, 0x54, 0xb8, 0xbf, 0x00, 0x15, 0x7a, 0x8b, 0x51, 0x41, 0x46, 0x43, 0x83, + 0x85, 0xa7, 0x79, 0x35, 0xcd, 0xb1, 0xe1, 0xd6, 0xf5, 0x35, 0x2d, 0xd4, 0x65, 0x8b, 0xfa, 0x49, + 0x4e, 0x51, 0xe7, 0xa0, 0xc4, 0x82, 0xb6, 0x29, 0x5b, 0xd5, 0x4f, 0x73, 0xaa, 0x9a, 0x83, 0xc4, + 0xed, 0x97, 0x55, 0xb5, 0x54, 0x99, 0x2e, 0xeb, 0x35, 0x58, 0xe5, 0xed, 0x96, 0x76, 0x86, 0x99, + 0x77, 0xa1, 0xa3, 0x93, 0x45, 0xcd, 0xdf, 0x82, 0x8a, 0xd8, 0xfe, 0x79, 0xad, 0xba, 0x98, 0x4b, + 0x94, 0x1e, 0x91, 0xd8, 0xf6, 0x46, 0x52, 0xa9, 0x2b, 0x95, 0x4a, 0xf2, 0xeb, 0x5d, 0x64, 0x15, + 0xe3, 0xc5, 0x6b, 0x8c, 0x7f, 0x5f, 0x80, 0x56, 0x3f, 0xb6, 0xe3, 0x69, 0xa4, 0xdc, 0xdd, 0x52, + 0x40, 0xa5, 0xa3, 0x06, 0x63, 0xce, 0x20, 0xd5, 0x11, 0xb4, 0xc4, 0x5d, 0x4c, 0x33, 0xba, 0xa3, + 0x3f, 0x5b, 0x64, 0x42, 0x87, 0x9b, 0xa1, 0x42, 0x54, 0xb4, 0xb8, 0x6c, 0xd1, 0x02, 0xb6, 0x72, + 0xb4, 0x68, 0xb1, 0x92, 0x5a, 0x38, 0xd1, 0xfc, 0xa1, 0x00, 0x6d, 0xb9, 0x26, 0x11, 0xb4, 0x9f, + 0xb6, 0xa8, 0xe3, 0xfc, 0x45, 0xf5, 0x16, 0x2f, 0x4a, 0xd6, 0x8a, 0xb6, 0xaa, 0xe3, 0xfc, 0x55, + 0xf5, 0x16, 0xaf, 0x4a, 0x57, 0x23, 0x96, 0xf5, 0xef, 0x22, 0xac, 0x60, 0x7b, 0x20, 0x0f, 0xfa, + 0x07, 0x5c, 0xf9, 0x4d, 0xa8, 0x27, 0xaf, 0x0f, 0xe2, 0xda, 0x13, 0x26, 0x4f, 0x0f, 0x2f, 0x79, + 0xbc, 0x41, 0x3b, 0xd0, 0x60, 0x6f, 0x4d, 0xcf, 0xa7, 0x93, 0x70, 0x3a, 0x16, 0x77, 0x68, 0xf6, + 0xfc, 0xf4, 0x94, 0x51, 0xe8, 0x8d, 0x6d, 0x3a, 0xf5, 0x5c, 0x76, 0x0a, 0x34, 0x31, 0xfb, 0x46, + 0x77, 0x40, 0x78, 0x66, 0x91, 0x60, 0xe2, 0x0c, 0x05, 0xb8, 0xaf, 0xea, 0x1b, 0xf1, 0x98, 0x4e, + 0xe1, 0x46, 0x98, 0x0c, 0xa8, 0x2e, 0x76, 0x05, 0xae, 0x30, 0x37, 0xd9, 0x37, 0x7b, 0x2d, 0x9f, + 0xf9, 0x0e, 0x3b, 0x69, 0xaa, 0xcc, 0x7a, 0x95, 0x8e, 0xe9, 0x31, 0xb2, 0x4b, 0xcd, 0x04, 0x23, + 0xcf, 0xb1, 0x2d, 0xea, 0x10, 0x43, 0xdc, 0x1a, 0xd5, 0xc8, 0x68, 0x98, 0xd8, 0x2e, 0xbd, 0x81, + 0xdb, 0x41, 0x30, 0xf2, 0x88, 0x7c, 0x2d, 0xab, 0xf3, 0x1b, 0xb8, 0x20, 0xf2, 0xcb, 0x5f, 0x07, + 0x96, 0x06, 0x23, 0xfb, 0x9c, 0x43, 0x65, 0x19, 0xf3, 0x01, 0x0d, 0x1c, 0xfd, 0xb0, 0x5c, 0x3b, + 0xb6, 0x19, 0x08, 0x36, 0x71, 0x8d, 0x12, 0x8e, 0xec, 0xd8, 0x36, 0x9f, 0x03, 0xe2, 0xa1, 0xe6, + 0x99, 0x10, 0xb1, 0xbe, 0x05, 0x4b, 0xec, 0x0f, 0xac, 0x79, 0xe5, 0xc9, 0xbf, 0xb3, 0x8e, 0xe9, + 0x2f, 0xe6, 0x93, 0xf3, 0x88, 0x15, 0x95, 0x88, 0xed, 0x42, 0xd3, 0x99, 0x86, 0x21, 0xf1, 0xc5, + 0x23, 0x40, 0x49, 0x3c, 0x02, 0x70, 0x1a, 0x7b, 0x04, 0xf8, 0x6f, 0x01, 0xda, 0xd4, 0xe6, 0xe1, + 0xd8, 0x95, 0xa5, 0xf8, 0x01, 0x54, 0x86, 0x2a, 0x7e, 0xe8, 0x8f, 0x80, 0xe9, 0xad, 0x80, 0x05, + 0x33, 0xfa, 0xb9, 0xf2, 0xfa, 0xc2, 0x1f, 0x00, 0x56, 0xf5, 0xad, 0x96, 0x7e, 0x78, 0xf9, 0x15, + 0xb4, 0x6c, 0xda, 0x7f, 0x58, 0x82, 0x92, 0x77, 0x77, 0x50, 0x6f, 0x36, 0xb8, 0x69, 0xab, 0xf7, + 0x9c, 0xcf, 0xa0, 0x1d, 0xb1, 0x02, 0x9a, 0xcb, 0x97, 0x73, 0xba, 0x0d, 0x15, 0x64, 0x70, 0x2b, + 0x52, 0x87, 0xe6, 0x1f, 0x8b, 0xb0, 0x3c, 0x5f, 0xbb, 0x28, 0xd9, 0x3b, 0xa9, 0xc5, 0x6f, 0x67, + 0x17, 0xaf, 0x26, 0x67, 0xbe, 0xfa, 0x03, 0x5a, 0x10, 0x7c, 0x46, 0x2e, 0xbf, 0xa3, 0x2f, 0x3f, + 0x79, 0x33, 0x15, 0x6c, 0x74, 0x05, 0x32, 0x00, 0x9c, 0x94, 0xd7, 0x2f, 0x69, 0xfd, 0x1c, 0x6e, + 0xd9, 0x5a, 0x7b, 0x77, 0x08, 0xcb, 0xf3, 0x18, 0x08, 0x15, 0xe5, 0xec, 0xc3, 0xb6, 0x8e, 0x4a, + 0xb8, 0x1d, 0x69, 0xe3, 0x77, 0xbf, 0x83, 0xaa, 0xc0, 0x20, 0xd4, 0x80, 0xea, 0x89, 0x7f, 0x69, + 0x8f, 0x3c, 0xd7, 0xb8, 0x81, 0xaa, 0x50, 0xfa, 0x82, 0xc4, 0x46, 0x81, 0x7e, 0x9c, 0x4e, 0x63, + 0xa3, 0x84, 0x00, 0x2a, 0xfc, 0x0d, 0xda, 0x28, 0xa3, 0x1a, 0x94, 0xfb, 0xbe, 0x1d, 0x18, 0x4b, + 0xa8, 0x09, 0x35, 0xf9, 0xac, 0x6d, 0x54, 0xd0, 0x32, 0x34, 0x94, 0x77, 0x6a, 0xa3, 0x8a, 0x5a, + 0x50, 0x9f, 0xbf, 0x3b, 0x1b, 0x35, 0x3a, 0x9c, 0x3f, 0x24, 0x1b, 0xf5, 0x77, 0xff, 0x52, 0x14, + 0xd7, 0x57, 0xe9, 0x82, 0x01, 0x4d, 0xe1, 0x02, 0x23, 0x1b, 0x37, 0x50, 0x1b, 0x20, 0x69, 0x0d, + 0x8c, 0x02, 0x6a, 0xc1, 0x12, 0xeb, 0x32, 0x8c, 0xe2, 0x56, 0xb1, 0x56, 0x60, 0xd3, 0xf3, 0x26, + 0xd0, 0x28, 0x21, 0x04, 0x6d, 0xbd, 0xc7, 0x33, 0xca, 0xd4, 0x29, 0xe5, 0xba, 0x60, 0x2c, 0x51, + 0xa1, 0xa4, 0x7f, 0x33, 0x2a, 0xd4, 0xaa, 0xda, 0x8c, 0x19, 0x55, 0x21, 0x22, 0x7b, 0x28, 0xa3, + 0x86, 0x56, 0xa0, 0xa5, 0xf5, 0x48, 0x46, 0x9d, 0x6a, 0x49, 0x9a, 0x1e, 0x03, 0xa8, 0x16, 0xb5, + 0x89, 0x31, 0x1a, 0xa8, 0xc3, 0xfe, 0x0f, 0xd4, 0x3a, 0x0e, 0xa3, 0x89, 0x56, 0x61, 0x39, 0xd5, + 0x4f, 0x18, 0x2d, 0xb4, 0x2e, 0xdf, 0x0a, 0xd5, 0xd3, 0xdf, 0x68, 0xbf, 0x7b, 0x5f, 0x1e, 0x95, + 0x32, 0x42, 0x2b, 0xd0, 0x12, 0x11, 0xe2, 0x74, 0xe3, 0x06, 0x35, 0xac, 0x9e, 0x08, 0x46, 0x21, + 0xa1, 0x70, 0x18, 0x37, 0x8a, 0xf7, 0x6e, 0xff, 0xf3, 0x6f, 0xb5, 0xc2, 0xdf, 0x5f, 0x6c, 0x17, + 0xfe, 0xf1, 0x62, 0xbb, 0xf0, 0xaf, 0x17, 0xdb, 0x85, 0x3f, 0xff, 0xb8, 0x7d, 0x03, 0x8c, 0x49, + 0x78, 0xbe, 0x1f, 0x7b, 0x17, 0x97, 0xfb, 0x17, 0x97, 0xec, 0xbf, 0xed, 0x67, 0x15, 0xf6, 0xf3, + 0xfe, 0xff, 0x02, 0x00, 0x00, 0xff, 0xff, 0x0f, 0x9a, 0xc7, 0x64, 0x62, 0x1f, 0x00, 0x00, } func (m *GetRequest) Marshal() (dAtA []byte, err error) { @@ -4776,6 +4802,16 @@ func (m *SplitRequest) MarshalToSizedBuffer(dAtA []byte) (int, error) { i -= len(m.XXX_unrecognized) copy(dAtA[i:], m.XXX_unrecognized) } + if m.ShareSourceRegionSize { + i-- + if m.ShareSourceRegionSize { + dAtA[i] = 1 + } else { + dAtA[i] = 0 + } + i-- + dAtA[i] = 0x28 + } if m.RightDerive { i-- if m.RightDerive { @@ -4894,6 +4930,16 @@ func (m *BatchSplitRequest) MarshalToSizedBuffer(dAtA []byte) (int, error) { i -= len(m.XXX_unrecognized) copy(dAtA[i:], m.XXX_unrecognized) } + if m.ShareSourceRegionSize { + i-- + if m.ShareSourceRegionSize { + dAtA[i] = 1 + } else { + dAtA[i] = 0 + } + i-- + dAtA[i] = 0x18 + } if m.RightDerive { i-- if m.RightDerive { @@ -7082,6 +7128,9 @@ func (m *SplitRequest) Size() (n int) { if m.RightDerive { n += 2 } + if m.ShareSourceRegionSize { + n += 2 + } if m.XXX_unrecognized != nil { n += len(m.XXX_unrecognized) } @@ -7123,6 +7172,9 @@ func (m *BatchSplitRequest) Size() (n int) { if m.RightDerive { n += 2 } + if m.ShareSourceRegionSize { + n += 2 + } if m.XXX_unrecognized != nil { n += len(m.XXX_unrecognized) } @@ -10578,6 +10630,26 @@ func (m *SplitRequest) Unmarshal(dAtA []byte) error { } } m.RightDerive = bool(v != 0) + case 5: + if wireType != 0 { + return fmt.Errorf("proto: wrong wireType = %d for field ShareSourceRegionSize", wireType) + } + var v int + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowRaftCmdpb + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + v |= int(b&0x7F) << shift + if b < 0x80 { + break + } + } + m.ShareSourceRegionSize = bool(v != 0) default: iNdEx = preIndex skippy, err := skipRaftCmdpb(dAtA[iNdEx:]) @@ -10806,6 +10878,26 @@ func (m *BatchSplitRequest) Unmarshal(dAtA []byte) error { } } m.RightDerive = bool(v != 0) + case 3: + if wireType != 0 { + return fmt.Errorf("proto: wrong wireType = %d for field ShareSourceRegionSize", wireType) + } + var v int + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowRaftCmdpb + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + v |= int(b&0x7F) << shift + if b < 0x80 { + break + } + } + m.ShareSourceRegionSize = bool(v != 0) default: iNdEx = preIndex skippy, err := skipRaftCmdpb(dAtA[iNdEx:]) diff --git a/pkg/tracepb/tracepb.pb.go b/pkg/tracepb/tracepb.pb.go index e5b4919fe..55cf091a7 100644 --- a/pkg/tracepb/tracepb.pb.go +++ b/pkg/tracepb/tracepb.pb.go @@ -68,6 +68,7 @@ var xxx_messageInfo_TraceRecordRequest proto.InternalMessageInfo type TraceRecord struct { // Types that are valid to be assigned to RecordOneof: + // // *TraceRecord_Report // *TraceRecord_NotifyCollect RecordOneof isTraceRecord_RecordOneof `protobuf_oneof:"record_oneof"` diff --git a/proto/raft_cmdpb.proto b/proto/raft_cmdpb.proto index 1605f1242..4629ee91d 100644 --- a/proto/raft_cmdpb.proto +++ b/proto/raft_cmdpb.proto @@ -145,6 +145,11 @@ message SplitRequest { // left region use new_region_id. // Will be ignored in batch split, use `BatchSplitRequest::right_derive` instead. bool right_derive = 4 [deprecated=true]; + // It should be false iff the region split by user key such as split table or create partion table etc, + // the new region's will not share the source region size, so it's region size is zero. + // It should be true iff the region's load reaches the threshold such as size, keys, load check etc, + // the new region's size will share the origin region, so it's region size is half of the source region. + bool share_source_region_size = 5; } message SplitResponse { @@ -157,6 +162,11 @@ message BatchSplitRequest { // If true, the last region derive the origin region_id, // other regions use new ids. bool right_derive = 2; + // It should be false iff the region split by user key such as split table or create partion table etc, + // the new region's will not share the source region size, so it's region size is zero. + // It should be true iff the region's load reaches the threshold such as size, keys, load check etc, + // the new region's size will share the origin region, so it's region size is half of the source region. + bool share_source_region_size = 3; } message BatchSplitResponse {