diff --git a/internal/indexbuilder/task.go b/internal/indexbuilder/task.go index a7c62df725..15647e1563 100644 --- a/internal/indexbuilder/task.go +++ b/internal/indexbuilder/task.go @@ -239,7 +239,7 @@ func (it *IndexBuildTask) Execute() error { } } - if !fOk || !bOk { + if !fOk && !bOk { return errors.New("we expect FloatVectorFieldData or BinaryVectorFieldData") } diff --git a/internal/proto/internal_msg.proto b/internal/proto/internal_msg.proto index 6dbfb48353..a516a076aa 100644 --- a/internal/proto/internal_msg.proto +++ b/internal/proto/internal_msg.proto @@ -342,7 +342,6 @@ message DescribeIndexRequest { int64 proxyID = 4; string collection_name = 5; string field_name = 6; - repeated common.KeyValuePair extra_params = 7; } message DescribeIndexProgressRequest { @@ -352,5 +351,4 @@ message DescribeIndexProgressRequest { int64 proxyID = 4; string collection_name = 5; string field_name = 6; - repeated common.KeyValuePair extra_params = 7; } diff --git a/internal/proto/internalpb/internal_msg.pb.go b/internal/proto/internalpb/internal_msg.pb.go index d290d5e274..a9caa5497c 100644 --- a/internal/proto/internalpb/internal_msg.pb.go +++ b/internal/proto/internalpb/internal_msg.pb.go @@ -2461,16 +2461,15 @@ func (m *CreateIndexRequest) GetExtraParams() []*commonpb.KeyValuePair { } type DescribeIndexRequest struct { - MsgType MsgType `protobuf:"varint,1,opt,name=msg_type,json=msgType,proto3,enum=milvus.proto.internal.MsgType" json:"msg_type,omitempty"` - ReqID int64 `protobuf:"varint,2,opt,name=reqID,proto3" json:"reqID,omitempty"` - Timestamp uint64 `protobuf:"varint,3,opt,name=timestamp,proto3" json:"timestamp,omitempty"` - ProxyID int64 `protobuf:"varint,4,opt,name=proxyID,proto3" json:"proxyID,omitempty"` - CollectionName string `protobuf:"bytes,5,opt,name=collection_name,json=collectionName,proto3" json:"collection_name,omitempty"` - FieldName string `protobuf:"bytes,6,opt,name=field_name,json=fieldName,proto3" json:"field_name,omitempty"` - ExtraParams []*commonpb.KeyValuePair `protobuf:"bytes,7,rep,name=extra_params,json=extraParams,proto3" json:"extra_params,omitempty"` - XXX_NoUnkeyedLiteral struct{} `json:"-"` - XXX_unrecognized []byte `json:"-"` - XXX_sizecache int32 `json:"-"` + MsgType MsgType `protobuf:"varint,1,opt,name=msg_type,json=msgType,proto3,enum=milvus.proto.internal.MsgType" json:"msg_type,omitempty"` + ReqID int64 `protobuf:"varint,2,opt,name=reqID,proto3" json:"reqID,omitempty"` + Timestamp uint64 `protobuf:"varint,3,opt,name=timestamp,proto3" json:"timestamp,omitempty"` + ProxyID int64 `protobuf:"varint,4,opt,name=proxyID,proto3" json:"proxyID,omitempty"` + CollectionName string `protobuf:"bytes,5,opt,name=collection_name,json=collectionName,proto3" json:"collection_name,omitempty"` + FieldName string `protobuf:"bytes,6,opt,name=field_name,json=fieldName,proto3" json:"field_name,omitempty"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` } func (m *DescribeIndexRequest) Reset() { *m = DescribeIndexRequest{} } @@ -2540,24 +2539,16 @@ func (m *DescribeIndexRequest) GetFieldName() string { return "" } -func (m *DescribeIndexRequest) GetExtraParams() []*commonpb.KeyValuePair { - if m != nil { - return m.ExtraParams - } - return nil -} - type DescribeIndexProgressRequest struct { - MsgType MsgType `protobuf:"varint,1,opt,name=msg_type,json=msgType,proto3,enum=milvus.proto.internal.MsgType" json:"msg_type,omitempty"` - ReqID int64 `protobuf:"varint,2,opt,name=reqID,proto3" json:"reqID,omitempty"` - Timestamp uint64 `protobuf:"varint,3,opt,name=timestamp,proto3" json:"timestamp,omitempty"` - ProxyID int64 `protobuf:"varint,4,opt,name=proxyID,proto3" json:"proxyID,omitempty"` - CollectionName string `protobuf:"bytes,5,opt,name=collection_name,json=collectionName,proto3" json:"collection_name,omitempty"` - FieldName string `protobuf:"bytes,6,opt,name=field_name,json=fieldName,proto3" json:"field_name,omitempty"` - ExtraParams []*commonpb.KeyValuePair `protobuf:"bytes,7,rep,name=extra_params,json=extraParams,proto3" json:"extra_params,omitempty"` - XXX_NoUnkeyedLiteral struct{} `json:"-"` - XXX_unrecognized []byte `json:"-"` - XXX_sizecache int32 `json:"-"` + MsgType MsgType `protobuf:"varint,1,opt,name=msg_type,json=msgType,proto3,enum=milvus.proto.internal.MsgType" json:"msg_type,omitempty"` + ReqID int64 `protobuf:"varint,2,opt,name=reqID,proto3" json:"reqID,omitempty"` + Timestamp uint64 `protobuf:"varint,3,opt,name=timestamp,proto3" json:"timestamp,omitempty"` + ProxyID int64 `protobuf:"varint,4,opt,name=proxyID,proto3" json:"proxyID,omitempty"` + CollectionName string `protobuf:"bytes,5,opt,name=collection_name,json=collectionName,proto3" json:"collection_name,omitempty"` + FieldName string `protobuf:"bytes,6,opt,name=field_name,json=fieldName,proto3" json:"field_name,omitempty"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` } func (m *DescribeIndexProgressRequest) Reset() { *m = DescribeIndexProgressRequest{} } @@ -2627,13 +2618,6 @@ func (m *DescribeIndexProgressRequest) GetFieldName() string { return "" } -func (m *DescribeIndexProgressRequest) GetExtraParams() []*commonpb.KeyValuePair { - if m != nil { - return m.ExtraParams - } - return nil -} - func init() { proto.RegisterEnum("milvus.proto.internal.MsgType", MsgType_name, MsgType_value) proto.RegisterEnum("milvus.proto.internal.PeerRole", PeerRole_name, PeerRole_value) @@ -2677,122 +2661,122 @@ func init() { func init() { proto.RegisterFile("internal_msg.proto", fileDescriptor_7eb37f6b80b23116) } var fileDescriptor_7eb37f6b80b23116 = []byte{ - // 1867 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xec, 0x59, 0xcd, 0x6f, 0x24, 0x47, - 0x15, 0x4f, 0x77, 0xcf, 0x87, 0xe7, 0xcd, 0x78, 0xdc, 0x5b, 0xb6, 0x77, 0x67, 0xb3, 0x21, 0xeb, - 0xed, 0x45, 0xc4, 0x04, 0x61, 0x83, 0x97, 0x03, 0xb9, 0x81, 0x3d, 0x0a, 0x19, 0x16, 0xaf, 0x4c, - 0xdb, 0x0a, 0x12, 0x8a, 0xd4, 0x6a, 0xcf, 0x3c, 0xcf, 0x94, 0xfa, 0x6b, 0x5c, 0xd5, 0xb3, 0xf6, - 0xec, 0x81, 0x0b, 0x7b, 0x46, 0x7c, 0x88, 0x03, 0x37, 0xee, 0x90, 0x88, 0x80, 0xf8, 0x1f, 0x08, - 0x1f, 0x42, 0xe2, 0xbf, 0x80, 0x03, 0x48, 0x24, 0x1c, 0xb8, 0xa1, 0xaa, 0xea, 0x8f, 0x69, 0x7b, - 0x66, 0x6c, 0xc5, 0xde, 0xb0, 0x51, 0xf6, 0xd6, 0xf5, 0xba, 0xba, 0xea, 0xbd, 0xdf, 0x7b, 0xef, - 0x57, 0xf5, 0x5e, 0x03, 0xa1, 0x61, 0x8c, 0x2c, 0x74, 0x7d, 0x27, 0xe0, 0xfd, 0x8d, 0x21, 0x8b, - 0xe2, 0x88, 0xac, 0x06, 0xd4, 0x7f, 0x3c, 0xe2, 0x6a, 0xb4, 0x91, 0x4e, 0x78, 0xb9, 0xd1, 0x8d, - 0x82, 0x20, 0x0a, 0x95, 0xf8, 0xe5, 0x1b, 0x1c, 0xd9, 0x63, 0xda, 0xc5, 0xfc, 0x3b, 0x2b, 0x84, - 0x5a, 0xa7, 0x6d, 0xe3, 0xf1, 0x08, 0x79, 0x4c, 0x6e, 0x42, 0x65, 0x88, 0xc8, 0x3a, 0xed, 0x96, - 0xb6, 0xa6, 0xad, 0x1b, 0x76, 0x32, 0x22, 0x0f, 0xa0, 0xc4, 0x22, 0x1f, 0x5b, 0xfa, 0x9a, 0xb6, - 0xde, 0xdc, 0xba, 0xbb, 0x31, 0x75, 0xaf, 0x8d, 0x3d, 0x44, 0x66, 0x47, 0x3e, 0xda, 0x72, 0x32, - 0x59, 0x81, 0x72, 0x37, 0x1a, 0x85, 0x71, 0xcb, 0x58, 0xd3, 0xd6, 0x17, 0x6d, 0x35, 0xb0, 0xfa, - 0x00, 0x62, 0x3f, 0x3e, 0x8c, 0x42, 0x8e, 0xe4, 0x01, 0x54, 0x78, 0xec, 0xc6, 0x23, 0x2e, 0x37, - 0xac, 0x6f, 0xdd, 0x29, 0x2e, 0x9d, 0x28, 0xbf, 0x2f, 0xa7, 0xd8, 0xc9, 0x54, 0xd2, 0x04, 0xbd, - 0xd3, 0x96, 0xba, 0x18, 0xb6, 0xde, 0x69, 0xcf, 0xd8, 0x28, 0x02, 0x38, 0xe0, 0xd1, 0x27, 0x68, - 0xd9, 0x63, 0xa8, 0xcb, 0x0d, 0xaf, 0x62, 0xda, 0x2b, 0x50, 0x8b, 0x69, 0x80, 0x3c, 0x76, 0x83, - 0xa1, 0xd4, 0xa9, 0x64, 0xe7, 0x82, 0x19, 0xfb, 0x3e, 0xd5, 0xa0, 0xb1, 0x8f, 0xfd, 0xdc, 0x8b, - 0xd9, 0x34, 0x6d, 0x62, 0x9a, 0x58, 0xba, 0x3b, 0x70, 0xc3, 0x10, 0xfd, 0x04, 0xbc, 0xb2, 0x9d, - 0x0b, 0xc8, 0x1d, 0xa8, 0x75, 0x23, 0xdf, 0x77, 0x42, 0x37, 0x40, 0xb9, 0x7c, 0xcd, 0x5e, 0x10, - 0x82, 0x47, 0x6e, 0x80, 0xe4, 0x3e, 0x2c, 0x0e, 0x5d, 0x16, 0xd3, 0x98, 0x46, 0xa1, 0x13, 0xbb, - 0xfd, 0x56, 0x49, 0x4e, 0x68, 0x64, 0xc2, 0x03, 0xb7, 0x6f, 0xbd, 0xa7, 0x01, 0xf9, 0x26, 0xe7, - 0xb4, 0x1f, 0x16, 0x94, 0xb9, 0x56, 0xe0, 0x1f, 0xc2, 0xd2, 0x10, 0x99, 0x93, 0xa8, 0xed, 0x30, - 0x3c, 0x6e, 0x19, 0x6b, 0xc6, 0x7a, 0x7d, 0xeb, 0xfe, 0x8c, 0xef, 0x27, 0x55, 0xb1, 0x17, 0x87, - 0xc8, 0x76, 0xd4, 0xa7, 0x36, 0x1e, 0x5b, 0x1f, 0x6a, 0xb0, 0x24, 0xdf, 0x2b, 0xad, 0x03, 0x0c, - 0x25, 0x74, 0x5c, 0x88, 0x12, 0x65, 0xd5, 0xe0, 0x02, 0xe8, 0xa6, 0x7a, 0xa5, 0x08, 0x68, 0xe9, - 0x22, 0x40, 0xcb, 0xe7, 0x01, 0x25, 0x77, 0xa1, 0x8e, 0xa7, 0x43, 0xca, 0xd0, 0x11, 0x11, 0xd0, - 0xaa, 0xc8, 0x68, 0x00, 0x25, 0x3a, 0xa0, 0xc1, 0x64, 0x84, 0x55, 0x2f, 0x1d, 0x61, 0x16, 0x87, - 0xe5, 0x82, 0x97, 0x92, 0x68, 0x7d, 0x07, 0x6e, 0x4e, 0x22, 0xeb, 0x66, 0x90, 0xb4, 0x34, 0x09, - 0xf0, 0x17, 0xe6, 0x01, 0x9c, 0x03, 0x68, 0xaf, 0xe4, 0x18, 0xe7, 0x52, 0xeb, 0xbf, 0x1a, 0xdc, - 0xda, 0x61, 0xe8, 0xc6, 0xb8, 0x13, 0xf9, 0x3e, 0x76, 0x85, 0x89, 0x69, 0x80, 0xbc, 0x01, 0x0b, - 0x01, 0xef, 0x3b, 0xf1, 0x78, 0x88, 0x12, 0xf5, 0xe6, 0xd6, 0xab, 0x33, 0xf6, 0xda, 0xe5, 0xfd, - 0x83, 0xf1, 0x10, 0xed, 0x6a, 0xa0, 0x1e, 0x88, 0x05, 0x8d, 0x6e, 0xb6, 0x5e, 0x46, 0x09, 0x05, - 0x99, 0xf0, 0x0e, 0xc3, 0xe3, 0x4e, 0x5b, 0x7a, 0xc7, 0xb0, 0xd5, 0xa0, 0x98, 0x67, 0xa5, 0xb3, - 0x79, 0xd6, 0x82, 0xea, 0x90, 0x45, 0xa7, 0xe3, 0x4e, 0x5b, 0x3a, 0xc6, 0xb0, 0xd3, 0x21, 0xf9, - 0x2a, 0x54, 0x78, 0x77, 0x80, 0x81, 0x2b, 0xdd, 0x51, 0xdf, 0xba, 0x3d, 0x15, 0xf2, 0x6d, 0x3f, - 0x3a, 0xb4, 0x93, 0x89, 0xd6, 0xcf, 0x74, 0x58, 0x6d, 0xb3, 0x68, 0xf8, 0x29, 0xb7, 0x7c, 0x17, - 0x96, 0xf2, 0xd5, 0x55, 0x54, 0x2b, 0x08, 0x3e, 0x5f, 0xd4, 0x39, 0x39, 0x61, 0x36, 0x72, 0x73, - 0x45, 0xc4, 0xdb, 0xcd, 0x6e, 0x61, 0x6c, 0xfd, 0x53, 0x83, 0x95, 0xb7, 0x5c, 0x7e, 0xad, 0xa0, - 0x64, 0x06, 0xeb, 0x33, 0x0d, 0x36, 0xe6, 0x18, 0x5c, 0xba, 0xd0, 0xe0, 0xf2, 0x15, 0x0c, 0xfe, - 0x50, 0x83, 0xdb, 0x6d, 0xe4, 0x5d, 0x46, 0x0f, 0xf1, 0xb3, 0x63, 0xf5, 0x2f, 0x35, 0x58, 0xdd, - 0x1f, 0x44, 0x27, 0xcf, 0xaf, 0xc5, 0xd6, 0xef, 0x74, 0xb8, 0xa9, 0xb8, 0x69, 0x2f, 0x65, 0xdf, - 0x4f, 0x28, 0x41, 0xd7, 0xa0, 0x9e, 0x11, 0x7e, 0x96, 0xa6, 0x93, 0xa2, 0xdc, 0xd2, 0xd2, 0x4c, - 0x4b, 0xcb, 0x73, 0x2c, 0xad, 0x14, 0x7d, 0xfb, 0x6d, 0x68, 0xe6, 0xa7, 0x8e, 0x74, 0xad, 0x3a, - 0x37, 0xee, 0x4f, 0x77, 0x6d, 0x06, 0x87, 0xf4, 0x6c, 0x7e, 0x60, 0x49, 0xc7, 0xbe, 0xaf, 0xc3, - 0x8a, 0x60, 0xb5, 0x17, 0x98, 0x5d, 0x1e, 0xb3, 0x7f, 0x68, 0xb0, 0xfc, 0x96, 0xcb, 0xaf, 0x13, - 0xb2, 0xeb, 0x4d, 0xfe, 0xf3, 0xc6, 0x96, 0x3f, 0xb6, 0xb1, 0xff, 0xd2, 0xa0, 0x95, 0xf2, 0xdd, - 0x67, 0xc3, 0x62, 0x71, 0xa4, 0x09, 0xae, 0x7b, 0x7e, 0xad, 0xbd, 0x66, 0x72, 0xff, 0xb7, 0x0e, - 0x8b, 0x9d, 0x90, 0x23, 0x8b, 0x9f, 0x99, 0xa5, 0xaf, 0x9d, 0xd7, 0x58, 0x15, 0x27, 0x67, 0x74, - 0xb9, 0x54, 0x89, 0x22, 0x70, 0xe3, 0xd8, 0x17, 0x37, 0xd2, 0xec, 0x7e, 0x93, 0x0b, 0x8a, 0xb7, - 0x7c, 0x45, 0x03, 0x13, 0xb7, 0xfc, 0x09, 0x54, 0xab, 0x45, 0x54, 0x5f, 0x05, 0xc8, 0xc0, 0xe7, - 0xad, 0x85, 0x35, 0x43, 0x5c, 0xd3, 0x73, 0x89, 0xa8, 0x80, 0x58, 0x74, 0xd2, 0x69, 0xf3, 0x56, - 0x6d, 0xcd, 0x10, 0x15, 0x90, 0x1a, 0x91, 0xaf, 0xc1, 0x02, 0x8b, 0x4e, 0x9c, 0x9e, 0x1b, 0xbb, - 0x2d, 0x90, 0x97, 0xec, 0x39, 0xb7, 0xc9, 0x2a, 0x8b, 0x4e, 0xda, 0x6e, 0xec, 0x5a, 0x4f, 0x75, - 0x58, 0x6c, 0xa3, 0x8f, 0x31, 0xfe, 0xff, 0x41, 0x2f, 0x20, 0x56, 0x9a, 0x83, 0x58, 0x79, 0x1e, - 0x62, 0x95, 0x73, 0x88, 0xdd, 0x83, 0xc6, 0x90, 0xd1, 0xc0, 0x65, 0x63, 0xc7, 0xc3, 0xb1, 0x28, - 0x6f, 0x0c, 0xc9, 0xf2, 0x4a, 0xf6, 0x10, 0xc7, 0xdc, 0xfa, 0x48, 0x83, 0xc5, 0x7d, 0x74, 0x59, - 0x77, 0xf0, 0xcc, 0x60, 0x98, 0xd0, 0xdf, 0x28, 0xea, 0x3f, 0xff, 0x0e, 0xfd, 0x45, 0x30, 0x19, - 0xf2, 0x91, 0x1f, 0x3b, 0x39, 0x38, 0x0a, 0x80, 0x25, 0x25, 0xdf, 0xc9, 0x20, 0xda, 0x84, 0xf2, - 0xf1, 0x08, 0xd9, 0xf8, 0xe2, 0x6a, 0x42, 0xcd, 0xb3, 0xfe, 0xa6, 0x81, 0xb9, 0x3f, 0xe6, 0x3b, - 0x51, 0x78, 0x44, 0xfb, 0xcf, 0x9d, 0xe5, 0x04, 0x4a, 0xd2, 0x5f, 0xe5, 0x35, 0x63, 0xbd, 0x66, - 0xcb, 0x67, 0xe1, 0x4b, 0x0f, 0xc7, 0xce, 0x90, 0xe1, 0x11, 0x3d, 0x45, 0xe5, 0xed, 0x9a, 0x5d, - 0xf7, 0x70, 0xbc, 0x97, 0x88, 0xac, 0xbf, 0xea, 0xd0, 0x48, 0x7d, 0x29, 0xf0, 0xb9, 0x8a, 0x41, - 0x79, 0x4d, 0xac, 0x5f, 0xbe, 0xeb, 0x32, 0xbd, 0x52, 0x9a, 0xcd, 0xa3, 0xf7, 0xa0, 0x21, 0xdd, - 0xe1, 0x84, 0x51, 0x0f, 0x33, 0xef, 0xd6, 0xa5, 0xec, 0x91, 0x14, 0x15, 0x81, 0xaa, 0x5c, 0x26, - 0x44, 0xaa, 0xd3, 0x43, 0x84, 0x40, 0x69, 0x40, 0x63, 0xc5, 0x2b, 0x0d, 0x5b, 0x3e, 0x93, 0xbb, - 0x50, 0x0f, 0x30, 0x66, 0xb4, 0xab, 0x20, 0xaa, 0xc9, 0xe4, 0x04, 0x25, 0x12, 0x28, 0x58, 0x3f, - 0x80, 0xfa, 0x01, 0x0d, 0xf0, 0x80, 0x76, 0xbd, 0x5d, 0xde, 0xbf, 0x0a, 0x9e, 0x79, 0xfb, 0x46, - 0x2f, 0xb4, 0x6f, 0xe6, 0x1e, 0x41, 0xd6, 0x07, 0x1a, 0x2c, 0xbc, 0xe9, 0x8f, 0xf8, 0xe0, 0x8a, - 0xbb, 0x17, 0x08, 0x5b, 0x9f, 0x42, 0xd8, 0x73, 0x8e, 0xc1, 0xb3, 0xb7, 0xc9, 0xd2, 0x94, 0xdb, - 0xa4, 0x05, 0x85, 0x03, 0x62, 0x5a, 0x1b, 0xc6, 0xfa, 0x85, 0x06, 0xd5, 0x87, 0x38, 0xde, 0xda, - 0xc7, 0xbe, 0x0c, 0x14, 0x41, 0xde, 0x69, 0x7b, 0x48, 0x0e, 0x84, 0x3b, 0x26, 0xe8, 0x2a, 0xd1, - 0x13, 0x72, 0xb6, 0xba, 0x40, 0xd1, 0xdb, 0xb0, 0x40, 0xb9, 0xf3, 0xd8, 0xf5, 0x69, 0x4f, 0x2a, - 0xb9, 0x60, 0x57, 0x29, 0x7f, 0x5b, 0x0c, 0x05, 0x51, 0x66, 0xe6, 0xaa, 0xb4, 0x32, 0xec, 0x09, - 0x89, 0xf5, 0x0e, 0x40, 0xa2, 0x9a, 0x00, 0x3a, 0x0b, 0x63, 0x6d, 0x32, 0x8c, 0xbf, 0x0e, 0x55, - 0x0f, 0xc7, 0x5b, 0x1c, 0xfb, 0x2d, 0x5d, 0x9e, 0x32, 0xb3, 0xd0, 0x4f, 0x56, 0xb2, 0xd3, 0xe9, - 0xd6, 0x0f, 0x75, 0xa8, 0x7d, 0x27, 0x72, 0x7b, 0x9d, 0xb0, 0x87, 0xa7, 0xcf, 0xd4, 0x8d, 0x47, - 0x14, 0xfd, 0xde, 0xa3, 0xfc, 0xa0, 0xc9, 0x05, 0x22, 0x0b, 0xe5, 0x20, 0xcf, 0xc2, 0x64, 0x28, - 0x60, 0xa7, 0x42, 0x33, 0x67, 0xe8, 0xc6, 0x83, 0x94, 0x74, 0x40, 0x8a, 0xf6, 0x84, 0x84, 0xb4, - 0xa1, 0x91, 0x4e, 0x60, 0x6e, 0xa0, 0xa8, 0xa7, 0xbe, 0x75, 0x6f, 0x2a, 0x23, 0x3c, 0xc4, 0xf1, - 0xdb, 0xae, 0x3f, 0xc2, 0x3d, 0x97, 0x32, 0xbb, 0x9e, 0x2c, 0x22, 0xbe, 0xb2, 0x9e, 0x6a, 0x00, - 0x12, 0x01, 0x41, 0x1a, 0xe7, 0x17, 0xd5, 0x3e, 0xce, 0xa2, 0xe4, 0x2b, 0xb0, 0x12, 0x8e, 0x02, - 0x87, 0xa1, 0xef, 0xc6, 0xd8, 0x73, 0x12, 0x30, 0x78, 0x02, 0x0e, 0x09, 0x47, 0x81, 0xad, 0x5e, - 0xed, 0x27, 0x6f, 0xac, 0x1f, 0x69, 0x00, 0x6f, 0x0a, 0xcb, 0x95, 0x1a, 0x67, 0xa3, 0x5b, 0x9b, - 0x12, 0xdd, 0x13, 0xd0, 0xe9, 0x45, 0xe8, 0xb6, 0x53, 0xe8, 0x04, 0x01, 0xf2, 0xa4, 0x87, 0x7a, - 0x6f, 0x86, 0x3b, 0x73, 0xe3, 0x13, 0x74, 0xe5, 0xb3, 0xf5, 0x73, 0xd5, 0x76, 0x16, 0xda, 0x29, - 0x95, 0x0a, 0x5e, 0xd6, 0xce, 0x7a, 0x59, 0x72, 0x56, 0x10, 0xb1, 0xb1, 0xc3, 0xe9, 0x13, 0x4c, - 0x93, 0x44, 0x89, 0xf6, 0xe9, 0x13, 0x14, 0x69, 0x20, 0x21, 0x89, 0x4e, 0x78, 0x7a, 0xea, 0x08, - 0x18, 0xa2, 0x13, 0x4e, 0xbe, 0x04, 0x37, 0x18, 0x76, 0x31, 0x8c, 0xfd, 0xb1, 0x13, 0x44, 0x3d, - 0x7a, 0x44, 0x31, 0x4d, 0x15, 0x33, 0x7d, 0xb1, 0x9b, 0xc8, 0xad, 0xbf, 0x6b, 0xd0, 0xfc, 0x6e, - 0xca, 0xc4, 0x4a, 0xb3, 0x67, 0xc0, 0x7f, 0xdf, 0x90, 0xc6, 0x16, 0xf0, 0x9b, 0xd3, 0x83, 0xce, - 0x40, 0xb2, 0x17, 0x38, 0xf6, 0x95, 0x52, 0xdb, 0x50, 0x97, 0xee, 0x48, 0xd6, 0x28, 0xcd, 0xf5, - 0x41, 0xee, 0x79, 0x1b, 0x8e, 0xb2, 0x67, 0xeb, 0x57, 0x3a, 0x10, 0xd5, 0xbb, 0x90, 0x4e, 0x7a, - 0xee, 0x0a, 0x8e, 0xd7, 0xa6, 0x17, 0x1c, 0xe7, 0x6f, 0x92, 0x9f, 0x03, 0x65, 0x56, 0xde, 0x58, - 0x2c, 0x90, 0x40, 0x1b, 0x1a, 0x78, 0x1a, 0x33, 0x37, 0x4d, 0xba, 0xea, 0xa5, 0x93, 0x4e, 0x7e, - 0x96, 0x64, 0xf2, 0xbb, 0x3a, 0xac, 0xa4, 0x25, 0xe9, 0x0b, 0xbc, 0x2e, 0xc6, 0xeb, 0xf7, 0x3a, - 0xbc, 0x52, 0xc0, 0x6b, 0x8f, 0x45, 0x7d, 0x86, 0x9c, 0xbf, 0xc0, 0x6d, 0x1e, 0x6e, 0xaf, 0xff, - 0xc5, 0x80, 0x6a, 0x62, 0x30, 0xa9, 0x41, 0xd9, 0x7b, 0x14, 0x85, 0x68, 0xbe, 0x44, 0x56, 0xe1, - 0x86, 0x77, 0xf6, 0x27, 0x88, 0xd9, 0x23, 0xcb, 0xb0, 0xe4, 0x15, 0xff, 0x0f, 0x98, 0x48, 0x08, - 0x34, 0xbd, 0x42, 0x7b, 0xdc, 0x3c, 0x22, 0xb7, 0x60, 0xd9, 0x3b, 0xdf, 0x41, 0x36, 0xc5, 0xb9, - 0x6f, 0x7a, 0xc5, 0x26, 0x2b, 0x37, 0x07, 0x72, 0x89, 0x6f, 0x61, 0x9c, 0x55, 0x0b, 0xdc, 0xa4, - 0x64, 0x15, 0x4c, 0xef, 0x4c, 0xaf, 0xd3, 0xfc, 0x83, 0x46, 0x96, 0xa1, 0xe9, 0x15, 0x9a, 0x79, - 0xe6, 0x07, 0x1a, 0x21, 0xb0, 0xe8, 0x4d, 0x76, 0xab, 0xcc, 0x3f, 0x6a, 0xe4, 0x16, 0x10, 0xef, - 0x5c, 0x53, 0xc7, 0xfc, 0x93, 0x46, 0x56, 0x60, 0xc9, 0x2b, 0xf4, 0x3e, 0xb8, 0xf9, 0x67, 0x8d, - 0xdc, 0x80, 0x86, 0x37, 0x41, 0x4f, 0xe6, 0xaf, 0x75, 0xb5, 0xd5, 0x64, 0x4c, 0x99, 0xef, 0xea, - 0xe4, 0x0e, 0xdc, 0xf4, 0xa6, 0x06, 0x9a, 0xf9, 0x9e, 0x4e, 0x1a, 0x50, 0xf5, 0x54, 0x97, 0xc1, - 0xfc, 0xb1, 0x21, 0x47, 0xaa, 0xfc, 0x35, 0x7f, 0x62, 0x90, 0x3a, 0x54, 0x3c, 0x79, 0xcf, 0x34, - 0x7f, 0xaa, 0x5e, 0xa9, 0x32, 0xc2, 0xfc, 0xc8, 0x90, 0xea, 0x4f, 0x16, 0x15, 0xe6, 0x7f, 0x0c, - 0xd2, 0x84, 0x9a, 0x97, 0xde, 0x8b, 0xcd, 0xdf, 0xd4, 0xa4, 0xd6, 0xc5, 0xa3, 0xc2, 0x7c, 0xbf, - 0x46, 0x96, 0x00, 0xbc, 0xec, 0xda, 0x63, 0xfe, 0xb6, 0xf6, 0xfa, 0x1b, 0xb0, 0x90, 0xfe, 0x87, - 0x24, 0x00, 0x95, 0x5d, 0x97, 0xc7, 0xc8, 0xcc, 0x97, 0xc4, 0xb3, 0x8d, 0x6e, 0x0f, 0x99, 0xa9, - 0x89, 0xe7, 0xef, 0x31, 0x2a, 0xe4, 0xba, 0xf0, 0xf9, 0x9e, 0x08, 0x4c, 0xd3, 0xd8, 0x6e, 0x7f, - 0x7f, 0xbb, 0x4f, 0xe3, 0xc1, 0xe8, 0x50, 0x44, 0xcd, 0xe6, 0x13, 0xea, 0xfb, 0xf4, 0x49, 0x8c, - 0xdd, 0xc1, 0xa6, 0x8a, 0xa8, 0x2f, 0xf7, 0x28, 0x8f, 0x19, 0x3d, 0x1c, 0xc5, 0xd8, 0xdb, 0x4c, - 0x93, 0x65, 0x53, 0x86, 0x59, 0x36, 0x1c, 0x1e, 0x1e, 0x56, 0xa4, 0xe4, 0xc1, 0xff, 0x02, 0x00, - 0x00, 0xff, 0xff, 0xc4, 0x5d, 0xb1, 0xba, 0xf8, 0x1f, 0x00, 0x00, + // 1863 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xec, 0x59, 0xcd, 0x6f, 0x23, 0x49, + 0x15, 0xdf, 0xee, 0xf6, 0x47, 0xfc, 0xec, 0x38, 0x3d, 0x95, 0x64, 0xc6, 0xb3, 0xb3, 0xec, 0x64, + 0x7a, 0x10, 0x1b, 0x16, 0x91, 0x40, 0x86, 0x03, 0x7b, 0x83, 0xc4, 0x5a, 0xd6, 0x0c, 0x19, 0x85, + 0x4e, 0xb4, 0x48, 0x68, 0xa5, 0x56, 0xc7, 0x7e, 0xb1, 0x4b, 0xfd, 0xe5, 0x54, 0xb5, 0x27, 0xf1, + 0x1c, 0xb8, 0x30, 0x67, 0xc4, 0x87, 0x38, 0x70, 0xe3, 0x0e, 0xac, 0x58, 0xf8, 0x27, 0x58, 0x3e, + 0x84, 0xc4, 0x3f, 0x81, 0xe0, 0x00, 0x12, 0xbb, 0x1c, 0xb8, 0xa1, 0xaa, 0xea, 0x0f, 0x77, 0x62, + 0x3b, 0xd1, 0x26, 0xb3, 0x0c, 0x3b, 0x7b, 0xab, 0x7a, 0xae, 0xae, 0x7a, 0xef, 0xf7, 0xde, 0xfb, + 0xd5, 0xab, 0x67, 0x20, 0x34, 0x8c, 0x91, 0x85, 0xae, 0xef, 0x04, 0xbc, 0xbf, 0x31, 0x64, 0x51, + 0x1c, 0x91, 0xd5, 0x80, 0xfa, 0x8f, 0x47, 0x5c, 0xcd, 0x36, 0xd2, 0x05, 0x2f, 0x37, 0xba, 0x51, + 0x10, 0x44, 0xa1, 0x12, 0xbf, 0x7c, 0x83, 0x23, 0x7b, 0x4c, 0xbb, 0x98, 0x7f, 0x67, 0x85, 0x50, + 0xeb, 0xb4, 0x6d, 0x3c, 0x1e, 0x21, 0x8f, 0xc9, 0x4d, 0xa8, 0x0c, 0x11, 0x59, 0xa7, 0xdd, 0xd2, + 0xd6, 0xb4, 0x75, 0xc3, 0x4e, 0x66, 0xe4, 0x01, 0x94, 0x58, 0xe4, 0x63, 0x4b, 0x5f, 0xd3, 0xd6, + 0x9b, 0x5b, 0x77, 0x37, 0xa6, 0x9e, 0xb5, 0xb1, 0x87, 0xc8, 0xec, 0xc8, 0x47, 0x5b, 0x2e, 0x26, + 0x2b, 0x50, 0xee, 0x46, 0xa3, 0x30, 0x6e, 0x19, 0x6b, 0xda, 0xfa, 0xa2, 0xad, 0x26, 0x56, 0x1f, + 0x40, 0x9c, 0xc7, 0x87, 0x51, 0xc8, 0x91, 0x3c, 0x80, 0x0a, 0x8f, 0xdd, 0x78, 0xc4, 0xe5, 0x81, + 0xf5, 0xad, 0x3b, 0xc5, 0xad, 0x13, 0xe5, 0xf7, 0xe5, 0x12, 0x3b, 0x59, 0x4a, 0x9a, 0xa0, 0x77, + 0xda, 0x52, 0x17, 0xc3, 0xd6, 0x3b, 0xed, 0x19, 0x07, 0x45, 0x00, 0x07, 0x3c, 0xfa, 0x18, 0x2d, + 0x7b, 0x0c, 0x75, 0x79, 0xe0, 0x55, 0x4c, 0x7b, 0x05, 0x6a, 0x31, 0x0d, 0x90, 0xc7, 0x6e, 0x30, + 0x94, 0x3a, 0x95, 0xec, 0x5c, 0x30, 0xe3, 0xdc, 0xa7, 0x1a, 0x34, 0xf6, 0xb1, 0x9f, 0x7b, 0x31, + 0x5b, 0xa6, 0x4d, 0x2c, 0x13, 0x5b, 0x77, 0x07, 0x6e, 0x18, 0xa2, 0x9f, 0x80, 0x57, 0xb6, 0x73, + 0x01, 0xb9, 0x03, 0xb5, 0x6e, 0xe4, 0xfb, 0x4e, 0xe8, 0x06, 0x28, 0xb7, 0xaf, 0xd9, 0x0b, 0x42, + 0xf0, 0xc8, 0x0d, 0x90, 0xdc, 0x87, 0xc5, 0xa1, 0xcb, 0x62, 0x1a, 0xd3, 0x28, 0x74, 0x62, 0xb7, + 0xdf, 0x2a, 0xc9, 0x05, 0x8d, 0x4c, 0x78, 0xe0, 0xf6, 0xad, 0x77, 0x35, 0x20, 0x5f, 0xe7, 0x9c, + 0xf6, 0xc3, 0x82, 0x32, 0xd7, 0x0a, 0xfc, 0x43, 0x58, 0x1a, 0x22, 0x73, 0x12, 0xb5, 0x1d, 0x86, + 0xc7, 0x2d, 0x63, 0xcd, 0x58, 0xaf, 0x6f, 0xdd, 0x9f, 0xf1, 0xfd, 0xa4, 0x2a, 0xf6, 0xe2, 0x10, + 0xd9, 0x8e, 0xfa, 0xd4, 0xc6, 0x63, 0xeb, 0x03, 0x0d, 0x96, 0xe4, 0xef, 0x4a, 0xeb, 0x00, 0x43, + 0x09, 0x1d, 0x17, 0xa2, 0x44, 0x59, 0x35, 0xb9, 0x00, 0xba, 0xa9, 0x5e, 0x29, 0x02, 0x5a, 0xba, + 0x08, 0xd0, 0xf2, 0x79, 0x40, 0xc9, 0x5d, 0xa8, 0xe3, 0xe9, 0x90, 0x32, 0x74, 0x44, 0x04, 0xb4, + 0x2a, 0x32, 0x1a, 0x40, 0x89, 0x0e, 0x68, 0x30, 0x19, 0x61, 0xd5, 0x4b, 0x47, 0x98, 0xc5, 0x61, + 0xb9, 0xe0, 0xa5, 0x24, 0x5a, 0xdf, 0x81, 0x9b, 0x93, 0xc8, 0xba, 0x19, 0x24, 0x2d, 0x4d, 0x02, + 0xfc, 0xb9, 0x79, 0x00, 0xe7, 0x00, 0xda, 0x2b, 0x39, 0xc6, 0xb9, 0xd4, 0xfa, 0x8f, 0x06, 0xb7, + 0x76, 0x18, 0xba, 0x31, 0xee, 0x44, 0xbe, 0x8f, 0x5d, 0x61, 0x62, 0x1a, 0x20, 0x6f, 0xc0, 0x42, + 0xc0, 0xfb, 0x4e, 0x3c, 0x1e, 0xa2, 0x44, 0xbd, 0xb9, 0xf5, 0xea, 0x8c, 0xb3, 0x76, 0x79, 0xff, + 0x60, 0x3c, 0x44, 0xbb, 0x1a, 0xa8, 0x01, 0xb1, 0xa0, 0xd1, 0xcd, 0xf6, 0xcb, 0x28, 0xa1, 0x20, + 0x13, 0xde, 0x61, 0x78, 0xdc, 0x69, 0x4b, 0xef, 0x18, 0xb6, 0x9a, 0x14, 0xf3, 0xac, 0x74, 0x36, + 0xcf, 0x5a, 0x50, 0x1d, 0xb2, 0xe8, 0x74, 0xdc, 0x69, 0x4b, 0xc7, 0x18, 0x76, 0x3a, 0x25, 0x5f, + 0x86, 0x0a, 0xef, 0x0e, 0x30, 0x70, 0xa5, 0x3b, 0xea, 0x5b, 0xb7, 0xa7, 0x42, 0xbe, 0xed, 0x47, + 0x87, 0x76, 0xb2, 0xd0, 0xfa, 0x89, 0x0e, 0xab, 0x6d, 0x16, 0x0d, 0xff, 0xcf, 0x2d, 0xdf, 0x85, + 0xa5, 0x7c, 0x77, 0x15, 0xd5, 0x0a, 0x82, 0xcf, 0x16, 0x75, 0x4e, 0x6e, 0x98, 0x8d, 0xdc, 0x5c, + 0x11, 0xf1, 0x76, 0xb3, 0x5b, 0x98, 0x5b, 0xff, 0xd0, 0x60, 0xe5, 0x2d, 0x97, 0x5f, 0x2b, 0x28, + 0x99, 0xc1, 0xfa, 0x4c, 0x83, 0x8d, 0x39, 0x06, 0x97, 0x2e, 0x34, 0xb8, 0x7c, 0x05, 0x83, 0x3f, + 0xd0, 0xe0, 0x76, 0x1b, 0x79, 0x97, 0xd1, 0x43, 0x7c, 0x71, 0xac, 0xfe, 0xb9, 0x06, 0xab, 0xfb, + 0x83, 0xe8, 0xe4, 0xf9, 0xb5, 0xd8, 0xfa, 0xad, 0x0e, 0x37, 0x15, 0x37, 0xed, 0xa5, 0xec, 0xfb, + 0x31, 0x25, 0xe8, 0x1a, 0xd4, 0x33, 0xc2, 0xcf, 0xd2, 0x74, 0x52, 0x94, 0x5b, 0x5a, 0x9a, 0x69, + 0x69, 0x79, 0x8e, 0xa5, 0x95, 0xa2, 0x6f, 0xbf, 0x09, 0xcd, 0xfc, 0xd6, 0x91, 0xae, 0x55, 0xf7, + 0xc6, 0xfd, 0xe9, 0xae, 0xcd, 0xe0, 0x90, 0x9e, 0xcd, 0x2f, 0x2c, 0xe9, 0xd8, 0xf7, 0x74, 0x58, + 0x11, 0xac, 0xf6, 0x29, 0x66, 0x97, 0xc7, 0xec, 0xef, 0x1a, 0x2c, 0xbf, 0xe5, 0xf2, 0xeb, 0x84, + 0xec, 0x7a, 0x93, 0xff, 0xbc, 0xb1, 0xe5, 0x8f, 0x6c, 0xec, 0x3f, 0x35, 0x68, 0xa5, 0x7c, 0xf7, + 0x62, 0x58, 0x2c, 0xae, 0x34, 0xc1, 0x75, 0xcf, 0xaf, 0xb5, 0xd7, 0x4c, 0xee, 0xff, 0xd2, 0x61, + 0xb1, 0x13, 0x72, 0x64, 0xf1, 0x33, 0xb3, 0xf4, 0xb5, 0xf3, 0x1a, 0xab, 0xc7, 0xc9, 0x19, 0x5d, + 0x2e, 0xf5, 0x44, 0x11, 0xb8, 0x71, 0xec, 0x8b, 0x8a, 0x34, 0xab, 0x6f, 0x72, 0x41, 0xb1, 0xca, + 0x57, 0x34, 0x30, 0x51, 0xe5, 0x4f, 0xa0, 0x5a, 0x2d, 0xa2, 0xfa, 0x2a, 0x40, 0x06, 0x3e, 0x6f, + 0x2d, 0xac, 0x19, 0xa2, 0x4c, 0xcf, 0x25, 0xe2, 0x05, 0xc4, 0xa2, 0x93, 0x4e, 0x9b, 0xb7, 0x6a, + 0x6b, 0x86, 0x78, 0x01, 0xa9, 0x19, 0xf9, 0x0a, 0x2c, 0xb0, 0xe8, 0xc4, 0xe9, 0xb9, 0xb1, 0xdb, + 0x02, 0x59, 0x64, 0xcf, 0xa9, 0x26, 0xab, 0x2c, 0x3a, 0x69, 0xbb, 0xb1, 0x6b, 0x3d, 0xd5, 0x61, + 0xb1, 0x8d, 0x3e, 0xc6, 0xf8, 0xbf, 0x07, 0xbd, 0x80, 0x58, 0x69, 0x0e, 0x62, 0xe5, 0x79, 0x88, + 0x55, 0xce, 0x21, 0x76, 0x0f, 0x1a, 0x43, 0x46, 0x03, 0x97, 0x8d, 0x1d, 0x0f, 0xc7, 0xe2, 0x79, + 0x63, 0x48, 0x96, 0x57, 0xb2, 0x87, 0x38, 0xe6, 0xd6, 0x87, 0x1a, 0x2c, 0xee, 0xa3, 0xcb, 0xba, + 0x83, 0x67, 0x06, 0xc3, 0x84, 0xfe, 0x46, 0x51, 0xff, 0xf9, 0x35, 0xf4, 0xe7, 0xc1, 0x64, 0xc8, + 0x47, 0x7e, 0xec, 0xe4, 0xe0, 0x28, 0x00, 0x96, 0x94, 0x7c, 0x27, 0x83, 0x68, 0x13, 0xca, 0xc7, + 0x23, 0x64, 0xe3, 0x8b, 0x5f, 0x13, 0x6a, 0x9d, 0xf5, 0x17, 0x0d, 0xcc, 0xfd, 0x31, 0xdf, 0x89, + 0xc2, 0x23, 0xda, 0x7f, 0xee, 0x2c, 0x27, 0x50, 0x92, 0xfe, 0x2a, 0xaf, 0x19, 0xeb, 0x35, 0x5b, + 0x8e, 0x85, 0x2f, 0x3d, 0x1c, 0x3b, 0x43, 0x86, 0x47, 0xf4, 0x14, 0x95, 0xb7, 0x6b, 0x76, 0xdd, + 0xc3, 0xf1, 0x5e, 0x22, 0xb2, 0xfe, 0xac, 0x43, 0x23, 0xf5, 0xa5, 0xc0, 0xe7, 0x2a, 0x06, 0xe5, + 0x6f, 0x62, 0xfd, 0xf2, 0x5d, 0x97, 0xe9, 0x2f, 0xa5, 0xd9, 0x3c, 0x7a, 0x0f, 0x1a, 0xd2, 0x1d, + 0x4e, 0x18, 0xf5, 0x30, 0xf3, 0x6e, 0x5d, 0xca, 0x1e, 0x49, 0x51, 0x11, 0xa8, 0xca, 0x65, 0x42, + 0xa4, 0x3a, 0x3d, 0x44, 0x08, 0x94, 0x06, 0x34, 0x56, 0xbc, 0xd2, 0xb0, 0xe5, 0x98, 0xdc, 0x85, + 0x7a, 0x80, 0x31, 0xa3, 0x5d, 0x05, 0x51, 0x4d, 0x26, 0x27, 0x28, 0x91, 0x40, 0xc1, 0xfa, 0x1e, + 0xd4, 0x0f, 0x68, 0x80, 0x07, 0xb4, 0xeb, 0xed, 0xf2, 0xfe, 0x55, 0xf0, 0xcc, 0xdb, 0x37, 0x7a, + 0xa1, 0x7d, 0x33, 0xf7, 0x0a, 0xb2, 0xde, 0xd7, 0x60, 0xe1, 0x4d, 0x7f, 0xc4, 0x07, 0x57, 0x3c, + 0xbd, 0x40, 0xd8, 0xfa, 0x14, 0xc2, 0x9e, 0x73, 0x0d, 0x9e, 0xad, 0x26, 0x4b, 0x53, 0xaa, 0x49, + 0x0b, 0x0a, 0x17, 0xc4, 0xb4, 0x36, 0x8c, 0xf5, 0x33, 0x0d, 0xaa, 0x0f, 0x71, 0xbc, 0xb5, 0x8f, + 0x7d, 0x19, 0x28, 0x82, 0xbc, 0xd3, 0xf6, 0x90, 0x9c, 0x08, 0x77, 0x4c, 0xd0, 0x55, 0xa2, 0x27, + 0xe4, 0x6c, 0x75, 0x81, 0xa2, 0xb7, 0x61, 0x81, 0x72, 0xe7, 0xb1, 0xeb, 0xd3, 0x9e, 0x54, 0x72, + 0xc1, 0xae, 0x52, 0xfe, 0xb6, 0x98, 0x0a, 0xa2, 0xcc, 0xcc, 0x55, 0x69, 0x65, 0xd8, 0x13, 0x12, + 0xeb, 0x1d, 0x80, 0x44, 0x35, 0x01, 0x74, 0x16, 0xc6, 0xda, 0x64, 0x18, 0x7f, 0x15, 0xaa, 0x1e, + 0x8e, 0xb7, 0x38, 0xf6, 0x5b, 0xba, 0xbc, 0x65, 0x66, 0xa1, 0x9f, 0xec, 0x64, 0xa7, 0xcb, 0xad, + 0xef, 0xeb, 0x50, 0xfb, 0x56, 0xe4, 0xf6, 0x3a, 0x61, 0x0f, 0x4f, 0x9f, 0xa9, 0x1b, 0x8f, 0x28, + 0xfa, 0xbd, 0x47, 0xf9, 0x45, 0x93, 0x0b, 0x44, 0x16, 0xca, 0x49, 0x9e, 0x85, 0xc9, 0x54, 0xc0, + 0x4e, 0x85, 0x66, 0xce, 0xd0, 0x8d, 0x07, 0x29, 0xe9, 0x80, 0x14, 0xed, 0x09, 0x09, 0x69, 0x43, + 0x23, 0x5d, 0xc0, 0xdc, 0x40, 0x51, 0x4f, 0x7d, 0xeb, 0xde, 0x54, 0x46, 0x78, 0x88, 0xe3, 0xb7, + 0x5d, 0x7f, 0x84, 0x7b, 0x2e, 0x65, 0x76, 0x3d, 0xd9, 0x44, 0x7c, 0x65, 0x3d, 0xd5, 0x00, 0x24, + 0x02, 0x82, 0x34, 0xce, 0x6f, 0xaa, 0x7d, 0x94, 0x4d, 0xc9, 0x97, 0x60, 0x25, 0x1c, 0x05, 0x0e, + 0x43, 0xdf, 0x8d, 0xb1, 0xe7, 0x24, 0x60, 0xf0, 0x04, 0x1c, 0x12, 0x8e, 0x02, 0x5b, 0xfd, 0xb4, + 0x9f, 0xfc, 0x62, 0xfd, 0x40, 0x03, 0x78, 0x53, 0x58, 0xae, 0xd4, 0x38, 0x1b, 0xdd, 0xda, 0x94, + 0xe8, 0x9e, 0x80, 0x4e, 0x2f, 0x42, 0xb7, 0x9d, 0x42, 0x27, 0x08, 0x90, 0x27, 0x3d, 0xd4, 0x7b, + 0x33, 0xdc, 0x99, 0x1b, 0x9f, 0xa0, 0x2b, 0xc7, 0xd6, 0x4f, 0x55, 0xdb, 0x59, 0x68, 0xa7, 0x54, + 0x2a, 0x78, 0x59, 0x3b, 0xeb, 0x65, 0xc9, 0x59, 0x41, 0xc4, 0xc6, 0x0e, 0xa7, 0x4f, 0x30, 0x4d, + 0x12, 0x25, 0xda, 0xa7, 0x4f, 0x50, 0xa4, 0x81, 0x84, 0x24, 0x3a, 0xe1, 0xe9, 0xad, 0x23, 0x60, + 0x88, 0x4e, 0x38, 0xf9, 0x02, 0xdc, 0x60, 0xd8, 0xc5, 0x30, 0xf6, 0xc7, 0x4e, 0x10, 0xf5, 0xe8, + 0x11, 0xc5, 0x34, 0x55, 0xcc, 0xf4, 0x87, 0xdd, 0x44, 0x6e, 0xfd, 0x4d, 0x83, 0xe6, 0xb7, 0x53, + 0x26, 0x56, 0x9a, 0x3d, 0x03, 0xfe, 0xfb, 0x9a, 0x34, 0xb6, 0x80, 0xdf, 0x9c, 0x1e, 0x74, 0x06, + 0x92, 0xbd, 0xc0, 0xb1, 0xaf, 0x94, 0xda, 0x86, 0xba, 0x74, 0x47, 0xb2, 0x47, 0x69, 0xae, 0x0f, + 0x72, 0xcf, 0xdb, 0x70, 0x94, 0x8d, 0xad, 0x5f, 0xe8, 0x40, 0x54, 0xef, 0x42, 0x3a, 0xe9, 0xb9, + 0x7b, 0x70, 0xbc, 0x36, 0xfd, 0xc1, 0x71, 0xbe, 0x92, 0xfc, 0x0c, 0x28, 0xb3, 0xf2, 0xc6, 0x62, + 0x81, 0x04, 0xda, 0xd0, 0xc0, 0xd3, 0x98, 0xb9, 0x69, 0xd2, 0x55, 0x2f, 0x9d, 0x74, 0xf2, 0xb3, + 0x24, 0x93, 0xff, 0xaa, 0xc1, 0x4a, 0xfa, 0x24, 0xfd, 0x44, 0xe3, 0x25, 0x1e, 0xdf, 0xaf, 0x14, + 0x2c, 0xdd, 0x63, 0x51, 0x9f, 0x21, 0xe7, 0x9f, 0x54, 0x8b, 0x5f, 0xff, 0x93, 0x01, 0xd5, 0x44, + 0x55, 0x52, 0x83, 0xb2, 0xf7, 0x28, 0x0a, 0xd1, 0x7c, 0x89, 0xac, 0xc2, 0x0d, 0xef, 0xec, 0x1f, + 0x0f, 0x66, 0x8f, 0x2c, 0xc3, 0x92, 0x57, 0xec, 0xc9, 0x9b, 0x48, 0x08, 0x34, 0xbd, 0x42, 0x4b, + 0xda, 0x3c, 0x22, 0xb7, 0x60, 0xd9, 0x3b, 0xdf, 0xb5, 0x35, 0xc5, 0x5d, 0x6b, 0x7a, 0xc5, 0xc6, + 0x26, 0x37, 0x07, 0x72, 0x8b, 0x6f, 0x60, 0x9c, 0x55, 0xe8, 0xdc, 0xa4, 0x64, 0x15, 0x4c, 0xef, + 0x4c, 0x7f, 0xd1, 0xfc, 0x9d, 0x46, 0x96, 0xa1, 0xe9, 0x15, 0x1a, 0x68, 0xe6, 0xfb, 0x1a, 0x21, + 0xb0, 0xe8, 0x4d, 0x76, 0x88, 0xcc, 0xdf, 0x6b, 0xe4, 0x16, 0x10, 0xef, 0x5c, 0x23, 0xc5, 0xfc, + 0x83, 0x46, 0x56, 0x60, 0xc9, 0x2b, 0xf4, 0x1b, 0xb8, 0xf9, 0x47, 0x8d, 0xdc, 0x80, 0x86, 0x37, + 0x41, 0x09, 0xe6, 0x2f, 0x75, 0x75, 0xd4, 0x64, 0x34, 0x98, 0xbf, 0xd2, 0xc9, 0x1d, 0xb8, 0xe9, + 0x4d, 0x0d, 0x11, 0xf3, 0x5d, 0x9d, 0x34, 0xa0, 0xea, 0xa9, 0x97, 0xbd, 0xf9, 0x43, 0x43, 0xce, + 0xd4, 0x93, 0xd3, 0xfc, 0x91, 0x41, 0xea, 0x50, 0xf1, 0x64, 0x6d, 0x67, 0xfe, 0x58, 0xfd, 0xa4, + 0x4a, 0x77, 0xf3, 0x43, 0x43, 0xaa, 0x3f, 0x59, 0xc8, 0x9b, 0xff, 0x36, 0x48, 0x13, 0x6a, 0x5e, + 0x5a, 0x8b, 0x9a, 0xbf, 0xae, 0x49, 0xad, 0x8b, 0xf4, 0x6c, 0xbe, 0x57, 0x23, 0x4b, 0x00, 0x5e, + 0x56, 0x6a, 0x98, 0xbf, 0xa9, 0xbd, 0xfe, 0x06, 0x2c, 0xa4, 0xff, 0xfd, 0x11, 0x80, 0xca, 0xae, + 0xcb, 0x63, 0x64, 0xe6, 0x4b, 0x62, 0x6c, 0xa3, 0xdb, 0x43, 0x66, 0x6a, 0x62, 0xfc, 0x1d, 0x46, + 0x85, 0x5c, 0x17, 0x3e, 0xdf, 0x13, 0x21, 0x65, 0x1a, 0xdb, 0xed, 0xef, 0x6e, 0xf7, 0x69, 0x3c, + 0x18, 0x1d, 0x0a, 0x46, 0xd8, 0x7c, 0x42, 0x7d, 0x9f, 0x3e, 0x89, 0xb1, 0x3b, 0xd8, 0x54, 0x01, + 0xfe, 0xc5, 0x1e, 0xe5, 0x31, 0xa3, 0x87, 0xa3, 0x18, 0x7b, 0x9b, 0x69, 0x98, 0x6f, 0xca, 0xa8, + 0xcf, 0xa6, 0xc3, 0xc3, 0xc3, 0x8a, 0x94, 0x3c, 0xf8, 0x6f, 0x00, 0x00, 0x00, 0xff, 0xff, 0x5e, + 0x2c, 0xaf, 0x21, 0x6c, 0x1f, 0x00, 0x00, }