diff --git a/pkg/brpb/brpb.pb.go b/pkg/brpb/brpb.pb.go index a77f4a022..a24aa123a 100644 --- a/pkg/brpb/brpb.pb.go +++ b/pkg/brpb/brpb.pb.go @@ -699,6 +699,76 @@ func (m *BackupRange) GetFiles() []*File { return nil } +// The message saves the physical table checksum +type TableMeta struct { + // physical id is either table id or partition id + PhysicalId int64 `protobuf:"varint,1,opt,name=physical_id,json=physicalId,proto3" json:"physical_id,omitempty"` + Crc64Xor uint64 `protobuf:"varint,2,opt,name=crc64xor,proto3" json:"crc64xor,omitempty"` + TotalKvs uint64 `protobuf:"varint,3,opt,name=total_kvs,json=totalKvs,proto3" json:"total_kvs,omitempty"` + TotalBytes uint64 `protobuf:"varint,4,opt,name=total_bytes,json=totalBytes,proto3" json:"total_bytes,omitempty"` +} + +func (m *TableMeta) Reset() { *m = TableMeta{} } +func (m *TableMeta) String() string { return proto.CompactTextString(m) } +func (*TableMeta) ProtoMessage() {} +func (*TableMeta) Descriptor() ([]byte, []int) { + return fileDescriptor_483d1f48d58a4885, []int{4} +} +func (m *TableMeta) XXX_Unmarshal(b []byte) error { + return m.Unmarshal(b) +} +func (m *TableMeta) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + if deterministic { + return xxx_messageInfo_TableMeta.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 *TableMeta) XXX_Merge(src proto.Message) { + xxx_messageInfo_TableMeta.Merge(m, src) +} +func (m *TableMeta) XXX_Size() int { + return m.Size() +} +func (m *TableMeta) XXX_DiscardUnknown() { + xxx_messageInfo_TableMeta.DiscardUnknown(m) +} + +var xxx_messageInfo_TableMeta proto.InternalMessageInfo + +func (m *TableMeta) GetPhysicalId() int64 { + if m != nil { + return m.PhysicalId + } + return 0 +} + +func (m *TableMeta) GetCrc64Xor() uint64 { + if m != nil { + return m.Crc64Xor + } + return 0 +} + +func (m *TableMeta) GetTotalKvs() uint64 { + if m != nil { + return m.TotalKvs + } + return 0 +} + +func (m *TableMeta) GetTotalBytes() uint64 { + if m != nil { + return m.TotalBytes + } + return 0 +} + type File struct { Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"` Sha256 []byte `protobuf:"bytes,2,opt,name=sha256,proto3" json:"sha256,omitempty"` @@ -706,11 +776,14 @@ type File struct { EndKey []byte `protobuf:"bytes,4,opt,name=end_key,json=endKey,proto3" json:"end_key,omitempty"` StartVersion uint64 `protobuf:"varint,5,opt,name=start_version,json=startVersion,proto3" json:"start_version,omitempty"` EndVersion uint64 `protobuf:"varint,6,opt,name=end_version,json=endVersion,proto3" json:"end_version,omitempty"` - Crc64Xor uint64 `protobuf:"varint,7,opt,name=crc64xor,proto3" json:"crc64xor,omitempty"` - TotalKvs uint64 `protobuf:"varint,8,opt,name=total_kvs,json=totalKvs,proto3" json:"total_kvs,omitempty"` - TotalBytes uint64 `protobuf:"varint,9,opt,name=total_bytes,json=totalBytes,proto3" json:"total_bytes,omitempty"` - Cf string `protobuf:"bytes,10,opt,name=cf,proto3" json:"cf,omitempty"` - Size_ uint64 `protobuf:"varint,11,opt,name=size,proto3" json:"size,omitempty"` + // recorded the total statistics across multiple tables + Crc64Xor uint64 `protobuf:"varint,7,opt,name=crc64xor,proto3" json:"crc64xor,omitempty"` + TotalKvs uint64 `protobuf:"varint,8,opt,name=total_kvs,json=totalKvs,proto3" json:"total_kvs,omitempty"` + TotalBytes uint64 `protobuf:"varint,9,opt,name=total_bytes,json=totalBytes,proto3" json:"total_bytes,omitempty"` + // recorded when the SST kvs are from different tables + TableMetas []*TableMeta `protobuf:"bytes,13,rep,name=table_metas,json=tableMetas,proto3" json:"table_metas,omitempty"` + Cf string `protobuf:"bytes,10,opt,name=cf,proto3" json:"cf,omitempty"` + Size_ uint64 `protobuf:"varint,11,opt,name=size,proto3" json:"size,omitempty"` // cipher_iv is used for AES cipher CipherIv []byte `protobuf:"bytes,12,opt,name=cipher_iv,json=cipherIv,proto3" json:"cipher_iv,omitempty"` } @@ -719,7 +792,7 @@ func (m *File) Reset() { *m = File{} } func (m *File) String() string { return proto.CompactTextString(m) } func (*File) ProtoMessage() {} func (*File) Descriptor() ([]byte, []int) { - return fileDescriptor_483d1f48d58a4885, []int{4} + return fileDescriptor_483d1f48d58a4885, []int{5} } func (m *File) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -811,6 +884,13 @@ func (m *File) GetTotalBytes() uint64 { return 0 } +func (m *File) GetTableMetas() []*TableMeta { + if m != nil { + return m.TableMetas + } + return nil +} + func (m *File) GetCf() string { if m != nil { return m.Cf @@ -853,7 +933,7 @@ func (m *MetaFile) Reset() { *m = MetaFile{} } func (m *MetaFile) String() string { return proto.CompactTextString(m) } func (*MetaFile) ProtoMessage() {} func (*MetaFile) Descriptor() ([]byte, []int) { - return fileDescriptor_483d1f48d58a4885, []int{5} + return fileDescriptor_483d1f48d58a4885, []int{6} } func (m *MetaFile) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -932,7 +1012,7 @@ func (m *PlacementPolicy) Reset() { *m = PlacementPolicy{} } func (m *PlacementPolicy) String() string { return proto.CompactTextString(m) } func (*PlacementPolicy) ProtoMessage() {} func (*PlacementPolicy) Descriptor() ([]byte, []int) { - return fileDescriptor_483d1f48d58a4885, []int{6} + return fileDescriptor_483d1f48d58a4885, []int{7} } func (m *PlacementPolicy) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -979,7 +1059,7 @@ func (m *StatsBlock) Reset() { *m = StatsBlock{} } func (m *StatsBlock) String() string { return proto.CompactTextString(m) } func (*StatsBlock) ProtoMessage() {} func (*StatsBlock) Descriptor() ([]byte, []int) { - return fileDescriptor_483d1f48d58a4885, []int{7} + return fileDescriptor_483d1f48d58a4885, []int{8} } func (m *StatsBlock) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1031,7 +1111,7 @@ func (m *StatsFile) Reset() { *m = StatsFile{} } func (m *StatsFile) String() string { return proto.CompactTextString(m) } func (*StatsFile) ProtoMessage() {} func (*StatsFile) Descriptor() ([]byte, []int) { - return fileDescriptor_483d1f48d58a4885, []int{8} + return fileDescriptor_483d1f48d58a4885, []int{9} } func (m *StatsFile) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1084,7 +1164,7 @@ func (m *StatsFileIndex) Reset() { *m = StatsFileIndex{} } func (m *StatsFileIndex) String() string { return proto.CompactTextString(m) } func (*StatsFileIndex) ProtoMessage() {} func (*StatsFileIndex) Descriptor() ([]byte, []int) { - return fileDescriptor_483d1f48d58a4885, []int{9} + return fileDescriptor_483d1f48d58a4885, []int{10} } func (m *StatsFileIndex) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1173,7 +1253,7 @@ func (m *Schema) Reset() { *m = Schema{} } func (m *Schema) String() string { return proto.CompactTextString(m) } func (*Schema) ProtoMessage() {} func (*Schema) Descriptor() ([]byte, []int) { - return fileDescriptor_483d1f48d58a4885, []int{10} + return fileDescriptor_483d1f48d58a4885, []int{11} } func (m *Schema) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1267,7 +1347,7 @@ func (m *IDMap) Reset() { *m = IDMap{} } func (m *IDMap) String() string { return proto.CompactTextString(m) } func (*IDMap) ProtoMessage() {} func (*IDMap) Descriptor() ([]byte, []int) { - return fileDescriptor_483d1f48d58a4885, []int{11} + return fileDescriptor_483d1f48d58a4885, []int{12} } func (m *IDMap) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1320,7 +1400,7 @@ func (m *PitrTableMap) Reset() { *m = PitrTableMap{} } func (m *PitrTableMap) String() string { return proto.CompactTextString(m) } func (*PitrTableMap) ProtoMessage() {} func (*PitrTableMap) Descriptor() ([]byte, []int) { - return fileDescriptor_483d1f48d58a4885, []int{12} + return fileDescriptor_483d1f48d58a4885, []int{13} } func (m *PitrTableMap) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1380,7 +1460,7 @@ func (m *PitrDBMap) Reset() { *m = PitrDBMap{} } func (m *PitrDBMap) String() string { return proto.CompactTextString(m) } func (*PitrDBMap) ProtoMessage() {} func (*PitrDBMap) Descriptor() ([]byte, []int) { - return fileDescriptor_483d1f48d58a4885, []int{13} + return fileDescriptor_483d1f48d58a4885, []int{14} } func (m *PitrDBMap) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1440,7 +1520,7 @@ func (m *RawRange) Reset() { *m = RawRange{} } func (m *RawRange) String() string { return proto.CompactTextString(m) } func (*RawRange) ProtoMessage() {} func (*RawRange) Descriptor() ([]byte, []int) { - return fileDescriptor_483d1f48d58a4885, []int{14} + return fileDescriptor_483d1f48d58a4885, []int{15} } func (m *RawRange) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1499,7 +1579,7 @@ func (m *ClusterIDError) Reset() { *m = ClusterIDError{} } func (m *ClusterIDError) String() string { return proto.CompactTextString(m) } func (*ClusterIDError) ProtoMessage() {} func (*ClusterIDError) Descriptor() ([]byte, []int) { - return fileDescriptor_483d1f48d58a4885, []int{15} + return fileDescriptor_483d1f48d58a4885, []int{16} } func (m *ClusterIDError) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1555,7 +1635,7 @@ func (m *Error) Reset() { *m = Error{} } func (m *Error) String() string { return proto.CompactTextString(m) } func (*Error) ProtoMessage() {} func (*Error) Descriptor() ([]byte, []int) { - return fileDescriptor_483d1f48d58a4885, []int{16} + return fileDescriptor_483d1f48d58a4885, []int{17} } func (m *Error) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1659,7 +1739,7 @@ func (m *StreamBackupTaskSecurityConfig) Reset() { *m = StreamBackupTask func (m *StreamBackupTaskSecurityConfig) String() string { return proto.CompactTextString(m) } func (*StreamBackupTaskSecurityConfig) ProtoMessage() {} func (*StreamBackupTaskSecurityConfig) Descriptor() ([]byte, []int) { - return fileDescriptor_483d1f48d58a4885, []int{17} + return fileDescriptor_483d1f48d58a4885, []int{18} } func (m *StreamBackupTaskSecurityConfig) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1744,7 +1824,7 @@ func (m *CipherInfo) Reset() { *m = CipherInfo{} } func (m *CipherInfo) String() string { return proto.CompactTextString(m) } func (*CipherInfo) ProtoMessage() {} func (*CipherInfo) Descriptor() ([]byte, []int) { - return fileDescriptor_483d1f48d58a4885, []int{18} + return fileDescriptor_483d1f48d58a4885, []int{19} } func (m *CipherInfo) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1796,7 +1876,7 @@ func (m *MasterKeyConfig) Reset() { *m = MasterKeyConfig{} } func (m *MasterKeyConfig) String() string { return proto.CompactTextString(m) } func (*MasterKeyConfig) ProtoMessage() {} func (*MasterKeyConfig) Descriptor() ([]byte, []int) { - return fileDescriptor_483d1f48d58a4885, []int{19} + return fileDescriptor_483d1f48d58a4885, []int{20} } func (m *MasterKeyConfig) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1839,6 +1919,50 @@ func (m *MasterKeyConfig) GetMasterKeys() []*encryptionpb.MasterKey { return nil } +type SortedSubRanges struct { + SubRanges []*kvrpcpb.KeyRange `protobuf:"bytes,1,rep,name=sub_ranges,json=subRanges,proto3" json:"sub_ranges,omitempty"` +} + +func (m *SortedSubRanges) Reset() { *m = SortedSubRanges{} } +func (m *SortedSubRanges) String() string { return proto.CompactTextString(m) } +func (*SortedSubRanges) ProtoMessage() {} +func (*SortedSubRanges) Descriptor() ([]byte, []int) { + return fileDescriptor_483d1f48d58a4885, []int{21} +} +func (m *SortedSubRanges) XXX_Unmarshal(b []byte) error { + return m.Unmarshal(b) +} +func (m *SortedSubRanges) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + if deterministic { + return xxx_messageInfo_SortedSubRanges.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 *SortedSubRanges) XXX_Merge(src proto.Message) { + xxx_messageInfo_SortedSubRanges.Merge(m, src) +} +func (m *SortedSubRanges) XXX_Size() int { + return m.Size() +} +func (m *SortedSubRanges) XXX_DiscardUnknown() { + xxx_messageInfo_SortedSubRanges.DiscardUnknown(m) +} + +var xxx_messageInfo_SortedSubRanges proto.InternalMessageInfo + +func (m *SortedSubRanges) GetSubRanges() []*kvrpcpb.KeyRange { + if m != nil { + return m.SubRanges + } + return nil +} + type BackupRequest struct { ClusterId uint64 `protobuf:"varint,1,opt,name=cluster_id,json=clusterId,proto3" json:"cluster_id,omitempty"` StartKey []byte `protobuf:"bytes,2,opt,name=start_key,json=startKey,proto3" json:"start_key,omitempty"` @@ -1870,6 +1994,9 @@ type BackupRequest struct { // with checkpoint, some subintervals of the range have been backed up and recorded. // only the remaining sub ranges of the range need to be backed up this time. SubRanges []*kvrpcpb.KeyRange `protobuf:"bytes,16,rep,name=sub_ranges,json=subRanges,proto3" json:"sub_ranges,omitempty"` + // only ranges in the same groups can be merged into one SST file. + // the ranges in each groups are sorted. + SortedSubRangesGroups []*SortedSubRanges `protobuf:"bytes,21,rep,name=sorted_sub_ranges_groups,json=sortedSubRangesGroups,proto3" json:"sorted_sub_ranges_groups,omitempty"` // replica_read indicates whether to use replica read for backup. // If it is false, the backup will only read data from leader. // If it is true, the backup will read data from both leader and follower. @@ -1886,7 +2013,7 @@ func (m *BackupRequest) Reset() { *m = BackupRequest{} } func (m *BackupRequest) String() string { return proto.CompactTextString(m) } func (*BackupRequest) ProtoMessage() {} func (*BackupRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_483d1f48d58a4885, []int{20} + return fileDescriptor_483d1f48d58a4885, []int{22} } func (m *BackupRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2020,6 +2147,13 @@ func (m *BackupRequest) GetSubRanges() []*kvrpcpb.KeyRange { return nil } +func (m *BackupRequest) GetSortedSubRangesGroups() []*SortedSubRanges { + if m != nil { + return m.SortedSubRangesGroups + } + return nil +} + func (m *BackupRequest) GetReplicaRead() bool { if m != nil { return m.ReplicaRead @@ -2070,7 +2204,7 @@ func (m *StreamBackupTaskInfo) Reset() { *m = StreamBackupTaskInfo{} } func (m *StreamBackupTaskInfo) String() string { return proto.CompactTextString(m) } func (*StreamBackupTaskInfo) ProtoMessage() {} func (*StreamBackupTaskInfo) Descriptor() ([]byte, []int) { - return fileDescriptor_483d1f48d58a4885, []int{21} + return fileDescriptor_483d1f48d58a4885, []int{23} } func (m *StreamBackupTaskInfo) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2164,7 +2298,7 @@ func (m *StorageBackend) Reset() { *m = StorageBackend{} } func (m *StorageBackend) String() string { return proto.CompactTextString(m) } func (*StorageBackend) ProtoMessage() {} func (*StorageBackend) Descriptor() ([]byte, []int) { - return fileDescriptor_483d1f48d58a4885, []int{22} + return fileDescriptor_483d1f48d58a4885, []int{24} } func (m *StorageBackend) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2306,7 +2440,7 @@ func (m *Noop) Reset() { *m = Noop{} } func (m *Noop) String() string { return proto.CompactTextString(m) } func (*Noop) ProtoMessage() {} func (*Noop) Descriptor() ([]byte, []int) { - return fileDescriptor_483d1f48d58a4885, []int{23} + return fileDescriptor_483d1f48d58a4885, []int{25} } func (m *Noop) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2344,7 +2478,7 @@ func (m *Local) Reset() { *m = Local{} } func (m *Local) String() string { return proto.CompactTextString(m) } func (*Local) ProtoMessage() {} func (*Local) Descriptor() ([]byte, []int) { - return fileDescriptor_483d1f48d58a4885, []int{24} + return fileDescriptor_483d1f48d58a4885, []int{26} } func (m *Local) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2407,7 +2541,7 @@ func (m *S3) Reset() { *m = S3{} } func (m *S3) String() string { return proto.CompactTextString(m) } func (*S3) ProtoMessage() {} func (*S3) Descriptor() ([]byte, []int) { - return fileDescriptor_483d1f48d58a4885, []int{25} + return fileDescriptor_483d1f48d58a4885, []int{27} } func (m *S3) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2575,7 +2709,7 @@ func (m *GCS) Reset() { *m = GCS{} } func (m *GCS) String() string { return proto.CompactTextString(m) } func (*GCS) ProtoMessage() {} func (*GCS) Descriptor() ([]byte, []int) { - return fileDescriptor_483d1f48d58a4885, []int{26} + return fileDescriptor_483d1f48d58a4885, []int{28} } func (m *GCS) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2658,7 +2792,7 @@ func (m *AzureCustomerKey) Reset() { *m = AzureCustomerKey{} } func (m *AzureCustomerKey) String() string { return proto.CompactTextString(m) } func (*AzureCustomerKey) ProtoMessage() {} func (*AzureCustomerKey) Descriptor() ([]byte, []int) { - return fileDescriptor_483d1f48d58a4885, []int{27} + return fileDescriptor_483d1f48d58a4885, []int{29} } func (m *AzureCustomerKey) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2755,7 +2889,7 @@ func (m *AzureBlobStorage) Reset() { *m = AzureBlobStorage{} } func (m *AzureBlobStorage) String() string { return proto.CompactTextString(m) } func (*AzureBlobStorage) ProtoMessage() {} func (*AzureBlobStorage) Descriptor() ([]byte, []int) { - return fileDescriptor_483d1f48d58a4885, []int{28} + return fileDescriptor_483d1f48d58a4885, []int{30} } func (m *AzureBlobStorage) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2859,7 +2993,7 @@ func (m *Bucket) Reset() { *m = Bucket{} } func (m *Bucket) String() string { return proto.CompactTextString(m) } func (*Bucket) ProtoMessage() {} func (*Bucket) Descriptor() ([]byte, []int) { - return fileDescriptor_483d1f48d58a4885, []int{29} + return fileDescriptor_483d1f48d58a4885, []int{31} } func (m *Bucket) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2934,7 +3068,7 @@ func (m *CloudDynamic) Reset() { *m = CloudDynamic{} } func (m *CloudDynamic) String() string { return proto.CompactTextString(m) } func (*CloudDynamic) ProtoMessage() {} func (*CloudDynamic) Descriptor() ([]byte, []int) { - return fileDescriptor_483d1f48d58a4885, []int{30} + return fileDescriptor_483d1f48d58a4885, []int{32} } func (m *CloudDynamic) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2994,7 +3128,7 @@ func (m *HDFS) Reset() { *m = HDFS{} } func (m *HDFS) String() string { return proto.CompactTextString(m) } func (*HDFS) ProtoMessage() {} func (*HDFS) Descriptor() ([]byte, []int) { - return fileDescriptor_483d1f48d58a4885, []int{31} + return fileDescriptor_483d1f48d58a4885, []int{33} } func (m *HDFS) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -3043,7 +3177,7 @@ func (m *BackupResponse) Reset() { *m = BackupResponse{} } func (m *BackupResponse) String() string { return proto.CompactTextString(m) } func (*BackupResponse) ProtoMessage() {} func (*BackupResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_483d1f48d58a4885, []int{32} + return fileDescriptor_483d1f48d58a4885, []int{34} } func (m *BackupResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -3117,7 +3251,7 @@ func (m *CleanupRequest) Reset() { *m = CleanupRequest{} } func (m *CleanupRequest) String() string { return proto.CompactTextString(m) } func (*CleanupRequest) ProtoMessage() {} func (*CleanupRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_483d1f48d58a4885, []int{33} + return fileDescriptor_483d1f48d58a4885, []int{35} } func (m *CleanupRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -3162,7 +3296,7 @@ func (m *CleanupResponse) Reset() { *m = CleanupResponse{} } func (m *CleanupResponse) String() string { return proto.CompactTextString(m) } func (*CleanupResponse) ProtoMessage() {} func (*CleanupResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_483d1f48d58a4885, []int{34} + return fileDescriptor_483d1f48d58a4885, []int{36} } func (m *CleanupResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -3214,7 +3348,7 @@ func (m *PrepareRequest) Reset() { *m = PrepareRequest{} } func (m *PrepareRequest) String() string { return proto.CompactTextString(m) } func (*PrepareRequest) ProtoMessage() {} func (*PrepareRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_483d1f48d58a4885, []int{35} + return fileDescriptor_483d1f48d58a4885, []int{37} } func (m *PrepareRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -3264,7 +3398,7 @@ func (m *PrepareResponse) Reset() { *m = PrepareResponse{} } func (m *PrepareResponse) String() string { return proto.CompactTextString(m) } func (*PrepareResponse) ProtoMessage() {} func (*PrepareResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_483d1f48d58a4885, []int{36} + return fileDescriptor_483d1f48d58a4885, []int{38} } func (m *PrepareResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -3328,7 +3462,7 @@ func (m *CheckAdminRequest) Reset() { *m = CheckAdminRequest{} } func (m *CheckAdminRequest) String() string { return proto.CompactTextString(m) } func (*CheckAdminRequest) ProtoMessage() {} func (*CheckAdminRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_483d1f48d58a4885, []int{37} + return fileDescriptor_483d1f48d58a4885, []int{39} } func (m *CheckAdminRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -3367,7 +3501,7 @@ func (m *CheckAdminResponse) Reset() { *m = CheckAdminResponse{} } func (m *CheckAdminResponse) String() string { return proto.CompactTextString(m) } func (*CheckAdminResponse) ProtoMessage() {} func (*CheckAdminResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_483d1f48d58a4885, []int{38} + return fileDescriptor_483d1f48d58a4885, []int{40} } func (m *CheckAdminResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -3428,7 +3562,7 @@ func (m *ExternalStorageRestoreRequest) Reset() { *m = ExternalStorageRe func (m *ExternalStorageRestoreRequest) String() string { return proto.CompactTextString(m) } func (*ExternalStorageRestoreRequest) ProtoMessage() {} func (*ExternalStorageRestoreRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_483d1f48d58a4885, []int{39} + return fileDescriptor_483d1f48d58a4885, []int{41} } func (m *ExternalStorageRestoreRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -3492,7 +3626,7 @@ func (m *ExternalStorageRestoreResponse) Reset() { *m = ExternalStorageR func (m *ExternalStorageRestoreResponse) String() string { return proto.CompactTextString(m) } func (*ExternalStorageRestoreResponse) ProtoMessage() {} func (*ExternalStorageRestoreResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_483d1f48d58a4885, []int{40} + return fileDescriptor_483d1f48d58a4885, []int{42} } func (m *ExternalStorageRestoreResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -3531,7 +3665,7 @@ func (m *ExternalStorageSaveRequest) Reset() { *m = ExternalStorageSaveR func (m *ExternalStorageSaveRequest) String() string { return proto.CompactTextString(m) } func (*ExternalStorageSaveRequest) ProtoMessage() {} func (*ExternalStorageSaveRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_483d1f48d58a4885, []int{41} + return fileDescriptor_483d1f48d58a4885, []int{43} } func (m *ExternalStorageSaveRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -3588,7 +3722,7 @@ func (m *ExternalStorageSaveResponse) Reset() { *m = ExternalStorageSave func (m *ExternalStorageSaveResponse) String() string { return proto.CompactTextString(m) } func (*ExternalStorageSaveResponse) ProtoMessage() {} func (*ExternalStorageSaveResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_483d1f48d58a4885, []int{42} + return fileDescriptor_483d1f48d58a4885, []int{44} } func (m *ExternalStorageSaveResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -3632,7 +3766,7 @@ func (m *Metadata) Reset() { *m = Metadata{} } func (m *Metadata) String() string { return proto.CompactTextString(m) } func (*Metadata) ProtoMessage() {} func (*Metadata) Descriptor() ([]byte, []int) { - return fileDescriptor_483d1f48d58a4885, []int{43} + return fileDescriptor_483d1f48d58a4885, []int{45} } func (m *Metadata) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -3731,7 +3865,7 @@ func (m *DataFileGroup) Reset() { *m = DataFileGroup{} } func (m *DataFileGroup) String() string { return proto.CompactTextString(m) } func (*DataFileGroup) ProtoMessage() {} func (*DataFileGroup) Descriptor() ([]byte, []int) { - return fileDescriptor_483d1f48d58a4885, []int{44} + return fileDescriptor_483d1f48d58a4885, []int{46} } func (m *DataFileGroup) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -3866,7 +4000,7 @@ func (m *DataFileInfo) Reset() { *m = DataFileInfo{} } func (m *DataFileInfo) String() string { return proto.CompactTextString(m) } func (*DataFileInfo) ProtoMessage() {} func (*DataFileInfo) Descriptor() ([]byte, []int) { - return fileDescriptor_483d1f48d58a4885, []int{45} + return fileDescriptor_483d1f48d58a4885, []int{47} } func (m *DataFileInfo) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -4071,7 +4205,7 @@ func (m *StreamBackupError) Reset() { *m = StreamBackupError{} } func (m *StreamBackupError) String() string { return proto.CompactTextString(m) } func (*StreamBackupError) ProtoMessage() {} func (*StreamBackupError) Descriptor() ([]byte, []int) { - return fileDescriptor_483d1f48d58a4885, []int{46} + return fileDescriptor_483d1f48d58a4885, []int{48} } func (m *StreamBackupError) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -4137,7 +4271,7 @@ func (m *Span) Reset() { *m = Span{} } func (m *Span) String() string { return proto.CompactTextString(m) } func (*Span) ProtoMessage() {} func (*Span) Descriptor() ([]byte, []int) { - return fileDescriptor_483d1f48d58a4885, []int{47} + return fileDescriptor_483d1f48d58a4885, []int{49} } func (m *Span) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -4189,7 +4323,7 @@ func (m *SpansOfFile) Reset() { *m = SpansOfFile{} } func (m *SpansOfFile) String() string { return proto.CompactTextString(m) } func (*SpansOfFile) ProtoMessage() {} func (*SpansOfFile) Descriptor() ([]byte, []int) { - return fileDescriptor_483d1f48d58a4885, []int{48} + return fileDescriptor_483d1f48d58a4885, []int{50} } func (m *SpansOfFile) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -4260,7 +4394,7 @@ func (m *LogFileSubcompactionMeta) Reset() { *m = LogFileSubcompactionMe func (m *LogFileSubcompactionMeta) String() string { return proto.CompactTextString(m) } func (*LogFileSubcompactionMeta) ProtoMessage() {} func (*LogFileSubcompactionMeta) Descriptor() ([]byte, []int) { - return fileDescriptor_483d1f48d58a4885, []int{49} + return fileDescriptor_483d1f48d58a4885, []int{51} } func (m *LogFileSubcompactionMeta) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -4389,7 +4523,7 @@ func (m *LogFileSubcompaction) Reset() { *m = LogFileSubcompaction{} } func (m *LogFileSubcompaction) String() string { return proto.CompactTextString(m) } func (*LogFileSubcompaction) ProtoMessage() {} func (*LogFileSubcompaction) Descriptor() ([]byte, []int) { - return fileDescriptor_483d1f48d58a4885, []int{50} + return fileDescriptor_483d1f48d58a4885, []int{52} } func (m *LogFileSubcompaction) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -4453,7 +4587,7 @@ func (m *RegionMetaHint) Reset() { *m = RegionMetaHint{} } func (m *RegionMetaHint) String() string { return proto.CompactTextString(m) } func (*RegionMetaHint) ProtoMessage() {} func (*RegionMetaHint) Descriptor() ([]byte, []int) { - return fileDescriptor_483d1f48d58a4885, []int{51} + return fileDescriptor_483d1f48d58a4885, []int{53} } func (m *RegionMetaHint) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -4513,7 +4647,7 @@ func (m *LogFileSubcompactions) Reset() { *m = LogFileSubcompactions{} } func (m *LogFileSubcompactions) String() string { return proto.CompactTextString(m) } func (*LogFileSubcompactions) ProtoMessage() {} func (*LogFileSubcompactions) Descriptor() ([]byte, []int) { - return fileDescriptor_483d1f48d58a4885, []int{52} + return fileDescriptor_483d1f48d58a4885, []int{54} } func (m *LogFileSubcompactions) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -4570,7 +4704,7 @@ func (m *LogFileCompaction) Reset() { *m = LogFileCompaction{} } func (m *LogFileCompaction) String() string { return proto.CompactTextString(m) } func (*LogFileCompaction) ProtoMessage() {} func (*LogFileCompaction) Descriptor() ([]byte, []int) { - return fileDescriptor_483d1f48d58a4885, []int{53} + return fileDescriptor_483d1f48d58a4885, []int{55} } func (m *LogFileCompaction) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -4667,7 +4801,7 @@ func (m *MetaEdit) Reset() { *m = MetaEdit{} } func (m *MetaEdit) String() string { return proto.CompactTextString(m) } func (*MetaEdit) ProtoMessage() {} func (*MetaEdit) Descriptor() ([]byte, []int) { - return fileDescriptor_483d1f48d58a4885, []int{54} + return fileDescriptor_483d1f48d58a4885, []int{56} } func (m *MetaEdit) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -4738,7 +4872,7 @@ func (m *DeleteSpansOfFile) Reset() { *m = DeleteSpansOfFile{} } func (m *DeleteSpansOfFile) String() string { return proto.CompactTextString(m) } func (*DeleteSpansOfFile) ProtoMessage() {} func (*DeleteSpansOfFile) Descriptor() ([]byte, []int) { - return fileDescriptor_483d1f48d58a4885, []int{55} + return fileDescriptor_483d1f48d58a4885, []int{57} } func (m *DeleteSpansOfFile) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -4802,7 +4936,7 @@ func (m *Migration) Reset() { *m = Migration{} } func (m *Migration) String() string { return proto.CompactTextString(m) } func (*Migration) ProtoMessage() {} func (*Migration) Descriptor() ([]byte, []int) { - return fileDescriptor_483d1f48d58a4885, []int{56} + return fileDescriptor_483d1f48d58a4885, []int{58} } func (m *Migration) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -4885,6 +5019,7 @@ func init() { proto.RegisterType((*PrepareSnapshotBackupResponse)(nil), "backup.PrepareSnapshotBackupResponse") proto.RegisterType((*BackupMeta)(nil), "backup.BackupMeta") proto.RegisterType((*BackupRange)(nil), "backup.BackupRange") + proto.RegisterType((*TableMeta)(nil), "backup.TableMeta") proto.RegisterType((*File)(nil), "backup.File") proto.RegisterType((*MetaFile)(nil), "backup.MetaFile") proto.RegisterType((*PlacementPolicy)(nil), "backup.PlacementPolicy") @@ -4901,6 +5036,7 @@ func init() { proto.RegisterType((*StreamBackupTaskSecurityConfig)(nil), "backup.StreamBackupTaskSecurityConfig") proto.RegisterType((*CipherInfo)(nil), "backup.CipherInfo") proto.RegisterType((*MasterKeyConfig)(nil), "backup.MasterKeyConfig") + proto.RegisterType((*SortedSubRanges)(nil), "backup.SortedSubRanges") proto.RegisterType((*BackupRequest)(nil), "backup.BackupRequest") proto.RegisterType((*StreamBackupTaskInfo)(nil), "backup.StreamBackupTaskInfo") proto.RegisterType((*StorageBackend)(nil), "backup.StorageBackend") @@ -4944,294 +5080,300 @@ func init() { func init() { proto.RegisterFile("brpb.proto", fileDescriptor_483d1f48d58a4885) } var fileDescriptor_483d1f48d58a4885 = []byte{ - // 4581 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xbc, 0x3b, 0x4d, 0x6f, 0x1c, 0x47, - 0x76, 0xec, 0xf9, 0x9e, 0x37, 0x9f, 0x2c, 0x52, 0xd2, 0x98, 0xb6, 0x28, 0xba, 0x65, 0x6b, 0x19, - 0x7a, 0xc5, 0xb5, 0x25, 0xaf, 0x56, 0x89, 0x37, 0x30, 0xf8, 0x25, 0x93, 0x96, 0x28, 0x31, 0x4d, - 0xda, 0x8b, 0x18, 0x08, 0x1a, 0x3d, 0xdd, 0x35, 0x9c, 0x5e, 0xf6, 0x74, 0xf7, 0x76, 0xd5, 0x8c, - 0x44, 0x1f, 0x72, 0xc8, 0xdd, 0xf0, 0x6e, 0x90, 0x43, 0xfe, 0x40, 0x80, 0x1c, 0x12, 0x20, 0xd7, - 0x9c, 0x92, 0x43, 0x82, 0x6c, 0x90, 0x00, 0xf1, 0x21, 0x87, 0x3d, 0x06, 0x36, 0x92, 0x7f, 0x11, - 0x20, 0xa8, 0x57, 0x55, 0x3d, 0xdd, 0xc3, 0x21, 0x25, 0x39, 0x8b, 0x3d, 0x71, 0xea, 0xbd, 0x57, - 0x55, 0xaf, 0xde, 0x57, 0xbd, 0xf7, 0xaa, 0x09, 0xd0, 0x4f, 0xe2, 0xfe, 0x66, 0x9c, 0x44, 0x3c, - 0x22, 0x95, 0xbe, 0xe3, 0x9e, 0x8d, 0xe3, 0x95, 0xd6, 0xd9, 0x24, 0x89, 0x5d, 0x0d, 0x5e, 0x69, - 0xd1, 0x24, 0x89, 0x52, 0xaa, 0x95, 0xe6, 0x88, 0x72, 0x27, 0x1d, 0x11, 0x1a, 0xba, 0xc9, 0x79, - 0xcc, 0xfd, 0x28, 0x4c, 0x61, 0xcb, 0xa7, 0xd1, 0x69, 0x84, 0x3f, 0x7f, 0x24, 0x7e, 0x29, 0x68, - 0x27, 0x19, 0x33, 0x8e, 0x3f, 0x25, 0xc0, 0xfc, 0x1b, 0x03, 0xde, 0x3a, 0x4a, 0x68, 0xec, 0x24, - 0xf4, 0x38, 0x74, 0x62, 0x36, 0x8c, 0xf8, 0x36, 0x32, 0x60, 0xd1, 0x5f, 0x8c, 0x29, 0xe3, 0xe4, - 0x21, 0x14, 0xf8, 0x79, 0xcf, 0x58, 0x33, 0xd6, 0xdb, 0xf7, 0xd6, 0x37, 0x25, 0x73, 0x9b, 0x57, - 0xcd, 0x38, 0x39, 0x8f, 0xa9, 0x55, 0xe0, 0xe7, 0x64, 0x1d, 0xaa, 0x09, 0x3d, 0xf5, 0xa3, 0x90, - 0xf5, 0x0a, 0x6b, 0xc5, 0xf5, 0xc6, 0xbd, 0xf6, 0xa6, 0xe2, 0xda, 0x42, 0xb0, 0xa5, 0xd1, 0x64, - 0x1d, 0xba, 0x01, 0x75, 0x18, 0xb5, 0xfd, 0xd0, 0x66, 0xd4, 0x8d, 0x42, 0x8f, 0xf5, 0x8a, 0x6b, - 0xc6, 0x7a, 0xc9, 0x6a, 0x23, 0xfc, 0x20, 0x3c, 0x96, 0x50, 0xf3, 0x3f, 0x0d, 0xb8, 0x79, 0xc9, - 0xe6, 0x2c, 0x8e, 0x42, 0x46, 0xc9, 0x83, 0x0c, 0xbf, 0x77, 0xae, 0xe4, 0x77, 0x6f, 0x42, 0xc3, - 0x29, 0xb7, 0x77, 0xa0, 0x22, 0xd9, 0xe9, 0x15, 0xd6, 0x8c, 0x39, 0xcc, 0x2a, 0x2c, 0x79, 0x07, - 0xca, 0xa8, 0x0a, 0x64, 0x50, 0x90, 0x69, 0xc5, 0xec, 0x89, 0xbf, 0x96, 0x44, 0x92, 0xbb, 0xb0, - 0x14, 0x38, 0x8c, 0xdb, 0xea, 0x58, 0xcc, 0x9e, 0x38, 0x81, 0xef, 0xf5, 0x4a, 0x6b, 0xc6, 0x7a, - 0xcd, 0xea, 0x0a, 0xd4, 0x13, 0x3c, 0x18, 0xfb, 0x5c, 0xc0, 0xcd, 0xff, 0xae, 0x02, 0x48, 0xa6, - 0x0e, 0x29, 0x77, 0xc8, 0x4d, 0x00, 0x37, 0x18, 0x33, 0x4e, 0x13, 0xdb, 0xf7, 0xf0, 0x2c, 0x25, - 0xab, 0xae, 0x20, 0x07, 0x1e, 0xf9, 0x01, 0x74, 0x34, 0x7a, 0x42, 0x13, 0xa6, 0x79, 0xae, 0x5b, - 0x6d, 0x05, 0xfe, 0x5c, 0x42, 0xc5, 0x3a, 0xfd, 0x29, 0x4d, 0x03, 0x69, 0xea, 0xfd, 0x14, 0xdd, - 0x83, 0xaa, 0xc6, 0x35, 0xd7, 0x8c, 0xf5, 0xb2, 0xa5, 0x87, 0xc4, 0x84, 0xf2, 0xc0, 0x0f, 0x28, - 0xeb, 0x95, 0x50, 0x71, 0x4d, 0x2d, 0xc7, 0x47, 0x7e, 0x40, 0x2d, 0x89, 0x22, 0x3f, 0x02, 0x10, - 0x3f, 0x6c, 0x3f, 0xf4, 0xe8, 0x8b, 0x5e, 0x0b, 0xa5, 0xd1, 0xd5, 0x84, 0xe2, 0x18, 0x48, 0x5c, - 0x17, 0x34, 0x07, 0x82, 0x84, 0xdc, 0x86, 0x16, 0xe3, 0x4e, 0xc2, 0x53, 0x86, 0xca, 0x78, 0xb0, - 0x26, 0x02, 0x35, 0x4f, 0xb7, 0xa0, 0x41, 0x43, 0x2f, 0x25, 0xa9, 0x20, 0x09, 0xd0, 0xd0, 0xd3, - 0x04, 0xeb, 0x50, 0x65, 0xee, 0x90, 0x8e, 0x1c, 0xd6, 0xab, 0x2a, 0xab, 0x52, 0x7b, 0x1e, 0x23, - 0xd8, 0xd2, 0x68, 0x72, 0x1f, 0x9a, 0xf2, 0xa7, 0x62, 0xb1, 0x7d, 0x09, 0x8b, 0x0d, 0x49, 0x25, - 0x99, 0x5c, 0x81, 0xba, 0xcf, 0xec, 0xc4, 0x79, 0x6e, 0x9f, 0x4d, 0x7a, 0x35, 0x54, 0x57, 0xd5, - 0x67, 0x96, 0xf3, 0xfc, 0xf1, 0x44, 0x9c, 0x58, 0x20, 0x12, 0x27, 0x3c, 0xa5, 0xac, 0x57, 0xc7, - 0xdd, 0xd3, 0xe5, 0x2c, 0xe7, 0xb9, 0x25, 0x10, 0x56, 0x3d, 0x51, 0xbf, 0x18, 0x79, 0x08, 0x9d, - 0x74, 0x82, 0x62, 0xa2, 0x73, 0x09, 0x13, 0x2d, 0x3d, 0x4b, 0xb2, 0x41, 0xa0, 0xe4, 0x79, 0x01, - 0xeb, 0xc1, 0x9a, 0xb1, 0xde, 0xb4, 0xf0, 0x37, 0xf9, 0x00, 0x1a, 0x9e, 0x17, 0xc8, 0x75, 0x28, - 0xeb, 0x75, 0x2f, 0x59, 0x09, 0x3c, 0x2f, 0x38, 0x90, 0x34, 0x42, 0xe4, 0x12, 0x6d, 0x27, 0x94, - 0x8d, 0x03, 0xde, 0x5b, 0x44, 0x1b, 0x68, 0xf6, 0xb5, 0xcf, 0x8c, 0x03, 0x4e, 0x3e, 0x84, 0x86, - 0x13, 0xfb, 0xa9, 0xc8, 0x09, 0xba, 0xce, 0xd2, 0xa6, 0x8e, 0x3f, 0x5b, 0x47, 0x07, 0x4a, 0xf6, - 0x16, 0x38, 0xb1, 0xaf, 0xf5, 0x70, 0x1f, 0x6a, 0x71, 0x14, 0xf8, 0xae, 0x4f, 0x59, 0x6f, 0x09, - 0x45, 0x71, 0x23, 0xf5, 0xb6, 0xc0, 0x71, 0xe9, 0x88, 0x86, 0xfc, 0x48, 0x10, 0x9c, 0x5b, 0x29, - 0x21, 0xf9, 0x10, 0xae, 0x87, 0xf4, 0xb9, 0xed, 0x46, 0x41, 0xe0, 0x88, 0x68, 0xc5, 0x6c, 0x1a, - 0x3a, 0xfd, 0x80, 0x7a, 0xbd, 0x65, 0x64, 0x6c, 0x39, 0xa4, 0xcf, 0x77, 0x52, 0xe4, 0x9e, 0xc4, - 0x29, 0x9d, 0xf0, 0x17, 0xa1, 0xd0, 0xc9, 0x35, 0xad, 0x93, 0x93, 0x17, 0xe1, 0xe3, 0x09, 0xd9, - 0x80, 0xaa, 0xd7, 0xb7, 0x47, 0x4e, 0xcc, 0x7a, 0xd7, 0x91, 0x8b, 0xc5, 0x94, 0x0b, 0x9f, 0x27, - 0xbb, 0xdb, 0x87, 0x4e, 0x6c, 0x55, 0xbc, 0xfe, 0xa1, 0x13, 0x33, 0x72, 0x07, 0x4a, 0xa3, 0xc8, - 0xa3, 0xbd, 0x1b, 0x78, 0x42, 0xa2, 0x09, 0x95, 0xe3, 0x45, 0x1e, 0xb5, 0x10, 0x4f, 0xde, 0x83, - 0x8a, 0xd2, 0x71, 0x0f, 0x97, 0x5c, 0xca, 0x53, 0x4a, 0x35, 0x2b, 0x12, 0x61, 0xb0, 0x4a, 0xc4, - 0xcc, 0xff, 0x92, 0xf6, 0xde, 0x90, 0x06, 0x2b, 0x41, 0xc7, 0xfe, 0x97, 0xf4, 0xd3, 0x52, 0xad, - 0xd8, 0x2d, 0x59, 0xa5, 0xd8, 0xe1, 0x43, 0xf3, 0x14, 0x1a, 0x99, 0x35, 0xc8, 0x9b, 0x50, 0x97, - 0x1e, 0x71, 0x46, 0x65, 0xc8, 0x6a, 0x5a, 0x35, 0x04, 0x3c, 0xa6, 0xe7, 0xe4, 0x06, 0x54, 0x85, - 0x27, 0x08, 0x54, 0x01, 0x51, 0x15, 0x1a, 0x7a, 0x02, 0x91, 0x3a, 0x67, 0xf1, 0x52, 0xe7, 0x34, - 0xff, 0xb5, 0x00, 0x25, 0x31, 0x16, 0x86, 0x14, 0x3a, 0x23, 0x8a, 0xab, 0xd7, 0x2d, 0xfc, 0x4d, - 0xae, 0x43, 0x85, 0x0d, 0x9d, 0x7b, 0x3f, 0x7e, 0xa0, 0x17, 0x96, 0xa3, 0x3c, 0x3b, 0xc5, 0xcb, - 0xd9, 0x29, 0xe5, 0xd8, 0xf9, 0xed, 0xb8, 0xf5, 0x0a, 0xd4, 0xdc, 0xc4, 0x7d, 0xf0, 0xe1, 0x8b, - 0x28, 0xe9, 0x55, 0x11, 0x9b, 0x8e, 0x05, 0x5f, 0x3c, 0xe2, 0x4e, 0x60, 0x9f, 0x4d, 0x18, 0xfa, - 0x64, 0xc9, 0xaa, 0x21, 0xe0, 0xf1, 0x04, 0xe5, 0x2f, 0x91, 0xfd, 0x73, 0x8e, 0x5e, 0x89, 0x2b, - 0x23, 0x68, 0x5b, 0x40, 0x48, 0x1b, 0x0a, 0xee, 0x00, 0x1d, 0xa9, 0x6e, 0x15, 0xdc, 0x81, 0x90, - 0x08, 0x6a, 0xaa, 0x81, 0x94, 0xf8, 0x5b, 0xec, 0xe0, 0xfa, 0xf1, 0x50, 0xc4, 0xdb, 0x09, 0xc6, - 0xc2, 0xa6, 0x55, 0x93, 0x80, 0x83, 0x89, 0xf9, 0x55, 0x01, 0x6a, 0xda, 0xbb, 0xc8, 0x7b, 0x00, - 0xe2, 0x5e, 0xb0, 0xa5, 0x06, 0x8c, 0x39, 0x1a, 0xa8, 0x8f, 0x14, 0x2d, 0x13, 0xc4, 0x9e, 0x93, - 0x12, 0x17, 0xe6, 0x11, 0x0b, 0xbc, 0x24, 0xce, 0x04, 0xb6, 0xe2, 0xd5, 0x81, 0x2d, 0x1f, 0x87, - 0x4a, 0xaf, 0x12, 0x87, 0xd2, 0x30, 0x20, 0xe7, 0x54, 0x2e, 0xb7, 0x6b, 0x1d, 0x1b, 0xe4, 0x4c, - 0x1d, 0x87, 0xca, 0x6b, 0x45, 0x1d, 0x87, 0xcc, 0x77, 0xa1, 0x33, 0xe3, 0xe1, 0x82, 0xcc, 0x0f, - 0x07, 0x91, 0xb2, 0x61, 0xfc, 0x6d, 0x3e, 0x01, 0x38, 0xe6, 0x0e, 0x67, 0xdb, 0x41, 0xe4, 0x9e, - 0x09, 0x35, 0xc5, 0xc3, 0x73, 0xe6, 0xbb, 0x4e, 0xa0, 0xef, 0xb4, 0xa2, 0x05, 0x1a, 0x74, 0xe0, - 0x89, 0xbb, 0xea, 0xe7, 0x2c, 0x0a, 0x6d, 0x2e, 0x7c, 0x5e, 0x19, 0x66, 0x5d, 0x40, 0x4e, 0x04, - 0xc0, 0xfc, 0x09, 0xd4, 0x71, 0x35, 0x54, 0xc2, 0x06, 0x54, 0xfa, 0x62, 0x55, 0xad, 0x80, 0xd4, - 0x95, 0xa7, 0x1b, 0x5a, 0x8a, 0xc2, 0xfc, 0x3b, 0x03, 0xda, 0xe9, 0xcc, 0x34, 0xb8, 0xbe, 0xb2, - 0x4f, 0xbc, 0x01, 0x35, 0x61, 0x21, 0x36, 0x0d, 0x5d, 0x95, 0x92, 0x54, 0xc5, 0x78, 0x2f, 0x74, - 0x53, 0x54, 0x94, 0xf8, 0xe8, 0x12, 0x0a, 0xf5, 0x2c, 0xf1, 0xf3, 0xf6, 0x54, 0xce, 0xdb, 0x93, - 0x10, 0x85, 0x1f, 0x06, 0x7e, 0x48, 0x6d, 0xa1, 0x7c, 0xf4, 0x85, 0xa6, 0x05, 0x12, 0xb4, 0xeb, - 0x70, 0xc7, 0xfc, 0xb3, 0x02, 0x54, 0xa4, 0xce, 0x85, 0xf1, 0x7a, 0x7d, 0x25, 0xd6, 0x82, 0xd7, - 0x27, 0xcb, 0x50, 0xce, 0x0a, 0x48, 0x0e, 0x72, 0xce, 0x53, 0xbc, 0xca, 0x79, 0x4a, 0x57, 0x3b, - 0x4f, 0xf9, 0x82, 0xf3, 0xfc, 0x1e, 0x74, 0xb9, 0x3f, 0x08, 0x1c, 0x36, 0xb4, 0x13, 0x1a, 0x07, + // 4673 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xbc, 0x7b, 0xcd, 0x6f, 0x1c, 0x47, + 0x76, 0x38, 0x7b, 0xbe, 0xe7, 0xcd, 0x27, 0x8b, 0xa4, 0x34, 0xa6, 0x2d, 0x8a, 0x6e, 0xd9, 0x5a, + 0xfe, 0xb8, 0x2b, 0xae, 0x57, 0xf2, 0x6a, 0xf5, 0x8b, 0x37, 0x58, 0xf0, 0x4b, 0x26, 0x2d, 0x51, + 0x62, 0x7a, 0x68, 0x2f, 0x62, 0x20, 0x68, 0xf4, 0x74, 0xd7, 0x70, 0x7a, 0xd9, 0xd3, 0xdd, 0xdb, + 0x55, 0x43, 0x89, 0x3e, 0xe4, 0x90, 0x43, 0x6e, 0x0b, 0xef, 0x06, 0x39, 0xe4, 0x1f, 0x08, 0x90, + 0x43, 0x02, 0xe4, 0x9a, 0x53, 0x72, 0x48, 0x90, 0x05, 0x12, 0x20, 0x3e, 0xe4, 0xb0, 0xb7, 0x04, + 0x36, 0x92, 0xff, 0x62, 0x81, 0xa0, 0x5e, 0x55, 0xf5, 0x74, 0x0f, 0x87, 0x94, 0xe4, 0x04, 0x7b, + 0xe2, 0xd4, 0x7b, 0xaf, 0xaa, 0x5f, 0xbd, 0xef, 0x57, 0x55, 0x04, 0x18, 0x24, 0xf1, 0x60, 0x2b, + 0x4e, 0x22, 0x1e, 0x91, 0xca, 0xc0, 0x71, 0xcf, 0x26, 0xf1, 0x6a, 0xeb, 0xec, 0x3c, 0x89, 0x5d, + 0x0d, 0x5e, 0x6d, 0xd1, 0x24, 0x89, 0x52, 0xaa, 0xd5, 0xe6, 0x98, 0x72, 0x27, 0x1d, 0x11, 0x1a, + 0xba, 0xc9, 0x45, 0xcc, 0xfd, 0x28, 0x4c, 0x61, 0xcb, 0xa7, 0xd1, 0x69, 0x84, 0x3f, 0xbf, 0x2f, + 0x7e, 0x29, 0x68, 0x27, 0x99, 0x30, 0x8e, 0x3f, 0x25, 0xc0, 0xfc, 0x6b, 0x03, 0xde, 0x39, 0x4e, + 0x68, 0xec, 0x24, 0xb4, 0x1f, 0x3a, 0x31, 0x1b, 0x45, 0x7c, 0x07, 0x19, 0xb0, 0xe8, 0xcf, 0x27, + 0x94, 0x71, 0xf2, 0x08, 0x0a, 0xfc, 0xa2, 0x67, 0xac, 0x1b, 0x1b, 0xed, 0xfb, 0x1b, 0x5b, 0x92, + 0xb9, 0xad, 0xeb, 0x66, 0x9c, 0x5c, 0xc4, 0xd4, 0x2a, 0xf0, 0x0b, 0xb2, 0x01, 0xd5, 0x84, 0x9e, + 0xfa, 0x51, 0xc8, 0x7a, 0x85, 0xf5, 0xe2, 0x46, 0xe3, 0x7e, 0x7b, 0x4b, 0x71, 0x6d, 0x21, 0xd8, + 0xd2, 0x68, 0xb2, 0x01, 0xdd, 0x80, 0x3a, 0x8c, 0xda, 0x7e, 0x68, 0x33, 0xea, 0x46, 0xa1, 0xc7, + 0x7a, 0xc5, 0x75, 0x63, 0xa3, 0x64, 0xb5, 0x11, 0x7e, 0x18, 0xf6, 0x25, 0xd4, 0xfc, 0x77, 0x03, + 0x6e, 0x5d, 0xf1, 0x71, 0x16, 0x47, 0x21, 0xa3, 0xe4, 0x61, 0x86, 0xdf, 0xbb, 0xd7, 0xf2, 0xbb, + 0x7f, 0x4e, 0xc3, 0x29, 0xb7, 0x77, 0xa1, 0x22, 0xd9, 0xe9, 0x15, 0xd6, 0x8d, 0x39, 0xcc, 0x2a, + 0x2c, 0x79, 0x0f, 0xca, 0xa8, 0x0a, 0x64, 0x50, 0x90, 0x69, 0xc5, 0xec, 0x8b, 0xbf, 0x96, 0x44, + 0x92, 0x7b, 0xb0, 0x14, 0x38, 0x8c, 0xdb, 0x6a, 0x5b, 0xcc, 0x3e, 0x77, 0x02, 0xdf, 0xeb, 0x95, + 0xd6, 0x8d, 0x8d, 0x9a, 0xd5, 0x15, 0xa8, 0xa7, 0xb8, 0x31, 0xf6, 0x99, 0x80, 0x9b, 0xff, 0x55, + 0x05, 0x90, 0x4c, 0x1d, 0x51, 0xee, 0x90, 0x5b, 0x00, 0x6e, 0x30, 0x61, 0x9c, 0x26, 0xb6, 0xef, + 0xe1, 0x5e, 0x4a, 0x56, 0x5d, 0x41, 0x0e, 0x3d, 0xf2, 0x1d, 0xe8, 0x68, 0xf4, 0x39, 0x4d, 0x98, + 0xe6, 0xb9, 0x6e, 0xb5, 0x15, 0xf8, 0x33, 0x09, 0x15, 0xeb, 0x0c, 0xa6, 0x34, 0x0d, 0xa4, 0xa9, + 0x0f, 0x52, 0x74, 0x0f, 0xaa, 0x1a, 0xd7, 0x5c, 0x37, 0x36, 0xca, 0x96, 0x1e, 0x12, 0x13, 0xca, + 0x43, 0x3f, 0xa0, 0xac, 0x57, 0x42, 0xc5, 0x35, 0xb5, 0x1c, 0x1f, 0xfb, 0x01, 0xb5, 0x24, 0x8a, + 0x7c, 0x1f, 0x40, 0xfc, 0xb0, 0xfd, 0xd0, 0xa3, 0x2f, 0x7b, 0x2d, 0x94, 0x46, 0x57, 0x13, 0x8a, + 0x6d, 0x20, 0x71, 0x5d, 0xd0, 0x1c, 0x0a, 0x12, 0x72, 0x07, 0x5a, 0x8c, 0x3b, 0x09, 0x4f, 0x19, + 0x2a, 0xe3, 0xc6, 0x9a, 0x08, 0xd4, 0x3c, 0xdd, 0x86, 0x06, 0x0d, 0xbd, 0x94, 0xa4, 0x82, 0x24, + 0x40, 0x43, 0x4f, 0x13, 0x6c, 0x40, 0x95, 0xb9, 0x23, 0x3a, 0x76, 0x58, 0xaf, 0xaa, 0xac, 0x4a, + 0x7d, 0xb3, 0x8f, 0x60, 0x4b, 0xa3, 0xc9, 0x03, 0x68, 0xca, 0x9f, 0x8a, 0xc5, 0xf6, 0x15, 0x2c, + 0x36, 0x24, 0x95, 0x64, 0x72, 0x15, 0xea, 0x3e, 0xb3, 0x13, 0xe7, 0x85, 0x7d, 0x76, 0xde, 0xab, + 0xa1, 0xba, 0xaa, 0x3e, 0xb3, 0x9c, 0x17, 0x4f, 0xce, 0xc5, 0x8e, 0x05, 0x22, 0x71, 0xc2, 0x53, + 0xca, 0x7a, 0x75, 0xfc, 0x7a, 0xba, 0x9c, 0xe5, 0xbc, 0xb0, 0x04, 0xc2, 0xaa, 0x27, 0xea, 0x17, + 0x23, 0x8f, 0xa0, 0x93, 0x4e, 0x50, 0x4c, 0x74, 0xae, 0x60, 0xa2, 0xa5, 0x67, 0x49, 0x36, 0x08, + 0x94, 0x3c, 0x2f, 0x60, 0x3d, 0x58, 0x37, 0x36, 0x9a, 0x16, 0xfe, 0x26, 0x3f, 0x80, 0x86, 0xe7, + 0x05, 0x72, 0x1d, 0xca, 0x7a, 0xdd, 0x2b, 0x56, 0x02, 0xcf, 0x0b, 0x0e, 0x25, 0x8d, 0x10, 0xb9, + 0x44, 0xdb, 0x09, 0x65, 0x93, 0x80, 0xf7, 0x16, 0xd1, 0x06, 0x9a, 0x03, 0xed, 0x33, 0x93, 0x80, + 0x93, 0x0f, 0xa1, 0xe1, 0xc4, 0x7e, 0x2a, 0x72, 0x82, 0xae, 0xb3, 0xb4, 0xa5, 0xe3, 0xcf, 0xf6, + 0xf1, 0xa1, 0x92, 0xbd, 0x05, 0x4e, 0xec, 0x6b, 0x3d, 0x3c, 0x80, 0x5a, 0x1c, 0x05, 0xbe, 0xeb, + 0x53, 0xd6, 0x5b, 0x42, 0x51, 0xdc, 0x4c, 0xbd, 0x2d, 0x70, 0x5c, 0x3a, 0xa6, 0x21, 0x3f, 0x16, + 0x04, 0x17, 0x56, 0x4a, 0x48, 0x3e, 0x84, 0x1b, 0x21, 0x7d, 0x61, 0xbb, 0x51, 0x10, 0x38, 0x22, + 0x5a, 0x31, 0x9b, 0x86, 0xce, 0x20, 0xa0, 0x5e, 0x6f, 0x19, 0x19, 0x5b, 0x0e, 0xe9, 0x8b, 0xdd, + 0x14, 0xb9, 0x2f, 0x71, 0x4a, 0x27, 0xfc, 0x65, 0x28, 0x74, 0xb2, 0xa2, 0x75, 0x72, 0xf2, 0x32, + 0x7c, 0x72, 0x4e, 0x36, 0xa1, 0xea, 0x0d, 0xec, 0xb1, 0x13, 0xb3, 0xde, 0x0d, 0xe4, 0x62, 0x31, + 0xe5, 0xc2, 0xe7, 0xc9, 0xde, 0xce, 0x91, 0x13, 0x5b, 0x15, 0x6f, 0x70, 0xe4, 0xc4, 0x8c, 0xdc, + 0x85, 0xd2, 0x38, 0xf2, 0x68, 0xef, 0x26, 0xee, 0x90, 0x68, 0x42, 0xe5, 0x78, 0x91, 0x47, 0x2d, + 0xc4, 0x93, 0xef, 0x42, 0x45, 0xe9, 0xb8, 0x87, 0x4b, 0x2e, 0xe5, 0x29, 0xa5, 0x9a, 0x15, 0x89, + 0x30, 0x58, 0x25, 0x62, 0xe6, 0x7f, 0x41, 0x7b, 0x6f, 0x49, 0x83, 0x95, 0xa0, 0xbe, 0xff, 0x05, + 0xfd, 0xa4, 0x54, 0x2b, 0x76, 0x4b, 0x56, 0x29, 0x76, 0xf8, 0xc8, 0x3c, 0x85, 0x46, 0x66, 0x0d, + 0xf2, 0x36, 0xd4, 0xa5, 0x47, 0x9c, 0x51, 0x19, 0xb2, 0x9a, 0x56, 0x0d, 0x01, 0x4f, 0xe8, 0x05, + 0xb9, 0x09, 0x55, 0xe1, 0x09, 0x02, 0x55, 0x40, 0x54, 0x85, 0x86, 0x9e, 0x40, 0xa4, 0xce, 0x59, + 0xbc, 0xd2, 0x39, 0xcd, 0x3f, 0x35, 0xa0, 0x7e, 0x22, 0xa4, 0x87, 0xf1, 0xe4, 0x36, 0x34, 0xe2, + 0xd1, 0x05, 0xf3, 0x5d, 0x27, 0xd0, 0x01, 0xa5, 0x68, 0x81, 0x06, 0x1d, 0x0a, 0x09, 0xd7, 0xdc, + 0xc4, 0x7d, 0xf8, 0xe1, 0xcb, 0x28, 0xc1, 0x8f, 0x95, 0xac, 0x74, 0x2c, 0x98, 0xe4, 0x11, 0x77, + 0x02, 0xfb, 0xec, 0x5c, 0x47, 0xe5, 0x1a, 0x02, 0x9e, 0x9c, 0xe3, 0xee, 0x25, 0x72, 0x70, 0xc1, + 0x31, 0x5c, 0xe0, 0xee, 0x11, 0xb4, 0x23, 0x20, 0xe6, 0x6f, 0x0b, 0x50, 0x12, 0x8c, 0x09, 0x8b, + 0x0e, 0x9d, 0x31, 0xc5, 0x8f, 0xd7, 0x2d, 0xfc, 0x4d, 0x6e, 0x40, 0x85, 0x8d, 0x9c, 0xfb, 0x3f, + 0x7c, 0xa8, 0x77, 0x28, 0x47, 0x79, 0xb9, 0x14, 0xaf, 0x96, 0x4b, 0x29, 0x27, 0x97, 0xff, 0x9b, + 0xf8, 0x92, 0x15, 0x45, 0xf5, 0x3a, 0x51, 0xd4, 0xae, 0x17, 0x45, 0x7d, 0x56, 0x14, 0xe4, 0x3e, + 0x34, 0xb8, 0x50, 0x89, 0x2d, 0x12, 0x0b, 0xeb, 0xb5, 0xf2, 0xe6, 0x9a, 0x6a, 0xcb, 0x02, 0xae, + 0x7f, 0x32, 0xd2, 0x86, 0x82, 0x3b, 0xc4, 0x28, 0x50, 0xb7, 0x0a, 0xee, 0x50, 0x48, 0x11, 0xcd, + 0xac, 0x81, 0xab, 0xe3, 0x6f, 0xc1, 0x95, 0xeb, 0xc7, 0x23, 0x91, 0x2c, 0xce, 0x31, 0x90, 0x37, + 0xad, 0x9a, 0x04, 0x1c, 0x9e, 0x9b, 0xbf, 0x28, 0x40, 0x4d, 0x87, 0x06, 0xf2, 0x5d, 0x00, 0xf1, + 0x6d, 0x5b, 0x9a, 0x8f, 0x31, 0xc7, 0x7c, 0xea, 0x63, 0x45, 0xcb, 0x04, 0xb1, 0xe7, 0xa4, 0xc4, + 0x85, 0x79, 0xc4, 0x02, 0x2f, 0x89, 0x33, 0x51, 0xb9, 0x78, 0x7d, 0x54, 0xce, 0x07, 0xd1, 0xd2, + 0xeb, 0x04, 0xd1, 0x34, 0x86, 0xc9, 0x39, 0x95, 0xab, 0x9d, 0x52, 0x07, 0x36, 0x39, 0x53, 0x07, + 0xd1, 0xf2, 0x7a, 0x51, 0x07, 0x51, 0xf3, 0x7d, 0xe8, 0xcc, 0x84, 0x27, 0x41, 0xe6, 0x87, 0xc3, + 0x48, 0x39, 0x20, 0xfe, 0x36, 0x9f, 0x02, 0xf4, 0xb9, 0xc3, 0xd9, 0x4e, 0x10, 0xb9, 0x67, 0xaf, + 0xf6, 0x9f, 0x5b, 0x00, 0x3f, 0x63, 0x51, 0x68, 0xa3, 0xe6, 0x94, 0x31, 0xd7, 0x05, 0x04, 0xb5, + 0x6a, 0xfe, 0x08, 0xea, 0xb8, 0x1a, 0x2a, 0x61, 0x13, 0x2a, 0x03, 0xb1, 0xaa, 0x56, 0x40, 0x1a, + 0x87, 0xa6, 0x1f, 0xb4, 0x14, 0x85, 0xf9, 0xb7, 0x06, 0xb4, 0xd3, 0x99, 0x69, 0x66, 0x78, 0x6d, + 0x3f, 0x7a, 0x0b, 0x6a, 0xc2, 0x42, 0x6c, 0x1a, 0xba, 0xca, 0x73, 0xab, 0x62, 0xbc, 0x1f, 0xba, + 0x29, 0x2a, 0x4a, 0x7c, 0xe5, 0xb5, 0x88, 0x7a, 0x9e, 0xf8, 0x79, 0x7b, 0x2a, 0xe7, 0xed, 0x49, + 0x88, 0xc2, 0x0f, 0x03, 0x3f, 0xa4, 0xb6, 0x50, 0x3e, 0xfa, 0x4f, 0xd3, 0x02, 0x09, 0xda, 0x73, + 0xb8, 0x63, 0xfe, 0x49, 0x01, 0x2a, 0x52, 0xe7, 0xc2, 0x78, 0xbd, 0x81, 0x12, 0x6b, 0xc1, 0x1b, + 0x90, 0x65, 0x28, 0x67, 0x05, 0x24, 0x07, 0x39, 0x87, 0x2b, 0x5e, 0xe7, 0x70, 0xa5, 0xeb, 0x1d, + 0xae, 0x7c, 0xc9, 0xe1, 0xfe, 0x1f, 0x74, 0xb9, 0x3f, 0x0c, 0x1c, 0x36, 0xb2, 0x13, 0x1a, 0x07, 0xbe, 0xeb, 0x30, 0x64, 0xb8, 0x65, 0x75, 0x14, 0xdc, 0x52, 0x60, 0xc1, 0x1a, 0x13, 0x72, 0x46, - 0xf7, 0x6d, 0x5a, 0x72, 0x40, 0x7e, 0x02, 0x0d, 0xfc, 0xa1, 0xae, 0xbf, 0x1a, 0xea, 0xeb, 0x7a, - 0x4e, 0x5f, 0xa9, 0x62, 0x2c, 0x40, 0x52, 0xfc, 0x6d, 0x1e, 0x42, 0xf9, 0x60, 0xf7, 0xd0, 0x89, - 0x05, 0x8f, 0xe3, 0x98, 0xf1, 0x84, 0x3a, 0xa3, 0x8c, 0xe5, 0x68, 0xd0, 0x81, 0x27, 0x02, 0x90, - 0x17, 0x3d, 0x0f, 0xa7, 0x24, 0x05, 0x24, 0x69, 0x4e, 0x81, 0x07, 0x9e, 0xf9, 0x1c, 0x9a, 0xe2, - 0x42, 0x40, 0x63, 0x12, 0xab, 0xce, 0xb3, 0x81, 0x77, 0xa0, 0xe2, 0x7b, 0xe2, 0x2e, 0x51, 0x29, - 0x60, 0x4b, 0xb3, 0x89, 0x8c, 0x58, 0x65, 0xdf, 0x13, 0x33, 0xef, 0x02, 0xc4, 0x4e, 0xc2, 0x7d, - 0xbc, 0xa2, 0x94, 0xab, 0xce, 0x50, 0x66, 0x08, 0x4c, 0x06, 0xf5, 0xf4, 0x26, 0xfa, 0x7f, 0xec, - 0xfa, 0x43, 0xa8, 0xa0, 0xae, 0xf5, 0x8e, 0xcb, 0xd9, 0x6b, 0x4e, 0x9f, 0xca, 0x52, 0x34, 0xe6, - 0x11, 0xd4, 0x74, 0x1c, 0xf8, 0x9e, 0x97, 0x8c, 0x8c, 0x9a, 0x45, 0x1d, 0x35, 0xcd, 0x5d, 0x68, - 0xef, 0xa8, 0x04, 0x74, 0x17, 0x33, 0x5d, 0x91, 0x3d, 0xba, 0xe3, 0x24, 0xa1, 0x21, 0x57, 0x19, - 0xaa, 0x1e, 0x0a, 0x4c, 0x22, 0x6b, 0x01, 0x5c, 0xb4, 0x64, 0xe9, 0xa1, 0xf9, 0xef, 0x06, 0x94, - 0xe5, 0xec, 0x2e, 0x14, 0x47, 0xec, 0x54, 0x09, 0x42, 0xfc, 0x24, 0xdb, 0xd0, 0x9d, 0x26, 0xbd, - 0x76, 0x36, 0xc7, 0x4e, 0xcd, 0x25, 0xcf, 0xc1, 0xfe, 0x42, 0x9a, 0xf0, 0x1e, 0x78, 0x72, 0xd5, - 0x4d, 0xa8, 0x9d, 0x4d, 0xd4, 0xdc, 0x12, 0xce, 0x5d, 0x4c, 0xf3, 0x98, 0xc7, 0xf4, 0x5c, 0x4f, - 0xab, 0x9e, 0x4d, 0x24, 0xfd, 0x7d, 0x68, 0xca, 0xb4, 0x5e, 0xcd, 0x29, 0xcf, 0xcb, 0xe9, 0xf7, - 0x17, 0xac, 0x86, 0xa4, 0xc2, 0xe1, 0x76, 0x0d, 0x2a, 0x1e, 0xe5, 0x8e, 0x1f, 0x98, 0x7f, 0x6f, - 0xc0, 0xea, 0x31, 0x5a, 0x98, 0x8c, 0xa0, 0x27, 0x0e, 0x3b, 0x3b, 0xa6, 0xee, 0x38, 0xf1, 0xf9, - 0xf9, 0x4e, 0x14, 0x0e, 0x7c, 0x71, 0x2a, 0x12, 0x07, 0x8e, 0x1f, 0x72, 0xfa, 0x82, 0xa3, 0xbf, - 0xa7, 0x6a, 0xc8, 0x84, 0xad, 0x1d, 0x19, 0x1a, 0xc2, 0x41, 0xb4, 0xbf, 0x60, 0x75, 0x53, 0x7a, - 0x11, 0x0c, 0x84, 0x2e, 0xf6, 0x60, 0x71, 0xe4, 0xa0, 0x60, 0xce, 0xe8, 0xb9, 0xed, 0xe2, 0xc2, - 0xca, 0x58, 0xd2, 0x9c, 0xeb, 0x10, 0x09, 0x1e, 0x53, 0xb5, 0xef, 0xfe, 0x82, 0xd5, 0x19, 0xe5, - 0x41, 0xdb, 0x4d, 0x80, 0x69, 0x9d, 0x68, 0x06, 0x00, 0xd3, 0x6d, 0xc9, 0xc7, 0xd0, 0x50, 0x01, - 0x8b, 0x9f, 0xc7, 0x54, 0x95, 0x4f, 0xab, 0x9b, 0xb9, 0xba, 0x72, 0x2f, 0x1d, 0x1c, 0x52, 0x3e, - 0x8c, 0x3c, 0x0b, 0xe4, 0x14, 0x51, 0x42, 0x61, 0xc9, 0x22, 0x17, 0x98, 0xda, 0x92, 0x8a, 0x81, - 0x8f, 0xe9, 0xb9, 0xf9, 0x17, 0x06, 0x74, 0x66, 0x58, 0x24, 0x9f, 0x40, 0x67, 0xba, 0xfe, 0xeb, - 0xec, 0xdb, 0x9e, 0xa2, 0x71, 0xef, 0x87, 0xd0, 0x98, 0xca, 0x47, 0xdf, 0xb3, 0x37, 0xf2, 0x8b, - 0xa4, 0x9b, 0x5b, 0x90, 0xca, 0x85, 0x99, 0x5f, 0x55, 0xa0, 0x95, 0x2f, 0x77, 0x5f, 0x52, 0x7a, - 0xe5, 0x9c, 0xa9, 0x70, 0xb9, 0x33, 0x15, 0xaf, 0x4e, 0x91, 0x4a, 0x2f, 0x4f, 0x91, 0xca, 0x17, - 0x52, 0xa4, 0x9b, 0xe2, 0xda, 0xe7, 0xd4, 0x0e, 0xfc, 0x91, 0xcf, 0x55, 0x92, 0x54, 0x17, 0x90, - 0x27, 0x02, 0x40, 0xd6, 0xa0, 0xe1, 0x46, 0xa1, 0xf4, 0x41, 0xf7, 0x1c, 0xf3, 0xa4, 0x96, 0x95, - 0x05, 0x91, 0x8f, 0xa1, 0xc3, 0x78, 0x94, 0x38, 0xa7, 0xd4, 0x16, 0x56, 0x43, 0x43, 0x0f, 0xd3, - 0xa5, 0x5c, 0x3c, 0x46, 0xf4, 0xb6, 0xc4, 0x5a, 0x6d, 0x96, 0x1b, 0xe7, 0x8b, 0x23, 0xc8, 0x17, - 0x47, 0x32, 0x60, 0x34, 0xd2, 0x34, 0x4b, 0xb8, 0x73, 0x34, 0x8a, 0x13, 0xca, 0x58, 0xaa, 0xde, - 0x26, 0xaa, 0x37, 0xb5, 0xd9, 0x9d, 0x29, 0x1e, 0xcb, 0xf0, 0x8e, 0x9b, 0x07, 0x90, 0xf7, 0x60, - 0x31, 0xbb, 0x46, 0x40, 0x27, 0x34, 0xc0, 0x4a, 0xb3, 0x6c, 0x65, 0x17, 0x7f, 0x22, 0xe0, 0xe4, - 0x7e, 0x6a, 0xc2, 0x98, 0x8a, 0xb4, 0x2f, 0x73, 0x31, 0x6d, 0xb6, 0x68, 0xf7, 0x1f, 0x41, 0xc7, - 0x63, 0xdc, 0xce, 0xd6, 0x3f, 0x9d, 0xcb, 0xeb, 0x9f, 0x96, 0xc7, 0xf8, 0xd6, 0xb4, 0x04, 0x7a, - 0x1f, 0x80, 0x8d, 0xfb, 0x3a, 0xa7, 0xea, 0xaa, 0xf2, 0x23, 0x13, 0x6f, 0x54, 0x22, 0xc6, 0xc6, - 0x7d, 0x95, 0x4e, 0xbd, 0x2d, 0xe2, 0x0d, 0xde, 0x97, 0x76, 0x42, 0x1d, 0x0f, 0xcb, 0xb1, 0x9a, - 0x88, 0x2e, 0x08, 0xb3, 0xa8, 0xe3, 0xa5, 0x45, 0x0a, 0x79, 0x49, 0x91, 0xf2, 0x26, 0xd4, 0xc7, - 0xa1, 0xff, 0x8b, 0x31, 0x15, 0x76, 0xba, 0x84, 0x62, 0xaf, 0x49, 0xc0, 0x81, 0x27, 0xaa, 0x22, - 0x37, 0xc2, 0x18, 0x82, 0x85, 0x95, 0x48, 0x0f, 0x35, 0x5b, 0x3b, 0x12, 0x6e, 0x69, 0x82, 0x4f, - 0x4b, 0xb5, 0x4a, 0xb7, 0xaa, 0xea, 0x93, 0xff, 0x29, 0xc0, 0xf2, 0x6c, 0x40, 0x43, 0x39, 0xbd, - 0x0f, 0x55, 0x65, 0x0b, 0x2a, 0x76, 0x5d, 0x66, 0x32, 0x9a, 0x0c, 0xb3, 0x23, 0xb4, 0x79, 0xce, - 0xf4, 0x2d, 0x80, 0xe3, 0x13, 0x46, 0xae, 0x81, 0x70, 0x0c, 0x81, 0x90, 0xc9, 0x4a, 0x99, 0x86, - 0xde, 0x09, 0x4b, 0x2f, 0xc7, 0x52, 0xe6, 0x72, 0x7c, 0x1b, 0x9a, 0x78, 0xa5, 0x89, 0x14, 0x9a, - 0xd3, 0x04, 0xf3, 0xd0, 0xba, 0xd5, 0x40, 0xd8, 0x23, 0x04, 0xcd, 0x35, 0xb4, 0xca, 0x6b, 0x1a, - 0xda, 0x33, 0xe8, 0x30, 0x15, 0xb7, 0x75, 0x7c, 0xad, 0xe2, 0x31, 0xef, 0x4c, 0x8f, 0x79, 0x55, - 0x98, 0xb7, 0xda, 0x6c, 0x66, 0x8c, 0xdd, 0x9f, 0x71, 0xec, 0x09, 0x87, 0xe5, 0x4c, 0x57, 0x8b, - 0x56, 0x45, 0x64, 0x38, 0x63, 0x66, 0x7e, 0x53, 0x10, 0x59, 0x69, 0xce, 0xb9, 0x4c, 0x28, 0x85, - 0x51, 0x14, 0x2b, 0xf9, 0xa6, 0x65, 0xc2, 0xd3, 0x28, 0x8a, 0xf7, 0x17, 0x2c, 0xc4, 0x91, 0x77, - 0xa1, 0x1c, 0x44, 0xae, 0x13, 0xcc, 0xa6, 0x0a, 0x4f, 0x04, 0x70, 0x7f, 0xc1, 0x92, 0x58, 0xf2, - 0x16, 0x14, 0xd8, 0x7d, 0x75, 0x79, 0x42, 0x7a, 0x82, 0xfb, 0xfb, 0x0b, 0x56, 0x81, 0xdd, 0x27, - 0xb7, 0xa0, 0x78, 0xea, 0x32, 0x75, 0x3f, 0x36, 0x34, 0xfa, 0x93, 0x9d, 0xe3, 0xfd, 0x05, 0x4b, - 0x60, 0xc8, 0x47, 0xd0, 0x72, 0x83, 0x68, 0xec, 0xd9, 0xde, 0x79, 0xe8, 0x8c, 0x7c, 0x57, 0x5d, - 0x8b, 0xcb, 0xd3, 0x6b, 0x38, 0x1a, 0x7b, 0xbb, 0x12, 0xb7, 0xbf, 0x60, 0x35, 0xdd, 0xcc, 0x58, - 0x1c, 0x63, 0xe8, 0x0d, 0x64, 0x96, 0x98, 0x39, 0xc6, 0xfe, 0xee, 0x23, 0xb1, 0x3e, 0xe2, 0xc8, - 0x3e, 0x10, 0xe7, 0xcb, 0x71, 0x42, 0xed, 0x7e, 0x10, 0xf5, 0x6d, 0x6d, 0x58, 0x52, 0xe2, 0x3d, - 0x3d, 0x63, 0x4b, 0x50, 0x6c, 0x07, 0x51, 0x5f, 0xc9, 0x49, 0x5c, 0x8d, 0xce, 0x0c, 0x6c, 0xbb, - 0x0e, 0x55, 0x15, 0xca, 0xcc, 0x0a, 0x94, 0x84, 0xac, 0xcc, 0x37, 0xa1, 0x8c, 0xe2, 0x10, 0xf6, - 0x24, 0x8c, 0x5a, 0x27, 0x5b, 0x68, 0xe0, 0x7f, 0x5e, 0x82, 0xc2, 0xf1, 0x7d, 0x91, 0x30, 0xd3, - 0xd0, 0x8b, 0x23, 0x5f, 0x25, 0x2f, 0x75, 0x2b, 0x1d, 0x8b, 0x4a, 0x20, 0xd3, 0x08, 0xac, 0xa7, - 0x8d, 0xbf, 0xeb, 0x50, 0xe9, 0x8f, 0xdd, 0x33, 0xca, 0x55, 0x56, 0xa4, 0x46, 0x02, 0x1e, 0x27, - 0x74, 0xe0, 0xbf, 0x50, 0x86, 0xab, 0x46, 0x32, 0xe8, 0xcb, 0x68, 0xeb, 0x06, 0x0e, 0x93, 0xd9, - 0x75, 0x5d, 0x04, 0x7d, 0x04, 0xee, 0x08, 0x98, 0x48, 0x83, 0x18, 0x93, 0xf6, 0x5a, 0xb7, 0xc4, - 0x4f, 0x01, 0x71, 0xdc, 0x00, 0x85, 0x51, 0xb7, 0xc4, 0x4f, 0x11, 0xf7, 0x1d, 0xd7, 0xa5, 0x8c, - 0xe1, 0xcd, 0x52, 0x93, 0x5d, 0x3c, 0x09, 0x11, 0x97, 0xcb, 0x06, 0x2c, 0x32, 0xea, 0x26, 0x94, - 0xdb, 0x19, 0xaa, 0x3a, 0x52, 0x75, 0x24, 0x62, 0x2b, 0xa5, 0x5d, 0x87, 0xee, 0x20, 0x4a, 0x5c, - 0x6a, 0x0b, 0x61, 0xd8, 0x8c, 0x9f, 0x07, 0x54, 0xc5, 0xf1, 0x36, 0xc2, 0x8f, 0x1c, 0x3e, 0x3c, - 0x16, 0x50, 0x72, 0x1b, 0xda, 0x8c, 0x51, 0xfb, 0x6c, 0x84, 0xeb, 0x89, 0x18, 0x23, 0x43, 0x7b, - 0x83, 0x31, 0xfa, 0x78, 0x24, 0x16, 0x3b, 0xf0, 0x84, 0x8f, 0x27, 0x51, 0x40, 0x6d, 0x27, 0x91, - 0x1d, 0xc4, 0xba, 0x55, 0x15, 0xe3, 0xad, 0x44, 0xde, 0x66, 0x2f, 0x38, 0x4d, 0x42, 0x59, 0xef, - 0xb5, 0x10, 0x0b, 0x1a, 0x74, 0xe0, 0x91, 0x4d, 0x58, 0x8a, 0xfa, 0x3f, 0xa7, 0x2e, 0xb7, 0x45, - 0x9d, 0x96, 0xf6, 0x81, 0xda, 0xc8, 0xcd, 0xa2, 0x44, 0x3d, 0x89, 0xdc, 0x33, 0xdd, 0x04, 0x12, - 0xe2, 0xd4, 0x2e, 0x1e, 0x9d, 0x51, 0x19, 0xa7, 0x85, 0x38, 0x95, 0x1b, 0x0b, 0x98, 0xd0, 0x6b, - 0x9c, 0x44, 0x13, 0xdf, 0xa3, 0x09, 0xf6, 0xc7, 0xea, 0x56, 0x3a, 0x16, 0x59, 0x69, 0x9c, 0x44, - 0xa2, 0x14, 0x57, 0x5d, 0x30, 0x3d, 0x34, 0x7f, 0x6d, 0x40, 0xf1, 0x93, 0x9d, 0xe3, 0x97, 0x59, - 0x85, 0xd2, 0x7e, 0xe1, 0x12, 0xed, 0x17, 0xaf, 0xd6, 0x7e, 0x69, 0x8e, 0xf6, 0xdf, 0x85, 0x76, - 0x9c, 0x50, 0x8f, 0x0e, 0xfc, 0x90, 0x7a, 0xb6, 0x50, 0xbb, 0xb4, 0x91, 0xd6, 0x14, 0xba, 0xe5, - 0x06, 0xa2, 0x08, 0x73, 0x05, 0x20, 0xe4, 0xbe, 0x13, 0x30, 0x74, 0x1a, 0x65, 0x31, 0x9d, 0x0c, - 0x5c, 0xb8, 0x85, 0x39, 0x82, 0x2e, 0xfa, 0xcd, 0xce, 0x98, 0xf1, 0x68, 0x84, 0x59, 0x8e, 0xd8, - 0x25, 0x93, 0x67, 0xe9, 0xf4, 0xb3, 0x6e, 0xb5, 0xa6, 0x50, 0x41, 0x76, 0x0f, 0xae, 0xe5, 0xc9, - 0xec, 0x4c, 0x41, 0x5c, 0xb7, 0x96, 0x72, 0xd4, 0xc7, 0x88, 0x12, 0x61, 0xac, 0x3b, 0xeb, 0xa7, - 0xbf, 0x7b, 0x31, 0xbe, 0x0d, 0x4d, 0xc7, 0x75, 0xa3, 0x71, 0xc8, 0x6d, 0xbc, 0x40, 0xa4, 0x10, - 0x1b, 0x0a, 0xf6, 0x54, 0xdc, 0x23, 0x37, 0x01, 0xd8, 0xd0, 0x49, 0xa8, 0xcc, 0xce, 0xa4, 0xf0, - 0xea, 0x12, 0x22, 0xce, 0x3e, 0x75, 0x31, 0xe6, 0x9f, 0xe6, 0x5d, 0xec, 0xd8, 0x3f, 0x15, 0x0a, - 0xc8, 0x88, 0x86, 0xb9, 0x51, 0x4c, 0xb5, 0x87, 0x4d, 0xe1, 0xc7, 0x02, 0x4c, 0x3e, 0xbe, 0x20, - 0x6c, 0x98, 0x13, 0xd6, 0x32, 0xea, 0x99, 0x51, 0x83, 0xf9, 0x2b, 0x03, 0x2a, 0xdb, 0x52, 0x28, - 0xaf, 0x16, 0xa5, 0x8a, 0x97, 0x44, 0xa9, 0xd2, 0x25, 0x02, 0x2e, 0x5f, 0x2d, 0xe0, 0xca, 0x45, - 0x01, 0x8b, 0xb2, 0xad, 0x99, 0x0d, 0xfa, 0xe4, 0x4e, 0xba, 0x8b, 0xa1, 0x2a, 0x26, 0x9d, 0xa6, - 0x20, 0x34, 0xdd, 0xf5, 0x36, 0xb4, 0xb4, 0xff, 0x49, 0xd5, 0x48, 0xad, 0x37, 0x35, 0x10, 0x75, - 0xf3, 0x63, 0x28, 0x3b, 0x9c, 0x27, 0xba, 0xb2, 0xbd, 0x35, 0xef, 0x9a, 0xd9, 0xdc, 0x12, 0x14, - 0x7b, 0x21, 0x4f, 0xce, 0x2d, 0x49, 0xbd, 0xf2, 0x10, 0x60, 0x0a, 0x14, 0x61, 0x73, 0x6a, 0xd9, - 0xe2, 0x27, 0x59, 0x86, 0xf2, 0xc4, 0x09, 0xc6, 0x7a, 0x4f, 0x39, 0xf8, 0x83, 0xc2, 0x43, 0xc3, - 0x5c, 0x85, 0x92, 0xb8, 0x8e, 0xa4, 0x0c, 0x47, 0x11, 0xd7, 0xf5, 0xb8, 0x1a, 0x99, 0xff, 0x6c, - 0x40, 0x7b, 0xe6, 0x55, 0xe9, 0xb6, 0x7e, 0xf5, 0x31, 0xf2, 0x17, 0x6f, 0xee, 0xd1, 0xe7, 0xfb, - 0x15, 0x07, 0xaf, 0xf2, 0xd6, 0x32, 0xd3, 0xa2, 0x2f, 0xbf, 0x52, 0x8b, 0xde, 0xbc, 0x2b, 0x6a, - 0x76, 0xea, 0x84, 0xd3, 0xea, 0x26, 0x97, 0x34, 0x1a, 0xf9, 0xa4, 0xd1, 0x3c, 0x82, 0x4e, 0x4a, - 0xfe, 0x3a, 0xc7, 0xee, 0x41, 0x95, 0x8d, 0xd1, 0x57, 0xf0, 0xd0, 0x35, 0x4b, 0x0f, 0xcd, 0x87, - 0xd0, 0x56, 0x2f, 0x6f, 0x9a, 0x81, 0x3b, 0xd0, 0x61, 0xce, 0x84, 0xda, 0x3c, 0xb2, 0xb3, 0xf9, - 0x64, 0xcd, 0x6a, 0x09, 0xf0, 0x49, 0xa4, 0x62, 0x88, 0xf9, 0xb7, 0x06, 0x74, 0xd2, 0xa9, 0xaf, - 0xa9, 0x83, 0xe9, 0x09, 0x0b, 0x33, 0x69, 0xf1, 0x0f, 0x81, 0xb8, 0x51, 0x10, 0x88, 0x4b, 0x07, - 0x9f, 0xae, 0x30, 0x3e, 0xa8, 0x24, 0xb4, 0xab, 0x30, 0x42, 0xec, 0x3b, 0x02, 0x2e, 0x2e, 0xd6, - 0x1c, 0x35, 0x76, 0x8d, 0x65, 0xe5, 0xd6, 0xc9, 0x10, 0x1f, 0xfb, 0x5f, 0x52, 0x73, 0x09, 0x16, - 0x77, 0x86, 0xd4, 0x3d, 0xdb, 0xf2, 0x46, 0x7e, 0xa8, 0x0e, 0x6b, 0x7e, 0x65, 0x00, 0xc9, 0x42, - 0x5f, 0xe7, 0x1c, 0xaf, 0xfa, 0x1c, 0xb9, 0x01, 0x8b, 0x43, 0x87, 0xd9, 0x31, 0x0d, 0x3d, 0x3f, - 0x3c, 0xb5, 0x1d, 0xb1, 0x13, 0x9e, 0xa8, 0x66, 0x75, 0x86, 0x0e, 0x3b, 0x92, 0x70, 0x64, 0xc0, - 0xfc, 0x37, 0x03, 0x6e, 0xee, 0xa9, 0x1b, 0x58, 0x09, 0xda, 0xa2, 0x42, 0x0d, 0xa9, 0x7a, 0xe6, - 0x54, 0x88, 0xc6, 0x6b, 0x55, 0x88, 0xb7, 0xa0, 0xa1, 0x6e, 0xf5, 0x8c, 0xbb, 0x83, 0x04, 0x3d, - 0x55, 0x09, 0x7d, 0x22, 0xf7, 0x94, 0x14, 0x32, 0x7a, 0x35, 0x14, 0x0c, 0x49, 0xde, 0x85, 0x36, - 0xd6, 0x26, 0x21, 0xb7, 0x03, 0x1a, 0x9e, 0xf2, 0xa1, 0x12, 0x7a, 0x4b, 0x41, 0x9f, 0x20, 0xd0, - 0x5c, 0x83, 0xd5, 0xcb, 0x0e, 0x23, 0x05, 0x6d, 0xfe, 0x95, 0x01, 0x2b, 0x33, 0x24, 0xc7, 0xce, - 0xe4, 0x77, 0x78, 0xd8, 0x8b, 0x27, 0x29, 0xce, 0x3b, 0xc9, 0x4d, 0x78, 0x73, 0x2e, 0x9b, 0xea, - 0x18, 0xbf, 0x54, 0xef, 0x0f, 0x9e, 0xc3, 0x1d, 0xb2, 0xa1, 0xa3, 0x85, 0x91, 0x6f, 0x03, 0xee, - 0xaa, 0x77, 0x04, 0xac, 0x70, 0x55, 0xd4, 0x78, 0x00, 0x0d, 0x34, 0xdc, 0xd3, 0x24, 0x1a, 0xc7, - 0xba, 0xe9, 0x7f, 0x6d, 0x76, 0xc6, 0x27, 0x02, 0x6b, 0xe1, 0x5b, 0x2e, 0xfe, 0x64, 0xb2, 0x74, - 0x13, 0x1a, 0x4a, 0x7b, 0xa9, 0x58, 0xd5, 0x09, 0x0f, 0xba, 0x05, 0x42, 0x55, 0x51, 0x30, 0xa1, - 0x99, 0xfa, 0x0d, 0x34, 0x48, 0xd6, 0x76, 0x23, 0xe7, 0x85, 0xc0, 0x49, 0xa5, 0x95, 0x47, 0xce, - 0x0b, 0x05, 0xf6, 0x43, 0x01, 0x2e, 0x2b, 0xb0, 0x1f, 0x9e, 0x08, 0x0e, 0xf1, 0x43, 0x86, 0x34, - 0xb0, 0x55, 0x55, 0x60, 0xcb, 0xbc, 0x69, 0xea, 0xc0, 0xd6, 0x18, 0x4d, 0x07, 0xe6, 0x7f, 0x18, - 0xd0, 0xca, 0xf1, 0x3f, 0x2f, 0xd9, 0x27, 0x3f, 0x85, 0xce, 0xf4, 0xf9, 0x45, 0x76, 0x05, 0x0a, - 0x57, 0x48, 0xad, 0x95, 0xbe, 0xc5, 0x60, 0xc9, 0x3b, 0x65, 0xb9, 0x98, 0x65, 0xf9, 0x92, 0x03, - 0xde, 0x81, 0x8e, 0xa0, 0xce, 0x0a, 0x47, 0x9e, 0xb4, 0x25, 0x5d, 0x5f, 0xcb, 0xe7, 0x3a, 0x54, - 0x94, 0x29, 0xc8, 0x37, 0x30, 0x35, 0x32, 0xff, 0xa5, 0x02, 0xcd, 0x2c, 0x37, 0x99, 0x07, 0x09, - 0x23, 0xf7, 0x20, 0xa1, 0x0f, 0x5a, 0xc8, 0x1c, 0x74, 0x03, 0x16, 0xc3, 0xf1, 0xa8, 0x4f, 0x13, - 0x3b, 0x1a, 0xd8, 0x34, 0xe4, 0x89, 0x4f, 0x25, 0xd7, 0x45, 0xab, 0x23, 0x11, 0xcf, 0x06, 0x7b, - 0x12, 0x9c, 0x39, 0x56, 0x69, 0xfe, 0xb1, 0xca, 0xd9, 0x63, 0xcd, 0xe8, 0xbb, 0x72, 0x41, 0xdf, - 0x6f, 0x42, 0x5d, 0x75, 0x50, 0x7d, 0x0f, 0xd5, 0x57, 0xb4, 0x6a, 0x12, 0x30, 0xdb, 0x2d, 0xab, - 0x5d, 0x7e, 0x21, 0xd6, 0xe7, 0xb4, 0x9e, 0xa7, 0x0f, 0x76, 0xef, 0x40, 0x09, 0x8b, 0xfa, 0x06, - 0x1a, 0x47, 0x37, 0x7b, 0x3f, 0x62, 0x35, 0x8f, 0x58, 0xb1, 0x9c, 0xcf, 0x6c, 0x61, 0x24, 0x58, - 0x8a, 0xd4, 0xac, 0x8a, 0xcf, 0xf0, 0x63, 0x8a, 0x37, 0xa0, 0x26, 0x5b, 0x08, 0xaa, 0x0c, 0x29, - 0x5a, 0x55, 0x1c, 0x1f, 0x78, 0x19, 0x65, 0xb4, 0xb3, 0xca, 0x20, 0xbf, 0x0f, 0x2b, 0x42, 0x46, - 0x7d, 0x7a, 0x8a, 0x92, 0xb2, 0xfd, 0xd0, 0xf6, 0xe8, 0xc0, 0x19, 0x07, 0xdc, 0x76, 0x07, 0x58, - 0x78, 0x94, 0xac, 0x6b, 0x23, 0x3f, 0xdc, 0x16, 0x04, 0x27, 0xec, 0x20, 0xdc, 0x95, 0xd8, 0x9d, - 0x01, 0xc6, 0x37, 0x7c, 0xee, 0x8f, 0x06, 0x03, 0x46, 0x39, 0x56, 0x21, 0x25, 0xab, 0x81, 0xb0, - 0x67, 0x08, 0x9a, 0x92, 0xa8, 0xbd, 0x17, 0x33, 0x24, 0x32, 0x22, 0xcc, 0xed, 0x69, 0x90, 0xd7, - 0xec, 0x69, 0x64, 0x1f, 0x85, 0x96, 0x66, 0x1e, 0x85, 0xd6, 0xa1, 0xab, 0xb4, 0x36, 0xd5, 0xcf, - 0x32, 0x2a, 0xa1, 0x2d, 0xe1, 0xc7, 0x5a, 0x4b, 0xef, 0x40, 0x5b, 0x77, 0xc8, 0x95, 0xb2, 0xae, - 0x21, 0x9d, 0xea, 0x9b, 0xef, 0x49, 0x95, 0x3d, 0x98, 0xf6, 0xd1, 0xe3, 0xc8, 0x1d, 0xaa, 0xa7, - 0xf8, 0xa5, 0xfc, 0x9d, 0xb5, 0x27, 0x50, 0x69, 0x2b, 0x5d, 0x0c, 0x88, 0x05, 0xcb, 0x18, 0xa1, - 0x32, 0x29, 0x33, 0xba, 0xe9, 0x0d, 0x8c, 0xc3, 0x6b, 0xf9, 0x16, 0xae, 0x50, 0xf8, 0xb4, 0x17, - 0x8c, 0x2e, 0x4b, 0x06, 0x17, 0x60, 0xe6, 0xd7, 0x06, 0x2c, 0x66, 0xbb, 0x35, 0x7b, 0x3a, 0x2f, - 0x18, 0x3a, 0x71, 0x4c, 0x43, 0xdb, 0xd1, 0xef, 0x15, 0x35, 0x09, 0xd8, 0xc2, 0xa6, 0x2f, 0xde, - 0xba, 0xb6, 0x1b, 0x79, 0x3a, 0x8e, 0xd7, 0x11, 0xb2, 0x13, 0x79, 0xe2, 0xc2, 0x96, 0x5f, 0x5f, - 0xd9, 0x23, 0xca, 0x98, 0x48, 0x59, 0xe4, 0xa5, 0xd5, 0x44, 0xe0, 0xa1, 0x84, 0xe5, 0x82, 0xa6, - 0x7e, 0x0d, 0x94, 0x41, 0xd3, 0x7c, 0x00, 0xa5, 0xe3, 0xd8, 0xc1, 0xdc, 0x5c, 0x59, 0x85, 0x64, - 0x40, 0x8d, 0x32, 0x66, 0x58, 0xc8, 0xc5, 0x84, 0x3d, 0x68, 0x88, 0x79, 0xec, 0xd9, 0x40, 0x3f, - 0xe5, 0x5f, 0x08, 0x71, 0x26, 0x94, 0x99, 0x20, 0x99, 0x7d, 0x5c, 0x16, 0xf3, 0x2c, 0x89, 0x32, - 0xbf, 0x2e, 0x42, 0xef, 0x49, 0x74, 0x8a, 0xb9, 0xca, 0xb8, 0x2f, 0xcc, 0xc4, 0x71, 0x55, 0x37, - 0xdd, 0x49, 0x5f, 0xc3, 0x8d, 0xfc, 0x6b, 0xf8, 0xd4, 0xa7, 0x25, 0x4b, 0x53, 0x9f, 0x9e, 0x79, - 0x18, 0x22, 0x6b, 0xd0, 0xf4, 0xc3, 0x78, 0xcc, 0xed, 0x5c, 0x54, 0x04, 0x84, 0x1d, 0x62, 0x0c, - 0x99, 0x52, 0x64, 0x6f, 0x00, 0x45, 0x81, 0xc1, 0xe7, 0x0e, 0x74, 0x14, 0x5b, 0xf6, 0x20, 0x89, - 0x46, 0xd3, 0x48, 0xd3, 0x52, 0xe0, 0x47, 0x49, 0x34, 0x3a, 0xc1, 0xef, 0xc4, 0x34, 0xdd, 0x38, - 0xe4, 0x7e, 0x60, 0xab, 0xd7, 0xc6, 0x92, 0xd5, 0x56, 0xf0, 0xcf, 0x04, 0xf8, 0x84, 0x89, 0x68, - 0x20, 0x76, 0x9b, 0xc6, 0x1d, 0x11, 0xf4, 0x54, 0xd4, 0x11, 0x8c, 0x66, 0xa2, 0xce, 0xc8, 0x79, - 0x21, 0x10, 0x6b, 0xf8, 0xdd, 0x18, 0x5c, 0x12, 0x63, 0x0a, 0xfc, 0x3c, 0x17, 0x48, 0x1a, 0xf9, - 0x40, 0x72, 0x17, 0xaa, 0x2c, 0x1a, 0x27, 0x2e, 0x65, 0xbd, 0x66, 0xfe, 0x69, 0x3d, 0xa3, 0x40, - 0x4b, 0xd3, 0x98, 0xff, 0x60, 0xc0, 0xf2, 0x3c, 0x8d, 0x90, 0x0f, 0xa1, 0x84, 0x11, 0xcc, 0x50, - 0xf6, 0x9f, 0xb6, 0xf7, 0xe6, 0x6b, 0xcf, 0x42, 0x6a, 0x72, 0x17, 0x1a, 0x8c, 0x71, 0x3b, 0x1a, - 0xf3, 0x78, 0xcc, 0xe7, 0x7f, 0x67, 0x00, 0x8c, 0xf1, 0x67, 0x12, 0x4f, 0xb6, 0x61, 0x51, 0xa9, - 0x17, 0xef, 0xde, 0xa1, 0x1f, 0x72, 0x5d, 0x7b, 0xa5, 0x99, 0x8f, 0xf4, 0x58, 0xb1, 0xc7, 0xbe, - 0x1f, 0x72, 0xab, 0x93, 0xe4, 0xc6, 0xcc, 0xfc, 0x53, 0x68, 0xe7, 0x49, 0xbe, 0xe7, 0x33, 0xe3, - 0x6c, 0xe0, 0x90, 0x3d, 0xcb, 0x97, 0x06, 0x0e, 0xf3, 0x4f, 0xe0, 0xda, 0x3c, 0xa1, 0x30, 0xb2, - 0x0b, 0x6d, 0x96, 0x83, 0xa8, 0x44, 0xe9, 0xad, 0xab, 0x64, 0x69, 0xcd, 0xcc, 0x31, 0xbf, 0x2e, - 0xc0, 0xa2, 0x22, 0xdc, 0x99, 0x6a, 0x07, 0xcb, 0x07, 0x3d, 0x4a, 0x2d, 0xd5, 0xd0, 0xe5, 0x83, - 0xc6, 0x28, 0x63, 0xdd, 0x84, 0xa5, 0x0c, 0x75, 0x6a, 0xaf, 0xd2, 0x9f, 0x16, 0xa7, 0x28, 0x6d, - 0xb2, 0xba, 0xfd, 0x5d, 0xcc, 0xb4, 0xbf, 0x45, 0x0c, 0x8f, 0x46, 0x23, 0x1a, 0x72, 0xdd, 0xf9, - 0x48, 0xc7, 0xe4, 0x2d, 0xa8, 0x3b, 0x09, 0xf7, 0x07, 0x8e, 0xcb, 0x75, 0x6f, 0x71, 0x0a, 0x10, - 0xa9, 0x67, 0x3a, 0xb0, 0x87, 0x0e, 0xd3, 0xf9, 0x46, 0x2b, 0x85, 0xee, 0x3b, 0x6c, 0x48, 0x7e, - 0x00, 0x9d, 0x53, 0x1a, 0xd2, 0xc4, 0xe1, 0xd4, 0x53, 0x9f, 0xa9, 0xc8, 0xce, 0x63, 0x3b, 0x05, - 0x63, 0x46, 0x64, 0xfe, 0x93, 0x21, 0x93, 0xd0, 0x3d, 0xcf, 0xe7, 0x73, 0x23, 0xd1, 0x3d, 0xb8, - 0xe6, 0xd1, 0x80, 0x72, 0x6a, 0xa7, 0xdf, 0x79, 0x4c, 0x3f, 0x7b, 0xa9, 0x5b, 0x4b, 0x12, 0x79, - 0xa4, 0x70, 0xf2, 0x93, 0x97, 0xc7, 0xb0, 0xac, 0xe6, 0x04, 0xd1, 0x69, 0x66, 0x8a, 0x34, 0xc6, - 0x37, 0xd2, 0x2c, 0x0d, 0x69, 0xb2, 0x9e, 0x44, 0xe4, 0xb4, 0x27, 0x72, 0x96, 0x5c, 0xec, 0x36, - 0xb4, 0x3c, 0xca, 0x78, 0x32, 0x76, 0xb9, 0xcd, 0x68, 0x30, 0x50, 0x1f, 0x5b, 0x36, 0x35, 0xf0, - 0x98, 0x06, 0x03, 0xf3, 0x39, 0x2c, 0x5e, 0x58, 0xed, 0xfb, 0x06, 0x56, 0x91, 0x76, 0x3d, 0x1f, - 0x46, 0xf2, 0x71, 0x82, 0xe6, 0x33, 0xfc, 0x0e, 0x22, 0xc4, 0xea, 0x2a, 0xc7, 0xff, 0x55, 0x01, - 0xea, 0x87, 0xfe, 0x69, 0x82, 0x5f, 0xb6, 0xe1, 0xdb, 0x79, 0x42, 0x1d, 0xae, 0x9e, 0x9c, 0xeb, - 0x96, 0x1e, 0x92, 0x7b, 0xd3, 0x6f, 0x32, 0xe5, 0x23, 0x46, 0xda, 0x38, 0x4a, 0x67, 0xeb, 0x8c, - 0x38, 0xfd, 0x5a, 0xf3, 0x2e, 0xd4, 0xa9, 0xe7, 0x73, 0x5b, 0x85, 0x8e, 0xe2, 0xec, 0x67, 0x81, - 0x42, 0x67, 0x56, 0x4d, 0x90, 0x60, 0xc8, 0x7f, 0x1b, 0x9a, 0x3c, 0x19, 0x87, 0x2e, 0xea, 0x9c, - 0x47, 0xca, 0x22, 0x1b, 0x29, 0xec, 0x24, 0x22, 0x1f, 0x41, 0x23, 0xeb, 0x42, 0x33, 0xfa, 0xb8, - 0xe0, 0x19, 0x56, 0x96, 0x5a, 0xd8, 0x54, 0xaa, 0x88, 0xb4, 0x33, 0x2e, 0x6c, 0xa0, 0xad, 0xc1, - 0x47, 0x08, 0xdd, 0x78, 0x0a, 0x6b, 0x2f, 0xfb, 0x90, 0x98, 0x74, 0xa0, 0xf1, 0x19, 0xbe, 0xa2, - 0xe0, 0xf7, 0xb2, 0xdd, 0x05, 0xd2, 0x82, 0xfa, 0xcf, 0x1c, 0x9f, 0x6f, 0xc5, 0x71, 0x70, 0xde, - 0x35, 0x08, 0x40, 0xe5, 0x91, 0x1f, 0xfa, 0x6c, 0xd8, 0x2d, 0x6c, 0x7c, 0x0a, 0xab, 0x57, 0x7f, - 0xe8, 0x4b, 0x16, 0xa1, 0x95, 0x4e, 0xde, 0x8d, 0x42, 0xb1, 0xde, 0x35, 0x58, 0xcc, 0x6c, 0x20, - 0x3f, 0x89, 0xec, 0x1a, 0x1b, 0x7f, 0x08, 0x9d, 0x99, 0x0c, 0x8b, 0x34, 0xa0, 0xfa, 0xd9, 0xd3, - 0xc7, 0x4f, 0x9f, 0xfd, 0xec, 0x69, 0x77, 0x81, 0x54, 0xa1, 0xf8, 0xe4, 0x8b, 0x0f, 0x25, 0x03, - 0xc7, 0x4f, 0xb7, 0x8e, 0x8e, 0xfe, 0xb8, 0x5b, 0x20, 0x35, 0x28, 0x7d, 0x71, 0x7c, 0xb2, 0xdb, - 0x2d, 0x6e, 0xac, 0xa5, 0xdf, 0xf3, 0x8a, 0x04, 0xa2, 0x06, 0xa5, 0xe3, 0x9d, 0x2d, 0x31, 0xad, - 0x06, 0xa5, 0x47, 0x07, 0x4f, 0xf6, 0xba, 0xc6, 0xc6, 0x4d, 0x68, 0x64, 0xca, 0x1b, 0x52, 0x81, - 0xc2, 0xe7, 0x1f, 0x74, 0x17, 0xf0, 0xef, 0xbd, 0xae, 0xb1, 0x71, 0x0b, 0x6a, 0xfa, 0xf2, 0x11, - 0x5b, 0x48, 0xa3, 0x95, 0xfb, 0x1e, 0x8d, 0x05, 0x83, 0x26, 0x74, 0x67, 0x2d, 0x42, 0x4c, 0x3e, - 0x7c, 0x5f, 0x2e, 0x72, 0xf8, 0x41, 0xd7, 0xb8, 0xf7, 0xbf, 0x05, 0xa8, 0x48, 0x36, 0xc8, 0x47, - 0xa0, 0x3e, 0x2c, 0x27, 0xd7, 0x66, 0xbe, 0xfa, 0x92, 0xc2, 0x5e, 0xb9, 0x3e, 0x0b, 0x56, 0xd5, - 0xe7, 0xc2, 0xfb, 0x06, 0x39, 0x82, 0x25, 0xec, 0x63, 0x64, 0xbb, 0x09, 0xcf, 0x62, 0x92, 0x1a, - 0xc4, 0x85, 0xd6, 0xc7, 0xca, 0xca, 0x3c, 0x54, 0x66, 0xc5, 0x21, 0x5c, 0x9b, 0xab, 0x2a, 0xf2, - 0xce, 0xab, 0x7c, 0x62, 0xbe, 0xf2, 0xee, 0x4b, 0xa8, 0xe4, 0x4e, 0xeb, 0xc6, 0xfb, 0x06, 0xf9, - 0x29, 0x54, 0x63, 0x49, 0x44, 0xae, 0xcf, 0xcc, 0xd2, 0xab, 0xdd, 0xb8, 0x00, 0xd7, 0x9c, 0x8a, - 0xd9, 0xae, 0xec, 0x89, 0x91, 0xcc, 0x57, 0x28, 0xd9, 0x9e, 0xda, 0x74, 0xf6, 0x4c, 0xf3, 0xcc, - 0x5c, 0xb8, 0xf7, 0x8f, 0x06, 0x74, 0x66, 0x2a, 0x7b, 0xf2, 0x05, 0x54, 0x55, 0xb3, 0x83, 0xa4, - 0xa7, 0xb8, 0xb2, 0x29, 0xb3, 0x72, 0xe7, 0x65, 0x64, 0x29, 0xb7, 0x7f, 0x04, 0x25, 0xe6, 0x4c, - 0x28, 0x31, 0x2f, 0x99, 0x91, 0xe9, 0x7e, 0xac, 0xdc, 0xbe, 0x92, 0x46, 0x2f, 0xb9, 0x7d, 0xef, - 0x37, 0x7f, 0x5d, 0x33, 0x7e, 0xfd, 0xed, 0xaa, 0xf1, 0xcd, 0xb7, 0xab, 0xc6, 0x7f, 0x7d, 0xbb, - 0x6a, 0xfc, 0xf2, 0xbb, 0xd5, 0x85, 0xbf, 0xfc, 0x6e, 0x75, 0xe1, 0x9b, 0xef, 0x56, 0x17, 0x7e, - 0xf3, 0xdd, 0xea, 0x02, 0x74, 0xa3, 0xe4, 0x74, 0x93, 0xfb, 0x67, 0x93, 0xcd, 0xb3, 0x09, 0xfe, - 0x4f, 0x41, 0xbf, 0x82, 0x7f, 0xee, 0xff, 0x5f, 0x00, 0x00, 0x00, 0xff, 0xff, 0x6a, 0xa7, 0x03, - 0x23, 0xd7, 0x30, 0x00, 0x00, + 0x97, 0x6f, 0x5a, 0x72, 0x40, 0x7e, 0x04, 0x0d, 0xfc, 0xa1, 0x72, 0x77, 0x0d, 0xf5, 0x75, 0x23, + 0xa7, 0xaf, 0x54, 0x31, 0x16, 0x20, 0x29, 0xfe, 0x36, 0x8f, 0xa0, 0x7c, 0xb8, 0x77, 0xe4, 0xc4, + 0x82, 0xc7, 0x49, 0xcc, 0x78, 0x42, 0x9d, 0x71, 0xc6, 0x72, 0x34, 0xe8, 0xd0, 0x13, 0x41, 0xcb, + 0x8b, 0x5e, 0x84, 0x53, 0x92, 0x02, 0x92, 0x34, 0xa7, 0xc0, 0x43, 0xcf, 0x7c, 0x01, 0x4d, 0x91, + 0xcd, 0x64, 0x88, 0x70, 0xe2, 0xb9, 0x36, 0xf0, 0x1e, 0x54, 0x7c, 0x4f, 0x24, 0x42, 0x55, 0xbf, + 0xb6, 0x34, 0x9b, 0xc8, 0x88, 0x55, 0xf6, 0x3d, 0x31, 0xf3, 0x1e, 0x40, 0xec, 0x24, 0xdc, 0xc7, + 0xfc, 0xaa, 0x5c, 0x75, 0x86, 0x32, 0x43, 0x60, 0x32, 0xa8, 0xa7, 0x69, 0xf4, 0x7f, 0xf1, 0xd5, + 0xef, 0x41, 0x05, 0x75, 0xad, 0xbf, 0xb8, 0x9c, 0xcd, 0xd1, 0x7a, 0x57, 0x96, 0xa2, 0x31, 0x8f, + 0xa1, 0xa6, 0xe3, 0xc0, 0xb7, 0xcc, 0x90, 0x32, 0x6a, 0x16, 0x75, 0xd4, 0x34, 0xf7, 0xa0, 0xbd, + 0xab, 0xaa, 0xe7, 0x3d, 0x2c, 0xd3, 0x45, 0xe9, 0xeb, 0x4e, 0x92, 0x84, 0x86, 0x5c, 0x95, 0xd7, + 0x7a, 0x28, 0x30, 0x89, 0x6c, 0x64, 0x54, 0x26, 0xd4, 0x43, 0xf3, 0x5f, 0x0d, 0x28, 0xcb, 0xd9, + 0x5d, 0x28, 0x8e, 0xd9, 0xa9, 0x12, 0x84, 0xf8, 0x49, 0x76, 0xa0, 0x3b, 0xad, 0xd8, 0xed, 0x6c, + 0x83, 0x90, 0x9a, 0x4b, 0x9e, 0x83, 0x83, 0x85, 0xb4, 0x5a, 0x3f, 0xf4, 0xe4, 0xaa, 0x5b, 0x50, + 0x3b, 0x3b, 0x57, 0x73, 0x4b, 0x38, 0x77, 0x31, 0x2d, 0xc2, 0x9e, 0xd0, 0x0b, 0x3d, 0xad, 0x7a, + 0x76, 0x2e, 0xe9, 0x1f, 0x40, 0x53, 0xf6, 0x24, 0x6a, 0x4e, 0x79, 0x5e, 0x43, 0x72, 0xb0, 0x60, + 0x35, 0x24, 0x15, 0x0e, 0x77, 0x6a, 0x50, 0xf1, 0x28, 0x77, 0xfc, 0xc0, 0xfc, 0x3b, 0x03, 0xd6, + 0xfa, 0x68, 0x61, 0x32, 0x82, 0x9e, 0x38, 0xec, 0xac, 0x4f, 0xdd, 0x49, 0xe2, 0xf3, 0x8b, 0xdd, + 0x28, 0x1c, 0xfa, 0x62, 0x57, 0x24, 0x0e, 0x1c, 0x3f, 0xe4, 0xf4, 0x25, 0x47, 0x7f, 0x4f, 0xd5, + 0x90, 0x09, 0x5b, 0xbb, 0x32, 0x34, 0x84, 0xc3, 0xe8, 0x60, 0xc1, 0xea, 0xa6, 0xf4, 0x22, 0x18, + 0x08, 0x5d, 0xec, 0xc3, 0xe2, 0xd8, 0x41, 0xc1, 0x9c, 0xd1, 0x0b, 0xdb, 0xc5, 0x85, 0x95, 0xb1, + 0xa4, 0x05, 0xe3, 0x11, 0x12, 0x3c, 0xa1, 0xea, 0xbb, 0x07, 0x0b, 0x56, 0x67, 0x9c, 0x07, 0xed, + 0x34, 0x01, 0xa6, 0x4d, 0xae, 0x19, 0x00, 0x4c, 0x3f, 0x4b, 0x7e, 0x02, 0x0d, 0x15, 0xb0, 0xf8, + 0x45, 0x4c, 0x55, 0xef, 0xb7, 0xb6, 0x95, 0x6b, 0x8a, 0xf7, 0xd3, 0xc1, 0x11, 0xe5, 0xa3, 0xc8, + 0xb3, 0x40, 0x4e, 0x11, 0xfd, 0x1f, 0xf6, 0x5b, 0x72, 0x81, 0xa9, 0x2d, 0xa9, 0x18, 0xf8, 0x84, + 0x5e, 0x98, 0x7f, 0x6e, 0x40, 0x67, 0x86, 0x45, 0xf2, 0x31, 0x74, 0xa6, 0xeb, 0xbf, 0xc9, 0x77, + 0xdb, 0x53, 0x34, 0x7e, 0xfb, 0x11, 0x34, 0xa6, 0xf2, 0xd1, 0x79, 0xf6, 0x66, 0x7e, 0x91, 0xf4, + 0xe3, 0x16, 0xa4, 0x72, 0x61, 0xe6, 0x2e, 0x74, 0xfa, 0x51, 0xc2, 0xa9, 0xd7, 0x9f, 0x0c, 0x54, + 0xc6, 0xfb, 0x00, 0x80, 0x4d, 0x06, 0x3a, 0x51, 0x1a, 0xaa, 0xc2, 0xc8, 0x18, 0x91, 0xca, 0xae, + 0x4c, 0xcf, 0x30, 0xff, 0xa3, 0x02, 0xad, 0x7c, 0xc3, 0xff, 0x8a, 0xe6, 0x33, 0xe7, 0x91, 0x85, + 0xab, 0x3d, 0xb2, 0x78, 0x7d, 0x6d, 0x56, 0x7a, 0x75, 0x6d, 0x56, 0xbe, 0x54, 0x9b, 0xdd, 0x12, + 0xb5, 0x03, 0xa7, 0x76, 0xe0, 0x8f, 0x7d, 0xae, 0xaa, 0xb3, 0xba, 0x80, 0x3c, 0x15, 0x00, 0xb2, + 0x0e, 0x0d, 0x37, 0x0a, 0xa5, 0x23, 0xbb, 0x17, 0x58, 0xa0, 0xb5, 0xac, 0x2c, 0x88, 0xfc, 0x04, + 0x3a, 0x8c, 0x47, 0x89, 0x73, 0x4a, 0x6d, 0x61, 0x7a, 0x34, 0xf4, 0xb0, 0x4e, 0xcb, 0x05, 0x75, + 0x44, 0xef, 0x48, 0xac, 0xd5, 0x66, 0xb9, 0x71, 0xbe, 0x3d, 0x84, 0x7c, 0x7b, 0x28, 0xa3, 0x4e, + 0x23, 0xad, 0xd5, 0x44, 0x4c, 0x88, 0xc6, 0x71, 0x42, 0x19, 0x4b, 0x6d, 0xa4, 0x89, 0x36, 0x92, + 0x1a, 0xfe, 0xee, 0x14, 0x8f, 0x07, 0x11, 0x1d, 0x37, 0x0f, 0x20, 0xdf, 0x85, 0xc5, 0xec, 0x1a, + 0x01, 0x3d, 0xa7, 0x01, 0xf6, 0xda, 0x65, 0x2b, 0xbb, 0xf8, 0x53, 0x01, 0x27, 0x0f, 0x52, 0x3f, + 0xc0, 0x7a, 0xa6, 0x7d, 0x95, 0x9f, 0x6a, 0xdb, 0x47, 0xe7, 0xf9, 0x08, 0x3a, 0x1e, 0xe3, 0x76, + 0xb6, 0x03, 0xec, 0x5c, 0xdd, 0x01, 0xb6, 0x3c, 0xc6, 0xb7, 0xa7, 0x4d, 0x60, 0xde, 0xde, 0xba, + 0xaf, 0xb6, 0x37, 0x72, 0x0c, 0x3d, 0x86, 0x46, 0x6b, 0x4f, 0x27, 0xda, 0xa7, 0x49, 0x34, 0x89, + 0x59, 0x6f, 0x25, 0xdf, 0x46, 0xce, 0x18, 0xb7, 0xb5, 0xc2, 0xf2, 0x80, 0x8f, 0x71, 0x16, 0x79, + 0x57, 0x84, 0x41, 0x4c, 0xe3, 0x76, 0x42, 0x1d, 0x0f, 0x5b, 0xdc, 0x9a, 0x08, 0x7a, 0x08, 0xb3, + 0xa8, 0xe3, 0xa5, 0x8d, 0x1f, 0x79, 0x45, 0xe3, 0xf7, 0x36, 0xd4, 0x27, 0xa1, 0xff, 0xf3, 0x09, + 0x15, 0x96, 0xbf, 0x84, 0x8a, 0xac, 0x49, 0xc0, 0xa1, 0x27, 0x3a, 0x4d, 0x37, 0xc2, 0xd0, 0x86, + 0xcd, 0xaa, 0xa8, 0x5a, 0xf5, 0x46, 0x77, 0x25, 0xdc, 0xd2, 0x04, 0x9f, 0x94, 0x6a, 0x95, 0x6e, + 0x55, 0xf5, 0x7c, 0xff, 0x5d, 0x80, 0xe5, 0xd9, 0x38, 0x8b, 0x92, 0xff, 0x00, 0xaa, 0xca, 0xba, + 0x54, 0x48, 0xbd, 0xca, 0x08, 0x35, 0x19, 0x16, 0x6d, 0xe8, 0x45, 0x9c, 0xe9, 0xe4, 0x84, 0xe3, + 0x13, 0x46, 0x56, 0x40, 0xb8, 0x9a, 0x40, 0xc8, 0x1a, 0xaa, 0x4c, 0x43, 0xef, 0x84, 0xa5, 0x39, + 0xbb, 0x94, 0xc9, 0xd9, 0xef, 0x42, 0x53, 0xf6, 0x21, 0x43, 0x3f, 0xe0, 0x34, 0xc1, 0xf2, 0xb8, + 0x6e, 0xc9, 0xde, 0xe4, 0x31, 0x82, 0xe6, 0x9a, 0x6e, 0xe5, 0x0d, 0x4d, 0xf7, 0x39, 0x74, 0x98, + 0x4a, 0x27, 0x3a, 0xec, 0x57, 0x71, 0x9b, 0x77, 0xa7, 0xdb, 0xbc, 0x2e, 0xfb, 0x58, 0x6d, 0x36, + 0x33, 0xc6, 0x13, 0xb5, 0x49, 0xec, 0x89, 0x10, 0xc0, 0x99, 0xee, 0xc0, 0xad, 0x8a, 0x28, 0xbc, + 0x26, 0xcc, 0xfc, 0xaa, 0x20, 0x8a, 0xe5, 0x9c, 0xbb, 0x9a, 0x50, 0x0a, 0xa3, 0x28, 0x56, 0xf2, + 0x4d, 0xbb, 0x97, 0x67, 0x51, 0x14, 0x1f, 0x2c, 0x58, 0x88, 0x23, 0xef, 0x43, 0x39, 0x88, 0x5c, + 0x27, 0x98, 0xad, 0x60, 0x9e, 0x0a, 0xe0, 0xc1, 0x82, 0x25, 0xb1, 0xe4, 0x1d, 0x28, 0xb0, 0x07, + 0x2a, 0xa7, 0x43, 0xba, 0x83, 0x07, 0x07, 0x0b, 0x56, 0x81, 0x3d, 0x20, 0xb7, 0xa1, 0x78, 0xea, + 0x32, 0x95, 0xb6, 0x1b, 0x1a, 0xfd, 0xf1, 0x6e, 0xff, 0x60, 0xc1, 0x12, 0x18, 0xf2, 0x11, 0xb4, + 0xdc, 0x20, 0x9a, 0x78, 0xb6, 0x77, 0x11, 0x3a, 0x63, 0xdf, 0x55, 0xd9, 0x7a, 0x79, 0x5a, 0x1d, + 0x44, 0x13, 0x6f, 0x4f, 0xe2, 0x0e, 0x16, 0xac, 0xa6, 0x9b, 0x19, 0x8b, 0x6d, 0x8c, 0xbc, 0xa1, + 0x2c, 0x5e, 0x33, 0xdb, 0x38, 0xd8, 0x7b, 0x2c, 0xd6, 0x47, 0x1c, 0x39, 0x00, 0xe2, 0x7c, 0x31, + 0x49, 0xa8, 0x3d, 0x08, 0xa2, 0x81, 0xad, 0x0d, 0x4b, 0x4a, 0xbc, 0xa7, 0x67, 0x6c, 0x0b, 0x8a, + 0x9d, 0x20, 0x1a, 0x28, 0x39, 0x89, 0x8c, 0xed, 0xcc, 0xc0, 0x76, 0xea, 0x50, 0x55, 0xc1, 0xd1, + 0xac, 0x40, 0x49, 0xc8, 0xca, 0x7c, 0x1b, 0xca, 0x28, 0x0e, 0x61, 0x4f, 0xc2, 0xa8, 0x75, 0x0d, + 0x88, 0x06, 0xfe, 0x67, 0x25, 0x28, 0xf4, 0x1f, 0x88, 0x3a, 0x9e, 0x86, 0x5e, 0x1c, 0xf9, 0xaa, + 0xa6, 0xaa, 0x5b, 0xe9, 0x58, 0x34, 0x28, 0x99, 0xc3, 0xd5, 0x7a, 0x7a, 0x98, 0x7a, 0x03, 0x2a, + 0x83, 0x89, 0x7b, 0x46, 0xb9, 0x2a, 0xd6, 0xd4, 0x48, 0xc0, 0xe3, 0x84, 0x0e, 0xfd, 0x97, 0xca, + 0x70, 0xd5, 0x48, 0xa6, 0x11, 0x19, 0xbf, 0xdd, 0xc0, 0x61, 0xb2, 0xe8, 0xaf, 0x8b, 0x34, 0x82, + 0xc0, 0x5d, 0x01, 0x13, 0xd5, 0x19, 0x63, 0xd2, 0x5e, 0xeb, 0x96, 0xf8, 0x29, 0x20, 0x8e, 0x1b, + 0xa0, 0x30, 0xea, 0x96, 0xf8, 0x29, 0x32, 0x89, 0xe3, 0xba, 0x94, 0x31, 0xcc, 0x55, 0x35, 0x79, + 0x32, 0x2a, 0x21, 0x22, 0x5d, 0x6d, 0xc2, 0x22, 0xa3, 0x6e, 0x42, 0xb9, 0x9d, 0xa1, 0xaa, 0x23, + 0x55, 0x47, 0x22, 0xb6, 0x53, 0xda, 0x0d, 0xe8, 0x0e, 0xa3, 0xc4, 0xa5, 0xb6, 0x10, 0x86, 0xcd, + 0xf8, 0x45, 0x40, 0x55, 0x66, 0x68, 0x23, 0xfc, 0xd8, 0xe1, 0xa3, 0xbe, 0x80, 0x92, 0x3b, 0xd0, + 0x66, 0x8c, 0xda, 0x67, 0x63, 0x5c, 0x4f, 0xc4, 0x18, 0x99, 0x2c, 0x1a, 0x8c, 0xd1, 0x27, 0x63, + 0xb1, 0xd8, 0xa1, 0x27, 0x7c, 0x3c, 0x89, 0x02, 0x6a, 0x3b, 0x89, 0x3c, 0x95, 0xad, 0x5b, 0x55, + 0x31, 0xde, 0x4e, 0x64, 0x7e, 0x7c, 0xc9, 0x69, 0x12, 0xca, 0x36, 0xb4, 0x85, 0x58, 0xd0, 0xa0, + 0x43, 0x8f, 0x6c, 0xc1, 0x52, 0x34, 0xf8, 0x19, 0x75, 0xb9, 0x2d, 0xda, 0xc7, 0xf4, 0x6c, 0xad, + 0x8d, 0xdc, 0x2c, 0x4a, 0xd4, 0xd3, 0xc8, 0x3d, 0xd3, 0x07, 0x6b, 0x42, 0x9c, 0xda, 0xc5, 0xa3, + 0x33, 0x2a, 0x23, 0xbf, 0x10, 0xa7, 0x72, 0x63, 0x01, 0x13, 0x7a, 0x8d, 0x93, 0xe8, 0xdc, 0xf7, + 0x68, 0x82, 0x67, 0x8e, 0x75, 0x2b, 0x1d, 0x8b, 0x62, 0x39, 0x4e, 0xa2, 0xa1, 0x1f, 0x50, 0x75, + 0xb2, 0xa8, 0x87, 0xe6, 0xaf, 0x0d, 0x28, 0x7e, 0xbc, 0xdb, 0x7f, 0x95, 0x55, 0x28, 0xed, 0x17, + 0xae, 0xd0, 0x7e, 0xf1, 0x7a, 0xed, 0x97, 0xe6, 0x68, 0xff, 0x7d, 0x68, 0xc7, 0x09, 0xf5, 0xe8, + 0xd0, 0x0f, 0xa9, 0x67, 0x0b, 0xb5, 0x4b, 0x1b, 0x69, 0x4d, 0xa1, 0xdb, 0x6e, 0x20, 0x7a, 0x43, + 0x57, 0x00, 0x42, 0xee, 0x3b, 0x01, 0x43, 0xa7, 0x51, 0x16, 0xd3, 0xc9, 0xc0, 0x85, 0x5b, 0x98, + 0x63, 0xe8, 0xa2, 0xdf, 0xec, 0x4e, 0x18, 0x8f, 0xc6, 0x58, 0x7c, 0x89, 0xaf, 0x64, 0xca, 0x3f, + 0x5d, 0x15, 0xd7, 0xad, 0xd6, 0x14, 0x2a, 0xc8, 0xee, 0xc3, 0x4a, 0x9e, 0xcc, 0xce, 0xf4, 0xe9, + 0x75, 0x6b, 0x29, 0x47, 0xdd, 0x47, 0x94, 0x08, 0x63, 0xdd, 0x59, 0x3f, 0xfd, 0xdd, 0x8b, 0xf1, + 0x5d, 0x68, 0x3a, 0xae, 0x1b, 0x4d, 0x42, 0x6e, 0x63, 0x02, 0x91, 0x42, 0x6c, 0x28, 0xd8, 0x33, + 0x91, 0x47, 0x6e, 0x01, 0xb0, 0x91, 0x93, 0x50, 0x59, 0xef, 0x49, 0xe1, 0xd5, 0x25, 0x44, 0xec, + 0x7d, 0xea, 0x62, 0xcc, 0x3f, 0xcd, 0xbb, 0x58, 0xdf, 0x3f, 0x15, 0x0a, 0xc8, 0x88, 0x86, 0xb9, + 0x51, 0x4c, 0xb5, 0x87, 0x4d, 0xe1, 0x7d, 0x01, 0x26, 0x3f, 0xb9, 0x24, 0x6c, 0x98, 0x13, 0xd6, + 0x32, 0xea, 0x99, 0x51, 0x83, 0xf9, 0x2b, 0x03, 0x2a, 0x3b, 0x52, 0x28, 0xaf, 0x17, 0xa5, 0x8a, + 0x57, 0x44, 0xa9, 0xd2, 0x15, 0x02, 0x2e, 0x5f, 0x2f, 0xe0, 0xca, 0x65, 0x01, 0x8b, 0x6e, 0xb2, + 0x99, 0x0d, 0xfa, 0xe4, 0x6e, 0xfa, 0x15, 0x43, 0x35, 0x72, 0xba, 0x4c, 0x41, 0x68, 0xfa, 0xd5, + 0x3b, 0xd0, 0xd2, 0xfe, 0x27, 0x55, 0x23, 0xb5, 0xde, 0xd4, 0x40, 0xd4, 0xcd, 0x0f, 0xa1, 0xec, + 0x70, 0x9e, 0xe8, 0x86, 0xfb, 0xf6, 0xbc, 0x34, 0xb3, 0xb5, 0x2d, 0x28, 0xf6, 0x43, 0x9e, 0x5c, + 0x58, 0x92, 0x7a, 0xf5, 0x11, 0xc0, 0x14, 0x28, 0xc2, 0xe6, 0xd4, 0xb2, 0xc5, 0x4f, 0xb2, 0x0c, + 0xe5, 0x73, 0x27, 0x98, 0xe8, 0x6f, 0xca, 0xc1, 0xef, 0x15, 0x1e, 0x19, 0xe6, 0x1a, 0x94, 0x44, + 0x3a, 0x92, 0x32, 0x1c, 0x47, 0x5c, 0x1f, 0x13, 0xa8, 0x91, 0xf9, 0x4f, 0x06, 0xb4, 0x67, 0x6e, + 0xea, 0xee, 0xe8, 0x9b, 0x34, 0x23, 0x9f, 0x78, 0x73, 0x17, 0x69, 0xdf, 0xae, 0xdd, 0x78, 0x9d, + 0xfb, 0xab, 0x99, 0x6b, 0x8f, 0xf2, 0x6b, 0x5d, 0x7b, 0x98, 0xf7, 0xa0, 0xbd, 0x1b, 0x50, 0x27, + 0x9c, 0xf6, 0x4b, 0xb9, 0xa2, 0xd1, 0xc8, 0x17, 0x8d, 0xe6, 0x31, 0x74, 0x52, 0xf2, 0x37, 0xd9, + 0x76, 0x0f, 0xaa, 0x6c, 0x82, 0xbe, 0x82, 0x9b, 0xae, 0x59, 0x7a, 0x68, 0x3e, 0x82, 0xb6, 0xba, + 0xcd, 0xd4, 0x0c, 0xdc, 0x85, 0x0e, 0x73, 0xce, 0xa9, 0xcd, 0x23, 0x3b, 0x5b, 0x4f, 0xd6, 0xac, + 0x96, 0x00, 0x9f, 0x44, 0x2a, 0x86, 0x98, 0x7f, 0x63, 0x40, 0x27, 0x9d, 0xfa, 0x86, 0x3a, 0x98, + 0xee, 0xb0, 0x30, 0x53, 0x16, 0x7f, 0x0f, 0x88, 0x1b, 0x05, 0x81, 0x48, 0x3a, 0x78, 0x1d, 0x88, + 0xf1, 0x41, 0x15, 0xa1, 0x5d, 0x85, 0x11, 0x62, 0xdf, 0x15, 0x70, 0x91, 0x58, 0x73, 0xd4, 0x78, + 0x98, 0x2d, 0x7b, 0xc1, 0x4e, 0x86, 0xb8, 0xef, 0x7f, 0x41, 0xcd, 0x25, 0x58, 0xdc, 0x1d, 0x51, + 0xf7, 0x6c, 0xdb, 0x1b, 0xfb, 0xa1, 0xda, 0xac, 0xf9, 0x0b, 0x03, 0x48, 0x16, 0xfa, 0x26, 0xfb, + 0x78, 0xdd, 0x2b, 0xde, 0x4d, 0x58, 0x1c, 0x39, 0xcc, 0x8e, 0x69, 0xe8, 0xf9, 0xe1, 0xa9, 0xed, + 0x88, 0x2f, 0xe1, 0x8e, 0x6a, 0x56, 0x67, 0xe4, 0xb0, 0x63, 0x09, 0x47, 0x06, 0xcc, 0x7f, 0x31, + 0xe0, 0xd6, 0xbe, 0xca, 0xc0, 0x4a, 0xd0, 0x16, 0x15, 0x6a, 0x48, 0xd5, 0x33, 0xa7, 0xe7, 0x34, + 0xde, 0xa8, 0xe7, 0xbc, 0x0d, 0x0d, 0x95, 0xd5, 0x33, 0xee, 0x0e, 0x12, 0xf4, 0x4c, 0x15, 0xf4, + 0x89, 0xfc, 0xa6, 0xa4, 0x90, 0xd1, 0xab, 0xa1, 0x60, 0x48, 0xf2, 0x3e, 0xb4, 0xb1, 0x37, 0x09, + 0xb9, 0x1d, 0xd0, 0xf0, 0x94, 0x8f, 0x94, 0xd0, 0x5b, 0x0a, 0xfa, 0x14, 0x81, 0xe6, 0x3a, 0xac, + 0x5d, 0xb5, 0x19, 0x29, 0x68, 0xf3, 0x2f, 0x0d, 0x58, 0x9d, 0x21, 0xe9, 0x3b, 0xe7, 0xbf, 0xc3, + 0xcd, 0x5e, 0xde, 0x49, 0x71, 0xde, 0x4e, 0x6e, 0xc1, 0xdb, 0x73, 0xd9, 0x54, 0xdb, 0xf8, 0xa5, + 0xba, 0x16, 0xf1, 0x1c, 0xee, 0x90, 0x4d, 0x1d, 0x2d, 0x8c, 0xfc, 0xe9, 0xe4, 0x9e, 0xba, 0xde, + 0xc0, 0x9e, 0x59, 0x45, 0x8d, 0x87, 0xd0, 0x40, 0xc3, 0x55, 0x2d, 0xab, 0xbc, 0x8b, 0x58, 0x99, + 0x9d, 0x81, 0xad, 0xa9, 0x85, 0xf7, 0xe3, 0xaa, 0x4b, 0xc5, 0xd6, 0x4d, 0x68, 0x28, 0x3d, 0xe2, + 0xc5, 0xae, 0x4e, 0x78, 0xd0, 0x6d, 0x10, 0xaa, 0x8a, 0x82, 0x73, 0x9a, 0xe9, 0xdf, 0x40, 0x83, + 0x64, 0x6f, 0x37, 0x76, 0x5e, 0x0a, 0x9c, 0x54, 0x5a, 0x79, 0xec, 0xbc, 0x54, 0x60, 0x3f, 0x14, + 0xe0, 0xb2, 0x02, 0xfb, 0xe1, 0x89, 0xe0, 0x10, 0x1f, 0x87, 0xa4, 0x81, 0xad, 0xaa, 0x02, 0x5b, + 0xe6, 0x9e, 0x58, 0x07, 0xb6, 0xc6, 0x78, 0x3a, 0x30, 0xff, 0xcd, 0x80, 0x56, 0x8e, 0xff, 0x79, + 0xc5, 0x3e, 0xf9, 0x31, 0x74, 0xa6, 0xb7, 0x42, 0xf2, 0x9c, 0xa1, 0x70, 0x8d, 0xd4, 0x5a, 0xe9, + 0x15, 0x11, 0xb6, 0xbc, 0x53, 0x96, 0x8b, 0x59, 0x96, 0xaf, 0xd8, 0xe0, 0x5d, 0xe8, 0x08, 0xea, + 0xac, 0x70, 0xe4, 0x4e, 0x5b, 0xd2, 0xf5, 0xb5, 0x7c, 0x6e, 0x40, 0x45, 0x99, 0x82, 0xbc, 0xce, + 0x53, 0x23, 0xf3, 0x9f, 0x2b, 0xd0, 0xcc, 0x72, 0x93, 0xb9, 0x27, 0x31, 0x72, 0xf7, 0x24, 0x7a, + 0xa3, 0x85, 0xcc, 0x46, 0x37, 0x61, 0x31, 0x9c, 0x8c, 0x07, 0x34, 0xb1, 0xa3, 0xa1, 0x4d, 0x43, + 0x9e, 0xf8, 0x54, 0x72, 0x5d, 0xb4, 0x3a, 0x12, 0xf1, 0x7c, 0xb8, 0x2f, 0xc1, 0x99, 0x6d, 0x95, + 0xe6, 0x6f, 0xab, 0x9c, 0xdd, 0xd6, 0x8c, 0xbe, 0x2b, 0x97, 0xf4, 0xfd, 0x36, 0xd4, 0xd5, 0xc1, + 0xae, 0xef, 0xa1, 0xfa, 0x8a, 0x56, 0x4d, 0x02, 0x66, 0xcf, 0xdf, 0x6a, 0x57, 0x27, 0xc4, 0xfa, + 0x9c, 0x13, 0xf1, 0xe9, 0x3d, 0xe2, 0x7b, 0x50, 0xc2, 0xa6, 0xbe, 0x81, 0xc6, 0xd1, 0xcd, 0xe6, + 0x47, 0xec, 0xe6, 0x11, 0x2b, 0x96, 0xf3, 0x19, 0x5e, 0x57, 0x62, 0x2b, 0x52, 0xb3, 0x2a, 0x3e, + 0xc3, 0x0b, 0xe5, 0xb7, 0xa0, 0x26, 0x8f, 0x10, 0x54, 0x1b, 0x52, 0xb4, 0xaa, 0x38, 0x3e, 0xf4, + 0x32, 0xca, 0x68, 0x67, 0x95, 0x41, 0xfe, 0x3f, 0xac, 0x0a, 0x19, 0x0d, 0xe8, 0x29, 0x4a, 0xca, + 0xf6, 0x43, 0xdb, 0xa3, 0x43, 0x67, 0x12, 0x70, 0xdb, 0x1d, 0x62, 0xe3, 0x51, 0xb2, 0x56, 0xc6, + 0x7e, 0xb8, 0x23, 0x08, 0x4e, 0xd8, 0x61, 0xb8, 0x27, 0xb1, 0xbb, 0x43, 0x8c, 0x6f, 0xf8, 0x84, + 0x22, 0x1a, 0x0e, 0x19, 0xe5, 0xd8, 0x85, 0x94, 0xac, 0x06, 0xc2, 0x9e, 0x23, 0x68, 0x4a, 0xa2, + 0xbe, 0xbd, 0x98, 0x21, 0x91, 0x11, 0x61, 0xee, 0x99, 0x06, 0x79, 0xc3, 0x33, 0x8d, 0xec, 0x5d, + 0xd5, 0xd2, 0xcc, 0x5d, 0xd5, 0x06, 0x74, 0x95, 0xd6, 0xa6, 0xfa, 0x59, 0x46, 0x25, 0xb4, 0x25, + 0xbc, 0xaf, 0xb5, 0xf4, 0x1e, 0xb4, 0xf5, 0xc1, 0xbd, 0x52, 0xd6, 0x0a, 0xd2, 0xa9, 0xe3, 0xfc, + 0x7d, 0xa9, 0xb2, 0x87, 0xd3, 0xe3, 0xfd, 0x38, 0x72, 0x47, 0xea, 0x79, 0xc3, 0x52, 0x3e, 0x67, + 0xed, 0x0b, 0x54, 0x7a, 0xc2, 0x2f, 0x06, 0xc4, 0x82, 0x65, 0x8c, 0x50, 0x99, 0x92, 0x19, 0xdd, + 0xf4, 0x26, 0xc6, 0xe1, 0xf5, 0xfc, 0xc9, 0xb2, 0x50, 0xf8, 0xf4, 0x88, 0x1a, 0x5d, 0x96, 0x0c, + 0x2f, 0xc1, 0xcc, 0x2f, 0x0d, 0x58, 0xcc, 0x9e, 0xd6, 0xec, 0xeb, 0xba, 0x60, 0xe4, 0xc4, 0x31, + 0x0d, 0x6d, 0x47, 0x5f, 0xa3, 0xd4, 0x24, 0x60, 0x1b, 0x8f, 0x91, 0x31, 0xeb, 0xda, 0x6e, 0xe4, + 0xe9, 0x38, 0x5e, 0x47, 0xc8, 0x6e, 0xe4, 0x89, 0x84, 0x2d, 0x5f, 0xb4, 0xd9, 0x63, 0xca, 0x98, + 0x28, 0x59, 0x64, 0xd2, 0x6a, 0x22, 0xf0, 0x48, 0xc2, 0x72, 0x41, 0x53, 0x5f, 0x52, 0xca, 0xa0, + 0x69, 0x3e, 0x84, 0x52, 0x3f, 0x76, 0xb0, 0x36, 0x57, 0x56, 0x21, 0x19, 0x50, 0xa3, 0x8c, 0x19, + 0x16, 0x72, 0x31, 0x61, 0x1f, 0x1a, 0x62, 0x1e, 0x7b, 0x3e, 0xd4, 0xaf, 0x12, 0x2e, 0x85, 0x38, + 0x13, 0xca, 0x4c, 0x90, 0xcc, 0xde, 0x79, 0x8b, 0x79, 0x96, 0x44, 0x99, 0x5f, 0x16, 0xa1, 0xf7, + 0x34, 0x3a, 0xc5, 0x5a, 0x65, 0x32, 0x10, 0x66, 0xe2, 0xb8, 0xea, 0x90, 0xdf, 0x49, 0x2f, 0xe9, + 0x8d, 0xfc, 0x25, 0xfd, 0xd4, 0xa7, 0xd5, 0x13, 0x8b, 0xd4, 0xa7, 0x67, 0xee, 0xab, 0xc8, 0x3a, + 0x34, 0xfd, 0x30, 0x9e, 0x70, 0x3b, 0x17, 0x15, 0x01, 0x61, 0x47, 0x18, 0x43, 0xa6, 0x14, 0xd9, + 0x0c, 0xa0, 0x28, 0x30, 0xf8, 0xdc, 0x85, 0x8e, 0x62, 0xcb, 0x1e, 0x26, 0xd1, 0x78, 0x1a, 0x69, + 0x5a, 0x0a, 0xfc, 0x38, 0x89, 0xc6, 0x27, 0xf8, 0xf6, 0x4e, 0xd3, 0x4d, 0x42, 0xee, 0x07, 0xb6, + 0xba, 0x04, 0x2d, 0x59, 0x6d, 0x05, 0xff, 0x54, 0x80, 0x4f, 0x98, 0x88, 0x06, 0xe2, 0x6b, 0xd3, + 0xb8, 0x23, 0x82, 0x9e, 0x8a, 0x3a, 0x82, 0xd1, 0x4c, 0xd4, 0x19, 0x3b, 0x2f, 0x05, 0x62, 0x1d, + 0xdf, 0xe2, 0xc1, 0x15, 0x31, 0xa6, 0xc0, 0x2f, 0x72, 0x81, 0xa4, 0x91, 0x0f, 0x24, 0xf7, 0xa0, + 0xca, 0xa2, 0x49, 0xe2, 0x52, 0xd6, 0x6b, 0xe6, 0x6f, 0xfc, 0x33, 0x0a, 0xb4, 0x34, 0x8d, 0xf9, + 0xf7, 0x06, 0x2c, 0xcf, 0xd3, 0x08, 0xf9, 0x10, 0x4a, 0x18, 0xc1, 0x0c, 0x65, 0xff, 0xe9, 0xf1, + 0xde, 0x7c, 0xed, 0x59, 0x48, 0x4d, 0xee, 0x41, 0x83, 0x31, 0x6e, 0x47, 0x13, 0x1e, 0x4f, 0xf8, + 0xfc, 0xe7, 0x0f, 0xc0, 0x18, 0x7f, 0x2e, 0xf1, 0x64, 0x07, 0x16, 0x95, 0x7a, 0x31, 0xf7, 0x8e, + 0xfc, 0x90, 0xeb, 0xde, 0x2b, 0xad, 0x7c, 0xa4, 0xc7, 0x8a, 0x6f, 0x1c, 0xf8, 0x21, 0xb7, 0x3a, + 0x49, 0x6e, 0xcc, 0xcc, 0x3f, 0x86, 0x76, 0x9e, 0xe4, 0x5b, 0xde, 0x7e, 0xce, 0x06, 0x0e, 0x79, + 0x66, 0xf9, 0xca, 0xc0, 0x61, 0xfe, 0x11, 0xac, 0xcc, 0x13, 0x0a, 0x23, 0x7b, 0xd0, 0x66, 0x39, + 0x88, 0x2a, 0x94, 0xde, 0xb9, 0x4e, 0x96, 0xd6, 0xcc, 0x1c, 0xf3, 0xcb, 0x02, 0x2c, 0x2a, 0xc2, + 0xdd, 0xa9, 0x76, 0xb0, 0x7d, 0xd0, 0xa3, 0xd4, 0x52, 0x0d, 0xdd, 0x3e, 0x68, 0x8c, 0x32, 0xd6, + 0x2d, 0x58, 0xca, 0x50, 0xa7, 0xf6, 0x2a, 0xfd, 0x69, 0x71, 0x8a, 0xd2, 0x26, 0xab, 0x8f, 0xbf, + 0x8b, 0x99, 0xe3, 0x6f, 0x11, 0xc3, 0xa3, 0xf1, 0x98, 0x86, 0x5c, 0x9f, 0x7c, 0xa4, 0x63, 0xf2, + 0x0e, 0xd4, 0x9d, 0x84, 0xfb, 0x43, 0xc7, 0xe5, 0xfa, 0x6c, 0x71, 0x0a, 0x10, 0xa5, 0x67, 0x3a, + 0xb0, 0x47, 0x0e, 0xd3, 0xf5, 0x46, 0x2b, 0x85, 0x1e, 0x38, 0x6c, 0x44, 0xbe, 0x03, 0x9d, 0x53, + 0x1a, 0xd2, 0xc4, 0xe1, 0xd4, 0x53, 0xaf, 0x67, 0xe4, 0xc9, 0x63, 0x3b, 0x05, 0x63, 0x45, 0x64, + 0xfe, 0xa3, 0x21, 0x8b, 0xd0, 0x7d, 0xcf, 0xe7, 0x73, 0x23, 0xd1, 0x7d, 0x58, 0xf1, 0x68, 0x40, + 0x39, 0xb5, 0xd3, 0xe7, 0x27, 0xd3, 0xd7, 0x38, 0x75, 0x6b, 0x49, 0x22, 0x8f, 0x15, 0x4e, 0xbe, + 0xc4, 0x79, 0x02, 0xcb, 0x6a, 0x4e, 0x10, 0x9d, 0x66, 0xa6, 0x48, 0x63, 0x7c, 0x2b, 0xad, 0xd2, + 0x90, 0x26, 0xeb, 0x49, 0x44, 0x4e, 0x7b, 0x2a, 0x67, 0xc9, 0xc5, 0xee, 0x40, 0xcb, 0xa3, 0x8c, + 0x27, 0x13, 0x97, 0xdb, 0x8c, 0x06, 0x43, 0xf5, 0x80, 0xb5, 0xa9, 0x81, 0x7d, 0x1a, 0x0c, 0xcd, + 0x17, 0xb0, 0x78, 0x69, 0xb5, 0x6f, 0x1b, 0x58, 0x45, 0xd9, 0xf5, 0x62, 0x14, 0xc9, 0xcb, 0x09, + 0x9a, 0xaf, 0xf0, 0x3b, 0x88, 0x10, 0xab, 0xab, 0x1a, 0xff, 0x57, 0x05, 0xa8, 0x1f, 0xf9, 0xa7, + 0x09, 0xbe, 0x16, 0xc4, 0x2b, 0xfd, 0x84, 0x3a, 0x5c, 0xdd, 0x84, 0xd7, 0x2d, 0x3d, 0x24, 0xf7, + 0xa7, 0xef, 0x5c, 0xe5, 0x25, 0x46, 0x7a, 0x70, 0x94, 0xce, 0xd6, 0x15, 0x71, 0xfa, 0x02, 0xf6, + 0x1e, 0xd4, 0xa9, 0xe7, 0x73, 0x5b, 0x85, 0x8e, 0xe2, 0xec, 0x53, 0x4b, 0xa1, 0x33, 0xab, 0x26, + 0x48, 0x30, 0xe4, 0xbf, 0x0b, 0x4d, 0x9e, 0x4c, 0x42, 0x17, 0x75, 0xce, 0x23, 0x65, 0x91, 0x8d, + 0x14, 0x76, 0x12, 0x91, 0x8f, 0xa0, 0x91, 0x75, 0xa1, 0x19, 0x7d, 0x5c, 0xf2, 0x0c, 0x2b, 0x4b, + 0x2d, 0x6c, 0x2a, 0x55, 0x44, 0x7a, 0x32, 0x2e, 0x6c, 0xa0, 0xad, 0xc1, 0xc7, 0x08, 0xdd, 0x7c, + 0x06, 0xeb, 0xaf, 0x7a, 0x9c, 0x4d, 0x3a, 0xd0, 0xf8, 0x14, 0x6f, 0x51, 0xf0, 0x0d, 0x72, 0x77, + 0x81, 0xb4, 0xa0, 0xfe, 0x53, 0xc7, 0xe7, 0xdb, 0x71, 0x1c, 0x5c, 0x74, 0x0d, 0x02, 0x50, 0x79, + 0xec, 0x87, 0x3e, 0x1b, 0x75, 0x0b, 0x9b, 0x9f, 0xc0, 0xda, 0xf5, 0x8f, 0xa7, 0xc9, 0x22, 0xb4, + 0xd2, 0xc9, 0x7b, 0x51, 0x28, 0xd6, 0x5b, 0x81, 0xc5, 0xcc, 0x07, 0xe4, 0x33, 0xd3, 0xae, 0xb1, + 0xf9, 0xfb, 0xd0, 0x99, 0xa9, 0xb0, 0x48, 0x03, 0xaa, 0x9f, 0x3e, 0x7b, 0xf2, 0xec, 0xf9, 0x4f, + 0x9f, 0x75, 0x17, 0x48, 0x15, 0x8a, 0x4f, 0x3f, 0xff, 0x50, 0x32, 0xd0, 0x7f, 0xb6, 0x7d, 0x7c, + 0xfc, 0x87, 0xdd, 0x02, 0xa9, 0x41, 0xe9, 0xf3, 0xfe, 0xc9, 0x5e, 0xb7, 0xb8, 0xb9, 0x9e, 0xbe, + 0x91, 0x16, 0x05, 0x44, 0x0d, 0x4a, 0xfd, 0xdd, 0x6d, 0x31, 0xad, 0x06, 0xa5, 0xc7, 0x87, 0x4f, + 0xf7, 0xbb, 0xc6, 0xe6, 0x2d, 0x68, 0x64, 0xda, 0x1b, 0x52, 0x81, 0xc2, 0x67, 0x3f, 0xe8, 0x2e, + 0xe0, 0xdf, 0xfb, 0x5d, 0x63, 0xf3, 0x36, 0xd4, 0x74, 0xf2, 0x11, 0x9f, 0x90, 0x46, 0x2b, 0xbf, + 0x7b, 0x3c, 0x11, 0x0c, 0x9a, 0xd0, 0x9d, 0xb5, 0x08, 0x31, 0xf9, 0xe8, 0x03, 0xb9, 0xc8, 0xd1, + 0x0f, 0xba, 0xc6, 0xfd, 0xdf, 0x16, 0xa0, 0x22, 0xd9, 0x20, 0x1f, 0x81, 0x7a, 0xac, 0x4f, 0x56, + 0x66, 0x1e, 0xa3, 0x49, 0x61, 0xaf, 0xde, 0x98, 0x05, 0xab, 0xee, 0x73, 0xe1, 0x03, 0x83, 0x1c, + 0xc3, 0x12, 0x9e, 0x63, 0x64, 0x4f, 0x13, 0x9e, 0xc7, 0x24, 0x35, 0x88, 0x4b, 0x47, 0x1f, 0xab, + 0xab, 0xf3, 0x50, 0x99, 0x15, 0x47, 0xb0, 0x32, 0x57, 0x55, 0xe4, 0xbd, 0xd7, 0x79, 0xb6, 0xbf, + 0xfa, 0xfe, 0x2b, 0xa8, 0xe4, 0x97, 0x36, 0x8c, 0x0f, 0x0c, 0xf2, 0x63, 0xa8, 0xc6, 0x92, 0x88, + 0xdc, 0x98, 0x99, 0xa5, 0x57, 0xbb, 0x79, 0x09, 0xae, 0x39, 0x15, 0xb3, 0x5d, 0x79, 0x26, 0x46, + 0x32, 0x8f, 0x63, 0xb2, 0x67, 0x6a, 0xd3, 0xd9, 0x33, 0x87, 0x67, 0xe6, 0xc2, 0xfd, 0x7f, 0x30, + 0xa0, 0x33, 0xd3, 0xd9, 0x93, 0xcf, 0xa1, 0xaa, 0x0e, 0x3b, 0x48, 0xba, 0x8b, 0x6b, 0x0f, 0x65, + 0x56, 0xef, 0xbe, 0x8a, 0x2c, 0xe5, 0xf6, 0x0f, 0xa0, 0xc4, 0x9c, 0x73, 0x4a, 0xcc, 0x2b, 0x66, + 0x64, 0x4e, 0x3f, 0x56, 0xef, 0x5c, 0x4b, 0xa3, 0x97, 0xdc, 0xb9, 0xff, 0x9b, 0xbf, 0xaa, 0x19, + 0xbf, 0xfe, 0x7a, 0xcd, 0xf8, 0xea, 0xeb, 0x35, 0xe3, 0x3f, 0xbf, 0x5e, 0x33, 0x7e, 0xf9, 0xcd, + 0xda, 0xc2, 0x5f, 0x7c, 0xb3, 0xb6, 0xf0, 0xd5, 0x37, 0x6b, 0x0b, 0xbf, 0xf9, 0x66, 0x6d, 0x01, + 0xba, 0x51, 0x72, 0xba, 0xc5, 0xfd, 0xb3, 0xf3, 0xad, 0xb3, 0x73, 0xfc, 0x3f, 0x8d, 0x41, 0x05, + 0xff, 0x3c, 0xf8, 0x9f, 0x00, 0x00, 0x00, 0xff, 0xff, 0x4f, 0xc7, 0x09, 0x75, 0x2b, 0x32, 0x00, + 0x00, } // Reference imports to suppress errors if they are not otherwise used. @@ -6100,6 +6242,49 @@ func (m *BackupRange) MarshalToSizedBuffer(dAtA []byte) (int, error) { return len(dAtA) - i, nil } +func (m *TableMeta) 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 *TableMeta) MarshalTo(dAtA []byte) (int, error) { + size := m.Size() + return m.MarshalToSizedBuffer(dAtA[:size]) +} + +func (m *TableMeta) MarshalToSizedBuffer(dAtA []byte) (int, error) { + i := len(dAtA) + _ = i + var l int + _ = l + if m.TotalBytes != 0 { + i = encodeVarintBrpb(dAtA, i, uint64(m.TotalBytes)) + i-- + dAtA[i] = 0x20 + } + if m.TotalKvs != 0 { + i = encodeVarintBrpb(dAtA, i, uint64(m.TotalKvs)) + i-- + dAtA[i] = 0x18 + } + if m.Crc64Xor != 0 { + i = encodeVarintBrpb(dAtA, i, uint64(m.Crc64Xor)) + i-- + dAtA[i] = 0x10 + } + if m.PhysicalId != 0 { + i = encodeVarintBrpb(dAtA, i, uint64(m.PhysicalId)) + i-- + dAtA[i] = 0x8 + } + return len(dAtA) - i, nil +} + func (m *File) Marshal() (dAtA []byte, err error) { size := m.Size() dAtA = make([]byte, size) @@ -6120,6 +6305,20 @@ func (m *File) MarshalToSizedBuffer(dAtA []byte) (int, error) { _ = i var l int _ = l + if len(m.TableMetas) > 0 { + for iNdEx := len(m.TableMetas) - 1; iNdEx >= 0; iNdEx-- { + { + size, err := m.TableMetas[iNdEx].MarshalToSizedBuffer(dAtA[:i]) + if err != nil { + return 0, err + } + i -= size + i = encodeVarintBrpb(dAtA, i, uint64(size)) + } + i-- + dAtA[i] = 0x6a + } + } if len(m.CipherIv) > 0 { i -= len(m.CipherIv) copy(dAtA[i:], m.CipherIv) @@ -7013,7 +7212,7 @@ func (m *MasterKeyConfig) MarshalToSizedBuffer(dAtA []byte) (int, error) { return len(dAtA) - i, nil } -func (m *BackupRequest) Marshal() (dAtA []byte, err error) { +func (m *SortedSubRanges) Marshal() (dAtA []byte, err error) { size := m.Size() dAtA = make([]byte, size) n, err := m.MarshalToSizedBuffer(dAtA[:size]) @@ -7023,25 +7222,78 @@ func (m *BackupRequest) Marshal() (dAtA []byte, err error) { return dAtA[:n], nil } -func (m *BackupRequest) MarshalTo(dAtA []byte) (int, error) { +func (m *SortedSubRanges) MarshalTo(dAtA []byte) (int, error) { size := m.Size() return m.MarshalToSizedBuffer(dAtA[:size]) } -func (m *BackupRequest) MarshalToSizedBuffer(dAtA []byte) (int, error) { +func (m *SortedSubRanges) MarshalToSizedBuffer(dAtA []byte) (int, error) { i := len(dAtA) _ = i var l int _ = l - if m.Context != nil { - { - size, err := m.Context.MarshalToSizedBuffer(dAtA[:i]) - if err != nil { - return 0, err + if len(m.SubRanges) > 0 { + for iNdEx := len(m.SubRanges) - 1; iNdEx >= 0; iNdEx-- { + { + size, err := m.SubRanges[iNdEx].MarshalToSizedBuffer(dAtA[:i]) + if err != nil { + return 0, err + } + i -= size + i = encodeVarintBrpb(dAtA, i, uint64(size)) } - i -= size - i = encodeVarintBrpb(dAtA, i, uint64(size)) - } + i-- + dAtA[i] = 0xa + } + } + return len(dAtA) - i, nil +} + +func (m *BackupRequest) 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 *BackupRequest) MarshalTo(dAtA []byte) (int, error) { + size := m.Size() + return m.MarshalToSizedBuffer(dAtA[:size]) +} + +func (m *BackupRequest) MarshalToSizedBuffer(dAtA []byte) (int, error) { + i := len(dAtA) + _ = i + var l int + _ = l + if len(m.SortedSubRangesGroups) > 0 { + for iNdEx := len(m.SortedSubRangesGroups) - 1; iNdEx >= 0; iNdEx-- { + { + size, err := m.SortedSubRangesGroups[iNdEx].MarshalToSizedBuffer(dAtA[:i]) + if err != nil { + return 0, err + } + i -= size + i = encodeVarintBrpb(dAtA, i, uint64(size)) + } + i-- + dAtA[i] = 0x1 + i-- + dAtA[i] = 0xaa + } + } + if m.Context != nil { + { + size, err := m.Context.MarshalToSizedBuffer(dAtA[:i]) + if err != nil { + return 0, err + } + i -= size + i = encodeVarintBrpb(dAtA, i, uint64(size)) + } i-- dAtA[i] = 0x1 i-- @@ -9589,6 +9841,27 @@ func (m *BackupRange) Size() (n int) { return n } +func (m *TableMeta) Size() (n int) { + if m == nil { + return 0 + } + var l int + _ = l + if m.PhysicalId != 0 { + n += 1 + sovBrpb(uint64(m.PhysicalId)) + } + if m.Crc64Xor != 0 { + n += 1 + sovBrpb(uint64(m.Crc64Xor)) + } + if m.TotalKvs != 0 { + n += 1 + sovBrpb(uint64(m.TotalKvs)) + } + if m.TotalBytes != 0 { + n += 1 + sovBrpb(uint64(m.TotalBytes)) + } + return n +} + func (m *File) Size() (n int) { if m == nil { return 0 @@ -9637,6 +9910,12 @@ func (m *File) Size() (n int) { if l > 0 { n += 1 + l + sovBrpb(uint64(l)) } + if len(m.TableMetas) > 0 { + for _, e := range m.TableMetas { + l = e.Size() + n += 1 + l + sovBrpb(uint64(l)) + } + } return n } @@ -10018,6 +10297,21 @@ func (m *MasterKeyConfig) Size() (n int) { return n } +func (m *SortedSubRanges) Size() (n int) { + if m == nil { + return 0 + } + var l int + _ = l + if len(m.SubRanges) > 0 { + for _, e := range m.SubRanges { + l = e.Size() + n += 1 + l + sovBrpb(uint64(l)) + } + } + return n +} + func (m *BackupRequest) Size() (n int) { if m == nil { return 0 @@ -10091,6 +10385,12 @@ func (m *BackupRequest) Size() (n int) { l = m.Context.Size() n += 2 + l + sovBrpb(uint64(l)) } + if len(m.SortedSubRangesGroups) > 0 { + for _, e := range m.SortedSubRangesGroups { + l = e.Size() + n += 2 + l + sovBrpb(uint64(l)) + } + } return n } @@ -12290,6 +12590,132 @@ func (m *BackupRange) Unmarshal(dAtA []byte) error { } return nil } +func (m *TableMeta) 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 ErrIntOverflowBrpb + } + 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: TableMeta: wiretype end group for non-group") + } + if fieldNum <= 0 { + return fmt.Errorf("proto: TableMeta: illegal tag %d (wire type %d)", fieldNum, wire) + } + switch fieldNum { + case 1: + if wireType != 0 { + return fmt.Errorf("proto: wrong wireType = %d for field PhysicalId", wireType) + } + m.PhysicalId = 0 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowBrpb + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + m.PhysicalId |= int64(b&0x7F) << shift + if b < 0x80 { + break + } + } + case 2: + if wireType != 0 { + return fmt.Errorf("proto: wrong wireType = %d for field Crc64Xor", wireType) + } + m.Crc64Xor = 0 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowBrpb + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + m.Crc64Xor |= uint64(b&0x7F) << shift + if b < 0x80 { + break + } + } + case 3: + if wireType != 0 { + return fmt.Errorf("proto: wrong wireType = %d for field TotalKvs", wireType) + } + m.TotalKvs = 0 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowBrpb + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + m.TotalKvs |= uint64(b&0x7F) << shift + if b < 0x80 { + break + } + } + case 4: + if wireType != 0 { + return fmt.Errorf("proto: wrong wireType = %d for field TotalBytes", wireType) + } + m.TotalBytes = 0 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowBrpb + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + m.TotalBytes |= uint64(b&0x7F) << shift + if b < 0x80 { + break + } + } + default: + iNdEx = preIndex + skippy, err := skipBrpb(dAtA[iNdEx:]) + if err != nil { + return err + } + if (skippy < 0) || (iNdEx+skippy) < 0 { + return ErrInvalidLengthBrpb + } + if (iNdEx + skippy) > l { + return io.ErrUnexpectedEOF + } + iNdEx += skippy + } + } + + if iNdEx > l { + return io.ErrUnexpectedEOF + } + return nil +} func (m *File) Unmarshal(dAtA []byte) error { l := len(dAtA) iNdEx := 0 @@ -12633,6 +13059,40 @@ func (m *File) Unmarshal(dAtA []byte) error { m.CipherIv = []byte{} } iNdEx = postIndex + case 13: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field TableMetas", wireType) + } + var msglen int + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowBrpb + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + msglen |= int(b&0x7F) << shift + if b < 0x80 { + break + } + } + if msglen < 0 { + return ErrInvalidLengthBrpb + } + postIndex := iNdEx + msglen + if postIndex < 0 { + return ErrInvalidLengthBrpb + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + m.TableMetas = append(m.TableMetas, &TableMeta{}) + if err := m.TableMetas[len(m.TableMetas)-1].Unmarshal(dAtA[iNdEx:postIndex]); err != nil { + return err + } + iNdEx = postIndex default: iNdEx = preIndex skippy, err := skipBrpb(dAtA[iNdEx:]) @@ -14804,6 +15264,90 @@ func (m *MasterKeyConfig) Unmarshal(dAtA []byte) error { } return nil } +func (m *SortedSubRanges) 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 ErrIntOverflowBrpb + } + 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: SortedSubRanges: wiretype end group for non-group") + } + if fieldNum <= 0 { + return fmt.Errorf("proto: SortedSubRanges: illegal tag %d (wire type %d)", fieldNum, wire) + } + switch fieldNum { + case 1: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field SubRanges", wireType) + } + var msglen int + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowBrpb + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + msglen |= int(b&0x7F) << shift + if b < 0x80 { + break + } + } + if msglen < 0 { + return ErrInvalidLengthBrpb + } + postIndex := iNdEx + msglen + if postIndex < 0 { + return ErrInvalidLengthBrpb + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + m.SubRanges = append(m.SubRanges, &kvrpcpb.KeyRange{}) + if err := m.SubRanges[len(m.SubRanges)-1].Unmarshal(dAtA[iNdEx:postIndex]); err != nil { + return err + } + iNdEx = postIndex + default: + iNdEx = preIndex + skippy, err := skipBrpb(dAtA[iNdEx:]) + if err != nil { + return err + } + if (skippy < 0) || (iNdEx+skippy) < 0 { + return ErrInvalidLengthBrpb + } + if (iNdEx + skippy) > l { + return io.ErrUnexpectedEOF + } + iNdEx += skippy + } + } + + if iNdEx > l { + return io.ErrUnexpectedEOF + } + return nil +} func (m *BackupRequest) Unmarshal(dAtA []byte) error { l := len(dAtA) iNdEx := 0 @@ -15318,6 +15862,40 @@ func (m *BackupRequest) Unmarshal(dAtA []byte) error { return err } iNdEx = postIndex + case 21: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field SortedSubRangesGroups", wireType) + } + var msglen int + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowBrpb + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + msglen |= int(b&0x7F) << shift + if b < 0x80 { + break + } + } + if msglen < 0 { + return ErrInvalidLengthBrpb + } + postIndex := iNdEx + msglen + if postIndex < 0 { + return ErrInvalidLengthBrpb + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + m.SortedSubRangesGroups = append(m.SortedSubRangesGroups, &SortedSubRanges{}) + if err := m.SortedSubRangesGroups[len(m.SortedSubRangesGroups)-1].Unmarshal(dAtA[iNdEx:postIndex]); err != nil { + return err + } + iNdEx = postIndex default: iNdEx = preIndex skippy, err := skipBrpb(dAtA[iNdEx:]) diff --git a/pkg/import_sstpb/import_sstpb.pb.go b/pkg/import_sstpb/import_sstpb.pb.go index 75aff7d02..8d27cb7dd 100644 --- a/pkg/import_sstpb/import_sstpb.pb.go +++ b/pkg/import_sstpb/import_sstpb.pb.go @@ -1032,8 +1032,9 @@ type DownloadRequest struct { // // You need to ensure that the keys before and after rewriting are in the // same order, otherwise the RPC request will fail. - RewriteRule RewriteRule `protobuf:"bytes,13,opt,name=rewrite_rule,json=rewriteRule,proto3" json:"rewrite_rule"` - StorageBackend *brpb.StorageBackend `protobuf:"bytes,14,opt,name=storage_backend,json=storageBackend,proto3" json:"storage_backend,omitempty"` + RewriteRule RewriteRule `protobuf:"bytes,13,opt,name=rewrite_rule,json=rewriteRule,proto3" json:"rewrite_rule"` + SortedRewriteRules []*RewriteRule `protobuf:"bytes,20,rep,name=sorted_rewrite_rules,json=sortedRewriteRules,proto3" json:"sorted_rewrite_rules,omitempty"` + StorageBackend *brpb.StorageBackend `protobuf:"bytes,14,opt,name=storage_backend,json=storageBackend,proto3" json:"storage_backend,omitempty"` // The identity for the stroage backend. // When this field presents, the storage would be cached. // If there is a cached storage, TiKV would use it driectly. @@ -1114,6 +1115,13 @@ func (m *DownloadRequest) GetRewriteRule() RewriteRule { return RewriteRule{} } +func (m *DownloadRequest) GetSortedRewriteRules() []*RewriteRule { + if m != nil { + return m.SortedRewriteRules + } + return nil +} + func (m *DownloadRequest) GetStorageBackend() *brpb.StorageBackend { if m != nil { return m.StorageBackend @@ -2538,150 +2546,151 @@ func init() { func init() { proto.RegisterFile("import_sstpb.proto", fileDescriptor_4d076b7935cfab6b) } var fileDescriptor_4d076b7935cfab6b = []byte{ - // 2279 bytes of a gzipped FileDescriptorProto + // 2301 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xb4, 0x59, 0xcd, 0x72, 0xdb, 0xc8, 0xf1, 0x27, 0xf8, 0xcd, 0xe6, 0x87, 0xe8, 0xb1, 0x56, 0xa6, 0x69, 0x5b, 0xb6, 0xf1, 0xf7, 0xee, 0xca, 0xd2, 0x3f, 0xb4, 0x23, 0x6f, 0x5c, 0x5b, 0x9b, 0xaa, 0xb8, 0x56, 0x1f, 0xb1, 0x15, 0x59, 0xb6, 0x02, 0x2a, 0xce, 0x21, 0x07, 0x14, 0x04, 0x0e, 0x25, 0x84, 0x20, 0x80, 0x60, 0x86, 0x94, - 0x79, 0xc9, 0x03, 0xe4, 0x94, 0xdc, 0x72, 0x4d, 0x4e, 0x5b, 0x79, 0x83, 0xbc, 0xc1, 0x1e, 0xf7, - 0xb8, 0xa7, 0x54, 0xca, 0xbe, 0xe7, 0x92, 0x07, 0xd8, 0xd4, 0xf4, 0x0c, 0x48, 0x00, 0xa2, 0x44, - 0x5b, 0x95, 0x9c, 0x38, 0xd3, 0xdd, 0xe8, 0xe9, 0xe9, 0xaf, 0xf9, 0xcd, 0x10, 0x88, 0x33, 0x0c, - 0xfc, 0x90, 0x9b, 0x8c, 0xf1, 0xe0, 0xb8, 0x13, 0x84, 0x3e, 0xf7, 0x49, 0x2d, 0x4e, 0x6b, 0xd7, - 0x86, 0x94, 0x5b, 0x11, 0xaf, 0x5d, 0xa7, 0x61, 0xe8, 0x87, 0xb3, 0xe9, 0x60, 0x1c, 0x06, 0xf6, - 0x74, 0x0a, 0xc7, 0x33, 0x16, 0xa1, 0x9e, 0x1d, 0x4e, 0x02, 0xee, 0xf8, 0xde, 0x94, 0xb6, 0x7c, - 0xe2, 0x9f, 0xf8, 0x38, 0x7c, 0x24, 0x46, 0x8a, 0xba, 0x14, 0x8e, 0x18, 0xc7, 0xa1, 0x24, 0xe8, - 0x7f, 0xd2, 0xe0, 0x46, 0x77, 0xc4, 0x02, 0xea, 0xf5, 0xf6, 0xd0, 0x14, 0xe3, 0x70, 0xdb, 0xa0, - 0xbf, 0x1b, 0x51, 0xc6, 0xc9, 0x17, 0xb0, 0xc2, 0x4e, 0xfd, 0x91, 0xdb, 0x33, 0x99, 0x94, 0x30, - 0xa5, 0xb5, 0xac, 0xa5, 0xdd, 0xd3, 0xd6, 0xca, 0xc6, 0xb2, 0xe4, 0x26, 0x3e, 0x67, 0x64, 0x0d, - 0x9a, 0xbd, 0x51, 0x68, 0x09, 0x63, 0x4c, 0xc7, 0x33, 0x19, 0xb5, 0x59, 0x2b, 0x7b, 0x4f, 0x5b, - 0xcb, 0x1b, 0x8d, 0x88, 0xbe, 0xe7, 0x75, 0xa9, 0xcd, 0xc8, 0x0a, 0x14, 0x6d, 0xcb, 0x75, 0x69, - 0xd8, 0xca, 0xdd, 0xd3, 0xd6, 0x2a, 0x86, 0x9a, 0xe9, 0xcf, 0xa1, 0x75, 0xde, 0x24, 0x16, 0xf8, - 0x1e, 0xa3, 0x64, 0x03, 0xae, 0x59, 0x6e, 0x48, 0xad, 0xde, 0x24, 0x32, 0x8a, 0xf6, 0x94, 0x39, - 0x4d, 0xc5, 0xe8, 0x46, 0x74, 0xdd, 0x83, 0x6b, 0xdd, 0x33, 0x87, 0xdb, 0xa7, 0x07, 0x7e, 0x8f, - 0x46, 0xbb, 0xfa, 0x7f, 0xc8, 0x0f, 0xfd, 0x1e, 0xc5, 0x8f, 0x1a, 0x9b, 0xad, 0x4e, 0x22, 0x2a, - 0x31, 0x71, 0x94, 0x22, 0x1b, 0x50, 0x0c, 0x2d, 0xef, 0x84, 0x8a, 0x3d, 0xe4, 0xd6, 0xaa, 0x9b, - 0xd7, 0x93, 0xf2, 0x86, 0xe0, 0x19, 0x4a, 0x44, 0x5f, 0x06, 0x12, 0x5f, 0x4f, 0x9a, 0xac, 0x37, - 0xa1, 0xf1, 0x9c, 0xf2, 0x98, 0x09, 0xfa, 0x33, 0x58, 0x9a, 0x52, 0xd4, 0xbe, 0x3e, 0xca, 0x2a, - 0xfd, 0x11, 0x14, 0x70, 0x65, 0xb2, 0x0c, 0x05, 0xc6, 0xad, 0x90, 0xe3, 0x77, 0x35, 0x43, 0x4e, - 0x48, 0x13, 0x72, 0xd4, 0xeb, 0xa1, 0xd7, 0x6b, 0x86, 0x18, 0xea, 0x7f, 0xc9, 0x41, 0xa9, 0xdb, - 0x3d, 0x3a, 0xa0, 0xdc, 0x22, 0x04, 0xf2, 0xa3, 0x91, 0xd3, 0x53, 0x9f, 0xe0, 0x98, 0x3c, 0x84, - 0x02, 0xee, 0x01, 0xbf, 0xb9, 0x60, 0x97, 0x52, 0x42, 0x2c, 0x69, 0x87, 0xf6, 0x93, 0x4d, 0x0c, - 0x5a, 0xdd, 0x90, 0x13, 0x11, 0x4b, 0x97, 0x7a, 0x27, 0xfc, 0xb4, 0x95, 0xc7, 0x58, 0xab, 0x19, - 0xb9, 0x01, 0x25, 0xbb, 0x6f, 0x7a, 0xd6, 0x90, 0xb6, 0x0a, 0x2a, 0xc8, 0xfd, 0x57, 0xd6, 0x90, - 0x92, 0x5b, 0x50, 0x09, 0xe9, 0x09, 0x26, 0x49, 0xaf, 0x55, 0xc4, 0x6f, 0xca, 0x92, 0xb0, 0xd7, - 0x23, 0x4f, 0xa1, 0xa6, 0x98, 0x34, 0xf0, 0xed, 0xd3, 0x56, 0x49, 0x59, 0xa5, 0xea, 0xc3, 0x40, - 0xde, 0xae, 0x60, 0x19, 0xd5, 0x70, 0x36, 0x21, 0xeb, 0x70, 0x4d, 0xa4, 0xe9, 0x80, 0x4e, 0x4c, - 0xfa, 0xd6, 0x76, 0x47, 0xcc, 0x19, 0xd3, 0x56, 0x19, 0xb3, 0x63, 0x89, 0x7a, 0xbd, 0x7d, 0x3a, - 0xd9, 0x8d, 0xc8, 0xc2, 0x00, 0xee, 0x73, 0xcb, 0x35, 0x07, 0x63, 0xd6, 0xaa, 0x48, 0x03, 0x90, - 0xb0, 0x3f, 0x66, 0xe4, 0x2e, 0x54, 0x25, 0xf3, 0x78, 0xc2, 0x29, 0x6b, 0x01, 0xb2, 0x01, 0x49, - 0x5b, 0x82, 0x42, 0xbe, 0x80, 0xaa, 0x15, 0x38, 0xe6, 0x98, 0x86, 0xcc, 0xf1, 0xbd, 0x56, 0x15, - 0xc3, 0x76, 0xbd, 0x13, 0xd5, 0xe8, 0xd7, 0x87, 0x7b, 0x6f, 0x24, 0xcb, 0x00, 0x2b, 0x70, 0xd4, - 0x58, 0xac, 0x69, 0x3b, 0xc1, 0x29, 0x0d, 0x4d, 0x67, 0xdc, 0xaa, 0xa1, 0xff, 0xcb, 0x92, 0xb0, - 0x37, 0xd6, 0x7f, 0x0f, 0x55, 0x83, 0x9e, 0x85, 0x0e, 0xa7, 0xc6, 0xc8, 0xa5, 0xe4, 0x01, 0x34, - 0x7c, 0x57, 0xee, 0x25, 0x08, 0x69, 0xdf, 0x79, 0xab, 0x02, 0x56, 0xf3, 0x5d, 0xb1, 0x91, 0x43, - 0xa4, 0x09, 0x29, 0x8f, 0x9e, 0xc5, 0xa5, 0x64, 0xd4, 0x6b, 0x1e, 0x3d, 0x9b, 0x49, 0xfd, 0x1f, - 0xd4, 0x85, 0x14, 0x77, 0x86, 0x94, 0x71, 0x6b, 0x18, 0x60, 0xec, 0xf2, 0x28, 0x74, 0x14, 0xd1, - 0xf4, 0xdf, 0x40, 0xfd, 0x57, 0x81, 0xeb, 0x5b, 0xbd, 0xa8, 0x52, 0x36, 0x20, 0x2f, 0x1c, 0x8e, - 0xeb, 0x56, 0x37, 0x3f, 0x49, 0xe5, 0xa4, 0xcc, 0xa6, 0x17, 0x19, 0x03, 0x85, 0xc8, 0x32, 0xe4, - 0x7b, 0x16, 0xb7, 0xe4, 0xf2, 0x82, 0x2a, 0x66, 0x5b, 0x25, 0x28, 0xd8, 0xa7, 0x23, 0x6f, 0x20, - 0x8a, 0x20, 0x52, 0xae, 0xca, 0xa2, 0x07, 0xf5, 0x3d, 0x51, 0x35, 0x3c, 0x5a, 0x6e, 0x1d, 0x4a, - 0xb6, 0xef, 0x71, 0xfa, 0x96, 0xab, 0x15, 0x9b, 0x53, 0x77, 0x6e, 0x4b, 0xba, 0x11, 0x09, 0x90, - 0xcf, 0x21, 0xc7, 0x18, 0x57, 0xd9, 0x3a, 0xdf, 0x32, 0x43, 0x48, 0xe8, 0x03, 0x20, 0x07, 0x23, - 0x97, 0x3b, 0x57, 0x5f, 0xea, 0x21, 0xe4, 0x19, 0xe3, 0x51, 0xfd, 0x5f, 0xb0, 0x16, 0x8a, 0xe8, - 0x4f, 0xa1, 0x11, 0xad, 0xa3, 0xca, 0xfa, 0x01, 0x14, 0xb0, 0x8b, 0xab, 0x65, 0x1a, 0x9d, 0xa8, - 0xa7, 0xef, 0x8a, 0x5f, 0x43, 0x32, 0xf5, 0x3f, 0x68, 0xd0, 0xd8, 0xf6, 0x87, 0x81, 0x65, 0x4f, - 0x2d, 0x9c, 0x16, 0xa4, 0xb6, 0xb0, 0x20, 0xef, 0x43, 0xcd, 0x1f, 0xf1, 0x60, 0xc4, 0x4d, 0x97, - 0x8e, 0xa9, 0x8b, 0x4e, 0x29, 0x18, 0x55, 0x49, 0x7b, 0x29, 0x48, 0xf1, 0xfd, 0xe6, 0x16, 0xec, - 0x57, 0xbf, 0x06, 0x4b, 0x53, 0x5b, 0x54, 0xa8, 0x7e, 0xc8, 0xc3, 0xd2, 0x8e, 0x7f, 0xe6, 0xc5, - 0x93, 0xe3, 0xa7, 0xca, 0x2d, 0x1a, 0xba, 0xe5, 0xf3, 0xa4, 0x7d, 0x29, 0xe1, 0x4e, 0x97, 0x71, - 0xb6, 0xeb, 0xf1, 0x70, 0x22, 0x1d, 0x25, 0xca, 0x2b, 0xa4, 0xcc, 0x77, 0xc7, 0xb4, 0x67, 0x72, - 0xa6, 0xb2, 0x11, 0x22, 0xd2, 0x11, 0x23, 0x3f, 0x5a, 0x1c, 0xdf, 0xad, 0xfc, 0xb7, 0xff, 0xb8, - 0x9b, 0xc1, 0x28, 0x8b, 0x96, 0x86, 0x2d, 0xa6, 0x82, 0x2d, 0x06, 0xc7, 0x64, 0x4b, 0xf4, 0x10, - 0x2c, 0x27, 0x33, 0x1c, 0xb9, 0xb4, 0x55, 0x47, 0x5d, 0x37, 0x53, 0x8e, 0x9c, 0x15, 0x9c, 0xd2, - 0x57, 0x0d, 0x63, 0x35, 0xf8, 0x0c, 0x96, 0x18, 0xf7, 0x43, 0xeb, 0x84, 0x9a, 0xc7, 0x96, 0x3d, - 0x10, 0x4d, 0xb5, 0x81, 0x6a, 0x56, 0x3a, 0x62, 0x3e, 0x0a, 0x3a, 0x5d, 0xc9, 0xde, 0x92, 0x5c, - 0xa3, 0xc1, 0x12, 0x73, 0x71, 0x18, 0x46, 0x0a, 0x6c, 0xcb, 0x3e, 0xa5, 0xa2, 0xd9, 0x5d, 0x43, - 0x23, 0x23, 0xc9, 0x6d, 0x41, 0xde, 0xeb, 0x91, 0x36, 0x54, 0x1c, 0x66, 0x86, 0xd6, 0x99, 0x39, - 0x18, 0xb7, 0x96, 0xb0, 0x65, 0x95, 0x1c, 0x66, 0x58, 0x67, 0xfb, 0x63, 0xf2, 0x04, 0xaa, 0x51, - 0xdb, 0xf0, 0xfa, 0x7e, 0xab, 0x89, 0x26, 0x90, 0xc8, 0x84, 0x6d, 0xd9, 0x40, 0xbc, 0xbe, 0x6f, - 0x80, 0x3d, 0x1d, 0x93, 0x1d, 0xb1, 0x7f, 0x74, 0xbf, 0xc9, 0x27, 0x01, 0x6d, 0x11, 0x6c, 0x51, - 0xf7, 0x2f, 0x0d, 0xd4, 0xd1, 0x24, 0xa0, 0xc2, 0x03, 0xd3, 0x49, 0x3c, 0x73, 0xae, 0x2f, 0xc8, - 0x9c, 0xf6, 0x2b, 0xa8, 0x4c, 0x03, 0x2d, 0xce, 0xa0, 0x01, 0x9d, 0x60, 0xfa, 0x56, 0x0c, 0x31, - 0x24, 0x1b, 0x50, 0x18, 0x5b, 0xee, 0x88, 0x5e, 0x5e, 0xb5, 0x52, 0xe6, 0xab, 0xec, 0x97, 0xda, - 0x2f, 0xf2, 0xe5, 0x72, 0xb3, 0x62, 0xe4, 0x46, 0xa1, 0xab, 0x1b, 0x50, 0xc0, 0x8a, 0x21, 0x2d, - 0x28, 0x0d, 0x29, 0x63, 0x96, 0xaa, 0x8c, 0x8a, 0x11, 0x4d, 0xc9, 0x23, 0xa8, 0x0a, 0x97, 0x52, - 0x53, 0x16, 0x5c, 0x76, 0x6e, 0xc1, 0x01, 0x8a, 0xe0, 0x58, 0x7f, 0xa7, 0x41, 0x73, 0xb6, 0x7f, - 0x55, 0xb0, 0x8f, 0x16, 0xd7, 0x9d, 0x4a, 0x14, 0x55, 0x7d, 0x37, 0xa1, 0xec, 0x30, 0x93, 0x0e, - 0x03, 0x3e, 0xc1, 0x35, 0x31, 0x6c, 0xbb, 0x62, 0x2a, 0x6a, 0x58, 0xda, 0x92, 0x9b, 0xa7, 0x2b, - 0xde, 0x01, 0x66, 0x87, 0x6a, 0x7e, 0xfe, 0xa1, 0x5a, 0x48, 0x1c, 0xaa, 0x51, 0x4b, 0x2a, 0x2e, - 0x6e, 0x49, 0xcf, 0xe0, 0x76, 0x97, 0xf2, 0x68, 0x9b, 0xdd, 0x80, 0xd2, 0xde, 0x4b, 0x67, 0xe8, - 0x4c, 0xfb, 0xcc, 0x5d, 0xa8, 0x32, 0x41, 0x34, 0x5d, 0x41, 0xc5, 0x5d, 0xe7, 0x0d, 0x60, 0x53, - 0x39, 0xfd, 0x2e, 0xdc, 0xb9, 0x40, 0x81, 0x6a, 0x0e, 0x01, 0xe4, 0x0f, 0x2d, 0x27, 0x8c, 0x07, - 0xbc, 0x26, 0x03, 0xbe, 0x1c, 0x0f, 0x78, 0x4d, 0x45, 0x96, 0x7c, 0x0a, 0x59, 0x5f, 0x1e, 0x40, - 0x8d, 0xb4, 0xe9, 0x42, 0x4f, 0xe7, 0xf5, 0xa1, 0x91, 0xf5, 0x03, 0xfd, 0x26, 0x64, 0x5f, 0x1f, - 0x92, 0x12, 0xe4, 0x0e, 0x47, 0xbc, 0x99, 0x21, 0x00, 0xc5, 0x1d, 0xea, 0x52, 0x4e, 0x9b, 0x9a, - 0xde, 0x05, 0xf8, 0xb5, 0x28, 0xd1, 0x2d, 0x8b, 0xdb, 0xa7, 0x78, 0xa6, 0xfa, 0xc3, 0xa1, 0xc3, - 0x4d, 0x05, 0x4c, 0xf3, 0x46, 0x59, 0x12, 0x8e, 0x04, 0x18, 0x2d, 0x04, 0x96, 0x13, 0x46, 0xdd, - 0x9b, 0x9c, 0x5f, 0xcf, 0x90, 0x02, 0xfa, 0x5f, 0x35, 0xa8, 0xa1, 0xd6, 0x2b, 0x9d, 0x7e, 0x8f, - 0xa1, 0x70, 0x2c, 0xac, 0x51, 0x69, 0x97, 0xc2, 0x6f, 0x33, 0x6b, 0x5f, 0x64, 0x0c, 0x29, 0xf8, - 0x31, 0x2d, 0x79, 0x76, 0x8a, 0x9e, 0x40, 0x5d, 0xd9, 0xa8, 0xd2, 0xf5, 0x61, 0xf2, 0x7c, 0xb9, - 0x2c, 0xc5, 0x36, 0xa0, 0x20, 0x4c, 0x5d, 0x70, 0x90, 0x49, 0x19, 0x81, 0x05, 0x0c, 0xeb, 0x2c, - 0xe6, 0xe5, 0x26, 0xe4, 0x38, 0x77, 0x95, 0x7f, 0xc5, 0xf0, 0xc3, 0x5d, 0x4b, 0x1a, 0x90, 0x9d, - 0x36, 0xf9, 0x2c, 0x67, 0xfa, 0x37, 0x1a, 0x2c, 0x45, 0xda, 0xaf, 0xe4, 0xed, 0x27, 0x49, 0x6f, - 0xdf, 0x4a, 0x17, 0xe9, 0xd9, 0x7f, 0xcd, 0xe1, 0xbf, 0x85, 0xe6, 0xcc, 0xd2, 0xff, 0xb1, 0xcf, - 0xff, 0xae, 0xc1, 0xca, 0xce, 0x28, 0x70, 0x1d, 0xdb, 0xe2, 0x74, 0x87, 0x72, 0x6a, 0x5f, 0x09, - 0xaf, 0xdc, 0x82, 0x0a, 0xde, 0x02, 0x04, 0x26, 0x54, 0x95, 0x57, 0x46, 0xc2, 0x3e, 0x9d, 0x08, - 0x38, 0xae, 0x00, 0x32, 0x3a, 0xa1, 0x66, 0x14, 0x25, 0x2c, 0x16, 0x6d, 0x4c, 0x60, 0x48, 0xdf, - 0x73, 0x27, 0xd8, 0x83, 0xca, 0x46, 0x69, 0x40, 0x27, 0xaf, 0x3d, 0x77, 0x42, 0x74, 0xa8, 0x0f, - 0x1d, 0xcf, 0x9c, 0x15, 0x99, 0x6c, 0x46, 0xd5, 0xa1, 0xe3, 0x6d, 0xab, 0x3a, 0xd3, 0x0f, 0xa0, - 0xb8, 0x3f, 0xfe, 0xa8, 0x36, 0x90, 0x28, 0xdb, 0x5c, 0xb2, 0x6c, 0xf5, 0xbf, 0x69, 0x70, 0xe3, - 0x9c, 0x2b, 0x94, 0xfb, 0x7f, 0x3c, 0xbb, 0x1b, 0x5c, 0x82, 0xac, 0xa2, 0x6b, 0x01, 0x86, 0xe1, - 0x31, 0x54, 0xf0, 0x4a, 0x10, 0x3b, 0x18, 0xe6, 0x46, 0x4d, 0xb8, 0x40, 0x7e, 0xb1, 0x1e, 0x25, - 0x77, 0x0e, 0x03, 0xb7, 0x9c, 0x94, 0x96, 0x5b, 0x8d, 0x3a, 0xc7, 0xbf, 0x73, 0x50, 0xdc, 0x7f, - 0x13, 0x5d, 0xad, 0x10, 0x87, 0x68, 0x31, 0x1c, 0x72, 0x1f, 0x6a, 0x78, 0x52, 0x98, 0x7e, 0xbf, - 0xcf, 0x28, 0xc7, 0xab, 0x42, 0xde, 0xa8, 0x22, 0xed, 0x35, 0x92, 0x62, 0x7d, 0x3e, 0x9b, 0xe8, - 0xf3, 0xd3, 0x4f, 0x15, 0xb7, 0x16, 0xfb, 0xf4, 0xa5, 0x14, 0x69, 0x40, 0xd6, 0xee, 0xab, 0xfb, - 0x73, 0xd6, 0xee, 0x0b, 0xb7, 0x3a, 0xcc, 0xec, 0x61, 0xab, 0x54, 0x81, 0x2c, 0x3b, 0x4c, 0xb6, - 0x4e, 0x11, 0x64, 0x99, 0x1a, 0x3c, 0xba, 0xd2, 0x94, 0x70, 0x7e, 0xc4, 0xc8, 0x1d, 0x10, 0xf0, - 0x0b, 0xcf, 0xcf, 0x69, 0x84, 0x2b, 0x8a, 0x72, 0xc4, 0x92, 0x49, 0x55, 0xbc, 0x38, 0xa9, 0x4a, - 0x89, 0xa4, 0x5a, 0x81, 0x22, 0x3b, 0xb5, 0x36, 0x7f, 0xf2, 0x14, 0xef, 0x60, 0x35, 0x43, 0xcd, - 0xc4, 0x35, 0x4d, 0x6a, 0x63, 0x9e, 0x15, 0xb0, 0x53, 0x1f, 0x0d, 0x92, 0x57, 0xb0, 0x25, 0x64, - 0x74, 0x15, 0xfd, 0x88, 0x91, 0x2d, 0x68, 0xda, 0xfe, 0x30, 0x08, 0x29, 0x13, 0x37, 0x28, 0x09, - 0x65, 0xea, 0x78, 0x78, 0xdc, 0x98, 0x02, 0xa0, 0x19, 0x1f, 0x01, 0xcc, 0x92, 0x9d, 0x24, 0x10, - 0x03, 0x96, 0xfb, 0x8e, 0x4b, 0xcd, 0xd9, 0x33, 0x89, 0x04, 0x52, 0x12, 0xcb, 0xdd, 0xeb, 0x24, - 0x9e, 0x4f, 0x7e, 0xee, 0xb8, 0x74, 0x77, 0x4a, 0x40, 0x58, 0x45, 0xfa, 0xe7, 0x68, 0xfa, 0xbf, - 0x72, 0x50, 0xfb, 0x3a, 0x08, 0xdc, 0x49, 0x54, 0xa3, 0x6b, 0x89, 0x0e, 0x96, 0xce, 0x98, 0x37, - 0xf2, 0x4c, 0xc6, 0xf6, 0xb5, 0x1e, 0x75, 0x85, 0xda, 0xdc, 0xe4, 0x7a, 0x13, 0x6b, 0x0a, 0xe7, - 0x50, 0x6c, 0xf6, 0x0a, 0x28, 0xf6, 0x67, 0x50, 0x8f, 0xeb, 0x60, 0xad, 0x3a, 0xae, 0x7b, 0xb1, - 0x12, 0xa3, 0x16, 0xfb, 0x9c, 0xcd, 0x05, 0xb1, 0x85, 0xb9, 0x20, 0x76, 0x0e, 0x5e, 0xce, 0x7d, - 0x14, 0x5e, 0x8e, 0x35, 0xba, 0xfc, 0xa2, 0x46, 0x97, 0x42, 0xc5, 0xd5, 0x0f, 0x42, 0xc5, 0x5f, - 0x42, 0x75, 0x68, 0x31, 0x4e, 0x43, 0x91, 0xae, 0xac, 0xd5, 0x40, 0x4f, 0xdc, 0x48, 0x66, 0xc0, - 0x01, 0x0a, 0xec, 0xd3, 0x89, 0x01, 0xc3, 0x68, 0xc8, 0xf4, 0x01, 0xd4, 0x55, 0xbc, 0xaf, 0x0a, - 0x15, 0xa7, 0x07, 0x47, 0x76, 0xd1, 0xc1, 0xa1, 0x7f, 0x06, 0xb5, 0x6d, 0x97, 0x5a, 0x61, 0x94, - 0x5c, 0x2b, 0x50, 0x8c, 0x3d, 0x02, 0x54, 0x0c, 0x35, 0xd3, 0xbf, 0x82, 0xba, 0x92, 0xfb, 0xe8, - 0xc3, 0x69, 0xfd, 0x01, 0xc0, 0xec, 0x61, 0x49, 0x00, 0xac, 0x57, 0x7e, 0x38, 0xb4, 0x5c, 0x09, - 0xb6, 0xe4, 0xcb, 0x5b, 0x53, 0x5b, 0x7f, 0x04, 0xd7, 0xe7, 0x5c, 0x12, 0x84, 0xc8, 0x4b, 0x7a, - 0x62, 0xd9, 0x93, 0x66, 0x86, 0xd4, 0xa0, 0x2c, 0x3c, 0x14, 0x58, 0x36, 0x6d, 0x6a, 0x9b, 0x3f, - 0x94, 0xa1, 0x22, 0xbf, 0xee, 0x76, 0x8f, 0xc8, 0x2f, 0x13, 0x8b, 0xdc, 0xbd, 0xf0, 0x5d, 0x4b, - 0xaa, 0x6e, 0xdf, 0xbb, 0x58, 0x40, 0xc1, 0xcd, 0x0c, 0x79, 0x01, 0x25, 0xf5, 0x7a, 0x46, 0x6e, - 0x27, 0xc5, 0x93, 0xcf, 0x6c, 0xed, 0x3b, 0x17, 0x70, 0xa7, 0x9a, 0x9e, 0x43, 0x51, 0x3e, 0x4a, - 0x90, 0x14, 0x84, 0x48, 0xbc, 0x83, 0xb4, 0x6f, 0xcf, 0x67, 0x46, 0x6a, 0xd6, 0x34, 0xb2, 0x0b, - 0x45, 0x79, 0xf1, 0x4f, 0x2b, 0x4a, 0x3c, 0x3b, 0xa4, 0x15, 0x25, 0xdf, 0x0a, 0xe4, 0xce, 0xd4, - 0xd5, 0x3b, 0xbd, 0xb3, 0xe4, 0xeb, 0x40, 0x7a, 0x67, 0xe9, 0xfb, 0x7a, 0x86, 0x84, 0xf0, 0xc9, - 0x5c, 0xd4, 0x4e, 0xd6, 0x53, 0x0e, 0xbe, 0xe4, 0x6e, 0xd0, 0xde, 0xf8, 0x20, 0xd9, 0xe9, 0x9a, - 0xfb, 0x50, 0x8e, 0xf8, 0xe4, 0xce, 0xa5, 0xd7, 0xcc, 0xf6, 0xea, 0x45, 0xec, 0xa9, 0xb2, 0x1d, - 0x28, 0x20, 0xea, 0x22, 0xed, 0x39, 0x50, 0x3a, 0x52, 0x73, 0x6b, 0x2e, 0x2f, 0x16, 0x97, 0x03, - 0x28, 0x47, 0xf0, 0x2d, 0x6d, 0x52, 0x0a, 0x80, 0xa6, 0x4d, 0x4a, 0xa3, 0x3e, 0x54, 0xf7, 0x1a, - 0xaa, 0xb1, 0xc7, 0x24, 0x92, 0x4a, 0xd6, 0xf3, 0xef, 0x4c, 0x0b, 0x03, 0x7e, 0x0c, 0x4b, 0x29, - 0x98, 0x43, 0x1e, 0xa4, 0x5c, 0x33, 0x17, 0x10, 0xb6, 0x3f, 0x5d, 0x20, 0x15, 0xad, 0xf0, 0x58, - 0x23, 0x5b, 0x50, 0xc0, 0xbe, 0x95, 0xf6, 0x64, 0xfc, 0xf0, 0x4a, 0x7b, 0x32, 0xd1, 0xe8, 0xb0, - 0x50, 0x00, 0xdb, 0x8c, 0x38, 0x1b, 0x59, 0x5a, 0x51, 0xbc, 0x51, 0xa5, 0x15, 0x25, 0x9a, 0x93, - 0x9e, 0x21, 0x36, 0x34, 0xd3, 0x4f, 0xfb, 0x24, 0xb5, 0x97, 0x0b, 0xfe, 0x8d, 0x68, 0x7f, 0xb6, - 0x48, 0x2c, 0x5a, 0x64, 0x6b, 0xf3, 0xfb, 0x6f, 0xca, 0xda, 0xb7, 0xef, 0x56, 0xb5, 0xef, 0xde, - 0xad, 0x6a, 0xff, 0x7c, 0xb7, 0xaa, 0xfd, 0xf1, 0xfd, 0x6a, 0xe6, 0xcf, 0xef, 0x57, 0x33, 0xdf, - 0xbd, 0x5f, 0xcd, 0x7c, 0xff, 0x7e, 0x35, 0x03, 0x4d, 0x3f, 0x3c, 0xe9, 0x70, 0x67, 0x30, 0xee, - 0x0c, 0xc6, 0xf8, 0x3f, 0xc8, 0x71, 0x11, 0x7f, 0x9e, 0xfc, 0x27, 0x00, 0x00, 0xff, 0xff, 0x3b, - 0x3f, 0x33, 0x41, 0xa5, 0x19, 0x00, 0x00, + 0x79, 0xc9, 0x03, 0xe4, 0x94, 0xdc, 0x72, 0x4d, 0x4e, 0x5b, 0x79, 0x83, 0xbc, 0xc1, 0x1e, 0x72, + 0xd8, 0xe3, 0x9e, 0x52, 0x29, 0xfb, 0x9e, 0x4b, 0x1e, 0x20, 0xa9, 0xe9, 0x19, 0x90, 0x00, 0x44, + 0x89, 0xb6, 0x2a, 0x39, 0x71, 0xa6, 0xa7, 0xd1, 0xd3, 0xd3, 0x9f, 0xbf, 0x19, 0x02, 0x71, 0x86, + 0x81, 0x1f, 0x72, 0x93, 0x31, 0x1e, 0x1c, 0x77, 0x82, 0xd0, 0xe7, 0x3e, 0xa9, 0xc5, 0x69, 0xed, + 0xda, 0x90, 0x72, 0x2b, 0x5a, 0x6b, 0xd7, 0x69, 0x18, 0xfa, 0xe1, 0x6c, 0x3a, 0x18, 0x87, 0x81, + 0x3d, 0x9d, 0xc2, 0xf1, 0x6c, 0x89, 0x50, 0xcf, 0x0e, 0x27, 0x01, 0x77, 0x7c, 0x6f, 0x4a, 0x5b, + 0x3e, 0xf1, 0x4f, 0x7c, 0x1c, 0x3e, 0x12, 0x23, 0x45, 0x5d, 0x0a, 0x47, 0x8c, 0xe3, 0x50, 0x12, + 0xf4, 0x3f, 0x68, 0x70, 0xa3, 0x3b, 0x62, 0x01, 0xf5, 0x7a, 0x7b, 0xa8, 0x8a, 0x71, 0xb8, 0x6d, + 0xd0, 0xdf, 0x8c, 0x28, 0xe3, 0xe4, 0x0b, 0x58, 0x61, 0xa7, 0xfe, 0xc8, 0xed, 0x99, 0x4c, 0x72, + 0x98, 0x52, 0x5b, 0xd6, 0xd2, 0xee, 0x69, 0x6b, 0x65, 0x63, 0x59, 0xae, 0x26, 0x3e, 0x67, 0x64, + 0x0d, 0x9a, 0xbd, 0x51, 0x68, 0x09, 0x65, 0x4c, 0xc7, 0x33, 0x19, 0xb5, 0x59, 0x2b, 0x7b, 0x4f, + 0x5b, 0xcb, 0x1b, 0x8d, 0x88, 0xbe, 0xe7, 0x75, 0xa9, 0xcd, 0xc8, 0x0a, 0x14, 0x6d, 0xcb, 0x75, + 0x69, 0xd8, 0xca, 0xdd, 0xd3, 0xd6, 0x2a, 0x86, 0x9a, 0xe9, 0xcf, 0xa1, 0x75, 0x5e, 0x25, 0x16, + 0xf8, 0x1e, 0xa3, 0x64, 0x03, 0xae, 0x59, 0x6e, 0x48, 0xad, 0xde, 0x24, 0x52, 0x8a, 0xf6, 0x94, + 0x3a, 0x4d, 0xb5, 0xd0, 0x8d, 0xe8, 0xba, 0x07, 0xd7, 0xba, 0x67, 0x0e, 0xb7, 0x4f, 0x0f, 0xfc, + 0x1e, 0x8d, 0x4e, 0xf5, 0xff, 0x90, 0x1f, 0xfa, 0x3d, 0x8a, 0x1f, 0x35, 0x36, 0x5b, 0x9d, 0x84, + 0x57, 0x62, 0xec, 0xc8, 0x45, 0x36, 0xa0, 0x18, 0x5a, 0xde, 0x09, 0x15, 0x67, 0xc8, 0xad, 0x55, + 0x37, 0xaf, 0x27, 0xf9, 0x0d, 0xb1, 0x66, 0x28, 0x16, 0x7d, 0x19, 0x48, 0x7c, 0x3f, 0xa9, 0xb2, + 0xde, 0x84, 0xc6, 0x73, 0xca, 0x63, 0x2a, 0xe8, 0xcf, 0x60, 0x69, 0x4a, 0x51, 0xe7, 0xfa, 0x28, + 0xad, 0xf4, 0x47, 0x50, 0xc0, 0x9d, 0xc9, 0x32, 0x14, 0x18, 0xb7, 0x42, 0x8e, 0xdf, 0xd5, 0x0c, + 0x39, 0x21, 0x4d, 0xc8, 0x51, 0xaf, 0x87, 0x56, 0xaf, 0x19, 0x62, 0xa8, 0xff, 0x29, 0x07, 0xa5, + 0x6e, 0xf7, 0xe8, 0x80, 0x72, 0x8b, 0x10, 0xc8, 0x8f, 0x46, 0x4e, 0x4f, 0x7d, 0x82, 0x63, 0xf2, + 0x10, 0x0a, 0x78, 0x06, 0xfc, 0xe6, 0x82, 0x53, 0x4a, 0x0e, 0xb1, 0xa5, 0x1d, 0xda, 0x4f, 0x36, + 0xd1, 0x69, 0x75, 0x43, 0x4e, 0x84, 0x2f, 0x5d, 0xea, 0x9d, 0xf0, 0xd3, 0x56, 0x1e, 0x7d, 0xad, + 0x66, 0xe4, 0x06, 0x94, 0xec, 0xbe, 0xe9, 0x59, 0x43, 0xda, 0x2a, 0x28, 0x27, 0xf7, 0x5f, 0x59, + 0x43, 0x4a, 0x6e, 0x41, 0x25, 0xa4, 0x27, 0x18, 0x24, 0xbd, 0x56, 0x11, 0xbf, 0x29, 0x4b, 0xc2, + 0x5e, 0x8f, 0x3c, 0x85, 0x9a, 0x5a, 0xa4, 0x81, 0x6f, 0x9f, 0xb6, 0x4a, 0x4a, 0x2b, 0x95, 0x1f, + 0x06, 0xae, 0xed, 0x8a, 0x25, 0xa3, 0x1a, 0xce, 0x26, 0x64, 0x1d, 0xae, 0x89, 0x30, 0x1d, 0xd0, + 0x89, 0x49, 0xdf, 0xda, 0xee, 0x88, 0x39, 0x63, 0xda, 0x2a, 0x63, 0x74, 0x2c, 0x51, 0xaf, 0xb7, + 0x4f, 0x27, 0xbb, 0x11, 0x59, 0x28, 0xc0, 0x7d, 0x6e, 0xb9, 0xe6, 0x60, 0xcc, 0x5a, 0x15, 0xa9, + 0x00, 0x12, 0xf6, 0xc7, 0x8c, 0xdc, 0x85, 0xaa, 0x5c, 0x3c, 0x9e, 0x70, 0xca, 0x5a, 0x80, 0xcb, + 0x80, 0xa4, 0x2d, 0x41, 0x21, 0x5f, 0x40, 0xd5, 0x0a, 0x1c, 0x73, 0x4c, 0x43, 0xe6, 0xf8, 0x5e, + 0xab, 0x8a, 0x6e, 0xbb, 0xde, 0x89, 0x72, 0xf4, 0xeb, 0xc3, 0xbd, 0x37, 0x72, 0xc9, 0x00, 0x2b, + 0x70, 0xd4, 0x58, 0xec, 0x69, 0x3b, 0xc1, 0x29, 0x0d, 0x4d, 0x67, 0xdc, 0xaa, 0xa1, 0xfd, 0xcb, + 0x92, 0xb0, 0x37, 0xd6, 0x7f, 0x0b, 0x55, 0x83, 0x9e, 0x85, 0x0e, 0xa7, 0xc6, 0xc8, 0xa5, 0xe4, + 0x01, 0x34, 0x7c, 0x57, 0x9e, 0x25, 0x08, 0x69, 0xdf, 0x79, 0xab, 0x1c, 0x56, 0xf3, 0x5d, 0x71, + 0x90, 0x43, 0xa4, 0x09, 0x2e, 0x8f, 0x9e, 0xc5, 0xb9, 0xa4, 0xd7, 0x6b, 0x1e, 0x3d, 0x9b, 0x71, + 0xfd, 0x1f, 0xd4, 0x05, 0x17, 0x77, 0x86, 0x94, 0x71, 0x6b, 0x18, 0xa0, 0xef, 0xf2, 0xc8, 0x74, + 0x14, 0xd1, 0xf4, 0x5f, 0x41, 0xfd, 0x17, 0x81, 0xeb, 0x5b, 0xbd, 0x28, 0x53, 0x36, 0x20, 0x2f, + 0x0c, 0x8e, 0xfb, 0x56, 0x37, 0x3f, 0x49, 0xc5, 0xa4, 0x8c, 0xa6, 0x17, 0x19, 0x03, 0x99, 0xc8, + 0x32, 0xe4, 0x7b, 0x16, 0xb7, 0xe4, 0xf6, 0x82, 0x2a, 0x66, 0x5b, 0x25, 0x28, 0xd8, 0xa7, 0x23, + 0x6f, 0x20, 0x92, 0x20, 0x12, 0xae, 0xd2, 0xa2, 0x07, 0xf5, 0x3d, 0x91, 0x35, 0x3c, 0xda, 0x6e, + 0x1d, 0x4a, 0xb6, 0xef, 0x71, 0xfa, 0x96, 0xab, 0x1d, 0x9b, 0x53, 0x73, 0x6e, 0x4b, 0xba, 0x11, + 0x31, 0x90, 0xcf, 0x21, 0xc7, 0x18, 0x57, 0xd1, 0x3a, 0x5f, 0x33, 0x43, 0x70, 0xe8, 0x03, 0x20, + 0x07, 0x23, 0x97, 0x3b, 0x57, 0xdf, 0xea, 0x21, 0xe4, 0x19, 0xe3, 0x51, 0xfe, 0x5f, 0xb0, 0x17, + 0xb2, 0xe8, 0x4f, 0xa1, 0x11, 0xed, 0xa3, 0xd2, 0xfa, 0x01, 0x14, 0xb0, 0x8a, 0xab, 0x6d, 0x1a, + 0x9d, 0xa8, 0xa6, 0xef, 0x8a, 0x5f, 0x43, 0x2e, 0xea, 0xbf, 0xd3, 0xa0, 0xb1, 0xed, 0x0f, 0x03, + 0xcb, 0x9e, 0x6a, 0x38, 0x4d, 0x48, 0x6d, 0x61, 0x42, 0xde, 0x87, 0x9a, 0x3f, 0xe2, 0xc1, 0x88, + 0x9b, 0x2e, 0x1d, 0x53, 0x17, 0x8d, 0x52, 0x30, 0xaa, 0x92, 0xf6, 0x52, 0x90, 0xe2, 0xe7, 0xcd, + 0x2d, 0x38, 0xaf, 0x7e, 0x0d, 0x96, 0xa6, 0xba, 0x28, 0x57, 0xfd, 0xad, 0x00, 0x4b, 0x3b, 0xfe, + 0x99, 0x17, 0x0f, 0x8e, 0x1f, 0x2b, 0xb3, 0x68, 0x68, 0x96, 0xcf, 0x93, 0xfa, 0xa5, 0x98, 0x3b, + 0x5d, 0xc6, 0xd9, 0xae, 0xc7, 0xc3, 0x89, 0x34, 0x94, 0x48, 0xaf, 0x90, 0x32, 0xdf, 0x1d, 0xd3, + 0x9e, 0xc9, 0x99, 0x8a, 0x46, 0x88, 0x48, 0x47, 0x8c, 0xfc, 0x60, 0xb1, 0x7f, 0xb7, 0xf2, 0xdf, + 0xfe, 0xfd, 0x6e, 0x06, 0xbd, 0x2c, 0x4a, 0x1a, 0x96, 0x98, 0x0a, 0x96, 0x18, 0x1c, 0x93, 0x2d, + 0x51, 0x43, 0x30, 0x9d, 0xcc, 0x70, 0xe4, 0xd2, 0x56, 0x1d, 0x65, 0xdd, 0x4c, 0x19, 0x72, 0x96, + 0x70, 0x4a, 0x5e, 0x35, 0x8c, 0xe5, 0xe0, 0x3e, 0x2c, 0x33, 0x3f, 0xe4, 0xb4, 0x67, 0xc6, 0x45, + 0xb1, 0xd6, 0x32, 0x1e, 0xfa, 0x62, 0x59, 0x06, 0x91, 0x9f, 0xc5, 0x48, 0x8c, 0x3c, 0x83, 0x25, + 0xc6, 0xfd, 0xd0, 0x3a, 0xa1, 0xe6, 0xb1, 0x65, 0x0f, 0x44, 0x85, 0x6e, 0xa0, 0x4e, 0x2b, 0x1d, + 0x31, 0x1f, 0x05, 0x9d, 0xae, 0x5c, 0xde, 0x92, 0xab, 0x46, 0x83, 0x25, 0xe6, 0xa2, 0xb3, 0x46, + 0x02, 0x6c, 0xcb, 0x3e, 0xa5, 0xa2, 0x72, 0x5e, 0xc3, 0x13, 0x47, 0x9c, 0xdb, 0x82, 0xbc, 0xd7, + 0x23, 0x6d, 0xa8, 0x38, 0xcc, 0x0c, 0xad, 0x33, 0x73, 0x30, 0x6e, 0x2d, 0x61, 0xfd, 0x2b, 0x39, + 0xcc, 0xb0, 0xce, 0xf6, 0xc7, 0xe4, 0x09, 0x54, 0xa3, 0x1a, 0xe4, 0xf5, 0xfd, 0x56, 0x13, 0x55, + 0x20, 0x91, 0x0a, 0xdb, 0xb2, 0x1a, 0x79, 0x7d, 0xdf, 0x00, 0x7b, 0x3a, 0x26, 0x3b, 0xc2, 0x98, + 0xe8, 0x4b, 0x93, 0x4f, 0x02, 0xda, 0x22, 0x58, 0xef, 0xee, 0x5f, 0xea, 0xf5, 0xa3, 0x49, 0x40, + 0x85, 0x39, 0xa7, 0x93, 0x78, 0x18, 0x5e, 0x5f, 0x10, 0x86, 0xed, 0x57, 0x50, 0x99, 0x46, 0x8d, + 0x68, 0x68, 0x03, 0x3a, 0xc1, 0x5c, 0xa8, 0x18, 0x62, 0x48, 0x36, 0xa0, 0x30, 0xb6, 0xdc, 0x11, + 0xbd, 0xbc, 0x04, 0x48, 0x9e, 0xaf, 0xb2, 0x5f, 0x6a, 0x3f, 0xcb, 0x97, 0xcb, 0xcd, 0x8a, 0x91, + 0x1b, 0x85, 0xae, 0x6e, 0x40, 0x01, 0xd3, 0x8f, 0xb4, 0xa0, 0x34, 0xa4, 0x8c, 0x59, 0x2a, 0xcd, + 0x2a, 0x46, 0x34, 0x25, 0x8f, 0xa0, 0x2a, 0x4c, 0x4a, 0x4d, 0x99, 0xbd, 0xd9, 0xb9, 0xd9, 0x0b, + 0xc8, 0x82, 0x63, 0xfd, 0x9d, 0x06, 0xcd, 0xd9, 0xf9, 0x55, 0xf6, 0x3f, 0x5a, 0x9c, 0xc4, 0x2a, + 0xea, 0x54, 0x2a, 0xdf, 0x84, 0xb2, 0xc3, 0x4c, 0x3a, 0x0c, 0xf8, 0x04, 0xf7, 0x44, 0xb7, 0xed, + 0x8a, 0xa9, 0x28, 0x08, 0x52, 0x97, 0xdc, 0x3c, 0x59, 0xf1, 0x72, 0x32, 0xeb, 0xd0, 0xf9, 0xf9, + 0x1d, 0xba, 0x90, 0xe8, 0xd0, 0x51, 0x7d, 0x2b, 0x2e, 0xae, 0x6f, 0xcf, 0xe0, 0x76, 0x97, 0xf2, + 0xe8, 0x98, 0xdd, 0x80, 0xd2, 0xde, 0x4b, 0x67, 0xe8, 0x4c, 0x8b, 0xd6, 0x5d, 0xa8, 0x32, 0x41, + 0x34, 0x5d, 0x41, 0xc5, 0x53, 0xe7, 0x0d, 0x60, 0x53, 0x3e, 0xfd, 0x2e, 0xdc, 0xb9, 0x40, 0x80, + 0xaa, 0x34, 0x01, 0xe4, 0x0f, 0x2d, 0x27, 0x8c, 0x3b, 0xbc, 0x26, 0x1d, 0xbe, 0x1c, 0x77, 0x78, + 0x4d, 0x79, 0x96, 0x7c, 0x0a, 0x59, 0x5f, 0x76, 0xb3, 0x46, 0x5a, 0x75, 0x21, 0xa7, 0xf3, 0xfa, + 0xd0, 0xc8, 0xfa, 0x81, 0x7e, 0x13, 0xb2, 0xaf, 0x0f, 0x49, 0x09, 0x72, 0x87, 0x23, 0xde, 0xcc, + 0x10, 0x80, 0xe2, 0x0e, 0x75, 0x29, 0xa7, 0x4d, 0x4d, 0xef, 0x02, 0xfc, 0x52, 0xe4, 0xe8, 0x96, + 0xc5, 0xed, 0x53, 0x6c, 0xd0, 0xfe, 0x70, 0xe8, 0x70, 0x53, 0xa1, 0xdc, 0xbc, 0x51, 0x96, 0x84, + 0x23, 0x81, 0x6c, 0x0b, 0x81, 0xe5, 0x84, 0x51, 0x2b, 0x20, 0xe7, 0xf7, 0x33, 0x24, 0x83, 0xfe, + 0x67, 0x0d, 0x6a, 0x28, 0xf5, 0x4a, 0xad, 0xf4, 0x31, 0x14, 0x8e, 0x85, 0x36, 0x2a, 0xec, 0x52, + 0x60, 0x70, 0xa6, 0xed, 0x8b, 0x8c, 0x21, 0x19, 0x3f, 0xa6, 0xbe, 0xcf, 0x5a, 0xf2, 0x09, 0xd4, + 0x95, 0x8e, 0x2a, 0x5c, 0x1f, 0x26, 0x9b, 0xd5, 0x65, 0x21, 0xb6, 0x01, 0x05, 0xa1, 0xea, 0x82, + 0xae, 0x28, 0x79, 0x04, 0xb0, 0x30, 0xac, 0xb3, 0x98, 0x95, 0x9b, 0x90, 0xe3, 0xdc, 0x55, 0xf6, + 0x15, 0xc3, 0x0f, 0x37, 0x2d, 0x69, 0x40, 0x76, 0xda, 0x31, 0xb2, 0x9c, 0xe9, 0xdf, 0x68, 0xb0, + 0x14, 0x49, 0xbf, 0x92, 0xb5, 0x9f, 0x24, 0xad, 0x7d, 0x2b, 0x9d, 0xa4, 0x67, 0xff, 0x35, 0x83, + 0xff, 0x1a, 0x9a, 0x33, 0x4d, 0xff, 0xc7, 0x36, 0xff, 0xab, 0x06, 0x2b, 0x3b, 0xa3, 0xc0, 0x75, + 0x6c, 0x8b, 0xd3, 0x1d, 0xca, 0xa9, 0x7d, 0x25, 0xf0, 0x73, 0x0b, 0x2a, 0x78, 0xa5, 0x10, 0x00, + 0x53, 0x65, 0x5e, 0x19, 0x09, 0xfb, 0x74, 0x22, 0xb0, 0xbd, 0x42, 0xdb, 0x68, 0x84, 0x9a, 0x51, + 0x94, 0x18, 0x5b, 0x94, 0x31, 0x01, 0x48, 0x7d, 0xcf, 0x9d, 0x60, 0x0d, 0x2a, 0x1b, 0xa5, 0x01, + 0x9d, 0xbc, 0xf6, 0xdc, 0x09, 0xd1, 0xa1, 0x3e, 0x74, 0x3c, 0x73, 0x96, 0x64, 0xb2, 0x18, 0x55, + 0x87, 0x8e, 0xb7, 0xad, 0xf2, 0x4c, 0x3f, 0x80, 0xe2, 0xfe, 0xf8, 0xa3, 0xca, 0x40, 0x22, 0x6d, + 0x73, 0xc9, 0xb4, 0xd5, 0xff, 0xa2, 0xc1, 0x8d, 0x73, 0xa6, 0x50, 0xe6, 0xff, 0xe1, 0xec, 0xa2, + 0x71, 0x09, 0x4c, 0x8b, 0xee, 0x18, 0xe8, 0x86, 0xc7, 0x50, 0xc1, 0xfb, 0x45, 0xac, 0x31, 0xcc, + 0xf5, 0x9a, 0x30, 0x81, 0xfc, 0x62, 0x3d, 0x0a, 0xee, 0x1c, 0x3a, 0x6e, 0x39, 0xc9, 0x2d, 0x8f, + 0x1a, 0x55, 0x8e, 0x7f, 0xe5, 0xa0, 0xb8, 0xff, 0x26, 0xba, 0xa7, 0x21, 0xa8, 0xd1, 0x62, 0xa0, + 0xe6, 0x3e, 0xd4, 0xb0, 0x53, 0x98, 0x7e, 0xbf, 0xcf, 0x28, 0xc7, 0x7b, 0x47, 0xde, 0xa8, 0x22, + 0xed, 0x35, 0x92, 0x62, 0x75, 0x3e, 0x9b, 0xa8, 0xf3, 0xd3, 0x4f, 0xd5, 0x6a, 0x2d, 0xf6, 0xe9, + 0x4b, 0xc9, 0xd2, 0x80, 0xac, 0xdd, 0x57, 0x97, 0xf1, 0xac, 0xdd, 0x17, 0x66, 0x75, 0x98, 0xd9, + 0xc3, 0x52, 0xa9, 0x1c, 0x59, 0x76, 0x98, 0x2c, 0x9d, 0xc2, 0xc9, 0x32, 0x34, 0x78, 0x74, 0x3f, + 0x2a, 0xe1, 0xfc, 0x88, 0x91, 0x3b, 0x20, 0xb0, 0x1c, 0xf6, 0xcf, 0xa9, 0x87, 0x2b, 0x8a, 0x72, + 0xc4, 0x92, 0x41, 0x55, 0xbc, 0x38, 0xa8, 0x4a, 0x89, 0xa0, 0x5a, 0x81, 0x22, 0x3b, 0xb5, 0x36, + 0x7f, 0xf4, 0x14, 0x2f, 0x74, 0x35, 0x43, 0xcd, 0xc4, 0x9d, 0x4f, 0x4a, 0x63, 0x9e, 0x15, 0xb0, + 0x53, 0x1f, 0x15, 0x92, 0xf7, 0xb9, 0x25, 0x5c, 0xe8, 0x2a, 0xfa, 0x11, 0x23, 0x5b, 0xd0, 0xb4, + 0xfd, 0x61, 0x10, 0x52, 0x26, 0xae, 0x63, 0x12, 0xca, 0xd4, 0xb1, 0x79, 0xdc, 0x98, 0x02, 0xa0, + 0xd9, 0x3a, 0x02, 0x98, 0x25, 0x3b, 0x49, 0x20, 0x06, 0x2c, 0xf7, 0x1d, 0x97, 0x9a, 0xb3, 0x37, + 0x17, 0x09, 0xa4, 0x24, 0x96, 0xbb, 0xd7, 0x49, 0xbc, 0xc5, 0xfc, 0xd4, 0x71, 0xe9, 0xee, 0x94, + 0x80, 0xb0, 0x8a, 0xf4, 0xcf, 0xd1, 0xf4, 0x7f, 0xe6, 0xa0, 0xf6, 0x75, 0x10, 0xb8, 0x93, 0x28, + 0x47, 0xd7, 0x12, 0x15, 0x2c, 0x1d, 0x31, 0x6f, 0x64, 0x4f, 0xc6, 0xf2, 0xb5, 0x1e, 0x55, 0x85, + 0xda, 0xdc, 0xe0, 0x7a, 0x13, 0x2b, 0x0a, 0xe7, 0x20, 0x71, 0xf6, 0x0a, 0x90, 0xf8, 0x27, 0x50, + 0x4f, 0x62, 0xe1, 0xfa, 0x22, 0x2c, 0x5c, 0x0b, 0xe3, 0x28, 0x78, 0x1e, 0x88, 0x2d, 0xcc, 0x05, + 0xb1, 0x73, 0xf0, 0x72, 0xee, 0xa3, 0xf0, 0x72, 0xac, 0xd0, 0xe5, 0x17, 0x15, 0xba, 0x14, 0x2a, + 0xae, 0x7e, 0x10, 0x2a, 0xfe, 0x12, 0xaa, 0x43, 0x8b, 0x71, 0x1a, 0x8a, 0x70, 0x65, 0xad, 0x06, + 0x5a, 0xe2, 0x46, 0x32, 0x02, 0x0e, 0x90, 0x61, 0x9f, 0x4e, 0x0c, 0x18, 0x46, 0x43, 0xa6, 0x0f, + 0xa0, 0xae, 0xfc, 0x7d, 0x55, 0xa8, 0x38, 0x6d, 0x1c, 0xd9, 0x45, 0x8d, 0x43, 0xff, 0x0c, 0x6a, + 0xdb, 0x2e, 0xb5, 0xc2, 0x28, 0xb8, 0x56, 0xa0, 0x18, 0x7b, 0x51, 0xa8, 0x18, 0x6a, 0xa6, 0x7f, + 0x05, 0x75, 0xc5, 0xf7, 0xd1, 0xcd, 0x69, 0xfd, 0x01, 0xc0, 0xec, 0x95, 0x4a, 0x00, 0xac, 0x57, + 0x7e, 0x38, 0xb4, 0x5c, 0x09, 0xb6, 0xe4, 0x33, 0x5e, 0x53, 0x5b, 0x7f, 0x04, 0xd7, 0xe7, 0x5c, + 0x12, 0x04, 0xcb, 0x4b, 0x7a, 0x62, 0xd9, 0x93, 0x66, 0x86, 0xd4, 0xa0, 0x2c, 0x2c, 0x14, 0x58, + 0x36, 0x6d, 0x6a, 0x9b, 0xff, 0x2e, 0x43, 0x45, 0x7e, 0xdd, 0xed, 0x1e, 0x91, 0x9f, 0x27, 0x36, + 0xb9, 0x7b, 0xe1, 0x23, 0x99, 0x14, 0xdd, 0xbe, 0x77, 0x31, 0x83, 0x82, 0x9b, 0x19, 0xf2, 0x02, + 0x4a, 0xea, 0x29, 0x8e, 0xdc, 0x4e, 0xb2, 0x27, 0xdf, 0xec, 0xda, 0x77, 0x2e, 0x58, 0x9d, 0x4a, + 0x7a, 0x0e, 0x45, 0xf9, 0xc2, 0x41, 0x52, 0x10, 0x22, 0xf1, 0xa8, 0xd2, 0xbe, 0x3d, 0x7f, 0x31, + 0x12, 0xb3, 0xa6, 0x91, 0x5d, 0x28, 0xca, 0x57, 0x84, 0xb4, 0xa0, 0xc4, 0x1b, 0x46, 0x5a, 0x50, + 0xf2, 0xe1, 0x41, 0x9e, 0x4c, 0xdd, 0xe3, 0xd3, 0x27, 0x4b, 0x3e, 0x35, 0xa4, 0x4f, 0x96, 0xbe, + 0xfc, 0x67, 0x48, 0x08, 0x9f, 0xcc, 0x45, 0xed, 0x64, 0x3d, 0x65, 0xe0, 0x4b, 0xee, 0x06, 0xed, + 0x8d, 0x0f, 0xe2, 0x9d, 0xee, 0xb9, 0x0f, 0xe5, 0x68, 0x9d, 0xdc, 0xb9, 0xf4, 0x9a, 0xd9, 0x5e, + 0xbd, 0x68, 0x79, 0x2a, 0x6c, 0x07, 0x0a, 0x88, 0xba, 0x48, 0x7b, 0x0e, 0x94, 0x8e, 0xc4, 0xdc, + 0x9a, 0xbb, 0x16, 0xf3, 0xcb, 0x01, 0x94, 0x23, 0xf8, 0x96, 0x56, 0x29, 0x05, 0x40, 0xd3, 0x2a, + 0xa5, 0x51, 0x1f, 0x8a, 0x7b, 0x0d, 0xd5, 0xd8, 0xcb, 0x14, 0x49, 0x05, 0xeb, 0xf9, 0x47, 0xab, + 0x85, 0x0e, 0x3f, 0x86, 0xa5, 0x14, 0xcc, 0x21, 0x0f, 0x52, 0xa6, 0x99, 0x0b, 0x08, 0xdb, 0x9f, + 0x2e, 0xe0, 0x8a, 0x76, 0x78, 0xac, 0x91, 0x2d, 0x28, 0x60, 0xdd, 0x4a, 0x5b, 0x32, 0xde, 0xbc, + 0xd2, 0x96, 0x4c, 0x14, 0x3a, 0x4c, 0x14, 0xc0, 0x32, 0x23, 0x7a, 0x23, 0x4b, 0x0b, 0x8a, 0x17, + 0xaa, 0xb4, 0xa0, 0x44, 0x71, 0xd2, 0x33, 0xc4, 0x86, 0x66, 0xfa, 0x7f, 0x02, 0x92, 0x3a, 0xcb, + 0x05, 0x7f, 0x6d, 0xb4, 0x3f, 0x5b, 0xc4, 0x16, 0x6d, 0xb2, 0xb5, 0xf9, 0xfd, 0x37, 0x65, 0xed, + 0xdb, 0x77, 0xab, 0xda, 0x77, 0xef, 0x56, 0xb5, 0x7f, 0xbc, 0x5b, 0xd5, 0x7e, 0xff, 0x7e, 0x35, + 0xf3, 0xc7, 0xf7, 0xab, 0x99, 0xef, 0xde, 0xaf, 0x66, 0xbe, 0x7f, 0xbf, 0x9a, 0x81, 0xa6, 0x1f, + 0x9e, 0x74, 0xb8, 0x33, 0x18, 0x77, 0x06, 0x63, 0xfc, 0x53, 0xe5, 0xb8, 0x88, 0x3f, 0x4f, 0xfe, + 0x13, 0x00, 0x00, 0xff, 0xff, 0x17, 0x56, 0x42, 0x34, 0xf2, 0x19, 0x00, 0x00, } // Reference imports to suppress errors if they are not otherwise used. @@ -4087,6 +4096,22 @@ func (m *DownloadRequest) MarshalToSizedBuffer(dAtA []byte) (int, error) { _ = i var l int _ = l + if len(m.SortedRewriteRules) > 0 { + for iNdEx := len(m.SortedRewriteRules) - 1; iNdEx >= 0; iNdEx-- { + { + size, err := m.SortedRewriteRules[iNdEx].MarshalToSizedBuffer(dAtA[:i]) + if err != nil { + return 0, err + } + i -= size + i = encodeVarintImportSstpb(dAtA, i, uint64(size)) + } + i-- + dAtA[i] = 0x1 + i-- + dAtA[i] = 0xa2 + } + } if m.Context != nil { { size, err := m.Context.MarshalToSizedBuffer(dAtA[:i]) @@ -5661,6 +5686,12 @@ func (m *DownloadRequest) Size() (n int) { l = m.Context.Size() n += 2 + l + sovImportSstpb(uint64(l)) } + if len(m.SortedRewriteRules) > 0 { + for _, e := range m.SortedRewriteRules { + l = e.Size() + n += 2 + l + sovImportSstpb(uint64(l)) + } + } return n } @@ -8347,6 +8378,40 @@ func (m *DownloadRequest) Unmarshal(dAtA []byte) error { return err } iNdEx = postIndex + case 20: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field SortedRewriteRules", wireType) + } + var msglen int + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowImportSstpb + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + msglen |= int(b&0x7F) << shift + if b < 0x80 { + break + } + } + if msglen < 0 { + return ErrInvalidLengthImportSstpb + } + postIndex := iNdEx + msglen + if postIndex < 0 { + return ErrInvalidLengthImportSstpb + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + m.SortedRewriteRules = append(m.SortedRewriteRules, &RewriteRule{}) + if err := m.SortedRewriteRules[len(m.SortedRewriteRules)-1].Unmarshal(dAtA[iNdEx:postIndex]); err != nil { + return err + } + iNdEx = postIndex default: iNdEx = preIndex skippy, err := skipImportSstpb(dAtA[iNdEx:]) diff --git a/pkg/tikvpb/tikvpb.pb.go b/pkg/tikvpb/tikvpb.pb.go index 966f9c366..e69d632c7 100644 --- a/pkg/tikvpb/tikvpb.pb.go +++ b/pkg/tikvpb/tikvpb.pb.go @@ -1185,6 +1185,8 @@ func (*BatchCommandsResponse_Response) XXX_OneofWrappers() []interface{} { type BatchRaftMessage struct { Msgs []*raft_serverpb.RaftMessage `protobuf:"bytes,1,rep,name=msgs,proto3" json:"msgs,omitempty"` + // Used for measure the send duration. + LastObservedTime uint64 `protobuf:"varint,13,opt,name=last_observed_time,json=lastObservedTime,proto3" json:"last_observed_time,omitempty"` } func (m *BatchRaftMessage) Reset() { *m = BatchRaftMessage{} } @@ -1227,6 +1229,13 @@ func (m *BatchRaftMessage) GetMsgs() []*raft_serverpb.RaftMessage { return nil } +func (m *BatchRaftMessage) GetLastObservedTime() uint64 { + if m != nil { + return m.LastObservedTime + } + return 0 +} + type BatchCommandsEmptyRequest struct { // ID of the test request. TestId uint64 `protobuf:"varint,1,opt,name=test_id,json=testId,proto3" json:"test_id,omitempty"` @@ -1339,180 +1348,182 @@ func init() { func init() { proto.RegisterFile("tikvpb.proto", fileDescriptor_274fe050f0c997b3) } var fileDescriptor_274fe050f0c997b3 = []byte{ - // 2764 bytes of a gzipped FileDescriptorProto + // 2786 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x94, 0x9a, 0x4b, 0x77, 0xdb, 0xc6, - 0xf5, 0xc0, 0x41, 0x9b, 0xd6, 0x63, 0x64, 0xbd, 0x46, 0x92, 0x05, 0xc1, 0xb2, 0x64, 0xc3, 0xb2, - 0xad, 0x24, 0xe7, 0xaf, 0xbf, 0xed, 0xb8, 0x71, 0xe3, 0xa4, 0xa9, 0x2c, 0xca, 0x7a, 0x84, 0xd2, - 0x09, 0x4b, 0xd2, 0x89, 0xdb, 0xd3, 0x1e, 0x9d, 0x11, 0x39, 0xa2, 0x58, 0x91, 0x00, 0x0b, 0x0c, - 0x29, 0xf3, 0x5b, 0xf4, 0x74, 0xd5, 0x4d, 0xf7, 0xfd, 0x28, 0x5d, 0x66, 0x99, 0x65, 0x8f, 0xfd, - 0x19, 0xba, 0xe8, 0x2a, 0x3d, 0x33, 0x00, 0xe6, 0x85, 0x01, 0xc8, 0xac, 0x04, 0xcd, 0x7d, 0x61, - 0x66, 0x30, 0x77, 0x7e, 0xf7, 0x4a, 0xe0, 0x36, 0x69, 0x5f, 0x0d, 0x7a, 0xe7, 0x3b, 0xbd, 0xc0, - 0x27, 0x3e, 0x9c, 0x88, 0x7e, 0x73, 0x16, 0x1b, 0x7e, 0x2f, 0xf0, 0x1b, 0x38, 0x0c, 0xfd, 0x20, - 0x12, 0x39, 0xb3, 0x57, 0x83, 0xa0, 0xd7, 0x48, 0x34, 0x9d, 0xe9, 0x6e, 0xaf, 0x17, 0x3f, 0x2e, - 0x05, 0xe8, 0x82, 0x9c, 0x85, 0x38, 0x18, 0xe0, 0x80, 0xcb, 0x97, 0x9a, 0xed, 0x10, 0xb5, 0x5a, - 0x01, 0x6e, 0x21, 0x82, 0x9b, 0xf1, 0xe0, 0x72, 0xcb, 0x6f, 0xf9, 0xec, 0xf1, 0xff, 0xe9, 0x53, - 0x3c, 0x3a, 0x1f, 0xf4, 0x43, 0xc2, 0x1e, 0xa3, 0x01, 0xf7, 0x3f, 0x10, 0x2c, 0xef, 0x21, 0xd2, - 0xb8, 0x2c, 0xf9, 0xdd, 0x2e, 0xf2, 0x9a, 0x61, 0x15, 0xff, 0xa5, 0x8f, 0x43, 0x02, 0x77, 0xc1, - 0x54, 0x10, 0x3d, 0x86, 0x76, 0xe1, 0xfe, 0xcd, 0xed, 0x99, 0xe7, 0x5b, 0x3b, 0xf1, 0xfb, 0x9b, - 0xf4, 0x77, 0xe2, 0x9f, 0x55, 0x6e, 0x05, 0x37, 0xc1, 0x4c, 0xfc, 0x7c, 0xd6, 0x6e, 0x86, 0xf6, - 0x8d, 0xfb, 0x37, 0xb7, 0x8b, 0x55, 0x10, 0x0f, 0x1d, 0x37, 0x43, 0xe7, 0xbf, 0x8b, 0x60, 0x32, - 0x09, 0xf7, 0x04, 0xdc, 0x3c, 0xc4, 0xc4, 0x2e, 0xdc, 0x2f, 0x6c, 0xcf, 0x3c, 0x5f, 0xda, 0x49, - 0x16, 0xe0, 0x10, 0x93, 0x58, 0xe3, 0xc8, 0xaa, 0x52, 0x0d, 0xf8, 0x29, 0x28, 0xd6, 0x1a, 0xc8, - 0xb3, 0x6f, 0x30, 0xcd, 0x65, 0xae, 0x49, 0x07, 0x85, 0x2a, 0xd3, 0x81, 0x5f, 0x80, 0xa9, 0x4a, - 0x80, 0xaf, 0x83, 0x36, 0xc1, 0xf6, 0x4d, 0xa6, 0x6f, 0x73, 0xfd, 0x44, 0x20, 0x6c, 0xb8, 0x2e, - 0x7c, 0x0a, 0x26, 0xe8, 0xf4, 0xda, 0xc4, 0x2e, 0x32, 0xab, 0x3b, 0xdc, 0x2a, 0x1a, 0x16, 0x36, - 0xb1, 0x1e, 0xb5, 0x38, 0xee, 0xf6, 0xfc, 0x80, 0xd8, 0xb7, 0x34, 0x8b, 0x68, 0x58, 0xb2, 0x88, - 0x06, 0xe0, 0xe7, 0x60, 0xb2, 0xd4, 0xc1, 0xc8, 0xeb, 0xf7, 0xec, 0x09, 0x66, 0xb2, 0x2a, 0x82, - 0x44, 0xe3, 0xc2, 0x26, 0xd1, 0xa4, 0x13, 0x62, 0x8b, 0x4f, 0x97, 0x6a, 0x52, 0x9b, 0x50, 0x22, - 0x90, 0x26, 0x94, 0x0c, 0xc1, 0x37, 0x60, 0x96, 0x3d, 0x57, 0xfd, 0x4e, 0xe7, 0x1c, 0x35, 0xae, - 0xec, 0x29, 0x66, 0x7c, 0x4f, 0x35, 0x4e, 0xa4, 0xc2, 0x83, 0x6a, 0x45, 0xc3, 0xd3, 0x75, 0x3d, - 0xf1, 0x1b, 0x57, 0xf6, 0xb4, 0x16, 0x3e, 0x11, 0x48, 0xe1, 0x93, 0x21, 0xf8, 0x5b, 0x30, 0x53, - 0xc5, 0xa1, 0xdf, 0x19, 0x60, 0x66, 0x0a, 0x98, 0xe9, 0x5d, 0x6e, 0x2a, 0xc9, 0x84, 0xb5, 0x6c, - 0x01, 0xb7, 0xc0, 0x8d, 0xc3, 0x92, 0x3d, 0xc3, 0xec, 0xa0, 0xf8, 0x38, 0x4a, 0x42, 0xfd, 0xc6, - 0x61, 0x89, 0x86, 0xd9, 0xc7, 0x1d, 0x4c, 0x70, 0x15, 0x79, 0x2d, 0x6c, 0xdf, 0xd6, 0xc2, 0x48, - 0x32, 0x29, 0x8c, 0x34, 0x4a, 0x77, 0xb1, 0x8a, 0xae, 0xe9, 0xe2, 0xce, 0x6a, 0xbb, 0x18, 0x0d, - 0x4b, 0xbb, 0x18, 0x0d, 0xb0, 0x99, 0xa1, 0x6b, 0xbe, 0x27, 0x73, 0xfa, 0xcc, 0x84, 0x4c, 0x9e, - 0x99, 0x18, 0x8d, 0x43, 0x56, 0xfa, 0xc4, 0x9e, 0x4f, 0x87, 0xac, 0xf4, 0xb5, 0x90, 0x95, 0xbe, - 0x12, 0x92, 0x9a, 0x2d, 0x64, 0x84, 0x54, 0x6c, 0x65, 0x0b, 0xf8, 0x25, 0x98, 0xae, 0xa2, 0xeb, - 0x68, 0xde, 0xf6, 0x22, 0x33, 0x5f, 0x93, 0xcd, 0xe3, 0x15, 0xe1, 0xc6, 0x42, 0x1b, 0x1e, 0x81, - 0xb9, 0xc4, 0x53, 0x6c, 0x0f, 0x99, 0xfd, 0x46, 0x2a, 0xbc, 0xee, 0x44, 0xb3, 0xa3, 0x9f, 0x7f, - 0x15, 0x5d, 0xb3, 0x93, 0xbc, 0xa4, 0x7d, 0xfe, 0xf1, 0xb8, 0xf4, 0xf9, 0xc7, 0x23, 0x71, 0x78, - 0x79, 0x8f, 0x97, 0xd3, 0xe1, 0x8d, 0xdb, 0xac, 0xd9, 0xc1, 0x3d, 0x70, 0x3b, 0x79, 0x21, 0xf6, - 0x0e, 0x2b, 0xcc, 0xcf, 0x7a, 0x6a, 0x1a, 0xea, 0x8b, 0x28, 0x36, 0xf0, 0xd7, 0x60, 0xa6, 0x24, - 0x52, 0xb7, 0x7d, 0x27, 0x4e, 0x48, 0x72, 0x3a, 0x97, 0x76, 0x40, 0x52, 0x85, 0x65, 0x30, 0x5f, - 0xc1, 0x61, 0xd8, 0xee, 0xb6, 0x43, 0xd2, 0x6e, 0xb0, 0x33, 0xb1, 0xca, 0xac, 0x37, 0x45, 0x7a, - 0x52, 0xe5, 0xc2, 0x91, 0x6e, 0x09, 0x7f, 0x00, 0x4b, 0xd2, 0x10, 0x3f, 0xe1, 0x36, 0x73, 0xf8, - 0xd0, 0xe4, 0x30, 0x7d, 0xce, 0x4d, 0x1e, 0xe8, 0x6a, 0x97, 0x2e, 0x71, 0xe3, 0xaa, 0xfe, 0xde, - 0xab, 0x11, 0x44, 0xfa, 0xa1, 0xbd, 0xa6, 0xad, 0xb6, 0x2a, 0x96, 0x56, 0x5b, 0x15, 0xd0, 0xd5, - 0xae, 0xbf, 0xf7, 0x8e, 0x30, 0x0a, 0xc8, 0x1e, 0x46, 0xc4, 0x76, 0xb4, 0xd5, 0x96, 0x85, 0xd2, - 0x6a, 0xcb, 0xc3, 0x74, 0x9a, 0xcc, 0x6b, 0x0d, 0x37, 0x7c, 0xaf, 0x89, 0x82, 0x21, 0x9d, 0x7c, - 0x68, 0x3f, 0xd0, 0xa6, 0x69, 0xd0, 0x91, 0xa6, 0x69, 0x90, 0xc6, 0x1f, 0x95, 0xbc, 0x93, 0x6e, - 0xfa, 0xa3, 0x92, 0xc4, 0xea, 0x47, 0x25, 0x6f, 0x6b, 0x1d, 0xc0, 0x83, 0x0e, 0x0a, 0x2f, 0xe9, - 0xea, 0xd5, 0xfd, 0xef, 0x71, 0x10, 0xb6, 0x7d, 0xcf, 0x7e, 0xc8, 0xbc, 0xb9, 0xdc, 0x5b, 0x5a, - 0x45, 0x78, 0x34, 0xd8, 0xc3, 0x36, 0x58, 0xab, 0x04, 0xb8, 0x87, 0x02, 0x6c, 0x70, 0xbe, 0xc5, - 0x9c, 0x7f, 0x22, 0xdf, 0x6a, 0x66, 0x4d, 0x11, 0x23, 0xdb, 0x1b, 0xfc, 0x3f, 0x70, 0xeb, 0xa0, - 0xd3, 0x0f, 0x2f, 0xed, 0x47, 0xcc, 0xed, 0x8a, 0xf4, 0xce, 0xfd, 0xf0, 0x52, 0xb8, 0x88, 0xb4, - 0xe8, 0xca, 0xed, 0xf5, 0x2f, 0x2e, 0x70, 0xc0, 0xf3, 0xdf, 0x63, 0x6d, 0xe5, 0x54, 0xb1, 0xb4, - 0x72, 0xaa, 0x00, 0xfe, 0x0e, 0x2c, 0x1e, 0x62, 0x72, 0x84, 0x51, 0x87, 0x5c, 0x1e, 0x60, 0xdc, - 0x64, 0x5f, 0xf0, 0x13, 0xe6, 0xec, 0x81, 0xcc, 0x02, 0xaa, 0x86, 0xf0, 0x97, 0xb6, 0xa6, 0x9b, - 0xb1, 0x17, 0xf8, 0xa8, 0xd9, 0x40, 0x21, 0x11, 0x5f, 0xf0, 0xb6, 0xb6, 0x19, 0x69, 0x15, 0x69, - 0x33, 0xd2, 0x42, 0xf8, 0x0a, 0xdc, 0x7a, 0xd3, 0xed, 0x91, 0xa1, 0xfd, 0x73, 0x21, 0x7e, 0x3b, - 0x13, 0x13, 0x31, 0x15, 0x69, 0xb9, 0xd8, 0xef, 0x7b, 0xb7, 0xc0, 0xcd, 0x46, 0xb7, 0xf9, 0x6d, - 0x71, 0xea, 0xee, 0xc2, 0x03, 0xf7, 0x6f, 0xcb, 0x60, 0x45, 0xe3, 0xa8, 0xb0, 0xe7, 0x7b, 0x21, - 0x86, 0xfb, 0x60, 0x3a, 0x88, 0x9f, 0x13, 0xf2, 0x7a, 0x9c, 0x41, 0x5e, 0x91, 0xd6, 0x4e, 0xf2, - 0x50, 0x15, 0x86, 0x23, 0xe1, 0x0b, 0x3e, 0x05, 0xcb, 0x24, 0x40, 0x5e, 0x48, 0x61, 0xe4, 0xac, - 0x83, 0x86, 0x38, 0x38, 0xeb, 0xf8, 0xa8, 0xc9, 0x38, 0xa9, 0x58, 0x85, 0x5c, 0x76, 0x42, 0x45, - 0x27, 0x3e, 0x6a, 0xc2, 0x5d, 0x30, 0x7f, 0xc9, 0xd6, 0xf8, 0xec, 0x22, 0xd9, 0xa2, 0xa2, 0x96, - 0xba, 0xb5, 0xfd, 0x99, 0xbb, 0x54, 0x7e, 0x77, 0xfe, 0x01, 0xc1, 0x14, 0x9f, 0xe7, 0xb6, 0x4c, - 0x7c, 0xcb, 0x2a, 0xf1, 0x45, 0x2a, 0x09, 0xf2, 0x7d, 0xa6, 0x20, 0xdf, 0x8a, 0x86, 0x7c, 0x5c, - 0x37, 0x62, 0xbe, 0x97, 0x29, 0xe6, 0x5b, 0x33, 0x30, 0x1f, 0x37, 0x12, 0xd0, 0xf7, 0x4c, 0x83, - 0xbe, 0xd5, 0x14, 0xf4, 0x71, 0xa3, 0x84, 0xfa, 0x9e, 0x69, 0xd4, 0xb7, 0x9a, 0xa2, 0x3e, 0x61, - 0x12, 0x63, 0xdf, 0x0b, 0x1d, 0xfb, 0xec, 0x34, 0xf6, 0x71, 0x23, 0xce, 0x7d, 0x2f, 0x53, 0xdc, - 0xb7, 0x66, 0xe0, 0x3e, 0x31, 0x29, 0x7e, 0xb0, 0x0e, 0xcc, 0xe0, 0xb7, 0x91, 0x05, 0x7e, 0xdc, - 0x85, 0x46, 0x7e, 0x2f, 0x53, 0xe4, 0xb7, 0x66, 0x20, 0x3f, 0xf1, 0x02, 0x1c, 0xfd, 0x76, 0x4d, - 0xe8, 0xb7, 0x6e, 0x46, 0x3f, 0x6e, 0xae, 0xb0, 0xdf, 0x23, 0x89, 0xfd, 0x96, 0x14, 0xf6, 0xe3, - 0xfa, 0x14, 0xfe, 0x76, 0x4d, 0xf0, 0xb7, 0x6e, 0x86, 0x3f, 0x11, 0x48, 0x66, 0x82, 0x67, 0x1a, - 0xfd, 0xad, 0xa6, 0xe8, 0x4f, 0xec, 0x66, 0x8c, 0x7f, 0xbb, 0x26, 0xfc, 0x5b, 0x37, 0xe3, 0x9f, - 0x34, 0x3b, 0x89, 0xff, 0x9e, 0x69, 0xfc, 0xb7, 0x9a, 0xe2, 0x3f, 0x25, 0x28, 0xe5, 0xb7, 0x5d, - 0x13, 0x00, 0xae, 0x9b, 0x01, 0x30, 0x1d, 0x94, 0x7a, 0x78, 0x95, 0x26, 0x40, 0xc7, 0x44, 0x80, - 0xdc, 0x5a, 0x42, 0xc0, 0xe3, 0x0c, 0x04, 0xdc, 0xcc, 0x44, 0x40, 0xee, 0x45, 0x67, 0xc0, 0x17, - 0x3a, 0x03, 0xda, 0x69, 0x06, 0x14, 0x67, 0x21, 0x81, 0xc0, 0xe3, 0x0c, 0x08, 0xdc, 0xcc, 0x84, - 0x40, 0xe5, 0x05, 0xe4, 0x1d, 0x2f, 0x19, 0x29, 0xf0, 0x5e, 0x06, 0x05, 0x72, 0x37, 0x2a, 0x06, - 0x7e, 0x69, 0xc2, 0xc0, 0x15, 0x0d, 0x03, 0xc5, 0x3e, 0xc8, 0xc0, 0x70, 0x92, 0xc5, 0x81, 0xf7, - 0xb3, 0x39, 0x90, 0x7b, 0x4a, 0x81, 0xe0, 0xbb, 0x3c, 0x10, 0xdc, 0xca, 0x07, 0x41, 0xee, 0xd5, - 0x48, 0x82, 0xc7, 0x19, 0x24, 0xb8, 0x99, 0x49, 0x82, 0x62, 0xc9, 0x35, 0x14, 0x2c, 0x19, 0x51, - 0xf0, 0x5e, 0x06, 0x0a, 0x8a, 0x25, 0x57, 0x58, 0xf0, 0x5d, 0x1e, 0x0b, 0x6e, 0xe5, 0xb3, 0xa0, - 0x98, 0xa9, 0x09, 0x06, 0x8f, 0x33, 0x60, 0x70, 0x33, 0x13, 0x06, 0x95, 0x8f, 0x4b, 0xde, 0xdc, - 0xb7, 0x39, 0x34, 0xf8, 0x30, 0x97, 0x06, 0xb9, 0x4b, 0x13, 0x0e, 0xfe, 0x79, 0x34, 0x0e, 0x7e, - 0x3a, 0x0e, 0x0e, 0xf2, 0x20, 0x39, 0x3c, 0xb8, 0xa3, 0xf2, 0xe0, 0x1d, 0x9d, 0x07, 0xb9, 0x8f, - 0x18, 0x08, 0x8f, 0x33, 0x80, 0x70, 0x33, 0x13, 0x08, 0xc5, 0xea, 0x69, 0x44, 0x58, 0xcd, 0x26, - 0x42, 0x37, 0x8f, 0x08, 0xb9, 0x43, 0x03, 0x12, 0xbe, 0xcd, 0x41, 0xc2, 0x87, 0xb9, 0x48, 0x28, - 0x76, 0xc4, 0xc0, 0x84, 0x5f, 0x69, 0x4c, 0xe8, 0xe6, 0x31, 0xa1, 0x58, 0x32, 0x03, 0x14, 0xee, - 0x81, 0x85, 0xe8, 0xda, 0x45, 0x17, 0xe4, 0x14, 0x87, 0x21, 0x6a, 0x61, 0xb8, 0x03, 0x8a, 0xdd, - 0xb0, 0x95, 0x90, 0xa0, 0xb3, 0xa3, 0x36, 0x00, 0x25, 0xcd, 0x2a, 0xd3, 0x73, 0x6b, 0x60, 0x2d, - 0x93, 0x45, 0xe1, 0x2a, 0x98, 0x24, 0x11, 0x12, 0x32, 0xee, 0x2a, 0x56, 0x27, 0x08, 0xc3, 0x41, - 0x78, 0x0f, 0x80, 0x26, 0xee, 0xa0, 0xe1, 0x19, 0x69, 0x77, 0x31, 0x03, 0xad, 0x62, 0x75, 0x9a, - 0x8d, 0xd4, 0xdb, 0x5d, 0xec, 0xfe, 0x0a, 0x38, 0xd9, 0x93, 0xc9, 0xf4, 0xfa, 0xfc, 0xe7, 0xcf, - 0x40, 0xb1, 0xde, 0xbe, 0x1a, 0xc0, 0x17, 0xe0, 0x56, 0x79, 0x40, 0xb7, 0xd5, 0xd4, 0xd9, 0x73, - 0x8c, 0xf0, 0xe7, 0x5a, 0xf0, 0x25, 0x98, 0x28, 0x0f, 0x58, 0x8e, 0x35, 0xb6, 0xf9, 0x1c, 0x33, - 0x09, 0xba, 0x16, 0x2c, 0x01, 0x50, 0x1e, 0x70, 0xb0, 0xcb, 0xec, 0xf9, 0x39, 0xd9, 0x64, 0xe8, - 0x5a, 0xf0, 0x1d, 0x58, 0x2c, 0x0f, 0xf4, 0x1c, 0x3b, 0xaa, 0x40, 0x77, 0x46, 0x66, 0x6e, 0xd7, - 0x82, 0x4d, 0xb0, 0x52, 0xfe, 0xde, 0x94, 0x67, 0xc7, 0xa9, 0xd6, 0x9d, 0xb1, 0x32, 0xb9, 0x6b, - 0xc1, 0xef, 0xc0, 0x5c, 0x79, 0xa0, 0xa4, 0xcd, 0xdc, 0x82, 0xdb, 0xc9, 0xcf, 0xc1, 0xae, 0x05, - 0xdf, 0x82, 0x85, 0xf2, 0x40, 0x4b, 0xe7, 0x23, 0x7a, 0x01, 0xce, 0xa8, 0x1b, 0x22, 0x5e, 0x8d, - 0x81, 0x29, 0x17, 0x8f, 0x53, 0xd4, 0x3b, 0x63, 0x65, 0x7b, 0xd7, 0x82, 0xbf, 0x01, 0x53, 0xe5, - 0x41, 0x8c, 0xed, 0x19, 0xed, 0x5c, 0x27, 0x8b, 0xf8, 0x13, 0xf3, 0x18, 0xe1, 0x33, 0x7a, 0xbb, - 0x4e, 0x16, 0xfd, 0xbb, 0x16, 0xdc, 0x05, 0xd3, 0xe5, 0x41, 0x02, 0xf3, 0x59, 0x8d, 0x5e, 0x27, - 0xb3, 0x14, 0x48, 0x3e, 0x69, 0x9e, 0x1d, 0x33, 0xbb, 0xbe, 0x4e, 0x76, 0x5d, 0xe0, 0x5a, 0xb0, - 0x0a, 0xe6, 0x63, 0x27, 0xfc, 0x93, 0xcb, 0x6f, 0x01, 0x3b, 0x23, 0x0a, 0x85, 0xe4, 0xc5, 0x38, - 0xee, 0x67, 0xf6, 0x83, 0x9d, 0xec, 0x7a, 0xc1, 0xb5, 0xe0, 0x09, 0x98, 0x2d, 0x0f, 0x64, 0xe8, - 0xcf, 0x6b, 0x0e, 0x3b, 0xb9, 0xe5, 0x83, 0x6b, 0xc1, 0x67, 0xa0, 0x58, 0x1e, 0x1c, 0x96, 0xa0, - 0xa1, 0x53, 0xec, 0x98, 0x2a, 0x88, 0xe4, 0x05, 0x64, 0x34, 0xcc, 0x6b, 0x1b, 0x3b, 0xb9, 0x65, - 0x85, 0x6b, 0xc1, 0x01, 0xb8, 0xcb, 0xf2, 0x4f, 0xc6, 0xb5, 0x3a, 0x7e, 0xbb, 0xc6, 0xf9, 0x05, - 0x57, 0xb9, 0x6b, 0x41, 0x04, 0x96, 0xcb, 0x03, 0x43, 0xc0, 0x31, 0x9a, 0x4f, 0xce, 0x38, 0x48, - 0xe2, 0x5a, 0xf0, 0x15, 0x98, 0xa4, 0x21, 0xe8, 0x6d, 0x6f, 0x6e, 0x0f, 0x39, 0x19, 0x94, 0x90, - 0x24, 0x10, 0xed, 0x9e, 0x1f, 0xd1, 0x2b, 0x72, 0x46, 0xa1, 0x83, 0x6b, 0xc1, 0xaf, 0x92, 0xba, - 0x0d, 0x66, 0xf4, 0xeb, 0x9d, 0xac, 0x4a, 0xce, 0xb5, 0xe0, 0xb7, 0x4a, 0x05, 0x07, 0xf3, 0x5a, - 0xf7, 0x4e, 0x6e, 0x61, 0xc7, 0x5f, 0x84, 0x16, 0x58, 0x19, 0x5d, 0x7c, 0x27, 0xab, 0xba, 0x53, - 0x5f, 0x84, 0x7a, 0xc8, 0x6b, 0xe8, 0x3b, 0xb9, 0xc5, 0x9e, 0x6b, 0xc1, 0x7d, 0xa9, 0xbe, 0x83, - 0xd9, 0xbd, 0x7d, 0x27, 0xa7, 0xe8, 0x73, 0x2d, 0x58, 0xd3, 0x2b, 0x3d, 0x38, 0xa2, 0xcd, 0xef, - 0x8c, 0xaa, 0x01, 0x5d, 0x0b, 0x7e, 0xc3, 0x6b, 0x3e, 0x98, 0xd5, 0xf1, 0x77, 0x32, 0xcb, 0x40, - 0xfe, 0x52, 0xf2, 0x49, 0x1d, 0xd1, 0xfc, 0x77, 0x46, 0xd5, 0x85, 0xae, 0x05, 0x4f, 0xd5, 0x3a, - 0x10, 0xe6, 0xfe, 0x1d, 0xc0, 0xc9, 0xaf, 0x0f, 0xb9, 0xbb, 0x43, 0x4c, 0xca, 0x78, 0x58, 0xaf, - 0x9f, 0xa8, 0xee, 0xf8, 0xb0, 0xd1, 0x9d, 0x24, 0xe5, 0xee, 0x0e, 0xc0, 0x22, 0x2b, 0x2d, 0xba, - 0xf4, 0xfc, 0xbf, 0xf6, 0x9a, 0xb5, 0x6b, 0xd4, 0x53, 0xbf, 0xb0, 0xd2, 0xeb, 0x9a, 0xf1, 0x0b, - 0x63, 0xe3, 0xda, 0x17, 0xc6, 0xae, 0xc9, 0xb0, 0xdf, 0x55, 0xbf, 0xb0, 0x64, 0xd4, 0xf8, 0x85, - 0x09, 0x21, 0xf7, 0x75, 0x06, 0xe0, 0x5b, 0x2f, 0x44, 0x17, 0x78, 0x1f, 0x87, 0x24, 0xf0, 0x87, - 0xd1, 0x56, 0x88, 0x3c, 0x93, 0x16, 0xa6, 0xf3, 0x8c, 0x49, 0x87, 0x07, 0xc0, 0x60, 0xb9, 0x8a, - 0x5b, 0xed, 0x90, 0xe0, 0x80, 0x66, 0xf7, 0xef, 0xce, 0x23, 0xe4, 0x85, 0x5b, 0x52, 0xee, 0x4f, - 0x8b, 0x93, 0x20, 0x8f, 0x46, 0x68, 0xf1, 0x30, 0x7f, 0x04, 0x8b, 0x6c, 0x76, 0x4a, 0x8c, 0x07, - 0x2a, 0x53, 0x98, 0x02, 0xb8, 0x79, 0x2a, 0xf2, 0x2a, 0x55, 0x71, 0xd7, 0x8f, 0x2e, 0x28, 0xee, - 0xde, 0x95, 0x5e, 0x4e, 0x17, 0xa6, 0x57, 0xc9, 0xa4, 0xc3, 0x03, 0xfc, 0x1e, 0x2c, 0x54, 0x2e, - 0x87, 0x61, 0xbb, 0x81, 0x3a, 0xfc, 0x0a, 0x96, 0x08, 0x54, 0x13, 0x25, 0xce, 0x1f, 0xe4, 0x68, - 0x70, 0xd7, 0x5f, 0x2b, 0x6d, 0x0d, 0x68, 0xfc, 0xbb, 0x96, 0x63, 0x6e, 0x73, 0xb0, 0x0c, 0xb4, - 0x28, 0x59, 0xd7, 0x48, 0x80, 0x51, 0xf7, 0x17, 0xfa, 0x78, 0x5a, 0x80, 0xa7, 0x71, 0x3d, 0x24, - 0xbf, 0xc8, 0x9a, 0xa2, 0x1e, 0x51, 0x09, 0x4f, 0x67, 0x06, 0x91, 0xe4, 0xae, 0xa6, 0x17, 0xf7, - 0x70, 0xc4, 0xdf, 0x78, 0x9c, 0x51, 0x65, 0x3f, 0x4b, 0xfa, 0x45, 0x5a, 0x84, 0xc1, 0x9c, 0xca, - 0xcc, 0x59, 0xd2, 0x64, 0xfb, 0xbe, 0x87, 0x5d, 0x6b, 0xbb, 0x00, 0xbf, 0x01, 0xd3, 0xbc, 0xe0, - 0x83, 0xb6, 0x52, 0x37, 0x8e, 0x65, 0xff, 0x1a, 0x4c, 0xd5, 0x3c, 0xd4, 0x0b, 0x2f, 0x7d, 0x4a, - 0xf7, 0xaa, 0x52, 0x22, 0x28, 0x5d, 0xf6, 0xbd, 0xab, 0x6c, 0x17, 0x0d, 0x30, 0x57, 0x47, 0xe7, - 0x1d, 0x4c, 0xb8, 0xa3, 0x2d, 0x4d, 0x55, 0x15, 0x8b, 0x23, 0x96, 0xaf, 0x95, 0x2c, 0xd0, 0x76, - 0xe1, 0x69, 0x81, 0xa6, 0x9e, 0x5a, 0xaf, 0x43, 0x89, 0xba, 0x45, 0x79, 0x44, 0xa4, 0x1e, 0x69, - 0x34, 0x9d, 0x7a, 0x14, 0xa1, 0x72, 0xb9, 0x61, 0xd4, 0x3c, 0xf6, 0x9a, 0xf8, 0xbd, 0x7c, 0xb9, - 0x25, 0x63, 0x86, 0xcb, 0x4d, 0x88, 0xe4, 0x1c, 0x7d, 0x3a, 0x68, 0x34, 0x0e, 0x31, 0xd9, 0x1b, - 0x96, 0xf1, 0x50, 0xca, 0xd1, 0xf2, 0x70, 0x3a, 0x47, 0xab, 0x52, 0xf9, 0x20, 0x72, 0x49, 0x8d, - 0xa0, 0x80, 0xd4, 0x43, 0xe9, 0x20, 0xea, 0xa2, 0xf4, 0x41, 0x4c, 0x6b, 0x48, 0xd0, 0x3e, 0xab, - 0xd4, 0xde, 0x70, 0x3d, 0xef, 0xff, 0x70, 0x9c, 0x7b, 0xb9, 0x7f, 0x2b, 0x8a, 0xf7, 0xe3, 0x08, - 0xcc, 0xef, 0xb7, 0xc3, 0x1e, 0xd5, 0x38, 0xad, 0x54, 0xea, 0x28, 0xa4, 0xe4, 0xde, 0xed, 0xf5, - 0x76, 0x92, 0x51, 0x3a, 0x24, 0xc8, 0x3d, 0x2d, 0xe1, 0x6f, 0xb7, 0x07, 0x66, 0x4b, 0xc8, 0x6b, - 0xe0, 0x4e, 0xe2, 0xe7, 0x0e, 0xd3, 0x8e, 0xc6, 0x64, 0x2f, 0xab, 0xa9, 0x71, 0xee, 0xa3, 0x0e, - 0xee, 0xbc, 0x09, 0x09, 0x3a, 0xef, 0xb4, 0x43, 0xfa, 0x3a, 0x25, 0xdf, 0xf3, 0x70, 0x83, 0x44, - 0xe0, 0x4a, 0x8d, 0xcc, 0xc2, 0xc4, 0x31, 0x64, 0x3a, 0xa7, 0x95, 0xca, 0x3e, 0x22, 0xa8, 0x82, - 0x1a, 0x57, 0x98, 0xb0, 0xd3, 0xfe, 0x05, 0x98, 0x3c, 0x0e, 0x5f, 0x77, 0xda, 0x03, 0x0c, 0x97, - 0x98, 0x4a, 0xfc, 0x9b, 0xe8, 0x3a, 0x28, 0x83, 0xd2, 0xdb, 0x2c, 0x55, 0x31, 0xad, 0xdf, 0xe2, - 0x19, 0xc5, 0x95, 0xee, 0x3a, 0x53, 0x8f, 0x24, 0x62, 0x58, 0xac, 0xba, 0x59, 0xca, 0xbd, 0x1e, - 0x81, 0x99, 0xe8, 0xa6, 0xc0, 0xa8, 0x89, 0x03, 0xe9, 0x04, 0x48, 0xa3, 0xe9, 0x13, 0xa0, 0x08, - 0xe3, 0x6e, 0x4b, 0x19, 0xcc, 0x1d, 0x62, 0x52, 0x23, 0x7e, 0x80, 0x6b, 0xe8, 0x02, 0xd7, 0x6b, - 0xf2, 0x71, 0x12, 0xa3, 0x86, 0xe3, 0x24, 0x0b, 0x63, 0x67, 0x75, 0x30, 0x7f, 0x88, 0x09, 0x4d, - 0xfd, 0x3f, 0xa0, 0x36, 0x39, 0xf6, 0x2e, 0x7c, 0xa9, 0xc5, 0xa1, 0x49, 0xd2, 0x2d, 0x8e, 0x94, - 0x42, 0xec, 0xf5, 0x6b, 0x30, 0xc9, 0x70, 0xa5, 0x41, 0xa0, 0x52, 0x53, 0xd3, 0x11, 0x43, 0xb1, - 0x9b, 0x08, 0x62, 0xeb, 0x3f, 0x01, 0x28, 0x39, 0x3e, 0x6a, 0x87, 0xc4, 0x0f, 0x86, 0xd0, 0x35, - 0x45, 0x8d, 0x85, 0xe9, 0x5b, 0xd3, 0xa4, 0x13, 0xbb, 0x3f, 0x07, 0x2b, 0x87, 0x98, 0xd4, 0xdb, - 0xac, 0xcc, 0xa9, 0x0d, 0x43, 0x82, 0xbb, 0x2c, 0x77, 0x49, 0x11, 0xd2, 0xc2, 0x74, 0x04, 0x93, - 0x8e, 0x44, 0xa9, 0x80, 0x04, 0xc3, 0xd7, 0xcd, 0x66, 0x7c, 0x23, 0xab, 0xff, 0xa0, 0x57, 0xe7, - 0x22, 0x91, 0x08, 0xb2, 0x35, 0x24, 0x56, 0x99, 0x25, 0xc1, 0xf0, 0x14, 0x05, 0x57, 0x31, 0x8e, - 0x3f, 0x4c, 0x5b, 0x09, 0xa9, 0x68, 0x90, 0xe4, 0x2a, 0x71, 0xef, 0x1e, 0x58, 0xe2, 0xe7, 0x6c, - 0x9f, 0x59, 0xb0, 0xe3, 0xfc, 0x89, 0x66, 0x6e, 0xd0, 0x11, 0xb5, 0xea, 0x18, 0xaa, 0x12, 0xe0, - 0x2d, 0x44, 0xc9, 0x40, 0x0a, 0xf6, 0x58, 0xf3, 0xa0, 0x2b, 0x24, 0x91, 0x9e, 0x8c, 0xd4, 0xe3, - 0x61, 0xfe, 0x00, 0x16, 0x0e, 0x30, 0x2d, 0x44, 0x98, 0xb0, 0x82, 0x5a, 0x38, 0x4c, 0x85, 0xd1, - 0x15, 0xc4, 0x0d, 0xa2, 0xea, 0x31, 0xa1, 0x94, 0x61, 0xce, 0xd9, 0xe1, 0x89, 0x0c, 0x4b, 0xbe, - 0x77, 0xd1, 0x6e, 0xc1, 0x47, 0x9a, 0x89, 0x26, 0x4f, 0x3c, 0x3f, 0x1e, 0xa5, 0x26, 0x03, 0x6a, - 0xba, 0x91, 0x3d, 0xfa, 0x7f, 0x22, 0x9c, 0x31, 0x9a, 0xe4, 0x11, 0xa0, 0x1a, 0x1a, 0xda, 0x63, - 0xfc, 0x7b, 0x84, 0x33, 0x4e, 0xbf, 0xdc, 0xb5, 0xf6, 0x9e, 0xff, 0xf4, 0xcf, 0xa9, 0xc2, 0xbf, - 0x3e, 0x6c, 0x14, 0x7e, 0xfc, 0xb0, 0x51, 0xf8, 0xf7, 0x87, 0x8d, 0xc2, 0x5f, 0x3f, 0x6e, 0x58, - 0x7f, 0xff, 0xb8, 0x61, 0xfd, 0xf8, 0x71, 0xc3, 0xfa, 0xe9, 0xe3, 0x86, 0x05, 0x16, 0xfc, 0xa0, - 0xc5, 0xae, 0xac, 0x9d, 0xab, 0x01, 0xfb, 0x97, 0xd4, 0xf3, 0x09, 0xf6, 0xe3, 0xf3, 0xff, 0x05, - 0x00, 0x00, 0xff, 0xff, 0x1e, 0x86, 0x89, 0x5f, 0x2f, 0x2b, 0x00, 0x00, + 0x15, 0x80, 0x41, 0x9b, 0xd6, 0x63, 0x14, 0xbd, 0x46, 0x92, 0x05, 0xc1, 0xb2, 0x64, 0xc3, 0xb2, + 0xad, 0x24, 0xad, 0x6a, 0x3b, 0x6e, 0xdc, 0x38, 0x69, 0x2a, 0x8b, 0xb2, 0x1e, 0xa1, 0x74, 0xc2, + 0x92, 0x74, 0xe2, 0xf6, 0xb4, 0x47, 0x67, 0x44, 0x8e, 0x28, 0x56, 0x24, 0xc0, 0x02, 0x43, 0xca, + 0xfc, 0x17, 0x3d, 0x5d, 0x75, 0xd3, 0x7d, 0x7f, 0x4a, 0x97, 0x59, 0x66, 0xd9, 0x63, 0xff, 0x86, + 0x2e, 0xba, 0x4a, 0xcf, 0x0c, 0x80, 0x79, 0x61, 0x00, 0x32, 0x2b, 0x51, 0x73, 0x5f, 0x98, 0x19, + 0xcc, 0x9d, 0xef, 0x5e, 0x12, 0x7c, 0x44, 0xda, 0x57, 0x83, 0xde, 0xf9, 0x4e, 0x2f, 0xf0, 0x89, + 0x0f, 0x27, 0xa2, 0xff, 0x9c, 0xc5, 0x86, 0xdf, 0x0b, 0xfc, 0x06, 0x0e, 0x43, 0x3f, 0x88, 0x44, + 0xce, 0xec, 0xd5, 0x20, 0xe8, 0x35, 0x12, 0x4d, 0x67, 0xba, 0xdb, 0xeb, 0xc5, 0x1f, 0x97, 0x02, + 0x74, 0x41, 0xce, 0x42, 0x1c, 0x0c, 0x70, 0xc0, 0xe5, 0x4b, 0xcd, 0x76, 0x88, 0x5a, 0xad, 0x00, + 0xb7, 0x10, 0xc1, 0xcd, 0x78, 0x70, 0xb9, 0xe5, 0xb7, 0x7c, 0xf6, 0xf1, 0x57, 0xf4, 0x53, 0x3c, + 0x3a, 0x1f, 0xf4, 0x43, 0xc2, 0x3e, 0x46, 0x03, 0xee, 0x7f, 0x21, 0x58, 0xde, 0x43, 0xa4, 0x71, + 0x59, 0xf2, 0xbb, 0x5d, 0xe4, 0x35, 0xc3, 0x2a, 0xfe, 0x6b, 0x1f, 0x87, 0x04, 0xee, 0x82, 0xa9, + 0x20, 0xfa, 0x18, 0xda, 0x85, 0x7b, 0x37, 0xb7, 0x67, 0x9e, 0x6d, 0xed, 0xc4, 0xcf, 0x6f, 0xd2, + 0xdf, 0x89, 0xff, 0x56, 0xb9, 0x15, 0xdc, 0x04, 0x33, 0xf1, 0xe7, 0xb3, 0x76, 0x33, 0xb4, 0x6f, + 0xdc, 0xbb, 0xb9, 0x5d, 0xac, 0x82, 0x78, 0xe8, 0xb8, 0x19, 0x3a, 0xff, 0x5b, 0x04, 0x93, 0x49, + 0xb8, 0xc7, 0xe0, 0xe6, 0x21, 0x26, 0x76, 0xe1, 0x5e, 0x61, 0x7b, 0xe6, 0xd9, 0xd2, 0x4e, 0xb2, + 0x00, 0x87, 0x98, 0xc4, 0x1a, 0x47, 0x56, 0x95, 0x6a, 0xc0, 0x4f, 0x40, 0xb1, 0xd6, 0x40, 0x9e, + 0x7d, 0x83, 0x69, 0x2e, 0x73, 0x4d, 0x3a, 0x28, 0x54, 0x99, 0x0e, 0xfc, 0x1c, 0x4c, 0x55, 0x02, + 0x7c, 0x1d, 0xb4, 0x09, 0xb6, 0x6f, 0x32, 0x7d, 0x9b, 0xeb, 0x27, 0x02, 0x61, 0xc3, 0x75, 0xe1, + 0x13, 0x30, 0x41, 0xa7, 0xd7, 0x26, 0x76, 0x91, 0x59, 0xdd, 0xe6, 0x56, 0xd1, 0xb0, 0xb0, 0x89, + 0xf5, 0xa8, 0xc5, 0x71, 0xb7, 0xe7, 0x07, 0xc4, 0xbe, 0xa5, 0x59, 0x44, 0xc3, 0x92, 0x45, 0x34, + 0x00, 0x3f, 0x03, 0x93, 0xa5, 0x0e, 0x46, 0x5e, 0xbf, 0x67, 0x4f, 0x30, 0x93, 0x55, 0x11, 0x24, + 0x1a, 0x17, 0x36, 0x89, 0x26, 0x9d, 0x10, 0x5b, 0x7c, 0xba, 0x54, 0x93, 0xda, 0x84, 0x12, 0x81, + 0x34, 0xa1, 0x64, 0x08, 0xbe, 0x06, 0xb3, 0xec, 0x73, 0xd5, 0xef, 0x74, 0xce, 0x51, 0xe3, 0xca, + 0x9e, 0x62, 0xc6, 0x77, 0x55, 0xe3, 0x44, 0x2a, 0x3c, 0xa8, 0x56, 0x34, 0x3c, 0x5d, 0xd7, 0x13, + 0xbf, 0x71, 0x65, 0x4f, 0x6b, 0xe1, 0x13, 0x81, 0x14, 0x3e, 0x19, 0x82, 0xbf, 0x03, 0x33, 0x55, + 0x1c, 0xfa, 0x9d, 0x01, 0x66, 0xa6, 0x80, 0x99, 0xde, 0xe1, 0xa6, 0x92, 0x4c, 0x58, 0xcb, 0x16, + 0x70, 0x0b, 0xdc, 0x38, 0x2c, 0xd9, 0x33, 0xcc, 0x0e, 0x8a, 0x97, 0xa3, 0x24, 0xd4, 0x6f, 0x1c, + 0x96, 0x68, 0x98, 0x7d, 0xdc, 0xc1, 0x04, 0x57, 0x91, 0xd7, 0xc2, 0xf6, 0x47, 0x5a, 0x18, 0x49, + 0x26, 0x85, 0x91, 0x46, 0xe9, 0x2e, 0x56, 0xd1, 0x35, 0x5d, 0xdc, 0x59, 0x6d, 0x17, 0xa3, 0x61, + 0x69, 0x17, 0xa3, 0x01, 0x36, 0x33, 0x74, 0xcd, 0xf7, 0x64, 0x4e, 0x9f, 0x99, 0x90, 0xc9, 0x33, + 0x13, 0xa3, 0x71, 0xc8, 0x4a, 0x9f, 0xd8, 0xf3, 0xe9, 0x90, 0x95, 0xbe, 0x16, 0xb2, 0xd2, 0x57, + 0x42, 0x52, 0xb3, 0x85, 0x8c, 0x90, 0x8a, 0xad, 0x6c, 0x01, 0xbf, 0x00, 0xd3, 0x55, 0x74, 0x1d, + 0xcd, 0xdb, 0x5e, 0x64, 0xe6, 0x6b, 0xb2, 0x79, 0xbc, 0x22, 0xdc, 0x58, 0x68, 0xc3, 0x23, 0x30, + 0x97, 0x78, 0x8a, 0xed, 0x21, 0xb3, 0xdf, 0x48, 0x85, 0xd7, 0x9d, 0x68, 0x76, 0xf4, 0xf5, 0xaf, + 0xa2, 0x6b, 0x76, 0x92, 0x97, 0xb4, 0xd7, 0x3f, 0x1e, 0x97, 0x5e, 0xff, 0x78, 0x24, 0x0e, 0x2f, + 0xef, 0xf1, 0x72, 0x3a, 0xbc, 0x71, 0x9b, 0x35, 0x3b, 0xb8, 0x07, 0x3e, 0x4a, 0x1e, 0x88, 0x3d, + 0xc3, 0x0a, 0xf3, 0xb3, 0x9e, 0x9a, 0x86, 0xfa, 0x20, 0x8a, 0x0d, 0xfc, 0x0d, 0x98, 0x29, 0x89, + 0xd4, 0x6d, 0xdf, 0x8e, 0x13, 0x92, 0x9c, 0xce, 0xa5, 0x1d, 0x90, 0x54, 0x61, 0x19, 0xcc, 0x57, + 0x70, 0x18, 0xb6, 0xbb, 0xed, 0x90, 0xb4, 0x1b, 0xec, 0x4c, 0xac, 0x32, 0xeb, 0x4d, 0x91, 0x9e, + 0x54, 0xb9, 0x70, 0xa4, 0x5b, 0xc2, 0xef, 0xc1, 0x92, 0x34, 0xc4, 0x4f, 0xb8, 0xcd, 0x1c, 0x3e, + 0x30, 0x39, 0x4c, 0x9f, 0x73, 0x93, 0x07, 0xba, 0xda, 0xa5, 0x4b, 0xdc, 0xb8, 0xaa, 0xbf, 0xf3, + 0x6a, 0x04, 0x91, 0x7e, 0x68, 0xaf, 0x69, 0xab, 0xad, 0x8a, 0xa5, 0xd5, 0x56, 0x05, 0x74, 0xb5, + 0xeb, 0xef, 0xbc, 0x23, 0x8c, 0x02, 0xb2, 0x87, 0x11, 0xb1, 0x1d, 0x6d, 0xb5, 0x65, 0xa1, 0xb4, + 0xda, 0xf2, 0x30, 0x9d, 0x26, 0xf3, 0x5a, 0xc3, 0x0d, 0xdf, 0x6b, 0xa2, 0x60, 0x48, 0x27, 0x1f, + 0xda, 0xf7, 0xb5, 0x69, 0x1a, 0x74, 0xa4, 0x69, 0x1a, 0xa4, 0xf1, 0x4b, 0x25, 0xef, 0xa4, 0x9b, + 0x7e, 0xa9, 0x24, 0xb1, 0xfa, 0x52, 0xc9, 0xdb, 0x5a, 0x07, 0xf0, 0xa0, 0x83, 0xc2, 0x4b, 0xba, + 0x7a, 0x75, 0xff, 0x3b, 0x1c, 0x84, 0x6d, 0xdf, 0xb3, 0x1f, 0x30, 0x6f, 0x2e, 0xf7, 0x96, 0x56, + 0x11, 0x1e, 0x0d, 0xf6, 0xb0, 0x0d, 0xd6, 0x2a, 0x01, 0xee, 0xa1, 0x00, 0x1b, 0x9c, 0x6f, 0x31, + 0xe7, 0x1f, 0xcb, 0xb7, 0x9a, 0x59, 0x53, 0xc4, 0xc8, 0xf6, 0x06, 0x7f, 0x09, 0x6e, 0x1d, 0x74, + 0xfa, 0xe1, 0xa5, 0xfd, 0x90, 0xb9, 0x5d, 0x91, 0x9e, 0xb9, 0x1f, 0x5e, 0x0a, 0x17, 0x91, 0x16, + 0x5d, 0xb9, 0xbd, 0xfe, 0xc5, 0x05, 0x0e, 0x78, 0xfe, 0x7b, 0xa4, 0xad, 0x9c, 0x2a, 0x96, 0x56, + 0x4e, 0x15, 0xc0, 0xdf, 0x83, 0xc5, 0x43, 0x4c, 0x8e, 0x30, 0xea, 0x90, 0xcb, 0x03, 0x8c, 0x9b, + 0xec, 0x0d, 0x7e, 0xcc, 0x9c, 0xdd, 0x97, 0x59, 0x40, 0xd5, 0x10, 0xfe, 0xd2, 0xd6, 0x74, 0x33, + 0xf6, 0x02, 0x1f, 0x35, 0x1b, 0x28, 0x24, 0xe2, 0x0d, 0xde, 0xd6, 0x36, 0x23, 0xad, 0x22, 0x6d, + 0x46, 0x5a, 0x08, 0x5f, 0x82, 0x5b, 0xaf, 0xbb, 0x3d, 0x32, 0xb4, 0x7f, 0x2a, 0xc4, 0x4f, 0x67, + 0x62, 0x22, 0xa6, 0x22, 0x2d, 0x17, 0xfb, 0x7f, 0xef, 0x16, 0xb8, 0xd9, 0xe8, 0x36, 0xbf, 0x29, + 0x4e, 0xdd, 0x59, 0xb8, 0xef, 0xfe, 0x7d, 0x19, 0xac, 0x68, 0x1c, 0x15, 0xf6, 0x7c, 0x2f, 0xc4, + 0x70, 0x1f, 0x4c, 0x07, 0xf1, 0xe7, 0x84, 0xbc, 0x1e, 0x65, 0x90, 0x57, 0xa4, 0xb5, 0x93, 0x7c, + 0xa8, 0x0a, 0xc3, 0x91, 0xf0, 0x05, 0x9f, 0x80, 0x65, 0x12, 0x20, 0x2f, 0xa4, 0x30, 0x72, 0xd6, + 0x41, 0x43, 0x1c, 0x9c, 0x75, 0x7c, 0xd4, 0x64, 0x9c, 0x54, 0xac, 0x42, 0x2e, 0x3b, 0xa1, 0xa2, + 0x13, 0x1f, 0x35, 0xe1, 0x2e, 0x98, 0xbf, 0x64, 0x6b, 0x7c, 0x76, 0x91, 0x6c, 0x51, 0x51, 0x4b, + 0xdd, 0xda, 0xfe, 0xcc, 0x5d, 0x2a, 0xff, 0x3b, 0xff, 0x84, 0x60, 0x8a, 0xcf, 0x73, 0x5b, 0x26, + 0xbe, 0x65, 0x95, 0xf8, 0x22, 0x95, 0x04, 0xf9, 0x3e, 0x55, 0x90, 0x6f, 0x45, 0x43, 0x3e, 0xae, + 0x1b, 0x31, 0xdf, 0x8b, 0x14, 0xf3, 0xad, 0x19, 0x98, 0x8f, 0x1b, 0x09, 0xe8, 0x7b, 0xaa, 0x41, + 0xdf, 0x6a, 0x0a, 0xfa, 0xb8, 0x51, 0x42, 0x7d, 0x4f, 0x35, 0xea, 0x5b, 0x4d, 0x51, 0x9f, 0x30, + 0x89, 0xb1, 0xef, 0xb9, 0x8e, 0x7d, 0x76, 0x1a, 0xfb, 0xb8, 0x11, 0xe7, 0xbe, 0x17, 0x29, 0xee, + 0x5b, 0x33, 0x70, 0x9f, 0x98, 0x14, 0x3f, 0x58, 0x07, 0x66, 0xf0, 0xdb, 0xc8, 0x02, 0x3f, 0xee, + 0x42, 0x23, 0xbf, 0x17, 0x29, 0xf2, 0x5b, 0x33, 0x90, 0x9f, 0x78, 0x00, 0x8e, 0x7e, 0xbb, 0x26, + 0xf4, 0x5b, 0x37, 0xa3, 0x1f, 0x37, 0x57, 0xd8, 0xef, 0xa1, 0xc4, 0x7e, 0x4b, 0x0a, 0xfb, 0x71, + 0x7d, 0x0a, 0x7f, 0xbb, 0x26, 0xf8, 0x5b, 0x37, 0xc3, 0x9f, 0x08, 0x24, 0x33, 0xc1, 0x53, 0x8d, + 0xfe, 0x56, 0x53, 0xf4, 0x27, 0x76, 0x33, 0xc6, 0xbf, 0x5d, 0x13, 0xfe, 0xad, 0x9b, 0xf1, 0x4f, + 0x9a, 0x9d, 0xc4, 0x7f, 0x4f, 0x35, 0xfe, 0x5b, 0x4d, 0xf1, 0x9f, 0x12, 0x94, 0xf2, 0xdb, 0xae, + 0x09, 0x00, 0xd7, 0xcd, 0x00, 0x98, 0x0e, 0x4a, 0x3d, 0xbc, 0x4c, 0x13, 0xa0, 0x63, 0x22, 0x40, + 0x6e, 0x2d, 0x21, 0xe0, 0x71, 0x06, 0x02, 0x6e, 0x66, 0x22, 0x20, 0xf7, 0xa2, 0x33, 0xe0, 0x73, + 0x9d, 0x01, 0xed, 0x34, 0x03, 0x8a, 0xb3, 0x90, 0x40, 0xe0, 0x71, 0x06, 0x04, 0x6e, 0x66, 0x42, + 0xa0, 0xf2, 0x00, 0xf2, 0x8e, 0x97, 0x8c, 0x14, 0x78, 0x37, 0x83, 0x02, 0xb9, 0x1b, 0x15, 0x03, + 0xbf, 0x30, 0x61, 0xe0, 0x8a, 0x86, 0x81, 0x62, 0x1f, 0x64, 0x60, 0x38, 0xc9, 0xe2, 0xc0, 0x7b, + 0xd9, 0x1c, 0xc8, 0x3d, 0xa5, 0x40, 0xf0, 0x6d, 0x1e, 0x08, 0x6e, 0xe5, 0x83, 0x20, 0xf7, 0x6a, + 0x24, 0xc1, 0xe3, 0x0c, 0x12, 0xdc, 0xcc, 0x24, 0x41, 0xb1, 0xe4, 0x1a, 0x0a, 0x96, 0x8c, 0x28, + 0x78, 0x37, 0x03, 0x05, 0xc5, 0x92, 0x2b, 0x2c, 0xf8, 0x36, 0x8f, 0x05, 0xb7, 0xf2, 0x59, 0x50, + 0xcc, 0xd4, 0x04, 0x83, 0xc7, 0x19, 0x30, 0xb8, 0x99, 0x09, 0x83, 0xca, 0xcb, 0x25, 0x6f, 0xee, + 0x9b, 0x1c, 0x1a, 0x7c, 0x90, 0x4b, 0x83, 0xdc, 0xa5, 0x09, 0x07, 0xff, 0x32, 0x1a, 0x07, 0x3f, + 0x19, 0x07, 0x07, 0x79, 0x90, 0x1c, 0x1e, 0xdc, 0x51, 0x79, 0xf0, 0xb6, 0xce, 0x83, 0xdc, 0x47, + 0x0c, 0x84, 0xc7, 0x19, 0x40, 0xb8, 0x99, 0x09, 0x84, 0x62, 0xf5, 0x34, 0x22, 0xac, 0x66, 0x13, + 0xa1, 0x9b, 0x47, 0x84, 0xdc, 0xa1, 0x01, 0x09, 0xdf, 0xe4, 0x20, 0xe1, 0x83, 0x5c, 0x24, 0x14, + 0x3b, 0x62, 0x60, 0xc2, 0x2f, 0x35, 0x26, 0x74, 0xf3, 0x98, 0x50, 0x2c, 0x99, 0x01, 0x0a, 0x7b, + 0x60, 0x21, 0xba, 0x76, 0xd1, 0x05, 0x39, 0xc5, 0x61, 0x88, 0x5a, 0x18, 0xee, 0x80, 0x62, 0x37, + 0x6c, 0x25, 0x24, 0xe8, 0xec, 0xa8, 0x0d, 0x40, 0x49, 0xb3, 0xca, 0xf4, 0xe0, 0x2f, 0x00, 0xec, + 0xa0, 0x90, 0x9c, 0xf9, 0xe7, 0x4c, 0xa9, 0x79, 0x46, 0xda, 0x5d, 0xcc, 0x6e, 0xb4, 0x62, 0x75, + 0x81, 0x4a, 0xbe, 0x8d, 0x05, 0xf5, 0x76, 0x17, 0xbb, 0x35, 0xb0, 0x96, 0x49, 0xae, 0x70, 0x15, + 0x4c, 0x92, 0x08, 0x20, 0x19, 0xa5, 0x15, 0xab, 0x13, 0x84, 0xc1, 0x23, 0xbc, 0x0b, 0x40, 0x13, + 0x77, 0xd0, 0x30, 0xf2, 0x7d, 0x83, 0xc9, 0xa6, 0xd9, 0x08, 0x73, 0xfa, 0x6b, 0xe0, 0x64, 0x4f, + 0x3d, 0xd3, 0xeb, 0xb3, 0x9f, 0x3e, 0x05, 0xc5, 0x7a, 0xfb, 0x6a, 0x00, 0x9f, 0x83, 0x5b, 0xe5, + 0x01, 0x7d, 0x09, 0x4c, 0x7d, 0x40, 0xc7, 0x88, 0x8a, 0xae, 0x05, 0x5f, 0x80, 0x89, 0xf2, 0x80, + 0x65, 0x64, 0x63, 0x53, 0xd0, 0x31, 0x73, 0xa3, 0x6b, 0xc1, 0x12, 0x00, 0xe5, 0x01, 0xc7, 0xc0, + 0xcc, 0x0e, 0xa1, 0x93, 0xcd, 0x91, 0xae, 0x05, 0xdf, 0x82, 0xc5, 0xf2, 0x40, 0xcf, 0xc8, 0xa3, + 0xca, 0x79, 0x67, 0x64, 0x9e, 0x77, 0x2d, 0xd8, 0x04, 0x2b, 0xe5, 0xef, 0x4c, 0x59, 0x79, 0x9c, + 0xda, 0xde, 0x19, 0x2b, 0xef, 0xbb, 0x16, 0xfc, 0x16, 0xcc, 0x95, 0x07, 0x4a, 0x92, 0xcd, 0x2d, + 0xcf, 0x9d, 0xfc, 0x8c, 0xed, 0x5a, 0xf0, 0x0d, 0x58, 0x28, 0x0f, 0xb4, 0xe4, 0x3f, 0xa2, 0x73, + 0xe0, 0x8c, 0xba, 0x4f, 0xe2, 0xd5, 0x18, 0x98, 0x32, 0xf7, 0x38, 0x2d, 0x00, 0x67, 0xac, 0xbb, + 0xc1, 0xb5, 0xe0, 0x6f, 0xc1, 0x54, 0x79, 0x10, 0x43, 0x7e, 0x46, 0xf3, 0xd7, 0xc9, 0xaa, 0x0f, + 0x12, 0xf3, 0x18, 0xf8, 0x33, 0x3a, 0xc1, 0x4e, 0x56, 0xad, 0xe0, 0x5a, 0x70, 0x17, 0x4c, 0x97, + 0x07, 0x09, 0xfa, 0x67, 0xb5, 0x85, 0x9d, 0xcc, 0xc2, 0x21, 0x79, 0xa5, 0x79, 0x2e, 0xcd, 0xec, + 0x11, 0x3b, 0xd9, 0x55, 0x84, 0x6b, 0xc1, 0x2a, 0x98, 0x8f, 0x9d, 0xf0, 0x57, 0x2e, 0xbf, 0x61, + 0xec, 0x8c, 0x28, 0x2b, 0x92, 0x07, 0xe3, 0xc5, 0x41, 0x66, 0xf7, 0xd8, 0xc9, 0xae, 0x2e, 0x5c, + 0x0b, 0x9e, 0x80, 0xd9, 0xf2, 0x40, 0x2e, 0x11, 0xf2, 0x5a, 0xc9, 0x4e, 0x6e, 0xb1, 0xe1, 0x5a, + 0xf0, 0x29, 0x28, 0x96, 0x07, 0x87, 0x25, 0x68, 0xe8, 0x2b, 0x3b, 0xa6, 0x7a, 0x23, 0x79, 0x00, + 0x19, 0x24, 0xf3, 0x9a, 0xcc, 0x4e, 0x6e, 0x11, 0xe2, 0x5a, 0x70, 0x00, 0xee, 0xb0, 0xfc, 0x93, + 0x71, 0x09, 0x8f, 0xdf, 0xdc, 0x71, 0x7e, 0xc6, 0xc5, 0xef, 0x5a, 0x10, 0x81, 0xe5, 0xf2, 0xc0, + 0x10, 0x70, 0x8c, 0x56, 0x95, 0x33, 0x0e, 0xc0, 0xb8, 0x16, 0x7c, 0x09, 0x26, 0x69, 0x08, 0xca, + 0x06, 0xe6, 0x66, 0x92, 0x93, 0xc1, 0x14, 0x49, 0x02, 0xd1, 0xa8, 0x60, 0x44, 0x67, 0xc9, 0x19, + 0x05, 0x1a, 0xae, 0x05, 0xbf, 0x4c, 0xaa, 0x3c, 0x98, 0xd1, 0xdd, 0x77, 0xb2, 0xea, 0x3e, 0xd7, + 0x82, 0xdf, 0x28, 0xf5, 0x1e, 0xcc, 0x6b, 0xf4, 0x3b, 0xb9, 0x65, 0x20, 0x7f, 0x10, 0x5a, 0x8e, + 0x65, 0xf4, 0xfc, 0x9d, 0xac, 0x5a, 0x50, 0x7d, 0x10, 0xea, 0x21, 0xaf, 0xfd, 0xef, 0xe4, 0x96, + 0x86, 0xae, 0x05, 0xf7, 0xa5, 0x6a, 0x10, 0x66, 0x7f, 0x13, 0xe0, 0xe4, 0x94, 0x88, 0xae, 0x05, + 0x6b, 0x7a, 0x5d, 0x08, 0x47, 0x7c, 0x29, 0xe0, 0x8c, 0xaa, 0x18, 0x5d, 0x0b, 0x7e, 0xcd, 0x2b, + 0x44, 0x98, 0xf5, 0xfd, 0x80, 0x93, 0x59, 0x34, 0xf2, 0x87, 0x92, 0x4f, 0xea, 0x88, 0xaf, 0x0a, + 0x9c, 0x51, 0x55, 0xa4, 0x6b, 0xc1, 0x53, 0xb5, 0x6a, 0x84, 0xb9, 0xdf, 0x1a, 0x38, 0xf9, 0xd5, + 0x24, 0x77, 0x77, 0x88, 0x49, 0x19, 0x0f, 0xeb, 0xf5, 0x13, 0xd5, 0x1d, 0x1f, 0x36, 0xba, 0x93, + 0xa4, 0xdc, 0xdd, 0x01, 0x58, 0x64, 0x85, 0x48, 0x97, 0x9e, 0xff, 0x57, 0x5e, 0xb3, 0x76, 0x8d, + 0x7a, 0xea, 0x1b, 0x56, 0x7a, 0x55, 0x33, 0xbe, 0x61, 0x6c, 0x5c, 0x7b, 0xc3, 0xd8, 0x35, 0x19, + 0xf6, 0xbb, 0xea, 0x1b, 0x96, 0x8c, 0x1a, 0xdf, 0x30, 0x21, 0xe4, 0xbe, 0xce, 0x00, 0x7c, 0xe3, + 0x85, 0xe8, 0x02, 0xef, 0xe3, 0x90, 0x04, 0xfe, 0x30, 0xda, 0x0a, 0x91, 0x67, 0xd2, 0xc2, 0x74, + 0x9e, 0x31, 0xe9, 0xf0, 0x00, 0x18, 0x2c, 0x57, 0x71, 0xab, 0x1d, 0x12, 0x1c, 0xd0, 0xec, 0x1e, + 0x23, 0x6e, 0x00, 0xb7, 0xa4, 0xdc, 0x9f, 0x16, 0x27, 0x41, 0x1e, 0x8e, 0xd0, 0xe2, 0x61, 0xfe, + 0x04, 0x16, 0xd9, 0xec, 0x94, 0x18, 0xf7, 0x55, 0xa6, 0x30, 0x05, 0x70, 0xf3, 0x54, 0xe4, 0x55, + 0xaa, 0xe2, 0xae, 0x1f, 0x5d, 0x50, 0xdc, 0xbd, 0x2b, 0x3d, 0x9c, 0x2e, 0x4c, 0xaf, 0x92, 0x49, + 0x87, 0x07, 0xf8, 0x03, 0x58, 0xa8, 0x5c, 0x0e, 0xc3, 0x76, 0x03, 0x75, 0xf8, 0x15, 0x2c, 0x11, + 0xa8, 0x26, 0x4a, 0x9c, 0xdf, 0xcf, 0xd1, 0xe0, 0xae, 0xbf, 0x52, 0x9a, 0x20, 0xd0, 0xf8, 0x2d, + 0x98, 0x63, 0x6e, 0x8a, 0xb0, 0x0c, 0xb4, 0x28, 0x59, 0xd7, 0x48, 0x80, 0x51, 0xf7, 0x67, 0xfa, + 0x78, 0x52, 0x80, 0xa7, 0x71, 0xf5, 0x24, 0x3f, 0xc8, 0x9a, 0xa2, 0x1e, 0x51, 0x09, 0x4f, 0x67, + 0x06, 0x91, 0xe4, 0xae, 0xa6, 0xb7, 0x02, 0xe0, 0x88, 0x6f, 0x84, 0x9c, 0x51, 0x4d, 0x02, 0x96, + 0xf4, 0x8b, 0xb4, 0x64, 0x83, 0x39, 0x75, 0x9c, 0xb3, 0xa4, 0xc9, 0xf6, 0x7d, 0x0f, 0xbb, 0xd6, + 0x76, 0x01, 0x7e, 0x0d, 0xa6, 0x79, 0x79, 0x08, 0x6d, 0xa5, 0xca, 0x1c, 0xcb, 0xfe, 0x15, 0x98, + 0xaa, 0x79, 0xa8, 0x17, 0x5e, 0xfa, 0x94, 0xee, 0x55, 0xa5, 0x44, 0x50, 0xba, 0xec, 0x7b, 0x57, + 0xd9, 0x2e, 0x1a, 0x60, 0xae, 0x8e, 0xce, 0x3b, 0x98, 0x70, 0x47, 0x5b, 0x9a, 0xaa, 0x2a, 0x16, + 0x47, 0x2c, 0x5f, 0x2b, 0x59, 0xa0, 0xed, 0xc2, 0x93, 0x02, 0x4d, 0x3d, 0xb5, 0x5e, 0x87, 0x12, + 0x75, 0x8b, 0xf2, 0x88, 0x48, 0x3d, 0xd2, 0x68, 0x3a, 0xf5, 0x28, 0x42, 0xe5, 0x72, 0xc3, 0xa8, + 0x79, 0xec, 0x35, 0xf1, 0x3b, 0xf9, 0x72, 0x4b, 0xc6, 0x0c, 0x97, 0x9b, 0x10, 0xc9, 0x39, 0xfa, + 0x74, 0xd0, 0x68, 0x1c, 0x62, 0xb2, 0x37, 0x2c, 0xe3, 0xa1, 0x94, 0xa3, 0xe5, 0xe1, 0x74, 0x8e, + 0x56, 0xa5, 0xf2, 0x41, 0xe4, 0x92, 0x1a, 0x41, 0x01, 0xa9, 0x87, 0xd2, 0x41, 0xd4, 0x45, 0xe9, + 0x83, 0x98, 0xd6, 0x90, 0xa0, 0x7d, 0x56, 0xa9, 0xbd, 0xe1, 0x7a, 0xde, 0xaf, 0x76, 0x9c, 0xbb, + 0xb9, 0xdf, 0x2c, 0xc5, 0xfb, 0x71, 0x04, 0xe6, 0xf7, 0xdb, 0x61, 0x8f, 0x6a, 0x9c, 0x56, 0x2a, + 0x75, 0x14, 0x52, 0x72, 0xef, 0xf6, 0x7a, 0x3b, 0xc9, 0x28, 0x1d, 0x12, 0xe4, 0x9e, 0x96, 0xf0, + 0xa7, 0xdb, 0x03, 0xb3, 0x25, 0xe4, 0x35, 0x70, 0x27, 0xf1, 0x73, 0x9b, 0x69, 0x47, 0x63, 0xb2, + 0x97, 0xd5, 0xd4, 0x38, 0xf7, 0x51, 0x07, 0xb7, 0x5f, 0x87, 0x04, 0x9d, 0x77, 0xda, 0x21, 0x7d, + 0x9c, 0x92, 0xef, 0x79, 0xb8, 0x41, 0x22, 0x70, 0xa5, 0x46, 0x66, 0x61, 0xe2, 0x18, 0x32, 0x9d, + 0xd3, 0x4a, 0x65, 0x1f, 0x11, 0x54, 0x41, 0x8d, 0x2b, 0x4c, 0xd8, 0x69, 0xff, 0x1c, 0x4c, 0x1e, + 0x87, 0xaf, 0x3a, 0xed, 0x01, 0x86, 0x4b, 0x4c, 0x25, 0xfe, 0x4f, 0x74, 0x1d, 0x94, 0x41, 0xe9, + 0x69, 0x96, 0xaa, 0x98, 0xd6, 0x6f, 0xf1, 0x8c, 0xe2, 0x4a, 0x77, 0x9d, 0xa9, 0x47, 0x12, 0x31, + 0x2c, 0x56, 0xdd, 0x2c, 0xe5, 0x5e, 0x8f, 0xc0, 0x4c, 0x74, 0x53, 0x60, 0xd4, 0xc4, 0x81, 0x74, + 0x02, 0xa4, 0xd1, 0xf4, 0x09, 0x50, 0x84, 0x71, 0xb7, 0xa5, 0x0c, 0xe6, 0x0e, 0x31, 0xa9, 0x11, + 0x3f, 0xc0, 0x35, 0x74, 0x81, 0xeb, 0x35, 0xf9, 0x38, 0x89, 0x51, 0xc3, 0x71, 0x92, 0x85, 0xb1, + 0xb3, 0x3a, 0x98, 0x3f, 0xc4, 0x84, 0xa6, 0xfe, 0xef, 0x51, 0x9b, 0x1c, 0x7b, 0x17, 0xbe, 0xd4, + 0xe2, 0xd0, 0x24, 0xe9, 0x16, 0x47, 0x4a, 0x21, 0xf6, 0xfa, 0x15, 0x98, 0x64, 0xb8, 0xd2, 0x20, + 0x50, 0xa9, 0xa9, 0xe9, 0x88, 0xa1, 0xd8, 0x4d, 0x04, 0xb1, 0xf5, 0x9f, 0x01, 0x94, 0x1c, 0x1f, + 0xb5, 0x43, 0xe2, 0x07, 0x43, 0xe8, 0x9a, 0xa2, 0xc6, 0xc2, 0xf4, 0xad, 0x69, 0xd2, 0x89, 0xdd, + 0x9f, 0x83, 0x95, 0x43, 0x4c, 0xea, 0x6d, 0x56, 0xe6, 0xd4, 0x86, 0x21, 0xc1, 0x5d, 0x96, 0xbb, + 0xa4, 0x08, 0x69, 0x61, 0x3a, 0x82, 0x49, 0x47, 0xa2, 0x54, 0x40, 0x82, 0xe1, 0xab, 0x66, 0x33, + 0xbe, 0x91, 0xd5, 0x9f, 0xf3, 0xd5, 0xb9, 0x48, 0x24, 0x82, 0x6c, 0x0d, 0x89, 0x55, 0x66, 0x49, + 0x30, 0x3c, 0x45, 0xc1, 0x55, 0x8c, 0xe3, 0x0f, 0xd2, 0x56, 0x42, 0x2a, 0x1a, 0x24, 0xb9, 0x4a, + 0xdc, 0xbb, 0x07, 0x96, 0xf8, 0x39, 0xdb, 0x67, 0x16, 0xec, 0x38, 0x7f, 0xac, 0x99, 0x1b, 0x74, + 0x44, 0xad, 0x3a, 0x86, 0xaa, 0x04, 0x78, 0x0b, 0x51, 0x32, 0x90, 0x82, 0x3d, 0xd2, 0x3c, 0xe8, + 0x0a, 0x49, 0xa4, 0xc7, 0x23, 0xf5, 0x78, 0x98, 0x3f, 0x82, 0x85, 0x03, 0x4c, 0x0b, 0x11, 0x26, + 0xac, 0xa0, 0x16, 0x0e, 0x53, 0x61, 0x74, 0x05, 0x71, 0x83, 0xa8, 0x7a, 0x4c, 0x28, 0x65, 0x98, + 0x73, 0x76, 0x78, 0x22, 0xc3, 0x92, 0xef, 0x5d, 0xb4, 0x5b, 0xf0, 0xa1, 0x66, 0xa2, 0xc9, 0x13, + 0xcf, 0x8f, 0x46, 0xa9, 0xc9, 0x80, 0x9a, 0x6e, 0x7b, 0x8f, 0xfe, 0x05, 0x85, 0x33, 0x46, 0x4b, + 0x3d, 0x02, 0x54, 0x43, 0xfb, 0x7b, 0x8c, 0x1f, 0x53, 0x38, 0xe3, 0x74, 0xd7, 0x5d, 0x6b, 0xef, + 0xd9, 0x8f, 0xff, 0x9a, 0x2a, 0xfc, 0xfb, 0xfd, 0x46, 0xe1, 0x87, 0xf7, 0x1b, 0x85, 0xff, 0xbc, + 0xdf, 0x28, 0xfc, 0xed, 0xc3, 0x86, 0xf5, 0x8f, 0x0f, 0x1b, 0xd6, 0x0f, 0x1f, 0x36, 0xac, 0x1f, + 0x3f, 0x6c, 0x58, 0x60, 0xc1, 0x0f, 0x5a, 0xec, 0xca, 0xda, 0xb9, 0x1a, 0xb0, 0x1f, 0xb0, 0x9e, + 0x4f, 0xb0, 0x3f, 0x9f, 0xfd, 0x3f, 0x00, 0x00, 0xff, 0xff, 0xe2, 0x2d, 0xc9, 0x4b, 0x5d, 0x2b, + 0x00, 0x00, } // Reference imports to suppress errors if they are not otherwise used. @@ -6187,6 +6198,11 @@ func (m *BatchRaftMessage) MarshalToSizedBuffer(dAtA []byte) (int, error) { _ = i var l int _ = l + if m.LastObservedTime != 0 { + i = encodeVarintTikvpb(dAtA, i, uint64(m.LastObservedTime)) + i-- + dAtA[i] = 0x68 + } if len(m.Msgs) > 0 { for iNdEx := len(m.Msgs) - 1; iNdEx >= 0; iNdEx-- { { @@ -7203,6 +7219,9 @@ func (m *BatchRaftMessage) Size() (n int) { n += 1 + l + sovTikvpb(uint64(l)) } } + if m.LastObservedTime != 0 { + n += 1 + sovTikvpb(uint64(m.LastObservedTime)) + } return n } @@ -10227,6 +10246,25 @@ func (m *BatchRaftMessage) Unmarshal(dAtA []byte) error { return err } iNdEx = postIndex + case 13: + if wireType != 0 { + return fmt.Errorf("proto: wrong wireType = %d for field LastObservedTime", wireType) + } + m.LastObservedTime = 0 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowTikvpb + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + m.LastObservedTime |= uint64(b&0x7F) << shift + if b < 0x80 { + break + } + } default: iNdEx = preIndex skippy, err := skipTikvpb(dAtA[iNdEx:]) diff --git a/proto/brpb.proto b/proto/brpb.proto index 8d577403d..74323f30c 100644 --- a/proto/brpb.proto +++ b/proto/brpb.proto @@ -147,6 +147,15 @@ message BackupRange { repeated File files = 3; } +// The message saves the physical table checksum +message TableMeta { + // physical id is either table id or partition id + int64 physical_id = 1; + uint64 crc64xor = 2; + uint64 total_kvs = 3; + uint64 total_bytes = 4; +} + message File { string name = 1; bytes sha256 = 2; @@ -156,9 +165,12 @@ message File { uint64 start_version = 5; uint64 end_version = 6; + // recorded the total statistics across multiple tables uint64 crc64xor = 7; uint64 total_kvs = 8; uint64 total_bytes = 9; + // recorded when the SST kvs are from different tables + repeated TableMeta table_metas = 13; string cf = 10; @@ -311,6 +323,10 @@ message MasterKeyConfig { repeated encryptionpb.MasterKey master_keys = 2; } +message SortedSubRanges { + repeated kvrpcpb.KeyRange sub_ranges = 1; +} + message BackupRequest { uint64 cluster_id = 1; @@ -352,6 +368,10 @@ message BackupRequest { // only the remaining sub ranges of the range need to be backed up this time. repeated kvrpcpb.KeyRange sub_ranges = 16; + // only ranges in the same groups can be merged into one SST file. + // the ranges in each groups are sorted. + repeated SortedSubRanges sorted_sub_ranges_groups = 21; + // replica_read indicates whether to use replica read for backup. // If it is false, the backup will only read data from leader. // If it is true, the backup will read data from both leader and follower. diff --git a/proto/import_sstpb.proto b/proto/import_sstpb.proto index 042f9ff87..aebb3edd3 100644 --- a/proto/import_sstpb.proto +++ b/proto/import_sstpb.proto @@ -212,6 +212,7 @@ message DownloadRequest { // You need to ensure that the keys before and after rewriting are in the // same order, otherwise the RPC request will fail. RewriteRule rewrite_rule = 13 [(gogoproto.nullable) = false]; + repeated RewriteRule sorted_rewrite_rules = 20; backup.StorageBackend storage_backend = 14; // The identity for the stroage backend. diff --git a/scripts/proto.lock b/scripts/proto.lock index ef4ae4afb..1dee6992d 100644 --- a/scripts/proto.lock +++ b/scripts/proto.lock @@ -475,6 +475,31 @@ } ] }, + { + "name": "TableMeta", + "fields": [ + { + "id": 1, + "name": "physical_id", + "type": "int64" + }, + { + "id": 2, + "name": "crc64xor", + "type": "uint64" + }, + { + "id": 3, + "name": "total_kvs", + "type": "uint64" + }, + { + "id": 4, + "name": "total_bytes", + "type": "uint64" + } + ] + }, { "name": "File", "fields": [ @@ -523,6 +548,12 @@ "name": "total_bytes", "type": "uint64" }, + { + "id": 13, + "name": "table_metas", + "type": "TableMeta", + "is_repeated": true + }, { "id": 10, "name": "cf", @@ -866,6 +897,17 @@ } ] }, + { + "name": "SortedSubRanges", + "fields": [ + { + "id": 1, + "name": "sub_ranges", + "type": "kvrpcpb.KeyRange", + "is_repeated": true + } + ] + }, { "name": "BackupRequest", "fields": [ @@ -945,6 +987,12 @@ "type": "kvrpcpb.KeyRange", "is_repeated": true }, + { + "id": 21, + "name": "sorted_sub_ranges_groups", + "type": "SortedSubRanges", + "is_repeated": true + }, { "id": 17, "name": "replica_read", @@ -7678,6 +7726,12 @@ } ] }, + { + "id": 20, + "name": "sorted_rewrite_rules", + "type": "RewriteRule", + "is_repeated": true + }, { "id": 14, "name": "storage_backend",