// Code generated by protoc-gen-go. DO NOT EDIT. // source: common.proto package commonpb import ( fmt "fmt" proto "github.com/golang/protobuf/proto" math "math" ) // 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 ErrorCode int32 const ( ErrorCode_Success ErrorCode = 0 ErrorCode_UnexpectedError ErrorCode = 1 ErrorCode_ConnectFailed ErrorCode = 2 ErrorCode_PermissionDenied ErrorCode = 3 ErrorCode_CollectionNotExists ErrorCode = 4 ErrorCode_IllegalArgument ErrorCode = 5 ErrorCode_IllegalDimension ErrorCode = 7 ErrorCode_IllegalIndexType ErrorCode = 8 ErrorCode_IllegalCollectionName ErrorCode = 9 ErrorCode_IllegalTOPK ErrorCode = 10 ErrorCode_IllegalRowRecord ErrorCode = 11 ErrorCode_IllegalVectorID ErrorCode = 12 ErrorCode_IllegalSearchResult ErrorCode = 13 ErrorCode_FileNotFound ErrorCode = 14 ErrorCode_MetaFailed ErrorCode = 15 ErrorCode_CacheFailed ErrorCode = 16 ErrorCode_CannotCreateFolder ErrorCode = 17 ErrorCode_CannotCreateFile ErrorCode = 18 ErrorCode_CannotDeleteFolder ErrorCode = 19 ErrorCode_CannotDeleteFile ErrorCode = 20 ErrorCode_BuildIndexError ErrorCode = 21 ErrorCode_IllegalNLIST ErrorCode = 22 ErrorCode_IllegalMetricType ErrorCode = 23 ErrorCode_OutOfMemory ErrorCode = 24 ErrorCode_IndexNotExist ErrorCode = 25 ErrorCode_EmptyCollection ErrorCode = 26 // internal error code. ErrorCode_DDRequestRace ErrorCode = 1000 ) var ErrorCode_name = map[int32]string{ 0: "Success", 1: "UnexpectedError", 2: "ConnectFailed", 3: "PermissionDenied", 4: "CollectionNotExists", 5: "IllegalArgument", 7: "IllegalDimension", 8: "IllegalIndexType", 9: "IllegalCollectionName", 10: "IllegalTOPK", 11: "IllegalRowRecord", 12: "IllegalVectorID", 13: "IllegalSearchResult", 14: "FileNotFound", 15: "MetaFailed", 16: "CacheFailed", 17: "CannotCreateFolder", 18: "CannotCreateFile", 19: "CannotDeleteFolder", 20: "CannotDeleteFile", 21: "BuildIndexError", 22: "IllegalNLIST", 23: "IllegalMetricType", 24: "OutOfMemory", 25: "IndexNotExist", 26: "EmptyCollection", 1000: "DDRequestRace", } var ErrorCode_value = map[string]int32{ "Success": 0, "UnexpectedError": 1, "ConnectFailed": 2, "PermissionDenied": 3, "CollectionNotExists": 4, "IllegalArgument": 5, "IllegalDimension": 7, "IllegalIndexType": 8, "IllegalCollectionName": 9, "IllegalTOPK": 10, "IllegalRowRecord": 11, "IllegalVectorID": 12, "IllegalSearchResult": 13, "FileNotFound": 14, "MetaFailed": 15, "CacheFailed": 16, "CannotCreateFolder": 17, "CannotCreateFile": 18, "CannotDeleteFolder": 19, "CannotDeleteFile": 20, "BuildIndexError": 21, "IllegalNLIST": 22, "IllegalMetricType": 23, "OutOfMemory": 24, "IndexNotExist": 25, "EmptyCollection": 26, "DDRequestRace": 1000, } func (x ErrorCode) String() string { return proto.EnumName(ErrorCode_name, int32(x)) } func (ErrorCode) EnumDescriptor() ([]byte, []int) { return fileDescriptor_555bd8c177793206, []int{0} } type IndexState int32 const ( IndexState_IndexStateNone IndexState = 0 IndexState_Unissued IndexState = 1 IndexState_InProgress IndexState = 2 IndexState_Finished IndexState = 3 IndexState_Failed IndexState = 4 ) var IndexState_name = map[int32]string{ 0: "IndexStateNone", 1: "Unissued", 2: "InProgress", 3: "Finished", 4: "Failed", } var IndexState_value = map[string]int32{ "IndexStateNone": 0, "Unissued": 1, "InProgress": 2, "Finished": 3, "Failed": 4, } func (x IndexState) String() string { return proto.EnumName(IndexState_name, int32(x)) } func (IndexState) EnumDescriptor() ([]byte, []int) { return fileDescriptor_555bd8c177793206, []int{1} } type SegmentState int32 const ( SegmentState_SegmentStateNone SegmentState = 0 SegmentState_NotExist SegmentState = 1 SegmentState_Growing SegmentState = 2 SegmentState_Sealed SegmentState = 3 SegmentState_Flushed SegmentState = 4 SegmentState_Flushing SegmentState = 5 ) var SegmentState_name = map[int32]string{ 0: "SegmentStateNone", 1: "NotExist", 2: "Growing", 3: "Sealed", 4: "Flushed", 5: "Flushing", } var SegmentState_value = map[string]int32{ "SegmentStateNone": 0, "NotExist": 1, "Growing": 2, "Sealed": 3, "Flushed": 4, "Flushing": 5, } func (x SegmentState) String() string { return proto.EnumName(SegmentState_name, int32(x)) } func (SegmentState) EnumDescriptor() ([]byte, []int) { return fileDescriptor_555bd8c177793206, []int{2} } type MsgType int32 const ( MsgType_Undefined MsgType = 0 // DEFINITION REQUESTS: COLLECTION MsgType_CreateCollection MsgType = 100 MsgType_DropCollection MsgType = 101 MsgType_HasCollection MsgType = 102 MsgType_DescribeCollection MsgType = 103 MsgType_ShowCollections MsgType = 104 MsgType_GetSystemConfigs MsgType = 105 MsgType_LoadCollection MsgType = 106 MsgType_ReleaseCollection MsgType = 107 // DEFINITION REQUESTS: PARTITION MsgType_CreatePartition MsgType = 200 MsgType_DropPartition MsgType = 201 MsgType_HasPartition MsgType = 202 MsgType_DescribePartition MsgType = 203 MsgType_ShowPartitions MsgType = 204 MsgType_LoadPartitions MsgType = 205 MsgType_ReleasePartitions MsgType = 206 // DEFINE REQUESTS: SEGMENT MsgType_ShowSegments MsgType = 250 MsgType_DescribeSegment MsgType = 251 MsgType_LoadSegments MsgType = 252 MsgType_ReleaseSegments MsgType = 253 MsgType_HandoffSegments MsgType = 254 MsgType_LoadBalanceSegments MsgType = 255 // DEFINITION REQUESTS: INDEX MsgType_CreateIndex MsgType = 300 MsgType_DescribeIndex MsgType = 301 MsgType_DropIndex MsgType = 302 // MANIPULATION REQUESTS MsgType_Insert MsgType = 400 MsgType_Delete MsgType = 401 MsgType_Flush MsgType = 402 // QUERY MsgType_Search MsgType = 500 MsgType_SearchResult MsgType = 501 MsgType_GetIndexState MsgType = 502 MsgType_GetIndexBuildProgress MsgType = 503 MsgType_GetCollectionStatistics MsgType = 504 MsgType_GetPartitionStatistics MsgType = 505 MsgType_Retrieve MsgType = 506 MsgType_RetrieveResult MsgType = 507 MsgType_WatchDmChannels MsgType = 508 MsgType_RemoveDmChannels MsgType = 509 MsgType_WatchQueryChannels MsgType = 510 MsgType_RemoveQueryChannels MsgType = 511 // DATA SERVICE MsgType_SegmentInfo MsgType = 600 // SYSTEM CONTROL MsgType_TimeTick MsgType = 1200 MsgType_QueryNodeStats MsgType = 1201 MsgType_LoadIndex MsgType = 1202 MsgType_RequestID MsgType = 1203 MsgType_RequestTSO MsgType = 1204 MsgType_AllocateSegment MsgType = 1205 MsgType_SegmentStatistics MsgType = 1206 MsgType_SegmentFlushDone MsgType = 1207 MsgType_DataNodeTt MsgType = 1208 ) var MsgType_name = map[int32]string{ 0: "Undefined", 100: "CreateCollection", 101: "DropCollection", 102: "HasCollection", 103: "DescribeCollection", 104: "ShowCollections", 105: "GetSystemConfigs", 106: "LoadCollection", 107: "ReleaseCollection", 200: "CreatePartition", 201: "DropPartition", 202: "HasPartition", 203: "DescribePartition", 204: "ShowPartitions", 205: "LoadPartitions", 206: "ReleasePartitions", 250: "ShowSegments", 251: "DescribeSegment", 252: "LoadSegments", 253: "ReleaseSegments", 254: "HandoffSegments", 255: "LoadBalanceSegments", 300: "CreateIndex", 301: "DescribeIndex", 302: "DropIndex", 400: "Insert", 401: "Delete", 402: "Flush", 500: "Search", 501: "SearchResult", 502: "GetIndexState", 503: "GetIndexBuildProgress", 504: "GetCollectionStatistics", 505: "GetPartitionStatistics", 506: "Retrieve", 507: "RetrieveResult", 508: "WatchDmChannels", 509: "RemoveDmChannels", 510: "WatchQueryChannels", 511: "RemoveQueryChannels", 600: "SegmentInfo", 1200: "TimeTick", 1201: "QueryNodeStats", 1202: "LoadIndex", 1203: "RequestID", 1204: "RequestTSO", 1205: "AllocateSegment", 1206: "SegmentStatistics", 1207: "SegmentFlushDone", 1208: "DataNodeTt", } var MsgType_value = map[string]int32{ "Undefined": 0, "CreateCollection": 100, "DropCollection": 101, "HasCollection": 102, "DescribeCollection": 103, "ShowCollections": 104, "GetSystemConfigs": 105, "LoadCollection": 106, "ReleaseCollection": 107, "CreatePartition": 200, "DropPartition": 201, "HasPartition": 202, "DescribePartition": 203, "ShowPartitions": 204, "LoadPartitions": 205, "ReleasePartitions": 206, "ShowSegments": 250, "DescribeSegment": 251, "LoadSegments": 252, "ReleaseSegments": 253, "HandoffSegments": 254, "LoadBalanceSegments": 255, "CreateIndex": 300, "DescribeIndex": 301, "DropIndex": 302, "Insert": 400, "Delete": 401, "Flush": 402, "Search": 500, "SearchResult": 501, "GetIndexState": 502, "GetIndexBuildProgress": 503, "GetCollectionStatistics": 504, "GetPartitionStatistics": 505, "Retrieve": 506, "RetrieveResult": 507, "WatchDmChannels": 508, "RemoveDmChannels": 509, "WatchQueryChannels": 510, "RemoveQueryChannels": 511, "SegmentInfo": 600, "TimeTick": 1200, "QueryNodeStats": 1201, "LoadIndex": 1202, "RequestID": 1203, "RequestTSO": 1204, "AllocateSegment": 1205, "SegmentStatistics": 1206, "SegmentFlushDone": 1207, "DataNodeTt": 1208, } func (x MsgType) String() string { return proto.EnumName(MsgType_name, int32(x)) } func (MsgType) EnumDescriptor() ([]byte, []int) { return fileDescriptor_555bd8c177793206, []int{3} } type DslType int32 const ( DslType_Dsl DslType = 0 DslType_BoolExprV1 DslType = 1 ) var DslType_name = map[int32]string{ 0: "Dsl", 1: "BoolExprV1", } var DslType_value = map[string]int32{ "Dsl": 0, "BoolExprV1": 1, } func (x DslType) String() string { return proto.EnumName(DslType_name, int32(x)) } func (DslType) EnumDescriptor() ([]byte, []int) { return fileDescriptor_555bd8c177793206, []int{4} } type Status struct { ErrorCode ErrorCode `protobuf:"varint,1,opt,name=error_code,json=errorCode,proto3,enum=milvus.proto.common.ErrorCode" json:"error_code,omitempty"` Reason string `protobuf:"bytes,2,opt,name=reason,proto3" json:"reason,omitempty"` XXX_NoUnkeyedLiteral struct{} `json:"-"` XXX_unrecognized []byte `json:"-"` XXX_sizecache int32 `json:"-"` } func (m *Status) Reset() { *m = Status{} } func (m *Status) String() string { return proto.CompactTextString(m) } func (*Status) ProtoMessage() {} func (*Status) Descriptor() ([]byte, []int) { return fileDescriptor_555bd8c177793206, []int{0} } func (m *Status) XXX_Unmarshal(b []byte) error { return xxx_messageInfo_Status.Unmarshal(m, b) } func (m *Status) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { return xxx_messageInfo_Status.Marshal(b, m, deterministic) } func (m *Status) XXX_Merge(src proto.Message) { xxx_messageInfo_Status.Merge(m, src) } func (m *Status) XXX_Size() int { return xxx_messageInfo_Status.Size(m) } func (m *Status) XXX_DiscardUnknown() { xxx_messageInfo_Status.DiscardUnknown(m) } var xxx_messageInfo_Status proto.InternalMessageInfo func (m *Status) GetErrorCode() ErrorCode { if m != nil { return m.ErrorCode } return ErrorCode_Success } func (m *Status) GetReason() string { if m != nil { return m.Reason } return "" } type KeyValuePair struct { Key string `protobuf:"bytes,1,opt,name=key,proto3" json:"key,omitempty"` Value string `protobuf:"bytes,2,opt,name=value,proto3" json:"value,omitempty"` XXX_NoUnkeyedLiteral struct{} `json:"-"` XXX_unrecognized []byte `json:"-"` XXX_sizecache int32 `json:"-"` } func (m *KeyValuePair) Reset() { *m = KeyValuePair{} } func (m *KeyValuePair) String() string { return proto.CompactTextString(m) } func (*KeyValuePair) ProtoMessage() {} func (*KeyValuePair) Descriptor() ([]byte, []int) { return fileDescriptor_555bd8c177793206, []int{1} } func (m *KeyValuePair) XXX_Unmarshal(b []byte) error { return xxx_messageInfo_KeyValuePair.Unmarshal(m, b) } func (m *KeyValuePair) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { return xxx_messageInfo_KeyValuePair.Marshal(b, m, deterministic) } func (m *KeyValuePair) XXX_Merge(src proto.Message) { xxx_messageInfo_KeyValuePair.Merge(m, src) } func (m *KeyValuePair) XXX_Size() int { return xxx_messageInfo_KeyValuePair.Size(m) } func (m *KeyValuePair) XXX_DiscardUnknown() { xxx_messageInfo_KeyValuePair.DiscardUnknown(m) } var xxx_messageInfo_KeyValuePair proto.InternalMessageInfo func (m *KeyValuePair) GetKey() string { if m != nil { return m.Key } return "" } func (m *KeyValuePair) GetValue() string { if m != nil { return m.Value } return "" } type Blob struct { Value []byte `protobuf:"bytes,1,opt,name=value,proto3" json:"value,omitempty"` XXX_NoUnkeyedLiteral struct{} `json:"-"` XXX_unrecognized []byte `json:"-"` XXX_sizecache int32 `json:"-"` } func (m *Blob) Reset() { *m = Blob{} } func (m *Blob) String() string { return proto.CompactTextString(m) } func (*Blob) ProtoMessage() {} func (*Blob) Descriptor() ([]byte, []int) { return fileDescriptor_555bd8c177793206, []int{2} } func (m *Blob) XXX_Unmarshal(b []byte) error { return xxx_messageInfo_Blob.Unmarshal(m, b) } func (m *Blob) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { return xxx_messageInfo_Blob.Marshal(b, m, deterministic) } func (m *Blob) XXX_Merge(src proto.Message) { xxx_messageInfo_Blob.Merge(m, src) } func (m *Blob) XXX_Size() int { return xxx_messageInfo_Blob.Size(m) } func (m *Blob) XXX_DiscardUnknown() { xxx_messageInfo_Blob.DiscardUnknown(m) } var xxx_messageInfo_Blob proto.InternalMessageInfo func (m *Blob) GetValue() []byte { if m != nil { return m.Value } return nil } type Address struct { Ip string `protobuf:"bytes,1,opt,name=ip,proto3" json:"ip,omitempty"` Port int64 `protobuf:"varint,2,opt,name=port,proto3" json:"port,omitempty"` XXX_NoUnkeyedLiteral struct{} `json:"-"` XXX_unrecognized []byte `json:"-"` XXX_sizecache int32 `json:"-"` } func (m *Address) Reset() { *m = Address{} } func (m *Address) String() string { return proto.CompactTextString(m) } func (*Address) ProtoMessage() {} func (*Address) Descriptor() ([]byte, []int) { return fileDescriptor_555bd8c177793206, []int{3} } func (m *Address) XXX_Unmarshal(b []byte) error { return xxx_messageInfo_Address.Unmarshal(m, b) } func (m *Address) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { return xxx_messageInfo_Address.Marshal(b, m, deterministic) } func (m *Address) XXX_Merge(src proto.Message) { xxx_messageInfo_Address.Merge(m, src) } func (m *Address) XXX_Size() int { return xxx_messageInfo_Address.Size(m) } func (m *Address) XXX_DiscardUnknown() { xxx_messageInfo_Address.DiscardUnknown(m) } var xxx_messageInfo_Address proto.InternalMessageInfo func (m *Address) GetIp() string { if m != nil { return m.Ip } return "" } func (m *Address) GetPort() int64 { if m != nil { return m.Port } return 0 } type MsgBase struct { MsgType MsgType `protobuf:"varint,1,opt,name=msg_type,json=msgType,proto3,enum=milvus.proto.common.MsgType" json:"msg_type,omitempty"` MsgID int64 `protobuf:"varint,2,opt,name=msgID,proto3" json:"msgID,omitempty"` Timestamp uint64 `protobuf:"varint,3,opt,name=timestamp,proto3" json:"timestamp,omitempty"` SourceID int64 `protobuf:"varint,4,opt,name=sourceID,proto3" json:"sourceID,omitempty"` XXX_NoUnkeyedLiteral struct{} `json:"-"` XXX_unrecognized []byte `json:"-"` XXX_sizecache int32 `json:"-"` } func (m *MsgBase) Reset() { *m = MsgBase{} } func (m *MsgBase) String() string { return proto.CompactTextString(m) } func (*MsgBase) ProtoMessage() {} func (*MsgBase) Descriptor() ([]byte, []int) { return fileDescriptor_555bd8c177793206, []int{4} } func (m *MsgBase) XXX_Unmarshal(b []byte) error { return xxx_messageInfo_MsgBase.Unmarshal(m, b) } func (m *MsgBase) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { return xxx_messageInfo_MsgBase.Marshal(b, m, deterministic) } func (m *MsgBase) XXX_Merge(src proto.Message) { xxx_messageInfo_MsgBase.Merge(m, src) } func (m *MsgBase) XXX_Size() int { return xxx_messageInfo_MsgBase.Size(m) } func (m *MsgBase) XXX_DiscardUnknown() { xxx_messageInfo_MsgBase.DiscardUnknown(m) } var xxx_messageInfo_MsgBase proto.InternalMessageInfo func (m *MsgBase) GetMsgType() MsgType { if m != nil { return m.MsgType } return MsgType_Undefined } func (m *MsgBase) GetMsgID() int64 { if m != nil { return m.MsgID } return 0 } func (m *MsgBase) GetTimestamp() uint64 { if m != nil { return m.Timestamp } return 0 } func (m *MsgBase) GetSourceID() int64 { if m != nil { return m.SourceID } return 0 } // Don't Modify This. @czs type MsgHeader struct { Base *MsgBase `protobuf:"bytes,1,opt,name=base,proto3" json:"base,omitempty"` XXX_NoUnkeyedLiteral struct{} `json:"-"` XXX_unrecognized []byte `json:"-"` XXX_sizecache int32 `json:"-"` } func (m *MsgHeader) Reset() { *m = MsgHeader{} } func (m *MsgHeader) String() string { return proto.CompactTextString(m) } func (*MsgHeader) ProtoMessage() {} func (*MsgHeader) Descriptor() ([]byte, []int) { return fileDescriptor_555bd8c177793206, []int{5} } func (m *MsgHeader) XXX_Unmarshal(b []byte) error { return xxx_messageInfo_MsgHeader.Unmarshal(m, b) } func (m *MsgHeader) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { return xxx_messageInfo_MsgHeader.Marshal(b, m, deterministic) } func (m *MsgHeader) XXX_Merge(src proto.Message) { xxx_messageInfo_MsgHeader.Merge(m, src) } func (m *MsgHeader) XXX_Size() int { return xxx_messageInfo_MsgHeader.Size(m) } func (m *MsgHeader) XXX_DiscardUnknown() { xxx_messageInfo_MsgHeader.DiscardUnknown(m) } var xxx_messageInfo_MsgHeader proto.InternalMessageInfo func (m *MsgHeader) GetBase() *MsgBase { if m != nil { return m.Base } return nil } func init() { proto.RegisterEnum("milvus.proto.common.ErrorCode", ErrorCode_name, ErrorCode_value) proto.RegisterEnum("milvus.proto.common.IndexState", IndexState_name, IndexState_value) proto.RegisterEnum("milvus.proto.common.SegmentState", SegmentState_name, SegmentState_value) proto.RegisterEnum("milvus.proto.common.MsgType", MsgType_name, MsgType_value) proto.RegisterEnum("milvus.proto.common.DslType", DslType_name, DslType_value) proto.RegisterType((*Status)(nil), "milvus.proto.common.Status") proto.RegisterType((*KeyValuePair)(nil), "milvus.proto.common.KeyValuePair") proto.RegisterType((*Blob)(nil), "milvus.proto.common.Blob") proto.RegisterType((*Address)(nil), "milvus.proto.common.Address") proto.RegisterType((*MsgBase)(nil), "milvus.proto.common.MsgBase") proto.RegisterType((*MsgHeader)(nil), "milvus.proto.common.MsgHeader") } func init() { proto.RegisterFile("common.proto", fileDescriptor_555bd8c177793206) } var fileDescriptor_555bd8c177793206 = []byte{ // 1288 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x74, 0x55, 0xd9, 0x6e, 0xdb, 0x46, 0x17, 0xb6, 0x44, 0xd9, 0x32, 0xc7, 0xb2, 0x3d, 0x1e, 0x2f, 0x71, 0xf2, 0x1b, 0x3f, 0x02, 0x5f, 0x05, 0x06, 0x62, 0xb7, 0x0d, 0xda, 0x5e, 0xe5, 0x22, 0x16, 0xbd, 0x08, 0x89, 0x97, 0x52, 0x4e, 0x5a, 0xf4, 0x26, 0x18, 0x93, 0x47, 0xd2, 0x34, 0xe4, 0x8c, 0x3a, 0x33, 0x74, 0xac, 0xfb, 0x3e, 0x40, 0x9b, 0xe7, 0x68, 0x8b, 0xee, 0x2d, 0xfa, 0x04, 0xdd, 0xaf, 0xfb, 0x08, 0x7d, 0x80, 0xae, 0x59, 0x8b, 0x33, 0xa4, 0x24, 0x06, 0x48, 0xef, 0x78, 0xbe, 0xb3, 0x7d, 0xf3, 0x9d, 0x39, 0x43, 0xd2, 0x88, 0x54, 0x9a, 0x2a, 0xb9, 0xd9, 0xd7, 0xca, 0x2a, 0xb6, 0x98, 0x8a, 0xe4, 0x2c, 0x33, 0xb9, 0xb5, 0x99, 0xbb, 0xd6, 0xef, 0x92, 0xa9, 0xb6, 0xe5, 0x36, 0x33, 0xec, 0x3a, 0x21, 0xa0, 0xb5, 0xd2, 0x77, 0x23, 0x15, 0xc3, 0x6a, 0xe5, 0x72, 0xe5, 0xca, 0xdc, 0x2b, 0xff, 0xdf, 0x7c, 0x41, 0xce, 0xe6, 0x0e, 0x86, 0x35, 0x55, 0x0c, 0xa1, 0x0f, 0xc3, 0x4f, 0xb6, 0x42, 0xa6, 0x34, 0x70, 0xa3, 0xe4, 0x6a, 0xf5, 0x72, 0xe5, 0x8a, 0x1f, 0x16, 0xd6, 0xfa, 0x6b, 0xa4, 0x71, 0x13, 0x06, 0x77, 0x78, 0x92, 0xc1, 0x31, 0x17, 0x9a, 0x51, 0xe2, 0xdd, 0x83, 0x81, 0xab, 0xef, 0x87, 0xf8, 0xc9, 0x96, 0xc8, 0xe4, 0x19, 0xba, 0x8b, 0xc4, 0xdc, 0x58, 0x5f, 0x23, 0xb5, 0xed, 0x44, 0x9d, 0x8e, 0xbd, 0x98, 0xd1, 0x18, 0x7a, 0xaf, 0x92, 0xfa, 0x8d, 0x38, 0xd6, 0x60, 0x0c, 0x9b, 0x23, 0x55, 0xd1, 0x2f, 0xea, 0x55, 0x45, 0x9f, 0x31, 0x52, 0xeb, 0x2b, 0x6d, 0x5d, 0x35, 0x2f, 0x74, 0xdf, 0xeb, 0x0f, 0x2a, 0xa4, 0x7e, 0x60, 0xba, 0xdb, 0xdc, 0x00, 0x7b, 0x9d, 0x4c, 0xa7, 0xa6, 0x7b, 0xd7, 0x0e, 0xfa, 0xc3, 0x53, 0xae, 0xbd, 0xf0, 0x94, 0x07, 0xa6, 0x7b, 0x32, 0xe8, 0x43, 0x58, 0x4f, 0xf3, 0x0f, 0x64, 0x92, 0x9a, 0x6e, 0x2b, 0x28, 0x2a, 0xe7, 0x06, 0x5b, 0x23, 0xbe, 0x15, 0x29, 0x18, 0xcb, 0xd3, 0xfe, 0xaa, 0x77, 0xb9, 0x72, 0xa5, 0x16, 0x8e, 0x01, 0x76, 0x89, 0x4c, 0x1b, 0x95, 0xe9, 0x08, 0x5a, 0xc1, 0x6a, 0xcd, 0xa5, 0x8d, 0xec, 0xf5, 0xeb, 0xc4, 0x3f, 0x30, 0xdd, 0x7d, 0xe0, 0x31, 0x68, 0xf6, 0x12, 0xa9, 0x9d, 0x72, 0x93, 0x33, 0x9a, 0xf9, 0x6f, 0x46, 0x78, 0x82, 0xd0, 0x45, 0x6e, 0x7c, 0x5b, 0x23, 0xfe, 0x68, 0x12, 0x6c, 0x86, 0xd4, 0xdb, 0x59, 0x14, 0x81, 0x31, 0x74, 0x82, 0x2d, 0x92, 0xf9, 0xdb, 0x12, 0xce, 0xfb, 0x10, 0x59, 0x88, 0x5d, 0x0c, 0xad, 0xb0, 0x05, 0x32, 0xdb, 0x54, 0x52, 0x42, 0x64, 0x77, 0xb9, 0x48, 0x20, 0xa6, 0x55, 0xb6, 0x44, 0xe8, 0x31, 0xe8, 0x54, 0x18, 0x23, 0x94, 0x0c, 0x40, 0x0a, 0x88, 0xa9, 0xc7, 0x2e, 0x90, 0xc5, 0xa6, 0x4a, 0x12, 0x88, 0xac, 0x50, 0xf2, 0x50, 0xd9, 0x9d, 0x73, 0x61, 0xac, 0xa1, 0x35, 0x2c, 0xdb, 0x4a, 0x12, 0xe8, 0xf2, 0xe4, 0x86, 0xee, 0x66, 0x29, 0x48, 0x4b, 0x27, 0xb1, 0x46, 0x01, 0x06, 0x22, 0x05, 0x89, 0x95, 0x68, 0xbd, 0x84, 0xb6, 0x64, 0x0c, 0xe7, 0xa8, 0x1f, 0x9d, 0x66, 0x17, 0xc9, 0x72, 0x81, 0x96, 0x1a, 0xf0, 0x14, 0xa8, 0xcf, 0xe6, 0xc9, 0x4c, 0xe1, 0x3a, 0x39, 0x3a, 0xbe, 0x49, 0x49, 0xa9, 0x42, 0xa8, 0xee, 0x87, 0x10, 0x29, 0x1d, 0xd3, 0x99, 0x12, 0x85, 0x3b, 0x10, 0x59, 0xa5, 0x5b, 0x01, 0x6d, 0x20, 0xe1, 0x02, 0x6c, 0x03, 0xd7, 0x51, 0x2f, 0x04, 0x93, 0x25, 0x96, 0xce, 0x32, 0x4a, 0x1a, 0xbb, 0x22, 0x81, 0x43, 0x65, 0x77, 0x55, 0x26, 0x63, 0x3a, 0xc7, 0xe6, 0x08, 0x39, 0x00, 0xcb, 0x0b, 0x05, 0xe6, 0xb1, 0x6d, 0x93, 0x47, 0x3d, 0x28, 0x00, 0xca, 0x56, 0x08, 0x6b, 0x72, 0x29, 0x95, 0x6d, 0x6a, 0xe0, 0x16, 0x76, 0x55, 0x12, 0x83, 0xa6, 0x0b, 0x48, 0xe7, 0x39, 0x5c, 0x24, 0x40, 0xd9, 0x38, 0x3a, 0x80, 0x04, 0x46, 0xd1, 0x8b, 0xe3, 0xe8, 0x02, 0xc7, 0xe8, 0x25, 0x24, 0xbf, 0x9d, 0x89, 0x24, 0x76, 0x92, 0xe4, 0x63, 0x59, 0x46, 0x8e, 0x05, 0xf9, 0xc3, 0x5b, 0xad, 0xf6, 0x09, 0x5d, 0x61, 0xcb, 0x64, 0xa1, 0x40, 0x0e, 0xc0, 0x6a, 0x11, 0x39, 0xf1, 0x2e, 0x20, 0xd5, 0xa3, 0xcc, 0x1e, 0x75, 0x0e, 0x20, 0x55, 0x7a, 0x40, 0x57, 0x71, 0xa0, 0xae, 0xd2, 0x70, 0x44, 0xf4, 0x22, 0x76, 0xd8, 0x49, 0xfb, 0x76, 0x30, 0x96, 0x97, 0x5e, 0x62, 0x8c, 0xcc, 0x06, 0x41, 0x08, 0xef, 0x66, 0x60, 0x6c, 0xc8, 0x23, 0xa0, 0xbf, 0xd5, 0x37, 0xde, 0x22, 0xc4, 0xe5, 0xe2, 0xee, 0x03, 0x63, 0x64, 0x6e, 0x6c, 0x1d, 0x2a, 0x09, 0x74, 0x82, 0x35, 0xc8, 0xf4, 0x6d, 0x29, 0x8c, 0xc9, 0x20, 0xa6, 0x15, 0xd4, 0xad, 0x25, 0x8f, 0xb5, 0xea, 0xe2, 0xca, 0xd1, 0x2a, 0x7a, 0x77, 0x85, 0x14, 0xa6, 0xe7, 0x6e, 0x0c, 0x21, 0x53, 0x85, 0x80, 0xb5, 0x8d, 0x0e, 0x69, 0xb4, 0xa1, 0x8b, 0x97, 0x23, 0xaf, 0xbd, 0x44, 0x68, 0xd9, 0x1e, 0x57, 0x1f, 0xd1, 0xae, 0xe0, 0xe5, 0xdd, 0xd3, 0xea, 0xbe, 0x90, 0x5d, 0x5a, 0xc5, 0x62, 0x6d, 0xe0, 0x89, 0x2b, 0x3c, 0x43, 0xea, 0xbb, 0x49, 0xe6, 0xba, 0xd4, 0x5c, 0x4f, 0x34, 0x30, 0x6c, 0x72, 0xe3, 0xbd, 0x69, 0xb7, 0xd2, 0x6e, 0x33, 0x67, 0x89, 0x7f, 0x5b, 0xc6, 0xd0, 0x11, 0x12, 0x62, 0x3a, 0xe1, 0xd4, 0x77, 0x53, 0x2a, 0xc9, 0x10, 0xe3, 0x21, 0x03, 0xad, 0xfa, 0x25, 0x0c, 0x50, 0xc2, 0x7d, 0x6e, 0x4a, 0x50, 0x07, 0x47, 0x1a, 0x80, 0x89, 0xb4, 0x38, 0x2d, 0xa7, 0x77, 0x51, 0xda, 0x76, 0x4f, 0xdd, 0x1f, 0x63, 0x86, 0xf6, 0xb0, 0xd3, 0x1e, 0xd8, 0xf6, 0xc0, 0x58, 0x48, 0x9b, 0x4a, 0x76, 0x44, 0xd7, 0x50, 0x81, 0x9d, 0x6e, 0x29, 0x1e, 0x97, 0xd2, 0xdf, 0xc1, 0xa1, 0x86, 0x90, 0x00, 0x37, 0xe5, 0xaa, 0xf7, 0xd8, 0x12, 0x99, 0xcf, 0xa9, 0x1e, 0x73, 0x6d, 0x85, 0x03, 0xbf, 0xab, 0xb8, 0x89, 0x69, 0xd5, 0x1f, 0x63, 0xdf, 0xe3, 0xfa, 0x36, 0xf6, 0xb9, 0x19, 0x43, 0x3f, 0x54, 0xd8, 0x0a, 0x59, 0x18, 0x52, 0x1d, 0xe3, 0x3f, 0x56, 0xd8, 0x22, 0x99, 0x43, 0xaa, 0x23, 0xcc, 0xd0, 0x9f, 0x1c, 0x88, 0xa4, 0x4a, 0xe0, 0xcf, 0xae, 0x42, 0xc1, 0xaa, 0x84, 0xff, 0xe2, 0x9a, 0x61, 0x85, 0x62, 0x70, 0x86, 0x3e, 0xac, 0x20, 0xd3, 0x61, 0xb3, 0x02, 0xa6, 0x8f, 0x5c, 0x20, 0x56, 0x1d, 0x05, 0x3e, 0x76, 0x81, 0x45, 0xcd, 0x11, 0xfa, 0xc4, 0xa1, 0xfb, 0x5c, 0xc6, 0xaa, 0xd3, 0x19, 0xa1, 0x4f, 0x2b, 0x6c, 0x95, 0x2c, 0x62, 0xfa, 0x36, 0x4f, 0xb8, 0x8c, 0xc6, 0xf1, 0xcf, 0x2a, 0x8c, 0x92, 0x99, 0x5c, 0x18, 0x77, 0x31, 0xe9, 0x87, 0x55, 0x27, 0x4a, 0x41, 0x20, 0xc7, 0x3e, 0xaa, 0xb2, 0x39, 0xe2, 0xa3, 0x50, 0xb9, 0xfd, 0x71, 0x95, 0xcd, 0x90, 0xa9, 0x96, 0x34, 0xa0, 0x2d, 0x7d, 0x1f, 0x2f, 0xcf, 0x54, 0xbe, 0x7e, 0xf4, 0x03, 0xbc, 0xa2, 0x93, 0xee, 0xf2, 0xd0, 0x07, 0xce, 0x91, 0x3f, 0x14, 0xf4, 0x77, 0xcf, 0x1d, 0xb5, 0xfc, 0x6a, 0xfc, 0xe1, 0x61, 0xa7, 0x3d, 0xb0, 0xe3, 0x8d, 0xa0, 0x7f, 0x7a, 0xec, 0x12, 0x59, 0x1e, 0x62, 0x6e, 0x87, 0x47, 0xbb, 0xf0, 0x97, 0xc7, 0xd6, 0xc8, 0x85, 0x3d, 0xb0, 0xe3, 0xb9, 0x62, 0x92, 0x30, 0x56, 0x44, 0x86, 0xfe, 0xed, 0xb1, 0xff, 0x91, 0x95, 0x3d, 0xb0, 0x23, 0x7d, 0x4b, 0xce, 0x7f, 0x3c, 0x36, 0x4b, 0xa6, 0x43, 0x5c, 0x72, 0x38, 0x03, 0xfa, 0xd0, 0xc3, 0x21, 0x0d, 0xcd, 0x82, 0xce, 0x23, 0x0f, 0xa5, 0x7b, 0x93, 0xdb, 0xa8, 0x17, 0xa4, 0xcd, 0x1e, 0x97, 0x12, 0x12, 0x43, 0x1f, 0x7b, 0x6c, 0x99, 0xd0, 0x10, 0x52, 0x75, 0x06, 0x25, 0xf8, 0x09, 0x3e, 0xde, 0xcc, 0x05, 0xbf, 0x91, 0x81, 0x1e, 0x8c, 0x1c, 0x4f, 0x3d, 0x94, 0x3a, 0x8f, 0x7f, 0xde, 0xf3, 0xcc, 0x43, 0xa9, 0x0b, 0xe5, 0x5b, 0xb2, 0xa3, 0xe8, 0xaf, 0x35, 0x64, 0x75, 0x22, 0x52, 0x38, 0x11, 0xd1, 0x3d, 0xfa, 0x89, 0x8f, 0xac, 0x5c, 0xd2, 0xa1, 0x8a, 0x01, 0xe9, 0x1b, 0xfa, 0xa9, 0x8f, 0xd2, 0xe3, 0xe8, 0x72, 0xe9, 0x3f, 0x73, 0x76, 0xf1, 0xc6, 0xb4, 0x02, 0xfa, 0x39, 0x3e, 0xe8, 0xa4, 0xb0, 0x4f, 0xda, 0x47, 0xf4, 0x0b, 0x1f, 0x8f, 0x71, 0x23, 0x49, 0x54, 0xc4, 0xed, 0xe8, 0x02, 0x7d, 0xe9, 0xe3, 0x0d, 0x2c, 0x3d, 0x0f, 0x85, 0x30, 0x5f, 0xf9, 0x78, 0xbc, 0x02, 0x77, 0x63, 0x0b, 0xf0, 0xd9, 0xf8, 0xda, 0x55, 0x0d, 0xb8, 0xe5, 0xc8, 0xe4, 0xc4, 0xd2, 0x6f, 0xfc, 0x8d, 0x75, 0x52, 0x0f, 0x4c, 0xe2, 0x5e, 0x81, 0x3a, 0xf1, 0x02, 0x93, 0xd0, 0x09, 0x7c, 0xac, 0xb6, 0x95, 0x4a, 0x76, 0xce, 0xfb, 0xfa, 0xce, 0xcb, 0xb4, 0xb2, 0xfd, 0xea, 0xdb, 0xd7, 0xba, 0xc2, 0xf6, 0xb2, 0x53, 0xfc, 0x91, 0x6e, 0xe5, 0x7f, 0xd6, 0xab, 0x42, 0x15, 0x5f, 0x5b, 0x42, 0x5a, 0xd0, 0x92, 0x27, 0x5b, 0xee, 0x67, 0xbb, 0x95, 0xff, 0x6c, 0xfb, 0xa7, 0xa7, 0x53, 0xce, 0xbe, 0xf6, 0x6f, 0x00, 0x00, 0x00, 0xff, 0xff, 0xe0, 0x24, 0x61, 0xe5, 0x46, 0x09, 0x00, 0x00, }