You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
557 lines
18 KiB
557 lines
18 KiB
// Code generated by protoc-gen-go. DO NOT EDIT.
|
|
// source: proto/span.proto
|
|
|
|
package protogen
|
|
|
|
import proto "github.com/golang/protobuf/proto"
|
|
import fmt "fmt"
|
|
import math "math"
|
|
import duration "github.com/golang/protobuf/ptypes/duration"
|
|
import timestamp "github.com/golang/protobuf/ptypes/timestamp"
|
|
|
|
// 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 Tag_Kind int32
|
|
|
|
const (
|
|
Tag_STRING Tag_Kind = 0
|
|
Tag_INT Tag_Kind = 1
|
|
Tag_BOOL Tag_Kind = 2
|
|
Tag_FLOAT Tag_Kind = 3
|
|
)
|
|
|
|
var Tag_Kind_name = map[int32]string{
|
|
0: "STRING",
|
|
1: "INT",
|
|
2: "BOOL",
|
|
3: "FLOAT",
|
|
}
|
|
var Tag_Kind_value = map[string]int32{
|
|
"STRING": 0,
|
|
"INT": 1,
|
|
"BOOL": 2,
|
|
"FLOAT": 3,
|
|
}
|
|
|
|
func (x Tag_Kind) String() string {
|
|
return proto.EnumName(Tag_Kind_name, int32(x))
|
|
}
|
|
func (Tag_Kind) EnumDescriptor() ([]byte, []int) {
|
|
return fileDescriptor_span_68a8dae26ef502a2, []int{0, 0}
|
|
}
|
|
|
|
type Log_Kind int32
|
|
|
|
const (
|
|
Log_STRING Log_Kind = 0
|
|
Log_INT Log_Kind = 1
|
|
Log_BOOL Log_Kind = 2
|
|
Log_FLOAT Log_Kind = 3
|
|
)
|
|
|
|
var Log_Kind_name = map[int32]string{
|
|
0: "STRING",
|
|
1: "INT",
|
|
2: "BOOL",
|
|
3: "FLOAT",
|
|
}
|
|
var Log_Kind_value = map[string]int32{
|
|
"STRING": 0,
|
|
"INT": 1,
|
|
"BOOL": 2,
|
|
"FLOAT": 3,
|
|
}
|
|
|
|
func (x Log_Kind) String() string {
|
|
return proto.EnumName(Log_Kind_name, int32(x))
|
|
}
|
|
func (Log_Kind) EnumDescriptor() ([]byte, []int) {
|
|
return fileDescriptor_span_68a8dae26ef502a2, []int{2, 0}
|
|
}
|
|
|
|
type SpanRef_RefType int32
|
|
|
|
const (
|
|
SpanRef_CHILD_OF SpanRef_RefType = 0
|
|
SpanRef_FOLLOWS_FROM SpanRef_RefType = 1
|
|
)
|
|
|
|
var SpanRef_RefType_name = map[int32]string{
|
|
0: "CHILD_OF",
|
|
1: "FOLLOWS_FROM",
|
|
}
|
|
var SpanRef_RefType_value = map[string]int32{
|
|
"CHILD_OF": 0,
|
|
"FOLLOWS_FROM": 1,
|
|
}
|
|
|
|
func (x SpanRef_RefType) String() string {
|
|
return proto.EnumName(SpanRef_RefType_name, int32(x))
|
|
}
|
|
func (SpanRef_RefType) EnumDescriptor() ([]byte, []int) {
|
|
return fileDescriptor_span_68a8dae26ef502a2, []int{3, 0}
|
|
}
|
|
|
|
type Tag struct {
|
|
Key string `protobuf:"bytes,1,opt,name=key" json:"key,omitempty"`
|
|
Kind Tag_Kind `protobuf:"varint,2,opt,name=kind,enum=dapper.trace.Tag_Kind" json:"kind,omitempty"`
|
|
Value []byte `protobuf:"bytes,3,opt,name=value,proto3" json:"value,omitempty"`
|
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
|
XXX_unrecognized []byte `json:"-"`
|
|
XXX_sizecache int32 `json:"-"`
|
|
}
|
|
|
|
func (m *Tag) Reset() { *m = Tag{} }
|
|
func (m *Tag) String() string { return proto.CompactTextString(m) }
|
|
func (*Tag) ProtoMessage() {}
|
|
func (*Tag) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor_span_68a8dae26ef502a2, []int{0}
|
|
}
|
|
func (m *Tag) XXX_Unmarshal(b []byte) error {
|
|
return xxx_messageInfo_Tag.Unmarshal(m, b)
|
|
}
|
|
func (m *Tag) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
|
return xxx_messageInfo_Tag.Marshal(b, m, deterministic)
|
|
}
|
|
func (dst *Tag) XXX_Merge(src proto.Message) {
|
|
xxx_messageInfo_Tag.Merge(dst, src)
|
|
}
|
|
func (m *Tag) XXX_Size() int {
|
|
return xxx_messageInfo_Tag.Size(m)
|
|
}
|
|
func (m *Tag) XXX_DiscardUnknown() {
|
|
xxx_messageInfo_Tag.DiscardUnknown(m)
|
|
}
|
|
|
|
var xxx_messageInfo_Tag proto.InternalMessageInfo
|
|
|
|
func (m *Tag) GetKey() string {
|
|
if m != nil {
|
|
return m.Key
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *Tag) GetKind() Tag_Kind {
|
|
if m != nil {
|
|
return m.Kind
|
|
}
|
|
return Tag_STRING
|
|
}
|
|
|
|
func (m *Tag) GetValue() []byte {
|
|
if m != nil {
|
|
return m.Value
|
|
}
|
|
return nil
|
|
}
|
|
|
|
type Field struct {
|
|
Key string `protobuf:"bytes,1,opt,name=key" json:"key,omitempty"`
|
|
Value []byte `protobuf:"bytes,2,opt,name=value,proto3" json:"value,omitempty"`
|
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
|
XXX_unrecognized []byte `json:"-"`
|
|
XXX_sizecache int32 `json:"-"`
|
|
}
|
|
|
|
func (m *Field) Reset() { *m = Field{} }
|
|
func (m *Field) String() string { return proto.CompactTextString(m) }
|
|
func (*Field) ProtoMessage() {}
|
|
func (*Field) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor_span_68a8dae26ef502a2, []int{1}
|
|
}
|
|
func (m *Field) XXX_Unmarshal(b []byte) error {
|
|
return xxx_messageInfo_Field.Unmarshal(m, b)
|
|
}
|
|
func (m *Field) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
|
return xxx_messageInfo_Field.Marshal(b, m, deterministic)
|
|
}
|
|
func (dst *Field) XXX_Merge(src proto.Message) {
|
|
xxx_messageInfo_Field.Merge(dst, src)
|
|
}
|
|
func (m *Field) XXX_Size() int {
|
|
return xxx_messageInfo_Field.Size(m)
|
|
}
|
|
func (m *Field) XXX_DiscardUnknown() {
|
|
xxx_messageInfo_Field.DiscardUnknown(m)
|
|
}
|
|
|
|
var xxx_messageInfo_Field proto.InternalMessageInfo
|
|
|
|
func (m *Field) GetKey() string {
|
|
if m != nil {
|
|
return m.Key
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *Field) GetValue() []byte {
|
|
if m != nil {
|
|
return m.Value
|
|
}
|
|
return nil
|
|
}
|
|
|
|
type Log struct {
|
|
Key string `protobuf:"bytes,1,opt,name=key" json:"key,omitempty"`
|
|
Kind Log_Kind `protobuf:"varint,2,opt,name=kind,enum=dapper.trace.Log_Kind" json:"kind,omitempty"`
|
|
Value []byte `protobuf:"bytes,3,opt,name=value,proto3" json:"value,omitempty"`
|
|
Timestamp int64 `protobuf:"varint,4,opt,name=timestamp" json:"timestamp,omitempty"`
|
|
Fields []*Field `protobuf:"bytes,5,rep,name=fields" json:"fields,omitempty"`
|
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
|
XXX_unrecognized []byte `json:"-"`
|
|
XXX_sizecache int32 `json:"-"`
|
|
}
|
|
|
|
func (m *Log) Reset() { *m = Log{} }
|
|
func (m *Log) String() string { return proto.CompactTextString(m) }
|
|
func (*Log) ProtoMessage() {}
|
|
func (*Log) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor_span_68a8dae26ef502a2, []int{2}
|
|
}
|
|
func (m *Log) XXX_Unmarshal(b []byte) error {
|
|
return xxx_messageInfo_Log.Unmarshal(m, b)
|
|
}
|
|
func (m *Log) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
|
return xxx_messageInfo_Log.Marshal(b, m, deterministic)
|
|
}
|
|
func (dst *Log) XXX_Merge(src proto.Message) {
|
|
xxx_messageInfo_Log.Merge(dst, src)
|
|
}
|
|
func (m *Log) XXX_Size() int {
|
|
return xxx_messageInfo_Log.Size(m)
|
|
}
|
|
func (m *Log) XXX_DiscardUnknown() {
|
|
xxx_messageInfo_Log.DiscardUnknown(m)
|
|
}
|
|
|
|
var xxx_messageInfo_Log proto.InternalMessageInfo
|
|
|
|
func (m *Log) GetKey() string {
|
|
if m != nil {
|
|
return m.Key
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *Log) GetKind() Log_Kind {
|
|
if m != nil {
|
|
return m.Kind
|
|
}
|
|
return Log_STRING
|
|
}
|
|
|
|
func (m *Log) GetValue() []byte {
|
|
if m != nil {
|
|
return m.Value
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m *Log) GetTimestamp() int64 {
|
|
if m != nil {
|
|
return m.Timestamp
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (m *Log) GetFields() []*Field {
|
|
if m != nil {
|
|
return m.Fields
|
|
}
|
|
return nil
|
|
}
|
|
|
|
// SpanRef describes causal relationship of the current span to another span (e.g. 'child-of')
|
|
type SpanRef struct {
|
|
RefType SpanRef_RefType `protobuf:"varint,1,opt,name=ref_type,json=refType,enum=dapper.trace.SpanRef_RefType" json:"ref_type,omitempty"`
|
|
TraceId uint64 `protobuf:"varint,2,opt,name=trace_id,json=traceId" json:"trace_id,omitempty"`
|
|
SpanId uint64 `protobuf:"varint,3,opt,name=span_id,json=spanId" json:"span_id,omitempty"`
|
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
|
XXX_unrecognized []byte `json:"-"`
|
|
XXX_sizecache int32 `json:"-"`
|
|
}
|
|
|
|
func (m *SpanRef) Reset() { *m = SpanRef{} }
|
|
func (m *SpanRef) String() string { return proto.CompactTextString(m) }
|
|
func (*SpanRef) ProtoMessage() {}
|
|
func (*SpanRef) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor_span_68a8dae26ef502a2, []int{3}
|
|
}
|
|
func (m *SpanRef) XXX_Unmarshal(b []byte) error {
|
|
return xxx_messageInfo_SpanRef.Unmarshal(m, b)
|
|
}
|
|
func (m *SpanRef) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
|
return xxx_messageInfo_SpanRef.Marshal(b, m, deterministic)
|
|
}
|
|
func (dst *SpanRef) XXX_Merge(src proto.Message) {
|
|
xxx_messageInfo_SpanRef.Merge(dst, src)
|
|
}
|
|
func (m *SpanRef) XXX_Size() int {
|
|
return xxx_messageInfo_SpanRef.Size(m)
|
|
}
|
|
func (m *SpanRef) XXX_DiscardUnknown() {
|
|
xxx_messageInfo_SpanRef.DiscardUnknown(m)
|
|
}
|
|
|
|
var xxx_messageInfo_SpanRef proto.InternalMessageInfo
|
|
|
|
func (m *SpanRef) GetRefType() SpanRef_RefType {
|
|
if m != nil {
|
|
return m.RefType
|
|
}
|
|
return SpanRef_CHILD_OF
|
|
}
|
|
|
|
func (m *SpanRef) GetTraceId() uint64 {
|
|
if m != nil {
|
|
return m.TraceId
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (m *SpanRef) GetSpanId() uint64 {
|
|
if m != nil {
|
|
return m.SpanId
|
|
}
|
|
return 0
|
|
}
|
|
|
|
// Span represents a named unit of work performed by a service.
|
|
type Span struct {
|
|
Version int32 `protobuf:"varint,99,opt,name=version" json:"version,omitempty"`
|
|
ServiceName string `protobuf:"bytes,1,opt,name=service_name,json=serviceName" json:"service_name,omitempty"`
|
|
OperationName string `protobuf:"bytes,2,opt,name=operation_name,json=operationName" json:"operation_name,omitempty"`
|
|
// Deprecated: caller no long required
|
|
Caller string `protobuf:"bytes,3,opt,name=caller" json:"caller,omitempty"`
|
|
TraceId uint64 `protobuf:"varint,4,opt,name=trace_id,json=traceId" json:"trace_id,omitempty"`
|
|
SpanId uint64 `protobuf:"varint,5,opt,name=span_id,json=spanId" json:"span_id,omitempty"`
|
|
ParentId uint64 `protobuf:"varint,6,opt,name=parent_id,json=parentId" json:"parent_id,omitempty"`
|
|
// Deprecated: level no long required
|
|
Level int32 `protobuf:"varint,7,opt,name=level" json:"level,omitempty"`
|
|
// Deprecated: use start_time instead instead of start_at
|
|
StartAt int64 `protobuf:"varint,8,opt,name=start_at,json=startAt" json:"start_at,omitempty"`
|
|
// Deprecated: use duration instead instead of finish_at
|
|
FinishAt int64 `protobuf:"varint,9,opt,name=finish_at,json=finishAt" json:"finish_at,omitempty"`
|
|
SamplingProbability float32 `protobuf:"fixed32,10,opt,name=sampling_probability,json=samplingProbability" json:"sampling_probability,omitempty"`
|
|
Env string `protobuf:"bytes,19,opt,name=env" json:"env,omitempty"`
|
|
StartTime *timestamp.Timestamp `protobuf:"bytes,20,opt,name=start_time,json=startTime" json:"start_time,omitempty"`
|
|
Duration *duration.Duration `protobuf:"bytes,21,opt,name=duration" json:"duration,omitempty"`
|
|
References []*SpanRef `protobuf:"bytes,22,rep,name=references" json:"references,omitempty"`
|
|
Tags []*Tag `protobuf:"bytes,11,rep,name=tags" json:"tags,omitempty"`
|
|
Logs []*Log `protobuf:"bytes,12,rep,name=logs" json:"logs,omitempty"`
|
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
|
XXX_unrecognized []byte `json:"-"`
|
|
XXX_sizecache int32 `json:"-"`
|
|
}
|
|
|
|
func (m *Span) Reset() { *m = Span{} }
|
|
func (m *Span) String() string { return proto.CompactTextString(m) }
|
|
func (*Span) ProtoMessage() {}
|
|
func (*Span) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor_span_68a8dae26ef502a2, []int{4}
|
|
}
|
|
func (m *Span) XXX_Unmarshal(b []byte) error {
|
|
return xxx_messageInfo_Span.Unmarshal(m, b)
|
|
}
|
|
func (m *Span) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
|
return xxx_messageInfo_Span.Marshal(b, m, deterministic)
|
|
}
|
|
func (dst *Span) XXX_Merge(src proto.Message) {
|
|
xxx_messageInfo_Span.Merge(dst, src)
|
|
}
|
|
func (m *Span) XXX_Size() int {
|
|
return xxx_messageInfo_Span.Size(m)
|
|
}
|
|
func (m *Span) XXX_DiscardUnknown() {
|
|
xxx_messageInfo_Span.DiscardUnknown(m)
|
|
}
|
|
|
|
var xxx_messageInfo_Span proto.InternalMessageInfo
|
|
|
|
func (m *Span) GetVersion() int32 {
|
|
if m != nil {
|
|
return m.Version
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (m *Span) GetServiceName() string {
|
|
if m != nil {
|
|
return m.ServiceName
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *Span) GetOperationName() string {
|
|
if m != nil {
|
|
return m.OperationName
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *Span) GetCaller() string {
|
|
if m != nil {
|
|
return m.Caller
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *Span) GetTraceId() uint64 {
|
|
if m != nil {
|
|
return m.TraceId
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (m *Span) GetSpanId() uint64 {
|
|
if m != nil {
|
|
return m.SpanId
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (m *Span) GetParentId() uint64 {
|
|
if m != nil {
|
|
return m.ParentId
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (m *Span) GetLevel() int32 {
|
|
if m != nil {
|
|
return m.Level
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (m *Span) GetStartAt() int64 {
|
|
if m != nil {
|
|
return m.StartAt
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (m *Span) GetFinishAt() int64 {
|
|
if m != nil {
|
|
return m.FinishAt
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (m *Span) GetSamplingProbability() float32 {
|
|
if m != nil {
|
|
return m.SamplingProbability
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (m *Span) GetEnv() string {
|
|
if m != nil {
|
|
return m.Env
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *Span) GetStartTime() *timestamp.Timestamp {
|
|
if m != nil {
|
|
return m.StartTime
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m *Span) GetDuration() *duration.Duration {
|
|
if m != nil {
|
|
return m.Duration
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m *Span) GetReferences() []*SpanRef {
|
|
if m != nil {
|
|
return m.References
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m *Span) GetTags() []*Tag {
|
|
if m != nil {
|
|
return m.Tags
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m *Span) GetLogs() []*Log {
|
|
if m != nil {
|
|
return m.Logs
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func init() {
|
|
proto.RegisterType((*Tag)(nil), "dapper.trace.Tag")
|
|
proto.RegisterType((*Field)(nil), "dapper.trace.Field")
|
|
proto.RegisterType((*Log)(nil), "dapper.trace.Log")
|
|
proto.RegisterType((*SpanRef)(nil), "dapper.trace.SpanRef")
|
|
proto.RegisterType((*Span)(nil), "dapper.trace.Span")
|
|
proto.RegisterEnum("dapper.trace.Tag_Kind", Tag_Kind_name, Tag_Kind_value)
|
|
proto.RegisterEnum("dapper.trace.Log_Kind", Log_Kind_name, Log_Kind_value)
|
|
proto.RegisterEnum("dapper.trace.SpanRef_RefType", SpanRef_RefType_name, SpanRef_RefType_value)
|
|
}
|
|
|
|
func init() { proto.RegisterFile("proto/span.proto", fileDescriptor_span_68a8dae26ef502a2) }
|
|
|
|
var fileDescriptor_span_68a8dae26ef502a2 = []byte{
|
|
// 669 bytes of a gzipped FileDescriptorProto
|
|
0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x9c, 0x94, 0xdd, 0x6e, 0xd3, 0x4a,
|
|
0x10, 0xc7, 0xeb, 0xd8, 0x89, 0x9d, 0x49, 0x4e, 0xe5, 0xb3, 0xfd, 0x38, 0xdb, 0x1e, 0x3e, 0x4c,
|
|
0xa4, 0x4a, 0x06, 0x24, 0x07, 0x82, 0x2a, 0xc1, 0x65, 0x4b, 0x15, 0x88, 0x30, 0x0d, 0xda, 0x46,
|
|
0x42, 0xe2, 0x26, 0xda, 0x24, 0x63, 0x63, 0xd5, 0xb1, 0x2d, 0x7b, 0x1b, 0x29, 0xcf, 0xc0, 0x5b,
|
|
0xf0, 0x50, 0xdc, 0xf1, 0x2e, 0x68, 0xd7, 0x4e, 0x9a, 0xd2, 0x22, 0x04, 0x77, 0x3b, 0xf3, 0xff,
|
|
0xed, 0xce, 0xcc, 0xfa, 0xbf, 0x06, 0x3b, 0xcb, 0x53, 0x91, 0x76, 0x8b, 0x8c, 0x27, 0x9e, 0x5a,
|
|
0x92, 0xf6, 0x8c, 0x67, 0x19, 0xe6, 0x9e, 0xc8, 0xf9, 0x14, 0x0f, 0x1f, 0x86, 0x69, 0x1a, 0xc6,
|
|
0xd8, 0x55, 0xda, 0xe4, 0x2a, 0xe8, 0x8a, 0x68, 0x8e, 0x85, 0xe0, 0xf3, 0xac, 0xc4, 0x0f, 0x1f,
|
|
0xfc, 0x0c, 0xcc, 0xae, 0x72, 0x2e, 0xa2, 0xb4, 0x3a, 0xae, 0xf3, 0x45, 0x03, 0x7d, 0xc4, 0x43,
|
|
0x62, 0x83, 0x7e, 0x89, 0x4b, 0xaa, 0x39, 0x9a, 0xdb, 0x64, 0x72, 0x49, 0x9e, 0x80, 0x71, 0x19,
|
|
0x25, 0x33, 0x5a, 0x73, 0x34, 0x77, 0xbb, 0xb7, 0xef, 0x6d, 0xd6, 0xf5, 0x46, 0x3c, 0xf4, 0xde,
|
|
0x45, 0xc9, 0x8c, 0x29, 0x86, 0xec, 0x42, 0x7d, 0xc1, 0xe3, 0x2b, 0xa4, 0xba, 0xa3, 0xb9, 0x6d,
|
|
0x56, 0x06, 0x9d, 0x67, 0x60, 0x48, 0x86, 0x00, 0x34, 0x2e, 0x46, 0x6c, 0x70, 0xfe, 0xc6, 0xde,
|
|
0x22, 0x26, 0xe8, 0x83, 0xf3, 0x91, 0xad, 0x11, 0x0b, 0x8c, 0xd3, 0xe1, 0xd0, 0xb7, 0x6b, 0xa4,
|
|
0x09, 0xf5, 0xbe, 0x3f, 0x3c, 0x19, 0xd9, 0x7a, 0xa7, 0x0b, 0xf5, 0x7e, 0x84, 0xf1, 0xec, 0x8e,
|
|
0x76, 0xd6, 0x25, 0x6a, 0x9b, 0x25, 0xbe, 0x69, 0xa0, 0xfb, 0xe9, 0x1f, 0xb7, 0xef, 0xa7, 0xbf,
|
|
0x6f, 0x9f, 0xdc, 0x83, 0xe6, 0xfa, 0x36, 0xa9, 0xe1, 0x68, 0xae, 0xce, 0xae, 0x13, 0xe4, 0x29,
|
|
0x34, 0x02, 0xd9, 0x6a, 0x41, 0xeb, 0x8e, 0xee, 0xb6, 0x7a, 0x3b, 0x37, 0x2b, 0xa8, 0x31, 0x58,
|
|
0x85, 0xfc, 0xc5, 0x4d, 0x7c, 0xd5, 0xc0, 0xbc, 0xc8, 0x78, 0xc2, 0x30, 0x20, 0x2f, 0xc1, 0xca,
|
|
0x31, 0x18, 0x8b, 0x65, 0x86, 0x6a, 0xc2, 0xed, 0xde, 0xfd, 0x9b, 0xc5, 0x2a, 0xd0, 0x63, 0x18,
|
|
0x8c, 0x96, 0x19, 0x32, 0x33, 0x2f, 0x17, 0xe4, 0x00, 0x2c, 0x45, 0x8c, 0xa3, 0xf2, 0x22, 0x0c,
|
|
0x66, 0xaa, 0x78, 0x30, 0x23, 0xff, 0x81, 0x29, 0x5d, 0x25, 0x15, 0x5d, 0x29, 0x0d, 0x19, 0x0e,
|
|
0x66, 0x9d, 0xc7, 0x60, 0x56, 0xe7, 0x90, 0x36, 0x58, 0xaf, 0xdf, 0x0e, 0xfc, 0xb3, 0xf1, 0xb0,
|
|
0x6f, 0x6f, 0x11, 0x1b, 0xda, 0xfd, 0xa1, 0xef, 0x0f, 0x3f, 0x5e, 0x8c, 0xfb, 0x6c, 0xf8, 0xde,
|
|
0xd6, 0x3a, 0xdf, 0x0d, 0x30, 0x64, 0x6d, 0x42, 0xc1, 0x5c, 0x60, 0x5e, 0x44, 0x69, 0x42, 0xa7,
|
|
0x8e, 0xe6, 0xd6, 0xd9, 0x2a, 0x24, 0x8f, 0xa0, 0x5d, 0x60, 0xbe, 0x88, 0xa6, 0x38, 0x4e, 0xf8,
|
|
0x1c, 0xab, 0x2f, 0xd4, 0xaa, 0x72, 0xe7, 0x7c, 0x8e, 0xe4, 0x08, 0xb6, 0xd3, 0x0c, 0x4b, 0x57,
|
|
0x96, 0x50, 0x4d, 0x41, 0xff, 0xac, 0xb3, 0x0a, 0xdb, 0x87, 0xc6, 0x94, 0xc7, 0x31, 0xe6, 0xaa,
|
|
0xdf, 0x26, 0xab, 0xa2, 0x1b, 0x33, 0x1a, 0xbf, 0x9c, 0xb1, 0xbe, 0x39, 0x23, 0xf9, 0x1f, 0x9a,
|
|
0x19, 0xcf, 0x31, 0x11, 0x52, 0x6a, 0x28, 0xc9, 0x2a, 0x13, 0x03, 0xe5, 0x86, 0x18, 0x17, 0x18,
|
|
0x53, 0x53, 0x8d, 0x52, 0x06, 0xb2, 0x4c, 0x21, 0x78, 0x2e, 0xc6, 0x5c, 0x50, 0x4b, 0x99, 0xc1,
|
|
0x54, 0xf1, 0x89, 0x90, 0xa7, 0x05, 0x51, 0x12, 0x15, 0x9f, 0xa5, 0xd6, 0x54, 0x9a, 0x55, 0x26,
|
|
0x4e, 0x04, 0x79, 0x0e, 0xbb, 0x05, 0x9f, 0x67, 0x71, 0x94, 0x84, 0xe3, 0x2c, 0x4f, 0x27, 0x7c,
|
|
0x12, 0xc5, 0x91, 0x58, 0x52, 0x70, 0x34, 0xb7, 0xc6, 0x76, 0x56, 0xda, 0x87, 0x6b, 0x49, 0x9a,
|
|
0x19, 0x93, 0x05, 0xdd, 0x29, 0xcd, 0x8c, 0xc9, 0x82, 0xbc, 0x02, 0x28, 0x8b, 0x4b, 0xff, 0xd1,
|
|
0x5d, 0x47, 0x73, 0x5b, 0xbd, 0x43, 0xaf, 0x7c, 0xda, 0xde, 0xea, 0x69, 0x7b, 0xa3, 0x95, 0x39,
|
|
0x59, 0x53, 0xd1, 0x32, 0x26, 0xc7, 0x60, 0xad, 0x9e, 0x3c, 0xdd, 0x53, 0x1b, 0x0f, 0x6e, 0x6d,
|
|
0x3c, 0xab, 0x00, 0xb6, 0x46, 0xc9, 0x31, 0x40, 0x8e, 0x01, 0xe6, 0x98, 0x4c, 0xb1, 0xa0, 0xfb,
|
|
0xca, 0xe2, 0x7b, 0x77, 0xba, 0x8e, 0x6d, 0x80, 0xe4, 0x08, 0x0c, 0xc1, 0xc3, 0x82, 0xb6, 0xd4,
|
|
0x86, 0x7f, 0x6f, 0xfd, 0x34, 0x98, 0x92, 0x25, 0x16, 0xa7, 0x61, 0x41, 0xdb, 0x77, 0x61, 0x7e,
|
|
0x1a, 0x32, 0x25, 0x9f, 0xc2, 0x27, 0x4b, 0xf5, 0x18, 0x62, 0x32, 0x69, 0xa8, 0xd5, 0x8b, 0x1f,
|
|
0x01, 0x00, 0x00, 0xff, 0xff, 0xfe, 0x7b, 0x57, 0x93, 0x12, 0x05, 0x00, 0x00,
|
|
}
|
|
|