diff --git a/go-tipb/executor.pb.go b/go-tipb/executor.pb.go index 9a81316b..ab5f9cfe 100644 --- a/go-tipb/executor.pb.go +++ b/go-tipb/executor.pb.go @@ -1815,6 +1815,119 @@ func (m *FTSQueryInfo) GetMatchExpr() []Expr { return nil } +// TiCIVectorQueryInfo carries a TiCI vector top-k query. +// Used when a hybrid index with a vector component is chosen by the planner. +// The primary operator is ANN top-k; an optional filter expression can be +// pushed down so that TiCI can apply it before or during the ANN search. +type TiCIVectorQueryInfo struct { + // The index that contains the vector component. + IndexId int64 `protobuf:"varint,1,opt,name=index_id,json=indexId" json:"index_id"` + // Column ID of the vector column being searched. + ColumnId int64 `protobuf:"varint,2,opt,name=column_id,json=columnId" json:"column_id"` + // Distance metric to use for the search. + DistanceMetric VectorDistanceMetric `protobuf:"varint,3,opt,name=distance_metric,json=distanceMetric,enum=tipb.VectorDistanceMetric" json:"distance_metric"` + // Number of nearest neighbors to return. + TopK uint32 `protobuf:"varint,4,opt,name=top_k,json=topK" json:"top_k"` + // The query vector, serialized as a sequence of little-endian float32 values. + QueryVector []byte `protobuf:"bytes,5,opt,name=query_vector,json=queryVector" json:"query_vector,omitempty"` + // Dimensionality of the vector. Must match the index definition. + Dimension uint32 `protobuf:"varint,6,opt,name=dimension" json:"dimension"` + // Optional pushed-down filter expression (inverted/scalar predicates). + // When present, TiCI applies filtering in conjunction with ANN search. + FilterExpr []Expr `protobuf:"bytes,7,rep,name=filter_expr,json=filterExpr" json:"filter_expr"` + // Column name, for debug/explain purposes only. + ColumnName string `protobuf:"bytes,8,opt,name=column_name,json=columnName" json:"column_name"` +} + +func (m *TiCIVectorQueryInfo) Reset() { *m = TiCIVectorQueryInfo{} } +func (m *TiCIVectorQueryInfo) String() string { return proto.CompactTextString(m) } +func (*TiCIVectorQueryInfo) ProtoMessage() {} +func (*TiCIVectorQueryInfo) Descriptor() ([]byte, []int) { + return fileDescriptor_12d1cdcda51e000f, []int{10} +} +func (m *TiCIVectorQueryInfo) XXX_Unmarshal(b []byte) error { + return m.Unmarshal(b) +} +func (m *TiCIVectorQueryInfo) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + if deterministic { + return xxx_messageInfo_TiCIVectorQueryInfo.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 *TiCIVectorQueryInfo) XXX_Merge(src proto.Message) { + xxx_messageInfo_TiCIVectorQueryInfo.Merge(m, src) +} +func (m *TiCIVectorQueryInfo) XXX_Size() int { + return m.Size() +} +func (m *TiCIVectorQueryInfo) XXX_DiscardUnknown() { + xxx_messageInfo_TiCIVectorQueryInfo.DiscardUnknown(m) +} + +var xxx_messageInfo_TiCIVectorQueryInfo proto.InternalMessageInfo + +func (m *TiCIVectorQueryInfo) GetIndexId() int64 { + if m != nil { + return m.IndexId + } + return 0 +} + +func (m *TiCIVectorQueryInfo) GetColumnId() int64 { + if m != nil { + return m.ColumnId + } + return 0 +} + +func (m *TiCIVectorQueryInfo) GetDistanceMetric() VectorDistanceMetric { + if m != nil { + return m.DistanceMetric + } + return VectorDistanceMetric_INVALID_DISTANCE_METRIC +} + +func (m *TiCIVectorQueryInfo) GetTopK() uint32 { + if m != nil { + return m.TopK + } + return 0 +} + +func (m *TiCIVectorQueryInfo) GetQueryVector() []byte { + if m != nil { + return m.QueryVector + } + return nil +} + +func (m *TiCIVectorQueryInfo) GetDimension() uint32 { + if m != nil { + return m.Dimension + } + return 0 +} + +func (m *TiCIVectorQueryInfo) GetFilterExpr() []Expr { + if m != nil { + return m.FilterExpr + } + return nil +} + +func (m *TiCIVectorQueryInfo) GetColumnName() string { + if m != nil { + return m.ColumnName + } + return "" +} + type ColumnarIndexInfo struct { IndexType ColumnarIndexType `protobuf:"varint,1,opt,name=index_type,json=indexType,enum=tipb.ColumnarIndexType" json:"index_type"` // Types that are valid to be assigned to Index: @@ -1829,7 +1942,7 @@ func (m *ColumnarIndexInfo) Reset() { *m = ColumnarIndexInfo{} } func (m *ColumnarIndexInfo) String() string { return proto.CompactTextString(m) } func (*ColumnarIndexInfo) ProtoMessage() {} func (*ColumnarIndexInfo) Descriptor() ([]byte, []int) { - return fileDescriptor_12d1cdcda51e000f, []int{10} + return fileDescriptor_12d1cdcda51e000f, []int{11} } func (m *ColumnarIndexInfo) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1943,7 +2056,7 @@ func (m *TableScan) Reset() { *m = TableScan{} } func (m *TableScan) String() string { return proto.CompactTextString(m) } func (*TableScan) ProtoMessage() {} func (*TableScan) Descriptor() ([]byte, []int) { - return fileDescriptor_12d1cdcda51e000f, []int{11} + return fileDescriptor_12d1cdcda51e000f, []int{12} } func (m *TableScan) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2089,7 +2202,7 @@ func (m *PartitionTableScan) Reset() { *m = PartitionTableScan{} } func (m *PartitionTableScan) String() string { return proto.CompactTextString(m) } func (*PartitionTableScan) ProtoMessage() {} func (*PartitionTableScan) Descriptor() ([]byte, []int) { - return fileDescriptor_12d1cdcda51e000f, []int{12} + return fileDescriptor_12d1cdcda51e000f, []int{13} } func (m *PartitionTableScan) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2224,7 +2337,7 @@ func (m *Join) Reset() { *m = Join{} } func (m *Join) String() string { return proto.CompactTextString(m) } func (*Join) ProtoMessage() {} func (*Join) Descriptor() ([]byte, []int) { - return fileDescriptor_12d1cdcda51e000f, []int{13} + return fileDescriptor_12d1cdcda51e000f, []int{14} } func (m *Join) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2365,7 +2478,7 @@ func (m *RuntimeFilter) Reset() { *m = RuntimeFilter{} } func (m *RuntimeFilter) String() string { return proto.CompactTextString(m) } func (*RuntimeFilter) ProtoMessage() {} func (*RuntimeFilter) Descriptor() ([]byte, []int) { - return fileDescriptor_12d1cdcda51e000f, []int{14} + return fileDescriptor_12d1cdcda51e000f, []int{15} } func (m *RuntimeFilter) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2444,20 +2557,21 @@ func (m *RuntimeFilter) GetRfMode() RuntimeFilterMode { } type IndexScan struct { - TableId int64 `protobuf:"varint,1,opt,name=table_id,json=tableId" json:"table_id"` - IndexId int64 `protobuf:"varint,2,opt,name=index_id,json=indexId" json:"index_id"` - Columns []*ColumnInfo `protobuf:"bytes,3,rep,name=columns" json:"columns,omitempty"` - Desc bool `protobuf:"varint,4,opt,name=desc" json:"desc"` - Unique *bool `protobuf:"varint,5,opt,name=unique" json:"unique,omitempty"` - PrimaryColumnIds []int64 `protobuf:"varint,6,rep,name=primary_column_ids,json=primaryColumnIds" json:"primary_column_ids,omitempty"` - FtsQueryInfo *FTSQueryInfo `protobuf:"bytes,7,opt,name=fts_query_info,json=ftsQueryInfo" json:"fts_query_info,omitempty"` + TableId int64 `protobuf:"varint,1,opt,name=table_id,json=tableId" json:"table_id"` + IndexId int64 `protobuf:"varint,2,opt,name=index_id,json=indexId" json:"index_id"` + Columns []*ColumnInfo `protobuf:"bytes,3,rep,name=columns" json:"columns,omitempty"` + Desc bool `protobuf:"varint,4,opt,name=desc" json:"desc"` + Unique *bool `protobuf:"varint,5,opt,name=unique" json:"unique,omitempty"` + PrimaryColumnIds []int64 `protobuf:"varint,6,rep,name=primary_column_ids,json=primaryColumnIds" json:"primary_column_ids,omitempty"` + FtsQueryInfo *FTSQueryInfo `protobuf:"bytes,7,opt,name=fts_query_info,json=ftsQueryInfo" json:"fts_query_info,omitempty"` + TiciVectorQueryInfo *TiCIVectorQueryInfo `protobuf:"bytes,8,opt,name=tici_vector_query_info,json=ticiVectorQueryInfo" json:"tici_vector_query_info,omitempty"` } func (m *IndexScan) Reset() { *m = IndexScan{} } func (m *IndexScan) String() string { return proto.CompactTextString(m) } func (*IndexScan) ProtoMessage() {} func (*IndexScan) Descriptor() ([]byte, []int) { - return fileDescriptor_12d1cdcda51e000f, []int{15} + return fileDescriptor_12d1cdcda51e000f, []int{16} } func (m *IndexScan) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2535,6 +2649,13 @@ func (m *IndexScan) GetFtsQueryInfo() *FTSQueryInfo { return nil } +func (m *IndexScan) GetTiciVectorQueryInfo() *TiCIVectorQueryInfo { + if m != nil { + return m.TiciVectorQueryInfo + } + return nil +} + type Selection struct { // Where conditions. Conditions []*Expr `protobuf:"bytes,1,rep,name=conditions" json:"conditions,omitempty"` @@ -2546,7 +2667,7 @@ func (m *Selection) Reset() { *m = Selection{} } func (m *Selection) String() string { return proto.CompactTextString(m) } func (*Selection) ProtoMessage() {} func (*Selection) Descriptor() ([]byte, []int) { - return fileDescriptor_12d1cdcda51e000f, []int{16} + return fileDescriptor_12d1cdcda51e000f, []int{17} } func (m *Selection) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2607,7 +2728,7 @@ func (m *Projection) Reset() { *m = Projection{} } func (m *Projection) String() string { return proto.CompactTextString(m) } func (*Projection) ProtoMessage() {} func (*Projection) Descriptor() ([]byte, []int) { - return fileDescriptor_12d1cdcda51e000f, []int{17} + return fileDescriptor_12d1cdcda51e000f, []int{18} } func (m *Projection) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2674,7 +2795,7 @@ func (m *Aggregation) Reset() { *m = Aggregation{} } func (m *Aggregation) String() string { return proto.CompactTextString(m) } func (*Aggregation) ProtoMessage() {} func (*Aggregation) Descriptor() ([]byte, []int) { - return fileDescriptor_12d1cdcda51e000f, []int{18} + return fileDescriptor_12d1cdcda51e000f, []int{19} } func (m *Aggregation) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2766,7 +2887,7 @@ func (m *TopN) Reset() { *m = TopN{} } func (m *TopN) String() string { return proto.CompactTextString(m) } func (*TopN) ProtoMessage() {} func (*TopN) Descriptor() ([]byte, []int) { - return fileDescriptor_12d1cdcda51e000f, []int{19} + return fileDescriptor_12d1cdcda51e000f, []int{20} } func (m *TopN) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2837,7 +2958,7 @@ func (m *Limit) Reset() { *m = Limit{} } func (m *Limit) String() string { return proto.CompactTextString(m) } func (*Limit) ProtoMessage() {} func (*Limit) Descriptor() ([]byte, []int) { - return fileDescriptor_12d1cdcda51e000f, []int{20} + return fileDescriptor_12d1cdcda51e000f, []int{21} } func (m *Limit) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2908,7 +3029,7 @@ func (m *Kill) Reset() { *m = Kill{} } func (m *Kill) String() string { return proto.CompactTextString(m) } func (*Kill) ProtoMessage() {} func (*Kill) Descriptor() ([]byte, []int) { - return fileDescriptor_12d1cdcda51e000f, []int{21} + return fileDescriptor_12d1cdcda51e000f, []int{22} } func (m *Kill) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2979,7 +3100,7 @@ func (m *ExecutorExecutionSummary) Reset() { *m = ExecutorExecutionSumma func (m *ExecutorExecutionSummary) String() string { return proto.CompactTextString(m) } func (*ExecutorExecutionSummary) ProtoMessage() {} func (*ExecutorExecutionSummary) Descriptor() ([]byte, []int) { - return fileDescriptor_12d1cdcda51e000f, []int{22} + return fileDescriptor_12d1cdcda51e000f, []int{23} } func (m *ExecutorExecutionSummary) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -3106,7 +3227,7 @@ func (m *TiFlashExecutionInfo) Reset() { *m = TiFlashExecutionInfo{} } func (m *TiFlashExecutionInfo) String() string { return proto.CompactTextString(m) } func (*TiFlashExecutionInfo) ProtoMessage() {} func (*TiFlashExecutionInfo) Descriptor() ([]byte, []int) { - return fileDescriptor_12d1cdcda51e000f, []int{23} + return fileDescriptor_12d1cdcda51e000f, []int{24} } func (m *TiFlashExecutionInfo) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -3151,7 +3272,7 @@ func (m *TiFlashRegionNumOfInstance) Reset() { *m = TiFlashRegionNumOfIn func (m *TiFlashRegionNumOfInstance) String() string { return proto.CompactTextString(m) } func (*TiFlashRegionNumOfInstance) ProtoMessage() {} func (*TiFlashRegionNumOfInstance) Descriptor() ([]byte, []int) { - return fileDescriptor_12d1cdcda51e000f, []int{24} + return fileDescriptor_12d1cdcda51e000f, []int{25} } func (m *TiFlashRegionNumOfInstance) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -3271,13 +3392,19 @@ type TiFlashScanContext struct { FtsIdxTinyTotalReadOthersMs *uint64 `protobuf:"varint,172,opt,name=fts_idx_tiny_total_read_others_ms,json=ftsIdxTinyTotalReadOthersMs" json:"fts_idx_tiny_total_read_others_ms,omitempty"` FtsBruteTotalReadMs *uint64 `protobuf:"varint,173,opt,name=fts_brute_total_read_ms,json=ftsBruteTotalReadMs" json:"fts_brute_total_read_ms,omitempty"` FtsBruteTotalSearchMs *uint64 `protobuf:"varint,174,opt,name=fts_brute_total_search_ms,json=ftsBruteTotalSearchMs" json:"fts_brute_total_search_ms,omitempty"` + TiciVecQueryCount *uint32 `protobuf:"varint,200,opt,name=tici_vec_query_count,json=ticiVecQueryCount" json:"tici_vec_query_count,omitempty"` + TiciVecSearchTotalMs *uint64 `protobuf:"varint,201,opt,name=tici_vec_search_total_ms,json=ticiVecSearchTotalMs" json:"tici_vec_search_total_ms,omitempty"` + TiciVecFilterTotalMs *uint64 `protobuf:"varint,202,opt,name=tici_vec_filter_total_ms,json=ticiVecFilterTotalMs" json:"tici_vec_filter_total_ms,omitempty"` + TiciVecCandidateCount *uint64 `protobuf:"varint,203,opt,name=tici_vec_candidate_count,json=ticiVecCandidateCount" json:"tici_vec_candidate_count,omitempty"` + TiciVecResultCount *uint64 `protobuf:"varint,204,opt,name=tici_vec_result_count,json=ticiVecResultCount" json:"tici_vec_result_count,omitempty"` + TiciVecShardCount *uint64 `protobuf:"varint,205,opt,name=tici_vec_shard_count,json=ticiVecShardCount" json:"tici_vec_shard_count,omitempty"` } func (m *TiFlashScanContext) Reset() { *m = TiFlashScanContext{} } func (m *TiFlashScanContext) String() string { return proto.CompactTextString(m) } func (*TiFlashScanContext) ProtoMessage() {} func (*TiFlashScanContext) Descriptor() ([]byte, []int) { - return fileDescriptor_12d1cdcda51e000f, []int{25} + return fileDescriptor_12d1cdcda51e000f, []int{26} } func (m *TiFlashScanContext) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -3841,6 +3968,48 @@ func (m *TiFlashScanContext) GetFtsBruteTotalSearchMs() uint64 { return 0 } +func (m *TiFlashScanContext) GetTiciVecQueryCount() uint32 { + if m != nil && m.TiciVecQueryCount != nil { + return *m.TiciVecQueryCount + } + return 0 +} + +func (m *TiFlashScanContext) GetTiciVecSearchTotalMs() uint64 { + if m != nil && m.TiciVecSearchTotalMs != nil { + return *m.TiciVecSearchTotalMs + } + return 0 +} + +func (m *TiFlashScanContext) GetTiciVecFilterTotalMs() uint64 { + if m != nil && m.TiciVecFilterTotalMs != nil { + return *m.TiciVecFilterTotalMs + } + return 0 +} + +func (m *TiFlashScanContext) GetTiciVecCandidateCount() uint64 { + if m != nil && m.TiciVecCandidateCount != nil { + return *m.TiciVecCandidateCount + } + return 0 +} + +func (m *TiFlashScanContext) GetTiciVecResultCount() uint64 { + if m != nil && m.TiciVecResultCount != nil { + return *m.TiciVecResultCount + } + return 0 +} + +func (m *TiFlashScanContext) GetTiciVecShardCount() uint64 { + if m != nil && m.TiciVecShardCount != nil { + return *m.TiciVecShardCount + } + return 0 +} + type TiFlashWaitSummary struct { MinTSOWaitNs *uint64 `protobuf:"varint,1,opt,name=minTSO_wait_ns,json=minTSOWaitNs" json:"minTSO_wait_ns,omitempty"` PipelineQueueWaitNs *uint64 `protobuf:"varint,2,opt,name=pipeline_queue_wait_ns,json=pipelineQueueWaitNs" json:"pipeline_queue_wait_ns,omitempty"` @@ -3851,7 +4020,7 @@ func (m *TiFlashWaitSummary) Reset() { *m = TiFlashWaitSummary{} } func (m *TiFlashWaitSummary) String() string { return proto.CompactTextString(m) } func (*TiFlashWaitSummary) ProtoMessage() {} func (*TiFlashWaitSummary) Descriptor() ([]byte, []int) { - return fileDescriptor_12d1cdcda51e000f, []int{26} + return fileDescriptor_12d1cdcda51e000f, []int{27} } func (m *TiFlashWaitSummary) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -3912,7 +4081,7 @@ func (m *TiFlashNetWorkSummary) Reset() { *m = TiFlashNetWorkSummary{} } func (m *TiFlashNetWorkSummary) String() string { return proto.CompactTextString(m) } func (*TiFlashNetWorkSummary) ProtoMessage() {} func (*TiFlashNetWorkSummary) Descriptor() ([]byte, []int) { - return fileDescriptor_12d1cdcda51e000f, []int{27} + return fileDescriptor_12d1cdcda51e000f, []int{28} } func (m *TiFlashNetWorkSummary) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -3979,7 +4148,7 @@ func (m *Sort) Reset() { *m = Sort{} } func (m *Sort) String() string { return proto.CompactTextString(m) } func (*Sort) ProtoMessage() {} func (*Sort) Descriptor() ([]byte, []int) { - return fileDescriptor_12d1cdcda51e000f, []int{28} + return fileDescriptor_12d1cdcda51e000f, []int{29} } func (m *Sort) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -4042,7 +4211,7 @@ func (m *WindowFrameBound) Reset() { *m = WindowFrameBound{} } func (m *WindowFrameBound) String() string { return proto.CompactTextString(m) } func (*WindowFrameBound) ProtoMessage() {} func (*WindowFrameBound) Descriptor() ([]byte, []int) { - return fileDescriptor_12d1cdcda51e000f, []int{29} + return fileDescriptor_12d1cdcda51e000f, []int{30} } func (m *WindowFrameBound) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -4123,7 +4292,7 @@ func (m *WindowFrame) Reset() { *m = WindowFrame{} } func (m *WindowFrame) String() string { return proto.CompactTextString(m) } func (*WindowFrame) ProtoMessage() {} func (*WindowFrame) Descriptor() ([]byte, []int) { - return fileDescriptor_12d1cdcda51e000f, []int{30} + return fileDescriptor_12d1cdcda51e000f, []int{31} } func (m *WindowFrame) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -4185,7 +4354,7 @@ func (m *Window) Reset() { *m = Window{} } func (m *Window) String() string { return proto.CompactTextString(m) } func (*Window) ProtoMessage() {} func (*Window) Descriptor() ([]byte, []int) { - return fileDescriptor_12d1cdcda51e000f, []int{31} + return fileDescriptor_12d1cdcda51e000f, []int{32} } func (m *Window) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -4257,7 +4426,7 @@ func (m *GroupingExpr) Reset() { *m = GroupingExpr{} } func (m *GroupingExpr) String() string { return proto.CompactTextString(m) } func (*GroupingExpr) ProtoMessage() {} func (*GroupingExpr) Descriptor() ([]byte, []int) { - return fileDescriptor_12d1cdcda51e000f, []int{32} + return fileDescriptor_12d1cdcda51e000f, []int{33} } func (m *GroupingExpr) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -4301,7 +4470,7 @@ func (m *GroupingSet) Reset() { *m = GroupingSet{} } func (m *GroupingSet) String() string { return proto.CompactTextString(m) } func (*GroupingSet) ProtoMessage() {} func (*GroupingSet) Descriptor() ([]byte, []int) { - return fileDescriptor_12d1cdcda51e000f, []int{33} + return fileDescriptor_12d1cdcda51e000f, []int{34} } func (m *GroupingSet) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -4348,7 +4517,7 @@ func (m *Expand) Reset() { *m = Expand{} } func (m *Expand) String() string { return proto.CompactTextString(m) } func (*Expand) ProtoMessage() {} func (*Expand) Descriptor() ([]byte, []int) { - return fileDescriptor_12d1cdcda51e000f, []int{34} + return fileDescriptor_12d1cdcda51e000f, []int{35} } func (m *Expand) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -4406,7 +4575,7 @@ func (m *ExprSlice) Reset() { *m = ExprSlice{} } func (m *ExprSlice) String() string { return proto.CompactTextString(m) } func (*ExprSlice) ProtoMessage() {} func (*ExprSlice) Descriptor() ([]byte, []int) { - return fileDescriptor_12d1cdcda51e000f, []int{35} + return fileDescriptor_12d1cdcda51e000f, []int{36} } func (m *ExprSlice) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -4452,7 +4621,7 @@ func (m *Expand2) Reset() { *m = Expand2{} } func (m *Expand2) String() string { return proto.CompactTextString(m) } func (*Expand2) ProtoMessage() {} func (*Expand2) Descriptor() ([]byte, []int) { - return fileDescriptor_12d1cdcda51e000f, []int{36} + return fileDescriptor_12d1cdcda51e000f, []int{37} } func (m *Expand2) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -4510,7 +4679,7 @@ func (m *BroadcastQuery) Reset() { *m = BroadcastQuery{} } func (m *BroadcastQuery) String() string { return proto.CompactTextString(m) } func (*BroadcastQuery) ProtoMessage() {} func (*BroadcastQuery) Descriptor() ([]byte, []int) { - return fileDescriptor_12d1cdcda51e000f, []int{37} + return fileDescriptor_12d1cdcda51e000f, []int{38} } func (m *BroadcastQuery) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -4574,6 +4743,7 @@ func init() { proto.RegisterType((*ANNQueryInfo)(nil), "tipb.ANNQueryInfo") proto.RegisterType((*InvertedQueryInfo)(nil), "tipb.InvertedQueryInfo") proto.RegisterType((*FTSQueryInfo)(nil), "tipb.FTSQueryInfo") + proto.RegisterType((*TiCIVectorQueryInfo)(nil), "tipb.TiCIVectorQueryInfo") proto.RegisterType((*ColumnarIndexInfo)(nil), "tipb.ColumnarIndexInfo") proto.RegisterType((*TableScan)(nil), "tipb.TableScan") proto.RegisterType((*PartitionTableScan)(nil), "tipb.PartitionTableScan") @@ -4607,370 +4777,383 @@ func init() { func init() { proto.RegisterFile("executor.proto", fileDescriptor_12d1cdcda51e000f) } var fileDescriptor_12d1cdcda51e000f = []byte{ - // 5804 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xcc, 0x7b, 0xd9, 0x73, 0x1c, 0xc9, - 0x71, 0x37, 0x66, 0x30, 0x00, 0x66, 0x72, 0x06, 0x83, 0x46, 0xe1, 0x6a, 0x92, 0x4b, 0x12, 0x1c, - 0xed, 0x81, 0xc0, 0xa7, 0x25, 0x77, 0x41, 0x6a, 0x4f, 0x1d, 0x8b, 0x73, 0x39, 0x4b, 0x60, 0x40, - 0xf5, 0x40, 0xbb, 0x0a, 0x7d, 0x5f, 0x44, 0x47, 0xa3, 0xbb, 0x66, 0x50, 0x44, 0x1f, 0xb3, 0xdd, - 0x3d, 0xe4, 0x60, 0xbf, 0xef, 0xb3, 0xd7, 0xaf, 0x7a, 0x72, 0x58, 0xb6, 0x2c, 0x1f, 0xf2, 0x21, - 0x5f, 0xf2, 0xa5, 0x08, 0xfb, 0x2f, 0xf0, 0xa3, 0x1e, 0x15, 0x7a, 0x52, 0xd8, 0x11, 0x0e, 0xc7, - 0xee, 0x93, 0x9f, 0xfc, 0xee, 0x27, 0x47, 0x65, 0x55, 0x75, 0xd7, 0x1c, 0x20, 0xb9, 0xb6, 0xc2, - 0xe1, 0xa7, 0x99, 0xce, 0xcc, 0x5f, 0x66, 0x56, 0x55, 0x66, 0xd6, 0xd5, 0x0d, 0x75, 0x3a, 0xa0, - 0x6e, 0x3f, 0x8d, 0xe2, 0xdb, 0xbd, 0x38, 0x4a, 0x23, 0x52, 0x4a, 0x59, 0xef, 0xf4, 0xaa, 0x41, - 0x07, 0xbd, 0x98, 0x26, 0x09, 0x8b, 0x42, 0x41, 0xbf, 0x5a, 0x4b, 0xdc, 0x33, 0x1a, 0x38, 0xf2, - 0x69, 0xb9, 0x1b, 0x75, 0x23, 0xfc, 0x7b, 0x87, 0xff, 0x93, 0xd4, 0x85, 0xb8, 0x9f, 0xa4, 0xf8, - 0x57, 0x10, 0x1a, 0x7f, 0x57, 0x81, 0xf2, 0xbe, 0xd4, 0x4f, 0x5e, 0x84, 0x62, 0xda, 0x33, 0x0b, - 0xeb, 0x85, 0x8d, 0xfa, 0x56, 0xfd, 0x36, 0x37, 0x73, 0x9b, 0xf3, 0x4e, 0x2e, 0x7a, 0x74, 0xa7, - 0xf4, 0xd3, 0x7f, 0xbe, 0x39, 0x65, 0x15, 0xd3, 0x1e, 0xd9, 0x84, 0x72, 0x7a, 0xea, 0xdb, 0x89, - 0xeb, 0x84, 0x66, 0x71, 0xbd, 0xb0, 0x51, 0xdd, 0x5a, 0x10, 0xb2, 0x27, 0xce, 0xa9, 0x4f, 0xdb, - 0xae, 0x13, 0x5a, 0x73, 0xe9, 0xa9, 0xcf, 0xff, 0x70, 0x59, 0xe6, 0x0d, 0x84, 0xec, 0xb4, 0x2e, - 0xdb, 0x0c, 0x3d, 0x3a, 0x10, 0xb2, 0xcc, 0xc3, 0x3f, 0xe4, 0x55, 0xa8, 0x24, 0xd4, 0xa7, 0x6e, - 0xca, 0xa2, 0xd0, 0x2c, 0xe9, 0xc2, 0x6d, 0x45, 0xb6, 0x72, 0x09, 0x72, 0x17, 0xaa, 0x4e, 0xb7, - 0x1b, 0xd3, 0xae, 0x83, 0x80, 0x19, 0x04, 0x2c, 0x0a, 0xc0, 0x76, 0xce, 0xb0, 0x74, 0x29, 0x72, - 0x03, 0x4a, 0x69, 0xd4, 0x6b, 0x99, 0xb3, 0x28, 0x0d, 0xd2, 0xef, 0xa8, 0xd7, 0xb2, 0x90, 0x4e, - 0x6e, 0xc1, 0x8c, 0xcf, 0x02, 0x96, 0x9a, 0x73, 0x28, 0x50, 0x15, 0x02, 0x87, 0x9c, 0x64, 0x09, - 0x0e, 0xd9, 0x85, 0x45, 0x3a, 0x70, 0xcf, 0x9c, 0xb0, 0x4b, 0xed, 0x98, 0xba, 0x94, 0x3d, 0xa6, - 0xb1, 0x59, 0x46, 0xf1, 0x55, 0xd5, 0x67, 0x82, 0x6d, 0x49, 0xae, 0x65, 0xd0, 0x11, 0x0a, 0xf7, - 0xe3, 0x51, 0xc4, 0x42, 0xb3, 0xa2, 0xfb, 0xf1, 0x41, 0xc4, 0x42, 0x0b, 0xe9, 0xe4, 0x26, 0x54, - 0xd5, 0xa8, 0xdb, 0xcc, 0x33, 0x61, 0xbd, 0xb0, 0x51, 0xb1, 0x40, 0x91, 0x9a, 0x1e, 0x57, 0x70, - 0xce, 0x7c, 0xdf, 0xac, 0xea, 0x0a, 0x1e, 0x30, 0xdf, 0xb7, 0x90, 0x4e, 0xbe, 0x06, 0x0b, 0x99, - 0x97, 0x09, 0x0d, 0x3d, 0x1a, 0x9b, 0x35, 0x14, 0x5d, 0x1e, 0xf6, 0xb1, 0x8d, 0x3c, 0xab, 0x4e, - 0x87, 0x9e, 0xc9, 0x6b, 0x00, 0x0f, 0xe3, 0xe8, 0x91, 0x1c, 0x8c, 0x79, 0x44, 0x1a, 0x02, 0x99, - 0xd3, 0x2d, 0x4d, 0x86, 0x7c, 0x00, 0xcb, 0x3d, 0x27, 0x4e, 0x19, 0x7f, 0xb0, 0x53, 0x1e, 0x09, - 0x62, 0xd4, 0xeb, 0x88, 0x35, 0x25, 0x56, 0x49, 0xe4, 0xa1, 0x42, 0x7a, 0x63, 0x34, 0xde, 0xb8, - 0x24, 0x8a, 0x53, 0x73, 0x41, 0x6f, 0x5c, 0x3b, 0x8a, 0x53, 0x0b, 0xe9, 0xe4, 0x45, 0x98, 0x7d, - 0xc2, 0x42, 0x2f, 0x7a, 0x62, 0x1a, 0x28, 0x51, 0x13, 0x12, 0x1f, 0x21, 0xcd, 0x92, 0x3c, 0xd2, - 0x82, 0x5b, 0x1d, 0x16, 0x52, 0xbb, 0x1b, 0x3b, 0x2c, 0xa4, 0x9e, 0x9d, 0x9c, 0xf5, 0x3b, 0x1d, - 0xee, 0x56, 0x1a, 0x53, 0x27, 0xb0, 0xdd, 0xa8, 0x1f, 0xa6, 0xe6, 0xe2, 0x7a, 0x61, 0xa3, 0x24, - 0x83, 0xfb, 0x3a, 0x17, 0x7f, 0x5f, 0x48, 0xb7, 0x85, 0x70, 0x1b, 0x65, 0x77, 0xb9, 0x28, 0xf9, - 0x00, 0x6e, 0x4e, 0xd4, 0x77, 0xea, 0xa4, 0xee, 0x99, 0x9d, 0xb0, 0x4f, 0xa8, 0x49, 0x34, 0x6d, - 0xd7, 0xc6, 0xb5, 0xed, 0x70, 0xc9, 0x36, 0xfb, 0x84, 0xf2, 0x16, 0xd0, 0x41, 0xcf, 0x09, 0x3d, - 0x73, 0x49, 0x6f, 0xc1, 0x3e, 0xd2, 0x2c, 0xc9, 0x23, 0xaf, 0xc0, 0x9c, 0xf8, 0xb7, 0x65, 0x2e, - 0xa3, 0xd8, 0xbc, 0x2e, 0xb6, 0x65, 0x29, 0x2e, 0x1f, 0xed, 0xd3, 0x38, 0x72, 0x3c, 0xd7, 0x49, - 0x52, 0xfb, 0xe3, 0x3e, 0x8d, 0x2f, 0xcc, 0x15, 0x7d, 0xb4, 0x77, 0x14, 0xf3, 0x9b, 0x9c, 0x67, - 0xd5, 0x4f, 0x87, 0x9e, 0xc9, 0x06, 0x94, 0xdd, 0x94, 0xda, 0x09, 0x0b, 0xcf, 0xcd, 0x55, 0xdd, - 0xd0, 0xee, 0xc9, 0x7e, 0x9b, 0x85, 0xe7, 0xd6, 0x9c, 0x9b, 0x52, 0xfe, 0x87, 0xdc, 0x06, 0x40, - 0xc9, 0xa8, 0x1f, 0xbb, 0xd4, 0x5c, 0xd3, 0x93, 0x94, 0xcb, 0x22, 0xd9, 0xaa, 0x70, 0x69, 0xfc, - 0x4b, 0xee, 0x41, 0x8d, 0xf1, 0x4c, 0xb7, 0xfd, 0x28, 0x3a, 0xef, 0xf7, 0x4c, 0x53, 0xcf, 0x52, - 0xac, 0x01, 0x87, 0x51, 0x74, 0xfe, 0xad, 0x9e, 0x55, 0x65, 0xea, 0xa1, 0xdf, 0x23, 0xd7, 0x01, - 0x7a, 0x4e, 0x4c, 0xc3, 0xd4, 0x66, 0xde, 0xc0, 0xbc, 0xb2, 0x5e, 0xd8, 0x98, 0xb7, 0x2a, 0x82, - 0xd2, 0xf4, 0x06, 0x8d, 0x9f, 0x4f, 0x43, 0x7d, 0x38, 0x7e, 0xc9, 0x86, 0x56, 0xb9, 0xc8, 0x70, - 0x84, 0x8f, 0x55, 0xaf, 0x45, 0x1a, 0xba, 0x91, 0x47, 0x3d, 0x3b, 0x75, 0x92, 0x73, 0x3b, 0xa0, - 0xa9, 0x63, 0x16, 0xd7, 0xa7, 0x37, 0x6a, 0xd6, 0x82, 0x64, 0x9c, 0x38, 0xc9, 0xf9, 0x11, 0x4d, - 0x1d, 0xf2, 0x3a, 0xd4, 0xf3, 0x98, 0x3e, 0xa7, 0x17, 0x89, 0x39, 0xbd, 0x3e, 0x9d, 0x47, 0xe4, - 0xfe, 0xa0, 0x17, 0x5b, 0xf3, 0x99, 0xc4, 0x03, 0x7a, 0x91, 0x90, 0x17, 0x61, 0xc6, 0x3d, 0x63, - 0xbe, 0x27, 0x0b, 0x98, 0x56, 0x45, 0x79, 0xe2, 0x5a, 0x82, 0x49, 0x5e, 0x82, 0x99, 0xf4, 0xa2, - 0x47, 0x13, 0x73, 0x06, 0xf5, 0xc9, 0x1e, 0x3c, 0x60, 0xd4, 0xf7, 0xb8, 0xbb, 0x96, 0xe0, 0x92, - 0x37, 0x61, 0xc1, 0xf1, 0x7d, 0xbb, 0xc3, 0xe9, 0xb6, 0x00, 0xcc, 0x4e, 0x06, 0xcc, 0x3b, 0xbe, - 0x9f, 0x3d, 0x25, 0xe4, 0x6b, 0x50, 0x75, 0xa3, 0x40, 0xcd, 0x0f, 0x58, 0xcc, 0xea, 0x5b, 0x2b, - 0x72, 0x9c, 0x72, 0xc6, 0x51, 0xe4, 0xa9, 0xae, 0xd1, 0xe5, 0xc9, 0x21, 0xac, 0xf6, 0x7b, 0x2a, - 0x4d, 0x52, 0xaa, 0x75, 0x54, 0x19, 0xcd, 0xaf, 0xc9, 0x56, 0x89, 0xee, 0xda, 0xb9, 0x48, 0x69, - 0xd2, 0xf6, 0x99, 0x4b, 0xad, 0x25, 0x05, 0xdb, 0x4d, 0x69, 0xd6, 0x8b, 0x2f, 0x42, 0x3d, 0x71, - 0x02, 0x6a, 0x7f, 0x12, 0x85, 0xd4, 0xee, 0xf8, 0x4e, 0xd7, 0xac, 0xac, 0x4f, 0x6f, 0x94, 0xad, - 0x1a, 0xa7, 0x7e, 0x27, 0x0a, 0xe9, 0x81, 0xef, 0x74, 0x1b, 0x3f, 0x2f, 0xc0, 0x9c, 0x0c, 0x37, - 0x72, 0x0d, 0x66, 0xb9, 0x59, 0xe6, 0x99, 0x85, 0xf5, 0xe2, 0xc6, 0xbc, 0x74, 0x71, 0xc6, 0x4d, - 0x69, 0xd3, 0x23, 0x9b, 0x50, 0xcf, 0x43, 0xd0, 0x0e, 0xfb, 0x81, 0x59, 0xd4, 0x84, 0x6a, 0x59, - 0xec, 0xb5, 0xfa, 0x01, 0x79, 0x19, 0x6a, 0x2a, 0xb0, 0x51, 0x72, 0x5a, 0x93, 0x04, 0x19, 0xd3, - 0x5c, 0xee, 0xf9, 0x46, 0xed, 0x35, 0xa8, 0xea, 0x43, 0x71, 0xc9, 0xd8, 0x41, 0x27, 0x1b, 0x87, - 0xc6, 0x4f, 0x0a, 0x50, 0xc9, 0xf2, 0xe2, 0xbf, 0xbf, 0x59, 0x23, 0x0e, 0x97, 0x9e, 0xed, 0xf0, - 0x77, 0x0b, 0x50, 0xd5, 0xd2, 0x92, 0xbc, 0x06, 0xcb, 0x22, 0x7f, 0xcf, 0x9c, 0xd0, 0xf3, 0xa9, - 0x1d, 0x75, 0x3a, 0x09, 0x4d, 0x13, 0xb3, 0xb0, 0x3e, 0xbd, 0x31, 0x6f, 0x11, 0xe4, 0xdd, 0x47, - 0xd6, 0xb1, 0xe0, 0xf0, 0xdc, 0x3d, 0xa7, 0xb4, 0x67, 0x47, 0x31, 0x9f, 0x73, 0xf8, 0xfa, 0xa0, - 0x6c, 0x55, 0x38, 0xe5, 0x98, 0x13, 0xf8, 0x82, 0x00, 0x3b, 0x33, 0xa6, 0xa1, 0x4c, 0xa6, 0xd1, - 0xce, 0xce, 0xf8, 0x8d, 0xb7, 0x60, 0x71, 0x2c, 0xc4, 0xc8, 0x97, 0x60, 0x5e, 0xcf, 0x5f, 0xe1, - 0x4a, 0xcd, 0xaa, 0x69, 0xb9, 0x9b, 0x34, 0x3e, 0x2d, 0x82, 0x31, 0x3a, 0x0b, 0x4f, 0xce, 0xfc, - 0xc2, 0xe4, 0xcc, 0x1f, 0xe9, 0xb9, 0xe2, 0x33, 0x7b, 0x8e, 0x34, 0xb0, 0x02, 0x4d, 0x5f, 0x56, - 0x81, 0xb0, 0xf6, 0xec, 0xc1, 0xcd, 0x28, 0x66, 0x5d, 0x16, 0x3a, 0x3e, 0xe6, 0x55, 0x2f, 0xf6, - 0x22, 0xb7, 0x4f, 0x63, 0xcd, 0x9f, 0x12, 0xfa, 0x73, 0x4d, 0x89, 0xed, 0xa6, 0xf4, 0xa1, 0x14, - 0x7a, 0x4a, 0x3e, 0xcd, 0x4c, 0xc8, 0xa7, 0xef, 0x96, 0xa0, 0xb6, 0xdd, 0x6a, 0x61, 0x81, 0x6f, - 0x86, 0x9d, 0x88, 0xbc, 0x09, 0x80, 0x33, 0x03, 0x36, 0x69, 0xb8, 0x54, 0x2a, 0x39, 0xad, 0x54, - 0x56, 0x3e, 0x56, 0x04, 0xd2, 0x84, 0x05, 0x8f, 0x25, 0xa9, 0x13, 0xba, 0x94, 0xfb, 0x18, 0x33, - 0x17, 0x87, 0xb5, 0xbe, 0x75, 0x55, 0xa0, 0x3f, 0xa4, 0x6e, 0x1a, 0xc5, 0x7b, 0x52, 0xe4, 0x08, - 0x25, 0xa4, 0x96, 0xba, 0x37, 0x44, 0x25, 0x57, 0x60, 0x26, 0x8d, 0x7a, 0xf6, 0x39, 0xf6, 0x93, - 0x8a, 0x58, 0xbe, 0xf2, 0x7a, 0x40, 0x5e, 0xe2, 0x25, 0xcb, 0xef, 0x07, 0xa1, 0x1d, 0x3a, 0x01, - 0xc5, 0x44, 0xac, 0x64, 0x21, 0x8d, 0x8c, 0x96, 0x13, 0x50, 0x1e, 0x90, 0x1e, 0xed, 0xc5, 0xd4, - 0x75, 0x52, 0xea, 0xd9, 0x12, 0xc1, 0x3c, 0x5c, 0xfe, 0x4d, 0x5b, 0x24, 0xe7, 0xed, 0x22, 0x0b, - 0x57, 0x4a, 0xd5, 0x98, 0x76, 0xec, 0xc7, 0xd4, 0xb5, 0x3b, 0x77, 0xb7, 0x70, 0xe5, 0x57, 0xb3, - 0x2a, 0x31, 0xed, 0x7c, 0x48, 0xdd, 0x83, 0xbb, 0x5b, 0xe4, 0x26, 0x94, 0x45, 0x88, 0x33, 0x0f, - 0x97, 0x71, 0xd3, 0xd2, 0xea, 0x1c, 0x52, 0x9b, 0x7c, 0x16, 0xae, 0x05, 0xce, 0xc0, 0x56, 0x4d, - 0xc1, 0xc5, 0x58, 0x41, 0x95, 0xcd, 0xc0, 0x19, 0xa8, 0x96, 0xf3, 0x14, 0x3e, 0x0b, 0x93, 0x27, - 0x36, 0xed, 0xd8, 0x09, 0x75, 0x62, 0xf7, 0x0c, 0x67, 0xed, 0x2c, 0x85, 0x39, 0x6f, 0xbf, 0xd3, - 0x46, 0x0e, 0xb9, 0x0d, 0xb3, 0xc2, 0x79, 0x39, 0x51, 0x1b, 0xaa, 0x38, 0xa3, 0xd7, 0x61, 0x27, - 0x92, 0x28, 0x29, 0x45, 0xde, 0x80, 0x65, 0x1a, 0xe2, 0xaa, 0x2a, 0x1b, 0x8b, 0x5e, 0x1c, 0x3d, - 0xc2, 0xe9, 0xba, 0x2c, 0x65, 0x89, 0x90, 0x50, 0xfe, 0xf0, 0xc5, 0xd9, 0x07, 0xa5, 0xf2, 0x9c, - 0x51, 0x6e, 0x7c, 0x04, 0x8b, 0xcd, 0xf0, 0x31, 0x8d, 0x53, 0xea, 0xe5, 0x01, 0xa1, 0x37, 0xbc, - 0x30, 0xa9, 0xe1, 0xb7, 0xa0, 0x92, 0x77, 0x70, 0x51, 0x93, 0x28, 0xbb, 0xb2, 0x73, 0x1b, 0xff, - 0x34, 0x0d, 0xb5, 0x83, 0x93, 0xf6, 0x73, 0x45, 0x99, 0x92, 0x9b, 0x1c, 0x65, 0xba, 0x37, 0xc5, - 0x49, 0xde, 0x6c, 0xc2, 0x9c, 0x30, 0xab, 0x66, 0xe1, 0xb1, 0x2e, 0xb3, 0x94, 0x00, 0xb9, 0x05, - 0x35, 0x2d, 0x98, 0x44, 0xe5, 0xab, 0x58, 0xd5, 0x3c, 0x8e, 0x12, 0xf2, 0xa5, 0xcc, 0x51, 0x3a, - 0x48, 0x31, 0x7c, 0x2a, 0xc3, 0x4e, 0xd1, 0x41, 0x4a, 0x5e, 0x85, 0x05, 0x29, 0x14, 0x9d, 0xd3, - 0x90, 0x7d, 0x42, 0x63, 0x8c, 0x1f, 0x25, 0x59, 0x17, 0x92, 0x8a, 0x47, 0x96, 0x54, 0x78, 0x03, - 0x2e, 0x59, 0x44, 0x60, 0xbf, 0x0c, 0x0b, 0x7c, 0xd1, 0x9a, 0xc7, 0x6a, 0x62, 0x56, 0xd7, 0xa7, - 0x37, 0xa6, 0xad, 0x79, 0x4e, 0x56, 0x61, 0x9a, 0x8c, 0xca, 0x39, 0x89, 0x6b, 0xd6, 0x30, 0xaf, - 0x35, 0xb9, 0xed, 0xc4, 0x25, 0x6f, 0x29, 0xc7, 0x3b, 0xfd, 0xd0, 0xc5, 0x08, 0xab, 0x6f, 0x2d, - 0xc9, 0x25, 0xb2, 0xeb, 0xf8, 0x4e, 0x7c, 0xd0, 0x0f, 0xdd, 0x36, 0xeb, 0x0e, 0xb5, 0x86, 0xd3, - 0xc8, 0x1d, 0x80, 0x00, 0xd7, 0xaa, 0x7c, 0xeb, 0x68, 0xae, 0x8c, 0x2e, 0x65, 0x14, 0x00, 0x65, - 0x38, 0xa1, 0xf1, 0xc3, 0x22, 0x2c, 0x0a, 0xc3, 0x4e, 0x8c, 0xb3, 0x02, 0x0e, 0xf1, 0x57, 0x01, - 0xc4, 0x48, 0x69, 0x43, 0xbc, 0xa6, 0x8f, 0x85, 0x14, 0xd6, 0xc7, 0x99, 0x29, 0x02, 0x79, 0x07, - 0xea, 0x4e, 0x18, 0x8a, 0x45, 0xaa, 0xcd, 0xc2, 0x4e, 0x24, 0xf7, 0x90, 0x23, 0xa5, 0x88, 0x5b, - 0xba, 0x3f, 0x65, 0xd5, 0x9c, 0x30, 0xcc, 0x83, 0xab, 0x09, 0x4b, 0x4c, 0x86, 0xb1, 0xae, 0x40, - 0x6c, 0x2c, 0xd7, 0xd4, 0xa2, 0x72, 0x24, 0xce, 0xef, 0x4f, 0x59, 0x8b, 0x6c, 0x2c, 0xf8, 0xdf, - 0x81, 0x7a, 0x27, 0x4d, 0x74, 0x2d, 0x25, 0xdd, 0x0d, 0x3d, 0xa6, 0xb9, 0x1b, 0x9d, 0x34, 0xc9, - 0x9e, 0x77, 0xe6, 0x60, 0x06, 0xdb, 0xd3, 0xf8, 0x6c, 0x06, 0x2a, 0xf9, 0xae, 0xe5, 0x26, 0x94, - 0xc5, 0xbe, 0x67, 0x34, 0x9f, 0x90, 0x3a, 0x1c, 0xc1, 0xc5, 0x67, 0x45, 0xb0, 0x09, 0x25, 0x8f, - 0x26, 0x2e, 0xb6, 0x4d, 0xe5, 0x37, 0x52, 0xc8, 0x97, 0x81, 0xf4, 0x62, 0x16, 0x38, 0xf1, 0x85, - 0x1e, 0x52, 0x25, 0x0c, 0x29, 0x43, 0x72, 0xf2, 0xa8, 0x7a, 0x0f, 0x8c, 0x90, 0x0e, 0x52, 0x3b, - 0xa6, 0x8e, 0x67, 0xd3, 0xb0, 0xcb, 0x42, 0x8a, 0xc1, 0x5e, 0x57, 0xc6, 0xf7, 0x91, 0xa6, 0x8d, - 0x55, 0x9d, 0xcb, 0x5b, 0xd4, 0xf1, 0x04, 0x87, 0x7c, 0x19, 0x66, 0x63, 0x3e, 0x8b, 0xa9, 0xb5, - 0xa7, 0x9c, 0xaf, 0x1f, 0xd0, 0x0b, 0x8b, 0x93, 0x55, 0x9d, 0x12, 0x32, 0xe4, 0x6d, 0xb8, 0xa2, - 0xbc, 0xeb, 0xc5, 0xb4, 0xc3, 0x06, 0xba, 0x93, 0x73, 0xe8, 0xe4, 0xaa, 0x14, 0x78, 0x88, 0xfc, - 0xdc, 0xd5, 0xe1, 0x95, 0x43, 0x79, 0x74, 0xe5, 0xb0, 0x0e, 0x35, 0x96, 0xd8, 0x1d, 0xbe, 0xc3, - 0xc1, 0x8d, 0x65, 0x05, 0x05, 0x80, 0x25, 0x07, 0x4e, 0x92, 0xe2, 0x00, 0x1c, 0xc1, 0xf5, 0x5e, - 0x3f, 0x39, 0xa3, 0x9e, 0xed, 0x45, 0x4f, 0x42, 0xbb, 0xc3, 0xfc, 0x94, 0xc6, 0xb6, 0x1b, 0x85, - 0x1e, 0xae, 0xcf, 0x13, 0x13, 0xc6, 0x56, 0xef, 0x57, 0x05, 0x60, 0x2f, 0x7a, 0x12, 0x1e, 0xa0, - 0xf8, 0x6e, 0x26, 0x4d, 0x76, 0x61, 0x29, 0xee, 0x87, 0x29, 0x0b, 0xa8, 0x52, 0xe5, 0xb3, 0x24, - 0xc5, 0xe4, 0xad, 0xaa, 0x8c, 0xb3, 0x84, 0x80, 0xc0, 0x5a, 0x8b, 0xb1, 0xfe, 0x78, 0xc8, 0x12, - 0x5e, 0x41, 0x0c, 0x3e, 0x79, 0x3c, 0x71, 0x58, 0x6a, 0xa3, 0xaa, 0x20, 0xc1, 0x8d, 0xf8, 0x8c, - 0xec, 0xb7, 0xf9, 0xc0, 0x19, 0x7c, 0xe4, 0xb0, 0xf4, 0x84, 0x05, 0xf4, 0x28, 0x21, 0x7b, 0x43, - 0xd3, 0x5b, 0x96, 0x28, 0x72, 0x07, 0x3e, 0x21, 0x47, 0xf4, 0x29, 0x6f, 0x5b, 0xe6, 0x0a, 0x79, - 0x00, 0x2b, 0xfd, 0x24, 0x9b, 0x1e, 0x9d, 0xd8, 0xc6, 0x70, 0xa5, 0x89, 0x59, 0xd7, 0x97, 0xef, - 0x63, 0x99, 0x6d, 0x2d, 0x71, 0xd4, 0x10, 0x99, 0x26, 0x8d, 0x5f, 0x9b, 0x01, 0x32, 0xbe, 0x6f, - 0xff, 0x9f, 0x19, 0xed, 0x4f, 0x8d, 0xbe, 0x99, 0xa7, 0x46, 0xdf, 0x97, 0x20, 0xdf, 0xc9, 0xa1, - 0xf8, 0x2c, 0x8a, 0xd7, 0x32, 0x22, 0x17, 0x1a, 0x8d, 0xc1, 0xb9, 0x2f, 0x1e, 0x83, 0xe5, 0x5f, - 0x46, 0x0c, 0x56, 0xfe, 0xcb, 0x31, 0x08, 0x5f, 0x3c, 0x06, 0xab, 0xbf, 0x9c, 0x18, 0xac, 0xfd, - 0x27, 0x62, 0xf0, 0xdf, 0x67, 0xa0, 0xf4, 0x41, 0xc4, 0x42, 0xf2, 0x3a, 0x54, 0x1e, 0x45, 0x2c, - 0xd4, 0xa7, 0x9e, 0x7a, 0x7e, 0x78, 0xa6, 0x55, 0xb1, 0xf2, 0x23, 0xf9, 0x4c, 0xbe, 0x0e, 0x75, - 0x84, 0xd0, 0x01, 0x75, 0x05, 0xae, 0xa8, 0xaf, 0x4a, 0x38, 0x6e, 0xe4, 0x90, 0xb3, 0xf6, 0x48, - 0xa3, 0x7d, 0x91, 0x1d, 0x0b, 0x5f, 0x31, 0xb1, 0x30, 0xa4, 0x31, 0x9e, 0x5b, 0x94, 0xf4, 0x15, - 0x13, 0x92, 0x9b, 0xde, 0x80, 0xbc, 0x06, 0x75, 0x9f, 0x76, 0x52, 0x1b, 0x7d, 0xc2, 0x33, 0x85, - 0x99, 0xb1, 0x88, 0xa8, 0x71, 0x09, 0xee, 0x18, 0x1e, 0x29, 0x6c, 0xc1, 0x42, 0xcc, 0xba, 0x67, - 0x3a, 0x64, 0x76, 0xfc, 0x18, 0x02, 0x45, 0x32, 0xcc, 0x6b, 0x50, 0xed, 0xc5, 0xd1, 0x29, 0x95, - 0xfb, 0x97, 0xb9, 0x4b, 0xf6, 0x2f, 0x28, 0x23, 0xf6, 0x2f, 0xaf, 0x41, 0xf5, 0xb4, 0xcf, 0xb2, - 0x1d, 0x4f, 0xf9, 0x12, 0x04, 0xca, 0x08, 0xc4, 0x5d, 0x58, 0xc0, 0x96, 0x68, 0xc1, 0x5d, 0x19, - 0xf3, 0x0b, 0x1b, 0xab, 0x05, 0xf4, 0x57, 0xc0, 0x10, 0x8d, 0x79, 0x6a, 0x59, 0x16, 0x0d, 0x1e, - 0x86, 0x45, 0xe9, 0xd9, 0x70, 0x26, 0x55, 0xc7, 0x61, 0x28, 0xa3, 0xc1, 0xee, 0xc3, 0x35, 0x01, - 0xa3, 0x1f, 0x6b, 0x48, 0xbb, 0x13, 0x47, 0x81, 0xcd, 0x42, 0x19, 0x8a, 0xba, 0x86, 0x35, 0x14, - 0xdf, 0xff, 0x38, 0xd7, 0x71, 0x10, 0x47, 0x41, 0x33, 0x24, 0xf7, 0x60, 0x8d, 0x25, 0x76, 0xd8, - 0xf7, 0x7d, 0xdb, 0x79, 0xe2, 0xc4, 0xd4, 0x4e, 0x68, 0xc0, 0x70, 0x44, 0xb0, 0x36, 0x97, 0xad, - 0x25, 0x96, 0xb4, 0xfa, 0xbe, 0xbf, 0xcd, 0x99, 0x6d, 0x1a, 0x30, 0x0c, 0xd7, 0x4b, 0xd2, 0xb7, - 0xfe, 0x45, 0xd2, 0xb7, 0xf1, 0xaf, 0x45, 0x98, 0x1f, 0x12, 0x22, 0xcb, 0x50, 0x94, 0x55, 0x57, - 0xa5, 0x70, 0x91, 0x79, 0xe4, 0x1e, 0x18, 0xf2, 0xf4, 0x80, 0xaf, 0xef, 0x84, 0xa5, 0xe2, 0xf8, - 0x80, 0x08, 0x19, 0xfe, 0x1f, 0x8b, 0xc3, 0x3d, 0x30, 0x52, 0x27, 0xee, 0xd2, 0x54, 0x43, 0x8d, - 0x9f, 0x72, 0xd5, 0x85, 0x4c, 0x86, 0xda, 0x02, 0x92, 0xd9, 0xca, 0x8f, 0xa9, 0xf5, 0x4d, 0x9b, - 0xa1, 0xec, 0x64, 0x47, 0xd6, 0x5b, 0x40, 0x32, 0x4b, 0x39, 0x46, 0x5f, 0x79, 0x1b, 0xca, 0x4a, - 0x86, 0x79, 0x03, 0xe6, 0xe2, 0x8e, 0xc8, 0xda, 0x59, 0x7d, 0xa1, 0x39, 0xd4, 0x1f, 0x5a, 0xea, - 0xce, 0xc6, 0x1d, 0x4c, 0x5a, 0x81, 0x0b, 0x22, 0x8f, 0xca, 0xc3, 0xaf, 0x49, 0x38, 0xed, 0xf8, - 0x6b, 0x36, 0xee, 0xf0, 0xa7, 0xc6, 0xf7, 0x8a, 0x50, 0xc9, 0xae, 0x26, 0x9e, 0x3d, 0xc7, 0xfd, - 0x52, 0x37, 0x2d, 0x6a, 0x12, 0x2c, 0x8d, 0x4d, 0x82, 0xab, 0x30, 0xdb, 0x0f, 0xd9, 0xc7, 0x7d, - 0xb1, 0x74, 0x2b, 0x5b, 0xf2, 0xe9, 0x92, 0xc9, 0x71, 0xf6, 0x92, 0xc9, 0xf1, 0xad, 0xb1, 0x25, - 0xef, 0xdc, 0x65, 0x4b, 0xde, 0xe1, 0x05, 0x6f, 0xe3, 0x7b, 0x05, 0xa8, 0x64, 0x77, 0x30, 0x64, - 0x13, 0x40, 0xcb, 0xc2, 0xc2, 0x58, 0xac, 0x68, 0x5c, 0x72, 0x0f, 0xea, 0x71, 0x2f, 0xd4, 0xb3, - 0x56, 0x44, 0xa4, 0x3c, 0x5f, 0xb6, 0x7a, 0xa1, 0xac, 0x5e, 0xbd, 0x50, 0x4b, 0xdb, 0xec, 0x38, - 0x6e, 0xfa, 0x29, 0xc7, 0x71, 0x8d, 0x4f, 0x0b, 0xfa, 0x25, 0x05, 0x59, 0x87, 0x19, 0x1e, 0xc1, - 0x93, 0x3c, 0x12, 0x0c, 0xb2, 0x09, 0x15, 0xee, 0x8c, 0x90, 0x9a, 0xe8, 0x47, 0x39, 0x16, 0x7f, - 0x9e, 0xd7, 0x85, 0x7f, 0x28, 0x42, 0x55, 0xbb, 0x6b, 0x22, 0x2f, 0x41, 0xb9, 0x1b, 0x47, 0xfd, - 0x9e, 0x7d, 0x7a, 0x31, 0xc1, 0x8d, 0x39, 0xe4, 0xed, 0x5c, 0x90, 0x3b, 0x50, 0xe3, 0x8e, 0x64, - 0xa2, 0xa5, 0x49, 0xbe, 0x40, 0xdc, 0x0b, 0xdf, 0x97, 0x80, 0x97, 0xa0, 0xec, 0x74, 0xbb, 0x62, - 0xc7, 0x37, 0x9e, 0xd2, 0x73, 0x4e, 0xb7, 0x2b, 0x37, 0x78, 0xa8, 0x37, 0x13, 0x9d, 0xb9, 0x4c, - 0xef, 0xb6, 0x04, 0xac, 0x43, 0x59, 0x9c, 0xd7, 0x52, 0x6f, 0x68, 0xed, 0x95, 0x51, 0xf3, 0x7e, - 0x98, 0x7d, 0xda, 0xc9, 0xe8, 0xdb, 0x50, 0xeb, 0xc5, 0x14, 0x0d, 0x8f, 0xe7, 0xdc, 0x09, 0x3b, - 0xf0, 0x9d, 0xe4, 0xec, 0x61, 0x4c, 0xb7, 0xbb, 0x5d, 0x9e, 0x65, 0x7c, 0xde, 0x51, 0xff, 0x1b, - 0x3f, 0x2a, 0x40, 0xe9, 0x24, 0xea, 0xb5, 0xc8, 0x2b, 0x50, 0xc6, 0x95, 0x7f, 0xde, 0x77, 0xf2, - 0x52, 0x64, 0xe7, 0xa2, 0x99, 0xd2, 0xc0, 0x9a, 0x43, 0xee, 0xce, 0x05, 0xb9, 0xaa, 0xee, 0xe8, - 0x8a, 0xda, 0x6d, 0x8b, 0xbc, 0x9c, 0x7b, 0xae, 0x61, 0xe3, 0xfd, 0x94, 0xaf, 0xf5, 0xb2, 0xfe, - 0x1f, 0x36, 0x57, 0xcd, 0x24, 0x76, 0x2e, 0x1a, 0x7f, 0x5f, 0x80, 0x19, 0xbc, 0x04, 0xcc, 0x8d, - 0x17, 0x9e, 0x62, 0xbc, 0xf8, 0x45, 0x8c, 0x4f, 0x3f, 0xc3, 0x38, 0x79, 0x03, 0x16, 0xd3, 0xb8, - 0x1f, 0xf2, 0xe5, 0x15, 0x9f, 0xfd, 0xc5, 0xee, 0xbd, 0x34, 0x3e, 0xf9, 0x29, 0xa1, 0x07, 0xf4, - 0x02, 0x77, 0xef, 0xef, 0x41, 0xe9, 0x01, 0xf3, 0x7d, 0xf2, 0x02, 0xcc, 0xba, 0x51, 0x18, 0x36, - 0xf7, 0x86, 0x7c, 0x96, 0x34, 0xde, 0x20, 0xb1, 0xbc, 0x2b, 0x6a, 0xe3, 0x2f, 0x48, 0x8d, 0x4f, - 0x4b, 0x60, 0x2a, 0xf7, 0xc5, 0x2f, 0x8b, 0xc2, 0x76, 0x3f, 0xe0, 0x75, 0x85, 0x6c, 0xc2, 0x22, - 0x4e, 0x6c, 0xbd, 0x38, 0x72, 0x69, 0xc2, 0x97, 0x7a, 0x58, 0x0d, 0x0a, 0x1b, 0x25, 0x6b, 0x81, - 0x33, 0x1e, 0x2a, 0x7a, 0x8b, 0x67, 0xde, 0x62, 0xd8, 0x0f, 0xb8, 0xa8, 0xd7, 0x77, 0xa9, 0x67, - 0xc7, 0xd1, 0x93, 0x44, 0x0c, 0x9f, 0xb5, 0x10, 0xf6, 0x83, 0x87, 0x92, 0x6e, 0x45, 0x4f, 0x12, - 0xf2, 0x12, 0xd4, 0xb9, 0x2c, 0x4b, 0x69, 0xec, 0x88, 0x92, 0x31, 0x8d, 0x82, 0xf3, 0x61, 0x3f, - 0x68, 0x66, 0xc4, 0xd1, 0x1b, 0xd2, 0xd2, 0xd8, 0x0d, 0xe9, 0x3a, 0x54, 0xdd, 0x28, 0x74, 0xfb, - 0x71, 0x4c, 0x43, 0xf7, 0x02, 0x2b, 0x67, 0xc9, 0xd2, 0x49, 0xe4, 0x10, 0x96, 0x53, 0xd6, 0xe1, - 0xb1, 0x89, 0xab, 0x79, 0x5e, 0xa5, 0xf0, 0x30, 0x68, 0x56, 0xbf, 0xb2, 0x94, 0xd1, 0xcb, 0xe7, - 0x83, 0x5d, 0xc1, 0xbf, 0x3f, 0x65, 0x11, 0x89, 0xd3, 0xa8, 0xdc, 0xef, 0xb8, 0xcf, 0x75, 0x24, - 0xfd, 0xa0, 0x97, 0xaa, 0x6b, 0x97, 0x9a, 0x35, 0x1f, 0xf7, 0x77, 0x73, 0x22, 0xf9, 0x20, 0x37, - 0x8a, 0x0b, 0xf2, 0x44, 0x74, 0xa7, 0xbc, 0x41, 0x1e, 0x36, 0xca, 0x17, 0xe5, 0xb2, 0xbb, 0x33, - 0x93, 0x1a, 0x8d, 0xb4, 0x61, 0x4d, 0xe9, 0x0a, 0x69, 0xfa, 0x24, 0x8a, 0xcf, 0x33, 0x75, 0xe2, - 0x62, 0xf9, 0xda, 0x90, 0xba, 0x16, 0x4d, 0x3f, 0x8a, 0xe2, 0x73, 0xa5, 0x71, 0x45, 0x62, 0x5b, - 0x02, 0x2a, 0xc9, 0x3b, 0x35, 0x80, 0x3d, 0x9a, 0x3a, 0xcc, 0xc7, 0xd2, 0xdf, 0x85, 0x65, 0x89, - 0xce, 0x02, 0x00, 0xcf, 0x4f, 0x8e, 0x61, 0x89, 0x2a, 0x82, 0x34, 0xca, 0xa8, 0xaa, 0xbd, 0x37, - 0x86, 0x23, 0x7f, 0x34, 0x74, 0x2c, 0x42, 0x87, 0x29, 0x8c, 0x26, 0x8d, 0xff, 0x03, 0x57, 0xa5, - 0x21, 0x8b, 0x76, 0x59, 0x14, 0xb6, 0xfa, 0xc1, 0x71, 0xa7, 0x19, 0xca, 0xa3, 0xd5, 0x9b, 0x50, - 0x65, 0xf2, 0xbf, 0x9a, 0x8c, 0x2b, 0x16, 0x28, 0x52, 0xd3, 0x23, 0xd7, 0x01, 0x62, 0xc4, 0xc9, - 0xab, 0x13, 0x3e, 0xd8, 0x95, 0x58, 0x69, 0x6a, 0xfc, 0xe6, 0x2d, 0x20, 0xe3, 0x23, 0x49, 0xee, - 0xc1, 0xb2, 0x17, 0x74, 0x98, 0xbc, 0xab, 0x0e, 0xa9, 0x67, 0xf7, 0x1c, 0xf7, 0x5c, 0x86, 0xf1, - 0x4e, 0xd1, 0x2c, 0x58, 0x44, 0xf0, 0xdb, 0x82, 0xfd, 0x90, 0x73, 0x75, 0xd4, 0x39, 0xeb, 0xf5, - 0x32, 0x54, 0x71, 0x0c, 0x25, 0xd8, 0x02, 0xf5, 0x26, 0x98, 0x12, 0xe5, 0x39, 0xa9, 0x93, 0x19, - 0xc4, 0x54, 0x10, 0x11, 0xbe, 0x22, 0xf8, 0x7b, 0x4e, 0xea, 0x48, 0x7b, 0x98, 0x10, 0xa3, 0x40, - 0x69, 0x13, 0x81, 0xa5, 0x31, 0xa0, 0xe0, 0x22, 0xf0, 0x2d, 0x58, 0x4b, 0xa3, 0xd4, 0xf1, 0x6d, - 0x09, 0x8f, 0x13, 0xdb, 0x8f, 0x1c, 0x8f, 0x6f, 0xff, 0x66, 0x32, 0x57, 0x97, 0x50, 0x64, 0x0f, - 0x25, 0xac, 0xe4, 0x30, 0x72, 0xbc, 0xa3, 0x84, 0xdc, 0x81, 0xe5, 0x61, 0x24, 0x15, 0xb0, 0x59, - 0x34, 0xb7, 0xa8, 0x43, 0x28, 0x02, 0xbe, 0xa2, 0x4c, 0x89, 0x3d, 0x44, 0x12, 0x3a, 0xbd, 0xe4, - 0x2c, 0x4a, 0x39, 0x66, 0x0e, 0x31, 0x42, 0xdf, 0x0e, 0xe7, 0xb6, 0x25, 0xf3, 0x08, 0x37, 0xdd, - 0x7e, 0xe4, 0x3a, 0xbe, 0x2d, 0x46, 0x2a, 0xc1, 0x2c, 0x28, 0x59, 0x35, 0x24, 0x8a, 0x38, 0xc0, - 0x82, 0x10, 0xd3, 0x20, 0x4a, 0x69, 0x26, 0x55, 0x11, 0x05, 0x41, 0x50, 0x95, 0xd8, 0xcb, 0xb0, - 0xd0, 0x4f, 0x68, 0x2c, 0x7c, 0x3d, 0xbd, 0x48, 0xa9, 0xd8, 0xe4, 0x96, 0xac, 0x79, 0x4e, 0xe6, - 0x7e, 0xe2, 0x2d, 0x12, 0x79, 0x1d, 0x56, 0x84, 0xab, 0x3e, 0x75, 0xe2, 0x50, 0x01, 0x82, 0x04, - 0xf7, 0xb7, 0x25, 0x8b, 0x20, 0xf3, 0x50, 0xf0, 0x64, 0xeb, 0xbe, 0x0a, 0xd7, 0x3c, 0x96, 0xf0, - 0xd9, 0x0d, 0x65, 0x5d, 0xc7, 0x3d, 0xa3, 0xf6, 0x19, 0x4b, 0xa5, 0x99, 0x1a, 0x02, 0xd7, 0x84, - 0x08, 0x87, 0xec, 0x72, 0x81, 0xfb, 0x2c, 0x15, 0x06, 0xbf, 0x0e, 0x2f, 0x8c, 0xa3, 0x03, 0x96, - 0x24, 0x12, 0x3e, 0x8f, 0x70, 0x73, 0x04, 0x7e, 0xc4, 0x92, 0x44, 0xe0, 0xdf, 0x00, 0x73, 0x74, - 0x18, 0xdd, 0x33, 0xea, 0x9e, 0x73, 0x9f, 0xeb, 0x5a, 0xe7, 0xaa, 0x31, 0xdc, 0xe5, 0xcc, 0xa3, - 0x84, 0xaf, 0x0e, 0x93, 0xd4, 0x51, 0xa3, 0xa7, 0xfa, 0x6e, 0x01, 0x11, 0x06, 0x72, 0xb8, 0x31, - 0xd5, 0x7d, 0x57, 0xa1, 0x9c, 0xd0, 0x6e, 0x40, 0xc3, 0x34, 0xc1, 0xb7, 0x2a, 0x4a, 0x56, 0xf6, - 0x2c, 0x92, 0xcb, 0x51, 0x17, 0x6e, 0x8b, 0x2a, 0xb9, 0x1c, 0x71, 0xdb, 0xc6, 0xd9, 0x1e, 0xf5, - 0x53, 0x47, 0x84, 0x24, 0x11, 0x6c, 0xa4, 0x60, 0x18, 0xde, 0x84, 0xaa, 0x60, 0x8b, 0xe6, 0x2e, - 0x21, 0x5f, 0x20, 0x44, 0x03, 0x5f, 0x86, 0x85, 0xe0, 0xb1, 0xeb, 0xda, 0x2c, 0xec, 0xf5, 0x53, - 0xa1, 0x64, 0x59, 0x8c, 0x1c, 0x27, 0x37, 0x39, 0x15, 0x15, 0x6d, 0x80, 0xa1, 0xc9, 0x09, 0x6d, - 0x2b, 0x28, 0x58, 0xcf, 0x04, 0x85, 0x46, 0x25, 0x19, 0xf5, 0xd3, 0x4c, 0xe5, 0x6a, 0x2e, 0x79, - 0x8c, 0x64, 0xd4, 0xb9, 0x0e, 0x35, 0x3f, 0xc0, 0x9c, 0x12, 0x52, 0x6b, 0xc2, 0x3b, 0x3f, 0xe0, - 0x89, 0x84, 0x12, 0xef, 0xc2, 0x55, 0x3d, 0xb4, 0xd1, 0xb8, 0xbc, 0x1b, 0x0f, 0x12, 0x7c, 0xa1, - 0xa1, 0x64, 0xad, 0xe5, 0xd1, 0xdd, 0xcc, 0xf9, 0x47, 0x5a, 0xb0, 0x09, 0xf0, 0x29, 0x4b, 0x03, - 0xa7, 0xc7, 0x71, 0x57, 0xb4, 0x60, 0x43, 0xdc, 0x0e, 0xb2, 0x8e, 0x12, 0xf2, 0x2a, 0x2c, 0x05, - 0x2c, 0xb4, 0x45, 0x5e, 0xe4, 0x86, 0xae, 0x8a, 0x71, 0x0b, 0x58, 0x78, 0xc8, 0x39, 0x6d, 0x65, - 0x81, 0x8b, 0x3b, 0x83, 0x31, 0xf1, 0x6b, 0x52, 0xdc, 0x19, 0x0c, 0x8b, 0xdf, 0x81, 0x65, 0xae, - 0x5d, 0x26, 0x54, 0x2e, 0xff, 0x82, 0xc8, 0xec, 0x80, 0x85, 0x16, 0xb2, 0x86, 0x00, 0xce, 0x60, - 0x1c, 0x70, 0x5d, 0x02, 0x9c, 0xc1, 0x08, 0xe0, 0x21, 0x2c, 0xc9, 0x58, 0xb3, 0xa3, 0x8e, 0xad, - 0x4a, 0xb4, 0x79, 0x03, 0x67, 0x86, 0xf5, 0xa1, 0x09, 0x69, 0x42, 0xa5, 0xb7, 0x16, 0x25, 0x58, - 0x2b, 0xfe, 0x79, 0x01, 0xc4, 0x41, 0x1d, 0xaa, 0x9c, 0x37, 0xf5, 0x02, 0x78, 0xf4, 0xd8, 0x75, - 0x27, 0x57, 0x4e, 0x01, 0xd4, 0x2b, 0xe7, 0xfa, 0x18, 0x50, 0xab, 0x9c, 0xef, 0xc1, 0x75, 0x09, - 0xf4, 0x03, 0xb5, 0x73, 0x1f, 0x32, 0x7b, 0x0b, 0xd1, 0x57, 0x84, 0xd0, 0x61, 0x20, 0xf6, 0x93, - 0xba, 0xe9, 0x89, 0x1a, 0x74, 0xfb, 0x8d, 0x89, 0x1a, 0x34, 0x1f, 0xee, 0xc1, 0xda, 0x63, 0xbc, - 0x59, 0xb5, 0x99, 0x37, 0x10, 0x85, 0x1b, 0xcf, 0x2d, 0x92, 0xbb, 0xa6, 0x87, 0xd8, 0x25, 0xc1, - 0x6e, 0x7a, 0x03, 0x5e, 0xb5, 0x0f, 0xe2, 0x28, 0x68, 0xdf, 0x25, 0x6f, 0xc1, 0x95, 0x89, 0x28, - 0x8f, 0x25, 0xe7, 0x26, 0x15, 0x6d, 0x1e, 0xc3, 0xed, 0xb1, 0xe4, 0x9c, 0xbc, 0x03, 0x57, 0x27, - 0x22, 0xb1, 0x5e, 0x99, 0x1d, 0x84, 0xae, 0x8e, 0x41, 0xb1, 0x56, 0x4d, 0xf2, 0x55, 0x1d, 0x34, - 0x76, 0x27, 0xf8, 0x2a, 0x0f, 0x1a, 0x87, 0x7d, 0x15, 0x57, 0xa6, 0x19, 0xee, 0x6c, 0xc4, 0x57, - 0x71, 0x6f, 0x9a, 0x1d, 0x51, 0xde, 0x1c, 0x47, 0x3e, 0x66, 0x09, 0x4b, 0xf9, 0x32, 0x34, 0xf2, - 0x68, 0x62, 0x32, 0xc4, 0x5f, 0x1b, 0xc1, 0x7f, 0x28, 0x64, 0x5a, 0x5c, 0x84, 0xdc, 0x87, 0x5b, - 0xe3, 0x5a, 0x3c, 0x96, 0xb8, 0x4e, 0xec, 0x65, 0x7a, 0x1e, 0xa1, 0x9e, 0xeb, 0x23, 0x7a, 0xf6, - 0x94, 0x94, 0xd0, 0xf4, 0x2e, 0x5c, 0xd3, 0x34, 0x61, 0xad, 0x7c, 0x4c, 0xdd, 0xac, 0x2d, 0xe7, - 0x23, 0x9d, 0xc7, 0xeb, 0xee, 0x87, 0xd4, 0x95, 0x8d, 0xd9, 0x86, 0x1b, 0xa3, 0x60, 0x3c, 0x85, - 0x4a, 0x32, 0xbc, 0x2f, 0x62, 0x65, 0x08, 0x7f, 0x8c, 0x22, 0x79, 0x4f, 0x66, 0x17, 0x63, 0x63, - 0xd1, 0x32, 0xc0, 0xcb, 0xc8, 0x15, 0x25, 0x30, 0x1c, 0x2f, 0x5f, 0x85, 0x6b, 0x97, 0x20, 0x31, - 0x62, 0x2e, 0x10, 0xbb, 0x36, 0x01, 0x8b, 0x31, 0xf3, 0x75, 0x78, 0xe1, 0x12, 0xb4, 0x88, 0x9a, - 0x4f, 0x10, 0x6e, 0x4e, 0x80, 0x8b, 0xb8, 0x99, 0xe8, 0xb7, 0x6a, 0xf5, 0xff, 0x15, 0x11, 0x30, - 0x02, 0x96, 0x2d, 0x1e, 0xf5, 0x7b, 0x24, 0x7a, 0xfe, 0x9f, 0x28, 0xcb, 0x1a, 0x76, 0x28, 0x7e, - 0xee, 0xc3, 0xad, 0x49, 0xe8, 0xe1, 0xe5, 0xdc, 0xff, 0x47, 0xe7, 0xaf, 0x8f, 0xe9, 0x18, 0x5a, - 0xd5, 0xbd, 0x3d, 0xd2, 0x02, 0x71, 0xca, 0x2d, 0x73, 0xfc, 0x57, 0xc4, 0xb8, 0x6b, 0x1a, 0xc4, - 0x81, 0xb6, 0x48, 0xf0, 0xcb, 0x9c, 0xc0, 0x83, 0x16, 0xa5, 0xe2, 0x57, 0x45, 0xf8, 0x8d, 0x3b, - 0x21, 0xa5, 0x50, 0xd3, 0xd7, 0xe0, 0x5a, 0x27, 0x4d, 0xec, 0x50, 0x1d, 0x6c, 0x06, 0x34, 0x88, - 0xe2, 0x0b, 0x3b, 0x8c, 0xd0, 0x1b, 0xf3, 0xfb, 0x05, 0x31, 0x8a, 0x9d, 0x34, 0x69, 0x89, 0xe3, - 0x4c, 0x21, 0xd0, 0x12, 0x7c, 0x3e, 0x49, 0x69, 0xf0, 0x94, 0x85, 0x17, 0xa2, 0x19, 0xe6, 0x6f, - 0x0b, 0xe0, 0xa2, 0x02, 0x9e, 0xb0, 0xf0, 0x02, 0x5b, 0xc0, 0xd7, 0x7b, 0xa3, 0x10, 0x65, 0xed, - 0x07, 0x02, 0xb4, 0xa4, 0x83, 0x94, 0xa5, 0x3b, 0xb0, 0xac, 0xc1, 0xbc, 0xa0, 0x23, 0x0d, 0xfd, - 0x8e, 0xc0, 0x18, 0x0a, 0xb3, 0x17, 0x74, 0x84, 0x9d, 0xbb, 0xb0, 0x3a, 0x02, 0x50, 0x66, 0x7e, - 0x57, 0x40, 0x88, 0x06, 0x51, 0x56, 0x76, 0xe1, 0x06, 0x07, 0xf1, 0xfe, 0xbb, 0xa4, 0x47, 0x7e, - 0x4f, 0xec, 0x53, 0xaf, 0x76, 0xd2, 0x84, 0x77, 0xe0, 0xa4, 0x4e, 0x79, 0x13, 0xcc, 0x61, 0x25, - 0x5a, 0xbf, 0xfc, 0xbe, 0x80, 0x2f, 0x6b, 0xf0, 0xbc, 0x6b, 0xde, 0x85, 0xab, 0x13, 0x80, 0xca, - 0xf2, 0x0f, 0x05, 0x74, 0x75, 0x04, 0xaa, 0xac, 0xca, 0x7e, 0xcd, 0xc1, 0x79, 0x1f, 0xfd, 0x81, - 0x40, 0x2e, 0x69, 0xc8, 0xac, 0x9b, 0xde, 0x86, 0x2b, 0xe3, 0x30, 0x65, 0xf2, 0x0f, 0x05, 0x70, - 0x65, 0x18, 0x38, 0x32, 0xf8, 0x79, 0xf6, 0xe1, 0x72, 0x25, 0x48, 0xcc, 0x3f, 0x12, 0x30, 0x3e, - 0xf8, 0x2a, 0xf5, 0x38, 0x4b, 0x2c, 0xf6, 0x87, 0x20, 0x5a, 0xc2, 0xff, 0x71, 0x3e, 0xf8, 0x63, - 0xc9, 0xfe, 0x1e, 0x5c, 0x9f, 0x00, 0x13, 0xe7, 0x96, 0x7c, 0x12, 0x34, 0x7f, 0x24, 0xc0, 0xe6, - 0x08, 0x18, 0x25, 0x0e, 0x98, 0x4f, 0x79, 0xd2, 0x8f, 0x6b, 0x48, 0xe4, 0xcb, 0xc6, 0x77, 0xcd, - 0x3f, 0x11, 0xf8, 0xd5, 0x61, 0x7c, 0x1b, 0xf9, 0xed, 0xbb, 0x93, 0xed, 0x4b, 0x34, 0x16, 0xbb, - 0x3f, 0x9d, 0x68, 0x5f, 0xe0, 0xb1, 0xdc, 0x6d, 0x80, 0xa1, 0x34, 0xc8, 0x64, 0x0d, 0xcd, 0x3f, - 0x13, 0xa0, 0x79, 0x01, 0x12, 0xc9, 0xd9, 0xd2, 0xbb, 0x48, 0x55, 0x26, 0xd5, 0xaf, 0x7f, 0x9e, - 0x8f, 0x63, 0x5e, 0x96, 0x64, 0xcf, 0xca, 0x70, 0xe7, 0x30, 0x2f, 0x50, 0x48, 0xac, 0x03, 0x7f, - 0x21, 0x50, 0x44, 0xa0, 0xf6, 0x02, 0x81, 0x93, 0xd9, 0xff, 0x82, 0x06, 0x12, 0x76, 0x70, 0x16, - 0xe1, 0xd4, 0x20, 0x31, 0x7f, 0x9c, 0x87, 0x1c, 0x42, 0xd1, 0x18, 0x9f, 0x42, 0x0e, 0xd2, 0xe4, - 0x28, 0x21, 0xbb, 0x70, 0x73, 0x32, 0x5c, 0x4e, 0x42, 0x41, 0x62, 0xfe, 0xa5, 0xd0, 0x70, 0x65, - 0x4c, 0x83, 0x98, 0x84, 0x8e, 0x12, 0x95, 0x2d, 0x5c, 0x09, 0x86, 0xbb, 0xee, 0xfa, 0x5f, 0xe5, - 0xd9, 0xd2, 0xf4, 0x06, 0x3c, 0xda, 0x35, 0xe7, 0xb7, 0x45, 0xae, 0x66, 0xc0, 0x71, 0xf7, 0xff, - 0x5a, 0xc0, 0xcd, 0x1c, 0x3e, 0xd2, 0x80, 0xf7, 0xe1, 0xd6, 0x65, 0x2a, 0xf2, 0x26, 0xfc, 0x8d, - 0xd0, 0x72, 0x6d, 0x82, 0x96, 0xac, 0x11, 0x72, 0xd0, 0x4e, 0xe3, 0x7e, 0x4a, 0x75, 0x2d, 0x41, - 0x62, 0xfe, 0x6d, 0x3e, 0x68, 0x3b, 0x9c, 0x9d, 0x81, 0x8f, 0x12, 0x95, 0x7c, 0x3a, 0x4c, 0x36, - 0x3f, 0x48, 0xcc, 0x9f, 0xe4, 0xc9, 0x97, 0x03, 0x45, 0xfb, 0x8f, 0x92, 0xc6, 0x8f, 0x0b, 0xd9, - 0xb1, 0x84, 0x7e, 0xae, 0xf3, 0x22, 0xd4, 0x03, 0x16, 0x9e, 0xb4, 0x8f, 0xc5, 0x11, 0x51, 0x76, - 0xae, 0x56, 0x13, 0x54, 0x2e, 0xda, 0xc2, 0x60, 0xe9, 0xb1, 0x1e, 0xf5, 0x59, 0x48, 0xed, 0x8f, - 0xfb, 0xb4, 0x4f, 0x33, 0x69, 0x71, 0xfc, 0xb1, 0xa4, 0xb8, 0xdf, 0xe4, 0x4c, 0x09, 0x7a, 0x13, - 0xcc, 0x0c, 0x74, 0x1a, 0x53, 0xe7, 0x9c, 0xc6, 0x19, 0x4c, 0x9e, 0x42, 0x28, 0xfe, 0x8e, 0x60, - 0x0b, 0x60, 0xe3, 0xdf, 0x0a, 0xb0, 0x32, 0xf1, 0x1c, 0x89, 0x57, 0x10, 0x71, 0xe9, 0x89, 0x2f, - 0x24, 0x26, 0x34, 0x54, 0xdb, 0x6f, 0x19, 0xb2, 0xc8, 0xfc, 0x4e, 0x14, 0xe2, 0xbb, 0xda, 0x62, - 0x7f, 0xf6, 0x26, 0x98, 0x1a, 0x44, 0x7e, 0x45, 0x21, 0x51, 0x45, 0x35, 0xed, 0x4b, 0x94, 0x7c, - 0x7f, 0x33, 0xdb, 0xbc, 0xb3, 0x30, 0x9d, 0x60, 0x6b, 0x5a, 0xd9, 0x4a, 0x27, 0xda, 0x4a, 0x27, - 0xdb, 0x2a, 0x29, 0x5b, 0xe9, 0xb8, 0xad, 0xc6, 0x27, 0x50, 0x6a, 0x47, 0x71, 0x4a, 0x5e, 0x86, - 0xb9, 0x53, 0x3c, 0x96, 0x4d, 0x26, 0x9f, 0x4b, 0x4b, 0x26, 0x79, 0x11, 0xe6, 0x59, 0x82, 0x6f, - 0x4a, 0x38, 0x3e, 0x07, 0xca, 0x97, 0x5f, 0x87, 0x89, 0xcf, 0x79, 0xb1, 0xf0, 0x1b, 0x45, 0x30, - 0xc4, 0xe7, 0x0c, 0x07, 0xb1, 0x13, 0xd0, 0x9d, 0xa8, 0x1f, 0x7a, 0xe4, 0x0e, 0x94, 0xb4, 0x7b, - 0xef, 0x15, 0xfd, 0xa3, 0x07, 0x14, 0xd0, 0xee, 0xc1, 0x50, 0x90, 0x34, 0xa0, 0xd2, 0x0f, 0x4f, - 0x39, 0x8b, 0x7a, 0x43, 0xe7, 0xbb, 0x39, 0x99, 0xac, 0xc2, 0xac, 0x78, 0xa9, 0x57, 0x76, 0xa1, - 0x7c, 0x22, 0x1b, 0x50, 0x71, 0x1d, 0xdf, 0x3d, 0xe8, 0x87, 0x6e, 0x32, 0xe1, 0xb4, 0x39, 0x67, - 0x92, 0xff, 0x05, 0xd5, 0x0e, 0x77, 0xd2, 0xc6, 0x57, 0x80, 0xe4, 0x87, 0x38, 0x43, 0x17, 0x42, - 0xc8, 0xc6, 0xb7, 0x85, 0xc8, 0x3b, 0x30, 0xef, 0x06, 0x3d, 0x71, 0x92, 0xa5, 0x5d, 0xeb, 0xc9, - 0x2f, 0x67, 0x50, 0x66, 0x37, 0xe8, 0xed, 0x39, 0xa9, 0x83, 0xf7, 0xcd, 0x55, 0x37, 0x7f, 0x68, - 0x7c, 0xbf, 0x00, 0x55, 0xad, 0x53, 0x9e, 0xd6, 0x1f, 0x28, 0x30, 0xd6, 0x1f, 0x5f, 0x86, 0x99, - 0x24, 0x75, 0xe4, 0xc8, 0x64, 0x9f, 0xeb, 0x8c, 0xf6, 0xb3, 0x25, 0x84, 0xc8, 0x06, 0x4c, 0xd3, - 0x50, 0x8d, 0xd3, 0x65, 0xb2, 0x5c, 0xa4, 0xf1, 0x8f, 0x05, 0x98, 0x15, 0x1c, 0xf2, 0x0a, 0x54, - 0x3a, 0xfd, 0xd0, 0xb5, 0xf1, 0x26, 0x6f, 0xfc, 0x0a, 0xa8, 0xcc, 0x99, 0x7b, 0x34, 0x71, 0xc7, - 0xae, 0x01, 0x8a, 0xcf, 0xba, 0x06, 0xd0, 0xef, 0x47, 0xa6, 0x9f, 0x76, 0x3f, 0xf2, 0x0a, 0xcc, - 0x60, 0x87, 0xcb, 0x37, 0xda, 0x16, 0xc7, 0x3c, 0xb7, 0x04, 0x3f, 0x0f, 0xc5, 0x99, 0xa7, 0x85, - 0xe2, 0x37, 0xa0, 0x86, 0xd7, 0x50, 0x2c, 0xec, 0xf2, 0x26, 0x90, 0x3b, 0x30, 0xdf, 0x95, 0xcf, - 0xe2, 0x2a, 0x62, 0xbc, 0x95, 0xb5, 0xae, 0x06, 0x68, 0xdc, 0x87, 0xaa, 0x52, 0xd0, 0xa6, 0x29, - 0x79, 0x1b, 0xea, 0x43, 0x78, 0x95, 0x55, 0xf2, 0x1a, 0x52, 0xb7, 0x65, 0xcd, 0xeb, 0x8a, 0x92, - 0xc6, 0xa7, 0x05, 0x98, 0x15, 0xdf, 0xbe, 0x90, 0x37, 0x34, 0x2f, 0xb2, 0x37, 0xd2, 0xb3, 0xc6, - 0x6a, 0xf6, 0x72, 0x67, 0xda, 0x34, 0x4d, 0x9e, 0xf3, 0x8e, 0xc6, 0x84, 0xb9, 0xc7, 0x34, 0xc6, - 0x6f, 0x27, 0x44, 0x56, 0xa8, 0xc7, 0xc6, 0xab, 0x50, 0xe1, 0xbe, 0x88, 0x77, 0xd1, 0x9f, 0x79, - 0xe5, 0xd8, 0xf8, 0xad, 0x02, 0xcc, 0xc9, 0xaf, 0x75, 0xc8, 0x6d, 0x80, 0x5e, 0x1c, 0x3d, 0x1a, - 0x6a, 0xf4, 0x42, 0x0e, 0x11, 0x5f, 0x50, 0x54, 0xb8, 0x88, 0xb8, 0x82, 0xbc, 0x07, 0xab, 0x5d, - 0x1a, 0xd2, 0x18, 0x5f, 0xc3, 0x91, 0x27, 0x59, 0xe2, 0x75, 0xd6, 0x22, 0xbe, 0xce, 0xba, 0x9c, - 0x71, 0xc5, 0x79, 0x96, 0x78, 0xaf, 0xf5, 0xf9, 0xea, 0xcb, 0xcb, 0x50, 0x1f, 0xfe, 0x26, 0x88, - 0x2c, 0xab, 0x7b, 0x20, 0x71, 0xb6, 0x2e, 0x1e, 0x36, 0xbf, 0x3f, 0x2d, 0x3e, 0x0f, 0xc4, 0x4b, - 0xf5, 0x45, 0x98, 0xe7, 0xbf, 0xd9, 0x3b, 0x60, 0xc6, 0x94, 0x22, 0x65, 0x57, 0xe6, 0x46, 0x41, - 0x91, 0xb2, 0xfb, 0x62, 0xa3, 0x48, 0x96, 0x60, 0x81, 0x93, 0xb4, 0x9b, 0x52, 0x63, 0x9a, 0xd4, - 0xa0, 0x8c, 0xda, 0xa2, 0x5e, 0xcb, 0x28, 0x91, 0x79, 0xa8, 0xf0, 0x27, 0xbc, 0x64, 0x33, 0x66, - 0x32, 0x25, 0x78, 0xa8, 0xb4, 0xdd, 0xed, 0x1a, 0xb3, 0x4a, 0xfe, 0x83, 0x88, 0x85, 0xc6, 0x9c, - 0x7a, 0x7a, 0xc0, 0x7c, 0xdf, 0x28, 0x93, 0x55, 0x20, 0xfc, 0x69, 0xf8, 0xa3, 0x20, 0xa3, 0x42, - 0x4c, 0x58, 0xd6, 0xe9, 0xea, 0x53, 0x00, 0x03, 0x08, 0x81, 0x3a, 0xe7, 0xe4, 0xf7, 0xc7, 0x46, - 0x95, 0x5c, 0x85, 0x55, 0xa4, 0x8d, 0xbd, 0xec, 0x66, 0xd4, 0x94, 0x3d, 0x5e, 0xc2, 0x8d, 0x79, - 0x52, 0x07, 0xe0, 0x4f, 0x22, 0xa7, 0x8c, 0xba, 0x7a, 0x16, 0x23, 0x6d, 0x2c, 0x90, 0x05, 0xa8, - 0xe6, 0xcf, 0x5b, 0x86, 0xa1, 0x1c, 0x1c, 0xee, 0x73, 0x63, 0x51, 0x09, 0xca, 0x0f, 0x5f, 0x0c, - 0xa2, 0x1a, 0x9e, 0x7d, 0x34, 0x62, 0x2c, 0xa9, 0xde, 0xd3, 0x3e, 0xcb, 0x30, 0x96, 0x37, 0xdf, - 0x82, 0x9a, 0xfe, 0x79, 0x01, 0x57, 0xf4, 0xd0, 0x49, 0x92, 0x93, 0xb3, 0x38, 0xea, 0x77, 0xcf, - 0x8c, 0x29, 0xde, 0xa1, 0x99, 0x35, 0xa3, 0x40, 0xca, 0x50, 0xba, 0xef, 0x24, 0x67, 0x46, 0x71, - 0xf3, 0x5d, 0x58, 0x18, 0xf9, 0x04, 0x88, 0x33, 0x5b, 0xc7, 0xad, 0x7d, 0x63, 0x8a, 0xff, 0x3b, - 0xd8, 0x6e, 0x9f, 0x18, 0x05, 0xb2, 0x0c, 0xc6, 0xfd, 0xe6, 0xfb, 0xf7, 0xed, 0xdd, 0xe3, 0xa3, - 0x87, 0xd6, 0x7e, 0xbb, 0xdd, 0x3c, 0x6e, 0x19, 0xc5, 0xcd, 0xdb, 0x00, 0xf9, 0x0b, 0xa3, 0xa4, - 0x02, 0x33, 0x78, 0xba, 0x28, 0x80, 0x27, 0xec, 0xc1, 0x87, 0x46, 0x81, 0x54, 0x61, 0x4e, 0xae, - 0x13, 0x8c, 0xe2, 0xe6, 0x5d, 0x58, 0x10, 0x9f, 0x07, 0xa0, 0xf7, 0x0f, 0x58, 0xc8, 0x27, 0x1c, - 0xd2, 0x6c, 0x7d, 0xb8, 0x7d, 0xd8, 0xdc, 0xb3, 0x9b, 0xad, 0xbd, 0xfd, 0x6f, 0xdb, 0x0f, 0x9a, - 0xad, 0x3d, 0xa1, 0xe1, 0x7e, 0xab, 0xfd, 0x91, 0x51, 0xd8, 0x3c, 0x85, 0xe5, 0x49, 0xdf, 0x14, - 0x90, 0x6b, 0xb0, 0xa6, 0x90, 0x7b, 0xcd, 0xf6, 0xc9, 0x76, 0x6b, 0x77, 0xdf, 0x3e, 0xda, 0x3f, - 0xb1, 0x9a, 0xbb, 0xc6, 0x14, 0x99, 0x85, 0xe2, 0xe1, 0xeb, 0x46, 0x01, 0x7f, 0xb7, 0x8c, 0x22, - 0x01, 0x98, 0xdd, 0x3d, 0x6e, 0x37, 0x5b, 0xfb, 0xc6, 0x34, 0xef, 0xd4, 0x66, 0xab, 0xb5, 0x6f, - 0xd9, 0x0f, 0xad, 0xe3, 0xbd, 0x6f, 0xed, 0x9e, 0x18, 0xa5, 0xcd, 0xd7, 0xf3, 0xaf, 0x23, 0xb0, - 0x29, 0xcb, 0x60, 0x34, 0xc3, 0xc7, 0x8e, 0xcf, 0xbc, 0x8c, 0x66, 0x4c, 0xf1, 0xb6, 0x1c, 0x8b, - 0xaa, 0x6a, 0x14, 0x36, 0xff, 0x77, 0xfe, 0xaa, 0x3b, 0x42, 0xd6, 0x60, 0x49, 0x7f, 0x96, 0x70, - 0x63, 0x6a, 0x94, 0xd1, 0x8a, 0xda, 0x6e, 0x14, 0x53, 0xa3, 0x40, 0xae, 0xc0, 0x8a, 0xce, 0xf8, - 0x88, 0xa5, 0x67, 0x82, 0x55, 0xdc, 0xfc, 0xf6, 0xc8, 0x9b, 0xd6, 0x6a, 0x50, 0x87, 0x35, 0xcb, - 0x38, 0x13, 0xbd, 0x63, 0x14, 0x88, 0x01, 0x35, 0x29, 0x80, 0xa7, 0x03, 0x46, 0x51, 0x51, 0x0e, - 0xfa, 0xbe, 0x9f, 0xd2, 0x41, 0x6a, 0x4c, 0x6f, 0xfe, 0xa4, 0x00, 0x65, 0xf5, 0x72, 0x5c, 0x9e, - 0xaf, 0x21, 0x8d, 0x31, 0x93, 0xa6, 0xc8, 0x0a, 0x2c, 0x62, 0xe6, 0xd1, 0x4e, 0x7a, 0xdc, 0x4f, - 0x25, 0xb9, 0xa0, 0x22, 0xd6, 0x62, 0xdd, 0x33, 0x8d, 0x9e, 0x19, 0x50, 0xaf, 0x38, 0x19, 0xd3, - 0xbc, 0xeb, 0x30, 0xbb, 0xc3, 0x94, 0x65, 0xd4, 0x12, 0x6f, 0xeb, 0x90, 0xda, 0x8c, 0x35, 0x43, - 0xae, 0xc3, 0x15, 0x05, 0x18, 0x67, 0xcf, 0x6e, 0xae, 0x43, 0x4d, 0x7f, 0x29, 0x4f, 0x59, 0xe4, - 0xe1, 0x2b, 0x5c, 0xde, 0x7c, 0x07, 0x16, 0xc7, 0x5e, 0x00, 0xe2, 0x03, 0xdf, 0x6c, 0x89, 0x31, - 0x3b, 0x6a, 0xb6, 0xec, 0xa3, 0xed, 0x6f, 0x8b, 0x0e, 0xda, 0x39, 0x3c, 0x3e, 0x3e, 0xb2, 0x0f, - 0x9a, 0x87, 0x27, 0xfb, 0x96, 0x51, 0xdc, 0xdc, 0x1c, 0xc1, 0x62, 0x02, 0xf0, 0x40, 0x3e, 0xde, - 0xdd, 0x3e, 0x34, 0xa6, 0x78, 0xdc, 0xbc, 0x7f, 0x78, 0xbc, 0xb3, 0x7d, 0x68, 0x14, 0x36, 0x77, - 0x60, 0x71, 0xec, 0xe5, 0x05, 0x3e, 0x28, 0x07, 0x51, 0xec, 0x52, 0x41, 0x12, 0x81, 0xbb, 0xdd, - 0x4f, 0x23, 0xa3, 0xc0, 0x8b, 0x0a, 0xb2, 0x44, 0xd9, 0x62, 0x61, 0xd7, 0x28, 0x6e, 0x7e, 0x03, - 0x16, 0x46, 0x96, 0x68, 0x3c, 0x35, 0x0f, 0x22, 0xdf, 0x8f, 0x9e, 0x70, 0x09, 0xcc, 0xd4, 0x87, - 0x7c, 0x59, 0xea, 0xf1, 0xc7, 0x02, 0x1f, 0xe3, 0x5d, 0xbc, 0xa1, 0x4e, 0xad, 0xe8, 0x89, 0x51, - 0xdc, 0x3c, 0x06, 0x63, 0x74, 0x59, 0x44, 0xe6, 0x60, 0xba, 0x19, 0xa6, 0xc6, 0x14, 0x77, 0xfc, - 0xc0, 0x8f, 0x9c, 0x54, 0xe4, 0xdd, 0x1e, 0x75, 0x59, 0xe0, 0xf8, 0x46, 0x91, 0x97, 0xab, 0x3d, - 0x27, 0xa5, 0x27, 0x2c, 0xa0, 0xa2, 0xd4, 0xee, 0xf5, 0xc5, 0xc5, 0xb9, 0x51, 0xe2, 0x39, 0x39, - 0xb2, 0x48, 0xe2, 0x4d, 0xe0, 0xbb, 0x31, 0xd1, 0x7c, 0xb4, 0x96, 0x18, 0x05, 0xec, 0x0a, 0x3e, - 0x77, 0x26, 0x46, 0x71, 0xe7, 0xed, 0x5f, 0xfc, 0xb8, 0x5c, 0xf8, 0xe9, 0x67, 0x37, 0x0a, 0x3f, - 0xfb, 0xec, 0x46, 0xe1, 0x5f, 0x3e, 0xbb, 0x51, 0xf8, 0xf5, 0xcf, 0x6f, 0x4c, 0xfd, 0xe0, 0xf3, - 0x1b, 0x53, 0x3f, 0xfb, 0xfc, 0xc6, 0xd4, 0x2f, 0x3e, 0xbf, 0x31, 0x05, 0x2b, 0x6e, 0x14, 0xdc, - 0xe6, 0xf3, 0xac, 0xeb, 0xf4, 0x6e, 0xa7, 0xcc, 0x3b, 0xc5, 0x99, 0xe7, 0x61, 0xe1, 0x3f, 0x02, - 0x00, 0x00, 0xff, 0xff, 0x16, 0xd9, 0x26, 0x45, 0xc0, 0x3e, 0x00, 0x00, + // 6007 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xcc, 0x5b, 0x59, 0x73, 0x1c, 0xc9, + 0x71, 0xc6, 0x0c, 0x06, 0xc0, 0x4c, 0xce, 0x60, 0xd0, 0x28, 0x5c, 0x4d, 0x72, 0x49, 0x82, 0xb3, + 0x17, 0x02, 0xd6, 0x92, 0xbb, 0x20, 0xb5, 0xa7, 0x8e, 0xc5, 0xb9, 0x1c, 0x12, 0x18, 0x50, 0x3d, + 0xd0, 0xae, 0x42, 0x76, 0x44, 0x47, 0xa3, 0xbb, 0x66, 0x50, 0x44, 0x1f, 0xb3, 0xdd, 0x3d, 0x24, + 0xb0, 0xbe, 0xd6, 0xaf, 0x7a, 0x72, 0xd8, 0x61, 0x59, 0x3e, 0xe4, 0x43, 0xbe, 0xe4, 0x4b, 0x11, + 0xf6, 0x2f, 0xf0, 0xa3, 0x7c, 0x45, 0x28, 0xf4, 0xa4, 0xb0, 0x23, 0x1c, 0x8a, 0xdd, 0x27, 0x3f, + 0xf9, 0xdd, 0x4f, 0x8e, 0xca, 0xaa, 0xea, 0xae, 0x39, 0x40, 0x72, 0xad, 0x0d, 0x87, 0x9f, 0x66, + 0x3a, 0x33, 0xbf, 0xcc, 0xac, 0xaa, 0xcc, 0xac, 0xea, 0xaa, 0x6a, 0xa8, 0xd3, 0x33, 0xea, 0xf6, + 0xd3, 0x28, 0xbe, 0xd9, 0x8b, 0xa3, 0x34, 0x22, 0xa5, 0x94, 0xf5, 0x8e, 0x2f, 0x1b, 0xf4, 0xac, + 0x17, 0xd3, 0x24, 0x61, 0x51, 0x28, 0xe8, 0x97, 0x6b, 0x89, 0x7b, 0x42, 0x03, 0x47, 0x3e, 0x2d, + 0x76, 0xa3, 0x6e, 0x84, 0x7f, 0x6f, 0xf1, 0x7f, 0x92, 0x3a, 0x17, 0xf7, 0x93, 0x14, 0xff, 0x0a, + 0x42, 0xe3, 0xef, 0x2a, 0x50, 0xde, 0x95, 0xfa, 0xc9, 0x0b, 0x50, 0x4c, 0x7b, 0x66, 0x61, 0xb5, + 0xb0, 0x56, 0xdf, 0xa8, 0xdf, 0xe4, 0x66, 0x6e, 0x72, 0xde, 0xd1, 0x79, 0x8f, 0x6e, 0x95, 0x7e, + 0xf8, 0x1f, 0xd7, 0x27, 0xac, 0x62, 0xda, 0x23, 0xeb, 0x50, 0x4e, 0x8f, 0x7d, 0x3b, 0x71, 0x9d, + 0xd0, 0x2c, 0xae, 0x16, 0xd6, 0xaa, 0x1b, 0x73, 0x42, 0xf6, 0xc8, 0x39, 0xf6, 0x69, 0xdb, 0x75, + 0x42, 0x6b, 0x26, 0x3d, 0xf6, 0xf9, 0x1f, 0x2e, 0xcb, 0xbc, 0x33, 0x21, 0x3b, 0xa9, 0xcb, 0x36, + 0x43, 0x8f, 0x9e, 0x09, 0x59, 0xe6, 0xe1, 0x1f, 0xf2, 0x0a, 0x54, 0x12, 0xea, 0x53, 0x37, 0x65, + 0x51, 0x68, 0x96, 0x74, 0xe1, 0xb6, 0x22, 0x5b, 0xb9, 0x04, 0xb9, 0x0d, 0x55, 0xa7, 0xdb, 0x8d, + 0x69, 0xd7, 0x41, 0xc0, 0x14, 0x02, 0xe6, 0x05, 0x60, 0x33, 0x67, 0x58, 0xba, 0x14, 0xb9, 0x06, + 0xa5, 0x34, 0xea, 0xb5, 0xcc, 0x69, 0x94, 0x06, 0xe9, 0x77, 0xd4, 0x6b, 0x59, 0x48, 0x27, 0x37, + 0x60, 0xca, 0x67, 0x01, 0x4b, 0xcd, 0x19, 0x14, 0xa8, 0x0a, 0x81, 0x7d, 0x4e, 0xb2, 0x04, 0x87, + 0x6c, 0xc3, 0x3c, 0x3d, 0x73, 0x4f, 0x9c, 0xb0, 0x4b, 0xed, 0x98, 0xba, 0x94, 0x3d, 0xa2, 0xb1, + 0x59, 0x46, 0xf1, 0x65, 0xd5, 0x67, 0x82, 0x6d, 0x49, 0xae, 0x65, 0xd0, 0x21, 0x0a, 0xf7, 0xe3, + 0x61, 0xc4, 0x42, 0xb3, 0xa2, 0xfb, 0x71, 0x2f, 0x62, 0xa1, 0x85, 0x74, 0x72, 0x1d, 0xaa, 0x6a, + 0xd4, 0x6d, 0xe6, 0x99, 0xb0, 0x5a, 0x58, 0xab, 0x58, 0xa0, 0x48, 0x4d, 0x8f, 0x2b, 0x38, 0x65, + 0xbe, 0x6f, 0x56, 0x75, 0x05, 0xf7, 0x99, 0xef, 0x5b, 0x48, 0x27, 0x5f, 0x86, 0xb9, 0xcc, 0xcb, + 0x84, 0x86, 0x1e, 0x8d, 0xcd, 0x1a, 0x8a, 0x2e, 0x0e, 0xfa, 0xd8, 0x46, 0x9e, 0x55, 0xa7, 0x03, + 0xcf, 0xe4, 0x55, 0x80, 0x07, 0x71, 0xf4, 0x50, 0x0e, 0xc6, 0x2c, 0x22, 0x0d, 0x81, 0xcc, 0xe9, + 0x96, 0x26, 0x43, 0xee, 0xc1, 0x62, 0xcf, 0x89, 0x53, 0xc6, 0x1f, 0xec, 0x94, 0x47, 0x82, 0x18, + 0xf5, 0x3a, 0x62, 0x4d, 0x89, 0x55, 0x12, 0x79, 0xa8, 0x90, 0xde, 0x08, 0x8d, 0x37, 0x2e, 0x89, + 0xe2, 0xd4, 0x9c, 0xd3, 0x1b, 0xd7, 0x8e, 0xe2, 0xd4, 0x42, 0x3a, 0x79, 0x01, 0xa6, 0x1f, 0xb3, + 0xd0, 0x8b, 0x1e, 0x9b, 0x06, 0x4a, 0xd4, 0x84, 0xc4, 0x07, 0x48, 0xb3, 0x24, 0x8f, 0xb4, 0xe0, + 0x46, 0x87, 0x85, 0xd4, 0xee, 0xc6, 0x0e, 0x0b, 0xa9, 0x67, 0x27, 0x27, 0xfd, 0x4e, 0x87, 0xbb, + 0x95, 0xc6, 0xd4, 0x09, 0x6c, 0x37, 0xea, 0x87, 0xa9, 0x39, 0xbf, 0x5a, 0x58, 0x2b, 0xc9, 0xe0, + 0xbe, 0xca, 0xc5, 0xdf, 0x13, 0xd2, 0x6d, 0x21, 0xdc, 0x46, 0xd9, 0x6d, 0x2e, 0x4a, 0xee, 0xc1, + 0xf5, 0xb1, 0xfa, 0x8e, 0x9d, 0xd4, 0x3d, 0xb1, 0x13, 0xf6, 0x11, 0x35, 0x89, 0xa6, 0xed, 0xca, + 0xa8, 0xb6, 0x2d, 0x2e, 0xd9, 0x66, 0x1f, 0x51, 0xde, 0x02, 0x7a, 0xd6, 0x73, 0x42, 0xcf, 0x5c, + 0xd0, 0x5b, 0xb0, 0x8b, 0x34, 0x4b, 0xf2, 0xc8, 0xcb, 0x30, 0x23, 0xfe, 0x6d, 0x98, 0x8b, 0x28, + 0x36, 0xab, 0x8b, 0x6d, 0x58, 0x8a, 0xcb, 0x47, 0xfb, 0x38, 0x8e, 0x1c, 0xcf, 0x75, 0x92, 0xd4, + 0xfe, 0xb0, 0x4f, 0xe3, 0x73, 0x73, 0x49, 0x1f, 0xed, 0x2d, 0xc5, 0xfc, 0x1a, 0xe7, 0x59, 0xf5, + 0xe3, 0x81, 0x67, 0xb2, 0x06, 0x65, 0x37, 0xa5, 0x76, 0xc2, 0xc2, 0x53, 0x73, 0x59, 0x37, 0xb4, + 0x7d, 0xb4, 0xdb, 0x66, 0xe1, 0xa9, 0x35, 0xe3, 0xa6, 0x94, 0xff, 0x21, 0x37, 0x01, 0x50, 0x32, + 0xea, 0xc7, 0x2e, 0x35, 0x57, 0xf4, 0x24, 0xe5, 0xb2, 0x48, 0xb6, 0x2a, 0x5c, 0x1a, 0xff, 0x92, + 0x3b, 0x50, 0x63, 0x3c, 0xd3, 0x6d, 0x3f, 0x8a, 0x4e, 0xfb, 0x3d, 0xd3, 0xd4, 0xb3, 0x14, 0x6b, + 0xc0, 0x7e, 0x14, 0x9d, 0x7e, 0xbd, 0x67, 0x55, 0x99, 0x7a, 0xe8, 0xf7, 0xc8, 0x55, 0x80, 0x9e, + 0x13, 0xd3, 0x30, 0xb5, 0x99, 0x77, 0x66, 0x5e, 0x5a, 0x2d, 0xac, 0xcd, 0x5a, 0x15, 0x41, 0x69, + 0x7a, 0x67, 0x8d, 0x1f, 0x4f, 0x42, 0x7d, 0x30, 0x7e, 0xc9, 0x9a, 0x56, 0xb9, 0xc8, 0x60, 0x84, + 0x8f, 0x54, 0xaf, 0x79, 0x1a, 0xba, 0x91, 0x47, 0x3d, 0x3b, 0x75, 0x92, 0x53, 0x3b, 0xa0, 0xa9, + 0x63, 0x16, 0x57, 0x27, 0xd7, 0x6a, 0xd6, 0x9c, 0x64, 0x1c, 0x39, 0xc9, 0xe9, 0x01, 0x4d, 0x1d, + 0xf2, 0x1a, 0xd4, 0xf3, 0x98, 0x3e, 0xa5, 0xe7, 0x89, 0x39, 0xb9, 0x3a, 0x99, 0x47, 0xe4, 0xee, + 0x59, 0x2f, 0xb6, 0x66, 0x33, 0x89, 0xfb, 0xf4, 0x3c, 0x21, 0x2f, 0xc0, 0x94, 0x7b, 0xc2, 0x7c, + 0x4f, 0x16, 0x30, 0xad, 0x8a, 0xf2, 0xc4, 0xb5, 0x04, 0x93, 0xbc, 0x08, 0x53, 0xe9, 0x79, 0x8f, + 0x26, 0xe6, 0x14, 0xea, 0x93, 0x3d, 0xb8, 0xc7, 0xa8, 0xef, 0x71, 0x77, 0x2d, 0xc1, 0x25, 0x6f, + 0xc0, 0x9c, 0xe3, 0xfb, 0x76, 0x87, 0xd3, 0x6d, 0x01, 0x98, 0x1e, 0x0f, 0x98, 0x75, 0x7c, 0x3f, + 0x7b, 0x4a, 0xc8, 0x97, 0xa1, 0xea, 0x46, 0x81, 0x9a, 0x1f, 0xb0, 0x98, 0xd5, 0x37, 0x96, 0xe4, + 0x38, 0xe5, 0x8c, 0x83, 0xc8, 0x53, 0x5d, 0xa3, 0xcb, 0x93, 0x7d, 0x58, 0xee, 0xf7, 0x54, 0x9a, + 0xa4, 0x54, 0xeb, 0xa8, 0x32, 0x9a, 0x5f, 0x91, 0xad, 0x12, 0xdd, 0xb5, 0x75, 0x9e, 0xd2, 0xa4, + 0xed, 0x33, 0x97, 0x5a, 0x0b, 0x0a, 0xb6, 0x9d, 0xd2, 0xac, 0x17, 0x5f, 0x80, 0x7a, 0xe2, 0x04, + 0xd4, 0xfe, 0x28, 0x0a, 0xa9, 0xdd, 0xf1, 0x9d, 0xae, 0x59, 0x59, 0x9d, 0x5c, 0x2b, 0x5b, 0x35, + 0x4e, 0xfd, 0x66, 0x14, 0xd2, 0x3d, 0xdf, 0xe9, 0x36, 0x7e, 0x5c, 0x80, 0x19, 0x19, 0x6e, 0xe4, + 0x0a, 0x4c, 0x73, 0xb3, 0xcc, 0x33, 0x0b, 0xab, 0xc5, 0xb5, 0x59, 0xe9, 0xe2, 0x94, 0x9b, 0xd2, + 0xa6, 0x47, 0xd6, 0xa1, 0x9e, 0x87, 0xa0, 0x1d, 0xf6, 0x03, 0xb3, 0xa8, 0x09, 0xd5, 0xb2, 0xd8, + 0x6b, 0xf5, 0x03, 0xf2, 0x12, 0xd4, 0x54, 0x60, 0xa3, 0xe4, 0xa4, 0x26, 0x09, 0x32, 0xa6, 0xb9, + 0xdc, 0xb3, 0x8d, 0xda, 0xab, 0x50, 0xd5, 0x87, 0xe2, 0x82, 0xb1, 0x83, 0x4e, 0x36, 0x0e, 0x8d, + 0x1f, 0x14, 0xa0, 0x92, 0xe5, 0xc5, 0xff, 0x7d, 0xb3, 0x86, 0x1c, 0x2e, 0x3d, 0xdd, 0xe1, 0x6f, + 0x15, 0xa0, 0xaa, 0xa5, 0x25, 0x79, 0x15, 0x16, 0x45, 0xfe, 0x9e, 0x38, 0xa1, 0xe7, 0x53, 0x3b, + 0xea, 0x74, 0x12, 0x9a, 0x26, 0x66, 0x61, 0x75, 0x72, 0x6d, 0xd6, 0x22, 0xc8, 0xbb, 0x8b, 0xac, + 0x43, 0xc1, 0xe1, 0xb9, 0x7b, 0x4a, 0x69, 0xcf, 0x8e, 0x62, 0x3e, 0xe7, 0xf0, 0xf5, 0x41, 0xd9, + 0xaa, 0x70, 0xca, 0x21, 0x27, 0xf0, 0x05, 0x01, 0x76, 0x66, 0x4c, 0x43, 0x99, 0x4c, 0xc3, 0x9d, + 0x9d, 0xf1, 0x1b, 0x6f, 0xc2, 0xfc, 0x48, 0x88, 0x91, 0xe7, 0x61, 0x56, 0xcf, 0x5f, 0xe1, 0x4a, + 0xcd, 0xaa, 0x69, 0xb9, 0x9b, 0x34, 0x3e, 0x2e, 0x82, 0x31, 0x3c, 0x0b, 0x8f, 0xcf, 0xfc, 0xc2, + 0xf8, 0xcc, 0x1f, 0xea, 0xb9, 0xe2, 0x53, 0x7b, 0x8e, 0x34, 0xb0, 0x02, 0x4d, 0x5e, 0x54, 0x81, + 0xb0, 0xf6, 0xec, 0xc0, 0xf5, 0x28, 0x66, 0x5d, 0x16, 0x3a, 0x3e, 0xe6, 0x55, 0x2f, 0xf6, 0x22, + 0xb7, 0x4f, 0x63, 0xcd, 0x9f, 0x12, 0xfa, 0x73, 0x45, 0x89, 0x6d, 0xa7, 0xf4, 0x81, 0x14, 0x7a, + 0x42, 0x3e, 0x4d, 0x8d, 0xc9, 0xa7, 0x6f, 0x95, 0xa0, 0xb6, 0xd9, 0x6a, 0x61, 0x81, 0x6f, 0x86, + 0x9d, 0x88, 0xbc, 0x01, 0x80, 0x33, 0x03, 0x36, 0x69, 0xb0, 0x54, 0x2a, 0x39, 0xad, 0x54, 0x56, + 0x3e, 0x54, 0x04, 0xd2, 0x84, 0x39, 0x8f, 0x25, 0xa9, 0x13, 0xba, 0x94, 0xfb, 0x18, 0x33, 0x17, + 0x87, 0xb5, 0xbe, 0x71, 0x59, 0xa0, 0xdf, 0xa7, 0x6e, 0x1a, 0xc5, 0x3b, 0x52, 0xe4, 0x00, 0x25, + 0xa4, 0x96, 0xba, 0x37, 0x40, 0x25, 0x97, 0x60, 0x2a, 0x8d, 0x7a, 0xf6, 0x29, 0xf6, 0x93, 0x8a, + 0x58, 0xbe, 0xf2, 0xba, 0x4f, 0x5e, 0xe4, 0x25, 0xcb, 0xef, 0x07, 0xa1, 0x1d, 0x3a, 0x01, 0xc5, + 0x44, 0xac, 0x64, 0x21, 0x8d, 0x8c, 0x96, 0x13, 0x50, 0x1e, 0x90, 0x1e, 0xed, 0xc5, 0xd4, 0x75, + 0x52, 0xea, 0xd9, 0x12, 0xc1, 0x3c, 0x5c, 0xfe, 0x4d, 0x5a, 0x24, 0xe7, 0x6d, 0x23, 0x0b, 0x57, + 0x4a, 0xd5, 0x98, 0x76, 0xec, 0x47, 0xd4, 0xb5, 0x3b, 0xb7, 0x37, 0x70, 0xe5, 0x57, 0xb3, 0x2a, + 0x31, 0xed, 0xbc, 0x4f, 0xdd, 0xbd, 0xdb, 0x1b, 0xe4, 0x3a, 0x94, 0x45, 0x88, 0x33, 0x0f, 0x97, + 0x71, 0x93, 0xd2, 0xea, 0x0c, 0x52, 0x9b, 0x7c, 0x16, 0xae, 0x05, 0xce, 0x99, 0xad, 0x9a, 0x82, + 0x8b, 0xb1, 0x82, 0x2a, 0x9b, 0x81, 0x73, 0xa6, 0x5a, 0xce, 0x53, 0xf8, 0x24, 0x4c, 0x1e, 0xdb, + 0xb4, 0x63, 0x27, 0xd4, 0x89, 0xdd, 0x13, 0x9c, 0xb5, 0xb3, 0x14, 0xe6, 0xbc, 0xdd, 0x4e, 0x1b, + 0x39, 0xe4, 0x26, 0x4c, 0x0b, 0xe7, 0xe5, 0x44, 0x6d, 0xa8, 0xe2, 0x8c, 0x5e, 0x87, 0x9d, 0x48, + 0xa2, 0xa4, 0x14, 0x79, 0x1d, 0x16, 0x69, 0x88, 0xab, 0xaa, 0x6c, 0x2c, 0x7a, 0x71, 0xf4, 0x10, + 0xa7, 0xeb, 0xb2, 0x94, 0x25, 0x42, 0x42, 0xf9, 0xc3, 0x17, 0x67, 0xf7, 0x4a, 0xe5, 0x19, 0xa3, + 0xdc, 0xf8, 0x00, 0xe6, 0x9b, 0xe1, 0x23, 0x1a, 0xa7, 0xd4, 0xcb, 0x03, 0x42, 0x6f, 0x78, 0x61, + 0x5c, 0xc3, 0x6f, 0x40, 0x25, 0xef, 0xe0, 0xa2, 0x26, 0x51, 0x76, 0x65, 0xe7, 0x36, 0xfe, 0x7d, + 0x12, 0x6a, 0x7b, 0x47, 0xed, 0x67, 0x8a, 0x32, 0x25, 0x37, 0x3e, 0xca, 0x74, 0x6f, 0x8a, 0xe3, + 0xbc, 0x59, 0x87, 0x19, 0x61, 0x56, 0xcd, 0xc2, 0x23, 0x5d, 0x66, 0x29, 0x01, 0x72, 0x03, 0x6a, + 0x5a, 0x30, 0x89, 0xca, 0x57, 0xb1, 0xaa, 0x79, 0x1c, 0x25, 0xe4, 0xf9, 0xcc, 0x51, 0x7a, 0x96, + 0x62, 0xf8, 0x54, 0x06, 0x9d, 0xa2, 0x67, 0x29, 0x79, 0x05, 0xe6, 0xa4, 0x50, 0x74, 0x4a, 0x43, + 0xf6, 0x11, 0x8d, 0x31, 0x7e, 0x94, 0x64, 0x5d, 0x48, 0x2a, 0x1e, 0x59, 0x50, 0xe1, 0x0d, 0xb8, + 0x64, 0x11, 0x81, 0xfd, 0x12, 0xcc, 0xf1, 0x45, 0x6b, 0x1e, 0xab, 0x89, 0x59, 0x5d, 0x9d, 0x5c, + 0x9b, 0xb4, 0x66, 0x39, 0x59, 0x85, 0x69, 0x32, 0x2c, 0xe7, 0x24, 0xae, 0x59, 0xc3, 0xbc, 0xd6, + 0xe4, 0x36, 0x13, 0x97, 0xbc, 0xa9, 0x1c, 0xef, 0xf4, 0x43, 0x17, 0x23, 0xac, 0xbe, 0xb1, 0x20, + 0x97, 0xc8, 0xae, 0xe3, 0x3b, 0xf1, 0x5e, 0x3f, 0x74, 0xdb, 0xac, 0x3b, 0xd0, 0x1a, 0x4e, 0x23, + 0xb7, 0x00, 0x02, 0x5c, 0xab, 0xf2, 0x57, 0x47, 0x73, 0x69, 0x78, 0x29, 0xa3, 0x00, 0x28, 0xc3, + 0x09, 0x8d, 0x9f, 0x16, 0x61, 0xe1, 0x88, 0x6d, 0x37, 0x45, 0x86, 0x7f, 0xae, 0x91, 0x33, 0xae, + 0xaa, 0x4c, 0xfe, 0xac, 0x55, 0xa5, 0x34, 0x52, 0x55, 0x6e, 0x40, 0x4d, 0x74, 0xd6, 0x23, 0x54, + 0x87, 0xe3, 0x5c, 0xb3, 0xaa, 0x48, 0x13, 0x16, 0x48, 0x03, 0x2a, 0x1e, 0x0b, 0x68, 0x88, 0x2b, + 0xa5, 0x69, 0x4d, 0x43, 0x4e, 0x26, 0xaf, 0xf1, 0xe9, 0xc0, 0x4f, 0x69, 0x2c, 0xba, 0x6e, 0xe6, + 0x82, 0xae, 0x03, 0x21, 0xc4, 0x29, 0xc3, 0xf5, 0xac, 0x3c, 0xbe, 0x9e, 0x35, 0xbe, 0x5b, 0x84, + 0x79, 0x31, 0xb6, 0x4e, 0x8c, 0x13, 0x2f, 0x76, 0xf0, 0x97, 0x00, 0x44, 0x07, 0x6b, 0x59, 0xb4, + 0xa2, 0x87, 0xbb, 0x14, 0xd6, 0x53, 0x89, 0x29, 0x02, 0x79, 0x1b, 0xea, 0x4e, 0x18, 0x8a, 0xf7, + 0x00, 0x9b, 0x85, 0x9d, 0x48, 0xbe, 0xa6, 0x0f, 0x55, 0x7b, 0x6e, 0xe9, 0xee, 0x84, 0x55, 0x73, + 0xc2, 0x30, 0x1f, 0xda, 0x26, 0x2c, 0x30, 0x59, 0x29, 0x74, 0x05, 0xe2, 0xdd, 0x7d, 0x45, 0xad, + 0xdb, 0x87, 0x4a, 0xc9, 0xdd, 0x09, 0x6b, 0x9e, 0x8d, 0xd4, 0x97, 0xb7, 0xa1, 0xde, 0x49, 0x13, + 0x5d, 0x4b, 0x49, 0x77, 0x43, 0x2f, 0x1b, 0xdc, 0x8d, 0x4e, 0x9a, 0x64, 0xcf, 0x5b, 0x33, 0x30, + 0x85, 0xed, 0x69, 0x7c, 0x32, 0x05, 0x95, 0xfc, 0xc5, 0xf0, 0x3a, 0x94, 0xc5, 0xab, 0xe5, 0x70, + 0xe0, 0x21, 0x75, 0xb0, 0x48, 0x14, 0x9f, 0x56, 0x24, 0x4c, 0x28, 0x79, 0x34, 0x11, 0x61, 0xa7, + 0x4a, 0x28, 0x52, 0xc8, 0x17, 0x80, 0xf4, 0x62, 0x16, 0x38, 0xf1, 0xb9, 0x9e, 0xb5, 0x25, 0xcc, + 0x5a, 0x43, 0x72, 0xf2, 0xc4, 0x7d, 0x17, 0x8c, 0x90, 0x9e, 0xa5, 0x76, 0x4c, 0x1d, 0xcf, 0xa6, + 0x61, 0x97, 0x85, 0x14, 0xe3, 0xac, 0xae, 0x8c, 0xef, 0x22, 0x4d, 0x1b, 0xab, 0x3a, 0x97, 0xb7, + 0xa8, 0xe3, 0x09, 0x0e, 0xf9, 0x02, 0x4c, 0xc7, 0x7c, 0xa1, 0xa0, 0x96, 0xf7, 0x72, 0x49, 0x74, + 0x9f, 0x9e, 0x5b, 0x9c, 0xac, 0xa6, 0x02, 0x21, 0x43, 0xde, 0x82, 0x4b, 0xca, 0xbb, 0x5e, 0x4c, + 0x3b, 0xec, 0x4c, 0x77, 0x72, 0x06, 0x9d, 0x5c, 0x96, 0x02, 0x0f, 0x90, 0x9f, 0xbb, 0x3a, 0xb8, + 0x38, 0x2b, 0x0f, 0x2f, 0xce, 0x56, 0xa1, 0xc6, 0x12, 0xbb, 0xc3, 0x5f, 0x22, 0xf1, 0xdd, 0xbd, + 0x82, 0x02, 0xc0, 0x92, 0x3d, 0x27, 0x49, 0x71, 0x00, 0x0e, 0xe0, 0x6a, 0xaf, 0x9f, 0x9c, 0x50, + 0xcf, 0xf6, 0xa2, 0xc7, 0xa1, 0x2d, 0x93, 0xc2, 0x8d, 0x42, 0x0f, 0x5f, 0x81, 0x12, 0x13, 0x46, + 0x5e, 0x90, 0x2e, 0x0b, 0xc0, 0x4e, 0xf4, 0x38, 0xdc, 0x43, 0xf1, 0xed, 0x4c, 0x9a, 0x6c, 0xc3, + 0x42, 0xdc, 0x0f, 0x53, 0x16, 0x50, 0xa5, 0xca, 0x67, 0x49, 0x8a, 0xf5, 0xb1, 0xaa, 0x8a, 0x9a, + 0x25, 0x04, 0x04, 0xd6, 0x9a, 0x8f, 0xf5, 0xc7, 0x7d, 0x96, 0xf0, 0x22, 0x6d, 0xf0, 0xf9, 0xf9, + 0xb1, 0xc3, 0x52, 0x1b, 0x55, 0x05, 0x09, 0xee, 0x75, 0x4c, 0xc9, 0x7e, 0x9b, 0x0d, 0x9c, 0xb3, + 0x0f, 0x1c, 0x96, 0x1e, 0xb1, 0x80, 0x1e, 0x24, 0x64, 0x67, 0x60, 0x05, 0x91, 0x25, 0x8a, 0xdc, + 0xe4, 0x18, 0x93, 0x23, 0xfa, 0xaa, 0x62, 0x53, 0xe6, 0x0a, 0xb9, 0x0f, 0x4b, 0xfd, 0x24, 0x5b, + 0x81, 0x38, 0xb1, 0x8d, 0xe1, 0x4a, 0x13, 0xb3, 0xae, 0xbf, 0x21, 0x8d, 0x64, 0xb6, 0xb5, 0xc0, + 0x51, 0x03, 0x64, 0x9a, 0x34, 0x7e, 0x6d, 0x0a, 0xc8, 0xe8, 0xd6, 0xc8, 0xff, 0xcf, 0x68, 0x7f, + 0x62, 0xf4, 0x4d, 0x3d, 0x31, 0xfa, 0x9e, 0x87, 0xfc, 0x65, 0x19, 0xc5, 0xa7, 0x51, 0xbc, 0x96, + 0x11, 0xb9, 0xd0, 0x70, 0x0c, 0xce, 0x7c, 0xf6, 0x18, 0x2c, 0x7f, 0x1e, 0x31, 0x58, 0xf9, 0x99, + 0x63, 0x10, 0x3e, 0x7b, 0x0c, 0x56, 0x3f, 0x9f, 0x18, 0xac, 0xfd, 0x2f, 0x62, 0xf0, 0xbf, 0xa7, + 0xa0, 0x74, 0x2f, 0x62, 0x7c, 0xae, 0xab, 0x3c, 0x8c, 0x58, 0xa8, 0x4f, 0x3d, 0xf5, 0x7c, 0x7f, + 0x52, 0xab, 0x62, 0xe5, 0x87, 0xf2, 0x99, 0x7c, 0x05, 0xea, 0x08, 0xa1, 0x67, 0xd4, 0x15, 0xb8, + 0xa2, 0xbe, 0xf0, 0xe3, 0xb8, 0xa1, 0x7d, 0xe4, 0xda, 0x43, 0x8d, 0xf6, 0x59, 0x5e, 0x0a, 0xf9, + 0xd2, 0x82, 0x85, 0x21, 0x8d, 0x71, 0x6b, 0xa8, 0xa4, 0x2f, 0x2d, 0x90, 0xdc, 0xf4, 0xce, 0xc8, + 0xab, 0x50, 0xf7, 0x69, 0x27, 0xb5, 0xd1, 0x27, 0xdc, 0xb6, 0x99, 0x1a, 0x89, 0x88, 0x1a, 0x97, + 0xe0, 0x8e, 0xe1, 0xae, 0xcd, 0x06, 0xcc, 0xc5, 0xac, 0x7b, 0xa2, 0x43, 0xa6, 0x47, 0x77, 0x7a, + 0x50, 0x24, 0xc3, 0xbc, 0x0a, 0xd5, 0x5e, 0x1c, 0x1d, 0x53, 0xf9, 0x8a, 0x38, 0x73, 0xc1, 0x2b, + 0x22, 0xca, 0x88, 0x57, 0xc4, 0x57, 0xa1, 0x7a, 0xdc, 0x67, 0xd9, 0x4b, 0x65, 0xf9, 0x02, 0x04, + 0xca, 0x08, 0xc4, 0x6d, 0x98, 0xc3, 0x96, 0x68, 0xc1, 0x5d, 0x19, 0xf1, 0x0b, 0x1b, 0xab, 0x05, + 0xf4, 0x17, 0xc1, 0x10, 0x8d, 0x79, 0x62, 0x59, 0x16, 0x0d, 0x1e, 0x84, 0x45, 0xe9, 0xc9, 0x60, + 0x26, 0x55, 0x47, 0x61, 0x28, 0xa3, 0xc1, 0xee, 0xc2, 0x15, 0x01, 0xa3, 0x1f, 0x6a, 0x48, 0xbb, + 0x13, 0x47, 0x81, 0xcd, 0x42, 0x19, 0x8a, 0xba, 0x86, 0x15, 0x14, 0xdf, 0xfd, 0x30, 0xd7, 0xb1, + 0x17, 0x47, 0x41, 0x33, 0x24, 0x77, 0x60, 0x85, 0x25, 0x76, 0xd8, 0xf7, 0x7d, 0xdb, 0x79, 0xec, + 0xc4, 0xd4, 0x4e, 0x68, 0xc0, 0x70, 0x44, 0xb0, 0x36, 0x97, 0xad, 0x05, 0x96, 0xb4, 0xfa, 0xbe, + 0xbf, 0xc9, 0x99, 0x6d, 0x1a, 0x30, 0x0c, 0xd7, 0x0b, 0xd2, 0xb7, 0xfe, 0x59, 0xd2, 0xb7, 0xf1, + 0x9f, 0x45, 0x98, 0x1d, 0x10, 0x22, 0x8b, 0x50, 0x94, 0x55, 0x57, 0xa5, 0x70, 0x91, 0x79, 0xe4, + 0x0e, 0x18, 0x72, 0x83, 0x86, 0xaf, 0x03, 0x85, 0xa5, 0xe2, 0xe8, 0x80, 0x08, 0x19, 0xfe, 0x1f, + 0x8b, 0xc3, 0x1d, 0x30, 0x52, 0x27, 0xee, 0xd2, 0x54, 0x43, 0x8d, 0x6e, 0x24, 0xd6, 0x85, 0x4c, + 0x86, 0xda, 0x00, 0x92, 0xd9, 0xca, 0x4f, 0x02, 0xf4, 0xf7, 0x62, 0x43, 0xd9, 0xc9, 0x4e, 0x05, + 0x36, 0x80, 0x64, 0x96, 0x72, 0x8c, 0xfe, 0x72, 0x63, 0x28, 0x2b, 0x19, 0xe6, 0x75, 0x98, 0x89, + 0x3b, 0x22, 0x6b, 0xa7, 0xf5, 0x85, 0xe6, 0x40, 0x7f, 0x68, 0xa9, 0x3b, 0x1d, 0x77, 0x30, 0x69, + 0x05, 0x2e, 0x88, 0x3c, 0x2a, 0xf7, 0x17, 0xc7, 0xe1, 0xb4, 0x1d, 0xc6, 0xe9, 0xb8, 0xc3, 0x9f, + 0x1a, 0x9f, 0x16, 0xa1, 0x92, 0x9d, 0xfe, 0x3c, 0x7d, 0x8e, 0xfb, 0x5c, 0xdf, 0x0b, 0xd5, 0x24, + 0x58, 0x1a, 0x99, 0x04, 0x97, 0x61, 0xba, 0x1f, 0xb2, 0x0f, 0xfb, 0x62, 0xe9, 0x56, 0xb6, 0xe4, + 0xd3, 0x05, 0x93, 0xe3, 0xf4, 0x05, 0x93, 0xe3, 0x9b, 0x23, 0x4b, 0xde, 0x99, 0x8b, 0x96, 0xbc, + 0x83, 0x0b, 0x5e, 0xd2, 0x82, 0xe5, 0x94, 0xb9, 0x4c, 0xbe, 0xa7, 0xe8, 0x1a, 0xc4, 0xd1, 0xd2, + 0x25, 0x79, 0x54, 0x35, 0xfa, 0x36, 0x66, 0x2d, 0x70, 0xe0, 0x10, 0xb1, 0xf1, 0x9b, 0x05, 0xa8, + 0x64, 0xc7, 0x66, 0x64, 0x1d, 0x40, 0xcb, 0xea, 0xc2, 0x48, 0xec, 0x69, 0x5c, 0x72, 0x07, 0xea, + 0x71, 0x2f, 0xd4, 0xab, 0x80, 0x88, 0x70, 0x79, 0x24, 0x60, 0xf5, 0x42, 0x59, 0x0d, 0x7b, 0xa1, + 0x56, 0x06, 0xb2, 0x1d, 0xd4, 0xc9, 0x27, 0xec, 0xa0, 0x36, 0x3e, 0x2e, 0xe8, 0xe7, 0x4a, 0x64, + 0x15, 0xa6, 0x78, 0x46, 0x8c, 0xf3, 0x48, 0x30, 0xc8, 0x3a, 0x54, 0xb8, 0x33, 0x42, 0x6a, 0xac, + 0x1f, 0xe5, 0x58, 0xfc, 0x79, 0x56, 0x17, 0xfe, 0xa1, 0x08, 0x55, 0xed, 0x78, 0x90, 0xbc, 0x08, + 0xe5, 0x6e, 0x1c, 0xf5, 0x7b, 0xf6, 0xf1, 0xf9, 0x18, 0x37, 0x66, 0x90, 0xb7, 0x75, 0x4e, 0x6e, + 0x41, 0x8d, 0x3b, 0x92, 0x89, 0x96, 0xc6, 0xf9, 0x02, 0x71, 0x2f, 0x7c, 0x4f, 0x02, 0x5e, 0x84, + 0xb2, 0xd3, 0xed, 0x8a, 0x97, 0xf4, 0xd1, 0x12, 0x31, 0xe3, 0x74, 0xbb, 0xf2, 0x9d, 0x1c, 0xf5, + 0x66, 0xa2, 0x53, 0x17, 0xe9, 0xdd, 0x94, 0x80, 0x55, 0x28, 0x8b, 0x2d, 0x76, 0xea, 0x0d, 0xac, + 0xe5, 0x32, 0x6a, 0xde, 0x0f, 0xd3, 0x4f, 0xda, 0xcc, 0x7e, 0x0b, 0x6a, 0xbd, 0x98, 0xa2, 0xe1, + 0xd1, 0x1c, 0x3e, 0x62, 0x7b, 0xbe, 0x93, 0x9c, 0x3c, 0x88, 0xe9, 0x66, 0xb7, 0xcb, 0xb3, 0x96, + 0xcf, 0x63, 0xea, 0x7f, 0xe3, 0x7b, 0x05, 0x28, 0x1d, 0x45, 0xbd, 0x16, 0x79, 0x19, 0xca, 0xf8, + 0x26, 0x91, 0xf7, 0x9d, 0x3c, 0xc7, 0xda, 0x3a, 0x6f, 0xa6, 0x34, 0xb0, 0x66, 0x90, 0xbb, 0x75, + 0x4e, 0x2e, 0xab, 0x63, 0xd5, 0xa2, 0x76, 0x40, 0x26, 0xcf, 0x53, 0x9f, 0x69, 0xd8, 0x78, 0x3f, + 0xe5, 0x6b, 0xc7, 0xac, 0xff, 0x07, 0xcd, 0x55, 0x33, 0x89, 0xad, 0xf3, 0xc6, 0xdf, 0x17, 0x60, + 0x0a, 0xcf, 0x6d, 0x73, 0xe3, 0x85, 0x27, 0x18, 0x2f, 0x7e, 0x16, 0xe3, 0x93, 0x4f, 0x31, 0x4e, + 0x5e, 0x87, 0xf9, 0x34, 0xee, 0x87, 0x7c, 0xb9, 0xc6, 0x57, 0x13, 0x62, 0xd7, 0xa0, 0x34, 0x3a, + 0x99, 0x2a, 0xa1, 0xfb, 0xf4, 0x1c, 0x37, 0x5c, 0xde, 0x85, 0xd2, 0x7d, 0xe6, 0xfb, 0xe4, 0x39, + 0x98, 0x76, 0xa3, 0x30, 0x6c, 0xee, 0x0c, 0xf8, 0x2c, 0x69, 0xbc, 0x41, 0x62, 0xb9, 0x58, 0xd4, + 0xc6, 0x5f, 0x90, 0x1a, 0x1f, 0x97, 0xc0, 0x54, 0xee, 0x8b, 0x5f, 0x16, 0x85, 0xed, 0x7e, 0xc0, + 0xeb, 0x14, 0x59, 0x87, 0x79, 0x9c, 0x28, 0x7b, 0x71, 0xe4, 0xd2, 0x84, 0x2f, 0x1d, 0xb1, 0x1a, + 0x14, 0xd6, 0x4a, 0xd6, 0x1c, 0x67, 0x3c, 0x50, 0xf4, 0x16, 0xcf, 0xbc, 0xf9, 0xb0, 0x1f, 0x70, + 0x51, 0xaf, 0xef, 0x52, 0xcf, 0x8e, 0xa3, 0xc7, 0x89, 0x18, 0x3e, 0x6b, 0x2e, 0xec, 0x07, 0x0f, + 0x24, 0xdd, 0x8a, 0x1e, 0x27, 0xe4, 0x45, 0xa8, 0x73, 0x59, 0x96, 0xd2, 0xd8, 0x11, 0x25, 0x63, + 0x12, 0x05, 0x67, 0xc3, 0x7e, 0xd0, 0xcc, 0x88, 0xc3, 0x87, 0xda, 0xa5, 0x91, 0x43, 0xed, 0x55, + 0xa8, 0xba, 0x51, 0xe8, 0xf6, 0xe3, 0x98, 0x86, 0xee, 0x39, 0x56, 0xe2, 0x92, 0xa5, 0x93, 0xc8, + 0x3e, 0x2c, 0xa6, 0xac, 0xc3, 0x63, 0x13, 0xdf, 0x0e, 0x78, 0x95, 0xc2, 0xfd, 0xbb, 0x69, 0xfd, + 0x94, 0x59, 0x46, 0x2f, 0x9f, 0x5f, 0xb6, 0x05, 0xff, 0xee, 0x84, 0x45, 0x24, 0x4e, 0xa3, 0x72, + 0xbf, 0xe3, 0x3e, 0xd7, 0x91, 0xf4, 0x83, 0x5e, 0xaa, 0x4e, 0xca, 0x6a, 0xd6, 0x6c, 0xdc, 0xdf, + 0xce, 0x89, 0xe4, 0x5e, 0x6e, 0x14, 0x17, 0xf8, 0x89, 0xe8, 0x4e, 0x59, 0x99, 0x07, 0x8d, 0xf2, + 0x45, 0xbe, 0xec, 0xee, 0xcc, 0xa4, 0x46, 0x23, 0x6d, 0x58, 0x51, 0xba, 0x42, 0x9a, 0x3e, 0x8e, + 0xe2, 0xd3, 0x4c, 0x9d, 0xb8, 0x0b, 0x70, 0x65, 0x40, 0x5d, 0x8b, 0xa6, 0x1f, 0x44, 0xf1, 0xa9, + 0xd2, 0xb8, 0x24, 0xb1, 0x2d, 0x01, 0x95, 0xe4, 0xad, 0x1a, 0xc0, 0x0e, 0x4d, 0x1d, 0xe6, 0x63, + 0xe9, 0xef, 0xc2, 0xa2, 0x44, 0x67, 0x01, 0x80, 0x53, 0xcc, 0x21, 0x2c, 0x50, 0x45, 0x90, 0x46, + 0x19, 0x55, 0xb5, 0xf7, 0xda, 0x60, 0xe4, 0x0f, 0x87, 0x8e, 0x45, 0xe8, 0x20, 0x85, 0xd1, 0xa4, + 0xf1, 0x0b, 0x70, 0x59, 0x1a, 0xb2, 0x68, 0x97, 0x45, 0x61, 0xab, 0x1f, 0x1c, 0x76, 0x9a, 0xa1, + 0xdc, 0x0d, 0xbf, 0x0e, 0x55, 0x26, 0xff, 0xab, 0xc9, 0xbd, 0x62, 0x81, 0x22, 0x35, 0x3d, 0x72, + 0x15, 0x20, 0x46, 0x9c, 0x3c, 0xed, 0xe2, 0x83, 0x5d, 0x89, 0x95, 0xa6, 0xc6, 0x4f, 0x9e, 0x07, + 0x32, 0x3a, 0x92, 0xe4, 0x0e, 0x2c, 0x7a, 0x41, 0x87, 0xc9, 0xeb, 0x05, 0x21, 0xf5, 0xec, 0x9e, + 0xe3, 0x9e, 0xca, 0x30, 0xde, 0x2a, 0x9a, 0x05, 0x8b, 0x08, 0x7e, 0x5b, 0xb0, 0x1f, 0x70, 0xae, + 0x8e, 0x3a, 0x65, 0xbd, 0x5e, 0x86, 0x2a, 0x8e, 0xa0, 0x04, 0x5b, 0xa0, 0xde, 0x00, 0x53, 0xa2, + 0x3c, 0x27, 0x75, 0x32, 0x83, 0x98, 0x0a, 0x22, 0xc2, 0x97, 0x04, 0x7f, 0xc7, 0x49, 0x1d, 0x69, + 0x0f, 0x13, 0x62, 0x18, 0x28, 0x6d, 0x22, 0xb0, 0x34, 0x02, 0x14, 0x5c, 0x04, 0xbe, 0x09, 0x2b, + 0x69, 0x94, 0x3a, 0xbe, 0x2d, 0xe1, 0x71, 0x62, 0xfb, 0x91, 0xe3, 0xf1, 0xd7, 0xc9, 0xa9, 0xcc, + 0xd5, 0x05, 0x14, 0xd9, 0x41, 0x09, 0x2b, 0xd9, 0x8f, 0x1c, 0xef, 0x20, 0x21, 0xb7, 0x60, 0x71, + 0x10, 0x49, 0x05, 0x6c, 0x1a, 0xcd, 0xcd, 0xeb, 0x10, 0x8a, 0x80, 0x2f, 0x2a, 0x53, 0xe2, 0x9d, + 0x24, 0x09, 0x9d, 0x5e, 0x72, 0x12, 0xa5, 0x1c, 0x33, 0x83, 0x18, 0xa1, 0x6f, 0x8b, 0x73, 0xdb, + 0x92, 0x79, 0x80, 0x2f, 0xf1, 0x7e, 0xe4, 0x3a, 0xbe, 0x2d, 0x46, 0x2a, 0xc1, 0x2c, 0x28, 0x59, + 0x35, 0x24, 0x8a, 0x38, 0xc0, 0x82, 0x10, 0xd3, 0x20, 0x4a, 0x69, 0x26, 0x55, 0x11, 0x05, 0x41, + 0x50, 0x95, 0xd8, 0x4b, 0x30, 0xd7, 0x4f, 0x68, 0x2c, 0x7c, 0x3d, 0x3e, 0x4f, 0xa9, 0x78, 0x69, + 0x2e, 0x59, 0xb3, 0x9c, 0xcc, 0xfd, 0xc4, 0x83, 0x3f, 0xf2, 0x1a, 0x2c, 0x09, 0x57, 0x7d, 0xea, + 0xc4, 0xa1, 0x02, 0x04, 0x09, 0xbe, 0x2f, 0x97, 0x2c, 0x82, 0xcc, 0x7d, 0xc1, 0x93, 0xad, 0xfb, + 0x12, 0x5c, 0xf1, 0x58, 0xc2, 0x67, 0x37, 0x94, 0x75, 0x1d, 0xf7, 0x84, 0xda, 0x27, 0x2c, 0x95, + 0x66, 0x6a, 0x08, 0x5c, 0x11, 0x22, 0x1c, 0xb2, 0xcd, 0x05, 0xee, 0xb2, 0x54, 0x18, 0xfc, 0x0a, + 0x3c, 0x37, 0x8a, 0x0e, 0x58, 0x92, 0x48, 0xf8, 0x2c, 0xc2, 0xcd, 0x21, 0xf8, 0x01, 0x4b, 0x12, + 0x81, 0x7f, 0x1d, 0xcc, 0xe1, 0x61, 0x74, 0x4f, 0xa8, 0x7b, 0xca, 0x7d, 0xae, 0x6b, 0x9d, 0xab, + 0xc6, 0x70, 0x9b, 0x33, 0x0f, 0x12, 0xbe, 0xda, 0x4c, 0x52, 0x47, 0x8d, 0x9e, 0xea, 0xbb, 0x39, + 0x44, 0x18, 0xc8, 0xe1, 0xc6, 0x54, 0xf7, 0x5d, 0x86, 0x72, 0x42, 0xbb, 0x01, 0x0d, 0xd3, 0x04, + 0x2f, 0xc2, 0x94, 0xac, 0xec, 0x59, 0x24, 0x97, 0xa3, 0xce, 0x48, 0xe7, 0x55, 0x72, 0x39, 0xe2, + 0x80, 0x94, 0xb3, 0x3d, 0xea, 0xa7, 0x8e, 0x08, 0x49, 0x22, 0xd8, 0x48, 0xc1, 0x30, 0xbc, 0x0e, + 0x55, 0xc1, 0x16, 0xcd, 0x5d, 0x40, 0xbe, 0x40, 0x88, 0x06, 0xbe, 0x04, 0x73, 0xc1, 0x23, 0xd7, + 0xb5, 0x59, 0xd8, 0xeb, 0xa7, 0x42, 0xc9, 0xa2, 0x18, 0x39, 0x4e, 0x6e, 0x72, 0x2a, 0x2a, 0x5a, + 0x03, 0x43, 0x93, 0x13, 0xda, 0x96, 0x50, 0xb0, 0x9e, 0x09, 0x0a, 0x8d, 0x4a, 0x32, 0xea, 0xa7, + 0x99, 0xca, 0xe5, 0x5c, 0xf2, 0x10, 0xc9, 0xa8, 0x73, 0x15, 0x6a, 0x7e, 0x80, 0x39, 0x25, 0xa4, + 0x56, 0x84, 0x77, 0x7e, 0xc0, 0x13, 0x09, 0x25, 0xde, 0x81, 0xcb, 0x7a, 0x68, 0xa3, 0x71, 0x79, + 0x9d, 0x21, 0x48, 0xf0, 0x0e, 0x4a, 0xc9, 0x5a, 0xc9, 0xa3, 0xbb, 0x99, 0xf3, 0x0f, 0xb4, 0x60, + 0x13, 0xe0, 0x63, 0x96, 0x06, 0x4e, 0x8f, 0xe3, 0x2e, 0x69, 0xc1, 0x86, 0xb8, 0x2d, 0x64, 0x1d, + 0x24, 0xe4, 0x15, 0x58, 0x08, 0x58, 0x68, 0x8b, 0xbc, 0xc8, 0x0d, 0x5d, 0x16, 0xe3, 0x16, 0xb0, + 0x70, 0x9f, 0x73, 0xda, 0xca, 0x02, 0x17, 0x77, 0xce, 0x46, 0xc4, 0xaf, 0x48, 0x71, 0xe7, 0x6c, + 0x50, 0xfc, 0x16, 0x2c, 0x72, 0xed, 0x32, 0xa1, 0x72, 0xf9, 0xe7, 0x44, 0x66, 0x07, 0x2c, 0xb4, + 0x90, 0x35, 0x00, 0x70, 0xce, 0x46, 0x01, 0x57, 0x25, 0xc0, 0x39, 0x1b, 0x02, 0x3c, 0x80, 0x05, + 0x19, 0x6b, 0x76, 0xd4, 0xb1, 0x55, 0x89, 0x36, 0xaf, 0xe1, 0xcc, 0xb0, 0x3a, 0x30, 0x21, 0x8d, + 0xa9, 0xf4, 0xd6, 0xbc, 0x04, 0x6b, 0xc5, 0x3f, 0x2f, 0x80, 0x38, 0xa8, 0x03, 0x95, 0xf3, 0xba, + 0x5e, 0x00, 0x0f, 0x1e, 0xb9, 0xee, 0xf8, 0xca, 0x29, 0x80, 0x7a, 0xe5, 0x5c, 0x1d, 0x01, 0x6a, + 0x95, 0xf3, 0x5d, 0xb8, 0x2a, 0x81, 0x7e, 0xa0, 0x76, 0x02, 0x06, 0xcc, 0xde, 0x40, 0xf4, 0x25, + 0x21, 0xb4, 0x1f, 0x88, 0xf7, 0x53, 0xdd, 0xf4, 0x58, 0x0d, 0xba, 0xfd, 0xc6, 0x58, 0x0d, 0x9a, + 0x0f, 0x77, 0x60, 0x45, 0xbe, 0xbf, 0x31, 0xef, 0x4c, 0x14, 0x6e, 0xdc, 0x07, 0x49, 0x6e, 0x9b, + 0x1e, 0x62, 0x17, 0x04, 0xbb, 0xe9, 0x9d, 0xf1, 0xaa, 0xbd, 0x17, 0x47, 0x41, 0xfb, 0x36, 0x79, + 0x13, 0x2e, 0x8d, 0x45, 0x79, 0x2c, 0x39, 0x35, 0xa9, 0x68, 0xf3, 0x08, 0x6e, 0x87, 0x25, 0xa7, + 0xe4, 0x6d, 0xb8, 0x3c, 0x16, 0x89, 0xf5, 0xca, 0xec, 0x20, 0x74, 0x79, 0x04, 0x8a, 0xb5, 0x6a, + 0x9c, 0xaf, 0x6a, 0xe3, 0xb2, 0x3b, 0xc6, 0x57, 0xb9, 0x71, 0x39, 0xe8, 0xab, 0x38, 0xe5, 0xce, + 0x70, 0x27, 0x43, 0xbe, 0x8a, 0xa3, 0xee, 0x6c, 0xcb, 0xf3, 0xfa, 0x28, 0xf2, 0x11, 0x4b, 0x58, + 0xca, 0x97, 0xa1, 0x91, 0x47, 0x13, 0x93, 0x21, 0xfe, 0xca, 0x10, 0xfe, 0x7d, 0x21, 0xd3, 0xe2, + 0x22, 0xe4, 0x2e, 0xdc, 0x18, 0xd5, 0xe2, 0xb1, 0xc4, 0x75, 0x62, 0x2f, 0xd3, 0xf3, 0x10, 0xf5, + 0x5c, 0x1d, 0xd2, 0xb3, 0xa3, 0xa4, 0x84, 0xa6, 0x77, 0xe0, 0x8a, 0xa6, 0x09, 0x6b, 0xe5, 0x23, + 0xea, 0x66, 0x6d, 0x39, 0x1d, 0xea, 0x3c, 0x5e, 0x77, 0xdf, 0xa7, 0xae, 0x6c, 0xcc, 0x26, 0x5c, + 0x1b, 0x06, 0xe3, 0xae, 0x56, 0x92, 0xe1, 0x7d, 0x11, 0x2b, 0x03, 0xf8, 0x43, 0x14, 0xc9, 0x7b, + 0x32, 0x3b, 0x68, 0x1b, 0x89, 0x96, 0x33, 0x3c, 0x3f, 0x5e, 0x52, 0x02, 0x83, 0xf1, 0xf2, 0x25, + 0xb8, 0x72, 0x01, 0x12, 0x23, 0xe6, 0x1c, 0xb1, 0x2b, 0x63, 0xb0, 0x18, 0x33, 0x5f, 0x81, 0xe7, + 0x2e, 0x40, 0x8b, 0xa8, 0xf9, 0x08, 0xe1, 0xe6, 0x18, 0xb8, 0x88, 0x9b, 0xb1, 0x7e, 0xab, 0x56, + 0xff, 0xa2, 0x88, 0x80, 0x21, 0xb0, 0x6c, 0xf1, 0xb0, 0xdf, 0x43, 0xd1, 0xf3, 0x4b, 0xa2, 0x2c, + 0x6b, 0xd8, 0x81, 0xf8, 0xb9, 0x0b, 0x37, 0xc6, 0xa1, 0x07, 0x97, 0x73, 0xbf, 0x8c, 0xce, 0x5f, + 0x1d, 0xd1, 0x31, 0xb0, 0xaa, 0x7b, 0x6b, 0xa8, 0x05, 0x62, 0xd7, 0x5c, 0xe6, 0xf8, 0xaf, 0x88, + 0x71, 0xd7, 0x34, 0x88, 0x0d, 0x72, 0x91, 0xe0, 0x17, 0x39, 0x81, 0x1b, 0x2d, 0x4a, 0xc5, 0xaf, + 0x8a, 0xf0, 0x1b, 0x75, 0x42, 0x4a, 0xa1, 0xa6, 0x2f, 0xc3, 0x95, 0x4e, 0x9a, 0xd8, 0xa1, 0xda, + 0x28, 0x0d, 0x68, 0x10, 0xc5, 0xe7, 0x76, 0x18, 0xa1, 0x37, 0xe6, 0xb7, 0x0b, 0x62, 0x14, 0x3b, + 0x69, 0xd2, 0x12, 0xdb, 0xa3, 0x42, 0xa0, 0x25, 0xf8, 0x7c, 0x92, 0xd2, 0xe0, 0x29, 0x0b, 0xcf, + 0x45, 0x33, 0xcc, 0xdf, 0x16, 0xc0, 0x79, 0x05, 0x3c, 0x62, 0xe1, 0x39, 0xb6, 0x80, 0xaf, 0xf7, + 0x86, 0x21, 0xca, 0xda, 0x77, 0x04, 0x68, 0x41, 0x07, 0x29, 0x4b, 0xb7, 0x60, 0x51, 0x83, 0x79, + 0x41, 0x47, 0x1a, 0xfa, 0x1d, 0x81, 0x31, 0x14, 0x66, 0x27, 0xe8, 0x08, 0x3b, 0xb7, 0x61, 0x79, + 0x08, 0xa0, 0xcc, 0xfc, 0xae, 0x80, 0x10, 0x0d, 0xa2, 0xac, 0x6c, 0xc3, 0x35, 0x0e, 0xe2, 0xfd, + 0x77, 0x41, 0x8f, 0xfc, 0x9e, 0x78, 0x4f, 0xbd, 0xdc, 0x49, 0x13, 0xde, 0x81, 0xe3, 0x3a, 0xe5, + 0x0d, 0x30, 0x07, 0x95, 0x68, 0xfd, 0xf2, 0xfb, 0x02, 0xbe, 0xa8, 0xc1, 0xf3, 0xae, 0x79, 0x07, + 0x2e, 0x8f, 0x01, 0x2a, 0xcb, 0xdf, 0x15, 0xd0, 0xe5, 0x21, 0xa8, 0xb2, 0x2a, 0xfb, 0x35, 0x07, + 0xe7, 0x7d, 0xf4, 0x07, 0x02, 0xb9, 0xa0, 0x21, 0xb3, 0x6e, 0x7a, 0x0b, 0x2e, 0x8d, 0xc2, 0x94, + 0xc9, 0x3f, 0x14, 0xc0, 0xa5, 0x41, 0xe0, 0xd0, 0xe0, 0xe7, 0xd9, 0x87, 0xcb, 0x95, 0x20, 0x31, + 0xff, 0x48, 0xc0, 0xf8, 0xe0, 0xab, 0xd4, 0xe3, 0x2c, 0xb1, 0xd8, 0x1f, 0x80, 0x68, 0x09, 0xff, + 0xc7, 0xf9, 0xe0, 0x8f, 0x24, 0xfb, 0xbb, 0x70, 0x75, 0x0c, 0x4c, 0xec, 0x83, 0xf2, 0x49, 0xd0, + 0xfc, 0x9e, 0x00, 0x9b, 0x43, 0x60, 0x94, 0xd8, 0x63, 0x3e, 0xe5, 0x49, 0x3f, 0xaa, 0x21, 0x91, + 0xf7, 0xc3, 0x6f, 0x9b, 0x7f, 0x22, 0xf0, 0xcb, 0x83, 0xf8, 0x36, 0xf2, 0xdb, 0xb7, 0xc7, 0xdb, + 0x97, 0x68, 0x2c, 0x76, 0x7f, 0x3a, 0xd6, 0xbe, 0xc0, 0x63, 0xb9, 0x5b, 0x03, 0x43, 0x69, 0x90, + 0xc9, 0x1a, 0x9a, 0x7f, 0x26, 0x40, 0xb3, 0x02, 0x24, 0x92, 0xb3, 0xa5, 0x77, 0x91, 0xaa, 0x4c, + 0xaa, 0x5f, 0xff, 0x3c, 0x1f, 0xc7, 0xbc, 0x2c, 0xc9, 0x9e, 0x95, 0xe1, 0xce, 0x61, 0x5e, 0xa0, + 0x90, 0x58, 0x07, 0xfe, 0x42, 0xa0, 0x88, 0x40, 0xed, 0x04, 0x02, 0x27, 0xb3, 0xff, 0x39, 0x0d, + 0x24, 0xec, 0xe0, 0x2c, 0xc2, 0xa9, 0x41, 0x62, 0x7e, 0x3f, 0x0f, 0x39, 0x84, 0xa2, 0x31, 0x3e, + 0x85, 0xec, 0xa5, 0xc9, 0x41, 0x42, 0xb6, 0xe1, 0xfa, 0x78, 0xb8, 0x9c, 0x84, 0x82, 0xc4, 0xfc, + 0x4b, 0xa1, 0xe1, 0xd2, 0x88, 0x06, 0x31, 0x09, 0x1d, 0x24, 0x2a, 0x5b, 0xb8, 0x12, 0x0c, 0x77, + 0xdd, 0xf5, 0xbf, 0xca, 0xb3, 0xa5, 0xe9, 0x9d, 0xf1, 0x68, 0xd7, 0x9c, 0xdf, 0x14, 0xb9, 0x9a, + 0x01, 0x47, 0xdd, 0xff, 0x6b, 0x01, 0x37, 0x73, 0xf8, 0x50, 0x03, 0xde, 0x83, 0x1b, 0x17, 0xa9, + 0xc8, 0x9b, 0xf0, 0x37, 0x42, 0xcb, 0x95, 0x31, 0x5a, 0xb2, 0x46, 0xc8, 0x41, 0x3b, 0x8e, 0xfb, + 0x29, 0xd5, 0xb5, 0x04, 0x89, 0xf9, 0xb7, 0xf9, 0xa0, 0x6d, 0x71, 0x76, 0x06, 0x3e, 0x48, 0x54, + 0xf2, 0xe9, 0x30, 0xd9, 0xfc, 0x20, 0x31, 0x7f, 0x90, 0x27, 0x5f, 0x0e, 0x14, 0xed, 0x3f, 0x48, + 0xc8, 0xab, 0xb0, 0xa8, 0x36, 0xea, 0xe5, 0x2e, 0xbd, 0xf8, 0x90, 0xe0, 0x87, 0xb2, 0xf0, 0xca, + 0xcd, 0x78, 0xdc, 0x89, 0x17, 0xdf, 0x0d, 0xbc, 0x01, 0x66, 0x86, 0x18, 0x8e, 0xac, 0x7f, 0x94, + 0x1d, 0x2d, 0x51, 0x83, 0xa1, 0xa5, 0x03, 0xe5, 0x7a, 0x34, 0x03, 0xfe, 0xd3, 0x20, 0x50, 0x9e, + 0xd2, 0x48, 0xe0, 0x9b, 0x1a, 0xd0, 0x75, 0x42, 0x8f, 0x79, 0x4e, 0x4a, 0xa5, 0x9f, 0xff, 0x2c, + 0x5b, 0x27, 0x81, 0xdb, 0x8a, 0x2d, 0x7c, 0xdd, 0x80, 0xa5, 0x0c, 0x19, 0xd3, 0xa4, 0xef, 0xa7, + 0x12, 0xf6, 0x2f, 0x32, 0x98, 0x25, 0xcc, 0x42, 0x9e, 0xc0, 0xe8, 0x3d, 0x92, 0x9c, 0x38, 0xb1, + 0x27, 0x21, 0xff, 0x2a, 0xab, 0x91, 0x6a, 0x1b, 0x67, 0x21, 0xa2, 0xf1, 0xfd, 0x42, 0xb6, 0xb5, + 0xa3, 0xef, 0x8d, 0xbd, 0x00, 0xf5, 0x80, 0x85, 0x47, 0xed, 0x43, 0xb1, 0xcd, 0x96, 0xed, 0x4d, + 0xd6, 0x04, 0x95, 0x8b, 0xb6, 0x30, 0xe1, 0x7a, 0xac, 0x47, 0x7d, 0x16, 0x52, 0x3e, 0x00, 0x7d, + 0x9a, 0x49, 0x8b, 0x2d, 0xa4, 0x05, 0xc5, 0xfd, 0x1a, 0x67, 0x4a, 0xd0, 0x1b, 0x60, 0x66, 0xa0, + 0xe3, 0x98, 0x3a, 0xa7, 0x34, 0xce, 0x60, 0x72, 0x27, 0x47, 0xf1, 0xb7, 0x04, 0x5b, 0x00, 0x1b, + 0xff, 0x55, 0x80, 0xa5, 0xb1, 0x7b, 0x71, 0xbc, 0x0a, 0x8b, 0x83, 0x68, 0xbc, 0x87, 0x9b, 0xd0, + 0x50, 0x6d, 0x61, 0xc8, 0x9e, 0x42, 0xe6, 0x37, 0xa3, 0x10, 0x3f, 0x51, 0x10, 0xef, 0xb8, 0x6f, + 0x80, 0xa9, 0x41, 0xe4, 0xc7, 0x43, 0x12, 0x55, 0x54, 0x4b, 0x27, 0x89, 0x92, 0xd7, 0x96, 0xb3, + 0x0d, 0x10, 0x16, 0xa6, 0x63, 0x6c, 0x4d, 0x2a, 0x5b, 0xe9, 0x58, 0x5b, 0xe9, 0x78, 0x5b, 0x25, + 0x65, 0x2b, 0x1d, 0xb5, 0xd5, 0xf8, 0x08, 0x4a, 0xed, 0x28, 0x4e, 0xc9, 0x4b, 0x30, 0x73, 0x8c, + 0x5b, 0xdb, 0xc9, 0xf8, 0xbd, 0x7d, 0xc9, 0x24, 0x2f, 0xc0, 0x2c, 0x4b, 0xf0, 0xf6, 0x8a, 0xe3, + 0x73, 0xa0, 0xbc, 0xf3, 0x3d, 0x48, 0x7c, 0xc6, 0xc3, 0x99, 0xdf, 0x28, 0x82, 0x21, 0xbe, 0xe2, + 0xd9, 0x8b, 0x9d, 0x80, 0x6e, 0x45, 0xfd, 0xd0, 0x23, 0xb7, 0xa0, 0xa4, 0xdd, 0x45, 0x58, 0xd2, + 0xbf, 0xf5, 0x41, 0x01, 0xed, 0x6c, 0x12, 0x05, 0x49, 0x03, 0x2a, 0xfd, 0xf0, 0x98, 0xb3, 0xa8, + 0x37, 0xb0, 0x47, 0x9e, 0x93, 0xc9, 0x32, 0x4c, 0x8b, 0xbb, 0xec, 0xb2, 0x0b, 0xe5, 0x13, 0x59, + 0x83, 0x8a, 0xeb, 0xf8, 0xee, 0x5e, 0x3f, 0x74, 0x93, 0x31, 0x3b, 0xf6, 0x39, 0x93, 0xfc, 0x1c, + 0x54, 0x3b, 0xdc, 0x49, 0x1b, 0xaf, 0x65, 0xc9, 0xef, 0xcf, 0x06, 0x0e, 0xd5, 0x90, 0x8d, 0x37, + 0xb8, 0xc8, 0xdb, 0x30, 0xeb, 0x06, 0x3d, 0xb1, 0x1b, 0xa8, 0x1d, 0xb5, 0xca, 0x0f, 0xc6, 0x50, + 0x66, 0x3b, 0xe8, 0xed, 0x38, 0xa9, 0x83, 0x77, 0x00, 0xaa, 0x6e, 0xfe, 0xd0, 0xf8, 0x76, 0x01, + 0xaa, 0x5a, 0xa7, 0x3c, 0xa9, 0x3f, 0x50, 0x60, 0xa4, 0x3f, 0xbe, 0x00, 0x53, 0x49, 0xea, 0xc8, + 0x91, 0xc9, 0xbe, 0x52, 0x1b, 0xee, 0x67, 0x4b, 0x08, 0x91, 0x35, 0x98, 0xa4, 0xa1, 0x1a, 0xa7, + 0x8b, 0x64, 0xb9, 0x48, 0xe3, 0xdf, 0x0a, 0x30, 0x2d, 0x38, 0xe4, 0x65, 0xa8, 0x74, 0xfa, 0xa1, + 0x6b, 0xe3, 0xe9, 0xea, 0xe8, 0x31, 0x5a, 0x99, 0x33, 0x77, 0x68, 0xe2, 0x8e, 0x1c, 0xa5, 0x14, + 0x9f, 0x76, 0x94, 0xa2, 0x9f, 0x31, 0x4d, 0x3e, 0xe9, 0x8c, 0xe9, 0x65, 0x98, 0xc2, 0x0e, 0x97, + 0xb7, 0x0c, 0xe7, 0x47, 0x3c, 0xb7, 0x04, 0x3f, 0x0f, 0xc5, 0xa9, 0x27, 0x85, 0xe2, 0x57, 0xa1, + 0x86, 0x47, 0x79, 0x2c, 0xec, 0xe2, 0x7d, 0xce, 0x5b, 0x30, 0xdb, 0x95, 0xcf, 0xe2, 0x38, 0x67, + 0xb4, 0x95, 0xb5, 0xae, 0x06, 0x68, 0xdc, 0x85, 0xaa, 0x52, 0xd0, 0xa6, 0x29, 0x79, 0x0b, 0xea, + 0x03, 0x78, 0x95, 0x55, 0xf2, 0x68, 0x58, 0xb7, 0x65, 0xcd, 0xea, 0x8a, 0x92, 0xc6, 0xc7, 0x05, + 0x98, 0x16, 0x9f, 0x7c, 0x91, 0xd7, 0x35, 0x2f, 0xb2, 0x0f, 0x31, 0xb2, 0xc6, 0x6a, 0xf6, 0x72, + 0x67, 0xda, 0x34, 0x4d, 0x9e, 0xf1, 0x9c, 0xcb, 0x84, 0x99, 0x47, 0x34, 0xc6, 0x8b, 0xb0, 0x22, + 0x2b, 0xd4, 0x63, 0xe3, 0x15, 0xa8, 0x70, 0x5f, 0xc4, 0x27, 0x18, 0x4f, 0x3d, 0xb6, 0x6d, 0xfc, + 0x56, 0x01, 0x66, 0xe4, 0x47, 0x6a, 0xe4, 0x26, 0x40, 0x2f, 0x8e, 0x1e, 0x0e, 0x34, 0x7a, 0x2e, + 0x87, 0x88, 0x0f, 0x87, 0x2a, 0x5c, 0x44, 0x1c, 0xe3, 0xde, 0x81, 0xe5, 0x2e, 0x0d, 0x69, 0x8c, + 0x57, 0xa3, 0xe4, 0x6e, 0xa0, 0xb8, 0xc5, 0x5d, 0xc4, 0x5b, 0xdc, 0x8b, 0x19, 0x57, 0xec, 0x09, + 0x8a, 0xeb, 0xdc, 0xcf, 0x56, 0x5f, 0x5e, 0x82, 0xfa, 0xe0, 0xa7, 0x70, 0x64, 0x51, 0x9d, 0xa5, + 0x89, 0xf3, 0x09, 0xf1, 0xb0, 0xfe, 0xed, 0x49, 0xf1, 0x55, 0x2c, 0x5e, 0x74, 0x98, 0x87, 0x59, + 0xfe, 0x9b, 0xdd, 0xcb, 0x33, 0x26, 0x14, 0x29, 0xbb, 0xc6, 0x60, 0x14, 0x14, 0x29, 0x3b, 0x73, + 0x37, 0x8a, 0x64, 0x01, 0xe6, 0x38, 0x49, 0x3b, 0x6d, 0x36, 0x26, 0x49, 0x0d, 0xca, 0xa8, 0x2d, + 0xea, 0xb5, 0x8c, 0x12, 0x99, 0x85, 0x0a, 0x7f, 0xc2, 0x83, 0x4a, 0x63, 0x2a, 0x53, 0x82, 0x1b, + 0x73, 0x9b, 0xdd, 0xae, 0x31, 0xad, 0xe4, 0xef, 0x45, 0x2c, 0x34, 0x66, 0xd4, 0xd3, 0x7d, 0xe6, + 0xfb, 0x46, 0x99, 0x2c, 0x03, 0xe1, 0x4f, 0x83, 0xdf, 0xc2, 0x19, 0x15, 0x62, 0xc2, 0xa2, 0x4e, + 0x57, 0x5f, 0xc0, 0x18, 0x40, 0x08, 0xd4, 0x39, 0x27, 0x3f, 0x83, 0x37, 0xaa, 0xe4, 0x32, 0x2c, + 0x23, 0x6d, 0xe4, 0x02, 0xa2, 0x51, 0x53, 0xf6, 0x78, 0x09, 0x37, 0x66, 0x49, 0x1d, 0x80, 0x3f, + 0x89, 0x9c, 0x32, 0xea, 0xea, 0x59, 0x8c, 0xb4, 0x31, 0x47, 0xe6, 0xa0, 0x9a, 0x3f, 0x6f, 0x18, + 0x86, 0x72, 0x70, 0xb0, 0xcf, 0x8d, 0x79, 0x25, 0x28, 0xbf, 0xf7, 0x32, 0x88, 0x6a, 0x78, 0xf6, + 0xad, 0x94, 0xb1, 0xa0, 0x7a, 0x4f, 0xfb, 0x1a, 0xc9, 0x58, 0x5c, 0x7f, 0x13, 0x6a, 0xfa, 0x57, + 0x35, 0x5c, 0xd1, 0x03, 0x27, 0x49, 0x8e, 0x4e, 0xe2, 0xa8, 0xdf, 0x3d, 0x31, 0x26, 0x78, 0x87, + 0x66, 0xd6, 0x8c, 0x02, 0x29, 0x43, 0xe9, 0xae, 0x93, 0x9c, 0x18, 0xc5, 0xf5, 0x77, 0x60, 0x6e, + 0xe8, 0xcb, 0x37, 0xce, 0x6c, 0x1d, 0xb6, 0x76, 0x8d, 0x09, 0xfe, 0x6f, 0x6f, 0xb3, 0x7d, 0x64, + 0x14, 0xc8, 0x22, 0x18, 0x77, 0x9b, 0xef, 0xdd, 0xb5, 0xb7, 0x0f, 0x0f, 0x1e, 0x58, 0xbb, 0xed, + 0x76, 0xf3, 0xb0, 0x65, 0x14, 0xd7, 0x6f, 0x02, 0xe4, 0x97, 0x78, 0x49, 0x05, 0xa6, 0x70, 0x87, + 0x56, 0x00, 0x8f, 0xd8, 0xfd, 0xf7, 0x8d, 0x02, 0xa9, 0xc2, 0x8c, 0x5c, 0x27, 0x18, 0xc5, 0xf5, + 0xdb, 0x30, 0x27, 0x2e, 0x64, 0xa0, 0xf7, 0xf7, 0x59, 0xc8, 0x27, 0x1c, 0xd2, 0x6c, 0xbd, 0xbf, + 0xb9, 0xdf, 0xdc, 0xb1, 0x9b, 0xad, 0x9d, 0xdd, 0x6f, 0xd8, 0xf7, 0x9b, 0xad, 0x1d, 0xa1, 0xe1, + 0x6e, 0xab, 0xfd, 0x81, 0x51, 0x58, 0x3f, 0x86, 0xc5, 0x71, 0x97, 0xde, 0xc9, 0x15, 0x58, 0x51, + 0xc8, 0x9d, 0x66, 0xfb, 0x68, 0xb3, 0xb5, 0xbd, 0x6b, 0x1f, 0xec, 0x1e, 0x59, 0xcd, 0x6d, 0x63, + 0x82, 0x4c, 0x43, 0x71, 0xff, 0x35, 0xa3, 0x80, 0xbf, 0x1b, 0x46, 0x91, 0x00, 0x4c, 0x6f, 0x1f, + 0xb6, 0x9b, 0xad, 0x5d, 0x63, 0x92, 0x77, 0x6a, 0xb3, 0xd5, 0xda, 0xb5, 0xec, 0x07, 0xd6, 0xe1, + 0xce, 0xd7, 0xb7, 0x8f, 0x8c, 0xd2, 0xfa, 0x6b, 0xf9, 0x47, 0x41, 0xd8, 0x94, 0x45, 0x30, 0x9a, + 0xe1, 0x23, 0xc7, 0x67, 0x5e, 0x46, 0x33, 0x26, 0x78, 0x5b, 0x0e, 0x45, 0x55, 0x35, 0x0a, 0xeb, + 0x3f, 0x9f, 0x7f, 0xe1, 0x81, 0x90, 0x15, 0x58, 0xd0, 0x9f, 0x25, 0xdc, 0x98, 0x18, 0x66, 0xb4, + 0xa2, 0xb6, 0x1b, 0xc5, 0xd4, 0x28, 0x90, 0x4b, 0xb0, 0xa4, 0x33, 0x3e, 0x60, 0xe9, 0x89, 0x60, + 0x15, 0xd7, 0xbf, 0x31, 0x74, 0xfb, 0x5d, 0x0d, 0xea, 0xa0, 0x66, 0x19, 0x67, 0xa2, 0x77, 0x8c, + 0x02, 0x31, 0xa0, 0x26, 0x05, 0x70, 0x87, 0xc5, 0x28, 0x2a, 0xca, 0x5e, 0xdf, 0xf7, 0x53, 0x7a, + 0x96, 0x1a, 0x93, 0xeb, 0x3f, 0x28, 0x40, 0x59, 0x5d, 0x58, 0xcc, 0xf3, 0x35, 0xa4, 0x31, 0x66, + 0xd2, 0x04, 0x59, 0x82, 0x79, 0xcc, 0x3c, 0xda, 0x49, 0x0f, 0xfb, 0xa9, 0x24, 0x17, 0x54, 0xc4, + 0x5a, 0xac, 0x7b, 0xa2, 0xd1, 0x33, 0x03, 0xea, 0xda, 0x99, 0x31, 0xc9, 0xbb, 0x0e, 0xb3, 0x3b, + 0x4c, 0x59, 0x46, 0x2d, 0xf1, 0xb6, 0x0e, 0xa8, 0xcd, 0x58, 0x53, 0xe4, 0x2a, 0x5c, 0x52, 0x80, + 0x51, 0xf6, 0xf4, 0xfa, 0x2a, 0xd4, 0xf4, 0x8b, 0x92, 0xca, 0x22, 0x0f, 0x5f, 0xe1, 0xf2, 0xfa, + 0xdb, 0x30, 0x3f, 0x72, 0x29, 0x8b, 0x0f, 0x7c, 0xb3, 0x25, 0xc6, 0xec, 0xa0, 0xd9, 0xb2, 0x0f, + 0x36, 0xbf, 0x21, 0x3a, 0x68, 0x6b, 0xff, 0xf0, 0xf0, 0xc0, 0xde, 0x6b, 0xee, 0x1f, 0xed, 0x5a, + 0x46, 0x71, 0x7d, 0x7d, 0x08, 0x8b, 0x09, 0xc0, 0x03, 0xf9, 0x70, 0x7b, 0x73, 0xdf, 0x98, 0xe0, + 0x71, 0xf3, 0xde, 0xfe, 0xe1, 0xd6, 0xe6, 0xbe, 0x51, 0x58, 0xdf, 0x82, 0xf9, 0x91, 0x0b, 0x20, + 0x7c, 0x50, 0xf6, 0xa2, 0xd8, 0xa5, 0x82, 0x24, 0x02, 0x77, 0xb3, 0x9f, 0x46, 0x46, 0x81, 0x17, + 0x15, 0x64, 0x89, 0xb2, 0xc5, 0xc2, 0xae, 0x51, 0x5c, 0xff, 0x2a, 0xcc, 0x0d, 0x2d, 0xd1, 0x78, + 0x6a, 0xee, 0x45, 0xbe, 0x1f, 0x3d, 0xe6, 0x12, 0x98, 0xa9, 0x0f, 0xf8, 0xb2, 0xd4, 0xe3, 0x8f, + 0x05, 0x3e, 0xc6, 0xdb, 0x78, 0xca, 0x9f, 0x5a, 0xd1, 0x63, 0xa3, 0xb8, 0x7e, 0x08, 0xc6, 0xf0, + 0xb2, 0x88, 0xcc, 0xc0, 0x64, 0x33, 0x4c, 0x8d, 0x09, 0xee, 0xf8, 0x9e, 0x1f, 0x39, 0xa9, 0xc8, + 0xbb, 0x1d, 0xea, 0xb2, 0xc0, 0xf1, 0x8d, 0x22, 0x2f, 0x57, 0x3b, 0x4e, 0x4a, 0x8f, 0x58, 0x40, + 0x45, 0xa9, 0xdd, 0xe9, 0x8b, 0xcb, 0x07, 0x46, 0x89, 0xe7, 0xe4, 0xd0, 0x22, 0x89, 0x37, 0x81, + 0xbf, 0xd1, 0x8a, 0xe6, 0xa3, 0xb5, 0xc4, 0x28, 0x60, 0x57, 0xf0, 0xb9, 0x33, 0x31, 0x8a, 0x5b, + 0x6f, 0xfd, 0xe4, 0xfb, 0xe5, 0xc2, 0x0f, 0x3f, 0xb9, 0x56, 0xf8, 0xd1, 0x27, 0xd7, 0x0a, 0x3f, + 0xfd, 0xe4, 0x5a, 0xe1, 0xd7, 0x3f, 0xbd, 0x36, 0xf1, 0x9d, 0x4f, 0xaf, 0x4d, 0xfc, 0xe8, 0xd3, + 0x6b, 0x13, 0x3f, 0xf9, 0xf4, 0xda, 0x04, 0x2c, 0xb9, 0x51, 0x70, 0x93, 0xcf, 0xb3, 0xae, 0xd3, + 0xbb, 0x99, 0x32, 0xef, 0x18, 0x67, 0x9e, 0x07, 0x85, 0xff, 0x09, 0x00, 0x00, 0xff, 0xff, 0x0e, + 0xfb, 0xae, 0x53, 0xb7, 0x41, 0x00, 0x00, } func (m *Executor) Marshal() (dAtA []byte, err error) { @@ -5876,6 +6059,70 @@ func (m *FTSQueryInfo) MarshalToSizedBuffer(dAtA []byte) (int, error) { return len(dAtA) - i, nil } +func (m *TiCIVectorQueryInfo) 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 *TiCIVectorQueryInfo) MarshalTo(dAtA []byte) (int, error) { + size := m.Size() + return m.MarshalToSizedBuffer(dAtA[:size]) +} + +func (m *TiCIVectorQueryInfo) MarshalToSizedBuffer(dAtA []byte) (int, error) { + i := len(dAtA) + _ = i + var l int + _ = l + i -= len(m.ColumnName) + copy(dAtA[i:], m.ColumnName) + i = encodeVarintExecutor(dAtA, i, uint64(len(m.ColumnName))) + i-- + dAtA[i] = 0x42 + if len(m.FilterExpr) > 0 { + for iNdEx := len(m.FilterExpr) - 1; iNdEx >= 0; iNdEx-- { + { + size, err := m.FilterExpr[iNdEx].MarshalToSizedBuffer(dAtA[:i]) + if err != nil { + return 0, err + } + i -= size + i = encodeVarintExecutor(dAtA, i, uint64(size)) + } + i-- + dAtA[i] = 0x3a + } + } + i = encodeVarintExecutor(dAtA, i, uint64(m.Dimension)) + i-- + dAtA[i] = 0x30 + if m.QueryVector != nil { + i -= len(m.QueryVector) + copy(dAtA[i:], m.QueryVector) + i = encodeVarintExecutor(dAtA, i, uint64(len(m.QueryVector))) + i-- + dAtA[i] = 0x2a + } + i = encodeVarintExecutor(dAtA, i, uint64(m.TopK)) + i-- + dAtA[i] = 0x20 + i = encodeVarintExecutor(dAtA, i, uint64(m.DistanceMetric)) + i-- + dAtA[i] = 0x18 + i = encodeVarintExecutor(dAtA, i, uint64(m.ColumnId)) + i-- + dAtA[i] = 0x10 + i = encodeVarintExecutor(dAtA, i, uint64(m.IndexId)) + i-- + dAtA[i] = 0x8 + return len(dAtA) - i, nil +} + func (m *ColumnarIndexInfo) Marshal() (dAtA []byte, err error) { size := m.Size() dAtA = make([]byte, size) @@ -6538,6 +6785,18 @@ func (m *IndexScan) MarshalToSizedBuffer(dAtA []byte) (int, error) { _ = i var l int _ = l + if m.TiciVectorQueryInfo != nil { + { + size, err := m.TiciVectorQueryInfo.MarshalToSizedBuffer(dAtA[:i]) + if err != nil { + return 0, err + } + i -= size + i = encodeVarintExecutor(dAtA, i, uint64(size)) + } + i-- + dAtA[i] = 0x42 + } if m.FtsQueryInfo != nil { { size, err := m.FtsQueryInfo.MarshalToSizedBuffer(dAtA[:i]) @@ -7197,6 +7456,48 @@ func (m *TiFlashScanContext) MarshalToSizedBuffer(dAtA []byte) (int, error) { _ = i var l int _ = l + if m.TiciVecShardCount != nil { + i = encodeVarintExecutor(dAtA, i, uint64(*m.TiciVecShardCount)) + i-- + dAtA[i] = 0xc + i-- + dAtA[i] = 0xe8 + } + if m.TiciVecResultCount != nil { + i = encodeVarintExecutor(dAtA, i, uint64(*m.TiciVecResultCount)) + i-- + dAtA[i] = 0xc + i-- + dAtA[i] = 0xe0 + } + if m.TiciVecCandidateCount != nil { + i = encodeVarintExecutor(dAtA, i, uint64(*m.TiciVecCandidateCount)) + i-- + dAtA[i] = 0xc + i-- + dAtA[i] = 0xd8 + } + if m.TiciVecFilterTotalMs != nil { + i = encodeVarintExecutor(dAtA, i, uint64(*m.TiciVecFilterTotalMs)) + i-- + dAtA[i] = 0xc + i-- + dAtA[i] = 0xd0 + } + if m.TiciVecSearchTotalMs != nil { + i = encodeVarintExecutor(dAtA, i, uint64(*m.TiciVecSearchTotalMs)) + i-- + dAtA[i] = 0xc + i-- + dAtA[i] = 0xc8 + } + if m.TiciVecQueryCount != nil { + i = encodeVarintExecutor(dAtA, i, uint64(*m.TiciVecQueryCount)) + i-- + dAtA[i] = 0xc + i-- + dAtA[i] = 0xc0 + } if m.FtsBruteTotalSearchMs != nil { i = encodeVarintExecutor(dAtA, i, uint64(*m.FtsBruteTotalSearchMs)) i-- @@ -8665,6 +8966,32 @@ func (m *FTSQueryInfo) Size() (n int) { return n } +func (m *TiCIVectorQueryInfo) Size() (n int) { + if m == nil { + return 0 + } + var l int + _ = l + n += 1 + sovExecutor(uint64(m.IndexId)) + n += 1 + sovExecutor(uint64(m.ColumnId)) + n += 1 + sovExecutor(uint64(m.DistanceMetric)) + n += 1 + sovExecutor(uint64(m.TopK)) + if m.QueryVector != nil { + l = len(m.QueryVector) + n += 1 + l + sovExecutor(uint64(l)) + } + n += 1 + sovExecutor(uint64(m.Dimension)) + if len(m.FilterExpr) > 0 { + for _, e := range m.FilterExpr { + l = e.Size() + n += 1 + l + sovExecutor(uint64(l)) + } + } + l = len(m.ColumnName) + n += 1 + l + sovExecutor(uint64(l)) + return n +} + func (m *ColumnarIndexInfo) Size() (n int) { if m == nil { return 0 @@ -8965,6 +9292,10 @@ func (m *IndexScan) Size() (n int) { l = m.FtsQueryInfo.Size() n += 1 + l + sovExecutor(uint64(l)) } + if m.TiciVectorQueryInfo != nil { + l = m.TiciVectorQueryInfo.Size() + n += 1 + l + sovExecutor(uint64(l)) + } return n } @@ -9442,6 +9773,24 @@ func (m *TiFlashScanContext) Size() (n int) { if m.FtsBruteTotalSearchMs != nil { n += 2 + sovExecutor(uint64(*m.FtsBruteTotalSearchMs)) } + if m.TiciVecQueryCount != nil { + n += 2 + sovExecutor(uint64(*m.TiciVecQueryCount)) + } + if m.TiciVecSearchTotalMs != nil { + n += 2 + sovExecutor(uint64(*m.TiciVecSearchTotalMs)) + } + if m.TiciVecFilterTotalMs != nil { + n += 2 + sovExecutor(uint64(*m.TiciVecFilterTotalMs)) + } + if m.TiciVecCandidateCount != nil { + n += 2 + sovExecutor(uint64(*m.TiciVecCandidateCount)) + } + if m.TiciVecResultCount != nil { + n += 2 + sovExecutor(uint64(*m.TiciVecResultCount)) + } + if m.TiciVecShardCount != nil { + n += 2 + sovExecutor(uint64(*m.TiciVecShardCount)) + } return n } @@ -12604,6 +12953,251 @@ func (m *FTSQueryInfo) Unmarshal(dAtA []byte) error { } return nil } +func (m *TiCIVectorQueryInfo) 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 ErrIntOverflowExecutor + } + 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: TiCIVectorQueryInfo: wiretype end group for non-group") + } + if fieldNum <= 0 { + return fmt.Errorf("proto: TiCIVectorQueryInfo: illegal tag %d (wire type %d)", fieldNum, wire) + } + switch fieldNum { + case 1: + if wireType != 0 { + return fmt.Errorf("proto: wrong wireType = %d for field IndexId", wireType) + } + m.IndexId = 0 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowExecutor + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + m.IndexId |= int64(b&0x7F) << shift + if b < 0x80 { + break + } + } + case 2: + if wireType != 0 { + return fmt.Errorf("proto: wrong wireType = %d for field ColumnId", wireType) + } + m.ColumnId = 0 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowExecutor + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + m.ColumnId |= int64(b&0x7F) << shift + if b < 0x80 { + break + } + } + case 3: + if wireType != 0 { + return fmt.Errorf("proto: wrong wireType = %d for field DistanceMetric", wireType) + } + m.DistanceMetric = 0 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowExecutor + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + m.DistanceMetric |= VectorDistanceMetric(b&0x7F) << shift + if b < 0x80 { + break + } + } + case 4: + if wireType != 0 { + return fmt.Errorf("proto: wrong wireType = %d for field TopK", wireType) + } + m.TopK = 0 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowExecutor + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + m.TopK |= uint32(b&0x7F) << shift + if b < 0x80 { + break + } + } + case 5: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field QueryVector", wireType) + } + var byteLen int + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowExecutor + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + byteLen |= int(b&0x7F) << shift + if b < 0x80 { + break + } + } + if byteLen < 0 { + return ErrInvalidLengthExecutor + } + postIndex := iNdEx + byteLen + if postIndex < 0 { + return ErrInvalidLengthExecutor + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + m.QueryVector = append(m.QueryVector[:0], dAtA[iNdEx:postIndex]...) + if m.QueryVector == nil { + m.QueryVector = []byte{} + } + iNdEx = postIndex + case 6: + if wireType != 0 { + return fmt.Errorf("proto: wrong wireType = %d for field Dimension", wireType) + } + m.Dimension = 0 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowExecutor + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + m.Dimension |= uint32(b&0x7F) << shift + if b < 0x80 { + break + } + } + case 7: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field FilterExpr", wireType) + } + var msglen int + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowExecutor + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + msglen |= int(b&0x7F) << shift + if b < 0x80 { + break + } + } + if msglen < 0 { + return ErrInvalidLengthExecutor + } + postIndex := iNdEx + msglen + if postIndex < 0 { + return ErrInvalidLengthExecutor + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + m.FilterExpr = append(m.FilterExpr, Expr{}) + if err := m.FilterExpr[len(m.FilterExpr)-1].Unmarshal(dAtA[iNdEx:postIndex]); err != nil { + return err + } + iNdEx = postIndex + case 8: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field ColumnName", wireType) + } + var stringLen uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowExecutor + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + stringLen |= uint64(b&0x7F) << shift + if b < 0x80 { + break + } + } + intStringLen := int(stringLen) + if intStringLen < 0 { + return ErrInvalidLengthExecutor + } + postIndex := iNdEx + intStringLen + if postIndex < 0 { + return ErrInvalidLengthExecutor + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + m.ColumnName = string(dAtA[iNdEx:postIndex]) + iNdEx = postIndex + default: + iNdEx = preIndex + skippy, err := skipExecutor(dAtA[iNdEx:]) + if err != nil { + return err + } + if (skippy < 0) || (iNdEx+skippy) < 0 { + return ErrInvalidLengthExecutor + } + if (iNdEx + skippy) > l { + return io.ErrUnexpectedEOF + } + iNdEx += skippy + } + } + + if iNdEx > l { + return io.ErrUnexpectedEOF + } + return nil +} func (m *ColumnarIndexInfo) Unmarshal(dAtA []byte) error { l := len(dAtA) iNdEx := 0 @@ -14795,6 +15389,42 @@ func (m *IndexScan) Unmarshal(dAtA []byte) error { return err } iNdEx = postIndex + case 8: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field TiciVectorQueryInfo", wireType) + } + var msglen int + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowExecutor + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + msglen |= int(b&0x7F) << shift + if b < 0x80 { + break + } + } + if msglen < 0 { + return ErrInvalidLengthExecutor + } + postIndex := iNdEx + msglen + if postIndex < 0 { + return ErrInvalidLengthExecutor + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + if m.TiciVectorQueryInfo == nil { + m.TiciVectorQueryInfo = &TiCIVectorQueryInfo{} + } + if err := m.TiciVectorQueryInfo.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { + return err + } + iNdEx = postIndex default: iNdEx = preIndex skippy, err := skipExecutor(dAtA[iNdEx:]) @@ -17875,6 +18505,126 @@ func (m *TiFlashScanContext) Unmarshal(dAtA []byte) error { } } m.FtsBruteTotalSearchMs = &v + case 200: + if wireType != 0 { + return fmt.Errorf("proto: wrong wireType = %d for field TiciVecQueryCount", wireType) + } + var v uint32 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowExecutor + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + v |= uint32(b&0x7F) << shift + if b < 0x80 { + break + } + } + m.TiciVecQueryCount = &v + case 201: + if wireType != 0 { + return fmt.Errorf("proto: wrong wireType = %d for field TiciVecSearchTotalMs", wireType) + } + var v uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowExecutor + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + v |= uint64(b&0x7F) << shift + if b < 0x80 { + break + } + } + m.TiciVecSearchTotalMs = &v + case 202: + if wireType != 0 { + return fmt.Errorf("proto: wrong wireType = %d for field TiciVecFilterTotalMs", wireType) + } + var v uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowExecutor + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + v |= uint64(b&0x7F) << shift + if b < 0x80 { + break + } + } + m.TiciVecFilterTotalMs = &v + case 203: + if wireType != 0 { + return fmt.Errorf("proto: wrong wireType = %d for field TiciVecCandidateCount", wireType) + } + var v uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowExecutor + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + v |= uint64(b&0x7F) << shift + if b < 0x80 { + break + } + } + m.TiciVecCandidateCount = &v + case 204: + if wireType != 0 { + return fmt.Errorf("proto: wrong wireType = %d for field TiciVecResultCount", wireType) + } + var v uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowExecutor + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + v |= uint64(b&0x7F) << shift + if b < 0x80 { + break + } + } + m.TiciVecResultCount = &v + case 205: + if wireType != 0 { + return fmt.Errorf("proto: wrong wireType = %d for field TiciVecShardCount", wireType) + } + var v uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowExecutor + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + v |= uint64(b&0x7F) << shift + if b < 0x80 { + break + } + } + m.TiciVecShardCount = &v default: iNdEx = preIndex skippy, err := skipExecutor(dAtA[iNdEx:]) diff --git a/proto/executor.proto b/proto/executor.proto index 05bf7c92..b63bdca2 100644 --- a/proto/executor.proto +++ b/proto/executor.proto @@ -234,6 +234,30 @@ enum ColumnarIndexType { TypeFulltext = 3; } +// TiCIVectorQueryInfo carries a TiCI vector top-k query. +// Used when a hybrid index with a vector component is chosen by the planner. +// The primary operator is ANN top-k; an optional filter expression can be +// pushed down so that TiCI can apply it before or during the ANN search. +message TiCIVectorQueryInfo { + // The index that contains the vector component. + optional int64 index_id = 1 [(gogoproto.nullable) = false]; + // Column ID of the vector column being searched. + optional int64 column_id = 2 [(gogoproto.nullable) = false]; + // Distance metric to use for the search. + optional VectorDistanceMetric distance_metric = 3 [(gogoproto.nullable) = false]; + // Number of nearest neighbors to return. + optional uint32 top_k = 4 [(gogoproto.nullable) = false]; + // The query vector, serialized as a sequence of little-endian float32 values. + optional bytes query_vector = 5; + // Dimensionality of the vector. Must match the index definition. + optional uint32 dimension = 6 [(gogoproto.nullable) = false]; + // Optional pushed-down filter expression (inverted/scalar predicates). + // When present, TiCI applies filtering in conjunction with ANN search. + repeated Expr filter_expr = 7 [(gogoproto.nullable) = false]; + // Column name, for debug/explain purposes only. + optional string column_name = 8 [(gogoproto.nullable) = false]; +} + message ColumnarIndexInfo { optional ColumnarIndexType index_type = 1 [(gogoproto.nullable) = false]; oneof index { @@ -336,6 +360,7 @@ message IndexScan { optional bool unique = 5; // check whether it is a unique index. repeated int64 primary_column_ids = 6; optional FTSQueryInfo fts_query_info = 7; // only used by TiFlash + optional TiCIVectorQueryInfo tici_vector_query_info = 8; // only used by TiFlash, for TiCI hybrid vector queries } message Selection { @@ -528,6 +553,15 @@ message TiFlashScanContext { optional uint64 fts_idx_tiny_total_read_others_ms = 172; optional uint64 fts_brute_total_read_ms = 173; optional uint64 fts_brute_total_search_ms = 174; + + /// tici vector search related fields + + optional uint32 tici_vec_query_count = 200; + optional uint64 tici_vec_search_total_ms = 201; + optional uint64 tici_vec_filter_total_ms = 202; + optional uint64 tici_vec_candidate_count = 203; + optional uint64 tici_vec_result_count = 204; + optional uint64 tici_vec_shard_count = 205; } message TiFlashWaitSummary {