You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
456 lines
18 KiB
Go
456 lines
18 KiB
Go
8 years ago
|
// Code generated by protoc-gen-go.
|
||
|
// source: toolevents.proto
|
||
|
// DO NOT EDIT!
|
||
|
|
||
|
package dota
|
||
|
|
||
|
import proto "github.com/golang/protobuf/proto"
|
||
|
import fmt "fmt"
|
||
|
import math "math"
|
||
|
|
||
|
// Reference imports to suppress errors if they are not otherwise used.
|
||
|
var _ = proto.Marshal
|
||
|
var _ = fmt.Errorf
|
||
|
var _ = math.Inf
|
||
|
|
||
|
type ChangeMapToolEvent struct {
|
||
|
Mapname *string `protobuf:"bytes,1,opt,name=mapname" json:"mapname,omitempty"`
|
||
|
XXX_unrecognized []byte `json:"-"`
|
||
|
}
|
||
|
|
||
|
func (m *ChangeMapToolEvent) Reset() { *m = ChangeMapToolEvent{} }
|
||
|
func (m *ChangeMapToolEvent) String() string { return proto.CompactTextString(m) }
|
||
|
func (*ChangeMapToolEvent) ProtoMessage() {}
|
||
|
func (*ChangeMapToolEvent) Descriptor() ([]byte, []int) { return fileDescriptor39, []int{0} }
|
||
|
|
||
|
func (m *ChangeMapToolEvent) GetMapname() string {
|
||
|
if m != nil && m.Mapname != nil {
|
||
|
return *m.Mapname
|
||
|
}
|
||
|
return ""
|
||
|
}
|
||
|
|
||
|
type TraceRayServerToolEvent struct {
|
||
|
Start *CMsgVector `protobuf:"bytes,1,opt,name=start" json:"start,omitempty"`
|
||
|
End *CMsgVector `protobuf:"bytes,2,opt,name=end" json:"end,omitempty"`
|
||
|
XXX_unrecognized []byte `json:"-"`
|
||
|
}
|
||
|
|
||
|
func (m *TraceRayServerToolEvent) Reset() { *m = TraceRayServerToolEvent{} }
|
||
|
func (m *TraceRayServerToolEvent) String() string { return proto.CompactTextString(m) }
|
||
|
func (*TraceRayServerToolEvent) ProtoMessage() {}
|
||
|
func (*TraceRayServerToolEvent) Descriptor() ([]byte, []int) { return fileDescriptor39, []int{1} }
|
||
|
|
||
|
func (m *TraceRayServerToolEvent) GetStart() *CMsgVector {
|
||
|
if m != nil {
|
||
|
return m.Start
|
||
|
}
|
||
|
return nil
|
||
|
}
|
||
|
|
||
|
func (m *TraceRayServerToolEvent) GetEnd() *CMsgVector {
|
||
|
if m != nil {
|
||
|
return m.End
|
||
|
}
|
||
|
return nil
|
||
|
}
|
||
|
|
||
|
type ToolTraceRayResult struct {
|
||
|
Hit *bool `protobuf:"varint,1,opt,name=hit" json:"hit,omitempty"`
|
||
|
Impact *CMsgVector `protobuf:"bytes,2,opt,name=impact" json:"impact,omitempty"`
|
||
|
Normal *CMsgVector `protobuf:"bytes,3,opt,name=normal" json:"normal,omitempty"`
|
||
|
Distance *float32 `protobuf:"fixed32,4,opt,name=distance" json:"distance,omitempty"`
|
||
|
Fraction *float32 `protobuf:"fixed32,5,opt,name=fraction" json:"fraction,omitempty"`
|
||
|
Ehandle *int32 `protobuf:"varint,6,opt,name=ehandle" json:"ehandle,omitempty"`
|
||
|
XXX_unrecognized []byte `json:"-"`
|
||
|
}
|
||
|
|
||
|
func (m *ToolTraceRayResult) Reset() { *m = ToolTraceRayResult{} }
|
||
|
func (m *ToolTraceRayResult) String() string { return proto.CompactTextString(m) }
|
||
|
func (*ToolTraceRayResult) ProtoMessage() {}
|
||
|
func (*ToolTraceRayResult) Descriptor() ([]byte, []int) { return fileDescriptor39, []int{2} }
|
||
|
|
||
|
func (m *ToolTraceRayResult) GetHit() bool {
|
||
|
if m != nil && m.Hit != nil {
|
||
|
return *m.Hit
|
||
|
}
|
||
|
return false
|
||
|
}
|
||
|
|
||
|
func (m *ToolTraceRayResult) GetImpact() *CMsgVector {
|
||
|
if m != nil {
|
||
|
return m.Impact
|
||
|
}
|
||
|
return nil
|
||
|
}
|
||
|
|
||
|
func (m *ToolTraceRayResult) GetNormal() *CMsgVector {
|
||
|
if m != nil {
|
||
|
return m.Normal
|
||
|
}
|
||
|
return nil
|
||
|
}
|
||
|
|
||
|
func (m *ToolTraceRayResult) GetDistance() float32 {
|
||
|
if m != nil && m.Distance != nil {
|
||
|
return *m.Distance
|
||
|
}
|
||
|
return 0
|
||
|
}
|
||
|
|
||
|
func (m *ToolTraceRayResult) GetFraction() float32 {
|
||
|
if m != nil && m.Fraction != nil {
|
||
|
return *m.Fraction
|
||
|
}
|
||
|
return 0
|
||
|
}
|
||
|
|
||
|
func (m *ToolTraceRayResult) GetEhandle() int32 {
|
||
|
if m != nil && m.Ehandle != nil {
|
||
|
return *m.Ehandle
|
||
|
}
|
||
|
return 0
|
||
|
}
|
||
|
|
||
|
type SpawnEntityToolEvent struct {
|
||
|
EntityKeyvalues []byte `protobuf:"bytes,1,opt,name=entity_keyvalues" json:"entity_keyvalues,omitempty"`
|
||
|
Clientsideentity *bool `protobuf:"varint,2,opt,name=clientsideentity" json:"clientsideentity,omitempty"`
|
||
|
XXX_unrecognized []byte `json:"-"`
|
||
|
}
|
||
|
|
||
|
func (m *SpawnEntityToolEvent) Reset() { *m = SpawnEntityToolEvent{} }
|
||
|
func (m *SpawnEntityToolEvent) String() string { return proto.CompactTextString(m) }
|
||
|
func (*SpawnEntityToolEvent) ProtoMessage() {}
|
||
|
func (*SpawnEntityToolEvent) Descriptor() ([]byte, []int) { return fileDescriptor39, []int{3} }
|
||
|
|
||
|
func (m *SpawnEntityToolEvent) GetEntityKeyvalues() []byte {
|
||
|
if m != nil {
|
||
|
return m.EntityKeyvalues
|
||
|
}
|
||
|
return nil
|
||
|
}
|
||
|
|
||
|
func (m *SpawnEntityToolEvent) GetClientsideentity() bool {
|
||
|
if m != nil && m.Clientsideentity != nil {
|
||
|
return *m.Clientsideentity
|
||
|
}
|
||
|
return false
|
||
|
}
|
||
|
|
||
|
type SpawnEntityToolEventResult struct {
|
||
|
Ehandle *int32 `protobuf:"varint,1,opt,name=ehandle" json:"ehandle,omitempty"`
|
||
|
XXX_unrecognized []byte `json:"-"`
|
||
|
}
|
||
|
|
||
|
func (m *SpawnEntityToolEventResult) Reset() { *m = SpawnEntityToolEventResult{} }
|
||
|
func (m *SpawnEntityToolEventResult) String() string { return proto.CompactTextString(m) }
|
||
|
func (*SpawnEntityToolEventResult) ProtoMessage() {}
|
||
|
func (*SpawnEntityToolEventResult) Descriptor() ([]byte, []int) { return fileDescriptor39, []int{4} }
|
||
|
|
||
|
func (m *SpawnEntityToolEventResult) GetEhandle() int32 {
|
||
|
if m != nil && m.Ehandle != nil {
|
||
|
return *m.Ehandle
|
||
|
}
|
||
|
return 0
|
||
|
}
|
||
|
|
||
|
type DestroyEntityToolEvent struct {
|
||
|
Ehandle *int32 `protobuf:"varint,1,opt,name=ehandle" json:"ehandle,omitempty"`
|
||
|
XXX_unrecognized []byte `json:"-"`
|
||
|
}
|
||
|
|
||
|
func (m *DestroyEntityToolEvent) Reset() { *m = DestroyEntityToolEvent{} }
|
||
|
func (m *DestroyEntityToolEvent) String() string { return proto.CompactTextString(m) }
|
||
|
func (*DestroyEntityToolEvent) ProtoMessage() {}
|
||
|
func (*DestroyEntityToolEvent) Descriptor() ([]byte, []int) { return fileDescriptor39, []int{5} }
|
||
|
|
||
|
func (m *DestroyEntityToolEvent) GetEhandle() int32 {
|
||
|
if m != nil && m.Ehandle != nil {
|
||
|
return *m.Ehandle
|
||
|
}
|
||
|
return 0
|
||
|
}
|
||
|
|
||
|
type DestroyAllEntitiesToolEvent struct {
|
||
|
XXX_unrecognized []byte `json:"-"`
|
||
|
}
|
||
|
|
||
|
func (m *DestroyAllEntitiesToolEvent) Reset() { *m = DestroyAllEntitiesToolEvent{} }
|
||
|
func (m *DestroyAllEntitiesToolEvent) String() string { return proto.CompactTextString(m) }
|
||
|
func (*DestroyAllEntitiesToolEvent) ProtoMessage() {}
|
||
|
func (*DestroyAllEntitiesToolEvent) Descriptor() ([]byte, []int) { return fileDescriptor39, []int{6} }
|
||
|
|
||
|
type RestartMapToolEvent struct {
|
||
|
XXX_unrecognized []byte `json:"-"`
|
||
|
}
|
||
|
|
||
|
func (m *RestartMapToolEvent) Reset() { *m = RestartMapToolEvent{} }
|
||
|
func (m *RestartMapToolEvent) String() string { return proto.CompactTextString(m) }
|
||
|
func (*RestartMapToolEvent) ProtoMessage() {}
|
||
|
func (*RestartMapToolEvent) Descriptor() ([]byte, []int) { return fileDescriptor39, []int{7} }
|
||
|
|
||
|
type ToolEvent_GetEntityInfo struct {
|
||
|
Ehandle *int32 `protobuf:"varint,1,opt,name=ehandle" json:"ehandle,omitempty"`
|
||
|
Clientsideentity *bool `protobuf:"varint,2,opt,name=clientsideentity" json:"clientsideentity,omitempty"`
|
||
|
XXX_unrecognized []byte `json:"-"`
|
||
|
}
|
||
|
|
||
|
func (m *ToolEvent_GetEntityInfo) Reset() { *m = ToolEvent_GetEntityInfo{} }
|
||
|
func (m *ToolEvent_GetEntityInfo) String() string { return proto.CompactTextString(m) }
|
||
|
func (*ToolEvent_GetEntityInfo) ProtoMessage() {}
|
||
|
func (*ToolEvent_GetEntityInfo) Descriptor() ([]byte, []int) { return fileDescriptor39, []int{8} }
|
||
|
|
||
|
func (m *ToolEvent_GetEntityInfo) GetEhandle() int32 {
|
||
|
if m != nil && m.Ehandle != nil {
|
||
|
return *m.Ehandle
|
||
|
}
|
||
|
return 0
|
||
|
}
|
||
|
|
||
|
func (m *ToolEvent_GetEntityInfo) GetClientsideentity() bool {
|
||
|
if m != nil && m.Clientsideentity != nil {
|
||
|
return *m.Clientsideentity
|
||
|
}
|
||
|
return false
|
||
|
}
|
||
|
|
||
|
type ToolEvent_GetEntityInfoResult struct {
|
||
|
Cppclass *string `protobuf:"bytes,1,opt,name=cppclass,def=shithead" json:"cppclass,omitempty"`
|
||
|
Classname *string `protobuf:"bytes,2,opt,name=classname" json:"classname,omitempty"`
|
||
|
Name *string `protobuf:"bytes,3,opt,name=name" json:"name,omitempty"`
|
||
|
Origin *CMsgVector `protobuf:"bytes,4,opt,name=origin" json:"origin,omitempty"`
|
||
|
Mins *CMsgVector `protobuf:"bytes,5,opt,name=mins" json:"mins,omitempty"`
|
||
|
Maxs *CMsgVector `protobuf:"bytes,6,opt,name=maxs" json:"maxs,omitempty"`
|
||
|
XXX_unrecognized []byte `json:"-"`
|
||
|
}
|
||
|
|
||
|
func (m *ToolEvent_GetEntityInfoResult) Reset() { *m = ToolEvent_GetEntityInfoResult{} }
|
||
|
func (m *ToolEvent_GetEntityInfoResult) String() string { return proto.CompactTextString(m) }
|
||
|
func (*ToolEvent_GetEntityInfoResult) ProtoMessage() {}
|
||
|
func (*ToolEvent_GetEntityInfoResult) Descriptor() ([]byte, []int) { return fileDescriptor39, []int{9} }
|
||
|
|
||
|
const Default_ToolEvent_GetEntityInfoResult_Cppclass string = "shithead"
|
||
|
|
||
|
func (m *ToolEvent_GetEntityInfoResult) GetCppclass() string {
|
||
|
if m != nil && m.Cppclass != nil {
|
||
|
return *m.Cppclass
|
||
|
}
|
||
|
return Default_ToolEvent_GetEntityInfoResult_Cppclass
|
||
|
}
|
||
|
|
||
|
func (m *ToolEvent_GetEntityInfoResult) GetClassname() string {
|
||
|
if m != nil && m.Classname != nil {
|
||
|
return *m.Classname
|
||
|
}
|
||
|
return ""
|
||
|
}
|
||
|
|
||
|
func (m *ToolEvent_GetEntityInfoResult) GetName() string {
|
||
|
if m != nil && m.Name != nil {
|
||
|
return *m.Name
|
||
|
}
|
||
|
return ""
|
||
|
}
|
||
|
|
||
|
func (m *ToolEvent_GetEntityInfoResult) GetOrigin() *CMsgVector {
|
||
|
if m != nil {
|
||
|
return m.Origin
|
||
|
}
|
||
|
return nil
|
||
|
}
|
||
|
|
||
|
func (m *ToolEvent_GetEntityInfoResult) GetMins() *CMsgVector {
|
||
|
if m != nil {
|
||
|
return m.Mins
|
||
|
}
|
||
|
return nil
|
||
|
}
|
||
|
|
||
|
func (m *ToolEvent_GetEntityInfoResult) GetMaxs() *CMsgVector {
|
||
|
if m != nil {
|
||
|
return m.Maxs
|
||
|
}
|
||
|
return nil
|
||
|
}
|
||
|
|
||
|
type ToolEvent_GetEntityInputs struct {
|
||
|
Ehandle *int32 `protobuf:"varint,1,opt,name=ehandle" json:"ehandle,omitempty"`
|
||
|
Clientsideentity *bool `protobuf:"varint,2,opt,name=clientsideentity" json:"clientsideentity,omitempty"`
|
||
|
XXX_unrecognized []byte `json:"-"`
|
||
|
}
|
||
|
|
||
|
func (m *ToolEvent_GetEntityInputs) Reset() { *m = ToolEvent_GetEntityInputs{} }
|
||
|
func (m *ToolEvent_GetEntityInputs) String() string { return proto.CompactTextString(m) }
|
||
|
func (*ToolEvent_GetEntityInputs) ProtoMessage() {}
|
||
|
func (*ToolEvent_GetEntityInputs) Descriptor() ([]byte, []int) { return fileDescriptor39, []int{10} }
|
||
|
|
||
|
func (m *ToolEvent_GetEntityInputs) GetEhandle() int32 {
|
||
|
if m != nil && m.Ehandle != nil {
|
||
|
return *m.Ehandle
|
||
|
}
|
||
|
return 0
|
||
|
}
|
||
|
|
||
|
func (m *ToolEvent_GetEntityInputs) GetClientsideentity() bool {
|
||
|
if m != nil && m.Clientsideentity != nil {
|
||
|
return *m.Clientsideentity
|
||
|
}
|
||
|
return false
|
||
|
}
|
||
|
|
||
|
type ToolEvent_GetEntityInputsResult struct {
|
||
|
InputList []string `protobuf:"bytes,1,rep,name=input_list" json:"input_list,omitempty"`
|
||
|
XXX_unrecognized []byte `json:"-"`
|
||
|
}
|
||
|
|
||
|
func (m *ToolEvent_GetEntityInputsResult) Reset() { *m = ToolEvent_GetEntityInputsResult{} }
|
||
|
func (m *ToolEvent_GetEntityInputsResult) String() string { return proto.CompactTextString(m) }
|
||
|
func (*ToolEvent_GetEntityInputsResult) ProtoMessage() {}
|
||
|
func (*ToolEvent_GetEntityInputsResult) Descriptor() ([]byte, []int) {
|
||
|
return fileDescriptor39, []int{11}
|
||
|
}
|
||
|
|
||
|
func (m *ToolEvent_GetEntityInputsResult) GetInputList() []string {
|
||
|
if m != nil {
|
||
|
return m.InputList
|
||
|
}
|
||
|
return nil
|
||
|
}
|
||
|
|
||
|
type ToolEvent_FireEntityInput struct {
|
||
|
Ehandle *int32 `protobuf:"varint,1,opt,name=ehandle" json:"ehandle,omitempty"`
|
||
|
Clientsideentity *bool `protobuf:"varint,2,opt,name=clientsideentity" json:"clientsideentity,omitempty"`
|
||
|
InputName *string `protobuf:"bytes,3,opt,name=input_name" json:"input_name,omitempty"`
|
||
|
InputParam *string `protobuf:"bytes,4,opt,name=input_param" json:"input_param,omitempty"`
|
||
|
XXX_unrecognized []byte `json:"-"`
|
||
|
}
|
||
|
|
||
|
func (m *ToolEvent_FireEntityInput) Reset() { *m = ToolEvent_FireEntityInput{} }
|
||
|
func (m *ToolEvent_FireEntityInput) String() string { return proto.CompactTextString(m) }
|
||
|
func (*ToolEvent_FireEntityInput) ProtoMessage() {}
|
||
|
func (*ToolEvent_FireEntityInput) Descriptor() ([]byte, []int) { return fileDescriptor39, []int{12} }
|
||
|
|
||
|
func (m *ToolEvent_FireEntityInput) GetEhandle() int32 {
|
||
|
if m != nil && m.Ehandle != nil {
|
||
|
return *m.Ehandle
|
||
|
}
|
||
|
return 0
|
||
|
}
|
||
|
|
||
|
func (m *ToolEvent_FireEntityInput) GetClientsideentity() bool {
|
||
|
if m != nil && m.Clientsideentity != nil {
|
||
|
return *m.Clientsideentity
|
||
|
}
|
||
|
return false
|
||
|
}
|
||
|
|
||
|
func (m *ToolEvent_FireEntityInput) GetInputName() string {
|
||
|
if m != nil && m.InputName != nil {
|
||
|
return *m.InputName
|
||
|
}
|
||
|
return ""
|
||
|
}
|
||
|
|
||
|
func (m *ToolEvent_FireEntityInput) GetInputParam() string {
|
||
|
if m != nil && m.InputParam != nil {
|
||
|
return *m.InputParam
|
||
|
}
|
||
|
return ""
|
||
|
}
|
||
|
|
||
|
type ToolEvent_SFMRecordingStateChanged struct {
|
||
|
Isrecording *bool `protobuf:"varint,1,opt,name=isrecording" json:"isrecording,omitempty"`
|
||
|
XXX_unrecognized []byte `json:"-"`
|
||
|
}
|
||
|
|
||
|
func (m *ToolEvent_SFMRecordingStateChanged) Reset() { *m = ToolEvent_SFMRecordingStateChanged{} }
|
||
|
func (m *ToolEvent_SFMRecordingStateChanged) String() string { return proto.CompactTextString(m) }
|
||
|
func (*ToolEvent_SFMRecordingStateChanged) ProtoMessage() {}
|
||
|
func (*ToolEvent_SFMRecordingStateChanged) Descriptor() ([]byte, []int) {
|
||
|
return fileDescriptor39, []int{13}
|
||
|
}
|
||
|
|
||
|
func (m *ToolEvent_SFMRecordingStateChanged) GetIsrecording() bool {
|
||
|
if m != nil && m.Isrecording != nil {
|
||
|
return *m.Isrecording
|
||
|
}
|
||
|
return false
|
||
|
}
|
||
|
|
||
|
type ToolEvent_SFMToolActiveStateChanged struct {
|
||
|
Isactive *bool `protobuf:"varint,1,opt,name=isactive" json:"isactive,omitempty"`
|
||
|
XXX_unrecognized []byte `json:"-"`
|
||
|
}
|
||
|
|
||
|
func (m *ToolEvent_SFMToolActiveStateChanged) Reset() { *m = ToolEvent_SFMToolActiveStateChanged{} }
|
||
|
func (m *ToolEvent_SFMToolActiveStateChanged) String() string { return proto.CompactTextString(m) }
|
||
|
func (*ToolEvent_SFMToolActiveStateChanged) ProtoMessage() {}
|
||
|
func (*ToolEvent_SFMToolActiveStateChanged) Descriptor() ([]byte, []int) {
|
||
|
return fileDescriptor39, []int{14}
|
||
|
}
|
||
|
|
||
|
func (m *ToolEvent_SFMToolActiveStateChanged) GetIsactive() bool {
|
||
|
if m != nil && m.Isactive != nil {
|
||
|
return *m.Isactive
|
||
|
}
|
||
|
return false
|
||
|
}
|
||
|
|
||
|
func init() {
|
||
|
proto.RegisterType((*ChangeMapToolEvent)(nil), "dota.ChangeMapToolEvent")
|
||
|
proto.RegisterType((*TraceRayServerToolEvent)(nil), "dota.TraceRayServerToolEvent")
|
||
|
proto.RegisterType((*ToolTraceRayResult)(nil), "dota.ToolTraceRayResult")
|
||
|
proto.RegisterType((*SpawnEntityToolEvent)(nil), "dota.SpawnEntityToolEvent")
|
||
|
proto.RegisterType((*SpawnEntityToolEventResult)(nil), "dota.SpawnEntityToolEventResult")
|
||
|
proto.RegisterType((*DestroyEntityToolEvent)(nil), "dota.DestroyEntityToolEvent")
|
||
|
proto.RegisterType((*DestroyAllEntitiesToolEvent)(nil), "dota.DestroyAllEntitiesToolEvent")
|
||
|
proto.RegisterType((*RestartMapToolEvent)(nil), "dota.RestartMapToolEvent")
|
||
|
proto.RegisterType((*ToolEvent_GetEntityInfo)(nil), "dota.ToolEvent_GetEntityInfo")
|
||
|
proto.RegisterType((*ToolEvent_GetEntityInfoResult)(nil), "dota.ToolEvent_GetEntityInfoResult")
|
||
|
proto.RegisterType((*ToolEvent_GetEntityInputs)(nil), "dota.ToolEvent_GetEntityInputs")
|
||
|
proto.RegisterType((*ToolEvent_GetEntityInputsResult)(nil), "dota.ToolEvent_GetEntityInputsResult")
|
||
|
proto.RegisterType((*ToolEvent_FireEntityInput)(nil), "dota.ToolEvent_FireEntityInput")
|
||
|
proto.RegisterType((*ToolEvent_SFMRecordingStateChanged)(nil), "dota.ToolEvent_SFMRecordingStateChanged")
|
||
|
proto.RegisterType((*ToolEvent_SFMToolActiveStateChanged)(nil), "dota.ToolEvent_SFMToolActiveStateChanged")
|
||
|
}
|
||
|
|
||
|
func init() { proto.RegisterFile("toolevents.proto", fileDescriptor39) }
|
||
|
|
||
|
var fileDescriptor39 = []byte{
|
||
|
// 539 bytes of a gzipped FileDescriptorProto
|
||
|
0x1f, 0x8b, 0x08, 0x00, 0x00, 0x09, 0x6e, 0x88, 0x02, 0xff, 0x94, 0x54, 0xc1, 0x6e, 0xd3, 0x40,
|
||
|
0x10, 0xc5, 0x75, 0x52, 0x92, 0x49, 0x25, 0x82, 0x0b, 0xc5, 0x04, 0x85, 0x56, 0x46, 0x48, 0x70,
|
||
|
0x20, 0x07, 0x24, 0x84, 0xe0, 0x56, 0xda, 0x06, 0x81, 0x94, 0x4b, 0x52, 0x21, 0x71, 0x8a, 0x06,
|
||
|
0x7b, 0x9a, 0xac, 0x6a, 0xef, 0xae, 0x76, 0x37, 0x29, 0xb9, 0xf1, 0x1d, 0x7c, 0x0c, 0xdf, 0xc6,
|
||
|
0xee, 0x3a, 0x21, 0x29, 0x8d, 0x2b, 0xf5, 0x38, 0x33, 0x6f, 0xde, 0xdb, 0x99, 0xe7, 0x31, 0xb4,
|
||
|
0x8d, 0x10, 0x39, 0xcd, 0x89, 0x1b, 0xdd, 0x93, 0x4a, 0x18, 0x11, 0xd5, 0x32, 0x61, 0xb0, 0x73,
|
||
|
0xc0, 0xc9, 0x5c, 0x09, 0x75, 0xf9, 0x03, 0x35, 0x99, 0x85, 0xa4, 0x65, 0x35, 0x79, 0x09, 0xd1,
|
||
|
0xc9, 0x14, 0xf9, 0x84, 0x06, 0x28, 0xcf, 0x6d, 0xeb, 0x99, 0x6b, 0x8d, 0x1e, 0xc0, 0xfd, 0x02,
|
||
|
0x25, 0xc7, 0x82, 0xe2, 0xe0, 0x28, 0x78, 0xd5, 0x4c, 0xbe, 0xc3, 0x93, 0x73, 0x85, 0x29, 0x0d,
|
||
|
0x71, 0x31, 0x22, 0x35, 0x27, 0xb5, 0xc6, 0x1e, 0x42, 0x5d, 0x1b, 0x54, 0xc6, 0x23, 0x5b, 0x6f,
|
||
|
0xdb, 0x3d, 0xa7, 0xd7, 0x3b, 0x19, 0xe8, 0xc9, 0x37, 0x4a, 0x8d, 0x50, 0x51, 0x17, 0x42, 0xe2,
|
||
|
0x59, 0xbc, 0xb3, 0xbd, 0x9c, 0xfc, 0x0e, 0x20, 0x72, 0x6c, 0x2b, 0xfe, 0x21, 0xe9, 0x59, 0x6e,
|
||
|
0xa2, 0x16, 0x84, 0x53, 0x56, 0x92, 0x36, 0xa2, 0x23, 0xd8, 0x65, 0x85, 0xc4, 0xd4, 0x54, 0xb1,
|
||
|
0x38, 0x04, 0x17, 0xaa, 0xc0, 0x3c, 0x0e, 0x2b, 0x10, 0x6d, 0x68, 0x64, 0xcc, 0xbe, 0x94, 0xa7,
|
||
|
0x14, 0xd7, 0x2c, 0x66, 0xc7, 0x65, 0x2e, 0xac, 0xa8, 0x61, 0x82, 0xc7, 0x75, 0x9f, 0xb1, 0x73,
|
||
|
0x93, 0xdd, 0x46, 0x96, 0x53, 0xbc, 0x6b, 0x13, 0xf5, 0xe4, 0x2b, 0x3c, 0x1a, 0x49, 0xbc, 0xe2,
|
||
|
0x67, 0xdc, 0x30, 0xb3, 0x58, 0x0f, 0x1d, 0x43, 0x9b, 0x7c, 0x6a, 0x7c, 0x49, 0x8b, 0x39, 0xe6,
|
||
|
0x33, 0xd2, 0xfe, 0xa9, 0x7b, 0xae, 0x92, 0xe6, 0xcc, 0xed, 0x9f, 0x65, 0x54, 0x62, 0xfc, 0xa3,
|
||
|
0x1b, 0xc9, 0x1b, 0xe8, 0x6c, 0xe3, 0x5a, 0xce, 0xbb, 0x21, 0x1d, 0x78, 0xe9, 0xd7, 0x70, 0x70,
|
||
|
0x4a, 0xda, 0x28, 0xb1, 0xf8, 0x5f, 0xfc, 0x06, 0xb4, 0x0b, 0xcf, 0x96, 0xd0, 0xe3, 0x3c, 0xf7,
|
||
|
0x68, 0x46, 0xfa, 0x1f, 0x3e, 0x79, 0x0c, 0xfb, 0x56, 0xc4, 0x79, 0xb4, 0x69, 0x72, 0x72, 0x6a,
|
||
|
0x3d, 0x5d, 0x05, 0xe3, 0xcf, 0x64, 0x4a, 0x99, 0x2f, 0xfc, 0x42, 0xdc, 0x50, 0xb8, 0x65, 0xaa,
|
||
|
0x3f, 0x01, 0x74, 0x2b, 0x68, 0x96, 0x93, 0x75, 0xa0, 0x91, 0x4a, 0x99, 0xe6, 0xa8, 0xcb, 0x1d,
|
||
|
0x35, 0x3f, 0x36, 0xb4, 0xb5, 0x76, 0x4a, 0x98, 0x45, 0x0f, 0xa1, 0xe9, 0x0b, 0xfe, 0x53, 0x73,
|
||
|
0x84, 0xcd, 0x68, 0x0f, 0x6a, 0x3e, 0x0a, 0x7d, 0x64, 0x7d, 0x15, 0x8a, 0x4d, 0x18, 0xf7, 0x9e,
|
||
|
0x6d, 0xf3, 0xf5, 0x39, 0xd4, 0x0a, 0xc6, 0xb5, 0x77, 0xb0, 0xaa, 0x8e, 0x3f, 0xb5, 0x37, 0x74,
|
||
|
0xdb, 0xf7, 0xd7, 0x87, 0xa7, 0x5b, 0xdf, 0x2f, 0x67, 0x46, 0xdf, 0x65, 0x11, 0xef, 0xe0, 0xb0,
|
||
|
0x92, 0x67, 0xb9, 0x89, 0x08, 0x80, 0xb9, 0x78, 0x9c, 0xdb, 0x0f, 0xd1, 0x12, 0x86, 0xf6, 0xb2,
|
||
|
0xc4, 0xa6, 0x7c, 0x9f, 0x29, 0xda, 0xe8, 0xbb, 0x83, 0xfc, 0x9a, 0x7b, 0x63, 0x79, 0xfb, 0xd0,
|
||
|
0x2a, 0x73, 0x12, 0x15, 0x16, 0x7e, 0x83, 0xcd, 0xe4, 0x03, 0x24, 0x6b, 0xc1, 0x51, 0x7f, 0x30,
|
||
|
0xa4, 0x54, 0xa8, 0x8c, 0xf1, 0xc9, 0xc8, 0xa0, 0xa1, 0xf2, 0x67, 0x90, 0xf9, 0x56, 0xad, 0x56,
|
||
|
0xa5, 0xf2, 0x0c, 0x93, 0xf7, 0xf0, 0xe2, 0x5a, 0xab, 0x0b, 0x8e, 0xed, 0xfd, 0xcc, 0xe9, 0x5a,
|
||
|
0xaf, 0xbd, 0x2b, 0xa6, 0xd1, 0xe7, 0xcb, 0xc6, 0x4f, 0xe1, 0xaf, 0xe0, 0xde, 0xdf, 0x00, 0x00,
|
||
|
0x00, 0xff, 0xff, 0x07, 0x35, 0x3d, 0x85, 0x9b, 0x04, 0x00, 0x00,
|
||
|
}
|