// Code generated by protoc-gen-go. DO NOT EDIT. // source: proto/sharding/v1/messages.proto package ethereum_messages_v1 import proto "github.com/golang/protobuf/proto" import fmt "fmt" import math "math" 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 Topic int32 const ( Topic_UNKNOWN Topic = 0 Topic_COLLATION_BODY_REQUEST Topic = 1 Topic_COLLATION_BODY_RESPONSE Topic = 2 Topic_TRANSACTIONS Topic = 3 Topic_BEACON_BLOCK_HASH_ANNOUNCE Topic = 4 Topic_BEACON_BLOCK_REQUEST Topic = 5 Topic_BEACON_BLOCK_RESPONSE Topic = 6 ) var Topic_name = map[int32]string{ 0: "UNKNOWN", 1: "COLLATION_BODY_REQUEST", 2: "COLLATION_BODY_RESPONSE", 3: "TRANSACTIONS", 4: "BEACON_BLOCK_HASH_ANNOUNCE", 5: "BEACON_BLOCK_REQUEST", 6: "BEACON_BLOCK_RESPONSE", } var Topic_value = map[string]int32{ "UNKNOWN": 0, "COLLATION_BODY_REQUEST": 1, "COLLATION_BODY_RESPONSE": 2, "TRANSACTIONS": 3, "BEACON_BLOCK_HASH_ANNOUNCE": 4, "BEACON_BLOCK_REQUEST": 5, "BEACON_BLOCK_RESPONSE": 6, } func (x Topic) String() string { return proto.EnumName(Topic_name, int32(x)) } func (Topic) EnumDescriptor() ([]byte, []int) { return fileDescriptor_messages_ebbb8b6f046bbe65, []int{0} } type BeaconBlockHashAnnounce struct { Hash []byte `protobuf:"bytes,1,opt,name=hash,proto3" json:"hash,omitempty"` XXX_NoUnkeyedLiteral struct{} `json:"-"` XXX_unrecognized []byte `json:"-"` XXX_sizecache int32 `json:"-"` } func (m *BeaconBlockHashAnnounce) Reset() { *m = BeaconBlockHashAnnounce{} } func (m *BeaconBlockHashAnnounce) String() string { return proto.CompactTextString(m) } func (*BeaconBlockHashAnnounce) ProtoMessage() {} func (*BeaconBlockHashAnnounce) Descriptor() ([]byte, []int) { return fileDescriptor_messages_ebbb8b6f046bbe65, []int{0} } func (m *BeaconBlockHashAnnounce) XXX_Unmarshal(b []byte) error { return xxx_messageInfo_BeaconBlockHashAnnounce.Unmarshal(m, b) } func (m *BeaconBlockHashAnnounce) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { return xxx_messageInfo_BeaconBlockHashAnnounce.Marshal(b, m, deterministic) } func (dst *BeaconBlockHashAnnounce) XXX_Merge(src proto.Message) { xxx_messageInfo_BeaconBlockHashAnnounce.Merge(dst, src) } func (m *BeaconBlockHashAnnounce) XXX_Size() int { return xxx_messageInfo_BeaconBlockHashAnnounce.Size(m) } func (m *BeaconBlockHashAnnounce) XXX_DiscardUnknown() { xxx_messageInfo_BeaconBlockHashAnnounce.DiscardUnknown(m) } var xxx_messageInfo_BeaconBlockHashAnnounce proto.InternalMessageInfo func (m *BeaconBlockHashAnnounce) GetHash() []byte { if m != nil { return m.Hash } return nil } type BeaconBlockRequest struct { Hash []byte `protobuf:"bytes,1,opt,name=hash,proto3" json:"hash,omitempty"` XXX_NoUnkeyedLiteral struct{} `json:"-"` XXX_unrecognized []byte `json:"-"` XXX_sizecache int32 `json:"-"` } func (m *BeaconBlockRequest) Reset() { *m = BeaconBlockRequest{} } func (m *BeaconBlockRequest) String() string { return proto.CompactTextString(m) } func (*BeaconBlockRequest) ProtoMessage() {} func (*BeaconBlockRequest) Descriptor() ([]byte, []int) { return fileDescriptor_messages_ebbb8b6f046bbe65, []int{1} } func (m *BeaconBlockRequest) XXX_Unmarshal(b []byte) error { return xxx_messageInfo_BeaconBlockRequest.Unmarshal(m, b) } func (m *BeaconBlockRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { return xxx_messageInfo_BeaconBlockRequest.Marshal(b, m, deterministic) } func (dst *BeaconBlockRequest) XXX_Merge(src proto.Message) { xxx_messageInfo_BeaconBlockRequest.Merge(dst, src) } func (m *BeaconBlockRequest) XXX_Size() int { return xxx_messageInfo_BeaconBlockRequest.Size(m) } func (m *BeaconBlockRequest) XXX_DiscardUnknown() { xxx_messageInfo_BeaconBlockRequest.DiscardUnknown(m) } var xxx_messageInfo_BeaconBlockRequest proto.InternalMessageInfo func (m *BeaconBlockRequest) GetHash() []byte { if m != nil { return m.Hash } return nil } type BeaconBlockResponse struct { ParentHash []byte `protobuf:"bytes,1,opt,name=parent_hash,json=parentHash,proto3" json:"parent_hash,omitempty"` SlotNumber uint64 `protobuf:"varint,2,opt,name=slot_number,json=slotNumber,proto3" json:"slot_number,omitempty"` RandaoReveal []byte `protobuf:"bytes,3,opt,name=randao_reveal,json=randaoReveal,proto3" json:"randao_reveal,omitempty"` AttestationBitmask []byte `protobuf:"bytes,4,opt,name=attestation_bitmask,json=attestationBitmask,proto3" json:"attestation_bitmask,omitempty"` AttestationAggregateSig []uint32 `protobuf:"varint,5,rep,packed,name=attestation_aggregate_sig,json=attestationAggregateSig,proto3" json:"attestation_aggregate_sig,omitempty"` ShardAggregateVotes []*AggregateVote `protobuf:"bytes,6,rep,name=shard_aggregate_votes,json=shardAggregateVotes,proto3" json:"shard_aggregate_votes,omitempty"` MainChainRef []byte `protobuf:"bytes,7,opt,name=main_chain_ref,json=mainChainRef,proto3" json:"main_chain_ref,omitempty"` ActiveStateHash []byte `protobuf:"bytes,8,opt,name=active_state_hash,json=activeStateHash,proto3" json:"active_state_hash,omitempty"` CrystallizedStateHash []byte `protobuf:"bytes,9,opt,name=crystallized_state_hash,json=crystallizedStateHash,proto3" json:"crystallized_state_hash,omitempty"` Timestamp *timestamp.Timestamp `protobuf:"bytes,10,opt,name=timestamp,proto3" json:"timestamp,omitempty"` XXX_NoUnkeyedLiteral struct{} `json:"-"` XXX_unrecognized []byte `json:"-"` XXX_sizecache int32 `json:"-"` } func (m *BeaconBlockResponse) Reset() { *m = BeaconBlockResponse{} } func (m *BeaconBlockResponse) String() string { return proto.CompactTextString(m) } func (*BeaconBlockResponse) ProtoMessage() {} func (*BeaconBlockResponse) Descriptor() ([]byte, []int) { return fileDescriptor_messages_ebbb8b6f046bbe65, []int{2} } func (m *BeaconBlockResponse) XXX_Unmarshal(b []byte) error { return xxx_messageInfo_BeaconBlockResponse.Unmarshal(m, b) } func (m *BeaconBlockResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { return xxx_messageInfo_BeaconBlockResponse.Marshal(b, m, deterministic) } func (dst *BeaconBlockResponse) XXX_Merge(src proto.Message) { xxx_messageInfo_BeaconBlockResponse.Merge(dst, src) } func (m *BeaconBlockResponse) XXX_Size() int { return xxx_messageInfo_BeaconBlockResponse.Size(m) } func (m *BeaconBlockResponse) XXX_DiscardUnknown() { xxx_messageInfo_BeaconBlockResponse.DiscardUnknown(m) } var xxx_messageInfo_BeaconBlockResponse proto.InternalMessageInfo func (m *BeaconBlockResponse) GetParentHash() []byte { if m != nil { return m.ParentHash } return nil } func (m *BeaconBlockResponse) GetSlotNumber() uint64 { if m != nil { return m.SlotNumber } return 0 } func (m *BeaconBlockResponse) GetRandaoReveal() []byte { if m != nil { return m.RandaoReveal } return nil } func (m *BeaconBlockResponse) GetAttestationBitmask() []byte { if m != nil { return m.AttestationBitmask } return nil } func (m *BeaconBlockResponse) GetAttestationAggregateSig() []uint32 { if m != nil { return m.AttestationAggregateSig } return nil } func (m *BeaconBlockResponse) GetShardAggregateVotes() []*AggregateVote { if m != nil { return m.ShardAggregateVotes } return nil } func (m *BeaconBlockResponse) GetMainChainRef() []byte { if m != nil { return m.MainChainRef } return nil } func (m *BeaconBlockResponse) GetActiveStateHash() []byte { if m != nil { return m.ActiveStateHash } return nil } func (m *BeaconBlockResponse) GetCrystallizedStateHash() []byte { if m != nil { return m.CrystallizedStateHash } return nil } func (m *BeaconBlockResponse) GetTimestamp() *timestamp.Timestamp { if m != nil { return m.Timestamp } return nil } type AggregateVote struct { ShardId uint32 `protobuf:"varint,1,opt,name=shard_id,json=shardId,proto3" json:"shard_id,omitempty"` ShardBlockHash []byte `protobuf:"bytes,2,opt,name=shard_block_hash,json=shardBlockHash,proto3" json:"shard_block_hash,omitempty"` SignerBitmask []byte `protobuf:"bytes,3,opt,name=signer_bitmask,json=signerBitmask,proto3" json:"signer_bitmask,omitempty"` AggregateSig []uint32 `protobuf:"varint,4,rep,packed,name=aggregate_sig,json=aggregateSig,proto3" json:"aggregate_sig,omitempty"` XXX_NoUnkeyedLiteral struct{} `json:"-"` XXX_unrecognized []byte `json:"-"` XXX_sizecache int32 `json:"-"` } func (m *AggregateVote) Reset() { *m = AggregateVote{} } func (m *AggregateVote) String() string { return proto.CompactTextString(m) } func (*AggregateVote) ProtoMessage() {} func (*AggregateVote) Descriptor() ([]byte, []int) { return fileDescriptor_messages_ebbb8b6f046bbe65, []int{3} } func (m *AggregateVote) XXX_Unmarshal(b []byte) error { return xxx_messageInfo_AggregateVote.Unmarshal(m, b) } func (m *AggregateVote) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { return xxx_messageInfo_AggregateVote.Marshal(b, m, deterministic) } func (dst *AggregateVote) XXX_Merge(src proto.Message) { xxx_messageInfo_AggregateVote.Merge(dst, src) } func (m *AggregateVote) XXX_Size() int { return xxx_messageInfo_AggregateVote.Size(m) } func (m *AggregateVote) XXX_DiscardUnknown() { xxx_messageInfo_AggregateVote.DiscardUnknown(m) } var xxx_messageInfo_AggregateVote proto.InternalMessageInfo func (m *AggregateVote) GetShardId() uint32 { if m != nil { return m.ShardId } return 0 } func (m *AggregateVote) GetShardBlockHash() []byte { if m != nil { return m.ShardBlockHash } return nil } func (m *AggregateVote) GetSignerBitmask() []byte { if m != nil { return m.SignerBitmask } return nil } func (m *AggregateVote) GetAggregateSig() []uint32 { if m != nil { return m.AggregateSig } return nil } type CollationBodyRequest struct { ShardId uint64 `protobuf:"varint,1,opt,name=shard_id,json=shardId,proto3" json:"shard_id,omitempty"` Period uint64 `protobuf:"varint,2,opt,name=period,proto3" json:"period,omitempty"` ChunkRoot []byte `protobuf:"bytes,3,opt,name=chunk_root,json=chunkRoot,proto3" json:"chunk_root,omitempty"` ProposerAddress []byte `protobuf:"bytes,4,opt,name=proposer_address,json=proposerAddress,proto3" json:"proposer_address,omitempty"` Signature []byte `protobuf:"bytes,5,opt,name=signature,proto3" json:"signature,omitempty"` XXX_NoUnkeyedLiteral struct{} `json:"-"` XXX_unrecognized []byte `json:"-"` XXX_sizecache int32 `json:"-"` } func (m *CollationBodyRequest) Reset() { *m = CollationBodyRequest{} } func (m *CollationBodyRequest) String() string { return proto.CompactTextString(m) } func (*CollationBodyRequest) ProtoMessage() {} func (*CollationBodyRequest) Descriptor() ([]byte, []int) { return fileDescriptor_messages_ebbb8b6f046bbe65, []int{4} } func (m *CollationBodyRequest) XXX_Unmarshal(b []byte) error { return xxx_messageInfo_CollationBodyRequest.Unmarshal(m, b) } func (m *CollationBodyRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { return xxx_messageInfo_CollationBodyRequest.Marshal(b, m, deterministic) } func (dst *CollationBodyRequest) XXX_Merge(src proto.Message) { xxx_messageInfo_CollationBodyRequest.Merge(dst, src) } func (m *CollationBodyRequest) XXX_Size() int { return xxx_messageInfo_CollationBodyRequest.Size(m) } func (m *CollationBodyRequest) XXX_DiscardUnknown() { xxx_messageInfo_CollationBodyRequest.DiscardUnknown(m) } var xxx_messageInfo_CollationBodyRequest proto.InternalMessageInfo func (m *CollationBodyRequest) GetShardId() uint64 { if m != nil { return m.ShardId } return 0 } func (m *CollationBodyRequest) GetPeriod() uint64 { if m != nil { return m.Period } return 0 } func (m *CollationBodyRequest) GetChunkRoot() []byte { if m != nil { return m.ChunkRoot } return nil } func (m *CollationBodyRequest) GetProposerAddress() []byte { if m != nil { return m.ProposerAddress } return nil } func (m *CollationBodyRequest) GetSignature() []byte { if m != nil { return m.Signature } return nil } type CollationBodyResponse struct { HeaderHash []byte `protobuf:"bytes,1,opt,name=header_hash,json=headerHash,proto3" json:"header_hash,omitempty"` Body []byte `protobuf:"bytes,2,opt,name=body,proto3" json:"body,omitempty"` XXX_NoUnkeyedLiteral struct{} `json:"-"` XXX_unrecognized []byte `json:"-"` XXX_sizecache int32 `json:"-"` } func (m *CollationBodyResponse) Reset() { *m = CollationBodyResponse{} } func (m *CollationBodyResponse) String() string { return proto.CompactTextString(m) } func (*CollationBodyResponse) ProtoMessage() {} func (*CollationBodyResponse) Descriptor() ([]byte, []int) { return fileDescriptor_messages_ebbb8b6f046bbe65, []int{5} } func (m *CollationBodyResponse) XXX_Unmarshal(b []byte) error { return xxx_messageInfo_CollationBodyResponse.Unmarshal(m, b) } func (m *CollationBodyResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { return xxx_messageInfo_CollationBodyResponse.Marshal(b, m, deterministic) } func (dst *CollationBodyResponse) XXX_Merge(src proto.Message) { xxx_messageInfo_CollationBodyResponse.Merge(dst, src) } func (m *CollationBodyResponse) XXX_Size() int { return xxx_messageInfo_CollationBodyResponse.Size(m) } func (m *CollationBodyResponse) XXX_DiscardUnknown() { xxx_messageInfo_CollationBodyResponse.DiscardUnknown(m) } var xxx_messageInfo_CollationBodyResponse proto.InternalMessageInfo func (m *CollationBodyResponse) GetHeaderHash() []byte { if m != nil { return m.HeaderHash } return nil } func (m *CollationBodyResponse) GetBody() []byte { if m != nil { return m.Body } return nil } type Transaction struct { Nonce uint64 `protobuf:"varint,1,opt,name=nonce,proto3" json:"nonce,omitempty"` GasPrice uint64 `protobuf:"varint,2,opt,name=gas_price,json=gasPrice,proto3" json:"gas_price,omitempty"` GasLimit uint64 `protobuf:"varint,3,opt,name=gas_limit,json=gasLimit,proto3" json:"gas_limit,omitempty"` Recipient []byte `protobuf:"bytes,4,opt,name=recipient,proto3" json:"recipient,omitempty"` Value uint64 `protobuf:"varint,5,opt,name=value,proto3" json:"value,omitempty"` Input []byte `protobuf:"bytes,6,opt,name=input,proto3" json:"input,omitempty"` Signature *Signature `protobuf:"bytes,7,opt,name=signature,proto3" json:"signature,omitempty"` XXX_NoUnkeyedLiteral struct{} `json:"-"` XXX_unrecognized []byte `json:"-"` XXX_sizecache int32 `json:"-"` } func (m *Transaction) Reset() { *m = Transaction{} } func (m *Transaction) String() string { return proto.CompactTextString(m) } func (*Transaction) ProtoMessage() {} func (*Transaction) Descriptor() ([]byte, []int) { return fileDescriptor_messages_ebbb8b6f046bbe65, []int{6} } func (m *Transaction) XXX_Unmarshal(b []byte) error { return xxx_messageInfo_Transaction.Unmarshal(m, b) } func (m *Transaction) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { return xxx_messageInfo_Transaction.Marshal(b, m, deterministic) } func (dst *Transaction) XXX_Merge(src proto.Message) { xxx_messageInfo_Transaction.Merge(dst, src) } func (m *Transaction) XXX_Size() int { return xxx_messageInfo_Transaction.Size(m) } func (m *Transaction) XXX_DiscardUnknown() { xxx_messageInfo_Transaction.DiscardUnknown(m) } var xxx_messageInfo_Transaction proto.InternalMessageInfo func (m *Transaction) GetNonce() uint64 { if m != nil { return m.Nonce } return 0 } func (m *Transaction) GetGasPrice() uint64 { if m != nil { return m.GasPrice } return 0 } func (m *Transaction) GetGasLimit() uint64 { if m != nil { return m.GasLimit } return 0 } func (m *Transaction) GetRecipient() []byte { if m != nil { return m.Recipient } return nil } func (m *Transaction) GetValue() uint64 { if m != nil { return m.Value } return 0 } func (m *Transaction) GetInput() []byte { if m != nil { return m.Input } return nil } func (m *Transaction) GetSignature() *Signature { if m != nil { return m.Signature } return nil } type Signature struct { V uint64 `protobuf:"varint,1,opt,name=v,proto3" json:"v,omitempty"` R uint64 `protobuf:"varint,2,opt,name=r,proto3" json:"r,omitempty"` S uint64 `protobuf:"varint,3,opt,name=s,proto3" json:"s,omitempty"` XXX_NoUnkeyedLiteral struct{} `json:"-"` XXX_unrecognized []byte `json:"-"` XXX_sizecache int32 `json:"-"` } func (m *Signature) Reset() { *m = Signature{} } func (m *Signature) String() string { return proto.CompactTextString(m) } func (*Signature) ProtoMessage() {} func (*Signature) Descriptor() ([]byte, []int) { return fileDescriptor_messages_ebbb8b6f046bbe65, []int{7} } func (m *Signature) XXX_Unmarshal(b []byte) error { return xxx_messageInfo_Signature.Unmarshal(m, b) } func (m *Signature) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { return xxx_messageInfo_Signature.Marshal(b, m, deterministic) } func (dst *Signature) XXX_Merge(src proto.Message) { xxx_messageInfo_Signature.Merge(dst, src) } func (m *Signature) XXX_Size() int { return xxx_messageInfo_Signature.Size(m) } func (m *Signature) XXX_DiscardUnknown() { xxx_messageInfo_Signature.DiscardUnknown(m) } var xxx_messageInfo_Signature proto.InternalMessageInfo func (m *Signature) GetV() uint64 { if m != nil { return m.V } return 0 } func (m *Signature) GetR() uint64 { if m != nil { return m.R } return 0 } func (m *Signature) GetS() uint64 { if m != nil { return m.S } return 0 } func init() { proto.RegisterType((*BeaconBlockHashAnnounce)(nil), "ethereum.messages.v1.BeaconBlockHashAnnounce") proto.RegisterType((*BeaconBlockRequest)(nil), "ethereum.messages.v1.BeaconBlockRequest") proto.RegisterType((*BeaconBlockResponse)(nil), "ethereum.messages.v1.BeaconBlockResponse") proto.RegisterType((*AggregateVote)(nil), "ethereum.messages.v1.AggregateVote") proto.RegisterType((*CollationBodyRequest)(nil), "ethereum.messages.v1.CollationBodyRequest") proto.RegisterType((*CollationBodyResponse)(nil), "ethereum.messages.v1.CollationBodyResponse") proto.RegisterType((*Transaction)(nil), "ethereum.messages.v1.Transaction") proto.RegisterType((*Signature)(nil), "ethereum.messages.v1.Signature") proto.RegisterEnum("ethereum.messages.v1.Topic", Topic_name, Topic_value) } func init() { proto.RegisterFile("proto/sharding/v1/messages.proto", fileDescriptor_messages_ebbb8b6f046bbe65) } var fileDescriptor_messages_ebbb8b6f046bbe65 = []byte{ // 839 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x6c, 0x54, 0xed, 0x6e, 0xe2, 0x46, 0x14, 0xad, 0x13, 0x20, 0xe1, 0x02, 0x59, 0x3a, 0x49, 0x36, 0x4e, 0xb6, 0x6d, 0x10, 0x69, 0x25, 0xba, 0x52, 0x41, 0xbb, 0x55, 0xab, 0xaa, 0x52, 0x7f, 0x00, 0x45, 0xca, 0x6a, 0x91, 0xd9, 0x1a, 0xd2, 0x55, 0x7f, 0x59, 0x83, 0x3d, 0x31, 0xa3, 0x98, 0x19, 0x77, 0x66, 0x8c, 0x94, 0x3e, 0x40, 0x9f, 0xa3, 0xaf, 0x50, 0xa9, 0xcf, 0xd4, 0xe7, 0xa8, 0x66, 0xc6, 0x06, 0x93, 0xe6, 0x0f, 0xf2, 0x3d, 0xe7, 0xdc, 0x99, 0xfb, 0x71, 0x06, 0xe8, 0xa4, 0x82, 0x2b, 0x3e, 0x90, 0x2b, 0x2c, 0x22, 0xca, 0xe2, 0xc1, 0xe6, 0xcd, 0x60, 0x4d, 0xa4, 0xc4, 0x31, 0x91, 0x7d, 0x43, 0xa1, 0x33, 0xa2, 0x56, 0x44, 0x90, 0x6c, 0xdd, 0xdf, 0x12, 0x9b, 0x37, 0x57, 0xd7, 0x31, 0xe7, 0x71, 0x42, 0x06, 0x46, 0xb3, 0xcc, 0xee, 0x07, 0x8a, 0xae, 0x89, 0x54, 0x78, 0x9d, 0xda, 0xb4, 0xee, 0x37, 0x70, 0x31, 0x22, 0x38, 0xe4, 0x6c, 0x94, 0xf0, 0xf0, 0xe1, 0x16, 0xcb, 0xd5, 0x90, 0x31, 0x9e, 0xb1, 0x90, 0x20, 0x04, 0x95, 0x15, 0x96, 0x2b, 0xd7, 0xe9, 0x38, 0xbd, 0xa6, 0x6f, 0xbe, 0xbb, 0x3d, 0x40, 0x25, 0xb9, 0x4f, 0x7e, 0xcf, 0x88, 0x54, 0xcf, 0x2a, 0xff, 0xac, 0xc0, 0xe9, 0x9e, 0x54, 0xa6, 0x9c, 0x49, 0x82, 0xae, 0xa1, 0x91, 0x62, 0x41, 0x98, 0x0a, 0x4a, 0x29, 0x60, 0x21, 0x7d, 0xbd, 0x16, 0xc8, 0x84, 0xab, 0x80, 0x65, 0xeb, 0x25, 0x11, 0xee, 0x41, 0xc7, 0xe9, 0x55, 0x7c, 0xd0, 0x90, 0x67, 0x10, 0x74, 0x03, 0x2d, 0x81, 0x59, 0x84, 0x79, 0x20, 0xc8, 0x86, 0xe0, 0xc4, 0x3d, 0x34, 0x67, 0x34, 0x2d, 0xe8, 0x1b, 0x0c, 0x0d, 0xe0, 0x14, 0x2b, 0xa5, 0x5b, 0x55, 0x94, 0xb3, 0x60, 0x49, 0xd5, 0x1a, 0xcb, 0x07, 0xb7, 0x62, 0xa4, 0xa8, 0x44, 0x8d, 0x2c, 0x83, 0x7e, 0x84, 0xcb, 0x72, 0x02, 0x8e, 0x63, 0x41, 0x62, 0xac, 0x48, 0x20, 0x69, 0xec, 0x56, 0x3b, 0x87, 0xbd, 0x96, 0x7f, 0x51, 0x12, 0x0c, 0x0b, 0x7e, 0x4e, 0x63, 0xf4, 0x11, 0xce, 0xcd, 0x66, 0x4a, 0x59, 0x1b, 0xae, 0x88, 0x74, 0x6b, 0x9d, 0xc3, 0x5e, 0xe3, 0xed, 0x4d, 0xff, 0xb9, 0xdd, 0xf4, 0xb7, 0x47, 0xfc, 0xca, 0x15, 0xf1, 0x4f, 0xcd, 0x09, 0x7b, 0x98, 0x44, 0x5f, 0xc2, 0xc9, 0x1a, 0x53, 0x16, 0x84, 0x2b, 0xfd, 0x2b, 0xc8, 0xbd, 0x7b, 0x64, 0x7b, 0xd5, 0xe8, 0x58, 0x83, 0x3e, 0xb9, 0x47, 0xaf, 0xe1, 0x53, 0x1c, 0x2a, 0xba, 0x21, 0x81, 0x2e, 0x8e, 0xd8, 0xc1, 0x1e, 0x1b, 0xe1, 0x0b, 0x4b, 0xcc, 0x35, 0x6e, 0xa6, 0xfb, 0x3d, 0x5c, 0x84, 0xe2, 0x51, 0x2a, 0x9c, 0x24, 0xf4, 0x0f, 0x12, 0x95, 0x33, 0xea, 0x26, 0xe3, 0xbc, 0x4c, 0xef, 0xf2, 0x7e, 0x80, 0xfa, 0xd6, 0x3a, 0x2e, 0x74, 0x9c, 0x5e, 0xe3, 0xed, 0x55, 0xdf, 0x9a, 0xab, 0x5f, 0x98, 0xab, 0xbf, 0x28, 0x14, 0xfe, 0x4e, 0xdc, 0xfd, 0xcb, 0x81, 0xd6, 0x5e, 0x5b, 0xe8, 0x12, 0x8e, 0xed, 0xb8, 0x68, 0x64, 0xf6, 0xdf, 0xf2, 0x8f, 0x4c, 0xfc, 0x2e, 0x42, 0x3d, 0x68, 0x5b, 0x6a, 0xa9, 0x4d, 0x63, 0xeb, 0x3a, 0x30, 0x75, 0x9d, 0x18, 0x7c, 0xeb, 0x52, 0xf4, 0x15, 0x9c, 0x48, 0x1a, 0x33, 0x22, 0xb6, 0xbb, 0xb5, 0x36, 0x68, 0x59, 0xb4, 0x58, 0xeb, 0x0d, 0xb4, 0xf6, 0x57, 0x59, 0x31, 0xab, 0x6c, 0xe2, 0xd2, 0xfe, 0xba, 0x7f, 0x3b, 0x70, 0x36, 0xe6, 0x49, 0x62, 0x0d, 0xc1, 0xa3, 0xc7, 0xc2, 0xd8, 0x4f, 0x2b, 0xad, 0xec, 0x2a, 0x7d, 0x09, 0xb5, 0x94, 0x08, 0xca, 0xa3, 0xdc, 0xa1, 0x79, 0x84, 0x3e, 0x07, 0x08, 0x57, 0x19, 0x7b, 0x08, 0x04, 0xe7, 0x2a, 0xaf, 0xa9, 0x6e, 0x10, 0x9f, 0x73, 0x85, 0xbe, 0x86, 0x76, 0x2a, 0x78, 0xca, 0x25, 0x11, 0x01, 0x8e, 0x22, 0x41, 0xa4, 0xcc, 0x4d, 0xf9, 0xa2, 0xc0, 0x87, 0x16, 0x46, 0x9f, 0x41, 0x5d, 0xf7, 0x82, 0x55, 0x26, 0x88, 0x5b, 0xb5, 0x07, 0x6d, 0x81, 0xee, 0x14, 0xce, 0x9f, 0x94, 0xbc, 0x7b, 0x60, 0x2b, 0x82, 0x23, 0x22, 0xf6, 0x1e, 0x98, 0x85, 0xcc, 0xe4, 0x10, 0x54, 0x96, 0x3c, 0x7a, 0xcc, 0xe7, 0x6a, 0xbe, 0xbb, 0xff, 0x3a, 0xd0, 0x58, 0x08, 0xcc, 0xa4, 0xf6, 0x0b, 0x67, 0xe8, 0x0c, 0xaa, 0x8c, 0xb3, 0x90, 0xe4, 0x5d, 0xdb, 0x00, 0xbd, 0x82, 0x7a, 0x8c, 0x65, 0x90, 0x0a, 0x1a, 0x92, 0xbc, 0xed, 0xe3, 0x18, 0xcb, 0x0f, 0x3a, 0x2e, 0xc8, 0x84, 0xae, 0xa9, 0xed, 0xdb, 0x92, 0x53, 0x1d, 0xeb, 0x5e, 0x04, 0x09, 0x69, 0x4a, 0x09, 0x53, 0x79, 0xbf, 0x3b, 0x40, 0xdf, 0xb6, 0xc1, 0x49, 0x66, 0xbb, 0xac, 0xf8, 0x36, 0xd0, 0x28, 0x65, 0x69, 0xa6, 0xdc, 0x9a, 0xd1, 0xdb, 0x00, 0xfd, 0x54, 0x9e, 0xca, 0x91, 0x31, 0xe2, 0xf5, 0xf3, 0xef, 0x6b, 0x5e, 0xc8, 0xca, 0x63, 0xfb, 0x0e, 0xea, 0x5b, 0x1c, 0x35, 0xc1, 0xd9, 0xe4, 0x1d, 0x3a, 0x1b, 0x1d, 0x15, 0x7f, 0x37, 0x8e, 0xd0, 0x91, 0xcc, 0xdb, 0x70, 0xe4, 0xeb, 0x7f, 0x1c, 0xa8, 0x2e, 0x78, 0x4a, 0x43, 0xd4, 0x80, 0xa3, 0x3b, 0xef, 0xbd, 0x37, 0xfb, 0xe8, 0xb5, 0x3f, 0x41, 0x57, 0xf0, 0x72, 0x3c, 0x9b, 0x4e, 0x87, 0x8b, 0x77, 0x33, 0x2f, 0x18, 0xcd, 0x7e, 0xfe, 0x2d, 0xf0, 0x27, 0xbf, 0xdc, 0x4d, 0xe6, 0x8b, 0xb6, 0x83, 0x5e, 0xc1, 0xc5, 0xff, 0xb8, 0xf9, 0x87, 0x99, 0x37, 0x9f, 0xb4, 0x0f, 0x50, 0x1b, 0x9a, 0x0b, 0x7f, 0xe8, 0xcd, 0x87, 0x63, 0x4d, 0xcf, 0xdb, 0x87, 0xe8, 0x0b, 0xb8, 0x1a, 0x4d, 0x86, 0x63, 0xad, 0x9d, 0xce, 0xc6, 0xef, 0x83, 0xdb, 0xe1, 0xfc, 0x36, 0x18, 0x7a, 0xde, 0xec, 0xce, 0x1b, 0x4f, 0xda, 0x15, 0xe4, 0xc2, 0xd9, 0x1e, 0x5f, 0x5c, 0x54, 0x45, 0x97, 0x70, 0xfe, 0x84, 0xc9, 0xaf, 0xa9, 0x2d, 0x6b, 0xe6, 0x69, 0x7e, 0xfb, 0x5f, 0x00, 0x00, 0x00, 0xff, 0xff, 0xf2, 0x0d, 0xab, 0x2f, 0x3f, 0x06, 0x00, 0x00, }