|
@@ -22,10 +22,10 @@ package raftpb
|
|
import (
|
|
import (
|
|
"fmt"
|
|
"fmt"
|
|
|
|
|
|
- proto "github.com/gogo/protobuf/proto"
|
|
|
|
-)
|
|
|
|
|
|
+ proto "github.com/golang/protobuf/proto"
|
|
|
|
|
|
-import math "math"
|
|
|
|
|
|
+ math "math"
|
|
|
|
+)
|
|
|
|
|
|
import io "io"
|
|
import io "io"
|
|
|
|
|
|
@@ -34,6 +34,10 @@ var _ = proto.Marshal
|
|
var _ = fmt.Errorf
|
|
var _ = fmt.Errorf
|
|
var _ = math.Inf
|
|
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.
|
|
|
|
+const _ = proto.ProtoPackageIsVersion1
|
|
|
|
+
|
|
type EntryType int32
|
|
type EntryType int32
|
|
|
|
|
|
const (
|
|
const (
|
|
@@ -66,23 +70,28 @@ func (x *EntryType) UnmarshalJSON(data []byte) error {
|
|
*x = EntryType(value)
|
|
*x = EntryType(value)
|
|
return nil
|
|
return nil
|
|
}
|
|
}
|
|
|
|
+func (EntryType) EnumDescriptor() ([]byte, []int) { return fileDescriptorRaft, []int{0} }
|
|
|
|
|
|
type MessageType int32
|
|
type MessageType int32
|
|
|
|
|
|
const (
|
|
const (
|
|
- MsgHup MessageType = 0
|
|
|
|
- MsgBeat MessageType = 1
|
|
|
|
- MsgProp MessageType = 2
|
|
|
|
- MsgApp MessageType = 3
|
|
|
|
- MsgAppResp MessageType = 4
|
|
|
|
- MsgVote MessageType = 5
|
|
|
|
- MsgVoteResp MessageType = 6
|
|
|
|
- MsgSnap MessageType = 7
|
|
|
|
- MsgHeartbeat MessageType = 8
|
|
|
|
- MsgHeartbeatResp MessageType = 9
|
|
|
|
- MsgUnreachable MessageType = 10
|
|
|
|
- MsgSnapStatus MessageType = 11
|
|
|
|
- MsgCheckQuorum MessageType = 12
|
|
|
|
|
|
+ MsgHup MessageType = 0
|
|
|
|
+ MsgBeat MessageType = 1
|
|
|
|
+ MsgProp MessageType = 2
|
|
|
|
+ MsgApp MessageType = 3
|
|
|
|
+ MsgAppResp MessageType = 4
|
|
|
|
+ MsgVote MessageType = 5
|
|
|
|
+ MsgVoteResp MessageType = 6
|
|
|
|
+ MsgSnap MessageType = 7
|
|
|
|
+ MsgHeartbeat MessageType = 8
|
|
|
|
+ MsgHeartbeatResp MessageType = 9
|
|
|
|
+ MsgUnreachable MessageType = 10
|
|
|
|
+ MsgSnapStatus MessageType = 11
|
|
|
|
+ MsgCheckQuorum MessageType = 12
|
|
|
|
+ MsgTransferLeader MessageType = 13
|
|
|
|
+ MsgTimeoutNow MessageType = 14
|
|
|
|
+ MsgReadIndex MessageType = 15
|
|
|
|
+ MsgReadIndexResp MessageType = 16
|
|
)
|
|
)
|
|
|
|
|
|
var MessageType_name = map[int32]string{
|
|
var MessageType_name = map[int32]string{
|
|
@@ -99,21 +108,29 @@ var MessageType_name = map[int32]string{
|
|
10: "MsgUnreachable",
|
|
10: "MsgUnreachable",
|
|
11: "MsgSnapStatus",
|
|
11: "MsgSnapStatus",
|
|
12: "MsgCheckQuorum",
|
|
12: "MsgCheckQuorum",
|
|
|
|
+ 13: "MsgTransferLeader",
|
|
|
|
+ 14: "MsgTimeoutNow",
|
|
|
|
+ 15: "MsgReadIndex",
|
|
|
|
+ 16: "MsgReadIndexResp",
|
|
}
|
|
}
|
|
var MessageType_value = map[string]int32{
|
|
var MessageType_value = map[string]int32{
|
|
- "MsgHup": 0,
|
|
|
|
- "MsgBeat": 1,
|
|
|
|
- "MsgProp": 2,
|
|
|
|
- "MsgApp": 3,
|
|
|
|
- "MsgAppResp": 4,
|
|
|
|
- "MsgVote": 5,
|
|
|
|
- "MsgVoteResp": 6,
|
|
|
|
- "MsgSnap": 7,
|
|
|
|
- "MsgHeartbeat": 8,
|
|
|
|
- "MsgHeartbeatResp": 9,
|
|
|
|
- "MsgUnreachable": 10,
|
|
|
|
- "MsgSnapStatus": 11,
|
|
|
|
- "MsgCheckQuorum": 12,
|
|
|
|
|
|
+ "MsgHup": 0,
|
|
|
|
+ "MsgBeat": 1,
|
|
|
|
+ "MsgProp": 2,
|
|
|
|
+ "MsgApp": 3,
|
|
|
|
+ "MsgAppResp": 4,
|
|
|
|
+ "MsgVote": 5,
|
|
|
|
+ "MsgVoteResp": 6,
|
|
|
|
+ "MsgSnap": 7,
|
|
|
|
+ "MsgHeartbeat": 8,
|
|
|
|
+ "MsgHeartbeatResp": 9,
|
|
|
|
+ "MsgUnreachable": 10,
|
|
|
|
+ "MsgSnapStatus": 11,
|
|
|
|
+ "MsgCheckQuorum": 12,
|
|
|
|
+ "MsgTransferLeader": 13,
|
|
|
|
+ "MsgTimeoutNow": 14,
|
|
|
|
+ "MsgReadIndex": 15,
|
|
|
|
+ "MsgReadIndexResp": 16,
|
|
}
|
|
}
|
|
|
|
|
|
func (x MessageType) Enum() *MessageType {
|
|
func (x MessageType) Enum() *MessageType {
|
|
@@ -132,6 +149,7 @@ func (x *MessageType) UnmarshalJSON(data []byte) error {
|
|
*x = MessageType(value)
|
|
*x = MessageType(value)
|
|
return nil
|
|
return nil
|
|
}
|
|
}
|
|
|
|
+func (MessageType) EnumDescriptor() ([]byte, []int) { return fileDescriptorRaft, []int{1} }
|
|
|
|
|
|
type ConfChangeType int32
|
|
type ConfChangeType int32
|
|
|
|
|
|
@@ -168,29 +186,32 @@ func (x *ConfChangeType) UnmarshalJSON(data []byte) error {
|
|
*x = ConfChangeType(value)
|
|
*x = ConfChangeType(value)
|
|
return nil
|
|
return nil
|
|
}
|
|
}
|
|
|
|
+func (ConfChangeType) EnumDescriptor() ([]byte, []int) { return fileDescriptorRaft, []int{2} }
|
|
|
|
|
|
type Entry struct {
|
|
type Entry struct {
|
|
- Type EntryType `protobuf:"varint,1,opt,name=Type,enum=raftpb.EntryType" json:"Type"`
|
|
|
|
- Term uint64 `protobuf:"varint,2,opt,name=Term" json:"Term"`
|
|
|
|
- Index uint64 `protobuf:"varint,3,opt,name=Index" json:"Index"`
|
|
|
|
- Data []byte `protobuf:"bytes,4,opt,name=Data" json:"Data,omitempty"`
|
|
|
|
|
|
+ Term uint64 `protobuf:"varint,2,opt,name=Term,json=term" json:"Term"`
|
|
|
|
+ Index uint64 `protobuf:"varint,3,opt,name=Index,json=index" json:"Index"`
|
|
|
|
+ Type EntryType `protobuf:"varint,1,opt,name=Type,json=type,enum=raftpb.EntryType" json:"Type"`
|
|
|
|
+ Data []byte `protobuf:"bytes,4,opt,name=Data,json=data" json:"Data,omitempty"`
|
|
XXX_unrecognized []byte `json:"-"`
|
|
XXX_unrecognized []byte `json:"-"`
|
|
}
|
|
}
|
|
|
|
|
|
-func (m *Entry) Reset() { *m = Entry{} }
|
|
|
|
-func (m *Entry) String() string { return proto.CompactTextString(m) }
|
|
|
|
-func (*Entry) ProtoMessage() {}
|
|
|
|
|
|
+func (m *Entry) Reset() { *m = Entry{} }
|
|
|
|
+func (m *Entry) String() string { return proto.CompactTextString(m) }
|
|
|
|
+func (*Entry) ProtoMessage() {}
|
|
|
|
+func (*Entry) Descriptor() ([]byte, []int) { return fileDescriptorRaft, []int{0} }
|
|
|
|
|
|
type SnapshotMetadata struct {
|
|
type SnapshotMetadata struct {
|
|
- ConfState ConfState `protobuf:"bytes,1,opt,name=conf_state" json:"conf_state"`
|
|
|
|
|
|
+ ConfState ConfState `protobuf:"bytes,1,opt,name=conf_state,json=confState" json:"conf_state"`
|
|
Index uint64 `protobuf:"varint,2,opt,name=index" json:"index"`
|
|
Index uint64 `protobuf:"varint,2,opt,name=index" json:"index"`
|
|
Term uint64 `protobuf:"varint,3,opt,name=term" json:"term"`
|
|
Term uint64 `protobuf:"varint,3,opt,name=term" json:"term"`
|
|
XXX_unrecognized []byte `json:"-"`
|
|
XXX_unrecognized []byte `json:"-"`
|
|
}
|
|
}
|
|
|
|
|
|
-func (m *SnapshotMetadata) Reset() { *m = SnapshotMetadata{} }
|
|
|
|
-func (m *SnapshotMetadata) String() string { return proto.CompactTextString(m) }
|
|
|
|
-func (*SnapshotMetadata) ProtoMessage() {}
|
|
|
|
|
|
+func (m *SnapshotMetadata) Reset() { *m = SnapshotMetadata{} }
|
|
|
|
+func (m *SnapshotMetadata) String() string { return proto.CompactTextString(m) }
|
|
|
|
+func (*SnapshotMetadata) ProtoMessage() {}
|
|
|
|
+func (*SnapshotMetadata) Descriptor() ([]byte, []int) { return fileDescriptorRaft, []int{1} }
|
|
|
|
|
|
type Snapshot struct {
|
|
type Snapshot struct {
|
|
Data []byte `protobuf:"bytes,1,opt,name=data" json:"data,omitempty"`
|
|
Data []byte `protobuf:"bytes,1,opt,name=data" json:"data,omitempty"`
|
|
@@ -198,9 +219,10 @@ type Snapshot struct {
|
|
XXX_unrecognized []byte `json:"-"`
|
|
XXX_unrecognized []byte `json:"-"`
|
|
}
|
|
}
|
|
|
|
|
|
-func (m *Snapshot) Reset() { *m = Snapshot{} }
|
|
|
|
-func (m *Snapshot) String() string { return proto.CompactTextString(m) }
|
|
|
|
-func (*Snapshot) ProtoMessage() {}
|
|
|
|
|
|
+func (m *Snapshot) Reset() { *m = Snapshot{} }
|
|
|
|
+func (m *Snapshot) String() string { return proto.CompactTextString(m) }
|
|
|
|
+func (*Snapshot) ProtoMessage() {}
|
|
|
|
+func (*Snapshot) Descriptor() ([]byte, []int) { return fileDescriptorRaft, []int{2} }
|
|
|
|
|
|
type Message struct {
|
|
type Message struct {
|
|
Type MessageType `protobuf:"varint,1,opt,name=type,enum=raftpb.MessageType" json:"type"`
|
|
Type MessageType `protobuf:"varint,1,opt,name=type,enum=raftpb.MessageType" json:"type"`
|
|
@@ -214,12 +236,14 @@ type Message struct {
|
|
Snapshot Snapshot `protobuf:"bytes,9,opt,name=snapshot" json:"snapshot"`
|
|
Snapshot Snapshot `protobuf:"bytes,9,opt,name=snapshot" json:"snapshot"`
|
|
Reject bool `protobuf:"varint,10,opt,name=reject" json:"reject"`
|
|
Reject bool `protobuf:"varint,10,opt,name=reject" json:"reject"`
|
|
RejectHint uint64 `protobuf:"varint,11,opt,name=rejectHint" json:"rejectHint"`
|
|
RejectHint uint64 `protobuf:"varint,11,opt,name=rejectHint" json:"rejectHint"`
|
|
|
|
+ Context []byte `protobuf:"bytes,12,opt,name=context" json:"context,omitempty"`
|
|
XXX_unrecognized []byte `json:"-"`
|
|
XXX_unrecognized []byte `json:"-"`
|
|
}
|
|
}
|
|
|
|
|
|
-func (m *Message) Reset() { *m = Message{} }
|
|
|
|
-func (m *Message) String() string { return proto.CompactTextString(m) }
|
|
|
|
-func (*Message) ProtoMessage() {}
|
|
|
|
|
|
+func (m *Message) Reset() { *m = Message{} }
|
|
|
|
+func (m *Message) String() string { return proto.CompactTextString(m) }
|
|
|
|
+func (*Message) ProtoMessage() {}
|
|
|
|
+func (*Message) Descriptor() ([]byte, []int) { return fileDescriptorRaft, []int{3} }
|
|
|
|
|
|
type HardState struct {
|
|
type HardState struct {
|
|
Term uint64 `protobuf:"varint,1,opt,name=term" json:"term"`
|
|
Term uint64 `protobuf:"varint,1,opt,name=term" json:"term"`
|
|
@@ -228,30 +252,33 @@ type HardState struct {
|
|
XXX_unrecognized []byte `json:"-"`
|
|
XXX_unrecognized []byte `json:"-"`
|
|
}
|
|
}
|
|
|
|
|
|
-func (m *HardState) Reset() { *m = HardState{} }
|
|
|
|
-func (m *HardState) String() string { return proto.CompactTextString(m) }
|
|
|
|
-func (*HardState) ProtoMessage() {}
|
|
|
|
|
|
+func (m *HardState) Reset() { *m = HardState{} }
|
|
|
|
+func (m *HardState) String() string { return proto.CompactTextString(m) }
|
|
|
|
+func (*HardState) ProtoMessage() {}
|
|
|
|
+func (*HardState) Descriptor() ([]byte, []int) { return fileDescriptorRaft, []int{4} }
|
|
|
|
|
|
type ConfState struct {
|
|
type ConfState struct {
|
|
Nodes []uint64 `protobuf:"varint,1,rep,name=nodes" json:"nodes,omitempty"`
|
|
Nodes []uint64 `protobuf:"varint,1,rep,name=nodes" json:"nodes,omitempty"`
|
|
XXX_unrecognized []byte `json:"-"`
|
|
XXX_unrecognized []byte `json:"-"`
|
|
}
|
|
}
|
|
|
|
|
|
-func (m *ConfState) Reset() { *m = ConfState{} }
|
|
|
|
-func (m *ConfState) String() string { return proto.CompactTextString(m) }
|
|
|
|
-func (*ConfState) ProtoMessage() {}
|
|
|
|
|
|
+func (m *ConfState) Reset() { *m = ConfState{} }
|
|
|
|
+func (m *ConfState) String() string { return proto.CompactTextString(m) }
|
|
|
|
+func (*ConfState) ProtoMessage() {}
|
|
|
|
+func (*ConfState) Descriptor() ([]byte, []int) { return fileDescriptorRaft, []int{5} }
|
|
|
|
|
|
type ConfChange struct {
|
|
type ConfChange struct {
|
|
- ID uint64 `protobuf:"varint,1,opt,name=ID" json:"ID"`
|
|
|
|
- Type ConfChangeType `protobuf:"varint,2,opt,name=Type,enum=raftpb.ConfChangeType" json:"Type"`
|
|
|
|
- NodeID uint64 `protobuf:"varint,3,opt,name=NodeID" json:"NodeID"`
|
|
|
|
- Context []byte `protobuf:"bytes,4,opt,name=Context" json:"Context,omitempty"`
|
|
|
|
|
|
+ ID uint64 `protobuf:"varint,1,opt,name=ID,json=iD" json:"ID"`
|
|
|
|
+ Type ConfChangeType `protobuf:"varint,2,opt,name=Type,json=type,enum=raftpb.ConfChangeType" json:"Type"`
|
|
|
|
+ NodeID uint64 `protobuf:"varint,3,opt,name=NodeID,json=nodeID" json:"NodeID"`
|
|
|
|
+ Context []byte `protobuf:"bytes,4,opt,name=Context,json=context" json:"Context,omitempty"`
|
|
XXX_unrecognized []byte `json:"-"`
|
|
XXX_unrecognized []byte `json:"-"`
|
|
}
|
|
}
|
|
|
|
|
|
-func (m *ConfChange) Reset() { *m = ConfChange{} }
|
|
|
|
-func (m *ConfChange) String() string { return proto.CompactTextString(m) }
|
|
|
|
-func (*ConfChange) ProtoMessage() {}
|
|
|
|
|
|
+func (m *ConfChange) Reset() { *m = ConfChange{} }
|
|
|
|
+func (m *ConfChange) String() string { return proto.CompactTextString(m) }
|
|
|
|
+func (*ConfChange) ProtoMessage() {}
|
|
|
|
+func (*ConfChange) Descriptor() ([]byte, []int) { return fileDescriptorRaft, []int{6} }
|
|
|
|
|
|
func init() {
|
|
func init() {
|
|
proto.RegisterType((*Entry)(nil), "raftpb.Entry")
|
|
proto.RegisterType((*Entry)(nil), "raftpb.Entry")
|
|
@@ -438,6 +465,12 @@ func (m *Message) MarshalTo(data []byte) (int, error) {
|
|
data[i] = 0x58
|
|
data[i] = 0x58
|
|
i++
|
|
i++
|
|
i = encodeVarintRaft(data, i, uint64(m.RejectHint))
|
|
i = encodeVarintRaft(data, i, uint64(m.RejectHint))
|
|
|
|
+ if m.Context != nil {
|
|
|
|
+ data[i] = 0x62
|
|
|
|
+ i++
|
|
|
|
+ i = encodeVarintRaft(data, i, uint64(len(m.Context)))
|
|
|
|
+ i += copy(data[i:], m.Context)
|
|
|
|
+ }
|
|
if m.XXX_unrecognized != nil {
|
|
if m.XXX_unrecognized != nil {
|
|
i += copy(data[i:], m.XXX_unrecognized)
|
|
i += copy(data[i:], m.XXX_unrecognized)
|
|
}
|
|
}
|
|
@@ -629,6 +662,10 @@ func (m *Message) Size() (n int) {
|
|
n += 1 + l + sovRaft(uint64(l))
|
|
n += 1 + l + sovRaft(uint64(l))
|
|
n += 2
|
|
n += 2
|
|
n += 1 + sovRaft(uint64(m.RejectHint))
|
|
n += 1 + sovRaft(uint64(m.RejectHint))
|
|
|
|
+ if m.Context != nil {
|
|
|
|
+ l = len(m.Context)
|
|
|
|
+ n += 1 + l + sovRaft(uint64(l))
|
|
|
|
+ }
|
|
if m.XXX_unrecognized != nil {
|
|
if m.XXX_unrecognized != nil {
|
|
n += len(m.XXX_unrecognized)
|
|
n += len(m.XXX_unrecognized)
|
|
}
|
|
}
|
|
@@ -1322,6 +1359,37 @@ func (m *Message) Unmarshal(data []byte) error {
|
|
break
|
|
break
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
+ case 12:
|
|
|
|
+ if wireType != 2 {
|
|
|
|
+ return fmt.Errorf("proto: wrong wireType = %d for field Context", wireType)
|
|
|
|
+ }
|
|
|
|
+ var byteLen int
|
|
|
|
+ for shift := uint(0); ; shift += 7 {
|
|
|
|
+ if shift >= 64 {
|
|
|
|
+ return ErrIntOverflowRaft
|
|
|
|
+ }
|
|
|
|
+ if iNdEx >= l {
|
|
|
|
+ return io.ErrUnexpectedEOF
|
|
|
|
+ }
|
|
|
|
+ b := data[iNdEx]
|
|
|
|
+ iNdEx++
|
|
|
|
+ byteLen |= (int(b) & 0x7F) << shift
|
|
|
|
+ if b < 0x80 {
|
|
|
|
+ break
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+ if byteLen < 0 {
|
|
|
|
+ return ErrInvalidLengthRaft
|
|
|
|
+ }
|
|
|
|
+ postIndex := iNdEx + byteLen
|
|
|
|
+ if postIndex > l {
|
|
|
|
+ return io.ErrUnexpectedEOF
|
|
|
|
+ }
|
|
|
|
+ m.Context = append(m.Context[:0], data[iNdEx:postIndex]...)
|
|
|
|
+ if m.Context == nil {
|
|
|
|
+ m.Context = []byte{}
|
|
|
|
+ }
|
|
|
|
+ iNdEx = postIndex
|
|
default:
|
|
default:
|
|
iNdEx = preIndex
|
|
iNdEx = preIndex
|
|
skippy, err := skipRaft(data[iNdEx:])
|
|
skippy, err := skipRaft(data[iNdEx:])
|
|
@@ -1766,3 +1834,56 @@ var (
|
|
ErrInvalidLengthRaft = fmt.Errorf("proto: negative length found during unmarshaling")
|
|
ErrInvalidLengthRaft = fmt.Errorf("proto: negative length found during unmarshaling")
|
|
ErrIntOverflowRaft = fmt.Errorf("proto: integer overflow")
|
|
ErrIntOverflowRaft = fmt.Errorf("proto: integer overflow")
|
|
)
|
|
)
|
|
|
|
+
|
|
|
|
+var fileDescriptorRaft = []byte{
|
|
|
|
+ // 776 bytes of a gzipped FileDescriptorProto
|
|
|
|
+ 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x09, 0x6e, 0x88, 0x02, 0xff, 0x64, 0x54, 0xcd, 0x6e, 0xdb, 0x38,
|
|
|
|
+ 0x10, 0xb6, 0x64, 0xf9, 0x6f, 0xe4, 0x38, 0x0c, 0xe3, 0x5d, 0x10, 0x41, 0xe0, 0xf5, 0x1a, 0x7b,
|
|
|
|
+ 0x30, 0xb2, 0x48, 0x76, 0xd7, 0x87, 0x3d, 0xf4, 0x96, 0xd8, 0x05, 0x12, 0xa0, 0x0e, 0x5a, 0xc7,
|
|
|
|
+ 0xe9, 0xa1, 0x45, 0x51, 0x30, 0x16, 0x2d, 0xbb, 0x8d, 0x44, 0x81, 0xa2, 0xd3, 0xe4, 0x52, 0xf4,
|
|
|
|
+ 0x01, 0xfa, 0x00, 0xbd, 0xf4, 0x19, 0xfa, 0x1a, 0x39, 0xe6, 0x09, 0x8a, 0x26, 0x7d, 0x91, 0x82,
|
|
|
|
+ 0x14, 0x65, 0x4b, 0xf1, 0x8d, 0xfc, 0xbe, 0xe1, 0xcc, 0x37, 0xdf, 0x8c, 0x04, 0x20, 0xe8, 0x54,
|
|
|
|
+ 0x1e, 0x44, 0x82, 0x4b, 0x8e, 0xcb, 0xea, 0x1c, 0x5d, 0xec, 0x34, 0x7d, 0xee, 0x73, 0x0d, 0xfd,
|
|
|
|
+ 0xa3, 0x4e, 0x09, 0xdb, 0xf9, 0x08, 0xa5, 0xa7, 0xa1, 0x14, 0x37, 0xf8, 0x6f, 0x70, 0xc6, 0x37,
|
|
|
|
+ 0x11, 0x23, 0x56, 0xdb, 0xea, 0x36, 0x7a, 0x5b, 0x07, 0xc9, 0xab, 0x03, 0x4d, 0x2a, 0xe2, 0xc8,
|
|
|
|
+ 0xb9, 0xfd, 0xfe, 0x47, 0x61, 0xe4, 0xc8, 0x9b, 0x88, 0x61, 0x02, 0xce, 0x98, 0x89, 0x80, 0xd8,
|
|
|
|
+ 0x6d, 0xab, 0xeb, 0x2c, 0x19, 0x26, 0x02, 0xbc, 0x03, 0xa5, 0x93, 0xd0, 0x63, 0xd7, 0xa4, 0x98,
|
|
|
|
+ 0xa1, 0x4a, 0x73, 0x05, 0x61, 0x0c, 0xce, 0x80, 0x4a, 0x4a, 0x9c, 0xb6, 0xd5, 0xad, 0x8f, 0x1c,
|
|
|
|
+ 0x8f, 0x4a, 0xda, 0xf9, 0x64, 0x01, 0x3a, 0x0b, 0x69, 0x14, 0xcf, 0xb8, 0x1c, 0x32, 0x49, 0x15,
|
|
|
|
+ 0x88, 0xff, 0x07, 0x98, 0xf0, 0x70, 0xfa, 0x36, 0x96, 0x54, 0x26, 0x8a, 0xdc, 0x95, 0xa2, 0x3e,
|
|
|
|
+ 0x0f, 0xa7, 0x67, 0x8a, 0x30, 0xc9, 0x6b, 0x93, 0x14, 0x50, 0xc5, 0x75, 0xa5, 0x9c, 0x2e, 0x53,
|
|
|
|
+ 0x9c, 0x80, 0x16, 0x98, 0xd3, 0xa5, 0x91, 0xce, 0x2b, 0xa8, 0xa6, 0x0a, 0x94, 0x44, 0xa5, 0x40,
|
|
|
|
+ 0xd7, 0x34, 0x12, 0xf1, 0x13, 0xa8, 0x06, 0x46, 0x99, 0x4e, 0xec, 0xf6, 0x48, 0xaa, 0xe5, 0xb1,
|
|
|
|
+ 0x72, 0x93, 0x77, 0x19, 0xdf, 0xf9, 0x5a, 0x84, 0xca, 0x90, 0xc5, 0x31, 0xf5, 0x19, 0xde, 0x07,
|
|
|
|
+ 0x6d, 0x9e, 0x71, 0x78, 0x3b, 0xcd, 0x61, 0xe8, 0x35, 0x8f, 0x9b, 0x60, 0x4b, 0x9e, 0xeb, 0xc4,
|
|
|
|
+ 0x96, 0x5c, 0xb5, 0x31, 0x15, 0xfc, 0x51, 0x1b, 0x0a, 0x59, 0x36, 0xe8, 0xac, 0xcd, 0xa4, 0x05,
|
|
|
|
+ 0x95, 0x4b, 0xee, 0xeb, 0x81, 0x95, 0x32, 0x64, 0x0a, 0xae, 0x6c, 0x2b, 0xaf, 0xdb, 0xb6, 0x0f,
|
|
|
|
+ 0x15, 0x16, 0x4a, 0x31, 0x67, 0x31, 0xa9, 0xb4, 0x8b, 0x5d, 0xb7, 0xb7, 0x91, 0xdb, 0x8c, 0x34,
|
|
|
|
+ 0x95, 0x89, 0xc1, 0xbb, 0x50, 0x9e, 0xf0, 0x20, 0x98, 0x4b, 0x52, 0xcd, 0xe4, 0x32, 0x18, 0xee,
|
|
|
|
+ 0x41, 0x35, 0x36, 0x8e, 0x91, 0x9a, 0x76, 0x12, 0x3d, 0x76, 0x32, 0x75, 0x30, 0x8d, 0x53, 0x19,
|
|
|
|
+ 0x05, 0x7b, 0xc7, 0x26, 0x92, 0x40, 0xdb, 0xea, 0x56, 0xd3, 0x8c, 0x09, 0x86, 0xff, 0x02, 0x48,
|
|
|
|
+ 0x4e, 0xc7, 0xf3, 0x50, 0x12, 0x37, 0x53, 0x33, 0x83, 0x63, 0x02, 0x95, 0x09, 0x0f, 0x25, 0xbb,
|
|
|
|
+ 0x96, 0xa4, 0xae, 0x07, 0x9b, 0x5e, 0x3b, 0x6f, 0xa0, 0x76, 0x4c, 0x85, 0x97, 0xac, 0x4f, 0xea,
|
|
|
|
+ 0xa0, 0xb5, 0xe6, 0x20, 0x01, 0xe7, 0x8a, 0x4b, 0x96, 0xdf, 0x77, 0x85, 0x64, 0x1a, 0x2e, 0xae,
|
|
|
|
+ 0x37, 0xdc, 0xf9, 0x13, 0x6a, 0xcb, 0x75, 0xc5, 0x4d, 0x28, 0x85, 0xdc, 0x63, 0x31, 0xb1, 0xda,
|
|
|
|
+ 0xc5, 0xae, 0x33, 0x4a, 0x2e, 0x9d, 0xcf, 0x16, 0x80, 0x8a, 0xe9, 0xcf, 0x68, 0xe8, 0xeb, 0xa9,
|
|
|
|
+ 0x9f, 0x0c, 0x72, 0x0a, 0xec, 0xf9, 0x00, 0xff, 0x6b, 0x3e, 0x4e, 0x5b, 0xaf, 0xce, 0xef, 0xd9,
|
|
|
|
+ 0x4f, 0x21, 0x79, 0xb7, 0xb6, 0x3d, 0xbb, 0x50, 0x3e, 0xe5, 0x1e, 0x3b, 0x19, 0xe4, 0x75, 0x85,
|
|
|
|
+ 0x1a, 0x53, 0x86, 0xf4, 0x8d, 0x21, 0x4e, 0xce, 0x90, 0xbd, 0xff, 0xa0, 0xb6, 0xfc, 0xe4, 0xf1,
|
|
|
|
+ 0x26, 0xb8, 0xfa, 0x72, 0xca, 0x45, 0x40, 0x2f, 0x51, 0x01, 0x6f, 0xc3, 0xa6, 0x06, 0x56, 0x85,
|
|
|
|
+ 0x91, 0xb5, 0xf7, 0xcd, 0x06, 0x37, 0xb3, 0xc4, 0x18, 0xa0, 0x3c, 0x8c, 0xfd, 0xe3, 0x45, 0x84,
|
|
|
|
+ 0x0a, 0xd8, 0x85, 0xca, 0x30, 0xf6, 0x8f, 0x18, 0x95, 0xc8, 0x32, 0x97, 0xe7, 0x82, 0x47, 0xc8,
|
|
|
|
+ 0x36, 0x51, 0x87, 0x51, 0x84, 0x8a, 0xb8, 0x01, 0x90, 0x9c, 0x47, 0x2c, 0x8e, 0x90, 0x63, 0x02,
|
|
|
|
+ 0x5f, 0x72, 0xc9, 0x50, 0x49, 0x89, 0x30, 0x17, 0xcd, 0x96, 0x0d, 0xab, 0x16, 0x06, 0x55, 0x30,
|
|
|
|
+ 0x82, 0xba, 0x2a, 0xc6, 0xa8, 0x90, 0x17, 0xaa, 0x4a, 0x15, 0x37, 0x01, 0x65, 0x11, 0xfd, 0xa8,
|
|
|
|
+ 0x86, 0x31, 0x34, 0x86, 0xb1, 0x7f, 0x1e, 0x0a, 0x46, 0x27, 0x33, 0x7a, 0x71, 0xc9, 0x10, 0xe0,
|
|
|
|
+ 0x2d, 0xd8, 0x30, 0x89, 0xd4, 0x80, 0x16, 0x31, 0x72, 0x4d, 0x58, 0x7f, 0xc6, 0x26, 0xef, 0x5f,
|
|
|
|
+ 0x2c, 0xb8, 0x58, 0x04, 0xa8, 0x8e, 0x7f, 0x83, 0xad, 0x61, 0xec, 0x8f, 0x05, 0x0d, 0xe3, 0x29,
|
|
|
|
+ 0x13, 0xcf, 0x18, 0xf5, 0x98, 0x40, 0x1b, 0xe6, 0xf5, 0x78, 0x1e, 0x30, 0xbe, 0x90, 0xa7, 0xfc,
|
|
|
|
+ 0x03, 0x6a, 0x18, 0x31, 0x23, 0x46, 0x3d, 0xfd, 0x0f, 0x44, 0x9b, 0x46, 0xcc, 0x12, 0xd1, 0x62,
|
|
|
|
+ 0xd0, 0xde, 0x6b, 0x68, 0xe4, 0x47, 0xa7, 0x6a, 0xac, 0x90, 0x43, 0xcf, 0x53, 0xb3, 0x43, 0x05,
|
|
|
|
+ 0x4c, 0xa0, 0xb9, 0x82, 0x47, 0x2c, 0xe0, 0x57, 0x4c, 0x33, 0x56, 0x9e, 0x39, 0x8f, 0x3c, 0x2a,
|
|
|
|
+ 0x13, 0xc6, 0x3e, 0x22, 0xb7, 0xf7, 0xad, 0xc2, 0xdd, 0x7d, 0xab, 0x70, 0xfb, 0xd0, 0xb2, 0xee,
|
|
|
|
+ 0x1e, 0x5a, 0xd6, 0x8f, 0x87, 0x96, 0xf5, 0xe5, 0x67, 0xab, 0xf0, 0x2b, 0x00, 0x00, 0xff, 0xff,
|
|
|
|
+ 0xdc, 0x70, 0xcb, 0xda, 0x16, 0x06, 0x00, 0x00,
|
|
|
|
+}
|