2020-10-24 18:04:57 +08:00
|
|
|
// Code generated by protoc-gen-go. DO NOT EDIT.
|
|
|
|
// source: etcd_meta.proto
|
|
|
|
|
|
|
|
package etcdpb
|
|
|
|
|
|
|
|
import (
|
|
|
|
fmt "fmt"
|
|
|
|
proto "github.com/golang/protobuf/proto"
|
|
|
|
commonpb "github.com/zilliztech/milvus-distributed/internal/proto/commonpb"
|
|
|
|
schemapb "github.com/zilliztech/milvus-distributed/internal/proto/schemapb"
|
2020-11-13 12:46:24 +08:00
|
|
|
math "math"
|
2020-10-24 18:04:57 +08:00
|
|
|
)
|
|
|
|
|
|
|
|
// Reference imports to suppress errors if they are not otherwise used.
|
|
|
|
var _ = proto.Marshal
|
|
|
|
var _ = fmt.Errorf
|
|
|
|
var _ = math.Inf
|
|
|
|
|
|
|
|
// This is a compile-time assertion to ensure that this generated file
|
|
|
|
// is compatible with the proto package it is being compiled against.
|
|
|
|
// A compilation error at this line likely means your copy of the
|
|
|
|
// proto package needs to be updated.
|
|
|
|
const _ = proto.ProtoPackageIsVersion3 // please upgrade the proto package
|
|
|
|
|
|
|
|
type TenantMeta struct {
|
2020-11-13 15:17:18 +08:00
|
|
|
ID int64 `protobuf:"varint,1,opt,name=ID,proto3" json:"ID,omitempty"`
|
2020-10-29 19:55:57 +08:00
|
|
|
NumQueryNodes int64 `protobuf:"varint,2,opt,name=num_query_nodes,json=numQueryNodes,proto3" json:"num_query_nodes,omitempty"`
|
2020-11-13 15:17:18 +08:00
|
|
|
InsertChannelIDs []string `protobuf:"bytes,3,rep,name=insert_channelIDs,json=insertChannelIDs,proto3" json:"insert_channelIDs,omitempty"`
|
|
|
|
QueryChannelID string `protobuf:"bytes,4,opt,name=query_channelID,json=queryChannelID,proto3" json:"query_channelID,omitempty"`
|
2020-10-24 18:04:57 +08:00
|
|
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
|
|
|
XXX_unrecognized []byte `json:"-"`
|
|
|
|
XXX_sizecache int32 `json:"-"`
|
|
|
|
}
|
|
|
|
|
|
|
|
func (m *TenantMeta) Reset() { *m = TenantMeta{} }
|
|
|
|
func (m *TenantMeta) String() string { return proto.CompactTextString(m) }
|
|
|
|
func (*TenantMeta) ProtoMessage() {}
|
|
|
|
func (*TenantMeta) Descriptor() ([]byte, []int) {
|
|
|
|
return fileDescriptor_975d306d62b73e88, []int{0}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (m *TenantMeta) XXX_Unmarshal(b []byte) error {
|
|
|
|
return xxx_messageInfo_TenantMeta.Unmarshal(m, b)
|
|
|
|
}
|
|
|
|
func (m *TenantMeta) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
|
|
|
return xxx_messageInfo_TenantMeta.Marshal(b, m, deterministic)
|
|
|
|
}
|
|
|
|
func (m *TenantMeta) XXX_Merge(src proto.Message) {
|
|
|
|
xxx_messageInfo_TenantMeta.Merge(m, src)
|
|
|
|
}
|
|
|
|
func (m *TenantMeta) XXX_Size() int {
|
|
|
|
return xxx_messageInfo_TenantMeta.Size(m)
|
|
|
|
}
|
|
|
|
func (m *TenantMeta) XXX_DiscardUnknown() {
|
|
|
|
xxx_messageInfo_TenantMeta.DiscardUnknown(m)
|
|
|
|
}
|
|
|
|
|
|
|
|
var xxx_messageInfo_TenantMeta proto.InternalMessageInfo
|
|
|
|
|
2020-11-13 15:17:18 +08:00
|
|
|
func (m *TenantMeta) GetID() int64 {
|
2020-10-24 18:04:57 +08:00
|
|
|
if m != nil {
|
2020-11-13 15:17:18 +08:00
|
|
|
return m.ID
|
2020-10-24 18:04:57 +08:00
|
|
|
}
|
|
|
|
return 0
|
|
|
|
}
|
|
|
|
|
2020-10-29 19:55:57 +08:00
|
|
|
func (m *TenantMeta) GetNumQueryNodes() int64 {
|
2020-10-24 18:04:57 +08:00
|
|
|
if m != nil {
|
|
|
|
return m.NumQueryNodes
|
|
|
|
}
|
|
|
|
return 0
|
|
|
|
}
|
|
|
|
|
2020-11-13 15:17:18 +08:00
|
|
|
func (m *TenantMeta) GetInsertChannelIDs() []string {
|
2020-10-24 18:04:57 +08:00
|
|
|
if m != nil {
|
2020-11-13 15:17:18 +08:00
|
|
|
return m.InsertChannelIDs
|
2020-10-24 18:04:57 +08:00
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2020-11-13 15:17:18 +08:00
|
|
|
func (m *TenantMeta) GetQueryChannelID() string {
|
2020-10-24 18:04:57 +08:00
|
|
|
if m != nil {
|
2020-11-13 15:17:18 +08:00
|
|
|
return m.QueryChannelID
|
2020-10-24 18:04:57 +08:00
|
|
|
}
|
|
|
|
return ""
|
|
|
|
}
|
|
|
|
|
|
|
|
type ProxyMeta struct {
|
2020-11-13 15:17:18 +08:00
|
|
|
ID int64 `protobuf:"varint,1,opt,name=ID,proto3" json:"ID,omitempty"`
|
2020-10-24 18:04:57 +08:00
|
|
|
Address *commonpb.Address `protobuf:"bytes,2,opt,name=address,proto3" json:"address,omitempty"`
|
2020-11-13 15:17:18 +08:00
|
|
|
ResultChannelIDs []string `protobuf:"bytes,3,rep,name=result_channelIDs,json=resultChannelIDs,proto3" json:"result_channelIDs,omitempty"`
|
2020-10-24 18:04:57 +08:00
|
|
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
|
|
|
XXX_unrecognized []byte `json:"-"`
|
|
|
|
XXX_sizecache int32 `json:"-"`
|
|
|
|
}
|
|
|
|
|
|
|
|
func (m *ProxyMeta) Reset() { *m = ProxyMeta{} }
|
|
|
|
func (m *ProxyMeta) String() string { return proto.CompactTextString(m) }
|
|
|
|
func (*ProxyMeta) ProtoMessage() {}
|
|
|
|
func (*ProxyMeta) Descriptor() ([]byte, []int) {
|
|
|
|
return fileDescriptor_975d306d62b73e88, []int{1}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (m *ProxyMeta) XXX_Unmarshal(b []byte) error {
|
|
|
|
return xxx_messageInfo_ProxyMeta.Unmarshal(m, b)
|
|
|
|
}
|
|
|
|
func (m *ProxyMeta) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
|
|
|
return xxx_messageInfo_ProxyMeta.Marshal(b, m, deterministic)
|
|
|
|
}
|
|
|
|
func (m *ProxyMeta) XXX_Merge(src proto.Message) {
|
|
|
|
xxx_messageInfo_ProxyMeta.Merge(m, src)
|
|
|
|
}
|
|
|
|
func (m *ProxyMeta) XXX_Size() int {
|
|
|
|
return xxx_messageInfo_ProxyMeta.Size(m)
|
|
|
|
}
|
|
|
|
func (m *ProxyMeta) XXX_DiscardUnknown() {
|
|
|
|
xxx_messageInfo_ProxyMeta.DiscardUnknown(m)
|
|
|
|
}
|
|
|
|
|
|
|
|
var xxx_messageInfo_ProxyMeta proto.InternalMessageInfo
|
|
|
|
|
2020-11-13 15:17:18 +08:00
|
|
|
func (m *ProxyMeta) GetID() int64 {
|
2020-10-24 18:04:57 +08:00
|
|
|
if m != nil {
|
2020-11-13 15:17:18 +08:00
|
|
|
return m.ID
|
2020-10-24 18:04:57 +08:00
|
|
|
}
|
|
|
|
return 0
|
|
|
|
}
|
|
|
|
|
|
|
|
func (m *ProxyMeta) GetAddress() *commonpb.Address {
|
|
|
|
if m != nil {
|
|
|
|
return m.Address
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2020-11-13 15:17:18 +08:00
|
|
|
func (m *ProxyMeta) GetResultChannelIDs() []string {
|
2020-10-24 18:04:57 +08:00
|
|
|
if m != nil {
|
2020-11-13 15:17:18 +08:00
|
|
|
return m.ResultChannelIDs
|
2020-10-24 18:04:57 +08:00
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
type CollectionMeta struct {
|
2020-11-13 15:17:18 +08:00
|
|
|
ID int64 `protobuf:"varint,1,opt,name=ID,proto3" json:"ID,omitempty"`
|
2020-10-24 18:04:57 +08:00
|
|
|
Schema *schemapb.CollectionSchema `protobuf:"bytes,2,opt,name=schema,proto3" json:"schema,omitempty"`
|
|
|
|
CreateTime uint64 `protobuf:"varint,3,opt,name=create_time,json=createTime,proto3" json:"create_time,omitempty"`
|
2020-11-13 15:17:18 +08:00
|
|
|
SegmentIDs []int64 `protobuf:"varint,4,rep,packed,name=segmentIDs,proto3" json:"segmentIDs,omitempty"`
|
2020-10-24 18:04:57 +08:00
|
|
|
PartitionTags []string `protobuf:"bytes,5,rep,name=partition_tags,json=partitionTags,proto3" json:"partition_tags,omitempty"`
|
|
|
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
|
|
|
XXX_unrecognized []byte `json:"-"`
|
|
|
|
XXX_sizecache int32 `json:"-"`
|
|
|
|
}
|
|
|
|
|
|
|
|
func (m *CollectionMeta) Reset() { *m = CollectionMeta{} }
|
|
|
|
func (m *CollectionMeta) String() string { return proto.CompactTextString(m) }
|
|
|
|
func (*CollectionMeta) ProtoMessage() {}
|
|
|
|
func (*CollectionMeta) Descriptor() ([]byte, []int) {
|
|
|
|
return fileDescriptor_975d306d62b73e88, []int{2}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (m *CollectionMeta) XXX_Unmarshal(b []byte) error {
|
|
|
|
return xxx_messageInfo_CollectionMeta.Unmarshal(m, b)
|
|
|
|
}
|
|
|
|
func (m *CollectionMeta) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
|
|
|
return xxx_messageInfo_CollectionMeta.Marshal(b, m, deterministic)
|
|
|
|
}
|
|
|
|
func (m *CollectionMeta) XXX_Merge(src proto.Message) {
|
|
|
|
xxx_messageInfo_CollectionMeta.Merge(m, src)
|
|
|
|
}
|
|
|
|
func (m *CollectionMeta) XXX_Size() int {
|
|
|
|
return xxx_messageInfo_CollectionMeta.Size(m)
|
|
|
|
}
|
|
|
|
func (m *CollectionMeta) XXX_DiscardUnknown() {
|
|
|
|
xxx_messageInfo_CollectionMeta.DiscardUnknown(m)
|
|
|
|
}
|
|
|
|
|
|
|
|
var xxx_messageInfo_CollectionMeta proto.InternalMessageInfo
|
|
|
|
|
2020-11-13 15:17:18 +08:00
|
|
|
func (m *CollectionMeta) GetID() int64 {
|
2020-10-24 18:04:57 +08:00
|
|
|
if m != nil {
|
2020-11-13 15:17:18 +08:00
|
|
|
return m.ID
|
2020-10-24 18:04:57 +08:00
|
|
|
}
|
|
|
|
return 0
|
|
|
|
}
|
|
|
|
|
|
|
|
func (m *CollectionMeta) GetSchema() *schemapb.CollectionSchema {
|
|
|
|
if m != nil {
|
|
|
|
return m.Schema
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (m *CollectionMeta) GetCreateTime() uint64 {
|
|
|
|
if m != nil {
|
|
|
|
return m.CreateTime
|
|
|
|
}
|
|
|
|
return 0
|
|
|
|
}
|
|
|
|
|
2020-11-13 15:17:18 +08:00
|
|
|
func (m *CollectionMeta) GetSegmentIDs() []int64 {
|
2020-10-24 18:04:57 +08:00
|
|
|
if m != nil {
|
2020-11-13 15:17:18 +08:00
|
|
|
return m.SegmentIDs
|
2020-10-24 18:04:57 +08:00
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (m *CollectionMeta) GetPartitionTags() []string {
|
|
|
|
if m != nil {
|
|
|
|
return m.PartitionTags
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
type SegmentMeta struct {
|
2020-11-13 15:17:18 +08:00
|
|
|
SegmentID int64 `protobuf:"varint,1,opt,name=segmentID,proto3" json:"segmentID,omitempty"`
|
|
|
|
CollectionID int64 `protobuf:"varint,2,opt,name=collectionID,proto3" json:"collectionID,omitempty"`
|
2020-10-24 18:04:57 +08:00
|
|
|
PartitionTag string `protobuf:"bytes,3,opt,name=partition_tag,json=partitionTag,proto3" json:"partition_tag,omitempty"`
|
|
|
|
ChannelStart int32 `protobuf:"varint,4,opt,name=channel_start,json=channelStart,proto3" json:"channel_start,omitempty"`
|
|
|
|
ChannelEnd int32 `protobuf:"varint,5,opt,name=channel_end,json=channelEnd,proto3" json:"channel_end,omitempty"`
|
|
|
|
OpenTime uint64 `protobuf:"varint,6,opt,name=open_time,json=openTime,proto3" json:"open_time,omitempty"`
|
|
|
|
CloseTime uint64 `protobuf:"varint,7,opt,name=close_time,json=closeTime,proto3" json:"close_time,omitempty"`
|
|
|
|
NumRows int64 `protobuf:"varint,8,opt,name=num_rows,json=numRows,proto3" json:"num_rows,omitempty"`
|
|
|
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
|
|
|
XXX_unrecognized []byte `json:"-"`
|
|
|
|
XXX_sizecache int32 `json:"-"`
|
|
|
|
}
|
|
|
|
|
|
|
|
func (m *SegmentMeta) Reset() { *m = SegmentMeta{} }
|
|
|
|
func (m *SegmentMeta) String() string { return proto.CompactTextString(m) }
|
|
|
|
func (*SegmentMeta) ProtoMessage() {}
|
|
|
|
func (*SegmentMeta) Descriptor() ([]byte, []int) {
|
|
|
|
return fileDescriptor_975d306d62b73e88, []int{3}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (m *SegmentMeta) XXX_Unmarshal(b []byte) error {
|
|
|
|
return xxx_messageInfo_SegmentMeta.Unmarshal(m, b)
|
|
|
|
}
|
|
|
|
func (m *SegmentMeta) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
|
|
|
return xxx_messageInfo_SegmentMeta.Marshal(b, m, deterministic)
|
|
|
|
}
|
|
|
|
func (m *SegmentMeta) XXX_Merge(src proto.Message) {
|
|
|
|
xxx_messageInfo_SegmentMeta.Merge(m, src)
|
|
|
|
}
|
|
|
|
func (m *SegmentMeta) XXX_Size() int {
|
|
|
|
return xxx_messageInfo_SegmentMeta.Size(m)
|
|
|
|
}
|
|
|
|
func (m *SegmentMeta) XXX_DiscardUnknown() {
|
|
|
|
xxx_messageInfo_SegmentMeta.DiscardUnknown(m)
|
|
|
|
}
|
|
|
|
|
|
|
|
var xxx_messageInfo_SegmentMeta proto.InternalMessageInfo
|
|
|
|
|
2020-11-13 15:17:18 +08:00
|
|
|
func (m *SegmentMeta) GetSegmentID() int64 {
|
2020-10-24 18:04:57 +08:00
|
|
|
if m != nil {
|
2020-11-13 15:17:18 +08:00
|
|
|
return m.SegmentID
|
2020-10-24 18:04:57 +08:00
|
|
|
}
|
|
|
|
return 0
|
|
|
|
}
|
|
|
|
|
2020-11-13 15:17:18 +08:00
|
|
|
func (m *SegmentMeta) GetCollectionID() int64 {
|
2020-10-24 18:04:57 +08:00
|
|
|
if m != nil {
|
2020-11-13 15:17:18 +08:00
|
|
|
return m.CollectionID
|
2020-10-24 18:04:57 +08:00
|
|
|
}
|
|
|
|
return 0
|
|
|
|
}
|
|
|
|
|
|
|
|
func (m *SegmentMeta) GetPartitionTag() string {
|
|
|
|
if m != nil {
|
|
|
|
return m.PartitionTag
|
|
|
|
}
|
|
|
|
return ""
|
|
|
|
}
|
|
|
|
|
|
|
|
func (m *SegmentMeta) GetChannelStart() int32 {
|
|
|
|
if m != nil {
|
|
|
|
return m.ChannelStart
|
|
|
|
}
|
|
|
|
return 0
|
|
|
|
}
|
|
|
|
|
|
|
|
func (m *SegmentMeta) GetChannelEnd() int32 {
|
|
|
|
if m != nil {
|
|
|
|
return m.ChannelEnd
|
|
|
|
}
|
|
|
|
return 0
|
|
|
|
}
|
|
|
|
|
|
|
|
func (m *SegmentMeta) GetOpenTime() uint64 {
|
|
|
|
if m != nil {
|
|
|
|
return m.OpenTime
|
|
|
|
}
|
|
|
|
return 0
|
|
|
|
}
|
|
|
|
|
|
|
|
func (m *SegmentMeta) GetCloseTime() uint64 {
|
|
|
|
if m != nil {
|
|
|
|
return m.CloseTime
|
|
|
|
}
|
|
|
|
return 0
|
|
|
|
}
|
|
|
|
|
|
|
|
func (m *SegmentMeta) GetNumRows() int64 {
|
|
|
|
if m != nil {
|
|
|
|
return m.NumRows
|
|
|
|
}
|
|
|
|
return 0
|
|
|
|
}
|
|
|
|
|
|
|
|
func init() {
|
|
|
|
proto.RegisterType((*TenantMeta)(nil), "milvus.proto.etcd.TenantMeta")
|
|
|
|
proto.RegisterType((*ProxyMeta)(nil), "milvus.proto.etcd.ProxyMeta")
|
|
|
|
proto.RegisterType((*CollectionMeta)(nil), "milvus.proto.etcd.CollectionMeta")
|
|
|
|
proto.RegisterType((*SegmentMeta)(nil), "milvus.proto.etcd.SegmentMeta")
|
|
|
|
}
|
|
|
|
|
|
|
|
func init() { proto.RegisterFile("etcd_meta.proto", fileDescriptor_975d306d62b73e88) }
|
|
|
|
|
|
|
|
var fileDescriptor_975d306d62b73e88 = []byte{
|
2020-11-18 19:33:56 +08:00
|
|
|
// 506 bytes of a gzipped FileDescriptorProto
|
|
|
|
0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x6c, 0x93, 0x4d, 0x8f, 0xd3, 0x30,
|
|
|
|
0x10, 0x86, 0x95, 0xa6, 0x5f, 0x99, 0x7e, 0xb1, 0x39, 0x85, 0x65, 0x81, 0xaa, 0x68, 0xa1, 0x12,
|
|
|
|
0xa2, 0x95, 0x40, 0xe2, 0x06, 0x02, 0xb6, 0x1c, 0x7a, 0x00, 0x41, 0xda, 0x13, 0x97, 0xc8, 0x4d,
|
|
|
|
0x46, 0xad, 0xa5, 0xd8, 0x2e, 0xb6, 0xc3, 0xb2, 0x7b, 0xe2, 0x2f, 0x70, 0xe5, 0x0f, 0xf1, 0xb7,
|
|
|
|
0x90, 0x3f, 0x48, 0xb7, 0x52, 0x8f, 0x79, 0xe6, 0xf5, 0xf8, 0x9d, 0x77, 0x1c, 0x18, 0xa1, 0xce,
|
|
|
|
0x8b, 0x8c, 0xa1, 0x26, 0xb3, 0xbd, 0x14, 0x5a, 0xc4, 0x67, 0x8c, 0x96, 0x3f, 0x2a, 0xe5, 0xbe,
|
|
|
|
0x66, 0xa6, 0x7a, 0xde, 0xcf, 0x05, 0x63, 0x82, 0x3b, 0x74, 0xde, 0x57, 0xf9, 0x0e, 0x99, 0x97,
|
|
|
|
0x4f, 0xfe, 0x04, 0x00, 0x6b, 0xe4, 0x84, 0xeb, 0x4f, 0xa8, 0x49, 0x3c, 0x84, 0xc6, 0x72, 0x91,
|
|
|
|
0x04, 0xe3, 0x60, 0x1a, 0xa6, 0x8d, 0xe5, 0x22, 0x7e, 0x0a, 0x23, 0x5e, 0xb1, 0xec, 0x7b, 0x85,
|
|
|
|
0xf2, 0x26, 0xe3, 0xa2, 0x40, 0x95, 0x34, 0x6c, 0x71, 0xc0, 0x2b, 0xf6, 0xd5, 0xd0, 0xcf, 0x06,
|
|
|
|
0xc6, 0xcf, 0xe1, 0x8c, 0x72, 0x85, 0x52, 0x67, 0xf9, 0x8e, 0x70, 0x8e, 0xe5, 0x72, 0xa1, 0x92,
|
|
|
|
0x70, 0x1c, 0x4e, 0xa3, 0xf4, 0x9e, 0x2b, 0x5c, 0xd5, 0x3c, 0x7e, 0x06, 0x23, 0xd7, 0xb0, 0xd6,
|
|
|
|
0x26, 0xcd, 0x71, 0x30, 0x8d, 0xd2, 0xa1, 0xc5, 0xb5, 0x72, 0xf2, 0x2b, 0x80, 0xe8, 0x8b, 0x14,
|
|
|
|
0x3f, 0x6f, 0x4e, 0x7a, 0x7b, 0x0d, 0x1d, 0x52, 0x14, 0x12, 0x95, 0xf3, 0xd4, 0x7b, 0x79, 0x31,
|
|
|
|
0x3b, 0x9a, 0xdd, 0x4f, 0xfd, 0xde, 0x69, 0xd2, 0xff, 0x62, 0xe3, 0x55, 0xa2, 0xaa, 0xca, 0x53,
|
|
|
|
0x5e, 0x5d, 0xe1, 0xe0, 0x75, 0xf2, 0x37, 0x80, 0xe1, 0x95, 0x28, 0x4b, 0xcc, 0x35, 0x15, 0xfc,
|
|
|
|
0xa4, 0x8f, 0x37, 0xd0, 0x76, 0x91, 0x7a, 0x1b, 0x97, 0xc7, 0x36, 0x7c, 0xdc, 0x87, 0x26, 0x2b,
|
|
|
|
0x0b, 0x52, 0x7f, 0x28, 0x7e, 0x0c, 0xbd, 0x5c, 0x22, 0xd1, 0x98, 0x69, 0xca, 0x30, 0x09, 0xc7,
|
|
|
|
0xc1, 0xb4, 0x99, 0x82, 0x43, 0x6b, 0xca, 0x30, 0x7e, 0x04, 0xa0, 0x70, 0xcb, 0x90, 0x6b, 0x63,
|
|
|
|
0xb4, 0x39, 0x0e, 0xa7, 0x61, 0x7a, 0x87, 0xc4, 0x97, 0x30, 0xdc, 0x13, 0xa9, 0xa9, 0xe9, 0x9d,
|
|
|
|
0x69, 0xb2, 0x55, 0x49, 0xcb, 0x0e, 0x33, 0xa8, 0xe9, 0x9a, 0x6c, 0xd5, 0xe4, 0x77, 0x03, 0x7a,
|
|
|
|
0x2b, 0x77, 0xca, 0x8e, 0x71, 0x01, 0x51, 0xdd, 0xc4, 0x4f, 0x73, 0x00, 0xf1, 0x04, 0xfa, 0x79,
|
|
|
|
0xed, 0x78, 0xb9, 0xf0, 0x5b, 0x3f, 0x62, 0xf1, 0x13, 0x18, 0x1c, 0x5d, 0x6c, 0xbd, 0x47, 0x69,
|
|
|
|
0xff, 0xee, 0xbd, 0x46, 0xe4, 0x63, 0xce, 0x94, 0x26, 0x52, 0xdb, 0x55, 0xb7, 0xd2, 0xbe, 0x87,
|
|
|
|
0x2b, 0xc3, 0x6c, 0x06, 0x5e, 0x84, 0xbc, 0x48, 0x5a, 0x56, 0x02, 0x1e, 0x7d, 0xe4, 0x45, 0xfc,
|
|
|
|
0x00, 0x22, 0xb1, 0x47, 0xee, 0x22, 0x6a, 0xdb, 0x88, 0xba, 0x06, 0xd8, 0x80, 0x1e, 0x02, 0xe4,
|
|
|
|
0xa5, 0x50, 0x3e, 0xc0, 0x8e, 0xad, 0x46, 0x96, 0xd8, 0xf2, 0x7d, 0xe8, 0x9a, 0x37, 0x2c, 0xc5,
|
|
|
|
0xb5, 0x4a, 0xba, 0x76, 0x8c, 0x0e, 0xaf, 0x58, 0x2a, 0xae, 0xd5, 0x87, 0x77, 0xdf, 0xde, 0x6e,
|
|
|
|
0xa9, 0xde, 0x55, 0x1b, 0xf3, 0x58, 0xe6, 0xb7, 0xb4, 0x2c, 0xe9, 0xad, 0xc6, 0x7c, 0x37, 0x77,
|
|
|
|
0x1b, 0x7c, 0x51, 0x50, 0xa5, 0x25, 0xdd, 0x54, 0x1a, 0x8b, 0x39, 0xe5, 0x1a, 0x25, 0x27, 0xe5,
|
|
|
|
0xdc, 0xae, 0x75, 0x6e, 0xfe, 0xac, 0xfd, 0x66, 0xd3, 0xb6, 0x5f, 0xaf, 0xfe, 0x05, 0x00, 0x00,
|
|
|
|
0xff, 0xff, 0xc2, 0xde, 0x28, 0x4b, 0x88, 0x03, 0x00, 0x00,
|
2020-10-24 18:04:57 +08:00
|
|
|
}
|