Modify grpc interface for replica Search/Query in QueryNode (#16326)

Signed-off-by: Letian Jiang <letian.jiang@zilliz.com>
This commit is contained in:
Letian Jiang 2022-04-02 14:15:31 +08:00 committed by GitHub
parent 7f7379d55f
commit 028c5cb882
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
9 changed files with 242 additions and 237 deletions

View File

@ -20,6 +20,8 @@ import (
"context"
"fmt"
"google.golang.org/grpc"
"github.com/milvus-io/milvus/internal/proto/commonpb"
"github.com/milvus-io/milvus/internal/proto/internalpb"
"github.com/milvus-io/milvus/internal/proto/milvuspb"
@ -28,7 +30,6 @@ import (
"github.com/milvus-io/milvus/internal/util/grpcclient"
"github.com/milvus-io/milvus/internal/util/paramtable"
"github.com/milvus-io/milvus/internal/util/typeutil"
"google.golang.org/grpc"
)
var ClientParams paramtable.GrpcClientConfig
@ -242,7 +243,7 @@ func (c *Client) ReleaseSegments(ctx context.Context, req *querypb.ReleaseSegmen
}
// Search performs replica search tasks in QueryNode.
func (c *Client) Search(ctx context.Context, req *querypb.SearchRequest) (*milvuspb.SearchResults, error) {
func (c *Client) Search(ctx context.Context, req *querypb.SearchRequest) (*internalpb.SearchResults, error) {
ret, err := c.grpcClient.ReCall(ctx, func(client interface{}) (interface{}, error) {
if !funcutil.CheckCtxValid(ctx) {
return nil, ctx.Err()
@ -252,11 +253,11 @@ func (c *Client) Search(ctx context.Context, req *querypb.SearchRequest) (*milvu
if err != nil || ret == nil {
return nil, err
}
return ret.(*milvuspb.SearchResults), err
return ret.(*internalpb.SearchResults), err
}
// Query performs replica query tasks in QueryNode.
func (c *Client) Query(ctx context.Context, req *querypb.QueryRequest) (*milvuspb.QueryResults, error) {
func (c *Client) Query(ctx context.Context, req *querypb.QueryRequest) (*internalpb.RetrieveResults, error) {
ret, err := c.grpcClient.ReCall(ctx, func(client interface{}) (interface{}, error) {
if !funcutil.CheckCtxValid(ctx) {
return nil, ctx.Err()
@ -266,7 +267,7 @@ func (c *Client) Query(ctx context.Context, req *querypb.QueryRequest) (*milvusp
if err != nil || ret == nil {
return nil, err
}
return ret.(*milvuspb.QueryResults), err
return ret.(*internalpb.RetrieveResults), err
}
// GetSegmentInfo gets the information of the specified segments in QueryNode.

View File

@ -26,6 +26,11 @@ import (
"time"
ot "github.com/grpc-ecosystem/go-grpc-middleware/tracing/opentracing"
clientv3 "go.etcd.io/etcd/client/v3"
"go.uber.org/zap"
"google.golang.org/grpc"
"google.golang.org/grpc/keepalive"
"github.com/milvus-io/milvus/internal/log"
"github.com/milvus-io/milvus/internal/mq/msgstream"
"github.com/milvus-io/milvus/internal/proto/commonpb"
@ -40,10 +45,6 @@ import (
"github.com/milvus-io/milvus/internal/util/retry"
"github.com/milvus-io/milvus/internal/util/trace"
"github.com/milvus-io/milvus/internal/util/typeutil"
clientv3 "go.etcd.io/etcd/client/v3"
"go.uber.org/zap"
"google.golang.org/grpc"
"google.golang.org/grpc/keepalive"
)
var Params paramtable.GrpcServerConfig
@ -305,12 +306,12 @@ func (s *Server) GetSegmentInfo(ctx context.Context, req *querypb.GetSegmentInfo
}
// Search performs search of streaming/historical replica on QueryNode.
func (s *Server) Search(ctx context.Context, req *querypb.SearchRequest) (*milvuspb.SearchResults, error) {
func (s *Server) Search(ctx context.Context, req *querypb.SearchRequest) (*internalpb.SearchResults, error) {
return s.querynode.Search(ctx, req)
}
// Query performs query of streaming/historical replica on QueryNode.
func (s *Server) Query(ctx context.Context, req *querypb.QueryRequest) (*milvuspb.QueryResults, error) {
func (s *Server) Query(ctx context.Context, req *querypb.QueryRequest) (*internalpb.RetrieveResults, error) {
return s.querynode.Query(ctx, req)
}

View File

@ -23,12 +23,13 @@ import (
"github.com/milvus-io/milvus/internal/types"
"github.com/stretchr/testify/assert"
clientv3 "go.etcd.io/etcd/client/v3"
"github.com/milvus-io/milvus/internal/proto/commonpb"
"github.com/milvus-io/milvus/internal/proto/internalpb"
"github.com/milvus-io/milvus/internal/proto/milvuspb"
"github.com/milvus-io/milvus/internal/proto/querypb"
"github.com/stretchr/testify/assert"
clientv3 "go.etcd.io/etcd/client/v3"
)
///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
@ -43,8 +44,8 @@ type MockQueryNode struct {
strResp *milvuspb.StringResponse
infoResp *querypb.GetSegmentInfoResponse
metricResp *milvuspb.GetMetricsResponse
searchResp *milvuspb.SearchResults
queryResp *milvuspb.QueryResults
searchResp *internalpb.SearchResults
queryResp *internalpb.RetrieveResults
}
func (m *MockQueryNode) Init() error {
@ -115,11 +116,11 @@ func (m *MockQueryNode) GetMetrics(ctx context.Context, req *milvuspb.GetMetrics
return m.metricResp, m.err
}
func (m *MockQueryNode) Search(ctx context.Context, req *querypb.SearchRequest) (*milvuspb.SearchResults, error) {
func (m *MockQueryNode) Search(ctx context.Context, req *querypb.SearchRequest) (*internalpb.SearchResults, error) {
return m.searchResp, m.err
}
func (m *MockQueryNode) Query(ctx context.Context, req *querypb.QueryRequest) (*milvuspb.QueryResults, error) {
func (m *MockQueryNode) Query(ctx context.Context, req *querypb.QueryRequest) (*internalpb.RetrieveResults, error) {
return m.queryResp, m.err
}

View File

@ -51,8 +51,8 @@ service QueryNode {
rpc ReleaseSegments(ReleaseSegmentsRequest) returns (common.Status) {}
rpc GetSegmentInfo(GetSegmentInfoRequest) returns (GetSegmentInfoResponse) {}
rpc Search(SearchRequest) returns (milvus.SearchResults) {}
rpc Query(QueryRequest) returns (milvus.QueryResults) {}
rpc Search(SearchRequest) returns (internal.SearchResults) {}
rpc Query(QueryRequest) returns (internal.RetrieveResults) {}
// https://wiki.lfaidata.foundation/display/MIL/MEP+8+--+Add+metrics+for+proxy
rpc GetMetrics(milvus.GetMetricsRequest) returns (milvus.GetMetricsResponse) {}
@ -269,13 +269,13 @@ message ReleaseSegmentsRequest {
}
message SearchRequest {
milvus.SearchRequest req = 1;
internal.SearchRequest req = 1;
string dml_channel = 2;
repeated int64 segmentIDs = 3;
}
message QueryRequest {
milvus.QueryRequest req = 1;
internal.RetrieveRequest req = 1;
string dml_channel = 2;
repeated int64 segmentIDs = 3;
}

View File

@ -1981,12 +1981,12 @@ func (m *ReleaseSegmentsRequest) GetSegmentIDs() []int64 {
}
type SearchRequest struct {
Req *milvuspb.SearchRequest `protobuf:"bytes,1,opt,name=req,proto3" json:"req,omitempty"`
DmlChannel string `protobuf:"bytes,2,opt,name=dml_channel,json=dmlChannel,proto3" json:"dml_channel,omitempty"`
SegmentIDs []int64 `protobuf:"varint,3,rep,packed,name=segmentIDs,proto3" json:"segmentIDs,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
Req *internalpb.SearchRequest `protobuf:"bytes,1,opt,name=req,proto3" json:"req,omitempty"`
DmlChannel string `protobuf:"bytes,2,opt,name=dml_channel,json=dmlChannel,proto3" json:"dml_channel,omitempty"`
SegmentIDs []int64 `protobuf:"varint,3,rep,packed,name=segmentIDs,proto3" json:"segmentIDs,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *SearchRequest) Reset() { *m = SearchRequest{} }
@ -2014,7 +2014,7 @@ func (m *SearchRequest) XXX_DiscardUnknown() {
var xxx_messageInfo_SearchRequest proto.InternalMessageInfo
func (m *SearchRequest) GetReq() *milvuspb.SearchRequest {
func (m *SearchRequest) GetReq() *internalpb.SearchRequest {
if m != nil {
return m.Req
}
@ -2036,12 +2036,12 @@ func (m *SearchRequest) GetSegmentIDs() []int64 {
}
type QueryRequest struct {
Req *milvuspb.QueryRequest `protobuf:"bytes,1,opt,name=req,proto3" json:"req,omitempty"`
DmlChannel string `protobuf:"bytes,2,opt,name=dml_channel,json=dmlChannel,proto3" json:"dml_channel,omitempty"`
SegmentIDs []int64 `protobuf:"varint,3,rep,packed,name=segmentIDs,proto3" json:"segmentIDs,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
Req *internalpb.RetrieveRequest `protobuf:"bytes,1,opt,name=req,proto3" json:"req,omitempty"`
DmlChannel string `protobuf:"bytes,2,opt,name=dml_channel,json=dmlChannel,proto3" json:"dml_channel,omitempty"`
SegmentIDs []int64 `protobuf:"varint,3,rep,packed,name=segmentIDs,proto3" json:"segmentIDs,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *QueryRequest) Reset() { *m = QueryRequest{} }
@ -2069,7 +2069,7 @@ func (m *QueryRequest) XXX_DiscardUnknown() {
var xxx_messageInfo_QueryRequest proto.InternalMessageInfo
func (m *QueryRequest) GetReq() *milvuspb.QueryRequest {
func (m *QueryRequest) GetReq() *internalpb.RetrieveRequest {
if m != nil {
return m.Req
}
@ -3037,187 +3037,187 @@ func init() {
func init() { proto.RegisterFile("query_coord.proto", fileDescriptor_aab7cc9a69ed26e8) }
var fileDescriptor_aab7cc9a69ed26e8 = []byte{
// 2865 bytes of a gzipped FileDescriptorProto
0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xec, 0x3a, 0x49, 0x73, 0x1c, 0x49,
0xd5, 0xaa, 0xde, 0xd4, 0xfd, 0x7a, 0x75, 0xca, 0xd6, 0xb4, 0xfa, 0x9b, 0x45, 0x2e, 0x8f, 0x97,
0xcf, 0xc3, 0xc8, 0x46, 0x1e, 0x22, 0x98, 0x18, 0x38, 0x58, 0x12, 0xd6, 0x88, 0xb1, 0x35, 0x9a,
0x92, 0x6c, 0xc0, 0xe1, 0x88, 0x9a, 0xea, 0xae, 0x54, 0xab, 0xc2, 0xb5, 0xb4, 0x2b, 0xab, 0x47,
0x96, 0xb9, 0x4e, 0xb0, 0x2f, 0x41, 0x04, 0x04, 0x17, 0x82, 0x13, 0x04, 0x70, 0x98, 0xe0, 0xcc,
0x8d, 0x1f, 0xc0, 0x81, 0x23, 0x27, 0x82, 0x1b, 0xfc, 0x01, 0x8e, 0x04, 0x44, 0x2e, 0x55, 0x5d,
0x4b, 0x96, 0xd4, 0x92, 0x46, 0x63, 0x07, 0xc1, 0xad, 0xf2, 0xd5, 0xcb, 0x7c, 0x2f, 0xdf, 0x7b,
0xf9, 0xb6, 0x4c, 0x38, 0xf7, 0x64, 0x8c, 0xfd, 0x03, 0x7d, 0xe0, 0x79, 0xbe, 0xb9, 0x34, 0xf2,
0xbd, 0xc0, 0x43, 0xc8, 0xb1, 0xec, 0x8f, 0xc6, 0x84, 0x8f, 0x96, 0xd8, 0xff, 0x5e, 0x63, 0xe0,
0x39, 0x8e, 0xe7, 0x72, 0x58, 0xaf, 0x11, 0xc7, 0xe8, 0xb5, 0x2c, 0x37, 0xc0, 0xbe, 0x6b, 0xd8,
0xe1, 0x5f, 0x32, 0xd8, 0xc3, 0x8e, 0x21, 0x46, 0x1d, 0xd3, 0x08, 0x8c, 0xf8, 0xfa, 0xea, 0xc7,
0x0a, 0xcc, 0x6f, 0xef, 0x79, 0xfb, 0xab, 0x9e, 0x6d, 0xe3, 0x41, 0x60, 0x79, 0x2e, 0xd1, 0xf0,
0x93, 0x31, 0x26, 0x01, 0xba, 0x09, 0xa5, 0xbe, 0x41, 0x70, 0x57, 0x59, 0x54, 0xae, 0xd5, 0x97,
0x5f, 0x5e, 0x4a, 0x70, 0x22, 0x58, 0xb8, 0x47, 0x86, 0x2b, 0x06, 0xc1, 0x1a, 0xc3, 0x44, 0x08,
0x4a, 0x66, 0x7f, 0x63, 0xad, 0x5b, 0x58, 0x54, 0xae, 0x15, 0x35, 0xf6, 0x8d, 0x5e, 0x87, 0xe6,
0x20, 0x5a, 0x7b, 0x63, 0x8d, 0x74, 0x8b, 0x8b, 0xc5, 0x6b, 0x45, 0x2d, 0x09, 0x54, 0x7f, 0xa3,
0xc0, 0x4b, 0x19, 0x36, 0xc8, 0xc8, 0x73, 0x09, 0x46, 0xb7, 0xa0, 0x42, 0x02, 0x23, 0x18, 0x13,
0xc1, 0xc9, 0xff, 0x49, 0x39, 0xd9, 0x66, 0x28, 0x9a, 0x40, 0xcd, 0x92, 0x2d, 0x48, 0xc8, 0xa2,
0xcf, 0xc3, 0x79, 0xcb, 0xbd, 0x87, 0x1d, 0xcf, 0x3f, 0xd0, 0x47, 0xd8, 0x1f, 0x60, 0x37, 0x30,
0x86, 0x38, 0xe4, 0x71, 0x2e, 0xfc, 0xb7, 0x35, 0xf9, 0xa5, 0xfe, 0x5a, 0x81, 0x0b, 0x94, 0xd3,
0x2d, 0xc3, 0x0f, 0xac, 0x33, 0x90, 0x97, 0x0a, 0x8d, 0x38, 0x8f, 0xdd, 0x22, 0xfb, 0x97, 0x80,
0x51, 0x9c, 0x51, 0x48, 0x9e, 0xee, 0xad, 0xc4, 0xd8, 0x4d, 0xc0, 0xd4, 0x5f, 0x09, 0xc5, 0xc6,
0xf9, 0x3c, 0x8d, 0x40, 0xd3, 0x34, 0x0b, 0x59, 0x9a, 0x27, 0x11, 0xe7, 0xdf, 0x15, 0xb8, 0x70,
0xd7, 0x33, 0xcc, 0x89, 0xe2, 0x3f, 0x7b, 0x71, 0x7e, 0x19, 0x2a, 0xfc, 0x94, 0x74, 0x4b, 0x8c,
0xd6, 0xe5, 0x24, 0x2d, 0x71, 0x82, 0x26, 0x1c, 0x6e, 0x33, 0x80, 0x26, 0x26, 0xa1, 0xcb, 0xd0,
0xf2, 0xf1, 0xc8, 0xb6, 0x06, 0x86, 0xee, 0x8e, 0x9d, 0x3e, 0xf6, 0xbb, 0xe5, 0x45, 0xe5, 0x5a,
0x59, 0x6b, 0x0a, 0xe8, 0x26, 0x03, 0xaa, 0xbf, 0x50, 0xa0, 0xab, 0x61, 0x1b, 0x1b, 0x04, 0x3f,
0xcf, 0xcd, 0xce, 0x43, 0xc5, 0xf5, 0x4c, 0xbc, 0xb1, 0xc6, 0x36, 0x5b, 0xd4, 0xc4, 0x48, 0xfd,
0x7e, 0x81, 0x2b, 0xe2, 0x05, 0xb7, 0xeb, 0x98, 0xb2, 0xca, 0x9f, 0x8e, 0xb2, 0x2a, 0x32, 0x65,
0xfd, 0x71, 0xa2, 0xac, 0x17, 0x5d, 0x20, 0x13, 0x85, 0x96, 0x13, 0x0a, 0xfd, 0x06, 0x2c, 0xac,
0xfa, 0xd8, 0x08, 0xf0, 0x07, 0x34, 0x68, 0xac, 0xee, 0x19, 0xae, 0x8b, 0xed, 0x70, 0x0b, 0x69,
0xe2, 0x8a, 0x84, 0x78, 0x17, 0x66, 0x47, 0xbe, 0xf7, 0xf4, 0x20, 0xe2, 0x3b, 0x1c, 0xaa, 0xbf,
0x55, 0xa0, 0x27, 0x5b, 0xfb, 0x34, 0xfe, 0xe5, 0x12, 0x34, 0x45, 0xf4, 0xe3, 0xab, 0x31, 0x9a,
0x35, 0xad, 0xf1, 0x24, 0x46, 0x01, 0xdd, 0x84, 0xf3, 0x1c, 0xc9, 0xc7, 0x64, 0x6c, 0x07, 0x11,
0x6e, 0x91, 0xe1, 0x22, 0xf6, 0x4f, 0x63, 0xbf, 0xc4, 0x0c, 0xf5, 0x77, 0x0a, 0x2c, 0xac, 0xe3,
0x20, 0x52, 0x22, 0xa5, 0x8a, 0x5f, 0x50, 0x97, 0xfd, 0x89, 0x02, 0x3d, 0x19, 0xaf, 0xa7, 0x11,
0xeb, 0x43, 0x98, 0x8f, 0x68, 0xe8, 0x26, 0x26, 0x03, 0xdf, 0x1a, 0x31, 0x63, 0x66, 0x0e, 0xbc,
0xbe, 0x7c, 0x69, 0x29, 0x9b, 0x60, 0x2c, 0xa5, 0x39, 0xb8, 0x10, 0x2d, 0xb1, 0x16, 0x5b, 0x41,
0xfd, 0xa1, 0x02, 0x17, 0xd6, 0x71, 0xb0, 0x8d, 0x87, 0x0e, 0x76, 0x83, 0x0d, 0x77, 0xd7, 0x3b,
0xb9, 0x5c, 0x5f, 0x05, 0x20, 0x62, 0x9d, 0x28, 0xb8, 0xc4, 0x20, 0xd3, 0xc8, 0x98, 0xe5, 0x32,
0x69, 0x7e, 0x4e, 0x23, 0xbb, 0x2f, 0x40, 0xd9, 0x72, 0x77, 0xbd, 0x50, 0x54, 0xaf, 0xc9, 0x44,
0x15, 0x27, 0xc6, 0xb1, 0xd5, 0x9f, 0x2a, 0x80, 0xd6, 0x71, 0xa0, 0x71, 0x87, 0x72, 0x0a, 0x5b,
0x4b, 0xef, 0xb9, 0x20, 0xb1, 0xab, 0x6b, 0xd0, 0xd9, 0xb7, 0x82, 0x3d, 0x9d, 0xec, 0x19, 0xbe,
0xa9, 0xd3, 0xa3, 0x4f, 0x98, 0x6c, 0xaa, 0x5a, 0x8b, 0xc2, 0xb7, 0x29, 0x78, 0x93, 0x42, 0xd5,
0x6f, 0x2b, 0x30, 0x97, 0x60, 0xeb, 0x34, 0xa2, 0x79, 0x07, 0xaa, 0xc2, 0x61, 0x1e, 0x2a, 0x1d,
0x41, 0x8c, 0x49, 0x27, 0x9a, 0xa0, 0xba, 0x5c, 0x4d, 0x94, 0xb5, 0xbb, 0xd8, 0x30, 0xb1, 0x7f,
0xb6, 0x32, 0x52, 0x7f, 0xa0, 0xc0, 0x4b, 0x19, 0x82, 0xa7, 0xd9, 0xfd, 0x97, 0xa0, 0xc2, 0xe4,
0x1d, 0xee, 0xfd, 0x75, 0xa9, 0x65, 0xc4, 0xc8, 0xdd, 0xb5, 0x48, 0xa0, 0x89, 0x39, 0xaa, 0x07,
0x9d, 0xf4, 0x3f, 0x74, 0x11, 0x1a, 0xc2, 0x97, 0xe9, 0xae, 0xe1, 0x70, 0x01, 0xd4, 0xb4, 0xba,
0x80, 0x6d, 0x1a, 0x0e, 0x46, 0x0b, 0x50, 0xa5, 0xea, 0xd5, 0x2d, 0x33, 0x3c, 0x1f, 0xb3, 0xcc,
0xd3, 0x9b, 0x04, 0xbd, 0x02, 0xc0, 0x7e, 0x19, 0xa6, 0xe9, 0xf3, 0x6c, 0xab, 0xa6, 0xd5, 0x28,
0xe4, 0x36, 0x05, 0xa8, 0xff, 0x2a, 0xc0, 0xfc, 0x6d, 0xd3, 0x94, 0xc5, 0x81, 0xe3, 0x0b, 0x7c,
0x12, 0x6e, 0x0a, 0xf1, 0x70, 0x33, 0x95, 0x13, 0xcc, 0xf8, 0xf8, 0xd2, 0x31, 0x7c, 0x7c, 0x39,
0xcf, 0xc7, 0xa3, 0x75, 0x68, 0x12, 0x8c, 0x1f, 0xeb, 0x23, 0x8f, 0x30, 0x27, 0xc5, 0x42, 0x7a,
0x7d, 0x59, 0x4d, 0xee, 0x26, 0x2a, 0x8c, 0xee, 0x91, 0xe1, 0x96, 0xc0, 0xd4, 0x1a, 0x74, 0x62,
0x38, 0x42, 0xf7, 0x61, 0x7e, 0x68, 0x7b, 0x7d, 0xc3, 0xd6, 0x09, 0x36, 0x6c, 0x6c, 0xea, 0xc2,
0x01, 0x91, 0xee, 0xec, 0x74, 0x1e, 0xe0, 0x3c, 0x9f, 0xbe, 0xcd, 0x66, 0x8b, 0x1f, 0x44, 0xfd,
0x9b, 0x02, 0x0b, 0x1a, 0x76, 0xbc, 0x8f, 0xf0, 0x7f, 0xab, 0x0a, 0xd4, 0x9f, 0x28, 0xd0, 0xa0,
0xd9, 0xe3, 0x3d, 0x1c, 0xb0, 0xd3, 0x8e, 0xde, 0x86, 0x9a, 0xed, 0x19, 0xa6, 0x1e, 0x1c, 0x8c,
0xf8, 0xd6, 0x5a, 0xe9, 0xad, 0x71, 0xe9, 0xd1, 0x49, 0x3b, 0x07, 0x23, 0xac, 0x55, 0x6d, 0xf1,
0x35, 0x95, 0xdb, 0x4b, 0x87, 0xd3, 0xa2, 0xac, 0x02, 0x2a, 0xc2, 0xfc, 0xd7, 0x8c, 0x60, 0xb0,
0xb7, 0xe6, 0x08, 0x36, 0xc9, 0xf3, 0x91, 0xf9, 0x34, 0x59, 0x5c, 0x14, 0x6b, 0xca, 0x32, 0x4b,
0xa3, 0x65, 0xfb, 0xd2, 0x03, 0xa1, 0x86, 0x58, 0xac, 0x89, 0x65, 0xc3, 0x95, 0x93, 0x64, 0xc3,
0xab, 0xd0, 0xc4, 0x4f, 0x07, 0xf6, 0x98, 0xba, 0x15, 0x46, 0x9d, 0xdb, 0xf9, 0xab, 0x12, 0xea,
0x71, 0x33, 0x6f, 0x88, 0x49, 0x1b, 0x82, 0x07, 0xae, 0x6a, 0x07, 0x07, 0x46, 0xb7, 0xca, 0xd8,
0x58, 0xcc, 0x53, 0x75, 0x68, 0x1f, 0x5c, 0xdd, 0x74, 0xa4, 0xfe, 0x5b, 0x81, 0x05, 0xae, 0x26,
0x6c, 0x07, 0xc6, 0xf3, 0xd5, 0x54, 0xa4, 0x85, 0xd2, 0x31, 0xb5, 0x10, 0x93, 0x40, 0xed, 0xd8,
0x12, 0xf8, 0x79, 0x09, 0xda, 0x42, 0xbc, 0x14, 0x83, 0x9d, 0x9f, 0x97, 0xa1, 0x16, 0x65, 0x3f,
0x22, 0x3b, 0x9f, 0x00, 0xd0, 0x22, 0xd4, 0x63, 0xd6, 0x23, 0x36, 0x1a, 0x07, 0x4d, 0xb5, 0xdb,
0x30, 0x97, 0x2d, 0xc5, 0x72, 0xd9, 0x57, 0x00, 0x76, 0xed, 0x31, 0xd9, 0xd3, 0x03, 0xcb, 0xc1,
0xa2, 0xa2, 0xa8, 0x31, 0xc8, 0x8e, 0xe5, 0x60, 0x74, 0x1b, 0x1a, 0x7d, 0xcb, 0xb5, 0xbd, 0xa1,
0x3e, 0x32, 0x82, 0x3d, 0xd2, 0xad, 0xe4, 0xda, 0xcb, 0x1d, 0x0b, 0xdb, 0xe6, 0x0a, 0xc3, 0xd5,
0xea, 0x7c, 0xce, 0x16, 0x9d, 0x82, 0x5e, 0x85, 0xba, 0x3b, 0x76, 0x74, 0x6f, 0x57, 0xf7, 0xbd,
0x7d, 0x6a, 0x71, 0x8c, 0x84, 0x3b, 0x76, 0xde, 0xdf, 0xd5, 0xbc, 0x7d, 0x1a, 0x5c, 0x6b, 0x34,
0xcc, 0x12, 0xdb, 0x1b, 0x92, 0x6e, 0x75, 0xaa, 0xf5, 0x27, 0x13, 0xe8, 0x6c, 0x93, 0xda, 0x11,
0x9b, 0x5d, 0x9b, 0x6e, 0x76, 0x34, 0x01, 0x5d, 0x81, 0xd6, 0xc0, 0x73, 0x46, 0x06, 0x93, 0xd0,
0x1d, 0xdf, 0x73, 0xba, 0xc0, 0xce, 0x6a, 0x0a, 0x8a, 0x56, 0xa1, 0x6e, 0xb9, 0x26, 0x7e, 0x2a,
0x4e, 0x4d, 0x9d, 0xd1, 0x51, 0x65, 0x2a, 0x67, 0x84, 0x36, 0x28, 0x2e, 0x53, 0x3a, 0x58, 0xe1,
0x27, 0xa1, 0x31, 0x5f, 0x68, 0x54, 0x27, 0xd6, 0x33, 0xdc, 0x6d, 0x70, 0x2d, 0x0a, 0xd8, 0xb6,
0xf5, 0x0c, 0xab, 0xbf, 0x2f, 0x40, 0x2b, 0xb9, 0x02, 0xad, 0xca, 0x76, 0x19, 0x24, 0x34, 0x8b,
0x70, 0x48, 0xd7, 0xc3, 0xae, 0xd1, 0xb7, 0xe9, 0x59, 0x36, 0xf1, 0x53, 0x66, 0x15, 0x55, 0xad,
0xce, 0x61, 0x6c, 0x01, 0xaa, 0x5d, 0xce, 0x37, 0x4b, 0x32, 0x78, 0xd5, 0x54, 0x63, 0x10, 0x96,
0x62, 0x74, 0x61, 0x96, 0xf3, 0x17, 0xda, 0x44, 0x38, 0xa4, 0x7f, 0xfa, 0x63, 0x8b, 0x51, 0xe5,
0x36, 0x11, 0x0e, 0xd1, 0x1a, 0x34, 0xf8, 0x92, 0x23, 0xc3, 0x37, 0x9c, 0xd0, 0x22, 0x2e, 0x4a,
0x0f, 0xea, 0x7b, 0xf8, 0xe0, 0x81, 0x61, 0x8f, 0xf1, 0x96, 0x61, 0xf9, 0x1a, 0x97, 0xe0, 0x16,
0x9b, 0x45, 0xd3, 0x58, 0xbe, 0xca, 0xae, 0x65, 0x63, 0x61, 0x5b, 0xb3, 0x2c, 0x8f, 0x69, 0x31,
0xf8, 0x1d, 0xcb, 0xc6, 0xdc, 0x7c, 0xa2, 0x2d, 0x30, 0x99, 0x55, 0xb9, 0xf5, 0x30, 0x08, 0x93,
0xd8, 0x3f, 0x0a, 0x30, 0x47, 0x0f, 0x51, 0x18, 0x7c, 0x4f, 0xee, 0x47, 0x5e, 0x01, 0x30, 0x49,
0xa0, 0x27, 0x7c, 0x49, 0xcd, 0x24, 0xc1, 0x26, 0x77, 0x27, 0x6f, 0x87, 0xae, 0xa2, 0x98, 0x5f,
0x47, 0xa5, 0x0e, 0x75, 0xd6, 0x69, 0x9f, 0xa8, 0xdf, 0x74, 0x09, 0x9a, 0xc4, 0x1b, 0xfb, 0x03,
0xac, 0x27, 0xea, 0xfe, 0x06, 0x07, 0x6e, 0xca, 0xbd, 0x5d, 0x45, 0xda, 0xf7, 0x8a, 0xb9, 0xad,
0xd9, 0x63, 0xbb, 0xad, 0xbf, 0x2a, 0x30, 0x2f, 0x7a, 0x24, 0xa7, 0x97, 0x76, 0x9e, 0xd7, 0x0e,
0x7d, 0x54, 0xf1, 0x90, 0x7a, 0xbb, 0x34, 0x45, 0xcc, 0x2d, 0x4b, 0x62, 0x6e, 0xb2, 0xe6, 0xac,
0xa4, 0x6b, 0x4e, 0xf5, 0x5b, 0x0a, 0x34, 0xb7, 0xb1, 0xe1, 0x0f, 0xf6, 0xc2, 0x7d, 0xbd, 0x05,
0x45, 0x1f, 0x3f, 0x11, 0xdb, 0x4a, 0x9d, 0x77, 0x31, 0x48, 0x4c, 0xd0, 0x28, 0x3a, 0x7a, 0x0d,
0xea, 0xa6, 0x63, 0xa7, 0x1a, 0x1b, 0x60, 0x3a, 0x76, 0x98, 0x6f, 0x25, 0x19, 0x29, 0x66, 0x18,
0xf9, 0x58, 0x81, 0xc6, 0x07, 0x3c, 0xe9, 0xe2, 0x7c, 0xdc, 0x8a, 0xf3, 0x71, 0x51, 0xca, 0x47,
0x1c, 0xff, 0x53, 0x62, 0xe3, 0xc7, 0x0a, 0xcc, 0xbf, 0x6b, 0xb8, 0xa6, 0xb7, 0xbb, 0x7b, 0x7a,
0x85, 0xaf, 0x46, 0xde, 0x6f, 0xe3, 0x38, 0x35, 0x76, 0x62, 0x92, 0xfa, 0x9d, 0x02, 0x20, 0x6a,
0x9d, 0x2b, 0x86, 0x6d, 0xb8, 0x03, 0x7c, 0x72, 0x6e, 0x2e, 0x43, 0x2b, 0x71, 0xa6, 0xa2, 0xfb,
0x82, 0xf8, 0xa1, 0x22, 0xe8, 0x3d, 0x68, 0xf5, 0x39, 0x29, 0xdd, 0xc7, 0x06, 0xf1, 0x5c, 0x66,
0x97, 0x2d, 0x79, 0x01, 0xb8, 0xe3, 0x5b, 0xc3, 0x21, 0xf6, 0x57, 0x3d, 0xd7, 0xe4, 0xc5, 0x46,
0xb3, 0x1f, 0xb2, 0x49, 0xa7, 0x32, 0x7d, 0x44, 0x0e, 0x26, 0xcc, 0x0a, 0x21, 0xf2, 0x30, 0x04,
0xbd, 0x01, 0xe7, 0x92, 0x75, 0xc8, 0xc4, 0x90, 0x3b, 0x24, 0x5e, 0x62, 0x50, 0xe5, 0x7c, 0x13,
0x50, 0x94, 0xe7, 0xb2, 0x74, 0x8a, 0x45, 0x8b, 0x69, 0xfa, 0x7c, 0x2f, 0x43, 0xcd, 0x0c, 0x67,
0x0a, 0xab, 0x98, 0x00, 0xa8, 0xb7, 0xe1, 0x1c, 0xea, 0xf4, 0xe0, 0x63, 0x33, 0xcc, 0x24, 0x38,
0xf0, 0x2e, 0x83, 0xa9, 0x9f, 0x14, 0xa0, 0x13, 0xaf, 0x6d, 0xa6, 0xa6, 0x7d, 0x36, 0x5d, 0xbf,
0x43, 0x0a, 0xb9, 0xd2, 0x29, 0x0a, 0xb9, 0x6c, 0xa1, 0x59, 0x3e, 0x59, 0xa1, 0xa9, 0xfe, 0x52,
0x81, 0x76, 0xaa, 0xc9, 0x96, 0xce, 0xe9, 0x94, 0x6c, 0x4e, 0xf7, 0x45, 0x28, 0xd3, 0x44, 0x07,
0x33, 0x21, 0xb5, 0xe4, 0xf9, 0x46, 0x72, 0x55, 0x8d, 0x4f, 0x40, 0x37, 0x60, 0x4e, 0x72, 0x31,
0x23, 0x54, 0x89, 0xb2, 0xf7, 0x32, 0xea, 0x1f, 0x4a, 0x50, 0x8f, 0xc9, 0xe3, 0x88, 0x74, 0x74,
0x9a, 0x8a, 0x2d, 0xb5, 0xbd, 0x62, 0x76, 0x7b, 0x39, 0x37, 0x13, 0x68, 0x01, 0xaa, 0x0e, 0x76,
0x78, 0xbc, 0x17, 0xc9, 0x87, 0x83, 0x1d, 0x1a, 0xed, 0x59, 0x4f, 0x64, 0xec, 0xf0, 0x44, 0x92,
0x47, 0xb8, 0x59, 0x77, 0xec, 0xb0, 0x34, 0x32, 0x99, 0xea, 0xcc, 0x1e, 0x92, 0xea, 0x54, 0x93,
0xa9, 0x4e, 0xe2, 0x38, 0xd4, 0xd2, 0xc7, 0x61, 0xda, 0x0c, 0xf1, 0x26, 0xcc, 0x0d, 0x58, 0x87,
0xdc, 0x5c, 0x39, 0x58, 0x8d, 0x7e, 0x75, 0xeb, 0x2c, 0x27, 0x93, 0xfd, 0x42, 0x77, 0xa8, 0x71,
0x89, 0x74, 0x90, 0x69, 0xb9, 0xc1, 0xb4, 0x2c, 0xcf, 0xa4, 0x84, 0x6e, 0xb8, 0x92, 0x43, 0x9f,
0xc8, 0x46, 0xe9, 0xdc, 0xb4, 0x79, 0xa2, 0xdc, 0xf4, 0x35, 0xa8, 0x87, 0xd7, 0x24, 0x96, 0x49,
0xba, 0x2d, 0xee, 0x9b, 0x04, 0x68, 0xc3, 0x24, 0x89, 0x6e, 0x54, 0x3b, 0xd1, 0x8d, 0x52, 0xff,
0x5c, 0x84, 0xd6, 0x24, 0x79, 0x99, 0xda, 0x15, 0x4c, 0x73, 0xc1, 0xb8, 0x09, 0x9d, 0x49, 0x37,
0x9b, 0x49, 0xe9, 0xd0, 0xfc, 0x2b, 0xdd, 0xc7, 0x6e, 0x8f, 0x52, 0x67, 0x2e, 0xd1, 0xa5, 0x28,
0x1d, 0xab, 0x4b, 0x71, 0xca, 0x7b, 0xa8, 0x5b, 0x70, 0xc1, 0xe7, 0xb9, 0x93, 0xa9, 0x27, 0xb6,
0xcd, 0xd3, 0x90, 0xf3, 0xe1, 0xcf, 0xad, 0xf8, 0xf6, 0x73, 0x8e, 0xf1, 0x6c, 0xde, 0x31, 0x4e,
0xab, 0xb1, 0x9a, 0x51, 0x63, 0xf6, 0x3a, 0xac, 0x26, 0xbb, 0x0e, 0xfb, 0x8b, 0x02, 0xf5, 0x58,
0x2f, 0x97, 0x9e, 0x91, 0x70, 0x91, 0xc8, 0x1d, 0x44, 0x80, 0xa9, 0xdc, 0xc1, 0x25, 0x68, 0x4e,
0x34, 0x49, 0x79, 0xcb, 0x74, 0x70, 0x4c, 0xea, 0x6f, 0x5b, 0xbc, 0xaf, 0x1d, 0xf5, 0x9a, 0xb9,
0xfb, 0x5e, 0xcc, 0xed, 0xb7, 0x0a, 0x26, 0xb5, 0x26, 0x89, 0x8d, 0x92, 0xd6, 0x5a, 0x4e, 0x5a,
0xeb, 0x8f, 0x14, 0x68, 0xc4, 0xa7, 0xa2, 0x1e, 0x54, 0x6d, 0xd6, 0x99, 0x8d, 0xb6, 0x16, 0x8d,
0xa9, 0x3c, 0xf9, 0x37, 0x6b, 0xb5, 0x86, 0x29, 0x14, 0x07, 0xdd, 0x36, 0x4d, 0x1f, 0x5d, 0x81,
0xb6, 0xe9, 0xe8, 0x89, 0x56, 0x2e, 0x8f, 0x52, 0xcd, 0xc8, 0x85, 0x64, 0x9a, 0xb9, 0xa5, 0x24,
0x43, 0xf7, 0x61, 0xee, 0xbe, 0x4b, 0xc6, 0x7d, 0x32, 0xf0, 0xad, 0x3e, 0x0e, 0xfb, 0x21, 0x53,
0x1d, 0xa1, 0x1e, 0x54, 0x05, 0x69, 0x7e, 0x7c, 0x6a, 0x5a, 0x34, 0x56, 0xbf, 0xa7, 0xc0, 0x7c,
0x76, 0x5d, 0xa6, 0xcd, 0x89, 0xe3, 0x55, 0x12, 0x8e, 0xf7, 0xeb, 0x30, 0x37, 0x59, 0x5e, 0x4f,
0xac, 0x5c, 0x5f, 0xbe, 0x2a, 0xd3, 0x81, 0x84, 0x71, 0x0d, 0x4d, 0xd6, 0x08, 0x61, 0xea, 0x3f,
0x15, 0x38, 0x27, 0x5c, 0x18, 0x85, 0x0d, 0x59, 0x27, 0x89, 0xda, 0x84, 0xe7, 0xda, 0x96, 0x1b,
0x15, 0x36, 0x62, 0x8f, 0x1c, 0x28, 0x0a, 0x9b, 0x77, 0xa1, 0x2d, 0x90, 0xa2, 0x98, 0x3e, 0x65,
0xea, 0xd8, 0xe2, 0xf3, 0xa2, 0x68, 0x7e, 0x19, 0x5a, 0xde, 0xee, 0x6e, 0x9c, 0x1e, 0x0f, 0x4a,
0x4d, 0x01, 0x15, 0x04, 0xbf, 0x0a, 0x9d, 0x10, 0xed, 0xb8, 0x59, 0x44, 0x5b, 0x4c, 0x8c, 0x3a,
0xc1, 0xdf, 0x55, 0xa0, 0x9b, 0xcc, 0x29, 0x62, 0xdb, 0x3f, 0x7e, 0xd6, 0xfa, 0x4e, 0xf2, 0x82,
0xea, 0xf2, 0x21, 0xfc, 0x4c, 0xe8, 0x88, 0x2a, 0xf4, 0xfa, 0x33, 0x68, 0x25, 0xfd, 0x23, 0x6a,
0x40, 0x75, 0xd3, 0x0b, 0xbe, 0xf2, 0xd4, 0x22, 0x41, 0x67, 0x06, 0xb5, 0x00, 0x36, 0xbd, 0x60,
0xcb, 0xc7, 0x04, 0xbb, 0x41, 0x47, 0x41, 0x00, 0x95, 0xf7, 0xdd, 0x35, 0x8b, 0x3c, 0xee, 0x14,
0xd0, 0x9c, 0x48, 0x5f, 0x0c, 0x7b, 0x43, 0x38, 0x9d, 0x4e, 0x91, 0x4e, 0x8f, 0x46, 0x25, 0xd4,
0x81, 0x46, 0x84, 0xb2, 0xbe, 0x75, 0xbf, 0x53, 0x46, 0x35, 0x28, 0xf3, 0xcf, 0xca, 0x75, 0x13,
0x3a, 0xe9, 0xec, 0x98, 0xae, 0x79, 0xdf, 0x7d, 0xcf, 0xf5, 0xf6, 0x23, 0x50, 0x67, 0x06, 0xd5,
0x61, 0x56, 0x54, 0x1c, 0x1d, 0x05, 0xb5, 0xa1, 0x1e, 0x4b, 0xf6, 0x3b, 0x05, 0x0a, 0x58, 0xf7,
0x47, 0x03, 0x91, 0xf6, 0x73, 0x16, 0xa8, 0xd6, 0xd6, 0xbc, 0x7d, 0xb7, 0x53, 0xba, 0xbe, 0x02,
0xd5, 0xd0, 0x71, 0x53, 0x54, 0xbe, 0xba, 0x4b, 0x87, 0x9d, 0x19, 0x74, 0x0e, 0x9a, 0x89, 0xe7,
0x0e, 0x1d, 0x05, 0x21, 0x68, 0x25, 0x9f, 0xa2, 0x74, 0x0a, 0xcb, 0x3f, 0x6b, 0x02, 0xf0, 0xcc,
0xd6, 0xf3, 0x7c, 0x13, 0x8d, 0xd8, 0xd5, 0x1e, 0x8d, 0xda, 0x9e, 0x1b, 0x46, 0x5c, 0x82, 0x6e,
0xe6, 0x24, 0x80, 0x59, 0x54, 0xc1, 0x6a, 0xef, 0x4a, 0xce, 0x8c, 0x14, 0xba, 0x3a, 0x83, 0x1c,
0x46, 0x71, 0xc7, 0x72, 0xf0, 0x8e, 0x35, 0x78, 0x1c, 0xa5, 0xc4, 0xf9, 0x14, 0x53, 0xa8, 0x21,
0xc5, 0x4b, 0xf2, 0x6a, 0x35, 0xf0, 0x2d, 0x77, 0x18, 0xde, 0x86, 0xa9, 0x33, 0xe8, 0x09, 0x9c,
0x5f, 0xc7, 0x8c, 0xba, 0x45, 0x02, 0x6b, 0x40, 0x42, 0x82, 0xcb, 0xf9, 0x04, 0x33, 0xc8, 0xc7,
0x24, 0x69, 0x43, 0x3b, 0xf5, 0xf4, 0x0b, 0x5d, 0x97, 0x3b, 0x78, 0xd9, 0x33, 0xb5, 0xde, 0x1b,
0x53, 0xe1, 0x46, 0xd4, 0x2c, 0x68, 0x25, 0x9f, 0x45, 0xa1, 0xff, 0xcf, 0x5b, 0x20, 0xf3, 0xf2,
0xa3, 0x77, 0x7d, 0x1a, 0xd4, 0x88, 0xd4, 0x43, 0x6e, 0x4f, 0x47, 0x91, 0x92, 0xbe, 0xba, 0xe9,
0x1d, 0x76, 0x11, 0xa9, 0xce, 0xa0, 0x0f, 0xe1, 0x5c, 0xe6, 0x7d, 0x0a, 0xfa, 0x9c, 0xfc, 0x0e,
0x56, 0xfe, 0x8c, 0xe5, 0x28, 0x0a, 0x0f, 0xd3, 0xa7, 0x21, 0x9f, 0xfb, 0xcc, 0x7b, 0xa6, 0xe9,
0xb9, 0x8f, 0x2d, 0x7f, 0x18, 0xf7, 0xc7, 0xa6, 0x30, 0x06, 0x94, 0x7d, 0xa1, 0x82, 0xde, 0x94,
0x91, 0xc8, 0x7d, 0x25, 0xd3, 0x5b, 0x9a, 0x16, 0x3d, 0x52, 0xf9, 0x98, 0x9d, 0xd6, 0x74, 0x69,
0x27, 0x25, 0x9b, 0xfb, 0x2a, 0x45, 0x4e, 0x36, 0xff, 0x61, 0x08, 0x37, 0xea, 0xe4, 0xc3, 0x07,
0xb9, 0xae, 0xa4, 0x8f, 0x35, 0xe4, 0x46, 0x2d, 0x7f, 0x47, 0xa1, 0xce, 0xa0, 0x9d, 0x84, 0x13,
0x46, 0x57, 0xf2, 0x6c, 0x22, 0xd9, 0x92, 0x39, 0x4a, 0x5d, 0x3a, 0xc0, 0x3a, 0x0e, 0xee, 0xe1,
0xc0, 0xb7, 0x06, 0x24, 0xbd, 0xa8, 0x18, 0x4c, 0x10, 0xc2, 0x45, 0xaf, 0x1e, 0x89, 0x17, 0xb1,
0xfd, 0x21, 0xd4, 0x63, 0x8f, 0x1f, 0xe4, 0x6c, 0x67, 0x1f, 0x6d, 0xf4, 0xae, 0x1e, 0x89, 0x17,
0x77, 0x63, 0xa9, 0x47, 0x06, 0x28, 0x57, 0xb2, 0xd9, 0xa7, 0x0f, 0x72, 0x37, 0x96, 0xf3, 0x6a,
0x41, 0x9d, 0x59, 0xfe, 0x53, 0x1d, 0x6a, 0xcc, 0x06, 0x69, 0xbc, 0xfb, 0x5f, 0x58, 0x3a, 0x83,
0xb0, 0xf4, 0x08, 0xda, 0xa9, 0x47, 0x13, 0x72, 0x7d, 0xca, 0x5f, 0x56, 0x1c, 0x65, 0xf0, 0x7d,
0x40, 0xd9, 0x27, 0x01, 0x72, 0x47, 0x91, 0xfb, 0x74, 0xe0, 0x28, 0x1a, 0x8f, 0xa0, 0x9d, 0xba,
0xff, 0x96, 0xef, 0x40, 0x7e, 0x49, 0x3e, 0xc5, 0x0e, 0xb2, 0xd7, 0xb6, 0xf2, 0x1d, 0xe4, 0x5e,
0xef, 0x1e, 0x45, 0xe3, 0x01, 0x7f, 0x55, 0x10, 0xa5, 0xec, 0x57, 0xf3, 0xbc, 0x4d, 0xaa, 0x1f,
0xfd, 0xfc, 0xe3, 0xcf, 0xd9, 0xc7, 0xe7, 0x47, 0xd0, 0x4e, 0xdd, 0xbe, 0xc8, 0xb5, 0x2b, 0xbf,
0xa2, 0x39, 0x6a, 0xf5, 0xcf, 0x30, 0xa2, 0x7c, 0x00, 0x15, 0x7e, 0x69, 0x82, 0x2e, 0xca, 0x0b,
0x98, 0xd8, 0x85, 0x4a, 0xef, 0xf0, 0x4b, 0x17, 0x32, 0xb6, 0x03, 0xca, 0xfd, 0x26, 0x94, 0xd9,
0x79, 0x41, 0xd2, 0x4e, 0x41, 0xfc, 0x6a, 0xa4, 0x77, 0xe8, 0xed, 0x49, 0xb8, 0xde, 0x59, 0x87,
0xa7, 0x95, 0xb7, 0x1e, 0x2e, 0x0f, 0xad, 0x60, 0x6f, 0xdc, 0xa7, 0x8a, 0xb8, 0xc1, 0x31, 0xdf,
0xb4, 0x3c, 0xf1, 0x75, 0x23, 0xf4, 0x6b, 0x37, 0xd8, 0x4a, 0x37, 0xd8, 0x36, 0x46, 0xfd, 0x7e,
0x85, 0x0d, 0x6f, 0xfd, 0x27, 0x00, 0x00, 0xff, 0xff, 0x8e, 0x50, 0x1b, 0xbf, 0x38, 0x32, 0x00,
0x00,
// 2868 bytes of a gzipped FileDescriptorProto
0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xec, 0x1a, 0x4b, 0x6f, 0x24, 0x47,
0xd9, 0x3d, 0x2f, 0xcf, 0x7c, 0xf3, 0xdc, 0xf2, 0xae, 0x33, 0x1e, 0xf2, 0x70, 0x7a, 0xb3, 0x0f,
0x36, 0xc4, 0xbb, 0x38, 0x80, 0x12, 0x05, 0x0e, 0x6b, 0x9b, 0x75, 0x4c, 0x76, 0x1d, 0xa7, 0xed,
0x0d, 0xb0, 0x8a, 0xd4, 0xe9, 0x99, 0x2e, 0x8f, 0x5b, 0xe9, 0xc7, 0x6c, 0x57, 0x4f, 0xbc, 0x5e,
0xae, 0x48, 0x24, 0x3c, 0x85, 0x04, 0xe2, 0x82, 0x38, 0x81, 0x80, 0x43, 0xc4, 0x99, 0x1b, 0x3f,
0x01, 0x89, 0x0b, 0x27, 0xc4, 0x0d, 0xfe, 0x00, 0x47, 0x04, 0xaa, 0x47, 0xf7, 0xf4, 0xa3, 0xda,
0x33, 0xb6, 0xe3, 0xec, 0x0a, 0x71, 0xeb, 0xfa, 0xba, 0xea, 0xfb, 0xbe, 0xfa, 0xbe, 0xaf, 0xbe,
0x57, 0x15, 0x5c, 0x78, 0x38, 0xc6, 0xfe, 0x91, 0x3e, 0xf0, 0x3c, 0xdf, 0x5c, 0x19, 0xf9, 0x5e,
0xe0, 0x21, 0xe4, 0x58, 0xf6, 0x87, 0x63, 0xc2, 0x47, 0x2b, 0xec, 0x7f, 0xaf, 0x31, 0xf0, 0x1c,
0xc7, 0x73, 0x39, 0xac, 0xd7, 0x88, 0xcf, 0xe8, 0xb5, 0x2c, 0x37, 0xc0, 0xbe, 0x6b, 0xd8, 0xe1,
0x5f, 0x32, 0x38, 0xc0, 0x8e, 0x21, 0x46, 0x1d, 0xd3, 0x08, 0x8c, 0x38, 0x7e, 0xf5, 0xbb, 0x0a,
0x2c, 0xee, 0x1e, 0x78, 0x87, 0xeb, 0x9e, 0x6d, 0xe3, 0x41, 0x60, 0x79, 0x2e, 0xd1, 0xf0, 0xc3,
0x31, 0x26, 0x01, 0xba, 0x05, 0xa5, 0xbe, 0x41, 0x70, 0x57, 0x59, 0x56, 0xae, 0xd7, 0x57, 0x9f,
0x5d, 0x49, 0x70, 0x22, 0x58, 0xb8, 0x47, 0x86, 0x6b, 0x06, 0xc1, 0x1a, 0x9b, 0x89, 0x10, 0x94,
0xcc, 0xfe, 0xd6, 0x46, 0xb7, 0xb0, 0xac, 0x5c, 0x2f, 0x6a, 0xec, 0x1b, 0xbd, 0x04, 0xcd, 0x41,
0x84, 0x7b, 0x6b, 0x83, 0x74, 0x8b, 0xcb, 0xc5, 0xeb, 0x45, 0x2d, 0x09, 0x54, 0x7f, 0xab, 0xc0,
0x33, 0x19, 0x36, 0xc8, 0xc8, 0x73, 0x09, 0x46, 0xaf, 0x42, 0x85, 0x04, 0x46, 0x30, 0x26, 0x82,
0x93, 0xcf, 0x49, 0x39, 0xd9, 0x65, 0x53, 0x34, 0x31, 0x35, 0x4b, 0xb6, 0x20, 0x21, 0x8b, 0xbe,
0x08, 0x17, 0x2d, 0xf7, 0x1e, 0x76, 0x3c, 0xff, 0x48, 0x1f, 0x61, 0x7f, 0x80, 0xdd, 0xc0, 0x18,
0xe2, 0x90, 0xc7, 0x85, 0xf0, 0xdf, 0xce, 0xe4, 0x97, 0xfa, 0x1b, 0x05, 0x2e, 0x51, 0x4e, 0x77,
0x0c, 0x3f, 0xb0, 0xce, 0x41, 0x5e, 0x2a, 0x34, 0xe2, 0x3c, 0x76, 0x8b, 0xec, 0x5f, 0x02, 0x46,
0xe7, 0x8c, 0x42, 0xf2, 0x74, 0x6f, 0x25, 0xc6, 0x6e, 0x02, 0xa6, 0xfe, 0x5a, 0x28, 0x36, 0xce,
0xe7, 0x59, 0x04, 0x9a, 0xa6, 0x59, 0xc8, 0xd2, 0x3c, 0x8d, 0x38, 0xff, 0xa1, 0xc0, 0xa5, 0xbb,
0x9e, 0x61, 0x4e, 0x14, 0xff, 0xd9, 0x8b, 0xf3, 0x6b, 0x50, 0xe1, 0xa7, 0xa4, 0x5b, 0x62, 0xb4,
0xae, 0x24, 0x69, 0x89, 0x13, 0x34, 0xe1, 0x70, 0x97, 0x01, 0x34, 0xb1, 0x08, 0x5d, 0x81, 0x96,
0x8f, 0x47, 0xb6, 0x35, 0x30, 0x74, 0x77, 0xec, 0xf4, 0xb1, 0xdf, 0x2d, 0x2f, 0x2b, 0xd7, 0xcb,
0x5a, 0x53, 0x40, 0xb7, 0x19, 0x50, 0xfd, 0xa5, 0x02, 0x5d, 0x0d, 0xdb, 0xd8, 0x20, 0xf8, 0x49,
0x6e, 0x76, 0x11, 0x2a, 0xae, 0x67, 0xe2, 0xad, 0x0d, 0xb6, 0xd9, 0xa2, 0x26, 0x46, 0xea, 0x0f,
0x0a, 0x5c, 0x11, 0x4f, 0xb9, 0x5d, 0xc7, 0x94, 0x55, 0xfe, 0x74, 0x94, 0x55, 0x91, 0x29, 0xeb,
0x4f, 0x13, 0x65, 0x3d, 0xed, 0x02, 0x99, 0x28, 0xb4, 0x9c, 0x50, 0xe8, 0xb7, 0x61, 0x69, 0xdd,
0xc7, 0x46, 0x80, 0xdf, 0xa1, 0x41, 0x63, 0xfd, 0xc0, 0x70, 0x5d, 0x6c, 0x87, 0x5b, 0x48, 0x13,
0x57, 0x24, 0xc4, 0xbb, 0x30, 0x3f, 0xf2, 0xbd, 0x47, 0x47, 0x11, 0xdf, 0xe1, 0x50, 0xfd, 0x9d,
0x02, 0x3d, 0x19, 0xee, 0xb3, 0xf8, 0x97, 0xcb, 0xd0, 0x14, 0xd1, 0x8f, 0x63, 0x63, 0x34, 0x6b,
0x5a, 0xe3, 0x61, 0x8c, 0x02, 0xba, 0x05, 0x17, 0xf9, 0x24, 0x1f, 0x93, 0xb1, 0x1d, 0x44, 0x73,
0x8b, 0x6c, 0x2e, 0x62, 0xff, 0x34, 0xf6, 0x4b, 0xac, 0x50, 0x7f, 0xaf, 0xc0, 0xd2, 0x26, 0x0e,
0x22, 0x25, 0x52, 0xaa, 0xf8, 0x29, 0x75, 0xd9, 0x9f, 0x28, 0xd0, 0x93, 0xf1, 0x7a, 0x16, 0xb1,
0x3e, 0x80, 0xc5, 0x88, 0x86, 0x6e, 0x62, 0x32, 0xf0, 0xad, 0x11, 0x33, 0x66, 0xe6, 0xc0, 0xeb,
0xab, 0x97, 0x57, 0xb2, 0x09, 0xc6, 0x4a, 0x9a, 0x83, 0x4b, 0x11, 0x8a, 0x8d, 0x18, 0x06, 0xf5,
0x47, 0x0a, 0x5c, 0xda, 0xc4, 0xc1, 0x2e, 0x1e, 0x3a, 0xd8, 0x0d, 0xb6, 0xdc, 0x7d, 0xef, 0xf4,
0x72, 0x7d, 0x1e, 0x80, 0x08, 0x3c, 0x51, 0x70, 0x89, 0x41, 0x66, 0x91, 0x31, 0xcb, 0x65, 0xd2,
0xfc, 0x9c, 0x45, 0x76, 0x5f, 0x86, 0xb2, 0xe5, 0xee, 0x7b, 0xa1, 0xa8, 0x5e, 0x90, 0x89, 0x2a,
0x4e, 0x8c, 0xcf, 0x56, 0x7f, 0xa6, 0x00, 0xda, 0xc4, 0x81, 0xc6, 0x1d, 0xca, 0x19, 0x6c, 0x2d,
0xbd, 0xe7, 0x82, 0xc4, 0xae, 0xae, 0x43, 0xe7, 0xd0, 0x0a, 0x0e, 0x74, 0x72, 0x60, 0xf8, 0xa6,
0x4e, 0x8f, 0x3e, 0x61, 0xb2, 0xa9, 0x6a, 0x2d, 0x0a, 0xdf, 0xa5, 0xe0, 0x6d, 0x0a, 0x55, 0xbf,
0xa7, 0xc0, 0x42, 0x82, 0xad, 0xb3, 0x88, 0xe6, 0x0d, 0xa8, 0x0a, 0x87, 0x79, 0xac, 0x74, 0x04,
0x31, 0x26, 0x9d, 0x68, 0x81, 0xea, 0x72, 0x35, 0x51, 0xd6, 0xee, 0x62, 0xc3, 0xc4, 0xfe, 0xf9,
0xca, 0x48, 0xfd, 0xa1, 0x02, 0xcf, 0x64, 0x08, 0x9e, 0x65, 0xf7, 0x5f, 0x85, 0x0a, 0x93, 0x77,
0xb8, 0xf7, 0x97, 0xa4, 0x96, 0x11, 0x23, 0x77, 0xd7, 0x22, 0x81, 0x26, 0xd6, 0xa8, 0x1e, 0x74,
0xd2, 0xff, 0xd0, 0x8b, 0xd0, 0x10, 0xbe, 0x4c, 0x77, 0x0d, 0x87, 0x0b, 0xa0, 0xa6, 0xd5, 0x05,
0x6c, 0xdb, 0x70, 0x30, 0x5a, 0x82, 0x2a, 0x55, 0xaf, 0x6e, 0x99, 0xe1, 0xf9, 0x98, 0x67, 0x9e,
0xde, 0x24, 0xe8, 0x39, 0x00, 0xf6, 0xcb, 0x30, 0x4d, 0x9f, 0x67, 0x5b, 0x35, 0xad, 0x46, 0x21,
0xb7, 0x29, 0x40, 0xfd, 0x77, 0x01, 0x16, 0x6f, 0x9b, 0xa6, 0x2c, 0x0e, 0x9c, 0x5c, 0xe0, 0x93,
0x70, 0x53, 0x88, 0x87, 0x9b, 0x99, 0x9c, 0x60, 0xc6, 0xc7, 0x97, 0x4e, 0xe0, 0xe3, 0xcb, 0x79,
0x3e, 0x1e, 0x6d, 0x42, 0x93, 0x60, 0xfc, 0x81, 0x3e, 0xf2, 0x08, 0x73, 0x52, 0x2c, 0xa4, 0xd7,
0x57, 0xd5, 0xe4, 0x6e, 0xa2, 0xc2, 0xe8, 0x1e, 0x19, 0xee, 0x88, 0x99, 0x5a, 0x83, 0x2e, 0x0c,
0x47, 0xe8, 0x3e, 0x2c, 0x0e, 0x6d, 0xaf, 0x6f, 0xd8, 0x3a, 0xc1, 0x86, 0x8d, 0x4d, 0x5d, 0x38,
0x20, 0xd2, 0x9d, 0x9f, 0xcd, 0x03, 0x5c, 0xe4, 0xcb, 0x77, 0xd9, 0x6a, 0xf1, 0x83, 0xa8, 0x7f,
0x57, 0x60, 0x49, 0xc3, 0x8e, 0xf7, 0x21, 0xfe, 0x5f, 0x55, 0x81, 0xfa, 0x53, 0x05, 0x1a, 0x34,
0x7b, 0xbc, 0x87, 0x03, 0x76, 0xda, 0xd1, 0xeb, 0x50, 0xb3, 0x3d, 0xc3, 0xd4, 0x83, 0xa3, 0x11,
0xdf, 0x5a, 0x2b, 0xbd, 0x35, 0x2e, 0x3d, 0xba, 0x68, 0xef, 0x68, 0x84, 0xb5, 0xaa, 0x2d, 0xbe,
0x66, 0x72, 0x7b, 0xe9, 0x70, 0x5a, 0x94, 0x55, 0x40, 0x45, 0x58, 0xfc, 0xa6, 0x11, 0x0c, 0x0e,
0x36, 0x1c, 0xc1, 0x26, 0x79, 0x32, 0x32, 0x9f, 0x25, 0x8b, 0x8b, 0x62, 0x4d, 0x59, 0x66, 0x69,
0xb4, 0x6c, 0x5f, 0x79, 0x57, 0xa8, 0x21, 0x16, 0x6b, 0x62, 0xd9, 0x70, 0xe5, 0x34, 0xd9, 0xf0,
0x3a, 0x34, 0xf1, 0xa3, 0x81, 0x3d, 0xa6, 0x6e, 0x85, 0x51, 0xe7, 0x76, 0xfe, 0xbc, 0x84, 0x7a,
0xdc, 0xcc, 0x1b, 0x62, 0xd1, 0x96, 0xe0, 0x81, 0xab, 0xda, 0xc1, 0x81, 0xd1, 0xad, 0x32, 0x36,
0x96, 0xf3, 0x54, 0x1d, 0xda, 0x07, 0x57, 0x37, 0x1d, 0xa9, 0xff, 0x51, 0x60, 0x89, 0xab, 0x09,
0xdb, 0x81, 0xf1, 0x64, 0x35, 0x15, 0x69, 0xa1, 0x74, 0x42, 0x2d, 0xc4, 0x24, 0x50, 0x3b, 0xb1,
0x04, 0x7e, 0x51, 0x82, 0xb6, 0x10, 0x2f, 0x9d, 0xc1, 0xce, 0xcf, 0xb3, 0x50, 0x8b, 0xb2, 0x1f,
0x91, 0x9d, 0x4f, 0x00, 0x68, 0x19, 0xea, 0x31, 0xeb, 0x11, 0x1b, 0x8d, 0x83, 0x66, 0xda, 0x6d,
0x98, 0xcb, 0x96, 0x62, 0xb9, 0xec, 0x73, 0x00, 0xfb, 0xf6, 0x98, 0x1c, 0xe8, 0x81, 0xe5, 0x60,
0x51, 0x51, 0xd4, 0x18, 0x64, 0xcf, 0x72, 0x30, 0xba, 0x0d, 0x8d, 0xbe, 0xe5, 0xda, 0xde, 0x50,
0x1f, 0x19, 0xc1, 0x01, 0xe9, 0x56, 0x72, 0xed, 0xe5, 0x8e, 0x85, 0x6d, 0x73, 0x8d, 0xcd, 0xd5,
0xea, 0x7c, 0xcd, 0x0e, 0x5d, 0x82, 0x9e, 0x87, 0xba, 0x3b, 0x76, 0x74, 0x6f, 0x5f, 0xf7, 0xbd,
0x43, 0x6a, 0x71, 0x8c, 0x84, 0x3b, 0x76, 0xde, 0xde, 0xd7, 0xbc, 0x43, 0x1a, 0x5c, 0x6b, 0x34,
0xcc, 0x12, 0xdb, 0x1b, 0x92, 0x6e, 0x75, 0x26, 0xfc, 0x93, 0x05, 0x74, 0xb5, 0x49, 0xed, 0x88,
0xad, 0xae, 0xcd, 0xb6, 0x3a, 0x5a, 0x80, 0xae, 0x42, 0x6b, 0xe0, 0x39, 0x23, 0x83, 0x49, 0xe8,
0x8e, 0xef, 0x39, 0x5d, 0x60, 0x67, 0x35, 0x05, 0x45, 0xeb, 0x50, 0xb7, 0x5c, 0x13, 0x3f, 0x12,
0xa7, 0xa6, 0xce, 0xe8, 0xa8, 0x32, 0x95, 0x33, 0x42, 0x5b, 0x74, 0x2e, 0x53, 0x3a, 0x58, 0xe1,
0x27, 0xa1, 0x31, 0x5f, 0x68, 0x54, 0x27, 0xd6, 0x63, 0xdc, 0x6d, 0x70, 0x2d, 0x0a, 0xd8, 0xae,
0xf5, 0x18, 0xab, 0x7f, 0x28, 0x40, 0x2b, 0x89, 0x81, 0x56, 0x65, 0xfb, 0x0c, 0x12, 0x9a, 0x45,
0x38, 0xa4, 0xf8, 0xb0, 0x6b, 0xf4, 0x6d, 0x7a, 0x96, 0x4d, 0xfc, 0x88, 0x59, 0x45, 0x55, 0xab,
0x73, 0x18, 0x43, 0x40, 0xb5, 0xcb, 0xf9, 0x66, 0x49, 0x06, 0xaf, 0x9a, 0x6a, 0x0c, 0xc2, 0x52,
0x8c, 0x2e, 0xcc, 0x73, 0xfe, 0x42, 0x9b, 0x08, 0x87, 0xf4, 0x4f, 0x7f, 0x6c, 0x31, 0xaa, 0xdc,
0x26, 0xc2, 0x21, 0xda, 0x80, 0x06, 0x47, 0x39, 0x32, 0x7c, 0xc3, 0x09, 0x2d, 0xe2, 0x45, 0xe9,
0x41, 0x7d, 0x0b, 0x1f, 0xbd, 0x6b, 0xd8, 0x63, 0xbc, 0x63, 0x58, 0xbe, 0xc6, 0x25, 0xb8, 0xc3,
0x56, 0xd1, 0x34, 0x96, 0x63, 0xd9, 0xb7, 0x6c, 0x2c, 0x6c, 0x6b, 0x9e, 0xe5, 0x31, 0x2d, 0x06,
0xbf, 0x63, 0xd9, 0x98, 0x9b, 0x4f, 0xb4, 0x05, 0x26, 0xb3, 0x2a, 0xb7, 0x1e, 0x06, 0x61, 0x12,
0xfb, 0x67, 0x01, 0x16, 0xe8, 0x21, 0x0a, 0x83, 0xef, 0xe9, 0xfd, 0xc8, 0x73, 0x00, 0x26, 0x09,
0xf4, 0x84, 0x2f, 0xa9, 0x99, 0x24, 0xd8, 0xe6, 0xee, 0xe4, 0xf5, 0xd0, 0x55, 0x14, 0xf3, 0xeb,
0xa8, 0xd4, 0xa1, 0xce, 0x3a, 0xed, 0x53, 0xf5, 0x9b, 0x2e, 0x43, 0x93, 0x78, 0x63, 0x7f, 0x80,
0xf5, 0x44, 0xdd, 0xdf, 0xe0, 0xc0, 0x6d, 0xb9, 0xb7, 0xab, 0x48, 0xfb, 0x5e, 0x31, 0xb7, 0x35,
0x7f, 0x62, 0xb7, 0xf5, 0x37, 0x05, 0x16, 0x45, 0x8f, 0xe4, 0xec, 0xd2, 0xce, 0xf3, 0xda, 0xa1,
0x8f, 0x2a, 0x1e, 0x53, 0x6f, 0x97, 0x66, 0x88, 0xb9, 0x65, 0x49, 0xcc, 0x4d, 0xd6, 0x9c, 0x95,
0x74, 0xcd, 0xa9, 0x7e, 0xa4, 0x40, 0x73, 0x17, 0x1b, 0xfe, 0xe0, 0x20, 0xdc, 0xd7, 0x57, 0xa0,
0xe8, 0xe3, 0x87, 0x62, 0x5b, 0x2f, 0xe5, 0xe4, 0x97, 0x89, 0x25, 0x1a, 0x5d, 0x80, 0x5e, 0x80,
0xba, 0xe9, 0xd8, 0xa9, 0xd6, 0x06, 0x98, 0x8e, 0x1d, 0x66, 0x5c, 0x49, 0x56, 0x8a, 0x19, 0x56,
0x3e, 0x56, 0xa0, 0xf1, 0x0e, 0x4f, 0xbb, 0x38, 0x27, 0xaf, 0xc5, 0x39, 0xb9, 0x9a, 0xc3, 0x89,
0x86, 0x03, 0xdf, 0xc2, 0x1f, 0xe2, 0x4f, 0x97, 0x97, 0x9f, 0x28, 0xb0, 0xf8, 0xa6, 0xe1, 0x9a,
0xde, 0xfe, 0xfe, 0xd9, 0xf5, 0xbe, 0x1e, 0x39, 0xc1, 0xad, 0x93, 0x94, 0xda, 0x89, 0x45, 0xea,
0x47, 0x05, 0x40, 0xd4, 0x48, 0xd7, 0x0c, 0xdb, 0x70, 0x07, 0xf8, 0xf4, 0xdc, 0x5c, 0x81, 0x56,
0xe2, 0x68, 0x45, 0xd7, 0x06, 0xf1, 0xb3, 0x45, 0xd0, 0x5b, 0xd0, 0xea, 0x73, 0x52, 0xba, 0x8f,
0x0d, 0xe2, 0xb9, 0xcc, 0x3c, 0x5b, 0xf2, 0x3a, 0x70, 0xcf, 0xb7, 0x86, 0x43, 0xec, 0xaf, 0x7b,
0xae, 0xc9, 0x6b, 0x8e, 0x66, 0x3f, 0x64, 0x93, 0x2e, 0x65, 0xfa, 0x88, 0xfc, 0x4c, 0x98, 0x1c,
0x42, 0xe4, 0x68, 0x08, 0x7a, 0x19, 0x2e, 0x24, 0xcb, 0x91, 0x89, 0x3d, 0x77, 0x48, 0xbc, 0xd2,
0xa0, 0xca, 0xf9, 0x0e, 0xa0, 0x28, 0xdd, 0x65, 0x59, 0x15, 0x0b, 0x1a, 0xb3, 0xb4, 0xfb, 0x9e,
0x85, 0x9a, 0x19, 0xae, 0x14, 0x56, 0x31, 0x01, 0x50, 0xa7, 0xc3, 0x39, 0xd4, 0xe9, 0xf9, 0xc7,
0x66, 0x98, 0x50, 0x70, 0xe0, 0x5d, 0x06, 0x53, 0x3f, 0x29, 0x40, 0x27, 0x5e, 0xe2, 0xcc, 0x4c,
0xfb, 0x7c, 0x9a, 0x7f, 0xc7, 0xd4, 0x73, 0xa5, 0x33, 0xd4, 0x73, 0xd9, 0x7a, 0xb3, 0x7c, 0xba,
0x7a, 0x53, 0xfd, 0x95, 0x02, 0xed, 0x54, 0xaf, 0x2d, 0x9d, 0xda, 0x29, 0xd9, 0xd4, 0xee, 0x35,
0x28, 0xd3, 0x7c, 0x07, 0x33, 0x21, 0xb5, 0xe4, 0x69, 0x47, 0x12, 0xab, 0xc6, 0x17, 0xa0, 0x9b,
0xb0, 0x20, 0xb9, 0x9f, 0x11, 0xaa, 0x44, 0xd9, 0xeb, 0x19, 0xf5, 0x8f, 0x25, 0xa8, 0xc7, 0xe4,
0x31, 0x25, 0x2b, 0x9d, 0xa5, 0x70, 0x4b, 0x6d, 0xaf, 0x98, 0xdd, 0x5e, 0xce, 0x05, 0x05, 0x5a,
0x82, 0xaa, 0x83, 0x1d, 0x1e, 0xf6, 0x45, 0x0e, 0xe2, 0x60, 0x87, 0x06, 0x7d, 0xd6, 0x1a, 0x19,
0x3b, 0x3c, 0x9f, 0xe4, 0x81, 0x6e, 0xde, 0x1d, 0x3b, 0x2c, 0x9b, 0x4c, 0x66, 0x3c, 0xf3, 0xc7,
0x64, 0x3c, 0xd5, 0x64, 0xc6, 0x93, 0x38, 0x0e, 0xb5, 0xf4, 0x71, 0x98, 0x35, 0x51, 0xbc, 0x05,
0x0b, 0x03, 0xd6, 0x28, 0x37, 0xd7, 0x8e, 0xd6, 0xa3, 0x5f, 0xdd, 0x3a, 0x4b, 0xcd, 0x64, 0xbf,
0xd0, 0x1d, 0x6a, 0x5c, 0x22, 0x2b, 0x64, 0x5a, 0x6e, 0x30, 0x2d, 0xcb, 0x13, 0x2a, 0xa1, 0x1b,
0xae, 0xe4, 0xd0, 0x27, 0xb2, 0x51, 0x3a, 0x45, 0x6d, 0x9e, 0x2a, 0x45, 0x7d, 0x01, 0xea, 0xe1,
0x6d, 0x89, 0x65, 0x92, 0x6e, 0x8b, 0xfb, 0x26, 0x01, 0xda, 0x32, 0x49, 0xa2, 0x29, 0xd5, 0x4e,
0x34, 0xa5, 0xd4, 0x3f, 0x17, 0xa1, 0x35, 0xc9, 0x61, 0x66, 0x76, 0x05, 0xb3, 0xdc, 0x33, 0x6e,
0x43, 0x67, 0xd2, 0xd4, 0x66, 0x52, 0x3a, 0x36, 0x0d, 0x4b, 0xb7, 0xb3, 0xdb, 0xa3, 0xd4, 0x99,
0x4b, 0x34, 0x2b, 0x4a, 0x27, 0x6a, 0x56, 0x9c, 0xf1, 0x3a, 0xea, 0x55, 0xb8, 0xe4, 0xf3, 0x14,
0xca, 0xd4, 0x13, 0xdb, 0xe6, 0xd9, 0xc8, 0xc5, 0xf0, 0xe7, 0x4e, 0x7c, 0xfb, 0x39, 0xc7, 0x78,
0x3e, 0xef, 0x18, 0xa7, 0xd5, 0x58, 0xcd, 0xa8, 0x31, 0x7b, 0x2b, 0x56, 0x93, 0xdd, 0x8a, 0xfd,
0x55, 0x81, 0x7a, 0xac, 0xa5, 0x4b, 0xcf, 0x48, 0x88, 0x24, 0x72, 0x07, 0x11, 0x60, 0x26, 0x77,
0x70, 0x19, 0x9a, 0x13, 0x4d, 0x52, 0xde, 0x32, 0x8d, 0x1c, 0x93, 0xfa, 0xdb, 0x16, 0x6f, 0x6f,
0x47, 0x2d, 0x67, 0xee, 0xbe, 0x97, 0x73, 0xdb, 0xae, 0x82, 0x49, 0xad, 0x49, 0x62, 0xa3, 0xa4,
0xb5, 0x96, 0x93, 0xd6, 0xfa, 0x63, 0x05, 0x1a, 0xf1, 0xa5, 0xa8, 0x07, 0x55, 0x9b, 0x35, 0x68,
0xa3, 0xad, 0x45, 0x63, 0x2a, 0x4f, 0xfe, 0xcd, 0x3a, 0xae, 0x61, 0x0a, 0xc5, 0x41, 0xb7, 0x4d,
0xd3, 0x47, 0x57, 0xa1, 0x6d, 0x3a, 0x7a, 0xa2, 0xa3, 0xcb, 0xa3, 0x54, 0x33, 0x72, 0x21, 0x99,
0x9e, 0x6e, 0x29, 0xc9, 0xd0, 0x7d, 0x58, 0xb8, 0xef, 0x92, 0x71, 0x9f, 0x0c, 0x7c, 0xab, 0x8f,
0xc3, 0xb6, 0xc8, 0x4c, 0x47, 0xa8, 0x07, 0x55, 0x41, 0x9a, 0x1f, 0x9f, 0x9a, 0x16, 0x8d, 0xd5,
0xef, 0x2b, 0xb0, 0x98, 0xc5, 0xcb, 0xb4, 0x39, 0x71, 0xbc, 0x4a, 0xc2, 0xf1, 0x7e, 0x0b, 0x16,
0x26, 0xe8, 0xf5, 0x04, 0xe6, 0xfa, 0xea, 0x35, 0x99, 0x0e, 0x24, 0x8c, 0x6b, 0x68, 0x82, 0x23,
0x84, 0xa9, 0xff, 0x52, 0xe0, 0x82, 0x70, 0x61, 0x14, 0x36, 0x64, 0x0d, 0x25, 0x6a, 0x13, 0x9e,
0x6b, 0x5b, 0x6e, 0x54, 0xdf, 0x88, 0x3d, 0x72, 0xa0, 0xa8, 0x6f, 0xde, 0x84, 0xb6, 0x98, 0x14,
0xc5, 0xf4, 0x19, 0x53, 0xc7, 0x16, 0x5f, 0x17, 0x45, 0xf3, 0x2b, 0xd0, 0xf2, 0xf6, 0xf7, 0xe3,
0xf4, 0x78, 0x50, 0x6a, 0x0a, 0xa8, 0x20, 0xf8, 0x0d, 0xe8, 0x84, 0xd3, 0x4e, 0x9a, 0x45, 0xb4,
0xc5, 0xc2, 0xa8, 0x21, 0xfc, 0xb1, 0x02, 0xdd, 0x64, 0x4e, 0x11, 0xdb, 0xfe, 0xc9, 0xb3, 0xd6,
0x37, 0x92, 0xf7, 0x54, 0x57, 0x8e, 0xe1, 0x67, 0x42, 0x47, 0x14, 0xa3, 0x37, 0x1e, 0x43, 0x2b,
0xe9, 0x1f, 0x51, 0x03, 0xaa, 0xdb, 0x5e, 0xf0, 0xf5, 0x47, 0x16, 0x09, 0x3a, 0x73, 0xa8, 0x05,
0xb0, 0xed, 0x05, 0x3b, 0x3e, 0x26, 0xd8, 0x0d, 0x3a, 0x0a, 0x02, 0xa8, 0xbc, 0xed, 0x6e, 0x58,
0xe4, 0x83, 0x4e, 0x01, 0x2d, 0x88, 0xf4, 0xc5, 0xb0, 0xb7, 0x84, 0xd3, 0xe9, 0x14, 0xe9, 0xf2,
0x68, 0x54, 0x42, 0x1d, 0x68, 0x44, 0x53, 0x36, 0x77, 0xee, 0x77, 0xca, 0xa8, 0x06, 0x65, 0xfe,
0x59, 0xb9, 0x61, 0x42, 0x27, 0x9d, 0x1d, 0x53, 0x9c, 0xf7, 0xdd, 0xb7, 0x5c, 0xef, 0x30, 0x02,
0x75, 0xe6, 0x50, 0x1d, 0xe6, 0x45, 0xc5, 0xd1, 0x51, 0x50, 0x1b, 0xea, 0xb1, 0x64, 0xbf, 0x53,
0xa0, 0x80, 0x4d, 0x7f, 0x34, 0x10, 0x69, 0x3f, 0x67, 0x81, 0x6a, 0x6d, 0xc3, 0x3b, 0x74, 0x3b,
0xa5, 0x1b, 0x6b, 0x50, 0x0d, 0x1d, 0x37, 0x9d, 0xca, 0xb1, 0xbb, 0x74, 0xd8, 0x99, 0x43, 0x17,
0xa0, 0x99, 0x78, 0xf5, 0xd0, 0x51, 0x10, 0x82, 0x56, 0xf2, 0x45, 0x4a, 0xa7, 0xb0, 0xfa, 0xf3,
0x26, 0x00, 0xcf, 0x6c, 0x3d, 0xcf, 0x37, 0xd1, 0x88, 0xdd, 0xf0, 0xd1, 0xa8, 0xed, 0xb9, 0x61,
0xc4, 0x25, 0xe8, 0x56, 0x4e, 0x02, 0x98, 0x9d, 0x2a, 0x58, 0xed, 0xe5, 0x15, 0x6e, 0xa9, 0xe9,
0xea, 0x1c, 0x72, 0x18, 0xc5, 0x3d, 0xcb, 0xc1, 0x7b, 0xd6, 0xe0, 0x83, 0x28, 0x25, 0xce, 0xa7,
0x98, 0x9a, 0x1a, 0x52, 0x4c, 0x05, 0x48, 0x31, 0xd8, 0x0d, 0x7c, 0xcb, 0x1d, 0x86, 0x97, 0x62,
0xea, 0x1c, 0x7a, 0x08, 0x17, 0x37, 0x31, 0xa3, 0x6e, 0x91, 0xc0, 0x1a, 0x90, 0x90, 0xe0, 0x6a,
0x3e, 0xc1, 0xcc, 0xe4, 0x13, 0x92, 0xb4, 0xa1, 0x9d, 0x7a, 0x01, 0x86, 0x6e, 0xc8, 0x1d, 0xbc,
0xec, 0xb5, 0x5a, 0xef, 0xe5, 0x99, 0xe6, 0x46, 0xd4, 0x2c, 0x68, 0x25, 0x5f, 0x47, 0xa1, 0xcf,
0xe7, 0x21, 0xc8, 0x3c, 0x00, 0xe9, 0xdd, 0x98, 0x65, 0x6a, 0x44, 0xea, 0x01, 0xb7, 0xa7, 0x69,
0xa4, 0xa4, 0x8f, 0x6f, 0x7a, 0xc7, 0xdd, 0x47, 0xaa, 0x73, 0xe8, 0x7d, 0xb8, 0x90, 0x79, 0xa6,
0x82, 0xbe, 0x20, 0xbf, 0x8a, 0x95, 0xbf, 0x66, 0x99, 0x46, 0xe1, 0x41, 0xfa, 0x34, 0xe4, 0x73,
0x9f, 0x79, 0xd6, 0x34, 0x3b, 0xf7, 0x31, 0xf4, 0xc7, 0x71, 0x7f, 0x62, 0x0a, 0x63, 0x40, 0xd9,
0x87, 0x2a, 0xe8, 0x15, 0x19, 0x89, 0xdc, 0xc7, 0x32, 0xbd, 0x95, 0x59, 0xa7, 0x47, 0x2a, 0x1f,
0xb3, 0xd3, 0x9a, 0x2e, 0xed, 0xa4, 0x64, 0x73, 0x1f, 0xa7, 0xc8, 0xc9, 0xe6, 0xbf, 0x0f, 0xe1,
0x46, 0x9d, 0x7c, 0xff, 0x20, 0xd7, 0x95, 0xf4, 0xcd, 0x86, 0xdc, 0xa8, 0xe5, 0xcf, 0x29, 0xd4,
0x39, 0xb4, 0x97, 0x70, 0xc2, 0xe8, 0x6a, 0x9e, 0x4d, 0x24, 0x5b, 0x32, 0xd3, 0xd4, 0xa5, 0x03,
0x6c, 0xe2, 0xe0, 0x1e, 0x0e, 0x7c, 0x6b, 0x40, 0xd2, 0x48, 0xc5, 0x60, 0x32, 0x21, 0x44, 0x7a,
0x6d, 0xea, 0xbc, 0x88, 0xed, 0xf7, 0xa1, 0x1e, 0x7b, 0x03, 0x21, 0x67, 0x3b, 0xfb, 0x76, 0xa3,
0x77, 0x6d, 0xea, 0xbc, 0xb8, 0x1b, 0x4b, 0xbd, 0x35, 0x40, 0xb9, 0x92, 0xcd, 0xbe, 0x80, 0x90,
0xbb, 0xb1, 0x9c, 0xc7, 0x0b, 0xea, 0xdc, 0xea, 0x5f, 0xea, 0x50, 0x63, 0x36, 0x48, 0xe3, 0xdd,
0xff, 0xc3, 0xd2, 0x39, 0x84, 0xa5, 0xf7, 0xa0, 0x9d, 0x7a, 0x3b, 0x21, 0xd7, 0xa7, 0xfc, 0x81,
0xc5, 0x34, 0x83, 0xef, 0x03, 0xca, 0xbe, 0x0c, 0x90, 0x3b, 0x8a, 0xdc, 0x17, 0x04, 0xd3, 0x68,
0xbc, 0x07, 0xed, 0xd4, 0x35, 0xb8, 0x7c, 0x07, 0xf2, 0xbb, 0xf2, 0x19, 0x76, 0x90, 0xbd, 0xbd,
0x95, 0xef, 0x20, 0xf7, 0x96, 0x77, 0x1a, 0x8d, 0x77, 0xf9, 0xe3, 0x82, 0x28, 0x65, 0xbf, 0x96,
0xe7, 0x6d, 0x52, 0xfd, 0xe8, 0x27, 0x1f, 0x7f, 0xce, 0x3f, 0x3e, 0xbf, 0x07, 0xed, 0xd4, 0x25,
0x8c, 0x5c, 0xbb, 0xf2, 0x9b, 0x9a, 0x69, 0xd8, 0x3f, 0xc3, 0x88, 0xb2, 0x0b, 0x15, 0x7e, 0x73,
0x82, 0x5e, 0x94, 0x17, 0x30, 0xb1, 0x5b, 0x95, 0xde, 0xb4, 0xbb, 0x17, 0x32, 0xb6, 0x03, 0xc2,
0x90, 0x96, 0xd9, 0x89, 0x41, 0xd2, 0x5e, 0x41, 0xfc, 0x46, 0xa5, 0x37, 0xfd, 0x12, 0x25, 0x44,
0x7a, 0xde, 0x51, 0x6a, 0xed, 0x4b, 0x0f, 0x56, 0x87, 0x56, 0x70, 0x30, 0xee, 0x53, 0x7d, 0xdc,
0xe4, 0x33, 0x5f, 0xb1, 0x3c, 0xf1, 0x75, 0x33, 0x64, 0xed, 0x26, 0xc3, 0x74, 0x93, 0xed, 0x65,
0xd4, 0xef, 0x57, 0xd8, 0xf0, 0xd5, 0xff, 0x06, 0x00, 0x00, 0xff, 0xff, 0x6e, 0x40, 0x04, 0x6c,
0x46, 0x32, 0x00, 0x00,
}
// Reference imports to suppress errors if they are not otherwise used.
@ -3860,8 +3860,8 @@ type QueryNodeClient interface {
ReleasePartitions(ctx context.Context, in *ReleasePartitionsRequest, opts ...grpc.CallOption) (*commonpb.Status, error)
ReleaseSegments(ctx context.Context, in *ReleaseSegmentsRequest, opts ...grpc.CallOption) (*commonpb.Status, error)
GetSegmentInfo(ctx context.Context, in *GetSegmentInfoRequest, opts ...grpc.CallOption) (*GetSegmentInfoResponse, error)
Search(ctx context.Context, in *SearchRequest, opts ...grpc.CallOption) (*milvuspb.SearchResults, error)
Query(ctx context.Context, in *QueryRequest, opts ...grpc.CallOption) (*milvuspb.QueryResults, error)
Search(ctx context.Context, in *SearchRequest, opts ...grpc.CallOption) (*internalpb.SearchResults, error)
Query(ctx context.Context, in *QueryRequest, opts ...grpc.CallOption) (*internalpb.RetrieveResults, error)
// https://wiki.lfaidata.foundation/display/MIL/MEP+8+--+Add+metrics+for+proxy
GetMetrics(ctx context.Context, in *milvuspb.GetMetricsRequest, opts ...grpc.CallOption) (*milvuspb.GetMetricsResponse, error)
}
@ -3982,8 +3982,8 @@ func (c *queryNodeClient) GetSegmentInfo(ctx context.Context, in *GetSegmentInfo
return out, nil
}
func (c *queryNodeClient) Search(ctx context.Context, in *SearchRequest, opts ...grpc.CallOption) (*milvuspb.SearchResults, error) {
out := new(milvuspb.SearchResults)
func (c *queryNodeClient) Search(ctx context.Context, in *SearchRequest, opts ...grpc.CallOption) (*internalpb.SearchResults, error) {
out := new(internalpb.SearchResults)
err := c.cc.Invoke(ctx, "/milvus.proto.query.QueryNode/Search", in, out, opts...)
if err != nil {
return nil, err
@ -3991,8 +3991,8 @@ func (c *queryNodeClient) Search(ctx context.Context, in *SearchRequest, opts ..
return out, nil
}
func (c *queryNodeClient) Query(ctx context.Context, in *QueryRequest, opts ...grpc.CallOption) (*milvuspb.QueryResults, error) {
out := new(milvuspb.QueryResults)
func (c *queryNodeClient) Query(ctx context.Context, in *QueryRequest, opts ...grpc.CallOption) (*internalpb.RetrieveResults, error) {
out := new(internalpb.RetrieveResults)
err := c.cc.Invoke(ctx, "/milvus.proto.query.QueryNode/Query", in, out, opts...)
if err != nil {
return nil, err
@ -4023,8 +4023,8 @@ type QueryNodeServer interface {
ReleasePartitions(context.Context, *ReleasePartitionsRequest) (*commonpb.Status, error)
ReleaseSegments(context.Context, *ReleaseSegmentsRequest) (*commonpb.Status, error)
GetSegmentInfo(context.Context, *GetSegmentInfoRequest) (*GetSegmentInfoResponse, error)
Search(context.Context, *SearchRequest) (*milvuspb.SearchResults, error)
Query(context.Context, *QueryRequest) (*milvuspb.QueryResults, error)
Search(context.Context, *SearchRequest) (*internalpb.SearchResults, error)
Query(context.Context, *QueryRequest) (*internalpb.RetrieveResults, error)
// https://wiki.lfaidata.foundation/display/MIL/MEP+8+--+Add+metrics+for+proxy
GetMetrics(context.Context, *milvuspb.GetMetricsRequest) (*milvuspb.GetMetricsResponse, error)
}
@ -4069,10 +4069,10 @@ func (*UnimplementedQueryNodeServer) ReleaseSegments(ctx context.Context, req *R
func (*UnimplementedQueryNodeServer) GetSegmentInfo(ctx context.Context, req *GetSegmentInfoRequest) (*GetSegmentInfoResponse, error) {
return nil, status.Errorf(codes.Unimplemented, "method GetSegmentInfo not implemented")
}
func (*UnimplementedQueryNodeServer) Search(ctx context.Context, req *SearchRequest) (*milvuspb.SearchResults, error) {
func (*UnimplementedQueryNodeServer) Search(ctx context.Context, req *SearchRequest) (*internalpb.SearchResults, error) {
return nil, status.Errorf(codes.Unimplemented, "method Search not implemented")
}
func (*UnimplementedQueryNodeServer) Query(ctx context.Context, req *QueryRequest) (*milvuspb.QueryResults, error) {
func (*UnimplementedQueryNodeServer) Query(ctx context.Context, req *QueryRequest) (*internalpb.RetrieveResults, error) {
return nil, status.Errorf(codes.Unimplemented, "method Query not implemented")
}
func (*UnimplementedQueryNodeServer) GetMetrics(ctx context.Context, req *milvuspb.GetMetricsRequest) (*milvuspb.GetMetricsResponse, error) {

View File

@ -158,10 +158,10 @@ func (client *queryNodeClientMock) GetMetrics(ctx context.Context, req *milvuspb
return client.grpcClient.GetMetrics(ctx, req)
}
func (client *queryNodeClientMock) Search(ctx context.Context, req *querypb.SearchRequest) (*milvuspb.SearchResults, error) {
func (client *queryNodeClientMock) Search(ctx context.Context, req *querypb.SearchRequest) (*internalpb.SearchResults, error) {
return client.grpcClient.Search(ctx, req)
}
func (client *queryNodeClientMock) Query(ctx context.Context, req *querypb.QueryRequest) (*milvuspb.QueryResults, error) {
func (client *queryNodeClientMock) Query(ctx context.Context, req *querypb.QueryRequest) (*internalpb.RetrieveResults, error) {
return client.grpcClient.Query(ctx, req)
}

View File

@ -556,12 +556,12 @@ func (node *QueryNode) isHealthy() bool {
}
// Search performs replica search tasks.
func (node *QueryNode) Search(ctx context.Context, req *queryPb.SearchRequest) (*milvuspb.SearchResults, error) {
func (node *QueryNode) Search(ctx context.Context, req *queryPb.SearchRequest) (*internalpb.SearchResults, error) {
return nil, errors.New("not implemented")
}
// Query performs replica query tasks.
func (node *QueryNode) Query(ctx context.Context, req *queryPb.QueryRequest) (*milvuspb.QueryResults, error) {
func (node *QueryNode) Query(ctx context.Context, req *queryPb.QueryRequest) (*internalpb.RetrieveResults, error) {
return nil, errors.New("not implemented")
}

View File

@ -19,6 +19,8 @@ package types
import (
"context"
clientv3 "go.etcd.io/etcd/client/v3"
"github.com/milvus-io/milvus/internal/proto/commonpb"
"github.com/milvus-io/milvus/internal/proto/datapb"
"github.com/milvus-io/milvus/internal/proto/indexpb"
@ -29,7 +31,6 @@ import (
"github.com/milvus-io/milvus/internal/proto/rootcoordpb"
"github.com/milvus-io/milvus/internal/util/sessionutil"
"github.com/milvus-io/milvus/internal/util/typeutil"
clientv3 "go.etcd.io/etcd/client/v3"
)
// TimeTickProvider is the interface all services implement
@ -1132,8 +1133,8 @@ type QueryNode interface {
ReleaseSegments(ctx context.Context, req *querypb.ReleaseSegmentsRequest) (*commonpb.Status, error)
GetSegmentInfo(ctx context.Context, req *querypb.GetSegmentInfoRequest) (*querypb.GetSegmentInfoResponse, error)
Search(ctx context.Context, req *querypb.SearchRequest) (*milvuspb.SearchResults, error)
Query(ctx context.Context, req *querypb.QueryRequest) (*milvuspb.QueryResults, error)
Search(ctx context.Context, req *querypb.SearchRequest) (*internalpb.SearchResults, error)
Query(ctx context.Context, req *querypb.QueryRequest) (*internalpb.RetrieveResults, error)
// GetMetrics gets the metrics about QueryNode.
GetMetrics(ctx context.Context, req *milvuspb.GetMetricsRequest) (*milvuspb.GetMetricsResponse, error)

View File

@ -78,13 +78,14 @@ func (m *QueryNodeClient) GetSegmentInfo(ctx context.Context, in *querypb.GetSeg
return &querypb.GetSegmentInfoResponse{}, m.Err
}
func (m *QueryNodeClient) Search(ctx context.Context, in *querypb.SearchRequest, opts ...grpc.CallOption) (*milvuspb.SearchResults, error) {
return &milvuspb.SearchResults{}, m.Err
func (m *QueryNodeClient) Search(ctx context.Context, in *querypb.SearchRequest, opts ...grpc.CallOption) (*internalpb.SearchResults, error) {
return &internalpb.SearchResults{}, m.Err
}
func (m *QueryNodeClient) Query(ctx context.Context, in *querypb.QueryRequest, opts ...grpc.CallOption) (*milvuspb.QueryResults, error) {
return &milvuspb.QueryResults{}, m.Err
func (m *QueryNodeClient) Query(ctx context.Context, in *querypb.QueryRequest, opts ...grpc.CallOption) (*internalpb.RetrieveResults, error) {
return &internalpb.RetrieveResults{}, m.Err
}
func (m *QueryNodeClient) GetMetrics(ctx context.Context, in *milvuspb.GetMetricsRequest, opts ...grpc.CallOption) (*milvuspb.GetMetricsResponse, error) {
return &milvuspb.GetMetricsResponse{}, m.Err
}