mirror of
https://gitee.com/milvus-io/milvus.git
synced 2025-12-29 23:15:28 +08:00
611 lines
19 KiB
Go
611 lines
19 KiB
Go
// Code generated by protoc-gen-go. DO NOT EDIT.
|
|
// source: pdpb.proto
|
|
|
|
/*
|
|
Package pdpb is a generated protocol buffer package.
|
|
|
|
It is generated from these files:
|
|
pdpb.proto
|
|
|
|
It has these top-level messages:
|
|
Member
|
|
RequestHeader
|
|
ResponseHeader
|
|
Error
|
|
TsoRequest
|
|
Timestamp
|
|
TsoResponse
|
|
AllocIDRequest
|
|
AllocIDResponse
|
|
HeartbeatRequest
|
|
HeartbeatResponse
|
|
*/
|
|
package pdpb
|
|
|
|
import proto "github.com/golang/protobuf/proto"
|
|
import fmt "fmt"
|
|
import math "math"
|
|
import metapb "github.com/czs007/suvlim/pkg/metapb"
|
|
|
|
import (
|
|
context "golang.org/x/net/context"
|
|
grpc "google.golang.org/grpc"
|
|
)
|
|
|
|
// 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.ProtoPackageIsVersion2 // please upgrade the proto package
|
|
|
|
type ErrorType int32
|
|
|
|
const (
|
|
ErrorType_OK ErrorType = 0
|
|
ErrorType_UNKNOWN ErrorType = 1
|
|
ErrorType_NOT_BOOTSTRAPPED ErrorType = 2
|
|
ErrorType_STORE_TOMBSTONE ErrorType = 3
|
|
ErrorType_ALREADY_BOOTSTRAPPED ErrorType = 4
|
|
ErrorType_INCOMPATIBLE_VERSION ErrorType = 5
|
|
ErrorType_REGION_NOT_FOUND ErrorType = 6
|
|
)
|
|
|
|
var ErrorType_name = map[int32]string{
|
|
0: "OK",
|
|
1: "UNKNOWN",
|
|
2: "NOT_BOOTSTRAPPED",
|
|
3: "STORE_TOMBSTONE",
|
|
4: "ALREADY_BOOTSTRAPPED",
|
|
5: "INCOMPATIBLE_VERSION",
|
|
6: "REGION_NOT_FOUND",
|
|
}
|
|
var ErrorType_value = map[string]int32{
|
|
"OK": 0,
|
|
"UNKNOWN": 1,
|
|
"NOT_BOOTSTRAPPED": 2,
|
|
"STORE_TOMBSTONE": 3,
|
|
"ALREADY_BOOTSTRAPPED": 4,
|
|
"INCOMPATIBLE_VERSION": 5,
|
|
"REGION_NOT_FOUND": 6,
|
|
}
|
|
|
|
func (x ErrorType) String() string {
|
|
return proto.EnumName(ErrorType_name, int32(x))
|
|
}
|
|
func (ErrorType) EnumDescriptor() ([]byte, []int) { return fileDescriptor0, []int{0} }
|
|
|
|
type Member struct {
|
|
// name is the name of the PD member.
|
|
Name string `protobuf:"bytes,1,opt,name=name" json:"name,omitempty"`
|
|
// member_id is the unique id of the PD member.
|
|
MemberId uint64 `protobuf:"varint,2,opt,name=member_id,json=memberId" json:"member_id,omitempty"`
|
|
PeerUrls []string `protobuf:"bytes,3,rep,name=peer_urls,json=peerUrls" json:"peer_urls,omitempty"`
|
|
ClientUrls []string `protobuf:"bytes,4,rep,name=client_urls,json=clientUrls" json:"client_urls,omitempty"`
|
|
}
|
|
|
|
func (m *Member) Reset() { *m = Member{} }
|
|
func (m *Member) String() string { return proto.CompactTextString(m) }
|
|
func (*Member) ProtoMessage() {}
|
|
func (*Member) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{0} }
|
|
|
|
func (m *Member) GetName() string {
|
|
if m != nil {
|
|
return m.Name
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *Member) GetMemberId() uint64 {
|
|
if m != nil {
|
|
return m.MemberId
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (m *Member) GetPeerUrls() []string {
|
|
if m != nil {
|
|
return m.PeerUrls
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m *Member) GetClientUrls() []string {
|
|
if m != nil {
|
|
return m.ClientUrls
|
|
}
|
|
return nil
|
|
}
|
|
|
|
type RequestHeader struct {
|
|
// cluster_id is the ID of the cluster which be sent to.
|
|
ClusterId uint64 `protobuf:"varint,1,opt,name=cluster_id,json=clusterId" json:"cluster_id,omitempty"`
|
|
}
|
|
|
|
func (m *RequestHeader) Reset() { *m = RequestHeader{} }
|
|
func (m *RequestHeader) String() string { return proto.CompactTextString(m) }
|
|
func (*RequestHeader) ProtoMessage() {}
|
|
func (*RequestHeader) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{1} }
|
|
|
|
func (m *RequestHeader) GetClusterId() uint64 {
|
|
if m != nil {
|
|
return m.ClusterId
|
|
}
|
|
return 0
|
|
}
|
|
|
|
type ResponseHeader struct {
|
|
// cluster_id is the ID of the cluster which sent the response.
|
|
ClusterId uint64 `protobuf:"varint,1,opt,name=cluster_id,json=clusterId" json:"cluster_id,omitempty"`
|
|
Error *Error `protobuf:"bytes,2,opt,name=error" json:"error,omitempty"`
|
|
}
|
|
|
|
func (m *ResponseHeader) Reset() { *m = ResponseHeader{} }
|
|
func (m *ResponseHeader) String() string { return proto.CompactTextString(m) }
|
|
func (*ResponseHeader) ProtoMessage() {}
|
|
func (*ResponseHeader) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{2} }
|
|
|
|
func (m *ResponseHeader) GetClusterId() uint64 {
|
|
if m != nil {
|
|
return m.ClusterId
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (m *ResponseHeader) GetError() *Error {
|
|
if m != nil {
|
|
return m.Error
|
|
}
|
|
return nil
|
|
}
|
|
|
|
type Error struct {
|
|
Type ErrorType `protobuf:"varint,1,opt,name=type,enum=pdpb.ErrorType" json:"type,omitempty"`
|
|
Message string `protobuf:"bytes,2,opt,name=message" json:"message,omitempty"`
|
|
}
|
|
|
|
func (m *Error) Reset() { *m = Error{} }
|
|
func (m *Error) String() string { return proto.CompactTextString(m) }
|
|
func (*Error) ProtoMessage() {}
|
|
func (*Error) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{3} }
|
|
|
|
func (m *Error) GetType() ErrorType {
|
|
if m != nil {
|
|
return m.Type
|
|
}
|
|
return ErrorType_OK
|
|
}
|
|
|
|
func (m *Error) GetMessage() string {
|
|
if m != nil {
|
|
return m.Message
|
|
}
|
|
return ""
|
|
}
|
|
|
|
type TsoRequest struct {
|
|
Header *RequestHeader `protobuf:"bytes,1,opt,name=header" json:"header,omitempty"`
|
|
Count uint32 `protobuf:"varint,2,opt,name=count" json:"count,omitempty"`
|
|
}
|
|
|
|
func (m *TsoRequest) Reset() { *m = TsoRequest{} }
|
|
func (m *TsoRequest) String() string { return proto.CompactTextString(m) }
|
|
func (*TsoRequest) ProtoMessage() {}
|
|
func (*TsoRequest) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{4} }
|
|
|
|
func (m *TsoRequest) GetHeader() *RequestHeader {
|
|
if m != nil {
|
|
return m.Header
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m *TsoRequest) GetCount() uint32 {
|
|
if m != nil {
|
|
return m.Count
|
|
}
|
|
return 0
|
|
}
|
|
|
|
type Timestamp struct {
|
|
Physical int64 `protobuf:"varint,1,opt,name=physical" json:"physical,omitempty"`
|
|
Logical int64 `protobuf:"varint,2,opt,name=logical" json:"logical,omitempty"`
|
|
}
|
|
|
|
func (m *Timestamp) Reset() { *m = Timestamp{} }
|
|
func (m *Timestamp) String() string { return proto.CompactTextString(m) }
|
|
func (*Timestamp) ProtoMessage() {}
|
|
func (*Timestamp) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{5} }
|
|
|
|
func (m *Timestamp) GetPhysical() int64 {
|
|
if m != nil {
|
|
return m.Physical
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (m *Timestamp) GetLogical() int64 {
|
|
if m != nil {
|
|
return m.Logical
|
|
}
|
|
return 0
|
|
}
|
|
|
|
type TsoResponse struct {
|
|
Header *ResponseHeader `protobuf:"bytes,1,opt,name=header" json:"header,omitempty"`
|
|
Count uint32 `protobuf:"varint,2,opt,name=count" json:"count,omitempty"`
|
|
Timestamp *Timestamp `protobuf:"bytes,3,opt,name=timestamp" json:"timestamp,omitempty"`
|
|
}
|
|
|
|
func (m *TsoResponse) Reset() { *m = TsoResponse{} }
|
|
func (m *TsoResponse) String() string { return proto.CompactTextString(m) }
|
|
func (*TsoResponse) ProtoMessage() {}
|
|
func (*TsoResponse) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{6} }
|
|
|
|
func (m *TsoResponse) GetHeader() *ResponseHeader {
|
|
if m != nil {
|
|
return m.Header
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m *TsoResponse) GetCount() uint32 {
|
|
if m != nil {
|
|
return m.Count
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (m *TsoResponse) GetTimestamp() *Timestamp {
|
|
if m != nil {
|
|
return m.Timestamp
|
|
}
|
|
return nil
|
|
}
|
|
|
|
type AllocIDRequest struct {
|
|
Header *RequestHeader `protobuf:"bytes,1,opt,name=header" json:"header,omitempty"`
|
|
}
|
|
|
|
func (m *AllocIDRequest) Reset() { *m = AllocIDRequest{} }
|
|
func (m *AllocIDRequest) String() string { return proto.CompactTextString(m) }
|
|
func (*AllocIDRequest) ProtoMessage() {}
|
|
func (*AllocIDRequest) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{7} }
|
|
|
|
func (m *AllocIDRequest) GetHeader() *RequestHeader {
|
|
if m != nil {
|
|
return m.Header
|
|
}
|
|
return nil
|
|
}
|
|
|
|
type AllocIDResponse struct {
|
|
Header *ResponseHeader `protobuf:"bytes,1,opt,name=header" json:"header,omitempty"`
|
|
Id uint64 `protobuf:"varint,2,opt,name=id" json:"id,omitempty"`
|
|
}
|
|
|
|
func (m *AllocIDResponse) Reset() { *m = AllocIDResponse{} }
|
|
func (m *AllocIDResponse) String() string { return proto.CompactTextString(m) }
|
|
func (*AllocIDResponse) ProtoMessage() {}
|
|
func (*AllocIDResponse) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{8} }
|
|
|
|
func (m *AllocIDResponse) GetHeader() *ResponseHeader {
|
|
if m != nil {
|
|
return m.Header
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m *AllocIDResponse) GetId() uint64 {
|
|
if m != nil {
|
|
return m.Id
|
|
}
|
|
return 0
|
|
}
|
|
|
|
type HeartbeatRequest struct {
|
|
Header *RequestHeader `protobuf:"bytes,1,opt,name=header" json:"header,omitempty"`
|
|
Peer *metapb.Peer `protobuf:"bytes,2,opt,name=peer" json:"peer,omitempty"`
|
|
}
|
|
|
|
func (m *HeartbeatRequest) Reset() { *m = HeartbeatRequest{} }
|
|
func (m *HeartbeatRequest) String() string { return proto.CompactTextString(m) }
|
|
func (*HeartbeatRequest) ProtoMessage() {}
|
|
func (*HeartbeatRequest) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{9} }
|
|
|
|
func (m *HeartbeatRequest) GetHeader() *RequestHeader {
|
|
if m != nil {
|
|
return m.Header
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m *HeartbeatRequest) GetPeer() *metapb.Peer {
|
|
if m != nil {
|
|
return m.Peer
|
|
}
|
|
return nil
|
|
}
|
|
|
|
type HeartbeatResponse struct {
|
|
Header *ResponseHeader `protobuf:"bytes,1,opt,name=header" json:"header,omitempty"`
|
|
}
|
|
|
|
func (m *HeartbeatResponse) Reset() { *m = HeartbeatResponse{} }
|
|
func (m *HeartbeatResponse) String() string { return proto.CompactTextString(m) }
|
|
func (*HeartbeatResponse) ProtoMessage() {}
|
|
func (*HeartbeatResponse) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{10} }
|
|
|
|
func (m *HeartbeatResponse) GetHeader() *ResponseHeader {
|
|
if m != nil {
|
|
return m.Header
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func init() {
|
|
proto.RegisterType((*Member)(nil), "pdpb.Member")
|
|
proto.RegisterType((*RequestHeader)(nil), "pdpb.RequestHeader")
|
|
proto.RegisterType((*ResponseHeader)(nil), "pdpb.ResponseHeader")
|
|
proto.RegisterType((*Error)(nil), "pdpb.Error")
|
|
proto.RegisterType((*TsoRequest)(nil), "pdpb.TsoRequest")
|
|
proto.RegisterType((*Timestamp)(nil), "pdpb.Timestamp")
|
|
proto.RegisterType((*TsoResponse)(nil), "pdpb.TsoResponse")
|
|
proto.RegisterType((*AllocIDRequest)(nil), "pdpb.AllocIDRequest")
|
|
proto.RegisterType((*AllocIDResponse)(nil), "pdpb.AllocIDResponse")
|
|
proto.RegisterType((*HeartbeatRequest)(nil), "pdpb.HeartbeatRequest")
|
|
proto.RegisterType((*HeartbeatResponse)(nil), "pdpb.HeartbeatResponse")
|
|
proto.RegisterEnum("pdpb.ErrorType", ErrorType_name, ErrorType_value)
|
|
}
|
|
|
|
// Reference imports to suppress errors if they are not otherwise used.
|
|
var _ context.Context
|
|
var _ grpc.ClientConn
|
|
|
|
// This is a compile-time assertion to ensure that this generated file
|
|
// is compatible with the grpc package it is being compiled against.
|
|
const _ = grpc.SupportPackageIsVersion4
|
|
|
|
// Client API for PD service
|
|
|
|
type PDClient interface {
|
|
Tso(ctx context.Context, opts ...grpc.CallOption) (PD_TsoClient, error)
|
|
AllocID(ctx context.Context, in *AllocIDRequest, opts ...grpc.CallOption) (*AllocIDResponse, error)
|
|
Heartbeat(ctx context.Context, opts ...grpc.CallOption) (PD_HeartbeatClient, error)
|
|
}
|
|
|
|
type pDClient struct {
|
|
cc *grpc.ClientConn
|
|
}
|
|
|
|
func NewPDClient(cc *grpc.ClientConn) PDClient {
|
|
return &pDClient{cc}
|
|
}
|
|
|
|
func (c *pDClient) Tso(ctx context.Context, opts ...grpc.CallOption) (PD_TsoClient, error) {
|
|
stream, err := grpc.NewClientStream(ctx, &_PD_serviceDesc.Streams[0], c.cc, "/pdpb.PD/Tso", opts...)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
x := &pDTsoClient{stream}
|
|
return x, nil
|
|
}
|
|
|
|
type PD_TsoClient interface {
|
|
Send(*TsoRequest) error
|
|
Recv() (*TsoResponse, error)
|
|
grpc.ClientStream
|
|
}
|
|
|
|
type pDTsoClient struct {
|
|
grpc.ClientStream
|
|
}
|
|
|
|
func (x *pDTsoClient) Send(m *TsoRequest) error {
|
|
return x.ClientStream.SendMsg(m)
|
|
}
|
|
|
|
func (x *pDTsoClient) Recv() (*TsoResponse, error) {
|
|
m := new(TsoResponse)
|
|
if err := x.ClientStream.RecvMsg(m); err != nil {
|
|
return nil, err
|
|
}
|
|
return m, nil
|
|
}
|
|
|
|
func (c *pDClient) AllocID(ctx context.Context, in *AllocIDRequest, opts ...grpc.CallOption) (*AllocIDResponse, error) {
|
|
out := new(AllocIDResponse)
|
|
err := grpc.Invoke(ctx, "/pdpb.PD/AllocID", in, out, c.cc, opts...)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return out, nil
|
|
}
|
|
|
|
func (c *pDClient) Heartbeat(ctx context.Context, opts ...grpc.CallOption) (PD_HeartbeatClient, error) {
|
|
stream, err := grpc.NewClientStream(ctx, &_PD_serviceDesc.Streams[1], c.cc, "/pdpb.PD/Heartbeat", opts...)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
x := &pDHeartbeatClient{stream}
|
|
return x, nil
|
|
}
|
|
|
|
type PD_HeartbeatClient interface {
|
|
Send(*HeartbeatRequest) error
|
|
Recv() (*HeartbeatResponse, error)
|
|
grpc.ClientStream
|
|
}
|
|
|
|
type pDHeartbeatClient struct {
|
|
grpc.ClientStream
|
|
}
|
|
|
|
func (x *pDHeartbeatClient) Send(m *HeartbeatRequest) error {
|
|
return x.ClientStream.SendMsg(m)
|
|
}
|
|
|
|
func (x *pDHeartbeatClient) Recv() (*HeartbeatResponse, error) {
|
|
m := new(HeartbeatResponse)
|
|
if err := x.ClientStream.RecvMsg(m); err != nil {
|
|
return nil, err
|
|
}
|
|
return m, nil
|
|
}
|
|
|
|
// Server API for PD service
|
|
|
|
type PDServer interface {
|
|
Tso(PD_TsoServer) error
|
|
AllocID(context.Context, *AllocIDRequest) (*AllocIDResponse, error)
|
|
Heartbeat(PD_HeartbeatServer) error
|
|
}
|
|
|
|
func RegisterPDServer(s *grpc.Server, srv PDServer) {
|
|
s.RegisterService(&_PD_serviceDesc, srv)
|
|
}
|
|
|
|
func _PD_Tso_Handler(srv interface{}, stream grpc.ServerStream) error {
|
|
return srv.(PDServer).Tso(&pDTsoServer{stream})
|
|
}
|
|
|
|
type PD_TsoServer interface {
|
|
Send(*TsoResponse) error
|
|
Recv() (*TsoRequest, error)
|
|
grpc.ServerStream
|
|
}
|
|
|
|
type pDTsoServer struct {
|
|
grpc.ServerStream
|
|
}
|
|
|
|
func (x *pDTsoServer) Send(m *TsoResponse) error {
|
|
return x.ServerStream.SendMsg(m)
|
|
}
|
|
|
|
func (x *pDTsoServer) Recv() (*TsoRequest, error) {
|
|
m := new(TsoRequest)
|
|
if err := x.ServerStream.RecvMsg(m); err != nil {
|
|
return nil, err
|
|
}
|
|
return m, nil
|
|
}
|
|
|
|
func _PD_AllocID_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
|
|
in := new(AllocIDRequest)
|
|
if err := dec(in); err != nil {
|
|
return nil, err
|
|
}
|
|
if interceptor == nil {
|
|
return srv.(PDServer).AllocID(ctx, in)
|
|
}
|
|
info := &grpc.UnaryServerInfo{
|
|
Server: srv,
|
|
FullMethod: "/pdpb.PD/AllocID",
|
|
}
|
|
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
|
|
return srv.(PDServer).AllocID(ctx, req.(*AllocIDRequest))
|
|
}
|
|
return interceptor(ctx, in, info, handler)
|
|
}
|
|
|
|
func _PD_Heartbeat_Handler(srv interface{}, stream grpc.ServerStream) error {
|
|
return srv.(PDServer).Heartbeat(&pDHeartbeatServer{stream})
|
|
}
|
|
|
|
type PD_HeartbeatServer interface {
|
|
Send(*HeartbeatResponse) error
|
|
Recv() (*HeartbeatRequest, error)
|
|
grpc.ServerStream
|
|
}
|
|
|
|
type pDHeartbeatServer struct {
|
|
grpc.ServerStream
|
|
}
|
|
|
|
func (x *pDHeartbeatServer) Send(m *HeartbeatResponse) error {
|
|
return x.ServerStream.SendMsg(m)
|
|
}
|
|
|
|
func (x *pDHeartbeatServer) Recv() (*HeartbeatRequest, error) {
|
|
m := new(HeartbeatRequest)
|
|
if err := x.ServerStream.RecvMsg(m); err != nil {
|
|
return nil, err
|
|
}
|
|
return m, nil
|
|
}
|
|
|
|
var _PD_serviceDesc = grpc.ServiceDesc{
|
|
ServiceName: "pdpb.PD",
|
|
HandlerType: (*PDServer)(nil),
|
|
Methods: []grpc.MethodDesc{
|
|
{
|
|
MethodName: "AllocID",
|
|
Handler: _PD_AllocID_Handler,
|
|
},
|
|
},
|
|
Streams: []grpc.StreamDesc{
|
|
{
|
|
StreamName: "Tso",
|
|
Handler: _PD_Tso_Handler,
|
|
ServerStreams: true,
|
|
ClientStreams: true,
|
|
},
|
|
{
|
|
StreamName: "Heartbeat",
|
|
Handler: _PD_Heartbeat_Handler,
|
|
ServerStreams: true,
|
|
ClientStreams: true,
|
|
},
|
|
},
|
|
Metadata: "pdpb.proto",
|
|
}
|
|
|
|
func init() { proto.RegisterFile("pdpb.proto", fileDescriptor0) }
|
|
|
|
var fileDescriptor0 = []byte{
|
|
// 603 bytes of a gzipped FileDescriptorProto
|
|
0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x9c, 0x54, 0x4d, 0x6f, 0xd3, 0x40,
|
|
0x10, 0xad, 0x1d, 0x27, 0xad, 0x27, 0x6d, 0xea, 0x4e, 0x03, 0x44, 0x41, 0x88, 0xb0, 0x5c, 0x22,
|
|
0x3e, 0xa2, 0x2a, 0x5c, 0xb8, 0x70, 0x70, 0x88, 0x4b, 0xad, 0xb6, 0xde, 0x68, 0xe3, 0x82, 0x38,
|
|
0x45, 0x4e, 0xbc, 0x6a, 0x23, 0xd9, 0xb1, 0xf1, 0x3a, 0x42, 0xbd, 0xf1, 0x27, 0xf8, 0x27, 0xfc,
|
|
0x40, 0xe4, 0xf5, 0x07, 0x69, 0x90, 0x10, 0xca, 0xcd, 0xf3, 0xde, 0xec, 0x9b, 0x37, 0x1f, 0x09,
|
|
0x40, 0xec, 0xc7, 0xf3, 0x41, 0x9c, 0x44, 0x69, 0x84, 0x5a, 0xf6, 0xdd, 0x3d, 0x0c, 0x79, 0xea,
|
|
0x95, 0x18, 0xf9, 0x0e, 0x8d, 0x6b, 0x1e, 0xce, 0x79, 0x82, 0x08, 0xda, 0xca, 0x0b, 0x79, 0x47,
|
|
0xe9, 0x29, 0x7d, 0x9d, 0xc9, 0x6f, 0x7c, 0x0a, 0x7a, 0x28, 0xd9, 0xd9, 0xd2, 0xef, 0xa8, 0x3d,
|
|
0xa5, 0xaf, 0xb1, 0x83, 0x1c, 0xb0, 0xfd, 0x8c, 0x8c, 0x39, 0x4f, 0x66, 0xeb, 0x24, 0x10, 0x9d,
|
|
0x5a, 0xaf, 0xd6, 0xd7, 0xd9, 0x41, 0x06, 0xdc, 0x24, 0x81, 0xc0, 0xe7, 0xd0, 0x5c, 0x04, 0x4b,
|
|
0xbe, 0x4a, 0x73, 0x5a, 0x93, 0x34, 0xe4, 0x50, 0x96, 0x40, 0x06, 0x70, 0xc4, 0xf8, 0xb7, 0x35,
|
|
0x17, 0xe9, 0x05, 0xf7, 0x7c, 0x9e, 0xe0, 0x33, 0x80, 0x45, 0xb0, 0x16, 0x69, 0x5e, 0x4c, 0x91,
|
|
0xc5, 0xf4, 0x02, 0xb1, 0x7d, 0xc2, 0xa0, 0xc5, 0xb8, 0x88, 0xa3, 0x95, 0xe0, 0xff, 0xf5, 0x00,
|
|
0x5f, 0x40, 0x9d, 0x27, 0x49, 0x94, 0x48, 0xdf, 0xcd, 0x61, 0x73, 0x20, 0x27, 0x61, 0x65, 0x10,
|
|
0xcb, 0x19, 0x72, 0x0e, 0x75, 0x19, 0xe3, 0x4b, 0xd0, 0xd2, 0xfb, 0x38, 0xef, 0xbd, 0x35, 0x3c,
|
|
0xde, 0x48, 0x75, 0xef, 0x63, 0xce, 0x24, 0x89, 0x1d, 0xd8, 0x0f, 0xb9, 0x10, 0xde, 0x2d, 0x97,
|
|
0x92, 0x3a, 0x2b, 0x43, 0x42, 0x01, 0x5c, 0x11, 0x15, 0xed, 0xe0, 0x6b, 0x68, 0xdc, 0x49, 0x87,
|
|
0x52, 0xae, 0x39, 0x3c, 0xcd, 0xe5, 0x1e, 0x74, 0xcb, 0x8a, 0x14, 0x6c, 0x43, 0x7d, 0x11, 0xad,
|
|
0x57, 0xa9, 0x94, 0x3c, 0x62, 0x79, 0x40, 0x4c, 0xd0, 0xdd, 0x65, 0xc8, 0x45, 0xea, 0x85, 0x31,
|
|
0x76, 0xe1, 0x20, 0xbe, 0xbb, 0x17, 0xcb, 0x85, 0x17, 0x48, 0xc5, 0x1a, 0xab, 0xe2, 0xcc, 0x53,
|
|
0x10, 0xdd, 0x4a, 0x4a, 0x95, 0x54, 0x19, 0x92, 0x1f, 0x0a, 0x34, 0xa5, 0xa9, 0x7c, 0x66, 0xf8,
|
|
0x66, 0xcb, 0x55, 0xbb, 0x74, 0xb5, 0x39, 0xd3, 0x7f, 0xdb, 0xc2, 0xb7, 0xa0, 0xa7, 0xa5, 0xad,
|
|
0x4e, 0x4d, 0xca, 0x14, 0xb3, 0xaa, 0xdc, 0xb2, 0x3f, 0x19, 0xe4, 0x03, 0xb4, 0xcc, 0x20, 0x88,
|
|
0x16, 0xf6, 0x78, 0x97, 0xd1, 0x10, 0x0a, 0xc7, 0xd5, 0xf3, 0x9d, 0x9a, 0x68, 0x81, 0x5a, 0x9d,
|
|
0xad, 0xba, 0xf4, 0x89, 0x07, 0xc6, 0x05, 0xf7, 0x92, 0x74, 0xce, 0xbd, 0x74, 0xa7, 0x65, 0xf5,
|
|
0x40, 0xcb, 0x0e, 0xbc, 0xb8, 0xa8, 0xc3, 0x41, 0xf1, 0x4b, 0x9a, 0x70, 0x9e, 0x30, 0xc9, 0x10,
|
|
0x13, 0x4e, 0x36, 0x4a, 0xec, 0xe2, 0xfa, 0xd5, 0x4f, 0x05, 0xf4, 0xea, 0xf4, 0xb0, 0x01, 0x2a,
|
|
0xbd, 0x34, 0xf6, 0xb0, 0x09, 0xfb, 0x37, 0xce, 0xa5, 0x43, 0xbf, 0x38, 0x86, 0x82, 0x6d, 0x30,
|
|
0x1c, 0xea, 0xce, 0x46, 0x94, 0xba, 0x53, 0x97, 0x99, 0x93, 0x89, 0x35, 0x36, 0x54, 0x3c, 0x85,
|
|
0xe3, 0xa9, 0x4b, 0x99, 0x35, 0x73, 0xe9, 0xf5, 0x68, 0xea, 0x52, 0xc7, 0x32, 0x6a, 0xd8, 0x81,
|
|
0xb6, 0x79, 0xc5, 0x2c, 0x73, 0xfc, 0xf5, 0x61, 0xba, 0x96, 0x31, 0xb6, 0xf3, 0x91, 0x5e, 0x4f,
|
|
0x4c, 0xd7, 0x1e, 0x5d, 0x59, 0xb3, 0xcf, 0x16, 0x9b, 0xda, 0xd4, 0x31, 0xea, 0x99, 0x3c, 0xb3,
|
|
0x3e, 0xd9, 0xd4, 0x99, 0x65, 0x55, 0xce, 0xe9, 0x8d, 0x33, 0x36, 0x1a, 0xc3, 0x5f, 0x0a, 0xa8,
|
|
0x93, 0x31, 0x9e, 0x41, 0xcd, 0x15, 0x11, 0x1a, 0xc5, 0xde, 0xab, 0xb3, 0xef, 0x9e, 0x6c, 0x20,
|
|
0x79, 0x63, 0x64, 0xaf, 0xaf, 0x9c, 0x29, 0xf8, 0x1e, 0xf6, 0x8b, 0x3d, 0x62, 0xd1, 0xf9, 0xc3,
|
|
0xab, 0xe8, 0x3e, 0xda, 0x42, 0xcb, 0xd7, 0x38, 0x02, 0xbd, 0x9a, 0x26, 0x3e, 0xce, 0xb3, 0xb6,
|
|
0x37, 0xd8, 0x7d, 0xf2, 0x17, 0xbe, 0x59, 0x7d, 0xde, 0x90, 0xff, 0x73, 0xef, 0x7e, 0x07, 0x00,
|
|
0x00, 0xff, 0xff, 0x34, 0x73, 0xe9, 0xc4, 0x09, 0x05, 0x00, 0x00,
|
|
}
|