diff --git a/go-tipb/executor.pb.go b/go-tipb/executor.pb.go index c89efcbb..091357dd 100644 --- a/go-tipb/executor.pb.go +++ b/go-tipb/executor.pb.go @@ -10,6 +10,8 @@ import ( math "math" + encoding_binary "encoding/binary" + io "io" ) @@ -209,6 +211,80 @@ func (x *EngineType) UnmarshalJSON(data []byte) error { } func (EngineType) EnumDescriptor() ([]byte, []int) { return fileDescriptorExecutor, []int{3} } +type ANNQueryDistanceMetric int32 + +const ( + ANNQueryDistanceMetric_InvalidMetric ANNQueryDistanceMetric = 0 + // L1 = 1; // Not supported for now + ANNQueryDistanceMetric_L2 ANNQueryDistanceMetric = 2 + ANNQueryDistanceMetric_Cosine ANNQueryDistanceMetric = 3 +) + +var ANNQueryDistanceMetric_name = map[int32]string{ + 0: "InvalidMetric", + 2: "L2", + 3: "Cosine", +} +var ANNQueryDistanceMetric_value = map[string]int32{ + "InvalidMetric": 0, + "L2": 2, + "Cosine": 3, +} + +func (x ANNQueryDistanceMetric) Enum() *ANNQueryDistanceMetric { + p := new(ANNQueryDistanceMetric) + *p = x + return p +} +func (x ANNQueryDistanceMetric) String() string { + return proto.EnumName(ANNQueryDistanceMetric_name, int32(x)) +} +func (x *ANNQueryDistanceMetric) UnmarshalJSON(data []byte) error { + value, err := proto.UnmarshalJSONEnum(ANNQueryDistanceMetric_value, data, "ANNQueryDistanceMetric") + if err != nil { + return err + } + *x = ANNQueryDistanceMetric(value) + return nil +} +func (ANNQueryDistanceMetric) EnumDescriptor() ([]byte, []int) { + return fileDescriptorExecutor, []int{4} +} + +type ANNQueryType int32 + +const ( + ANNQueryType_InvalidQueryType ANNQueryType = 0 + ANNQueryType_OrderBy ANNQueryType = 1 +) + +var ANNQueryType_name = map[int32]string{ + 0: "InvalidQueryType", + 1: "OrderBy", +} +var ANNQueryType_value = map[string]int32{ + "InvalidQueryType": 0, + "OrderBy": 1, +} + +func (x ANNQueryType) Enum() *ANNQueryType { + p := new(ANNQueryType) + *p = x + return p +} +func (x ANNQueryType) String() string { + return proto.EnumName(ANNQueryType_name, int32(x)) +} +func (x *ANNQueryType) UnmarshalJSON(data []byte) error { + value, err := proto.UnmarshalJSONEnum(ANNQueryType_value, data, "ANNQueryType") + if err != nil { + return err + } + *x = ANNQueryType(value) + return nil +} +func (ANNQueryType) EnumDescriptor() ([]byte, []int) { return fileDescriptorExecutor, []int{5} } + type JoinType int32 const ( @@ -256,7 +332,7 @@ func (x *JoinType) UnmarshalJSON(data []byte) error { *x = JoinType(value) return nil } -func (JoinType) EnumDescriptor() ([]byte, []int) { return fileDescriptorExecutor, []int{4} } +func (JoinType) EnumDescriptor() ([]byte, []int) { return fileDescriptorExecutor, []int{6} } type JoinExecType int32 @@ -287,7 +363,7 @@ func (x *JoinExecType) UnmarshalJSON(data []byte) error { *x = JoinExecType(value) return nil } -func (JoinExecType) EnumDescriptor() ([]byte, []int) { return fileDescriptorExecutor, []int{5} } +func (JoinExecType) EnumDescriptor() ([]byte, []int) { return fileDescriptorExecutor, []int{7} } type RuntimeFilterType int32 @@ -324,7 +400,7 @@ func (x *RuntimeFilterType) UnmarshalJSON(data []byte) error { *x = RuntimeFilterType(value) return nil } -func (RuntimeFilterType) EnumDescriptor() ([]byte, []int) { return fileDescriptorExecutor, []int{6} } +func (RuntimeFilterType) EnumDescriptor() ([]byte, []int) { return fileDescriptorExecutor, []int{8} } type RuntimeFilterMode int32 @@ -358,7 +434,7 @@ func (x *RuntimeFilterMode) UnmarshalJSON(data []byte) error { *x = RuntimeFilterMode(value) return nil } -func (RuntimeFilterMode) EnumDescriptor() ([]byte, []int) { return fileDescriptorExecutor, []int{7} } +func (RuntimeFilterMode) EnumDescriptor() ([]byte, []int) { return fileDescriptorExecutor, []int{9} } type WindowBoundType int32 @@ -395,7 +471,7 @@ func (x *WindowBoundType) UnmarshalJSON(data []byte) error { *x = WindowBoundType(value) return nil } -func (WindowBoundType) EnumDescriptor() ([]byte, []int) { return fileDescriptorExecutor, []int{8} } +func (WindowBoundType) EnumDescriptor() ([]byte, []int) { return fileDescriptorExecutor, []int{10} } // Used for range frame's comparison when finding frame's boundary type RangeCmpDataType int32 @@ -439,7 +515,7 @@ func (x *RangeCmpDataType) UnmarshalJSON(data []byte) error { *x = RangeCmpDataType(value) return nil } -func (RangeCmpDataType) EnumDescriptor() ([]byte, []int) { return fileDescriptorExecutor, []int{9} } +func (RangeCmpDataType) EnumDescriptor() ([]byte, []int) { return fileDescriptorExecutor, []int{11} } type WindowFrameType int32 @@ -476,7 +552,7 @@ func (x *WindowFrameType) UnmarshalJSON(data []byte) error { *x = WindowFrameType(value) return nil } -func (WindowFrameType) EnumDescriptor() ([]byte, []int) { return fileDescriptorExecutor, []int{10} } +func (WindowFrameType) EnumDescriptor() ([]byte, []int) { return fileDescriptorExecutor, []int{12} } // It represents a Executor. type Executor struct { @@ -781,54 +857,78 @@ func (m *ExchangeReceiver) GetOriginalCtePrdocuerTaskMeta() [][]byte { return nil } -type TableScanANNHint struct { - TopNOrderBy *ByItem `protobuf:"bytes,1,opt,name=top_n_order_by,json=topNOrderBy" json:"top_n_order_by,omitempty"` - TopNLimit int64 `protobuf:"varint,2,opt,name=top_n_limit,json=topNLimit" json:"top_n_limit"` - PreFilters *Expr `protobuf:"bytes,3,opt,name=pre_filters,json=preFilters" json:"pre_filters,omitempty"` - XXX_unrecognized []byte `json:"-"` +type ANNQueryInfo struct { + QueryType *ANNQueryType `protobuf:"varint,1,opt,name=query_type,json=queryType,enum=tipb.ANNQueryType" json:"query_type,omitempty"` + DistanceMetric *ANNQueryDistanceMetric `protobuf:"varint,2,opt,name=distance_metric,json=distanceMetric,enum=tipb.ANNQueryDistanceMetric" json:"distance_metric,omitempty"` + TopK *uint64 `protobuf:"varint,3,opt,name=top_k,json=topK" json:"top_k,omitempty"` + RefVecF32 []float32 `protobuf:"fixed32,4,rep,name=ref_vec_f32,json=refVecF32" json:"ref_vec_f32,omitempty"` + MaxDistance *float64 `protobuf:"fixed64,10,opt,name=max_distance,json=maxDistance" json:"max_distance,omitempty"` + HnswEfSearch *uint32 `protobuf:"varint,20,opt,name=hnsw_ef_search,json=hnswEfSearch" json:"hnsw_ef_search,omitempty"` + XXX_unrecognized []byte `json:"-"` } -func (m *TableScanANNHint) Reset() { *m = TableScanANNHint{} } -func (m *TableScanANNHint) String() string { return proto.CompactTextString(m) } -func (*TableScanANNHint) ProtoMessage() {} -func (*TableScanANNHint) Descriptor() ([]byte, []int) { return fileDescriptorExecutor, []int{4} } +func (m *ANNQueryInfo) Reset() { *m = ANNQueryInfo{} } +func (m *ANNQueryInfo) String() string { return proto.CompactTextString(m) } +func (*ANNQueryInfo) ProtoMessage() {} +func (*ANNQueryInfo) Descriptor() ([]byte, []int) { return fileDescriptorExecutor, []int{4} } -func (m *TableScanANNHint) GetTopNOrderBy() *ByItem { - if m != nil { - return m.TopNOrderBy +func (m *ANNQueryInfo) GetQueryType() ANNQueryType { + if m != nil && m.QueryType != nil { + return *m.QueryType } - return nil + return ANNQueryType_InvalidQueryType } -func (m *TableScanANNHint) GetTopNLimit() int64 { - if m != nil { - return m.TopNLimit +func (m *ANNQueryInfo) GetDistanceMetric() ANNQueryDistanceMetric { + if m != nil && m.DistanceMetric != nil { + return *m.DistanceMetric + } + return ANNQueryDistanceMetric_InvalidMetric +} + +func (m *ANNQueryInfo) GetTopK() uint64 { + if m != nil && m.TopK != nil { + return *m.TopK } return 0 } -func (m *TableScanANNHint) GetPreFilters() *Expr { +func (m *ANNQueryInfo) GetRefVecF32() []float32 { if m != nil { - return m.PreFilters + return m.RefVecF32 } return nil } +func (m *ANNQueryInfo) GetMaxDistance() float64 { + if m != nil && m.MaxDistance != nil { + return *m.MaxDistance + } + return 0 +} + +func (m *ANNQueryInfo) GetHnswEfSearch() uint32 { + if m != nil && m.HnswEfSearch != nil { + return *m.HnswEfSearch + } + return 0 +} + type TableScan struct { - TableId int64 `protobuf:"varint,1,opt,name=table_id,json=tableId" json:"table_id"` - Columns []*ColumnInfo `protobuf:"bytes,2,rep,name=columns" json:"columns,omitempty"` - Desc bool `protobuf:"varint,3,opt,name=desc" json:"desc"` - PrimaryColumnIds []int64 `protobuf:"varint,4,rep,name=primary_column_ids,json=primaryColumnIds" json:"primary_column_ids,omitempty"` - NextReadEngine EngineType `protobuf:"varint,5,opt,name=next_read_engine,json=nextReadEngine,enum=tipb.EngineType" json:"next_read_engine"` - Ranges []KeyRange `protobuf:"bytes,6,rep,name=ranges" json:"ranges"` - PrimaryPrefixColumnIds []int64 `protobuf:"varint,7,rep,name=primary_prefix_column_ids,json=primaryPrefixColumnIds" json:"primary_prefix_column_ids,omitempty"` - KeepOrder *bool `protobuf:"varint,8,opt,name=keep_order,json=keepOrder" json:"keep_order,omitempty"` - IsFastScan *bool `protobuf:"varint,9,opt,name=is_fast_scan,json=isFastScan" json:"is_fast_scan,omitempty"` - PushedDownFilterConditions []*Expr `protobuf:"bytes,10,rep,name=pushed_down_filter_conditions,json=pushedDownFilterConditions" json:"pushed_down_filter_conditions,omitempty"` - AnnHint *TableScanANNHint `protobuf:"bytes,13,opt,name=ann_hint,json=annHint" json:"ann_hint,omitempty"` - RuntimeFilterList []*RuntimeFilter `protobuf:"bytes,11,rep,name=runtime_filter_list,json=runtimeFilterList" json:"runtime_filter_list,omitempty"` - MaxWaitTimeMs int32 `protobuf:"varint,12,opt,name=max_wait_time_ms,json=maxWaitTimeMs" json:"max_wait_time_ms"` - XXX_unrecognized []byte `json:"-"` + TableId int64 `protobuf:"varint,1,opt,name=table_id,json=tableId" json:"table_id"` + Columns []*ColumnInfo `protobuf:"bytes,2,rep,name=columns" json:"columns,omitempty"` + Desc bool `protobuf:"varint,3,opt,name=desc" json:"desc"` + PrimaryColumnIds []int64 `protobuf:"varint,4,rep,name=primary_column_ids,json=primaryColumnIds" json:"primary_column_ids,omitempty"` + NextReadEngine EngineType `protobuf:"varint,5,opt,name=next_read_engine,json=nextReadEngine,enum=tipb.EngineType" json:"next_read_engine"` + Ranges []KeyRange `protobuf:"bytes,6,rep,name=ranges" json:"ranges"` + PrimaryPrefixColumnIds []int64 `protobuf:"varint,7,rep,name=primary_prefix_column_ids,json=primaryPrefixColumnIds" json:"primary_prefix_column_ids,omitempty"` + KeepOrder *bool `protobuf:"varint,8,opt,name=keep_order,json=keepOrder" json:"keep_order,omitempty"` + IsFastScan *bool `protobuf:"varint,9,opt,name=is_fast_scan,json=isFastScan" json:"is_fast_scan,omitempty"` + PushedDownFilterConditions []*Expr `protobuf:"bytes,10,rep,name=pushed_down_filter_conditions,json=pushedDownFilterConditions" json:"pushed_down_filter_conditions,omitempty"` + AnnQuery *ANNQueryInfo `protobuf:"bytes,13,opt,name=ann_query,json=annQuery" json:"ann_query,omitempty"` + RuntimeFilterList []*RuntimeFilter `protobuf:"bytes,11,rep,name=runtime_filter_list,json=runtimeFilterList" json:"runtime_filter_list,omitempty"` + MaxWaitTimeMs int32 `protobuf:"varint,12,opt,name=max_wait_time_ms,json=maxWaitTimeMs" json:"max_wait_time_ms"` + XXX_unrecognized []byte `json:"-"` } func (m *TableScan) Reset() { *m = TableScan{} } @@ -906,9 +1006,9 @@ func (m *TableScan) GetPushedDownFilterConditions() []*Expr { return nil } -func (m *TableScan) GetAnnHint() *TableScanANNHint { +func (m *TableScan) GetAnnQuery() *ANNQueryInfo { if m != nil { - return m.AnnHint + return m.AnnQuery } return nil } @@ -928,18 +1028,18 @@ func (m *TableScan) GetMaxWaitTimeMs() int32 { } type PartitionTableScan struct { - TableId int64 `protobuf:"varint,1,opt,name=table_id,json=tableId" json:"table_id"` - Columns []*ColumnInfo `protobuf:"bytes,2,rep,name=columns" json:"columns,omitempty"` - Desc bool `protobuf:"varint,3,opt,name=desc" json:"desc"` - PrimaryColumnIds []int64 `protobuf:"varint,4,rep,name=primary_column_ids,json=primaryColumnIds" json:"primary_column_ids,omitempty"` - PrimaryPrefixColumnIds []int64 `protobuf:"varint,5,rep,name=primary_prefix_column_ids,json=primaryPrefixColumnIds" json:"primary_prefix_column_ids,omitempty"` - PartitionIds []int64 `protobuf:"varint,6,rep,name=partition_ids,json=partitionIds" json:"partition_ids,omitempty"` - IsFastScan *bool `protobuf:"varint,7,opt,name=is_fast_scan,json=isFastScan" json:"is_fast_scan,omitempty"` - PushedDownFilterConditions []*Expr `protobuf:"bytes,8,rep,name=pushed_down_filter_conditions,json=pushedDownFilterConditions" json:"pushed_down_filter_conditions,omitempty"` - AnnHint *TableScanANNHint `protobuf:"bytes,11,opt,name=ann_hint,json=annHint" json:"ann_hint,omitempty"` - RuntimeFilterList []*RuntimeFilter `protobuf:"bytes,9,rep,name=runtime_filter_list,json=runtimeFilterList" json:"runtime_filter_list,omitempty"` - MaxWaitTimeMs int32 `protobuf:"varint,10,opt,name=max_wait_time_ms,json=maxWaitTimeMs" json:"max_wait_time_ms"` - XXX_unrecognized []byte `json:"-"` + TableId int64 `protobuf:"varint,1,opt,name=table_id,json=tableId" json:"table_id"` + Columns []*ColumnInfo `protobuf:"bytes,2,rep,name=columns" json:"columns,omitempty"` + Desc bool `protobuf:"varint,3,opt,name=desc" json:"desc"` + PrimaryColumnIds []int64 `protobuf:"varint,4,rep,name=primary_column_ids,json=primaryColumnIds" json:"primary_column_ids,omitempty"` + PrimaryPrefixColumnIds []int64 `protobuf:"varint,5,rep,name=primary_prefix_column_ids,json=primaryPrefixColumnIds" json:"primary_prefix_column_ids,omitempty"` + PartitionIds []int64 `protobuf:"varint,6,rep,name=partition_ids,json=partitionIds" json:"partition_ids,omitempty"` + IsFastScan *bool `protobuf:"varint,7,opt,name=is_fast_scan,json=isFastScan" json:"is_fast_scan,omitempty"` + PushedDownFilterConditions []*Expr `protobuf:"bytes,8,rep,name=pushed_down_filter_conditions,json=pushedDownFilterConditions" json:"pushed_down_filter_conditions,omitempty"` + AnnQuery *ANNQueryInfo `protobuf:"bytes,11,opt,name=ann_query,json=annQuery" json:"ann_query,omitempty"` + RuntimeFilterList []*RuntimeFilter `protobuf:"bytes,9,rep,name=runtime_filter_list,json=runtimeFilterList" json:"runtime_filter_list,omitempty"` + MaxWaitTimeMs int32 `protobuf:"varint,10,opt,name=max_wait_time_ms,json=maxWaitTimeMs" json:"max_wait_time_ms"` + XXX_unrecognized []byte `json:"-"` } func (m *PartitionTableScan) Reset() { *m = PartitionTableScan{} } @@ -1003,9 +1103,9 @@ func (m *PartitionTableScan) GetPushedDownFilterConditions() []*Expr { return nil } -func (m *PartitionTableScan) GetAnnHint() *TableScanANNHint { +func (m *PartitionTableScan) GetAnnQuery() *ANNQueryInfo { if m != nil { - return m.AnnHint + return m.AnnQuery } return nil } @@ -2079,7 +2179,7 @@ func init() { proto.RegisterType((*ExchangeSender)(nil), "tipb.ExchangeSender") proto.RegisterType((*EncodedBytesSlice)(nil), "tipb.EncodedBytesSlice") proto.RegisterType((*ExchangeReceiver)(nil), "tipb.ExchangeReceiver") - proto.RegisterType((*TableScanANNHint)(nil), "tipb.TableScanANNHint") + proto.RegisterType((*ANNQueryInfo)(nil), "tipb.ANNQueryInfo") proto.RegisterType((*TableScan)(nil), "tipb.TableScan") proto.RegisterType((*PartitionTableScan)(nil), "tipb.PartitionTableScan") proto.RegisterType((*Join)(nil), "tipb.Join") @@ -2107,6 +2207,8 @@ func init() { proto.RegisterEnum("tipb.ExchangeType", ExchangeType_name, ExchangeType_value) proto.RegisterEnum("tipb.CompressionMode", CompressionMode_name, CompressionMode_value) proto.RegisterEnum("tipb.EngineType", EngineType_name, EngineType_value) + proto.RegisterEnum("tipb.ANNQueryDistanceMetric", ANNQueryDistanceMetric_name, ANNQueryDistanceMetric_value) + proto.RegisterEnum("tipb.ANNQueryType", ANNQueryType_name, ANNQueryType_value) proto.RegisterEnum("tipb.JoinType", JoinType_name, JoinType_value) proto.RegisterEnum("tipb.JoinExecType", JoinExecType_name, JoinExecType_value) proto.RegisterEnum("tipb.RuntimeFilterType", RuntimeFilterType_name, RuntimeFilterType_value) @@ -2497,7 +2599,7 @@ func (m *ExchangeReceiver) MarshalTo(dAtA []byte) (int, error) { return i, nil } -func (m *TableScanANNHint) Marshal() (dAtA []byte, err error) { +func (m *ANNQueryInfo) Marshal() (dAtA []byte, err error) { size := m.Size() dAtA = make([]byte, size) n, err := m.MarshalTo(dAtA) @@ -2507,33 +2609,47 @@ func (m *TableScanANNHint) Marshal() (dAtA []byte, err error) { return dAtA[:n], nil } -func (m *TableScanANNHint) MarshalTo(dAtA []byte) (int, error) { +func (m *ANNQueryInfo) MarshalTo(dAtA []byte) (int, error) { var i int _ = i var l int _ = l - if m.TopNOrderBy != nil { - dAtA[i] = 0xa + if m.QueryType != nil { + dAtA[i] = 0x8 i++ - i = encodeVarintExecutor(dAtA, i, uint64(m.TopNOrderBy.Size())) - n18, err := m.TopNOrderBy.MarshalTo(dAtA[i:]) - if err != nil { - return 0, err - } - i += n18 + i = encodeVarintExecutor(dAtA, i, uint64(*m.QueryType)) } - dAtA[i] = 0x10 - i++ - i = encodeVarintExecutor(dAtA, i, uint64(m.TopNLimit)) - if m.PreFilters != nil { - dAtA[i] = 0x1a + if m.DistanceMetric != nil { + dAtA[i] = 0x10 i++ - i = encodeVarintExecutor(dAtA, i, uint64(m.PreFilters.Size())) - n19, err := m.PreFilters.MarshalTo(dAtA[i:]) - if err != nil { - return 0, err + i = encodeVarintExecutor(dAtA, i, uint64(*m.DistanceMetric)) + } + if m.TopK != nil { + dAtA[i] = 0x18 + i++ + i = encodeVarintExecutor(dAtA, i, uint64(*m.TopK)) + } + if len(m.RefVecF32) > 0 { + for _, num := range m.RefVecF32 { + dAtA[i] = 0x25 + i++ + f18 := math.Float32bits(float32(num)) + encoding_binary.LittleEndian.PutUint32(dAtA[i:], uint32(f18)) + i += 4 } - i += n19 + } + if m.MaxDistance != nil { + dAtA[i] = 0x51 + i++ + encoding_binary.LittleEndian.PutUint64(dAtA[i:], uint64(math.Float64bits(float64(*m.MaxDistance)))) + i += 8 + } + if m.HnswEfSearch != nil { + dAtA[i] = 0xa0 + i++ + dAtA[i] = 0x1 + i++ + i = encodeVarintExecutor(dAtA, i, uint64(*m.HnswEfSearch)) } if m.XXX_unrecognized != nil { i += copy(dAtA[i:], m.XXX_unrecognized) @@ -2655,15 +2771,15 @@ func (m *TableScan) MarshalTo(dAtA []byte) (int, error) { dAtA[i] = 0x60 i++ i = encodeVarintExecutor(dAtA, i, uint64(m.MaxWaitTimeMs)) - if m.AnnHint != nil { + if m.AnnQuery != nil { dAtA[i] = 0x6a i++ - i = encodeVarintExecutor(dAtA, i, uint64(m.AnnHint.Size())) - n20, err := m.AnnHint.MarshalTo(dAtA[i:]) + i = encodeVarintExecutor(dAtA, i, uint64(m.AnnQuery.Size())) + n19, err := m.AnnQuery.MarshalTo(dAtA[i:]) if err != nil { return 0, err } - i += n20 + i += n19 } if m.XXX_unrecognized != nil { i += copy(dAtA[i:], m.XXX_unrecognized) @@ -2767,15 +2883,15 @@ func (m *PartitionTableScan) MarshalTo(dAtA []byte) (int, error) { dAtA[i] = 0x50 i++ i = encodeVarintExecutor(dAtA, i, uint64(m.MaxWaitTimeMs)) - if m.AnnHint != nil { + if m.AnnQuery != nil { dAtA[i] = 0x5a i++ - i = encodeVarintExecutor(dAtA, i, uint64(m.AnnHint.Size())) - n21, err := m.AnnHint.MarshalTo(dAtA[i:]) + i = encodeVarintExecutor(dAtA, i, uint64(m.AnnQuery.Size())) + n20, err := m.AnnQuery.MarshalTo(dAtA[i:]) if err != nil { return 0, err } - i += n21 + i += n20 } if m.XXX_unrecognized != nil { i += copy(dAtA[i:], m.XXX_unrecognized) @@ -3112,11 +3228,11 @@ func (m *Selection) MarshalTo(dAtA []byte) (int, error) { dAtA[i] = 0x1a i++ i = encodeVarintExecutor(dAtA, i, uint64(m.Child.Size())) - n22, err := m.Child.MarshalTo(dAtA[i:]) + n21, err := m.Child.MarshalTo(dAtA[i:]) if err != nil { return 0, err } - i += n22 + i += n21 } if m.XXX_unrecognized != nil { i += copy(dAtA[i:], m.XXX_unrecognized) @@ -3167,11 +3283,11 @@ func (m *Projection) MarshalTo(dAtA []byte) (int, error) { dAtA[i] = 0x1a i++ i = encodeVarintExecutor(dAtA, i, uint64(m.Child.Size())) - n23, err := m.Child.MarshalTo(dAtA[i:]) + n22, err := m.Child.MarshalTo(dAtA[i:]) if err != nil { return 0, err } - i += n23 + i += n22 } if m.XXX_unrecognized != nil { i += copy(dAtA[i:], m.XXX_unrecognized) @@ -3254,11 +3370,11 @@ func (m *Aggregation) MarshalTo(dAtA []byte) (int, error) { dAtA[i] = 0x32 i++ i = encodeVarintExecutor(dAtA, i, uint64(m.Child.Size())) - n24, err := m.Child.MarshalTo(dAtA[i:]) + n23, err := m.Child.MarshalTo(dAtA[i:]) if err != nil { return 0, err } - i += n24 + i += n23 } if m.XXX_unrecognized != nil { i += copy(dAtA[i:], m.XXX_unrecognized) @@ -3300,11 +3416,11 @@ func (m *TopN) MarshalTo(dAtA []byte) (int, error) { dAtA[i] = 0x1a i++ i = encodeVarintExecutor(dAtA, i, uint64(m.Child.Size())) - n25, err := m.Child.MarshalTo(dAtA[i:]) + n24, err := m.Child.MarshalTo(dAtA[i:]) if err != nil { return 0, err } - i += n25 + i += n24 } if len(m.PartitionBy) > 0 { for _, msg := range m.PartitionBy { @@ -3346,11 +3462,11 @@ func (m *Limit) MarshalTo(dAtA []byte) (int, error) { dAtA[i] = 0x12 i++ i = encodeVarintExecutor(dAtA, i, uint64(m.Child.Size())) - n26, err := m.Child.MarshalTo(dAtA[i:]) + n25, err := m.Child.MarshalTo(dAtA[i:]) if err != nil { return 0, err } - i += n26 + i += n25 } if len(m.PartitionBy) > 0 { for _, msg := range m.PartitionBy { @@ -3444,11 +3560,11 @@ func (m *ExecutorExecutionSummary) MarshalTo(dAtA []byte) (int, error) { i = encodeVarintExecutor(dAtA, i, uint64(*m.Concurrency)) } if m.DetailInfo != nil { - nn27, err := m.DetailInfo.MarshalTo(dAtA[i:]) + nn26, err := m.DetailInfo.MarshalTo(dAtA[i:]) if err != nil { return 0, err } - i += nn27 + i += nn26 } if m.XXX_unrecognized != nil { i += copy(dAtA[i:], m.XXX_unrecognized) @@ -3462,11 +3578,11 @@ func (m *ExecutorExecutionSummary_TiflashScanContext) MarshalTo(dAtA []byte) (in dAtA[i] = 0x32 i++ i = encodeVarintExecutor(dAtA, i, uint64(m.TiflashScanContext.Size())) - n28, err := m.TiflashScanContext.MarshalTo(dAtA[i:]) + n27, err := m.TiflashScanContext.MarshalTo(dAtA[i:]) if err != nil { return 0, err } - i += n28 + i += n27 } return i, nil } @@ -3635,11 +3751,11 @@ func (m *Sort) MarshalTo(dAtA []byte) (int, error) { dAtA[i] = 0x1a i++ i = encodeVarintExecutor(dAtA, i, uint64(m.Child.Size())) - n29, err := m.Child.MarshalTo(dAtA[i:]) + n28, err := m.Child.MarshalTo(dAtA[i:]) if err != nil { return 0, err } - i += n29 + i += n28 } if m.XXX_unrecognized != nil { i += copy(dAtA[i:], m.XXX_unrecognized) @@ -3694,11 +3810,11 @@ func (m *WindowFrameBound) MarshalTo(dAtA []byte) (int, error) { dAtA[i] = 0x2a i++ i = encodeVarintExecutor(dAtA, i, uint64(m.FrameRange.Size())) - n30, err := m.FrameRange.MarshalTo(dAtA[i:]) + n29, err := m.FrameRange.MarshalTo(dAtA[i:]) if err != nil { return 0, err } - i += n30 + i += n29 } if m.CmpDataType != nil { dAtA[i] = 0x30 @@ -3733,21 +3849,21 @@ func (m *WindowFrame) MarshalTo(dAtA []byte) (int, error) { dAtA[i] = 0x12 i++ i = encodeVarintExecutor(dAtA, i, uint64(m.Start.Size())) - n31, err := m.Start.MarshalTo(dAtA[i:]) + n30, err := m.Start.MarshalTo(dAtA[i:]) if err != nil { return 0, err } - i += n31 + i += n30 } if m.End != nil { dAtA[i] = 0x1a i++ i = encodeVarintExecutor(dAtA, i, uint64(m.End.Size())) - n32, err := m.End.MarshalTo(dAtA[i:]) + n31, err := m.End.MarshalTo(dAtA[i:]) if err != nil { return 0, err } - i += n32 + i += n31 } if m.XXX_unrecognized != nil { i += copy(dAtA[i:], m.XXX_unrecognized) @@ -3810,21 +3926,21 @@ func (m *Window) MarshalTo(dAtA []byte) (int, error) { dAtA[i] = 0x22 i++ i = encodeVarintExecutor(dAtA, i, uint64(m.Frame.Size())) - n33, err := m.Frame.MarshalTo(dAtA[i:]) + n32, err := m.Frame.MarshalTo(dAtA[i:]) if err != nil { return 0, err } - i += n33 + i += n32 } if m.Child != nil { dAtA[i] = 0x2a i++ i = encodeVarintExecutor(dAtA, i, uint64(m.Child.Size())) - n34, err := m.Child.MarshalTo(dAtA[i:]) + n33, err := m.Child.MarshalTo(dAtA[i:]) if err != nil { return 0, err } - i += n34 + i += n33 } if m.XXX_unrecognized != nil { i += copy(dAtA[i:], m.XXX_unrecognized) @@ -3929,11 +4045,11 @@ func (m *Expand) MarshalTo(dAtA []byte) (int, error) { dAtA[i] = 0x12 i++ i = encodeVarintExecutor(dAtA, i, uint64(m.Child.Size())) - n35, err := m.Child.MarshalTo(dAtA[i:]) + n34, err := m.Child.MarshalTo(dAtA[i:]) if err != nil { return 0, err } - i += n35 + i += n34 } if m.Version != nil { dAtA[i] = 0x18 @@ -4025,11 +4141,11 @@ func (m *Expand2) MarshalTo(dAtA []byte) (int, error) { dAtA[i] = 0x1a i++ i = encodeVarintExecutor(dAtA, i, uint64(m.Child.Size())) - n36, err := m.Child.MarshalTo(dAtA[i:]) + n35, err := m.Child.MarshalTo(dAtA[i:]) if err != nil { return 0, err } - i += n36 + i += n35 } if m.XXX_unrecognized != nil { i += copy(dAtA[i:], m.XXX_unrecognized) @@ -4216,17 +4332,26 @@ func (m *ExchangeReceiver) Size() (n int) { return n } -func (m *TableScanANNHint) Size() (n int) { +func (m *ANNQueryInfo) Size() (n int) { var l int _ = l - if m.TopNOrderBy != nil { - l = m.TopNOrderBy.Size() - n += 1 + l + sovExecutor(uint64(l)) + if m.QueryType != nil { + n += 1 + sovExecutor(uint64(*m.QueryType)) } - n += 1 + sovExecutor(uint64(m.TopNLimit)) - if m.PreFilters != nil { - l = m.PreFilters.Size() - n += 1 + l + sovExecutor(uint64(l)) + if m.DistanceMetric != nil { + n += 1 + sovExecutor(uint64(*m.DistanceMetric)) + } + if m.TopK != nil { + n += 1 + sovExecutor(uint64(*m.TopK)) + } + if len(m.RefVecF32) > 0 { + n += 5 * len(m.RefVecF32) + } + if m.MaxDistance != nil { + n += 9 + } + if m.HnswEfSearch != nil { + n += 2 + sovExecutor(uint64(*m.HnswEfSearch)) } if m.XXX_unrecognized != nil { n += len(m.XXX_unrecognized) @@ -4281,8 +4406,8 @@ func (m *TableScan) Size() (n int) { } } n += 1 + sovExecutor(uint64(m.MaxWaitTimeMs)) - if m.AnnHint != nil { - l = m.AnnHint.Size() + if m.AnnQuery != nil { + l = m.AnnQuery.Size() n += 1 + l + sovExecutor(uint64(l)) } if m.XXX_unrecognized != nil { @@ -4333,8 +4458,8 @@ func (m *PartitionTableScan) Size() (n int) { } } n += 1 + sovExecutor(uint64(m.MaxWaitTimeMs)) - if m.AnnHint != nil { - l = m.AnnHint.Size() + if m.AnnQuery != nil { + l = m.AnnQuery.Size() n += 1 + l + sovExecutor(uint64(l)) } if m.XXX_unrecognized != nil { @@ -6108,7 +6233,7 @@ func (m *ExchangeReceiver) Unmarshal(dAtA []byte) error { } return nil } -func (m *TableScanANNHint) Unmarshal(dAtA []byte) error { +func (m *ANNQueryInfo) Unmarshal(dAtA []byte) error { l := len(dAtA) iNdEx := 0 for iNdEx < l { @@ -6131,17 +6256,17 @@ func (m *TableScanANNHint) Unmarshal(dAtA []byte) error { fieldNum := int32(wire >> 3) wireType := int(wire & 0x7) if wireType == 4 { - return fmt.Errorf("proto: TableScanANNHint: wiretype end group for non-group") + return fmt.Errorf("proto: ANNQueryInfo: wiretype end group for non-group") } if fieldNum <= 0 { - return fmt.Errorf("proto: TableScanANNHint: illegal tag %d (wire type %d)", fieldNum, wire) + return fmt.Errorf("proto: ANNQueryInfo: illegal tag %d (wire type %d)", fieldNum, wire) } switch fieldNum { case 1: - if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field TopNOrderBy", wireType) + if wireType != 0 { + return fmt.Errorf("proto: wrong wireType = %d for field QueryType", wireType) } - var msglen int + var v ANNQueryType for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowExecutor @@ -6151,30 +6276,17 @@ func (m *TableScanANNHint) Unmarshal(dAtA []byte) error { } b := dAtA[iNdEx] iNdEx++ - msglen |= (int(b) & 0x7F) << shift + v |= (ANNQueryType(b) & 0x7F) << shift if b < 0x80 { break } } - if msglen < 0 { - return ErrInvalidLengthExecutor - } - postIndex := iNdEx + msglen - if postIndex > l { - return io.ErrUnexpectedEOF - } - if m.TopNOrderBy == nil { - m.TopNOrderBy = &ByItem{} - } - if err := m.TopNOrderBy.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { - return err - } - iNdEx = postIndex + m.QueryType = &v case 2: if wireType != 0 { - return fmt.Errorf("proto: wrong wireType = %d for field TopNLimit", wireType) + return fmt.Errorf("proto: wrong wireType = %d for field DistanceMetric", wireType) } - m.TopNLimit = 0 + var v ANNQueryDistanceMetric for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowExecutor @@ -6184,16 +6296,17 @@ func (m *TableScanANNHint) Unmarshal(dAtA []byte) error { } b := dAtA[iNdEx] iNdEx++ - m.TopNLimit |= (int64(b) & 0x7F) << shift + v |= (ANNQueryDistanceMetric(b) & 0x7F) << shift if b < 0x80 { break } } + m.DistanceMetric = &v case 3: - if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field PreFilters", wireType) + if wireType != 0 { + return fmt.Errorf("proto: wrong wireType = %d for field TopK", wireType) } - var msglen int + var v uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowExecutor @@ -6203,25 +6316,90 @@ func (m *TableScanANNHint) Unmarshal(dAtA []byte) error { } b := dAtA[iNdEx] iNdEx++ - msglen |= (int(b) & 0x7F) << shift + v |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } - if msglen < 0 { - return ErrInvalidLengthExecutor + m.TopK = &v + case 4: + if wireType == 5 { + var v uint32 + if (iNdEx + 4) > l { + return io.ErrUnexpectedEOF + } + v = uint32(encoding_binary.LittleEndian.Uint32(dAtA[iNdEx:])) + iNdEx += 4 + v2 := float32(math.Float32frombits(v)) + m.RefVecF32 = append(m.RefVecF32, v2) + } else if wireType == 2 { + var packedLen int + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowExecutor + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + packedLen |= (int(b) & 0x7F) << shift + if b < 0x80 { + break + } + } + if packedLen < 0 { + return ErrInvalidLengthExecutor + } + postIndex := iNdEx + packedLen + if postIndex > l { + return io.ErrUnexpectedEOF + } + for iNdEx < postIndex { + var v uint32 + if (iNdEx + 4) > l { + return io.ErrUnexpectedEOF + } + v = uint32(encoding_binary.LittleEndian.Uint32(dAtA[iNdEx:])) + iNdEx += 4 + v2 := float32(math.Float32frombits(v)) + m.RefVecF32 = append(m.RefVecF32, v2) + } + } else { + return fmt.Errorf("proto: wrong wireType = %d for field RefVecF32", wireType) } - postIndex := iNdEx + msglen - if postIndex > l { + case 10: + if wireType != 1 { + return fmt.Errorf("proto: wrong wireType = %d for field MaxDistance", wireType) + } + var v uint64 + if (iNdEx + 8) > l { return io.ErrUnexpectedEOF } - if m.PreFilters == nil { - m.PreFilters = &Expr{} + v = uint64(encoding_binary.LittleEndian.Uint64(dAtA[iNdEx:])) + iNdEx += 8 + v2 := float64(math.Float64frombits(v)) + m.MaxDistance = &v2 + case 20: + if wireType != 0 { + return fmt.Errorf("proto: wrong wireType = %d for field HnswEfSearch", wireType) } - if err := m.PreFilters.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { - return err + 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 + } } - iNdEx = postIndex + m.HnswEfSearch = &v default: iNdEx = preIndex skippy, err := skipExecutor(dAtA[iNdEx:]) @@ -6642,7 +6820,7 @@ func (m *TableScan) Unmarshal(dAtA []byte) error { } case 13: if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field AnnHint", wireType) + return fmt.Errorf("proto: wrong wireType = %d for field AnnQuery", wireType) } var msglen int for shift := uint(0); ; shift += 7 { @@ -6666,10 +6844,10 @@ func (m *TableScan) Unmarshal(dAtA []byte) error { if postIndex > l { return io.ErrUnexpectedEOF } - if m.AnnHint == nil { - m.AnnHint = &TableScanANNHint{} + if m.AnnQuery == nil { + m.AnnQuery = &ANNQueryInfo{} } - if err := m.AnnHint.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { + if err := m.AnnQuery.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { return err } iNdEx = postIndex @@ -7084,7 +7262,7 @@ func (m *PartitionTableScan) Unmarshal(dAtA []byte) error { } case 11: if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field AnnHint", wireType) + return fmt.Errorf("proto: wrong wireType = %d for field AnnQuery", wireType) } var msglen int for shift := uint(0); ; shift += 7 { @@ -7108,10 +7286,10 @@ func (m *PartitionTableScan) Unmarshal(dAtA []byte) error { if postIndex > l { return io.ErrUnexpectedEOF } - if m.AnnHint == nil { - m.AnnHint = &TableScanANNHint{} + if m.AnnQuery == nil { + m.AnnQuery = &ANNQueryInfo{} } - if err := m.AnnHint.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { + if err := m.AnnQuery.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { return err } iNdEx = postIndex @@ -10851,219 +11029,226 @@ var ( func init() { proto.RegisterFile("executor.proto", fileDescriptorExecutor) } var fileDescriptorExecutor = []byte{ - // 3410 bytes of a gzipped FileDescriptorProto + // 3532 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xcc, 0x59, 0xcd, 0x73, 0x1b, 0x47, - 0x76, 0x27, 0xbe, 0x81, 0x07, 0x10, 0x1c, 0xb6, 0x28, 0x09, 0x96, 0x57, 0x12, 0x0d, 0xcb, 0x31, - 0x17, 0x6b, 0xcb, 0x32, 0xad, 0xdd, 0xd8, 0xbb, 0xb5, 0x59, 0xf3, 0x53, 0xa2, 0xc5, 0xaf, 0x1a, - 0x70, 0xe3, 0xdc, 0xa6, 0x86, 0x33, 0x0d, 0xa0, 0xa5, 0x99, 0x9e, 0xf1, 0x74, 0xcf, 0x92, 0xf4, - 0x29, 0x95, 0xaa, 0xfc, 0x03, 0x9b, 0x4a, 0x6a, 0xaf, 0xc9, 0x39, 0x95, 0x73, 0xee, 0xa9, 0x54, - 0xed, 0x31, 0xd7, 0xec, 0x21, 0x95, 0x72, 0x4e, 0xf9, 0x17, 0x72, 0x4a, 0xf5, 0xeb, 0x9e, 0xc1, - 0x00, 0x20, 0x69, 0xb9, 0x92, 0xc3, 0x9e, 0x80, 0x7e, 0xef, 0xf7, 0x5e, 0xbf, 0xee, 0xf7, 0xba, - 0xdf, 0x7b, 0x3d, 0xd0, 0xa5, 0x97, 0xd4, 0x4b, 0x65, 0x94, 0x3c, 0x8d, 0x93, 0x48, 0x46, 0xa4, - 0x2a, 0x59, 0x7c, 0xfe, 0xc0, 0xa2, 0x97, 0x71, 0x42, 0x85, 0x60, 0x11, 0xd7, 0xf4, 0x07, 0x1d, - 0xe1, 0x4d, 0x68, 0xe8, 0x9a, 0xd1, 0xda, 0x38, 0x1a, 0x47, 0xf8, 0xf7, 0x13, 0xf5, 0x4f, 0x53, - 0xfb, 0xff, 0xd2, 0x80, 0xe6, 0x9e, 0x51, 0x47, 0x9e, 0x40, 0x59, 0xc6, 0xbd, 0xd2, 0x7a, 0x69, - 0xa3, 0xbb, 0xd9, 0x7d, 0xaa, 0xb4, 0x3e, 0x55, 0xbc, 0xb3, 0xab, 0x98, 0x6e, 0x57, 0x7f, 0xff, - 0x1f, 0x8f, 0x97, 0xec, 0xb2, 0x8c, 0xc9, 0x00, 0x9a, 0xf2, 0x3c, 0x70, 0x84, 0xe7, 0xf2, 0x5e, - 0x79, 0xbd, 0xb4, 0xd1, 0xde, 0x5c, 0xd1, 0xd8, 0x33, 0xf7, 0x3c, 0xa0, 0x43, 0xcf, 0xe5, 0x76, - 0x43, 0x9e, 0x07, 0xea, 0x8f, 0xc2, 0x32, 0xff, 0x52, 0x63, 0x2b, 0x45, 0xec, 0x01, 0xf7, 0xe9, - 0xa5, 0xc6, 0x32, 0x1f, 0xff, 0x90, 0x8f, 0xa1, 0x25, 0x68, 0x40, 0x3d, 0xc9, 0x22, 0xde, 0xab, - 0x16, 0xc1, 0xc3, 0x8c, 0x6c, 0x4f, 0x11, 0xe4, 0x33, 0x68, 0xbb, 0xe3, 0x71, 0x42, 0xc7, 0x2e, - 0x0a, 0xd4, 0x50, 0x60, 0x55, 0x0b, 0x6c, 0x4d, 0x19, 0x76, 0x11, 0x45, 0x1e, 0x41, 0x55, 0x46, - 0xf1, 0x71, 0xaf, 0x8e, 0x68, 0x30, 0x76, 0x47, 0xf1, 0xb1, 0x8d, 0x74, 0xf2, 0x1e, 0xd4, 0x02, - 0x16, 0x32, 0xd9, 0x6b, 0x20, 0xa0, 0xad, 0x01, 0x87, 0x8a, 0x64, 0x6b, 0x0e, 0xd9, 0x81, 0x55, - 0x7a, 0xe9, 0x4d, 0x5c, 0x3e, 0xa6, 0x4e, 0x42, 0x3d, 0xca, 0x7e, 0x43, 0x93, 0x5e, 0x13, 0xe1, - 0xf7, 0xb2, 0x3d, 0xd3, 0x6c, 0xdb, 0x70, 0x6d, 0x8b, 0xce, 0x51, 0x94, 0x1d, 0xaf, 0x23, 0xc6, - 0x7b, 0xad, 0xa2, 0x1d, 0x5f, 0x45, 0x8c, 0xdb, 0x48, 0x27, 0x8f, 0xa1, 0x9d, 0x39, 0xd9, 0x61, - 0x7e, 0x0f, 0xd6, 0x4b, 0x1b, 0x2d, 0x1b, 0x32, 0xd2, 0x81, 0xaf, 0x14, 0xbc, 0x61, 0x41, 0xd0, - 0x6b, 0x17, 0x15, 0xbc, 0x62, 0x41, 0x60, 0x23, 0x9d, 0xfc, 0x12, 0x56, 0x72, 0x2b, 0x05, 0xe5, - 0x3e, 0x4d, 0x7a, 0x1d, 0x84, 0xae, 0xcd, 0xda, 0x38, 0x44, 0x9e, 0xdd, 0xa5, 0x33, 0x63, 0xf2, - 0x0c, 0xe0, 0x34, 0x89, 0x5e, 0x1b, 0x67, 0x2c, 0xa3, 0xa4, 0xa5, 0x25, 0xa7, 0x74, 0xbb, 0x80, - 0x21, 0x5f, 0xc1, 0x5a, 0xec, 0x26, 0x92, 0xa9, 0x81, 0x23, 0x55, 0x24, 0x68, 0xaf, 0x77, 0x51, - 0xb6, 0x67, 0x64, 0x33, 0xc4, 0x34, 0x54, 0x48, 0xbc, 0x40, 0x53, 0x8b, 0x13, 0x51, 0x22, 0x7b, - 0x2b, 0xc5, 0xc5, 0x0d, 0xa3, 0x44, 0xda, 0x48, 0x27, 0x4f, 0xa0, 0x7e, 0xc1, 0xb8, 0x1f, 0x5d, - 0xf4, 0x2c, 0x44, 0x74, 0x34, 0xe2, 0x6b, 0xa4, 0xd9, 0x86, 0x47, 0x8e, 0xe1, 0xbd, 0x11, 0xe3, - 0xd4, 0x19, 0x27, 0x2e, 0xe3, 0xd4, 0x77, 0xc4, 0x24, 0x1d, 0x8d, 0x94, 0x59, 0x32, 0xa1, 0x6e, - 0xe8, 0x78, 0x51, 0xca, 0x65, 0x6f, 0x75, 0xbd, 0xb4, 0x51, 0x35, 0xc1, 0xfd, 0x50, 0xc1, 0x5f, - 0x68, 0xf4, 0x50, 0x83, 0x87, 0x88, 0xdd, 0x51, 0x50, 0xf2, 0x15, 0x3c, 0xbe, 0x56, 0xdf, 0xb9, - 0x2b, 0xbd, 0x89, 0x23, 0xd8, 0xb7, 0xb4, 0x47, 0x0a, 0xda, 0xde, 0x5d, 0xd4, 0xb6, 0xad, 0x90, - 0x43, 0xf6, 0x2d, 0x55, 0x2b, 0xa0, 0x97, 0xb1, 0xcb, 0xfd, 0xde, 0x9d, 0xe2, 0x0a, 0xf6, 0x90, - 0x66, 0x1b, 0x1e, 0xf9, 0x10, 0x1a, 0xfa, 0xdf, 0x66, 0x6f, 0x0d, 0x61, 0xcb, 0x45, 0xd8, 0xa6, - 0x9d, 0x71, 0xfb, 0xff, 0x58, 0x81, 0xee, 0xac, 0x47, 0xc9, 0x46, 0xe1, 0x2c, 0x93, 0x59, 0x9f, - 0x2f, 0x9c, 0xe7, 0x55, 0xca, 0xbd, 0xc8, 0xa7, 0xbe, 0x23, 0x5d, 0xf1, 0xc6, 0x09, 0xa9, 0x74, - 0x7b, 0xe5, 0xf5, 0xca, 0x46, 0xc7, 0x5e, 0x31, 0x8c, 0x33, 0x57, 0xbc, 0x39, 0xa2, 0xd2, 0x25, - 0x9f, 0x42, 0x77, 0xea, 0xe5, 0x37, 0xf4, 0x4a, 0xf4, 0x2a, 0xeb, 0x95, 0xa9, 0x8f, 0xf6, 0x2e, - 0xe3, 0xc4, 0x5e, 0xce, 0x11, 0xaf, 0xe8, 0x95, 0x20, 0x4f, 0xa0, 0xe6, 0x4d, 0x58, 0xe0, 0x9b, - 0x23, 0x5d, 0xb8, 0x57, 0x54, 0x28, 0xdb, 0x9a, 0x49, 0x3e, 0x80, 0x9a, 0xbc, 0x8a, 0xa9, 0xe8, - 0xd5, 0x50, 0x9f, 0x39, 0xf8, 0xfb, 0x8c, 0x06, 0xbe, 0x32, 0xd7, 0xd6, 0x5c, 0xf2, 0xa7, 0xb0, - 0xe2, 0x06, 0x81, 0x33, 0x52, 0x74, 0x47, 0x0b, 0xd4, 0xaf, 0x17, 0x58, 0x76, 0x83, 0x20, 0x1f, - 0x09, 0xf2, 0x4b, 0x68, 0x7b, 0x51, 0x98, 0x5d, 0x90, 0x78, 0xbc, 0xbb, 0x9b, 0x77, 0xb5, 0xd0, - 0xce, 0x94, 0x71, 0x14, 0xf9, 0xd9, 0xd6, 0x14, 0xf1, 0xe4, 0x10, 0xee, 0xa5, 0x71, 0x16, 0x38, - 0x92, 0x16, 0x36, 0xaa, 0x89, 0xd3, 0xdf, 0x37, 0xab, 0xd2, 0xdb, 0xb5, 0x7d, 0x25, 0xa9, 0x18, - 0x06, 0xcc, 0xa3, 0xf6, 0x9d, 0x4c, 0x6c, 0x47, 0xd2, 0x6c, 0x17, 0xfb, 0x9f, 0xc3, 0xea, 0x02, - 0x92, 0xbc, 0x0f, 0xcb, 0x45, 0x37, 0x88, 0x5e, 0x09, 0x5d, 0xd0, 0x29, 0xb8, 0x40, 0xf4, 0xff, - 0x50, 0x02, 0x6b, 0xfe, 0x7a, 0xb9, 0xde, 0x81, 0xa5, 0xeb, 0x1d, 0xf8, 0x0c, 0xda, 0xc5, 0xcd, - 0x2b, 0x5f, 0xbf, 0x79, 0x30, 0x9a, 0xee, 0x5c, 0x1f, 0x03, 0xa9, 0x72, 0x53, 0x20, 0x61, 0x08, - 0xed, 0xc2, 0xe3, 0x28, 0x61, 0x63, 0xc6, 0xdd, 0x00, 0xb7, 0x27, 0x4e, 0xfc, 0xc8, 0x4b, 0x69, - 0x52, 0xb0, 0xa7, 0x8a, 0xf6, 0xbc, 0x9b, 0xc1, 0x76, 0x24, 0x3d, 0x35, 0xa0, 0x7c, 0x5b, 0x7e, - 0x57, 0x02, 0x2b, 0xbf, 0x04, 0xb6, 0x8e, 0x8f, 0x5f, 0x32, 0x2e, 0x55, 0xc4, 0xc9, 0x28, 0x76, - 0xb8, 0x13, 0x25, 0x3e, 0x4d, 0x9c, 0xf3, 0x2b, 0x8c, 0xe9, 0xfc, 0xc4, 0x6c, 0x5f, 0x1d, 0x48, - 0x1a, 0xda, 0x6d, 0x75, 0x7b, 0x9f, 0x28, 0xc4, 0xf6, 0x15, 0x79, 0x02, 0x6d, 0x2d, 0xa2, 0xaf, - 0x72, 0x95, 0xa3, 0x2a, 0xc6, 0xa9, 0x2d, 0x85, 0xc3, 0xeb, 0x9c, 0xfc, 0x04, 0xda, 0x71, 0x42, - 0x9d, 0x11, 0x0b, 0x24, 0x4d, 0x84, 0xc9, 0x4e, 0xc5, 0x38, 0x86, 0x38, 0xa1, 0xfb, 0x9a, 0xdb, - 0xff, 0xab, 0x1a, 0xb4, 0xa6, 0xf7, 0xd3, 0x63, 0x68, 0xea, 0x1b, 0x8e, 0xf9, 0x68, 0x4d, 0xa6, - 0xbd, 0x81, 0xd4, 0x03, 0x9f, 0x0c, 0xa0, 0xe1, 0x45, 0x41, 0x1a, 0xf2, 0x6c, 0x87, 0xad, 0x2c, - 0xd2, 0x14, 0xf1, 0x80, 0x8f, 0x22, 0x3b, 0x03, 0x90, 0x1e, 0x54, 0x7d, 0x2a, 0x3c, 0x34, 0xa0, - 0x69, 0x14, 0x21, 0x85, 0x7c, 0x04, 0x24, 0x4e, 0x58, 0xe8, 0x26, 0x57, 0x8e, 0x06, 0x3b, 0xcc, - 0x17, 0xb8, 0x91, 0x15, 0xdb, 0x32, 0x1c, 0xa3, 0xd1, 0x17, 0xe4, 0x4b, 0xb0, 0x38, 0xbd, 0x94, - 0x4e, 0x42, 0x5d, 0xdf, 0xa1, 0x7c, 0xcc, 0x38, 0xc5, 0xa4, 0xd8, 0xcd, 0x26, 0xdf, 0x43, 0x5a, - 0xe1, 0xf0, 0x77, 0x15, 0xde, 0xa6, 0xae, 0xaf, 0x39, 0xe4, 0x23, 0xa8, 0x27, 0xca, 0xad, 0xd9, - 0x99, 0x32, 0x47, 0xf5, 0x15, 0xbd, 0xb2, 0x15, 0xd9, 0x48, 0x19, 0x0c, 0xf9, 0x02, 0xde, 0xc9, - 0xac, 0x8b, 0x13, 0x3a, 0x62, 0x97, 0x45, 0x23, 0x1b, 0x68, 0xe4, 0x3d, 0x03, 0x38, 0x45, 0xfe, - 0xd4, 0xd4, 0x87, 0x00, 0x6f, 0x28, 0x8d, 0xb5, 0x4b, 0x31, 0x77, 0x36, 0xed, 0x96, 0xa2, 0xa0, - 0x07, 0xc9, 0x3a, 0x74, 0x98, 0x70, 0x46, 0xae, 0x90, 0x3a, 0x85, 0xb4, 0x10, 0x00, 0x4c, 0xec, - 0xbb, 0x42, 0xa2, 0x03, 0x8e, 0xe0, 0x61, 0x9c, 0x8a, 0x09, 0xf5, 0x1d, 0x3f, 0xba, 0xe0, 0xc6, - 0x87, 0x8e, 0x17, 0x71, 0x1f, 0xef, 0x1d, 0xd1, 0x83, 0x85, 0x5b, 0xe9, 0x81, 0x16, 0xd8, 0x8d, - 0x2e, 0xb8, 0x76, 0xea, 0x4e, 0x8e, 0x26, 0x3b, 0x70, 0x27, 0x49, 0xb9, 0x64, 0x61, 0x16, 0x0e, - 0x4e, 0xc0, 0x84, 0xec, 0xb5, 0x51, 0xc9, 0x1d, 0xad, 0xc4, 0xd6, 0x00, 0x2d, 0x6b, 0xaf, 0x26, - 0xc5, 0xe1, 0x21, 0x13, 0x92, 0x7c, 0x0c, 0x56, 0xe8, 0x5e, 0x3a, 0x17, 0x2e, 0x93, 0x0e, 0xaa, - 0x0a, 0x05, 0xa6, 0xdc, 0x9a, 0xd9, 0xb7, 0xe5, 0xd0, 0xbd, 0xfc, 0xda, 0x65, 0xf2, 0x8c, 0x85, - 0xf4, 0x48, 0x90, 0x4f, 0xa1, 0xe9, 0x72, 0xee, 0x4c, 0x18, 0x97, 0x26, 0xbf, 0xde, 0x9b, 0xab, - 0xa2, 0xcc, 0x09, 0xb0, 0x1b, 0x2e, 0xe7, 0xea, 0x4f, 0xff, 0xef, 0xab, 0x40, 0x16, 0x33, 0xe8, - 0x1f, 0x67, 0x34, 0xde, 0x1a, 0x1d, 0xb5, 0x5b, 0xa3, 0xe3, 0x7d, 0x98, 0x66, 0x10, 0x84, 0xd7, - 0x11, 0xde, 0xc9, 0x89, 0x0a, 0x34, 0x1f, 0x23, 0x8d, 0x1f, 0x1e, 0x23, 0xcd, 0xff, 0x8f, 0x18, - 0x69, 0xfd, 0x9f, 0x63, 0x04, 0xde, 0x2e, 0x46, 0xda, 0x6f, 0x17, 0x23, 0xff, 0x53, 0x83, 0xaa, - 0xaa, 0x23, 0xc9, 0xa7, 0xd0, 0x52, 0x95, 0x24, 0xde, 0xf3, 0xb3, 0x25, 0xbd, 0x62, 0x17, 0x6e, - 0x81, 0xe6, 0x6b, 0x33, 0x26, 0x7f, 0x06, 0x5d, 0x14, 0x51, 0x65, 0xa6, 0x96, 0x2b, 0x17, 0x6f, - 0x7d, 0x25, 0x37, 0xd7, 0x0e, 0x74, 0x5e, 0x17, 0x68, 0xaa, 0xd8, 0xc7, 0x64, 0x9e, 0x50, 0x6e, - 0xca, 0x82, 0xf9, 0x64, 0x9f, 0xf3, 0xc9, 0x7b, 0xd0, 0x62, 0x9c, 0x53, 0x55, 0xdd, 0x5e, 0x62, - 0x65, 0x90, 0x45, 0x6d, 0x13, 0xc9, 0x07, 0xfe, 0x25, 0x79, 0x06, 0xdd, 0x80, 0x8e, 0xa4, 0x83, - 0x36, 0x61, 0xad, 0x51, 0x5b, 0xf0, 0x58, 0x47, 0x21, 0x94, 0x61, 0x58, 0x6a, 0x6c, 0xc2, 0x4a, - 0xc2, 0xc6, 0x93, 0xa2, 0x48, 0x7d, 0xb1, 0x3c, 0x41, 0x48, 0x2e, 0xf3, 0x4c, 0xa5, 0x81, 0xe8, - 0x9c, 0x9a, 0x84, 0xd8, 0xb8, 0x21, 0x21, 0x22, 0x46, 0x27, 0xc4, 0x67, 0xd0, 0x3e, 0x4f, 0x59, - 0x9e, 0x42, 0x9b, 0x37, 0x48, 0x20, 0x46, 0x4b, 0x7c, 0x06, 0x2b, 0xb8, 0x92, 0x42, 0xf0, 0xb5, - 0x16, 0xec, 0xc2, 0xc5, 0x16, 0x02, 0xee, 0xa7, 0x60, 0xe9, 0xc5, 0xdc, 0x7a, 0xad, 0xe9, 0x05, - 0xcf, 0x8a, 0x45, 0x72, 0x32, 0x1b, 0xe9, 0xed, 0x45, 0x31, 0xc4, 0x14, 0xc4, 0x5e, 0xc2, 0xbb, - 0x5a, 0x8c, 0x7e, 0x53, 0x90, 0x74, 0x46, 0x49, 0x14, 0x3a, 0x8c, 0xf7, 0x3a, 0x0b, 0x1a, 0xee, - 0x23, 0x7c, 0xef, 0x9b, 0xa9, 0x8e, 0xfd, 0x24, 0x0a, 0x0f, 0x38, 0x79, 0x0e, 0xf7, 0x99, 0x70, - 0x78, 0x1a, 0x04, 0x8e, 0x7b, 0xe1, 0x26, 0xaa, 0xfd, 0x08, 0x19, 0x7a, 0x04, 0xef, 0xb9, 0xa6, - 0x7d, 0x87, 0x89, 0xe3, 0x34, 0x08, 0xb6, 0x14, 0x73, 0x48, 0x43, 0x86, 0xe1, 0x7a, 0xc3, 0xf1, - 0xea, 0xfe, 0x90, 0xe3, 0xd5, 0xff, 0xef, 0x32, 0x2c, 0xcf, 0x80, 0xc8, 0x1a, 0x94, 0xcd, 0xad, - 0x98, 0x1d, 0xb1, 0x32, 0xf3, 0xc9, 0x73, 0xb0, 0x44, 0x94, 0x26, 0x1e, 0x75, 0x54, 0xcf, 0xac, - 0x67, 0x2a, 0x2f, 0x3a, 0x44, 0x63, 0xd4, 0x7f, 0x3c, 0xbc, 0xcf, 0xc1, 0x92, 0x6e, 0x32, 0xa6, - 0xb2, 0x20, 0xb5, 0x58, 0xfd, 0x76, 0x35, 0x26, 0x97, 0xda, 0x04, 0x92, 0xcf, 0x35, 0x6d, 0xe8, - 0x54, 0xc4, 0xb7, 0x8c, 0x45, 0x56, 0x36, 0x4f, 0xde, 0xdc, 0x6d, 0x02, 0xc9, 0x67, 0x9a, 0xca, - 0xd4, 0x8a, 0x32, 0xd9, 0x2c, 0xb9, 0xcc, 0xcf, 0xa0, 0x91, 0x8c, 0xf4, 0xa9, 0xad, 0xe3, 0xa9, - 0xbd, 0x7f, 0xcd, 0xa6, 0x15, 0x8e, 0x6e, 0x3d, 0x19, 0xe1, 0xa1, 0xd5, 0x72, 0x61, 0xe4, 0x53, - 0x53, 0x14, 0x5f, 0x27, 0x57, 0x28, 0x8b, 0xeb, 0xc9, 0x48, 0x8d, 0xfa, 0xff, 0x5e, 0x82, 0x56, - 0xde, 0xc4, 0x7f, 0x7f, 0x0e, 0x7a, 0x0c, 0x4d, 0xa6, 0xd0, 0x0a, 0x50, 0x2c, 0xc8, 0x1a, 0x48, - 0x9d, 0x4d, 0x52, 0x95, 0xb7, 0x4d, 0x52, 0xd5, 0x85, 0x24, 0x75, 0x0f, 0xea, 0x29, 0x67, 0xdf, - 0xa4, 0xba, 0xf4, 0x69, 0xda, 0x66, 0x74, 0x43, 0xf2, 0xaa, 0x5f, 0x9f, 0xbc, 0xfa, 0x7f, 0x53, - 0x82, 0x56, 0xfe, 0xe6, 0x40, 0x06, 0x00, 0x85, 0xb3, 0x54, 0x5a, 0xf0, 0x78, 0x81, 0x4b, 0x9e, - 0x43, 0x37, 0x89, 0x79, 0xf1, 0xec, 0xe9, 0xb8, 0x32, 0x8d, 0x9b, 0x1d, 0x73, 0x73, 0x07, 0xc5, - 0xbc, 0x70, 0xf8, 0xf2, 0x16, 0xa9, 0x72, 0x4b, 0x8b, 0xd4, 0xff, 0xcb, 0x52, 0xb1, 0x29, 0x27, - 0xeb, 0x50, 0x53, 0x71, 0x78, 0x9d, 0x45, 0x9a, 0x41, 0x06, 0xd0, 0x52, 0xc6, 0x68, 0xd4, 0xb5, - 0x76, 0x34, 0x13, 0xfd, 0xe7, 0x6d, 0x4d, 0xf8, 0xeb, 0x32, 0xb4, 0x0b, 0x6f, 0x2b, 0xe4, 0x03, - 0x68, 0x8e, 0x93, 0x28, 0x8d, 0x75, 0x59, 0x3e, 0x6f, 0x46, 0x03, 0x79, 0xdb, 0x57, 0x0a, 0xe6, - 0x8e, 0xc7, 0xce, 0x28, 0xe5, 0xde, 0x35, 0xe7, 0xac, 0xe1, 0x8e, 0xc7, 0xfb, 0x29, 0xf7, 0xc8, - 0x3a, 0x34, 0x75, 0xaf, 0x44, 0xfd, 0x99, 0xfa, 0x23, 0xa7, 0x92, 0x4f, 0xa0, 0xa3, 0x56, 0x94, - 0xcf, 0x59, 0xbd, 0x6e, 0x51, 0x90, 0xc4, 0xfc, 0x85, 0x99, 0xd9, 0x08, 0xe4, 0xb3, 0xd7, 0x6e, - 0x12, 0xd8, 0x32, 0x36, 0xe4, 0xfb, 0x50, 0xbf, 0x6d, 0x1f, 0xfe, 0xa1, 0x04, 0xd5, 0xb3, 0x28, - 0x3e, 0x26, 0x1f, 0x42, 0xb3, 0xd0, 0x97, 0x54, 0x16, 0xfa, 0x92, 0x46, 0x64, 0x7a, 0x92, 0x07, - 0xd9, 0xc3, 0x52, 0xb9, 0xf0, 0x44, 0x60, 0x5e, 0x94, 0xde, 0x6a, 0xef, 0xd5, 0x52, 0xa6, 0x65, - 0x51, 0xbe, 0xf6, 0xb9, 0x36, 0x28, 0x47, 0x6c, 0x5f, 0xf5, 0xbf, 0x85, 0x9a, 0xee, 0x74, 0xf2, - 0xb9, 0x4b, 0xb7, 0xcc, 0x5d, 0xfe, 0x21, 0x73, 0x57, 0xbe, 0x6f, 0xee, 0x2f, 0xa1, 0xfa, 0x8a, - 0x05, 0x01, 0xf9, 0x11, 0xd4, 0xbd, 0x88, 0xf3, 0x83, 0xdd, 0x99, 0xb9, 0x0d, 0x4d, 0x19, 0xf6, - 0x4d, 0x4a, 0x93, 0x2b, 0x9c, 0x3c, 0xf3, 0xb6, 0x26, 0xf5, 0xff, 0xb9, 0x0c, 0xbd, 0xcc, 0x0c, - 0xfd, 0xcb, 0x22, 0x3e, 0x4c, 0x43, 0x75, 0x52, 0x55, 0xc7, 0x8b, 0xa9, 0x22, 0x4e, 0x22, 0x8f, - 0x0a, 0x41, 0x7d, 0x07, 0x4f, 0x66, 0x69, 0xa3, 0x6a, 0xaf, 0x28, 0xc6, 0x69, 0x46, 0x3f, 0x56, - 0xa7, 0x60, 0x95, 0xa7, 0xa1, 0x82, 0xfa, 0xa9, 0x47, 0x7d, 0x27, 0x89, 0x2e, 0x84, 0xf6, 0x82, - 0xbd, 0xc2, 0xd3, 0xf0, 0xd4, 0xd0, 0xed, 0xe8, 0x42, 0x90, 0x0f, 0xa0, 0xab, 0xb0, 0x4c, 0xd2, - 0xc4, 0xd5, 0xc7, 0xb7, 0x82, 0xc0, 0x65, 0x9e, 0x86, 0x07, 0x39, 0x71, 0xfe, 0x75, 0xae, 0xba, - 0xf0, 0x3a, 0xb7, 0x0e, 0x6d, 0x2f, 0xe2, 0x5e, 0x9a, 0x24, 0x94, 0x7b, 0x57, 0x78, 0x17, 0x55, - 0xed, 0x22, 0x89, 0x1c, 0xc2, 0x9a, 0x64, 0xa3, 0xc0, 0x15, 0x13, 0xac, 0x5f, 0xd5, 0x8d, 0x21, - 0xe9, 0xa5, 0x34, 0x61, 0x67, 0x9e, 0xcb, 0xce, 0xd8, 0xbe, 0x42, 0xa8, 0x1b, 0x76, 0x47, 0xf3, - 0x5f, 0x2e, 0xd9, 0xc4, 0xc8, 0x15, 0xa8, 0xdb, 0x1d, 0x80, 0x5d, 0x2a, 0x5d, 0x16, 0xa8, 0x7b, - 0xb2, 0x3f, 0x86, 0x35, 0x23, 0x99, 0x6f, 0x9c, 0xa2, 0x93, 0x13, 0xb8, 0x43, 0x33, 0x82, 0x23, - 0x70, 0x2b, 0x19, 0xcd, 0xee, 0x8f, 0x47, 0xb3, 0x9e, 0x9f, 0xdf, 0x72, 0x9b, 0xd0, 0x59, 0x0a, - 0xa3, 0xa2, 0xff, 0xdb, 0x06, 0x90, 0x45, 0x1b, 0xc9, 0x2f, 0xe0, 0x81, 0x8c, 0xa4, 0x1b, 0x38, - 0x7e, 0x38, 0x62, 0xe6, 0x1d, 0x90, 0x53, 0xdf, 0x89, 0x5d, 0xef, 0x4d, 0xe6, 0xa6, 0xfb, 0x88, - 0xd8, 0x45, 0xc0, 0x50, 0xf3, 0x4f, 0x15, 0x7b, 0x51, 0xf8, 0x0d, 0x8b, 0xe3, 0x5c, 0xb8, 0xbc, - 0x28, 0xac, 0xf9, 0x5a, 0xf8, 0x0b, 0x78, 0xe7, 0xda, 0x99, 0xd1, 0xe7, 0xda, 0x95, 0xf7, 0x16, - 0x27, 0x46, 0xd7, 0x2f, 0x88, 0x9a, 0x79, 0x51, 0xb4, 0xba, 0x28, 0xaa, 0xd9, 0x28, 0xfa, 0x6b, - 0xf8, 0xf1, 0x8c, 0x68, 0x12, 0xa5, 0xe3, 0x89, 0x23, 0xa8, 0x74, 0x74, 0xca, 0x0b, 0x22, 0xd7, - 0xcf, 0xcb, 0x7d, 0x1d, 0x0b, 0xfd, 0x82, 0x2a, 0x5b, 0xc1, 0x87, 0x54, 0x62, 0x36, 0x3d, 0x8c, - 0x5c, 0xdf, 0x54, 0xff, 0x9f, 0xcf, 0x59, 0x84, 0x8d, 0x7d, 0xa6, 0xa6, 0x8e, 0x6a, 0xee, 0x16, - 0xd5, 0xd0, 0x5c, 0xf2, 0x4b, 0x78, 0xa8, 0x25, 0xbd, 0x84, 0xba, 0x92, 0x3a, 0x82, 0xbb, 0xb1, - 0x98, 0x44, 0xd3, 0x9e, 0xa3, 0x81, 0xd2, 0x5a, 0xfd, 0x0e, 0x62, 0x86, 0x06, 0x62, 0x34, 0x7c, - 0x06, 0x7a, 0xb1, 0x4e, 0x10, 0x79, 0x6e, 0xe0, 0x24, 0x74, 0xac, 0x62, 0x86, 0xa7, 0x21, 0x76, - 0xeb, 0x55, 0xfb, 0x0e, 0x72, 0x0f, 0x15, 0xd3, 0x46, 0xde, 0x71, 0x1a, 0x92, 0x9f, 0x82, 0x76, - 0x8c, 0x93, 0xd0, 0x30, 0x92, 0xb4, 0x28, 0xd5, 0x42, 0xa9, 0x35, 0x64, 0xdb, 0xc8, 0x9d, 0x8a, - 0x7d, 0x0a, 0x7a, 0x19, 0x4e, 0x2a, 0x68, 0xa2, 0x57, 0x79, 0x7e, 0x25, 0xa9, 0xee, 0x8c, 0xaa, - 0x36, 0x41, 0xe6, 0xaf, 0x05, 0x4d, 0xd4, 0x0a, 0xf1, 0xc1, 0x6c, 0x2a, 0x12, 0x50, 0x37, 0xe1, - 0x99, 0x54, 0x28, 0xb0, 0x4b, 0xca, 0x44, 0x0e, 0x35, 0x4f, 0x49, 0x1d, 0x09, 0xb2, 0x07, 0xeb, - 0x66, 0x37, 0x99, 0x50, 0xe9, 0x00, 0x25, 0x3c, 0xd7, 0x9b, 0x50, 0x67, 0xc2, 0xa4, 0x7e, 0xbe, - 0xed, 0xa0, 0xf4, 0xbb, 0x7a, 0x53, 0x11, 0xa6, 0x84, 0x77, 0x14, 0xe8, 0x25, 0x93, 0xf8, 0x70, - 0xfb, 0x02, 0xde, 0xbb, 0x49, 0x4d, 0xc8, 0x84, 0xd0, 0x7a, 0x96, 0x51, 0xcf, 0x8f, 0xae, 0xd3, - 0x73, 0xc4, 0x84, 0x40, 0x45, 0x5f, 0xc3, 0xe0, 0xd6, 0xa0, 0xf1, 0x26, 0xd4, 0x7b, 0x93, 0x3b, - 0xac, 0x8b, 0x1a, 0xdf, 0xbf, 0x29, 0x6a, 0x76, 0x14, 0x58, 0xbb, 0xae, 0xff, 0x2d, 0x54, 0x87, - 0x51, 0x22, 0xc9, 0x9f, 0x40, 0xe3, 0x1c, 0x6f, 0x66, 0x71, 0x7d, 0x66, 0x32, 0x4c, 0xf2, 0x04, - 0x96, 0x99, 0xc0, 0x67, 0x05, 0x37, 0x50, 0x82, 0xfa, 0x32, 0xb6, 0x67, 0x89, 0x6f, 0x59, 0x1f, - 0xfc, 0xb6, 0x0c, 0x96, 0x7e, 0x85, 0xdf, 0x4f, 0xdc, 0x90, 0x6e, 0x47, 0x29, 0x57, 0xc9, 0xa3, - 0x5a, 0x68, 0x42, 0xef, 0x16, 0xdf, 0xea, 0x11, 0x50, 0x28, 0x4a, 0x11, 0x48, 0xfa, 0xd0, 0x4a, - 0xf9, 0xb9, 0x62, 0x51, 0x7f, 0x26, 0x35, 0x4c, 0xc9, 0xaa, 0xd0, 0x8b, 0x46, 0x23, 0x41, 0xa5, - 0x39, 0xd6, 0x66, 0x44, 0x36, 0xa0, 0xe5, 0xb9, 0x81, 0xa7, 0x72, 0xb9, 0x30, 0x29, 0xb2, 0x58, - 0x6b, 0x4c, 0x99, 0xe4, 0x27, 0xd0, 0x1e, 0x29, 0x23, 0x1d, 0x7c, 0xcf, 0x32, 0xdf, 0x8f, 0x66, - 0xea, 0x3a, 0x64, 0xe3, 0xd3, 0x17, 0xf9, 0x39, 0x2c, 0x7b, 0x61, 0xec, 0xf8, 0xae, 0x74, 0x8b, - 0x35, 0xb6, 0x69, 0xc7, 0x11, 0xb3, 0x13, 0xc6, 0xbb, 0xae, 0x74, 0xb1, 0xf9, 0x6b, 0x7b, 0xd3, - 0x41, 0xff, 0xef, 0x4a, 0xd0, 0x2e, 0x6c, 0xca, 0x6d, 0xfb, 0x81, 0x80, 0x85, 0xfd, 0xf8, 0x08, - 0x6a, 0x42, 0xba, 0xc6, 0x33, 0xf9, 0x1b, 0xc0, 0xfc, 0x3e, 0xdb, 0x1a, 0x44, 0x36, 0xa0, 0x42, - 0x79, 0xe6, 0xa7, 0x9b, 0xb0, 0x0a, 0xd2, 0xff, 0x43, 0x09, 0xea, 0x9a, 0x43, 0x3e, 0x84, 0x96, - 0xaa, 0x8f, 0x1c, 0x2c, 0xab, 0x17, 0x2b, 0xb9, 0xa6, 0x62, 0xee, 0xaa, 0x02, 0x7b, 0xbe, 0x12, - 0x28, 0x7f, 0x4f, 0x25, 0x30, 0x53, 0x21, 0x55, 0x6e, 0xab, 0x90, 0x3e, 0x84, 0x1a, 0x6e, 0xb8, - 0xf9, 0x4e, 0xb0, 0xba, 0x60, 0xb9, 0xad, 0xf9, 0xd3, 0x50, 0xac, 0xdd, 0x16, 0x8a, 0xbf, 0x82, - 0x0e, 0x16, 0x81, 0x8c, 0x8f, 0xd5, 0x12, 0xc8, 0x27, 0xb0, 0x3c, 0x36, 0x63, 0xac, 0x88, 0xaf, - 0x59, 0x65, 0x67, 0x5c, 0x10, 0xe8, 0xbf, 0x84, 0x76, 0xa6, 0x60, 0x48, 0x25, 0xf9, 0x02, 0xba, - 0x33, 0xf2, 0xd9, 0xa9, 0x32, 0x8f, 0x23, 0xc5, 0xb9, 0xec, 0xe5, 0xa2, 0x22, 0xa1, 0x0a, 0xf7, - 0xba, 0xfe, 0x64, 0x43, 0x7e, 0x56, 0xb0, 0x42, 0x50, 0x99, 0x29, 0x59, 0x9d, 0x55, 0x32, 0xa4, - 0x72, 0x6a, 0xcc, 0x90, 0x4a, 0xf1, 0x96, 0x65, 0x5a, 0x0f, 0x1a, 0xbf, 0xa1, 0x09, 0x7e, 0xe0, - 0xd0, 0xa7, 0x22, 0x1b, 0xf6, 0x3f, 0x86, 0x96, 0xb2, 0x45, 0x7f, 0x69, 0xf8, 0xde, 0xce, 0xa1, - 0xff, 0xb7, 0x25, 0x68, 0x98, 0x8f, 0x4c, 0xe4, 0x29, 0x40, 0x9c, 0x44, 0xaf, 0x67, 0x16, 0xbd, - 0x32, 0x15, 0xd1, 0x9f, 0x39, 0x5a, 0x0a, 0xa2, 0x3b, 0x89, 0xe7, 0x70, 0x6f, 0x4c, 0xb9, 0xaa, - 0x95, 0xa8, 0xef, 0x44, 0xa9, 0x8c, 0x53, 0xe9, 0x70, 0x37, 0x34, 0x1f, 0x1b, 0x5a, 0xf6, 0x5a, - 0xce, 0x3d, 0x41, 0xe6, 0xb1, 0xe2, 0xbd, 0xdd, 0xfd, 0x32, 0xf8, 0xd7, 0xb2, 0xfe, 0x5a, 0x8d, - 0x9d, 0xeb, 0x2a, 0x2c, 0xab, 0xdf, 0xfc, 0x2d, 0xcc, 0x5a, 0xca, 0x48, 0x79, 0x5f, 0x6a, 0x95, - 0x32, 0x52, 0xde, 0xce, 0x59, 0x65, 0x72, 0x07, 0x56, 0x14, 0xa9, 0xd0, 0xc8, 0x58, 0x15, 0xd2, - 0x81, 0x26, 0x6a, 0x8b, 0xe2, 0x63, 0xab, 0x4a, 0x96, 0xa1, 0xa5, 0x46, 0x58, 0x3f, 0x5b, 0xb5, - 0x5c, 0x09, 0xf6, 0x21, 0x5b, 0xe3, 0xb1, 0x55, 0xcf, 0xf0, 0x5f, 0x45, 0x8c, 0x5b, 0x8d, 0x6c, - 0xa4, 0x6a, 0x5e, 0xab, 0x49, 0xee, 0x01, 0x51, 0xa3, 0xd9, 0x2f, 0x72, 0x56, 0x8b, 0xf4, 0x60, - 0xad, 0x48, 0xcf, 0x3e, 0xe0, 0x58, 0x40, 0x08, 0x74, 0x15, 0x67, 0xda, 0xde, 0x59, 0x6d, 0xf2, - 0x00, 0xee, 0x21, 0x6d, 0xe1, 0xc5, 0xd7, 0xea, 0x64, 0xf3, 0xa9, 0xab, 0xd9, 0x5a, 0x26, 0x5d, - 0x00, 0x35, 0xd2, 0x67, 0xc5, 0xea, 0x66, 0x63, 0xed, 0x41, 0x6b, 0x85, 0xac, 0x40, 0x7b, 0x3a, - 0xde, 0xb4, 0xac, 0xc1, 0xe7, 0xd0, 0x29, 0x7e, 0xc3, 0x51, 0x80, 0x53, 0x57, 0x88, 0xb3, 0x09, - 0x66, 0x21, 0x6b, 0x49, 0xad, 0x7f, 0x3b, 0x89, 0x5c, 0xdf, 0x73, 0x85, 0xb4, 0x4a, 0xa4, 0x09, - 0xd5, 0x97, 0xae, 0x98, 0x58, 0xe5, 0xc1, 0x2f, 0x60, 0x65, 0xee, 0x73, 0x99, 0x62, 0x1e, 0x9f, - 0x1c, 0xef, 0x59, 0x4b, 0xea, 0xdf, 0xfe, 0xd6, 0xf0, 0xcc, 0x2a, 0x91, 0x35, 0xb0, 0x5e, 0x1e, - 0xbc, 0x78, 0xe9, 0xec, 0x9c, 0x1c, 0x9d, 0xda, 0x7b, 0xc3, 0xe1, 0xc1, 0xc9, 0xb1, 0x55, 0x1e, - 0x3c, 0x05, 0x98, 0x7e, 0x84, 0x20, 0x2d, 0xa8, 0x61, 0x01, 0xa1, 0x05, 0xcf, 0xd8, 0xab, 0x3f, - 0xb7, 0x4a, 0xa4, 0x0d, 0x0d, 0x53, 0x51, 0x5a, 0xe5, 0xc1, 0x3f, 0x95, 0xa0, 0x99, 0xbd, 0x56, - 0x4e, 0x7d, 0xcb, 0x69, 0x82, 0xbb, 0xbe, 0x44, 0xee, 0xc2, 0x2a, 0x7a, 0x89, 0x8e, 0xe4, 0x49, - 0x2a, 0x0d, 0xb9, 0x94, 0x6d, 0xbf, 0xcd, 0xc6, 0x93, 0x02, 0xbd, 0x4c, 0x2c, 0xe8, 0xe8, 0x50, - 0xd0, 0x6f, 0x4e, 0x56, 0x45, 0x99, 0x89, 0x91, 0xc0, 0x25, 0xcb, 0xa9, 0x55, 0xf2, 0x0e, 0xdc, - 0x9d, 0x51, 0x9b, 0xb3, 0x6a, 0xe4, 0x21, 0xbc, 0x93, 0x09, 0x2c, 0xb2, 0xeb, 0x83, 0x75, 0xe8, - 0x14, 0x5f, 0x49, 0xb3, 0x19, 0xd5, 0xde, 0x69, 0x93, 0x07, 0x3f, 0x87, 0xd5, 0x85, 0x17, 0x19, - 0x52, 0x87, 0xf2, 0xc1, 0xb1, 0xb5, 0xa4, 0x16, 0x7f, 0x74, 0x70, 0xec, 0x1c, 0x6d, 0xfd, 0x85, - 0x55, 0x52, 0xb2, 0xdb, 0x87, 0x27, 0x27, 0x47, 0xce, 0xfe, 0xc1, 0xe1, 0xd9, 0x9e, 0x6d, 0x95, - 0x07, 0x83, 0x39, 0x59, 0xdc, 0x7d, 0xb5, 0x8b, 0x27, 0x3b, 0x5b, 0x87, 0xd6, 0x12, 0x01, 0xa8, - 0xbf, 0x38, 0x3c, 0xd9, 0xde, 0x3a, 0xb4, 0x4a, 0x83, 0x5f, 0xc1, 0xca, 0x5c, 0x8a, 0x55, 0x3e, - 0xdd, 0x8f, 0x82, 0x20, 0xba, 0x60, 0x7c, 0xac, 0x5d, 0x7c, 0x9a, 0x50, 0x8f, 0xfa, 0x6a, 0x58, - 0x52, 0x31, 0xb3, 0x83, 0xcd, 0x89, 0xb4, 0xa3, 0x0b, 0xab, 0x3c, 0x38, 0x01, 0x6b, 0x3e, 0xad, - 0x91, 0x06, 0x54, 0x0e, 0xb8, 0xb4, 0x96, 0xd4, 0xa4, 0xfb, 0x41, 0xe4, 0x4a, 0xed, 0xb0, 0x5d, - 0xea, 0xb1, 0xd0, 0x0d, 0xac, 0xb2, 0x0a, 0xcb, 0x5d, 0x57, 0x52, 0x55, 0x89, 0xe8, 0x23, 0xb5, - 0x9b, 0xea, 0x9e, 0xc9, 0xaa, 0x0e, 0x3e, 0xcb, 0x2c, 0xca, 0x93, 0x9c, 0x72, 0xbb, 0x2a, 0xa0, - 0xb5, 0xe9, 0x38, 0x9b, 0xb0, 0x4a, 0xb8, 0x0c, 0x75, 0xf7, 0x09, 0xab, 0xbc, 0xfd, 0xe3, 0xdf, - 0x7f, 0xf7, 0xa8, 0xf4, 0x6f, 0xdf, 0x3d, 0x2a, 0xfd, 0xe7, 0x77, 0x8f, 0x4a, 0xbf, 0xfb, 0xaf, - 0x47, 0x4b, 0x70, 0xd7, 0x8b, 0xc2, 0xa7, 0xea, 0x5e, 0xf4, 0xdc, 0xf8, 0xa9, 0x64, 0xfe, 0x39, - 0xde, 0x14, 0xa7, 0xa5, 0xff, 0x0d, 0x00, 0x00, 0xff, 0xff, 0x3a, 0xb4, 0x94, 0xa7, 0x16, 0x23, - 0x00, 0x00, + 0x76, 0x27, 0x40, 0x7c, 0x3e, 0x80, 0xe0, 0xb0, 0x49, 0x51, 0xb0, 0x6c, 0x49, 0x14, 0x2c, 0xc7, + 0x5a, 0xc4, 0x96, 0x25, 0x4a, 0xbb, 0xb1, 0x77, 0x6b, 0x63, 0xf3, 0x53, 0xa2, 0xc4, 0xaf, 0x0c, + 0xb8, 0xeb, 0xdc, 0xa6, 0x9a, 0x33, 0x0d, 0xa0, 0xc5, 0x99, 0x9e, 0xd1, 0x74, 0xc3, 0x24, 0x7d, + 0xda, 0x4b, 0x6e, 0x39, 0x6d, 0x2a, 0xa9, 0xdc, 0x52, 0x95, 0x73, 0x2a, 0xe7, 0xdc, 0x53, 0xa9, + 0xda, 0x63, 0xae, 0xf1, 0x21, 0x95, 0x72, 0x4e, 0xf9, 0x17, 0x72, 0x4a, 0xf5, 0xeb, 0x99, 0xc1, + 0x80, 0x00, 0x29, 0xb9, 0x92, 0x43, 0x4e, 0x40, 0xbf, 0xf7, 0xfb, 0xbd, 0x7e, 0xdd, 0xef, 0x75, + 0xf7, 0xeb, 0x1e, 0x68, 0xb1, 0x0b, 0xe6, 0x8e, 0x54, 0x18, 0x3f, 0x8e, 0xe2, 0x50, 0x85, 0xa4, + 0xa4, 0x78, 0x74, 0x7a, 0xc7, 0x62, 0x17, 0x51, 0xcc, 0xa4, 0xe4, 0xa1, 0x30, 0xf2, 0x3b, 0x4d, + 0xe9, 0x0e, 0x59, 0x40, 0x93, 0xd6, 0xca, 0x20, 0x1c, 0x84, 0xf8, 0xf7, 0x0b, 0xfd, 0xcf, 0x48, + 0x3b, 0xff, 0x5c, 0x85, 0xda, 0x4e, 0x62, 0x8e, 0x3c, 0x84, 0xa2, 0x8a, 0xda, 0x85, 0xb5, 0xc2, + 0xa3, 0xd6, 0x7a, 0xeb, 0xb1, 0xb6, 0xfa, 0x58, 0xeb, 0x4e, 0x2e, 0x23, 0xb6, 0x59, 0xfa, 0xc3, + 0xbf, 0xdf, 0x9f, 0xb3, 0x8b, 0x2a, 0x22, 0x5d, 0xa8, 0xa9, 0x53, 0xdf, 0x91, 0x2e, 0x15, 0xed, + 0xe2, 0x5a, 0xe1, 0x51, 0x63, 0x7d, 0xd1, 0x60, 0x4f, 0xe8, 0xa9, 0xcf, 0x7a, 0x2e, 0x15, 0x76, + 0x55, 0x9d, 0xfa, 0xfa, 0x8f, 0xc6, 0x72, 0xef, 0xc2, 0x60, 0xe7, 0xf3, 0xd8, 0x3d, 0xe1, 0xb1, + 0x0b, 0x83, 0xe5, 0x1e, 0xfe, 0x21, 0x9f, 0x43, 0x5d, 0x32, 0x9f, 0xb9, 0x8a, 0x87, 0xa2, 0x5d, + 0xca, 0x83, 0x7b, 0xa9, 0xd8, 0x1e, 0x23, 0xc8, 0x33, 0x68, 0xd0, 0xc1, 0x20, 0x66, 0x03, 0x8a, + 0x84, 0x32, 0x12, 0x96, 0x0c, 0x61, 0x63, 0xac, 0xb0, 0xf3, 0x28, 0x72, 0x0f, 0x4a, 0x2a, 0x8c, + 0x0e, 0xdb, 0x15, 0x44, 0x43, 0xe2, 0x77, 0x18, 0x1d, 0xda, 0x28, 0x27, 0x0f, 0xa0, 0xec, 0xf3, + 0x80, 0xab, 0x76, 0x15, 0x01, 0x0d, 0x03, 0xd8, 0xd7, 0x22, 0xdb, 0x68, 0xc8, 0x16, 0x2c, 0xb1, + 0x0b, 0x77, 0x48, 0xc5, 0x80, 0x39, 0x31, 0x73, 0x19, 0xff, 0x8e, 0xc5, 0xed, 0x1a, 0xc2, 0x57, + 0xd3, 0x39, 0x33, 0x6a, 0x3b, 0xd1, 0xda, 0x16, 0xbb, 0x22, 0xd1, 0x7e, 0xbc, 0x09, 0xb9, 0x68, + 0xd7, 0xf3, 0x7e, 0xbc, 0x0a, 0xb9, 0xb0, 0x51, 0x4e, 0xee, 0x43, 0x23, 0x0d, 0xb2, 0xc3, 0xbd, + 0x36, 0xac, 0x15, 0x1e, 0xd5, 0x6d, 0x48, 0x45, 0x7b, 0x9e, 0x36, 0x70, 0xc6, 0x7d, 0xbf, 0xdd, + 0xc8, 0x1b, 0x78, 0xcd, 0x7d, 0xdf, 0x46, 0x39, 0xf9, 0x35, 0x2c, 0x66, 0x5e, 0x4a, 0x26, 0x3c, + 0x16, 0xb7, 0x9b, 0x08, 0x5d, 0x99, 0xf4, 0xb1, 0x87, 0x3a, 0xbb, 0xc5, 0x26, 0xda, 0xe4, 0x09, + 0xc0, 0x71, 0x1c, 0xbe, 0x49, 0x82, 0xb1, 0x80, 0x4c, 0xcb, 0x30, 0xc7, 0x72, 0x3b, 0x87, 0x21, + 0xaf, 0x60, 0x25, 0xa2, 0xb1, 0xe2, 0xba, 0xe1, 0x28, 0x9d, 0x09, 0x26, 0xea, 0x2d, 0xe4, 0xb6, + 0x13, 0x6e, 0x8a, 0x18, 0xa7, 0x0a, 0x89, 0xa6, 0x64, 0x7a, 0x70, 0x32, 0x8c, 0x55, 0x7b, 0x31, + 0x3f, 0xb8, 0x5e, 0x18, 0x2b, 0x1b, 0xe5, 0xe4, 0x21, 0x54, 0xce, 0xb9, 0xf0, 0xc2, 0xf3, 0xb6, + 0x85, 0x88, 0xa6, 0x41, 0x7c, 0x8b, 0x32, 0x3b, 0xd1, 0x91, 0x43, 0x78, 0xd0, 0xe7, 0x82, 0x39, + 0x83, 0x98, 0x72, 0xc1, 0x3c, 0x47, 0x0e, 0x47, 0xfd, 0xbe, 0x76, 0x4b, 0xc5, 0x8c, 0x06, 0x8e, + 0x1b, 0x8e, 0x84, 0x6a, 0x2f, 0xad, 0x15, 0x1e, 0x95, 0x92, 0xe4, 0xbe, 0xab, 0xe1, 0x2f, 0x0c, + 0xba, 0x67, 0xc0, 0x3d, 0xc4, 0x6e, 0x69, 0x28, 0x79, 0x05, 0xf7, 0x67, 0xda, 0x3b, 0xa5, 0xca, + 0x1d, 0x3a, 0x92, 0x7f, 0xcf, 0xda, 0x24, 0x67, 0xed, 0xc3, 0x69, 0x6b, 0x9b, 0x1a, 0xd9, 0xe3, + 0xdf, 0x33, 0x3d, 0x02, 0x76, 0x11, 0x51, 0xe1, 0xb5, 0x97, 0xf3, 0x23, 0xd8, 0x41, 0x99, 0x9d, + 0xe8, 0xc8, 0xa7, 0x50, 0x35, 0xff, 0xd6, 0xdb, 0x2b, 0x08, 0x5b, 0xc8, 0xc3, 0xd6, 0xed, 0x54, + 0xdb, 0xf9, 0x87, 0x79, 0x68, 0x4d, 0x46, 0x94, 0x3c, 0xca, 0xad, 0x65, 0x32, 0x19, 0xf3, 0xa9, + 0xf5, 0xbc, 0xc4, 0x84, 0x1b, 0x7a, 0xcc, 0x73, 0x14, 0x95, 0x67, 0x4e, 0xc0, 0x14, 0x6d, 0x17, + 0xd7, 0xe6, 0x1f, 0x35, 0xed, 0xc5, 0x44, 0x71, 0x42, 0xe5, 0xd9, 0x01, 0x53, 0x94, 0x3c, 0x85, + 0xd6, 0x38, 0xca, 0x67, 0xec, 0x52, 0xb6, 0xe7, 0xd7, 0xe6, 0xc7, 0x31, 0xda, 0xb9, 0x88, 0x62, + 0x7b, 0x21, 0x43, 0xbc, 0x66, 0x97, 0x92, 0x3c, 0x84, 0xb2, 0x3b, 0xe4, 0xbe, 0x97, 0x2c, 0xe9, + 0xdc, 0xbe, 0xa2, 0x53, 0xd9, 0x36, 0x4a, 0xf2, 0x09, 0x94, 0xd5, 0x65, 0xc4, 0x64, 0xbb, 0x8c, + 0xf6, 0x92, 0x85, 0xbf, 0xcb, 0x99, 0xef, 0x69, 0x77, 0x6d, 0xa3, 0x25, 0x7f, 0x02, 0x8b, 0xd4, + 0xf7, 0x9d, 0xbe, 0x96, 0x3b, 0x86, 0x50, 0x99, 0x4d, 0x58, 0xa0, 0xbe, 0x9f, 0xb5, 0x24, 0xf9, + 0x35, 0x34, 0xdc, 0x30, 0x48, 0x37, 0x48, 0x5c, 0xde, 0xad, 0xf5, 0x5b, 0x86, 0xb4, 0x35, 0x56, + 0x1c, 0x84, 0x5e, 0x3a, 0x35, 0x79, 0x3c, 0xd9, 0x87, 0xd5, 0x51, 0x94, 0x26, 0x8e, 0x62, 0xb9, + 0x89, 0xaa, 0x61, 0xf7, 0xb7, 0x93, 0x51, 0x99, 0xe9, 0xda, 0xbc, 0x54, 0x4c, 0xf6, 0x7c, 0xee, + 0x32, 0x7b, 0x39, 0xa5, 0x6d, 0x29, 0x96, 0xce, 0x62, 0xe7, 0x4b, 0x58, 0x9a, 0x42, 0x92, 0x8f, + 0x61, 0x21, 0x1f, 0x06, 0xd9, 0x2e, 0x60, 0x08, 0x9a, 0xb9, 0x10, 0xc8, 0xce, 0x0f, 0x05, 0xb0, + 0xae, 0x6e, 0x2f, 0xb3, 0x03, 0x58, 0x98, 0x1d, 0xc0, 0x27, 0xd0, 0xc8, 0x4f, 0x5e, 0x71, 0xf6, + 0xe4, 0x41, 0x7f, 0x3c, 0x73, 0x1d, 0x4c, 0xa4, 0xf9, 0xeb, 0x12, 0x09, 0x53, 0x68, 0x1b, 0xee, + 0x87, 0x31, 0x1f, 0x70, 0x41, 0x7d, 0x9c, 0x9e, 0x28, 0xf6, 0x42, 0x77, 0xc4, 0xe2, 0x9c, 0x3f, + 0x25, 0xf4, 0xe7, 0xc3, 0x14, 0xb6, 0xa5, 0xd8, 0x71, 0x02, 0xca, 0xa6, 0xe5, 0x2f, 0x8b, 0xd0, + 0xdc, 0x38, 0x3c, 0xfc, 0xb3, 0x11, 0x8b, 0x2f, 0xf7, 0x44, 0x3f, 0x24, 0x4f, 0x01, 0xde, 0xea, + 0x06, 0x3a, 0x3b, 0x99, 0xcb, 0x29, 0x0e, 0x5d, 0xa8, 0xbf, 0x4d, 0xff, 0x92, 0x1d, 0x58, 0xf4, + 0xb8, 0x54, 0x54, 0xb8, 0x4c, 0xf7, 0x1b, 0x73, 0x17, 0xcf, 0xa8, 0xd6, 0xfa, 0x47, 0x93, 0xbc, + 0xed, 0x04, 0x74, 0x80, 0x18, 0xbb, 0xe5, 0x4d, 0xb4, 0xc9, 0x32, 0x94, 0x55, 0x18, 0x39, 0x67, + 0x38, 0xee, 0x12, 0x1e, 0x0e, 0xaf, 0xc9, 0x3d, 0x68, 0xc4, 0xac, 0xef, 0x7c, 0xc7, 0x5c, 0xa7, + 0xff, 0x6c, 0x1d, 0x47, 0x54, 0xb4, 0xeb, 0x31, 0xeb, 0xff, 0x96, 0xb9, 0xbb, 0xcf, 0xd6, 0xc9, + 0x03, 0x68, 0x06, 0xf4, 0xc2, 0x49, 0x4d, 0xe1, 0xae, 0x5d, 0xb0, 0x1b, 0x01, 0xbd, 0x48, 0x7b, + 0x23, 0x0f, 0xa1, 0x35, 0x14, 0xf2, 0xdc, 0x61, 0x7d, 0x47, 0x32, 0x1a, 0xbb, 0x43, 0x5c, 0xd8, + 0x0b, 0x76, 0x53, 0x4b, 0x77, 0xfa, 0x3d, 0x94, 0xbd, 0x2a, 0xd5, 0xca, 0x56, 0xa5, 0xf3, 0xbb, + 0x32, 0xd4, 0xc7, 0x7b, 0xe2, 0x7d, 0xa8, 0x99, 0x5d, 0x95, 0x7b, 0x38, 0x13, 0xf3, 0x49, 0x9a, + 0x56, 0x51, 0xba, 0xe7, 0x91, 0x2e, 0x54, 0xdd, 0xd0, 0x1f, 0x05, 0x22, 0x8d, 0xaa, 0x95, 0x66, + 0xb7, 0x16, 0xea, 0xf9, 0xb4, 0x53, 0x00, 0x69, 0x43, 0xc9, 0x63, 0xd2, 0xc5, 0xd1, 0xd5, 0x12, + 0x43, 0x28, 0x21, 0x9f, 0x01, 0x89, 0x62, 0x1e, 0xd0, 0xf8, 0xd2, 0x31, 0x60, 0x87, 0x7b, 0x12, + 0x87, 0x3a, 0x6f, 0x5b, 0x89, 0x26, 0xb1, 0xe8, 0x49, 0xf2, 0x0d, 0x58, 0x82, 0x5d, 0x28, 0x27, + 0x66, 0xd4, 0x73, 0x98, 0x18, 0x70, 0xc1, 0xf0, 0x20, 0x6e, 0xa5, 0x9d, 0xef, 0xa0, 0x2c, 0xb7, + 0xe1, 0xb4, 0x34, 0xde, 0x66, 0xd4, 0x33, 0x1a, 0xf2, 0x19, 0x54, 0x62, 0x9d, 0x4a, 0xe9, 0x3a, + 0x4e, 0xb6, 0x87, 0xd7, 0xec, 0xd2, 0xd6, 0xe2, 0x84, 0x95, 0x60, 0xc8, 0x57, 0xf0, 0x41, 0xea, + 0x5d, 0x14, 0xb3, 0x3e, 0xbf, 0xc8, 0x3b, 0x59, 0x45, 0x27, 0x57, 0x13, 0xc0, 0x31, 0xea, 0xc7, + 0xae, 0xde, 0x05, 0x38, 0x63, 0x2c, 0x72, 0xc2, 0xd8, 0x4b, 0xce, 0xeb, 0x9a, 0x5d, 0xd7, 0x92, + 0x23, 0x2d, 0x20, 0x6b, 0xd0, 0xe4, 0xd2, 0xe9, 0x53, 0xa9, 0xcc, 0xb1, 0x55, 0x47, 0x00, 0x70, + 0xb9, 0x4b, 0xa5, 0xc2, 0x00, 0x1c, 0xc0, 0xdd, 0x68, 0x24, 0x87, 0xcc, 0x73, 0xbc, 0xf0, 0x5c, + 0x38, 0x7d, 0xee, 0x2b, 0x16, 0x3b, 0x6e, 0x28, 0x3c, 0xdc, 0xeb, 0x64, 0x1b, 0xa6, 0x76, 0xc2, + 0x3b, 0x86, 0xb0, 0x1d, 0x9e, 0x8b, 0x5d, 0x84, 0x6f, 0x65, 0x68, 0xb2, 0x05, 0xcb, 0xf1, 0x48, + 0x28, 0x1e, 0xb0, 0xd4, 0x94, 0xcf, 0xa5, 0x6a, 0x37, 0xd0, 0xc8, 0xb2, 0x31, 0x62, 0x1b, 0x80, + 0xe1, 0xda, 0x4b, 0x71, 0xbe, 0xb9, 0xcf, 0xa5, 0x22, 0x9f, 0x83, 0xa5, 0x33, 0xee, 0x9c, 0x72, + 0xe5, 0xa0, 0xa9, 0x40, 0xe2, 0x31, 0x5f, 0x4e, 0xe6, 0x6d, 0x21, 0xa0, 0x17, 0xdf, 0x52, 0xae, + 0x4e, 0x78, 0xc0, 0x0e, 0x24, 0xf9, 0x02, 0xea, 0x54, 0x08, 0x07, 0x57, 0x4b, 0x72, 0xa8, 0x5f, + 0x59, 0x4e, 0x98, 0x26, 0x35, 0x2a, 0x04, 0xb6, 0x3a, 0x7f, 0x57, 0x02, 0x32, 0x7d, 0x66, 0xff, + 0xff, 0xcc, 0xc5, 0x1b, 0x73, 0xa3, 0x7c, 0x63, 0x6e, 0x7c, 0x0c, 0xe3, 0x33, 0x0b, 0xe1, 0x15, + 0x84, 0x37, 0x33, 0xa1, 0x06, 0x5d, 0xcd, 0x90, 0xea, 0x4f, 0xcf, 0x90, 0xda, 0xff, 0x45, 0x86, + 0xd4, 0xff, 0xd7, 0x19, 0x02, 0xef, 0x99, 0x21, 0x8d, 0xf7, 0xc8, 0x90, 0xff, 0x2e, 0x43, 0x49, + 0xd7, 0xad, 0xe4, 0x29, 0xd4, 0x75, 0xe5, 0x9a, 0xdf, 0xaa, 0x5b, 0xe3, 0xb2, 0x36, 0xb7, 0x03, + 0xd4, 0xde, 0x24, 0x6d, 0xf2, 0xa7, 0xd0, 0x42, 0x8a, 0x2e, 0x6b, 0x0d, 0xaf, 0x98, 0xdf, 0xe2, + 0x35, 0xef, 0xca, 0xf5, 0xa3, 0xf9, 0x26, 0x27, 0xd3, 0x97, 0x0b, 0x2c, 0x1e, 0x62, 0x26, 0x92, + 0x32, 0xe4, 0x6a, 0x71, 0x91, 0xe9, 0xc9, 0x03, 0xa8, 0x73, 0x21, 0x98, 0xae, 0xa6, 0x2f, 0xb0, + 0x12, 0x49, 0x73, 0xb6, 0x86, 0xe2, 0x3d, 0xef, 0x82, 0x3c, 0x81, 0x96, 0xcf, 0xfa, 0xca, 0x41, + 0x9f, 0xb0, 0xb6, 0x29, 0x4f, 0xc5, 0xab, 0xa9, 0x11, 0xda, 0x31, 0x2c, 0x6d, 0xd6, 0x61, 0x31, + 0xe6, 0x83, 0x61, 0x9e, 0x52, 0x99, 0x2e, 0x87, 0x10, 0x92, 0x71, 0x9e, 0x40, 0x23, 0x8a, 0xc3, + 0x53, 0x96, 0x1c, 0xc0, 0xd5, 0x6b, 0x0e, 0x60, 0xc4, 0x98, 0x03, 0xf8, 0x09, 0x34, 0x4e, 0x47, + 0x3c, 0x3b, 0xb2, 0x6b, 0xd7, 0x30, 0x10, 0x63, 0x18, 0xcf, 0x60, 0x11, 0x47, 0x92, 0x4b, 0xbd, + 0xfa, 0x94, 0x5f, 0x38, 0xd8, 0x5c, 0xba, 0xfd, 0x1c, 0x2c, 0x33, 0x98, 0x1b, 0xb7, 0x34, 0x33, + 0xe0, 0x49, 0x5a, 0xa8, 0x86, 0x93, 0x79, 0xde, 0x98, 0xa6, 0x21, 0x26, 0x47, 0x7b, 0x09, 0x1f, + 0x1a, 0x1a, 0x7b, 0x9b, 0x63, 0x3a, 0xfd, 0x38, 0x0c, 0x1c, 0x2e, 0xda, 0xcd, 0x29, 0x0b, 0xb7, + 0x11, 0xbe, 0xf3, 0x76, 0x6c, 0x63, 0x37, 0x0e, 0x83, 0x3d, 0x41, 0x9e, 0xc3, 0x6d, 0x2e, 0x1d, + 0x31, 0xf2, 0x7d, 0x87, 0x9e, 0xd3, 0x58, 0x5f, 0x77, 0x02, 0x8e, 0x11, 0xc1, 0x2d, 0xae, 0x66, + 0x2f, 0x73, 0x79, 0x38, 0xf2, 0xfd, 0x0d, 0xad, 0xec, 0xb1, 0x80, 0x63, 0xba, 0x5e, 0xb3, 0xb8, + 0x5a, 0x3f, 0x65, 0x71, 0x75, 0xfe, 0xab, 0x08, 0x0b, 0x13, 0x20, 0xb2, 0x02, 0xc5, 0x64, 0x4f, + 0x4c, 0x17, 0x58, 0x91, 0x7b, 0xe4, 0x39, 0x58, 0x32, 0x1c, 0xc5, 0x2e, 0x73, 0xf4, 0x1d, 0xdd, + 0xf4, 0x54, 0x9c, 0x0e, 0x88, 0xc1, 0xe8, 0xff, 0xb8, 0x74, 0x9f, 0x83, 0xa5, 0x68, 0x3c, 0x60, + 0x2a, 0xc7, 0x9a, 0xae, 0xb6, 0x5b, 0x06, 0x93, 0xb1, 0xd6, 0x81, 0x64, 0x7d, 0x8d, 0x2f, 0x90, + 0x3a, 0xe3, 0xeb, 0x89, 0x47, 0x56, 0xda, 0x4f, 0x76, 0x99, 0x5c, 0x07, 0x92, 0xf5, 0x34, 0xe6, + 0x94, 0xf3, 0x9c, 0xb4, 0x97, 0x8c, 0xf3, 0x0b, 0xa8, 0xc6, 0x7d, 0xb3, 0x6a, 0x2b, 0xb8, 0x6a, + 0x6f, 0xcf, 0x98, 0xb4, 0xdc, 0xd2, 0xad, 0xc4, 0x7d, 0x5c, 0xb4, 0x86, 0x17, 0x84, 0x1e, 0x4b, + 0x8a, 0xf0, 0x59, 0xbc, 0x5c, 0x19, 0x5e, 0x89, 0xfb, 0xba, 0xd5, 0xf9, 0xb7, 0x02, 0xd4, 0xb3, + 0x47, 0x83, 0x77, 0x9f, 0x40, 0xf7, 0xa1, 0xc6, 0x35, 0x5a, 0x03, 0x8a, 0x79, 0x00, 0x4a, 0x27, + 0x8f, 0xa8, 0xf9, 0xf7, 0x3d, 0xa2, 0x4a, 0x53, 0x47, 0xd4, 0x2a, 0x54, 0x46, 0x82, 0xbf, 0x1d, + 0x99, 0xb2, 0xa7, 0x66, 0x27, 0xad, 0x6b, 0x8e, 0xae, 0xca, 0xec, 0xa3, 0xab, 0xf3, 0x57, 0x05, + 0xa8, 0x67, 0x6f, 0x1c, 0xa4, 0x0b, 0x90, 0x5b, 0x4b, 0x85, 0xa9, 0x88, 0xe7, 0xb4, 0xe4, 0x39, + 0xb4, 0xe2, 0x48, 0xe4, 0xd7, 0x9e, 0xc9, 0xab, 0xe4, 0xa2, 0x68, 0x47, 0x22, 0xd9, 0x83, 0x22, + 0x91, 0x5b, 0x7c, 0xd9, 0x95, 0x6c, 0xfe, 0x86, 0x2b, 0x59, 0xe7, 0x77, 0x85, 0xfc, 0x23, 0x00, + 0x59, 0x83, 0xb2, 0xce, 0xc3, 0x59, 0x1e, 0x19, 0x05, 0xe9, 0x42, 0x5d, 0x3b, 0x63, 0x50, 0x33, + 0xfd, 0xa8, 0xc5, 0xe6, 0xcf, 0xfb, 0xba, 0xf0, 0x17, 0x45, 0x68, 0xe4, 0xde, 0x72, 0xc8, 0x27, + 0x50, 0x1b, 0xc4, 0xe1, 0x28, 0x72, 0x4e, 0x2f, 0x67, 0xb8, 0x51, 0x45, 0xdd, 0xe6, 0xa5, 0x86, + 0xd1, 0xc1, 0xc0, 0xe9, 0x8f, 0x84, 0x3b, 0x63, 0x9d, 0x55, 0xe9, 0x60, 0xb0, 0x3b, 0x12, 0x2e, + 0x59, 0x83, 0x9a, 0xb9, 0x9b, 0x31, 0x6f, 0xa2, 0xfa, 0xc8, 0xa4, 0xe4, 0x0b, 0x68, 0xea, 0x11, + 0x65, 0x7d, 0x96, 0x66, 0x0d, 0x0a, 0xe2, 0x48, 0xbc, 0x48, 0x7a, 0x4e, 0x08, 0x59, 0xef, 0xe5, + 0xeb, 0x08, 0x1b, 0x89, 0x0f, 0xd9, 0x3c, 0x54, 0x6e, 0x9a, 0x87, 0xbf, 0x2f, 0x40, 0xe9, 0x24, + 0x8c, 0x0e, 0xc9, 0xa7, 0x50, 0xc3, 0x02, 0x76, 0x3c, 0x01, 0xc9, 0xcb, 0xc1, 0xe6, 0xe5, 0x9e, + 0x62, 0x81, 0x5d, 0x45, 0xed, 0xe6, 0x25, 0xb9, 0x93, 0x3e, 0x64, 0x15, 0x73, 0x4f, 0x12, 0xc9, + 0x0b, 0xd6, 0x7b, 0xcd, 0xbd, 0x1e, 0xca, 0xb8, 0x28, 0xca, 0xc6, 0x3e, 0xd9, 0x5d, 0x23, 0x43, + 0x6c, 0x5e, 0x76, 0xbe, 0x87, 0x32, 0x3e, 0x94, 0x8d, 0xfb, 0x2e, 0xdc, 0xd0, 0x77, 0xf1, 0xa7, + 0xf4, 0x3d, 0xff, 0xae, 0xbe, 0xbf, 0x81, 0xd2, 0x6b, 0xee, 0xfb, 0xe4, 0x23, 0xa8, 0xb8, 0xa1, + 0x10, 0x7b, 0xdb, 0x13, 0x7d, 0x27, 0x32, 0xed, 0x98, 0xa9, 0x6c, 0x8a, 0xb9, 0x68, 0x1b, 0x51, + 0xe7, 0x9f, 0x8a, 0xd0, 0x4e, 0xdd, 0x30, 0xbf, 0x3c, 0x14, 0xbd, 0x51, 0xa0, 0x57, 0xaa, 0xbe, + 0x61, 0xe3, 0x51, 0x11, 0xc5, 0xa1, 0xcb, 0xa4, 0x64, 0x9e, 0x83, 0x2b, 0x53, 0x5f, 0x0d, 0x17, + 0xb5, 0xe2, 0x38, 0x95, 0x1f, 0xea, 0x55, 0xb0, 0x24, 0x46, 0x81, 0x86, 0x7a, 0x23, 0x97, 0x79, + 0x4e, 0x1c, 0x9e, 0x4b, 0x13, 0x05, 0x7b, 0x51, 0x8c, 0x82, 0xe3, 0x44, 0x6e, 0x87, 0xe7, 0x92, + 0x7c, 0x02, 0x2d, 0x8d, 0xe5, 0x8a, 0xc5, 0xd4, 0x2c, 0x5f, 0x73, 0xdf, 0x5c, 0x10, 0xa3, 0x60, + 0x2f, 0x13, 0x5e, 0x7d, 0x0d, 0x2c, 0x4d, 0xbd, 0x06, 0xae, 0x41, 0xc3, 0x0d, 0x85, 0x3b, 0x8a, + 0x63, 0x26, 0xdc, 0x4b, 0xdc, 0x8b, 0x4a, 0x76, 0x5e, 0x44, 0xf6, 0x61, 0x45, 0xf1, 0xbe, 0x4f, + 0xe5, 0x10, 0xab, 0x57, 0xbd, 0x63, 0x28, 0x76, 0xa1, 0x92, 0xb4, 0x4b, 0x9e, 0xe7, 0x4e, 0xf8, + 0xae, 0x46, 0xe8, 0x1d, 0x76, 0xcb, 0xe8, 0x5f, 0xce, 0xd9, 0x24, 0xe1, 0xe5, 0xa4, 0x9b, 0x4d, + 0x80, 0x6d, 0xa6, 0x28, 0xf7, 0xf5, 0x3e, 0xd9, 0x19, 0xc0, 0x4a, 0xc2, 0xcc, 0x26, 0x0e, 0xaf, + 0xef, 0x47, 0xb0, 0xcc, 0x52, 0x81, 0x23, 0x71, 0x2a, 0x39, 0x4b, 0xf7, 0x8f, 0x7b, 0x93, 0x91, + 0xbf, 0x3a, 0xe5, 0x36, 0x61, 0x93, 0x12, 0xce, 0x64, 0xe7, 0xf7, 0x55, 0x20, 0xd3, 0x3e, 0x92, + 0x5f, 0xc1, 0x1d, 0x15, 0x2a, 0xea, 0x3b, 0x5e, 0xd0, 0xe7, 0xc9, 0xbb, 0xa3, 0x60, 0x9e, 0x13, + 0x51, 0xf7, 0x2c, 0x0d, 0xd3, 0x6d, 0x44, 0x6c, 0x23, 0xa0, 0x67, 0xf4, 0xc7, 0x5a, 0x3d, 0x4d, + 0x3e, 0xe3, 0x51, 0x94, 0x91, 0x8b, 0xd3, 0x64, 0xa3, 0x37, 0xe4, 0xaf, 0xe0, 0x83, 0x99, 0x3d, + 0x63, 0xcc, 0x4d, 0x28, 0x57, 0xa7, 0x3b, 0xc6, 0xd0, 0x4f, 0x51, 0x93, 0x7e, 0x91, 0x5a, 0x9a, + 0xa6, 0x1a, 0x35, 0x52, 0x7f, 0x03, 0x3f, 0x9b, 0xa0, 0xc6, 0xe1, 0x68, 0x30, 0x74, 0x24, 0x53, + 0x8e, 0x39, 0xf2, 0xfc, 0x90, 0x7a, 0x59, 0xb1, 0x6f, 0x72, 0xa1, 0x93, 0x33, 0x65, 0x6b, 0x78, + 0x8f, 0x29, 0x3c, 0x4d, 0xf7, 0x43, 0xea, 0x25, 0xb5, 0xff, 0x97, 0x57, 0x3c, 0xc2, 0x4b, 0x7d, + 0x6a, 0xa6, 0x82, 0x66, 0x6e, 0xe5, 0xcd, 0xb0, 0x8c, 0xf9, 0x0d, 0xdc, 0x35, 0x4c, 0x37, 0x66, + 0x54, 0x31, 0x47, 0x0a, 0x1a, 0xc9, 0x61, 0x38, 0xbe, 0x71, 0x54, 0x91, 0x6d, 0xcc, 0x6f, 0x21, + 0xa6, 0x97, 0x40, 0x12, 0x0b, 0xcf, 0xc0, 0x0c, 0xd6, 0xf1, 0x43, 0x97, 0xfa, 0x4e, 0xcc, 0x06, + 0x3a, 0x67, 0xc4, 0x28, 0xc0, 0x9b, 0x7a, 0xc9, 0x5e, 0x46, 0xed, 0xbe, 0x56, 0xda, 0xa8, 0x3b, + 0x1c, 0x05, 0xe4, 0xe7, 0x60, 0x02, 0xe3, 0xc4, 0x2c, 0x08, 0x15, 0xcb, 0xb3, 0xea, 0xc8, 0x5a, + 0x41, 0xb5, 0x8d, 0xda, 0x31, 0xed, 0x29, 0x98, 0x61, 0x38, 0x23, 0xc9, 0x62, 0x33, 0xca, 0xd3, + 0x4b, 0xc5, 0xcc, 0xbd, 0xa8, 0x64, 0x13, 0x54, 0xfe, 0x46, 0xb2, 0x58, 0x8f, 0x10, 0x1f, 0xe8, + 0xc6, 0x14, 0x9f, 0xd1, 0x58, 0xa4, 0xac, 0x40, 0xe2, 0x15, 0x29, 0xa5, 0xec, 0x1b, 0x9d, 0x66, + 0x1d, 0x48, 0xb2, 0x03, 0x6b, 0xc9, 0x6c, 0x72, 0xa9, 0x8f, 0x03, 0x64, 0xb8, 0xd4, 0x1d, 0x32, + 0x67, 0xc8, 0x95, 0x79, 0x2e, 0x6e, 0x22, 0xfb, 0x43, 0x33, 0xa9, 0x08, 0xd3, 0xe4, 0x2d, 0x0d, + 0x7a, 0xc9, 0x15, 0x3e, 0x14, 0xbf, 0x80, 0x07, 0xd7, 0x99, 0x09, 0xb8, 0x94, 0xc6, 0xce, 0x02, + 0xda, 0xf9, 0x68, 0x96, 0x9d, 0x03, 0x2e, 0x25, 0x1a, 0xfa, 0x16, 0xba, 0x37, 0x26, 0x8d, 0x3b, + 0x64, 0xee, 0x59, 0x16, 0xb0, 0x16, 0x5a, 0xfc, 0xf8, 0xba, 0xac, 0xd9, 0xd2, 0x60, 0x13, 0xba, + 0xce, 0xf7, 0x50, 0xea, 0x85, 0xb1, 0x22, 0x7f, 0x04, 0xd5, 0x53, 0xdc, 0x99, 0xe5, 0xec, 0x93, + 0x29, 0x51, 0x92, 0x87, 0xb0, 0xc0, 0x25, 0x3e, 0x2a, 0x50, 0x5f, 0x13, 0xcd, 0x66, 0x6c, 0x4f, + 0x0a, 0xdf, 0xb3, 0x3e, 0xf8, 0x7d, 0x11, 0x2c, 0xf3, 0xea, 0xbf, 0x1b, 0xd3, 0x80, 0x6d, 0x86, + 0x23, 0xa1, 0x0f, 0x8f, 0x52, 0xee, 0x12, 0x7a, 0x2b, 0xff, 0x6d, 0x00, 0x01, 0xb9, 0xa2, 0x14, + 0x81, 0xa4, 0x03, 0xf5, 0x91, 0x38, 0xd5, 0x2a, 0xe6, 0x4d, 0x1c, 0x0d, 0x63, 0xb1, 0x2e, 0xf4, + 0xc2, 0x7e, 0x5f, 0x32, 0x95, 0x2c, 0xeb, 0xa4, 0x45, 0x1e, 0x41, 0xdd, 0xa5, 0xbe, 0xab, 0xcf, + 0x72, 0x99, 0x1c, 0x91, 0xf9, 0x5a, 0x63, 0xac, 0x24, 0x7f, 0x0c, 0x8d, 0xbe, 0x76, 0xd2, 0xc1, + 0xb7, 0xac, 0xe4, 0x7b, 0xd5, 0x44, 0x5d, 0x87, 0x6a, 0x7c, 0xf6, 0x22, 0xbf, 0x84, 0x05, 0x37, + 0x88, 0x1c, 0x8f, 0x2a, 0x9a, 0xaf, 0xb1, 0x93, 0x0f, 0x4c, 0x88, 0xd9, 0x0a, 0xa2, 0x6d, 0xaa, + 0x28, 0x5e, 0xfe, 0x1a, 0xee, 0xb8, 0xd1, 0xf9, 0x9b, 0x02, 0x34, 0x72, 0x93, 0x72, 0xd3, 0x7c, + 0x20, 0x60, 0x6a, 0x3e, 0x3e, 0x83, 0xb2, 0x54, 0x34, 0x89, 0x4c, 0xf6, 0x55, 0xeb, 0xea, 0x3c, + 0xdb, 0x06, 0x44, 0x1e, 0xc1, 0x3c, 0x13, 0x69, 0x9c, 0xae, 0xc3, 0x6a, 0x48, 0xe7, 0x87, 0x02, + 0x54, 0x8c, 0x86, 0x7c, 0x0a, 0x75, 0x5d, 0x1f, 0x39, 0x58, 0x56, 0x4f, 0x57, 0x72, 0x35, 0xad, + 0xdc, 0xd6, 0x05, 0xf6, 0xd5, 0x4a, 0xa0, 0xf8, 0x8e, 0x4a, 0x60, 0xa2, 0x42, 0x9a, 0xbf, 0xa9, + 0x42, 0xfa, 0x14, 0xca, 0x38, 0xe1, 0xc9, 0x77, 0x89, 0xa5, 0x29, 0xcf, 0x6d, 0xa3, 0x1f, 0xa7, + 0x62, 0xf9, 0xa6, 0x54, 0xfc, 0x1a, 0x9a, 0x58, 0x04, 0x72, 0x31, 0xd0, 0x43, 0x20, 0x5f, 0xc0, + 0xc2, 0x20, 0x69, 0x63, 0x45, 0x3c, 0x63, 0x94, 0xcd, 0x41, 0x8e, 0xd0, 0x79, 0x09, 0x8d, 0xd4, + 0x40, 0x8f, 0x29, 0xf2, 0x15, 0xb4, 0x26, 0xf8, 0xe9, 0xaa, 0x4a, 0x1e, 0x47, 0xf2, 0x7d, 0xd9, + 0x0b, 0x79, 0x43, 0x52, 0x17, 0xee, 0x15, 0xf3, 0x89, 0x88, 0xfc, 0x22, 0xe7, 0x85, 0x64, 0x2a, + 0x35, 0xb2, 0x34, 0x69, 0xa4, 0xc7, 0xd4, 0xd8, 0x99, 0x1e, 0x53, 0xf2, 0x3d, 0xcb, 0xb4, 0x36, + 0x54, 0xbf, 0x63, 0x31, 0x7e, 0x50, 0x31, 0xab, 0x22, 0x6d, 0x76, 0x3e, 0x87, 0xba, 0xf6, 0xc5, + 0x7c, 0xd9, 0x78, 0xe7, 0xcd, 0xa1, 0xf3, 0xd7, 0x05, 0xa8, 0x26, 0x1f, 0xb5, 0xc8, 0x63, 0x80, + 0x28, 0x0e, 0xdf, 0x4c, 0x0c, 0x7a, 0x71, 0x4c, 0x31, 0x9f, 0x55, 0xea, 0x1a, 0x62, 0x6e, 0x12, + 0xcf, 0x61, 0x75, 0xc0, 0x84, 0xae, 0x95, 0x98, 0xe7, 0x84, 0x23, 0x15, 0x8d, 0x94, 0x23, 0x68, + 0x90, 0x7c, 0xdc, 0xa8, 0xdb, 0x2b, 0x99, 0xf6, 0x08, 0x95, 0x87, 0x5a, 0xf7, 0x7e, 0xfb, 0x4b, + 0xf7, 0x5f, 0x8a, 0xe6, 0xeb, 0x38, 0xde, 0x5c, 0x97, 0x60, 0x41, 0xff, 0x66, 0xcf, 0xa0, 0xd6, + 0x5c, 0x2a, 0xca, 0xee, 0xa5, 0x56, 0x21, 0x15, 0x65, 0xd7, 0x39, 0xab, 0x48, 0x96, 0x61, 0x51, + 0x8b, 0x72, 0x17, 0x19, 0x6b, 0x9e, 0x34, 0xa1, 0x86, 0xd6, 0xc2, 0xe8, 0xd0, 0x2a, 0x91, 0x05, + 0xa8, 0xeb, 0x16, 0xd6, 0xcf, 0x56, 0x39, 0x33, 0x82, 0xf7, 0x90, 0x8d, 0xc1, 0xc0, 0xaa, 0xa4, + 0xf8, 0x57, 0x21, 0x17, 0x56, 0x35, 0x6d, 0xe9, 0x9a, 0xd7, 0xaa, 0x91, 0x55, 0x20, 0xba, 0x35, + 0xf9, 0x05, 0xd0, 0xaa, 0x93, 0x36, 0xac, 0xe4, 0xe5, 0xe9, 0x07, 0x23, 0x0b, 0x08, 0x81, 0x96, + 0xd6, 0x8c, 0xaf, 0x77, 0x56, 0x83, 0xdc, 0x81, 0x55, 0x94, 0x4d, 0xbd, 0xf7, 0x5a, 0xcd, 0xb4, + 0x3f, 0xbd, 0x35, 0x5b, 0x0b, 0xa4, 0x05, 0xa0, 0x5b, 0x66, 0xad, 0x58, 0xad, 0xb4, 0x6d, 0x22, + 0x68, 0x2d, 0x92, 0x45, 0x68, 0x8c, 0xdb, 0xeb, 0x96, 0xd5, 0xfd, 0x12, 0x9a, 0xf9, 0x6f, 0x46, + 0x1a, 0x70, 0x4c, 0xa5, 0x3c, 0x19, 0xe2, 0x29, 0x64, 0xcd, 0xe9, 0xf1, 0x6f, 0xc6, 0x21, 0xf5, + 0x5c, 0x2a, 0x95, 0x55, 0x20, 0x35, 0x28, 0xbd, 0xa4, 0x72, 0x68, 0x15, 0xbb, 0xbf, 0x82, 0xc5, + 0x2b, 0x9f, 0xe7, 0xb4, 0xf2, 0xf0, 0xe8, 0x70, 0xc7, 0x9a, 0xd3, 0xff, 0x76, 0x37, 0x7a, 0x27, + 0x56, 0x81, 0xac, 0x80, 0xf5, 0x72, 0xef, 0xc5, 0x4b, 0x67, 0xeb, 0xe8, 0xe0, 0xd8, 0xde, 0xe9, + 0xf5, 0xf6, 0x8e, 0x0e, 0xad, 0x62, 0xf7, 0x31, 0xc0, 0xf8, 0x03, 0x04, 0xa9, 0x43, 0x19, 0x0b, + 0x08, 0x43, 0x3c, 0xe1, 0xaf, 0x7f, 0x6b, 0x15, 0x48, 0x03, 0xaa, 0x49, 0x45, 0x69, 0x15, 0xbb, + 0x5f, 0xc3, 0xea, 0xec, 0xef, 0x43, 0x3a, 0x20, 0x7b, 0xe2, 0x3b, 0xea, 0x73, 0xcf, 0x08, 0xac, + 0x39, 0x52, 0x81, 0xe2, 0xfe, 0xba, 0x55, 0x24, 0x00, 0x95, 0xad, 0x50, 0x72, 0xc1, 0xac, 0xf9, + 0xee, 0xd3, 0xf1, 0x07, 0x2c, 0xec, 0x72, 0x05, 0xac, 0x84, 0x96, 0xc9, 0xac, 0x39, 0xdd, 0xe7, + 0x91, 0xd9, 0x84, 0xac, 0x42, 0xf7, 0x1f, 0x0b, 0x50, 0x4b, 0x5f, 0x48, 0xc7, 0xf9, 0x24, 0x58, + 0x8c, 0x91, 0x9e, 0x23, 0xb7, 0x60, 0x09, 0x33, 0x83, 0xf5, 0xd5, 0xd1, 0x48, 0x25, 0xe2, 0x42, + 0x1a, 0x72, 0x9b, 0x0f, 0x86, 0x39, 0x79, 0x91, 0x58, 0xd0, 0x34, 0xe9, 0x67, 0xde, 0xb9, 0xac, + 0x79, 0xed, 0x03, 0x66, 0x9f, 0x50, 0x3c, 0x93, 0x96, 0xc8, 0x07, 0x70, 0x6b, 0xc2, 0x6c, 0xa6, + 0x2a, 0x93, 0xbb, 0xf0, 0x41, 0x4a, 0x98, 0x56, 0x57, 0xba, 0x6b, 0xd0, 0xcc, 0xbf, 0xcc, 0xa6, + 0x3d, 0xea, 0x78, 0x19, 0x97, 0xbb, 0xbf, 0x84, 0xa5, 0xa9, 0x57, 0x20, 0x3d, 0x5d, 0x7b, 0x87, + 0x66, 0xf0, 0x07, 0x7b, 0x87, 0xce, 0xc1, 0xc6, 0x9f, 0x5b, 0x05, 0xcd, 0xdd, 0xdc, 0x3f, 0x3a, + 0x3a, 0x70, 0x76, 0xf7, 0xf6, 0x4f, 0x76, 0x6c, 0xab, 0xd8, 0xed, 0x5e, 0xe1, 0x62, 0xc4, 0x75, + 0xe4, 0x8e, 0xb6, 0x36, 0xf6, 0xad, 0x39, 0x3d, 0xdb, 0x2f, 0xf6, 0x8f, 0x36, 0x37, 0xf6, 0xad, + 0x42, 0xf7, 0x6b, 0x58, 0xbc, 0x72, 0xac, 0xeb, 0x3c, 0xda, 0x0d, 0x7d, 0x3f, 0x3c, 0xe7, 0x62, + 0x60, 0xd2, 0xea, 0x38, 0x66, 0x2e, 0xf3, 0x74, 0xb3, 0xa0, 0xf3, 0x74, 0x0b, 0x2f, 0x44, 0xca, + 0x0e, 0xcf, 0xad, 0x62, 0xf7, 0x08, 0xac, 0xab, 0x47, 0x29, 0xa9, 0xc2, 0xfc, 0x9e, 0x50, 0xd6, + 0x9c, 0xee, 0x74, 0xd7, 0x0f, 0xa9, 0x32, 0x49, 0xb2, 0xcd, 0x5c, 0x1e, 0x50, 0xdf, 0x2a, 0xea, + 0xa5, 0xb0, 0x4d, 0x15, 0xd3, 0xd5, 0x8f, 0x59, 0xc6, 0xdb, 0x23, 0x73, 0x4f, 0xb3, 0x4a, 0xdd, + 0x67, 0xa9, 0x47, 0xd9, 0xc1, 0xaa, 0x53, 0x4d, 0x17, 0xed, 0xc6, 0x75, 0xec, 0x4d, 0x5a, 0x05, + 0x1c, 0x86, 0xde, 0x6f, 0xa5, 0x55, 0xdc, 0xfc, 0xd9, 0x1f, 0x7e, 0xbc, 0x57, 0xf8, 0xd7, 0x1f, + 0xef, 0x15, 0xfe, 0xe3, 0xc7, 0x7b, 0x85, 0xbf, 0xfd, 0xcf, 0x7b, 0x73, 0x70, 0xcb, 0x0d, 0x83, + 0xc7, 0x7a, 0x2f, 0x76, 0x69, 0xf4, 0x58, 0x71, 0xef, 0x14, 0x77, 0xa7, 0xe3, 0xc2, 0xff, 0x04, + 0x00, 0x00, 0xff, 0xff, 0x05, 0x2b, 0x06, 0x6c, 0xfa, 0x23, 0x00, 0x00, } diff --git a/proto/executor.proto b/proto/executor.proto index d2dca7f0..ebcb005f 100644 --- a/proto/executor.proto +++ b/proto/executor.proto @@ -100,10 +100,30 @@ enum EngineType { TiFlash = 2; } -message TableScanANNHint { - optional ByItem top_n_order_by = 1; - optional int64 top_n_limit = 2 [(gogoproto.nullable) = false]; - optional Expr pre_filters = 3; +enum ANNQueryDistanceMetric { + InvalidMetric = 0; + // L1 = 1; // Not supported for now + L2 = 2; + Cosine = 3; + // NegInnerProduct = 4; // Not supported for now +} + +enum ANNQueryType { + InvalidQueryType = 0; + OrderBy = 1; + // Where = 2; // Not supported for now +} + +message ANNQueryInfo { + optional ANNQueryType query_type = 1; + optional ANNQueryDistanceMetric distance_metric = 2; + optional uint64 top_k = 3; + repeated float ref_vec_f32 = 4; // The reference vector to calculate distance with + reserved 5; // reserved for ref_vec_f64 + + optional double max_distance = 10; // Only for ANNQueryType==Where + + optional uint32 hnsw_ef_search = 20; // Only for HNSW indexes } message TableScan { @@ -117,7 +137,7 @@ message TableScan { optional bool keep_order = 8; optional bool is_fast_scan = 9; // fast_scan is a feature only provided by TiFlash (but not TiKV). repeated Expr pushed_down_filter_conditions = 10; // conditions that are pushed down to storage layer, only used by TiFlash. - optional TableScanANNHint ann_hint = 13; + optional ANNQueryInfo ann_query = 13; repeated RuntimeFilter runtime_filter_list = 11; // only used by TiFlash optional int32 max_wait_time_ms = 12 [(gogoproto.nullable) = false]; } @@ -131,7 +151,7 @@ message PartitionTableScan { repeated int64 partition_ids = 6; optional bool is_fast_scan = 7; // fast_scan is a feature only provided by TiFlash (but not TiKV). repeated Expr pushed_down_filter_conditions = 8; // conditions that are pushed down to storage layer, only used by TiFlash. - optional TableScanANNHint ann_hint = 11; + optional ANNQueryInfo ann_query = 11; repeated RuntimeFilter runtime_filter_list = 9; // only used by TiFlash optional int32 max_wait_time_ms = 10 [(gogoproto.nullable) = false]; }