diff --git a/abci/types/types.pb.go b/abci/types/types.pb.go index 94bc1ed5c..e17237028 100644 --- a/abci/types/types.pb.go +++ b/abci/types/types.pb.go @@ -120,7 +120,7 @@ func (x ResponseOfferSnapshot_Result) String() string { } func (ResponseOfferSnapshot_Result) EnumDescriptor() ([]byte, []int) { - return fileDescriptor_252557cfdd89a31a, []int{32, 0} + return fileDescriptor_252557cfdd89a31a, []int{33, 0} } type ResponseApplySnapshotChunk_Result int32 @@ -157,7 +157,7 @@ func (x ResponseApplySnapshotChunk_Result) String() string { } func (ResponseApplySnapshotChunk_Result) EnumDescriptor() ([]byte, []int) { - return fileDescriptor_252557cfdd89a31a, []int{34, 0} + return fileDescriptor_252557cfdd89a31a, []int{35, 0} } type ResponseVerifyVoteExtension_Result int32 @@ -188,7 +188,7 @@ func (x ResponseVerifyVoteExtension_Result) String() string { } func (ResponseVerifyVoteExtension_Result) EnumDescriptor() ([]byte, []int) { - return fileDescriptor_252557cfdd89a31a, []int{37, 0} + return fileDescriptor_252557cfdd89a31a, []int{38, 0} } type Request struct { @@ -211,6 +211,7 @@ type Request struct { // *Request_ProcessProposal // *Request_ExtendVote // *Request_VerifyVoteExtension + // *Request_FinalizeBlock Value isRequest_Value `protobuf_oneof:"value"` } @@ -307,6 +308,9 @@ type Request_ExtendVote struct { type Request_VerifyVoteExtension struct { VerifyVoteExtension *RequestVerifyVoteExtension `protobuf:"bytes,18,opt,name=verify_vote_extension,json=verifyVoteExtension,proto3,oneof" json:"verify_vote_extension,omitempty"` } +type Request_FinalizeBlock struct { + FinalizeBlock *RequestFinalizeBlock `protobuf:"bytes,19,opt,name=finalize_block,json=finalizeBlock,proto3,oneof" json:"finalize_block,omitempty"` +} func (*Request_Echo) isRequest_Value() {} func (*Request_Flush) isRequest_Value() {} @@ -326,6 +330,7 @@ func (*Request_PrepareProposal) isRequest_Value() {} func (*Request_ProcessProposal) isRequest_Value() {} func (*Request_ExtendVote) isRequest_Value() {} func (*Request_VerifyVoteExtension) isRequest_Value() {} +func (*Request_FinalizeBlock) isRequest_Value() {} func (m *Request) GetValue() isRequest_Value { if m != nil { @@ -460,6 +465,13 @@ func (m *Request) GetVerifyVoteExtension() *RequestVerifyVoteExtension { return nil } +func (m *Request) GetFinalizeBlock() *RequestFinalizeBlock { + if x, ok := m.GetValue().(*Request_FinalizeBlock); ok { + return x.FinalizeBlock + } + return nil +} + // XXX_OneofWrappers is for the internal use of the proto package. func (*Request) XXX_OneofWrappers() []interface{} { return []interface{}{ @@ -481,6 +493,7 @@ func (*Request) XXX_OneofWrappers() []interface{} { (*Request_ProcessProposal)(nil), (*Request_ExtendVote)(nil), (*Request_VerifyVoteExtension)(nil), + (*Request_FinalizeBlock)(nil), } } @@ -1462,6 +1475,90 @@ func (m *RequestProcessProposal) GetByzantineValidators() []Evidence { return nil } +type RequestFinalizeBlock struct { + Txs [][]byte `protobuf:"bytes,1,rep,name=txs,proto3" json:"txs,omitempty"` + Hash []byte `protobuf:"bytes,2,opt,name=hash,proto3" json:"hash,omitempty"` + Height int64 `protobuf:"varint,3,opt,name=height,proto3" json:"height,omitempty"` + Header types.Header `protobuf:"bytes,4,opt,name=header,proto3" json:"header"` + LastCommitInfo LastCommitInfo `protobuf:"bytes,5,opt,name=last_commit_info,json=lastCommitInfo,proto3" json:"last_commit_info"` + ByzantineValidators []Evidence `protobuf:"bytes,6,rep,name=byzantine_validators,json=byzantineValidators,proto3" json:"byzantine_validators"` +} + +func (m *RequestFinalizeBlock) Reset() { *m = RequestFinalizeBlock{} } +func (m *RequestFinalizeBlock) String() string { return proto.CompactTextString(m) } +func (*RequestFinalizeBlock) ProtoMessage() {} +func (*RequestFinalizeBlock) Descriptor() ([]byte, []int) { + return fileDescriptor_252557cfdd89a31a, []int{19} +} +func (m *RequestFinalizeBlock) XXX_Unmarshal(b []byte) error { + return m.Unmarshal(b) +} +func (m *RequestFinalizeBlock) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + if deterministic { + return xxx_messageInfo_RequestFinalizeBlock.Marshal(b, m, deterministic) + } else { + b = b[:cap(b)] + n, err := m.MarshalToSizedBuffer(b) + if err != nil { + return nil, err + } + return b[:n], nil + } +} +func (m *RequestFinalizeBlock) XXX_Merge(src proto.Message) { + xxx_messageInfo_RequestFinalizeBlock.Merge(m, src) +} +func (m *RequestFinalizeBlock) XXX_Size() int { + return m.Size() +} +func (m *RequestFinalizeBlock) XXX_DiscardUnknown() { + xxx_messageInfo_RequestFinalizeBlock.DiscardUnknown(m) +} + +var xxx_messageInfo_RequestFinalizeBlock proto.InternalMessageInfo + +func (m *RequestFinalizeBlock) GetTxs() [][]byte { + if m != nil { + return m.Txs + } + return nil +} + +func (m *RequestFinalizeBlock) GetHash() []byte { + if m != nil { + return m.Hash + } + return nil +} + +func (m *RequestFinalizeBlock) GetHeight() int64 { + if m != nil { + return m.Height + } + return 0 +} + +func (m *RequestFinalizeBlock) GetHeader() types.Header { + if m != nil { + return m.Header + } + return types.Header{} +} + +func (m *RequestFinalizeBlock) GetLastCommitInfo() LastCommitInfo { + if m != nil { + return m.LastCommitInfo + } + return LastCommitInfo{} +} + +func (m *RequestFinalizeBlock) GetByzantineValidators() []Evidence { + if m != nil { + return m.ByzantineValidators + } + return nil +} + type Response struct { // Types that are valid to be assigned to Value: // *Response_Exception @@ -1483,6 +1580,7 @@ type Response struct { // *Response_ProcessProposal // *Response_ExtendVote // *Response_VerifyVoteExtension + // *Response_FinalizeBlock Value isResponse_Value `protobuf_oneof:"value"` } @@ -1490,7 +1588,7 @@ func (m *Response) Reset() { *m = Response{} } func (m *Response) String() string { return proto.CompactTextString(m) } func (*Response) ProtoMessage() {} func (*Response) Descriptor() ([]byte, []int) { - return fileDescriptor_252557cfdd89a31a, []int{19} + return fileDescriptor_252557cfdd89a31a, []int{20} } func (m *Response) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1582,6 +1680,9 @@ type Response_ExtendVote struct { type Response_VerifyVoteExtension struct { VerifyVoteExtension *ResponseVerifyVoteExtension `protobuf:"bytes,19,opt,name=verify_vote_extension,json=verifyVoteExtension,proto3,oneof" json:"verify_vote_extension,omitempty"` } +type Response_FinalizeBlock struct { + FinalizeBlock *ResponseFinalizeBlock `protobuf:"bytes,20,opt,name=finalize_block,json=finalizeBlock,proto3,oneof" json:"finalize_block,omitempty"` +} func (*Response_Exception) isResponse_Value() {} func (*Response_Echo) isResponse_Value() {} @@ -1602,6 +1703,7 @@ func (*Response_PrepareProposal) isResponse_Value() {} func (*Response_ProcessProposal) isResponse_Value() {} func (*Response_ExtendVote) isResponse_Value() {} func (*Response_VerifyVoteExtension) isResponse_Value() {} +func (*Response_FinalizeBlock) isResponse_Value() {} func (m *Response) GetValue() isResponse_Value { if m != nil { @@ -1743,6 +1845,13 @@ func (m *Response) GetVerifyVoteExtension() *ResponseVerifyVoteExtension { return nil } +func (m *Response) GetFinalizeBlock() *ResponseFinalizeBlock { + if x, ok := m.GetValue().(*Response_FinalizeBlock); ok { + return x.FinalizeBlock + } + return nil +} + // XXX_OneofWrappers is for the internal use of the proto package. func (*Response) XXX_OneofWrappers() []interface{} { return []interface{}{ @@ -1765,6 +1874,7 @@ func (*Response) XXX_OneofWrappers() []interface{} { (*Response_ProcessProposal)(nil), (*Response_ExtendVote)(nil), (*Response_VerifyVoteExtension)(nil), + (*Response_FinalizeBlock)(nil), } } @@ -1777,7 +1887,7 @@ func (m *ResponseException) Reset() { *m = ResponseException{} } func (m *ResponseException) String() string { return proto.CompactTextString(m) } func (*ResponseException) ProtoMessage() {} func (*ResponseException) Descriptor() ([]byte, []int) { - return fileDescriptor_252557cfdd89a31a, []int{20} + return fileDescriptor_252557cfdd89a31a, []int{21} } func (m *ResponseException) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1821,7 +1931,7 @@ func (m *ResponseEcho) Reset() { *m = ResponseEcho{} } func (m *ResponseEcho) String() string { return proto.CompactTextString(m) } func (*ResponseEcho) ProtoMessage() {} func (*ResponseEcho) Descriptor() ([]byte, []int) { - return fileDescriptor_252557cfdd89a31a, []int{21} + return fileDescriptor_252557cfdd89a31a, []int{22} } func (m *ResponseEcho) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1864,7 +1974,7 @@ func (m *ResponseFlush) Reset() { *m = ResponseFlush{} } func (m *ResponseFlush) String() string { return proto.CompactTextString(m) } func (*ResponseFlush) ProtoMessage() {} func (*ResponseFlush) Descriptor() ([]byte, []int) { - return fileDescriptor_252557cfdd89a31a, []int{22} + return fileDescriptor_252557cfdd89a31a, []int{23} } func (m *ResponseFlush) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1906,7 +2016,7 @@ func (m *ResponseInfo) Reset() { *m = ResponseInfo{} } func (m *ResponseInfo) String() string { return proto.CompactTextString(m) } func (*ResponseInfo) ProtoMessage() {} func (*ResponseInfo) Descriptor() ([]byte, []int) { - return fileDescriptor_252557cfdd89a31a, []int{23} + return fileDescriptor_252557cfdd89a31a, []int{24} } func (m *ResponseInfo) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1980,7 +2090,7 @@ func (m *ResponseInitChain) Reset() { *m = ResponseInitChain{} } func (m *ResponseInitChain) String() string { return proto.CompactTextString(m) } func (*ResponseInitChain) ProtoMessage() {} func (*ResponseInitChain) Descriptor() ([]byte, []int) { - return fileDescriptor_252557cfdd89a31a, []int{24} + return fileDescriptor_252557cfdd89a31a, []int{25} } func (m *ResponseInitChain) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2047,7 +2157,7 @@ func (m *ResponseQuery) Reset() { *m = ResponseQuery{} } func (m *ResponseQuery) String() string { return proto.CompactTextString(m) } func (*ResponseQuery) ProtoMessage() {} func (*ResponseQuery) Descriptor() ([]byte, []int) { - return fileDescriptor_252557cfdd89a31a, []int{25} + return fileDescriptor_252557cfdd89a31a, []int{26} } func (m *ResponseQuery) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2147,7 +2257,7 @@ func (m *ResponseBeginBlock) Reset() { *m = ResponseBeginBlock{} } func (m *ResponseBeginBlock) String() string { return proto.CompactTextString(m) } func (*ResponseBeginBlock) ProtoMessage() {} func (*ResponseBeginBlock) Descriptor() ([]byte, []int) { - return fileDescriptor_252557cfdd89a31a, []int{26} + return fileDescriptor_252557cfdd89a31a, []int{27} } func (m *ResponseBeginBlock) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2203,7 +2313,7 @@ func (m *ResponseCheckTx) Reset() { *m = ResponseCheckTx{} } func (m *ResponseCheckTx) String() string { return proto.CompactTextString(m) } func (*ResponseCheckTx) ProtoMessage() {} func (*ResponseCheckTx) Descriptor() ([]byte, []int) { - return fileDescriptor_252557cfdd89a31a, []int{27} + return fileDescriptor_252557cfdd89a31a, []int{28} } func (m *ResponseCheckTx) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2324,7 +2434,7 @@ func (m *ResponseDeliverTx) Reset() { *m = ResponseDeliverTx{} } func (m *ResponseDeliverTx) String() string { return proto.CompactTextString(m) } func (*ResponseDeliverTx) ProtoMessage() {} func (*ResponseDeliverTx) Descriptor() ([]byte, []int) { - return fileDescriptor_252557cfdd89a31a, []int{28} + return fileDescriptor_252557cfdd89a31a, []int{29} } func (m *ResponseDeliverTx) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2419,7 +2529,7 @@ func (m *ResponseEndBlock) Reset() { *m = ResponseEndBlock{} } func (m *ResponseEndBlock) String() string { return proto.CompactTextString(m) } func (*ResponseEndBlock) ProtoMessage() {} func (*ResponseEndBlock) Descriptor() ([]byte, []int) { - return fileDescriptor_252557cfdd89a31a, []int{29} + return fileDescriptor_252557cfdd89a31a, []int{30} } func (m *ResponseEndBlock) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2479,7 +2589,7 @@ func (m *ResponseCommit) Reset() { *m = ResponseCommit{} } func (m *ResponseCommit) String() string { return proto.CompactTextString(m) } func (*ResponseCommit) ProtoMessage() {} func (*ResponseCommit) Descriptor() ([]byte, []int) { - return fileDescriptor_252557cfdd89a31a, []int{30} + return fileDescriptor_252557cfdd89a31a, []int{31} } func (m *ResponseCommit) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2530,7 +2640,7 @@ func (m *ResponseListSnapshots) Reset() { *m = ResponseListSnapshots{} } func (m *ResponseListSnapshots) String() string { return proto.CompactTextString(m) } func (*ResponseListSnapshots) ProtoMessage() {} func (*ResponseListSnapshots) Descriptor() ([]byte, []int) { - return fileDescriptor_252557cfdd89a31a, []int{31} + return fileDescriptor_252557cfdd89a31a, []int{32} } func (m *ResponseListSnapshots) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2574,7 +2684,7 @@ func (m *ResponseOfferSnapshot) Reset() { *m = ResponseOfferSnapshot{} } func (m *ResponseOfferSnapshot) String() string { return proto.CompactTextString(m) } func (*ResponseOfferSnapshot) ProtoMessage() {} func (*ResponseOfferSnapshot) Descriptor() ([]byte, []int) { - return fileDescriptor_252557cfdd89a31a, []int{32} + return fileDescriptor_252557cfdd89a31a, []int{33} } func (m *ResponseOfferSnapshot) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2618,7 +2728,7 @@ func (m *ResponseLoadSnapshotChunk) Reset() { *m = ResponseLoadSnapshotC func (m *ResponseLoadSnapshotChunk) String() string { return proto.CompactTextString(m) } func (*ResponseLoadSnapshotChunk) ProtoMessage() {} func (*ResponseLoadSnapshotChunk) Descriptor() ([]byte, []int) { - return fileDescriptor_252557cfdd89a31a, []int{33} + return fileDescriptor_252557cfdd89a31a, []int{34} } func (m *ResponseLoadSnapshotChunk) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2664,7 +2774,7 @@ func (m *ResponseApplySnapshotChunk) Reset() { *m = ResponseApplySnapsho func (m *ResponseApplySnapshotChunk) String() string { return proto.CompactTextString(m) } func (*ResponseApplySnapshotChunk) ProtoMessage() {} func (*ResponseApplySnapshotChunk) Descriptor() ([]byte, []int) { - return fileDescriptor_252557cfdd89a31a, []int{34} + return fileDescriptor_252557cfdd89a31a, []int{35} } func (m *ResponseApplySnapshotChunk) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2722,7 +2832,7 @@ func (m *ResponsePrepareProposal) Reset() { *m = ResponsePrepareProposal func (m *ResponsePrepareProposal) String() string { return proto.CompactTextString(m) } func (*ResponsePrepareProposal) ProtoMessage() {} func (*ResponsePrepareProposal) Descriptor() ([]byte, []int) { - return fileDescriptor_252557cfdd89a31a, []int{35} + return fileDescriptor_252557cfdd89a31a, []int{36} } func (m *ResponsePrepareProposal) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2766,7 +2876,7 @@ func (m *ResponseExtendVote) Reset() { *m = ResponseExtendVote{} } func (m *ResponseExtendVote) String() string { return proto.CompactTextString(m) } func (*ResponseExtendVote) ProtoMessage() {} func (*ResponseExtendVote) Descriptor() ([]byte, []int) { - return fileDescriptor_252557cfdd89a31a, []int{36} + return fileDescriptor_252557cfdd89a31a, []int{37} } func (m *ResponseExtendVote) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2810,7 +2920,7 @@ func (m *ResponseVerifyVoteExtension) Reset() { *m = ResponseVerifyVoteE func (m *ResponseVerifyVoteExtension) String() string { return proto.CompactTextString(m) } func (*ResponseVerifyVoteExtension) ProtoMessage() {} func (*ResponseVerifyVoteExtension) Descriptor() ([]byte, []int) { - return fileDescriptor_252557cfdd89a31a, []int{37} + return fileDescriptor_252557cfdd89a31a, []int{38} } func (m *ResponseVerifyVoteExtension) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2858,7 +2968,7 @@ func (m *ResponseProcessProposal) Reset() { *m = ResponseProcessProposal func (m *ResponseProcessProposal) String() string { return proto.CompactTextString(m) } func (*ResponseProcessProposal) ProtoMessage() {} func (*ResponseProcessProposal) Descriptor() ([]byte, []int) { - return fileDescriptor_252557cfdd89a31a, []int{38} + return fileDescriptor_252557cfdd89a31a, []int{39} } func (m *ResponseProcessProposal) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2922,6 +3032,74 @@ func (m *ResponseProcessProposal) GetConsensusParamUpdates() *types.ConsensusPar return nil } +type ResponseFinalizeBlock struct { + Txs []*ResponseDeliverTx `protobuf:"bytes,1,rep,name=txs,proto3" json:"txs,omitempty"` + ValidatorUpdates []ValidatorUpdate `protobuf:"bytes,2,rep,name=validator_updates,json=validatorUpdates,proto3" json:"validator_updates"` + ConsensusParamUpdates *types.ConsensusParams `protobuf:"bytes,3,opt,name=consensus_param_updates,json=consensusParamUpdates,proto3" json:"consensus_param_updates,omitempty"` + Events []Event `protobuf:"bytes,4,rep,name=events,proto3" json:"events,omitempty"` +} + +func (m *ResponseFinalizeBlock) Reset() { *m = ResponseFinalizeBlock{} } +func (m *ResponseFinalizeBlock) String() string { return proto.CompactTextString(m) } +func (*ResponseFinalizeBlock) ProtoMessage() {} +func (*ResponseFinalizeBlock) Descriptor() ([]byte, []int) { + return fileDescriptor_252557cfdd89a31a, []int{40} +} +func (m *ResponseFinalizeBlock) XXX_Unmarshal(b []byte) error { + return m.Unmarshal(b) +} +func (m *ResponseFinalizeBlock) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + if deterministic { + return xxx_messageInfo_ResponseFinalizeBlock.Marshal(b, m, deterministic) + } else { + b = b[:cap(b)] + n, err := m.MarshalToSizedBuffer(b) + if err != nil { + return nil, err + } + return b[:n], nil + } +} +func (m *ResponseFinalizeBlock) XXX_Merge(src proto.Message) { + xxx_messageInfo_ResponseFinalizeBlock.Merge(m, src) +} +func (m *ResponseFinalizeBlock) XXX_Size() int { + return m.Size() +} +func (m *ResponseFinalizeBlock) XXX_DiscardUnknown() { + xxx_messageInfo_ResponseFinalizeBlock.DiscardUnknown(m) +} + +var xxx_messageInfo_ResponseFinalizeBlock proto.InternalMessageInfo + +func (m *ResponseFinalizeBlock) GetTxs() []*ResponseDeliverTx { + if m != nil { + return m.Txs + } + return nil +} + +func (m *ResponseFinalizeBlock) GetValidatorUpdates() []ValidatorUpdate { + if m != nil { + return m.ValidatorUpdates + } + return nil +} + +func (m *ResponseFinalizeBlock) GetConsensusParamUpdates() *types.ConsensusParams { + if m != nil { + return m.ConsensusParamUpdates + } + return nil +} + +func (m *ResponseFinalizeBlock) GetEvents() []Event { + if m != nil { + return m.Events + } + return nil +} + type LastCommitInfo struct { Round int32 `protobuf:"varint,1,opt,name=round,proto3" json:"round,omitempty"` Votes []VoteInfo `protobuf:"bytes,2,rep,name=votes,proto3" json:"votes"` @@ -2931,7 +3109,7 @@ func (m *LastCommitInfo) Reset() { *m = LastCommitInfo{} } func (m *LastCommitInfo) String() string { return proto.CompactTextString(m) } func (*LastCommitInfo) ProtoMessage() {} func (*LastCommitInfo) Descriptor() ([]byte, []int) { - return fileDescriptor_252557cfdd89a31a, []int{39} + return fileDescriptor_252557cfdd89a31a, []int{41} } func (m *LastCommitInfo) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2986,7 +3164,7 @@ func (m *Event) Reset() { *m = Event{} } func (m *Event) String() string { return proto.CompactTextString(m) } func (*Event) ProtoMessage() {} func (*Event) Descriptor() ([]byte, []int) { - return fileDescriptor_252557cfdd89a31a, []int{40} + return fileDescriptor_252557cfdd89a31a, []int{42} } func (m *Event) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -3040,7 +3218,7 @@ func (m *EventAttribute) Reset() { *m = EventAttribute{} } func (m *EventAttribute) String() string { return proto.CompactTextString(m) } func (*EventAttribute) ProtoMessage() {} func (*EventAttribute) Descriptor() ([]byte, []int) { - return fileDescriptor_252557cfdd89a31a, []int{41} + return fileDescriptor_252557cfdd89a31a, []int{43} } func (m *EventAttribute) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -3108,7 +3286,7 @@ func (m *ExecTxResult) Reset() { *m = ExecTxResult{} } func (m *ExecTxResult) String() string { return proto.CompactTextString(m) } func (*ExecTxResult) ProtoMessage() {} func (*ExecTxResult) Descriptor() ([]byte, []int) { - return fileDescriptor_252557cfdd89a31a, []int{42} + return fileDescriptor_252557cfdd89a31a, []int{44} } func (m *ExecTxResult) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -3207,7 +3385,7 @@ func (m *TxResult) Reset() { *m = TxResult{} } func (m *TxResult) String() string { return proto.CompactTextString(m) } func (*TxResult) ProtoMessage() {} func (*TxResult) Descriptor() ([]byte, []int) { - return fileDescriptor_252557cfdd89a31a, []int{43} + return fileDescriptor_252557cfdd89a31a, []int{45} } func (m *TxResult) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -3275,7 +3453,7 @@ func (m *Validator) Reset() { *m = Validator{} } func (m *Validator) String() string { return proto.CompactTextString(m) } func (*Validator) ProtoMessage() {} func (*Validator) Descriptor() ([]byte, []int) { - return fileDescriptor_252557cfdd89a31a, []int{44} + return fileDescriptor_252557cfdd89a31a, []int{46} } func (m *Validator) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -3328,7 +3506,7 @@ func (m *ValidatorUpdate) Reset() { *m = ValidatorUpdate{} } func (m *ValidatorUpdate) String() string { return proto.CompactTextString(m) } func (*ValidatorUpdate) ProtoMessage() {} func (*ValidatorUpdate) Descriptor() ([]byte, []int) { - return fileDescriptor_252557cfdd89a31a, []int{45} + return fileDescriptor_252557cfdd89a31a, []int{47} } func (m *ValidatorUpdate) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -3381,7 +3559,7 @@ func (m *VoteInfo) Reset() { *m = VoteInfo{} } func (m *VoteInfo) String() string { return proto.CompactTextString(m) } func (*VoteInfo) ProtoMessage() {} func (*VoteInfo) Descriptor() ([]byte, []int) { - return fileDescriptor_252557cfdd89a31a, []int{46} + return fileDescriptor_252557cfdd89a31a, []int{48} } func (m *VoteInfo) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -3442,7 +3620,7 @@ func (m *Evidence) Reset() { *m = Evidence{} } func (m *Evidence) String() string { return proto.CompactTextString(m) } func (*Evidence) ProtoMessage() {} func (*Evidence) Descriptor() ([]byte, []int) { - return fileDescriptor_252557cfdd89a31a, []int{47} + return fileDescriptor_252557cfdd89a31a, []int{49} } func (m *Evidence) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -3518,7 +3696,7 @@ func (m *Snapshot) Reset() { *m = Snapshot{} } func (m *Snapshot) String() string { return proto.CompactTextString(m) } func (*Snapshot) ProtoMessage() {} func (*Snapshot) Descriptor() ([]byte, []int) { - return fileDescriptor_252557cfdd89a31a, []int{48} + return fileDescriptor_252557cfdd89a31a, []int{50} } func (m *Snapshot) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -3607,6 +3785,7 @@ func init() { proto.RegisterType((*RequestExtendVote)(nil), "tendermint.abci.RequestExtendVote") proto.RegisterType((*RequestVerifyVoteExtension)(nil), "tendermint.abci.RequestVerifyVoteExtension") proto.RegisterType((*RequestProcessProposal)(nil), "tendermint.abci.RequestProcessProposal") + proto.RegisterType((*RequestFinalizeBlock)(nil), "tendermint.abci.RequestFinalizeBlock") proto.RegisterType((*Response)(nil), "tendermint.abci.Response") proto.RegisterType((*ResponseException)(nil), "tendermint.abci.ResponseException") proto.RegisterType((*ResponseEcho)(nil), "tendermint.abci.ResponseEcho") @@ -3627,6 +3806,7 @@ func init() { proto.RegisterType((*ResponseExtendVote)(nil), "tendermint.abci.ResponseExtendVote") proto.RegisterType((*ResponseVerifyVoteExtension)(nil), "tendermint.abci.ResponseVerifyVoteExtension") proto.RegisterType((*ResponseProcessProposal)(nil), "tendermint.abci.ResponseProcessProposal") + proto.RegisterType((*ResponseFinalizeBlock)(nil), "tendermint.abci.ResponseFinalizeBlock") proto.RegisterType((*LastCommitInfo)(nil), "tendermint.abci.LastCommitInfo") proto.RegisterType((*Event)(nil), "tendermint.abci.Event") proto.RegisterType((*EventAttribute)(nil), "tendermint.abci.EventAttribute") @@ -3642,202 +3822,210 @@ func init() { func init() { proto.RegisterFile("tendermint/abci/types.proto", fileDescriptor_252557cfdd89a31a) } var fileDescriptor_252557cfdd89a31a = []byte{ - // 3118 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe4, 0x5a, 0x4b, 0x73, 0x23, 0xd5, - 0x15, 0xd6, 0xd3, 0x92, 0x8e, 0xf5, 0xf2, 0xf5, 0x30, 0x68, 0xc4, 0x8c, 0x3d, 0xf4, 0x14, 0x30, - 0x0c, 0x60, 0x07, 0x4f, 0x41, 0x86, 0x82, 0x04, 0x6c, 0x8d, 0x1c, 0x99, 0x31, 0xb6, 0x73, 0x2d, - 0x0f, 0x45, 0x02, 0xd3, 0xb4, 0xa4, 0x6b, 0xa9, 0x19, 0xa9, 0xbb, 0xe9, 0xbe, 0x12, 0xf6, 0x2c, - 0xf3, 0xd8, 0x50, 0x59, 0xb0, 0x4c, 0x55, 0x8a, 0x55, 0xf2, 0x13, 0xb2, 0xc8, 0x2a, 0x2b, 0x16, - 0x2c, 0xb2, 0x60, 0x99, 0x45, 0x8a, 0xa4, 0x60, 0x97, 0x3f, 0x90, 0xaa, 0x54, 0xa5, 0x2a, 0x75, - 0x1f, 0xfd, 0x92, 0xd4, 0x92, 0xcc, 0x90, 0x55, 0x76, 0x7d, 0x4f, 0x9f, 0x73, 0xfa, 0x3e, 0xcf, - 0xf9, 0xbe, 0xd3, 0x17, 0x9e, 0xa2, 0xc4, 0xe8, 0x10, 0x7b, 0xa0, 0x1b, 0x74, 0x53, 0x6b, 0xb5, - 0xf5, 0x4d, 0x7a, 0x6e, 0x11, 0x67, 0xc3, 0xb2, 0x4d, 0x6a, 0xa2, 0x92, 0xff, 0x72, 0x83, 0xbd, - 0xac, 0x5e, 0x0b, 0x68, 0xb7, 0xed, 0x73, 0x8b, 0x9a, 0x9b, 0x96, 0x6d, 0x9a, 0xa7, 0x42, 0xbf, - 0x7a, 0x35, 0xf0, 0x9a, 0xfb, 0x09, 0x7a, 0x0b, 0xbd, 0x95, 0xc6, 0x0f, 0xc9, 0xb9, 0xfb, 0xf6, - 0xda, 0x84, 0xad, 0xa5, 0xd9, 0xda, 0xc0, 0x7d, 0xbd, 0xde, 0x35, 0xcd, 0x6e, 0x9f, 0x6c, 0xf2, - 0x56, 0x6b, 0x78, 0xba, 0x49, 0xf5, 0x01, 0x71, 0xa8, 0x36, 0xb0, 0xa4, 0xc2, 0xa5, 0xae, 0xd9, - 0x35, 0xf9, 0xe3, 0x26, 0x7b, 0x12, 0x52, 0xe5, 0xf7, 0x00, 0x19, 0x4c, 0x3e, 0x1e, 0x12, 0x87, - 0xa2, 0x2d, 0x48, 0x91, 0x76, 0xcf, 0xac, 0xc4, 0xaf, 0xc7, 0x6f, 0x2e, 0x6f, 0x5d, 0xdd, 0x18, - 0x1b, 0xdc, 0x86, 0xd4, 0xab, 0xb7, 0x7b, 0x66, 0x23, 0x86, 0xb9, 0x2e, 0x7a, 0x05, 0xd2, 0xa7, - 0xfd, 0xa1, 0xd3, 0xab, 0x24, 0xb8, 0xd1, 0xb5, 0x28, 0xa3, 0x5d, 0xa6, 0xd4, 0x88, 0x61, 0xa1, - 0xcd, 0x3e, 0xa5, 0x1b, 0xa7, 0x66, 0x25, 0x39, 0xfb, 0x53, 0x7b, 0xc6, 0x29, 0xff, 0x14, 0xd3, - 0x45, 0x3b, 0x00, 0xba, 0xa1, 0x53, 0xb5, 0xdd, 0xd3, 0x74, 0xa3, 0x92, 0xe2, 0x96, 0x4f, 0x47, - 0x5b, 0xea, 0xb4, 0xc6, 0x14, 0x1b, 0x31, 0x9c, 0xd3, 0xdd, 0x06, 0xeb, 0xee, 0xc7, 0x43, 0x62, - 0x9f, 0x57, 0xd2, 0xb3, 0xbb, 0xfb, 0x53, 0xa6, 0xc4, 0xba, 0xcb, 0xb5, 0x51, 0x1d, 0x96, 0x5b, - 0xa4, 0xab, 0x1b, 0x6a, 0xab, 0x6f, 0xb6, 0x1f, 0x56, 0x96, 0xb8, 0xb1, 0x12, 0x65, 0xbc, 0xc3, - 0x54, 0x77, 0x98, 0x66, 0x23, 0x86, 0xa1, 0xe5, 0xb5, 0xd0, 0x1b, 0x90, 0x6d, 0xf7, 0x48, 0xfb, - 0xa1, 0x4a, 0xcf, 0x2a, 0x19, 0xee, 0x63, 0x3d, 0xca, 0x47, 0x8d, 0xe9, 0x35, 0xcf, 0x1a, 0x31, - 0x9c, 0x69, 0x8b, 0x47, 0x36, 0xfe, 0x0e, 0xe9, 0xeb, 0x23, 0x62, 0x33, 0xfb, 0xec, 0xec, 0xf1, - 0xdf, 0x15, 0x9a, 0xdc, 0x43, 0xae, 0xe3, 0x36, 0xd0, 0x9b, 0x90, 0x23, 0x46, 0x47, 0x0e, 0x23, - 0xc7, 0x5d, 0x5c, 0x8f, 0x5c, 0x67, 0xa3, 0xe3, 0x0e, 0x22, 0x4b, 0xe4, 0x33, 0xba, 0x03, 0x4b, - 0x6d, 0x73, 0x30, 0xd0, 0x69, 0x05, 0xb8, 0xf5, 0x5a, 0xe4, 0x00, 0xb8, 0x56, 0x23, 0x86, 0xa5, - 0x3e, 0x3a, 0x80, 0x62, 0x5f, 0x77, 0xa8, 0xea, 0x18, 0x9a, 0xe5, 0xf4, 0x4c, 0xea, 0x54, 0x96, - 0xb9, 0x87, 0x67, 0xa2, 0x3c, 0xec, 0xeb, 0x0e, 0x3d, 0x76, 0x95, 0x1b, 0x31, 0x5c, 0xe8, 0x07, - 0x05, 0xcc, 0x9f, 0x79, 0x7a, 0x4a, 0x6c, 0xcf, 0x61, 0x25, 0x3f, 0xdb, 0xdf, 0x21, 0xd3, 0x76, - 0xed, 0x99, 0x3f, 0x33, 0x28, 0x40, 0x3f, 0x87, 0xd5, 0xbe, 0xa9, 0x75, 0x3c, 0x77, 0x6a, 0xbb, - 0x37, 0x34, 0x1e, 0x56, 0x0a, 0xdc, 0xe9, 0xf3, 0x91, 0x9d, 0x34, 0xb5, 0x8e, 0xeb, 0xa2, 0xc6, - 0x0c, 0x1a, 0x31, 0xbc, 0xd2, 0x1f, 0x17, 0xa2, 0x07, 0x70, 0x49, 0xb3, 0xac, 0xfe, 0xf9, 0xb8, - 0xf7, 0x22, 0xf7, 0x7e, 0x2b, 0xca, 0xfb, 0x36, 0xb3, 0x19, 0x77, 0x8f, 0xb4, 0x09, 0x29, 0x6a, - 0x42, 0xd9, 0xb2, 0x89, 0xa5, 0xd9, 0x44, 0xb5, 0x6c, 0xd3, 0x32, 0x1d, 0xad, 0x5f, 0x29, 0x71, - 0xdf, 0xcf, 0x45, 0xf9, 0x3e, 0x12, 0xfa, 0x47, 0x52, 0xbd, 0x11, 0xc3, 0x25, 0x2b, 0x2c, 0x12, - 0x5e, 0xcd, 0x36, 0x71, 0x1c, 0xdf, 0x6b, 0x79, 0x9e, 0x57, 0xae, 0x1f, 0xf6, 0x1a, 0x12, 0xb1, - 0xc3, 0x44, 0xce, 0x98, 0xb9, 0x3a, 0x32, 0x29, 0xa9, 0xac, 0xcc, 0x3e, 0x4c, 0x75, 0xae, 0x7a, - 0xdf, 0xa4, 0x84, 0x1d, 0x26, 0xe2, 0xb5, 0x90, 0x06, 0x4f, 0x8c, 0x88, 0xad, 0x9f, 0x9e, 0x73, - 0x37, 0x2a, 0x7f, 0xe3, 0xe8, 0xa6, 0x51, 0x41, 0xdc, 0xe1, 0x0b, 0x51, 0x0e, 0xef, 0x73, 0x23, - 0xe6, 0xa2, 0xee, 0x9a, 0x34, 0x62, 0x78, 0x75, 0x34, 0x29, 0xde, 0xc9, 0x40, 0x7a, 0xa4, 0xf5, - 0x87, 0x44, 0x79, 0x0e, 0x96, 0x03, 0xc1, 0x0f, 0x55, 0x20, 0x33, 0x20, 0x8e, 0xa3, 0x75, 0x09, - 0x8f, 0x95, 0x39, 0xec, 0x36, 0x95, 0x5f, 0x25, 0x60, 0x65, 0x22, 0x0a, 0x20, 0x04, 0xa9, 0x9e, - 0xe6, 0xf4, 0xb8, 0x72, 0x1e, 0xf3, 0x67, 0xf4, 0x2a, 0x2c, 0xf5, 0x88, 0xd6, 0x21, 0xb6, 0x8c, - 0x9c, 0x95, 0x60, 0x7f, 0x45, 0x56, 0x68, 0xf0, 0xf7, 0x3b, 0xa9, 0x2f, 0xbf, 0x5e, 0x8f, 0x61, - 0xa9, 0x8d, 0x0e, 0xa1, 0xdc, 0xd7, 0x1c, 0xaa, 0x8a, 0x53, 0xa5, 0x06, 0xa2, 0xe8, 0x64, 0x2c, - 0xd9, 0xd7, 0xdc, 0x73, 0xc8, 0x02, 0xa9, 0x74, 0x54, 0xec, 0x87, 0xa4, 0x08, 0xc3, 0xa5, 0xd6, - 0xf9, 0x23, 0xcd, 0xa0, 0xba, 0x41, 0xd4, 0x91, 0xd6, 0xd7, 0x3b, 0x1a, 0x35, 0x6d, 0xa7, 0x92, - 0xba, 0x9e, 0xbc, 0xb9, 0xbc, 0x75, 0x65, 0xc2, 0x69, 0x7d, 0xa4, 0x77, 0x88, 0xd1, 0x26, 0xd2, - 0xdd, 0xaa, 0x67, 0x7c, 0xdf, 0xb3, 0x55, 0x8a, 0x90, 0x0f, 0xc6, 0x7d, 0xe5, 0xb3, 0xb8, 0x37, - 0x81, 0xfc, 0x9b, 0x15, 0xc8, 0x8c, 0x88, 0xcd, 0x57, 0x4b, 0x4e, 0xa0, 0x6c, 0xa2, 0x1b, 0x50, - 0xe0, 0xc1, 0x49, 0x75, 0xdf, 0xb3, 0xd9, 0x49, 0xe1, 0x3c, 0x17, 0xde, 0x97, 0x4a, 0xeb, 0xb0, - 0x6c, 0x6d, 0x59, 0x9e, 0x4a, 0x92, 0xab, 0x80, 0xb5, 0x65, 0xb9, 0x0a, 0x4f, 0x43, 0x9e, 0xf5, - 0xd5, 0xd3, 0x48, 0xf1, 0x8f, 0x2c, 0x33, 0x99, 0x54, 0x51, 0xfe, 0x92, 0x80, 0xf2, 0x78, 0xae, - 0x40, 0x77, 0x20, 0xc5, 0xd2, 0xa6, 0xcc, 0x80, 0xd5, 0x0d, 0x91, 0x53, 0x37, 0xdc, 0x9c, 0xba, - 0xd1, 0x74, 0x73, 0xea, 0x4e, 0x96, 0x0d, 0xfe, 0xb3, 0xbf, 0xaf, 0xc7, 0x31, 0xb7, 0x40, 0x57, - 0x58, 0x68, 0xd7, 0x74, 0x43, 0xd5, 0x3b, 0xbc, 0xcb, 0x39, 0x16, 0xb7, 0x35, 0xdd, 0xd8, 0xeb, - 0xa0, 0x7d, 0x28, 0xb7, 0x4d, 0xc3, 0x21, 0x86, 0x33, 0x74, 0x54, 0x91, 0xb3, 0xe5, 0x8a, 0x3d, - 0x3d, 0xb9, 0xe6, 0x35, 0x57, 0xf3, 0x88, 0x2b, 0xe2, 0x52, 0x3b, 0x2c, 0x40, 0xbb, 0x00, 0x13, - 0x8b, 0x34, 0x19, 0xc2, 0xbd, 0xb5, 0x38, 0xb1, 0x3a, 0x1a, 0x75, 0xd7, 0x2a, 0x60, 0x89, 0x9e, - 0x85, 0x92, 0x66, 0x59, 0xaa, 0x43, 0x35, 0x4a, 0xd4, 0xd6, 0x39, 0x25, 0x0e, 0xcf, 0x89, 0x79, - 0x5c, 0xd0, 0x2c, 0xeb, 0x98, 0x49, 0x77, 0x98, 0x10, 0x3d, 0x03, 0x45, 0x96, 0x3e, 0x75, 0xad, - 0xaf, 0xf6, 0x88, 0xde, 0xed, 0x51, 0x9e, 0xfd, 0x92, 0xb8, 0x20, 0xa5, 0x0d, 0x2e, 0x54, 0x3a, - 0xde, 0x8a, 0xf3, 0xd4, 0xc9, 0xb6, 0x7c, 0x47, 0xa3, 0x9a, 0xbb, 0xe5, 0xd9, 0x33, 0x93, 0x59, - 0x1a, 0xed, 0xc9, 0xf9, 0xe1, 0xcf, 0xe8, 0x32, 0x3b, 0x06, 0xdc, 0x6d, 0x92, 0xbb, 0x95, 0x2d, - 0x74, 0x09, 0xd2, 0x96, 0x6d, 0x8e, 0x08, 0x5f, 0xba, 0x2c, 0x16, 0x0d, 0x45, 0xf1, 0xd6, 0xcc, - 0xcb, 0x6f, 0xa8, 0x08, 0x09, 0x7a, 0x26, 0xbf, 0x93, 0xa0, 0x67, 0xca, 0xf3, 0x50, 0x1a, 0x4b, - 0x60, 0x81, 0x8f, 0xc4, 0x83, 0x1f, 0x51, 0x30, 0x14, 0xc3, 0xe9, 0x76, 0xdc, 0x19, 0xfa, 0x01, - 0xa4, 0xd8, 0xba, 0xf0, 0x2e, 0x17, 0xa7, 0xe0, 0x14, 0x69, 0xd7, 0x3c, 0xb7, 0x08, 0xe6, 0x9a, - 0x4a, 0x09, 0x0a, 0xa1, 0x0c, 0xa8, 0x5c, 0x86, 0x4b, 0xd3, 0x12, 0x9a, 0xd2, 0xf3, 0xe4, 0xa1, - 0xc4, 0x84, 0x5e, 0x81, 0xac, 0x97, 0xd1, 0xc4, 0x3e, 0x9c, 0x3c, 0x83, 0xae, 0x32, 0xf6, 0x54, - 0xd9, 0x06, 0x64, 0xeb, 0xc9, 0xe3, 0x4c, 0x82, 0xf7, 0x3f, 0xa3, 0x59, 0x56, 0x43, 0x73, 0x7a, - 0xca, 0x87, 0x50, 0x89, 0xca, 0x56, 0x63, 0x53, 0x93, 0xf2, 0xe6, 0xff, 0x32, 0x2c, 0x9d, 0x9a, - 0xf6, 0x40, 0xa3, 0xdc, 0x59, 0x01, 0xcb, 0x16, 0x5b, 0x17, 0x91, 0xb9, 0x92, 0x5c, 0x2c, 0x1a, - 0x8a, 0x0a, 0x57, 0x22, 0x33, 0x16, 0x33, 0xd1, 0x8d, 0x0e, 0x11, 0xd3, 0x5a, 0xc0, 0xa2, 0xe1, - 0x3b, 0x12, 0x9d, 0x15, 0x0d, 0xf6, 0x59, 0x87, 0x8f, 0x95, 0xfb, 0xcf, 0x61, 0xd9, 0x52, 0x54, - 0xb8, 0x3c, 0x3d, 0x6d, 0xa1, 0x6b, 0x00, 0x22, 0x60, 0xc8, 0xed, 0x96, 0xbc, 0x99, 0xc7, 0x39, - 0x2e, 0xb9, 0xcb, 0xf6, 0xdc, 0xb3, 0x50, 0xf2, 0x5f, 0xab, 0x8e, 0xfe, 0x48, 0xac, 0x65, 0x12, - 0x17, 0x3c, 0x9d, 0x63, 0xfd, 0x11, 0x51, 0xde, 0xf4, 0xe2, 0xb6, 0x9f, 0x70, 0xd0, 0x2d, 0x48, - 0xf1, 0x14, 0x25, 0x96, 0xe1, 0xf2, 0xe4, 0x69, 0x65, 0x5a, 0x98, 0xeb, 0x28, 0x0d, 0xa8, 0x46, - 0x27, 0x98, 0x0b, 0x79, 0xfa, 0x5d, 0x22, 0x30, 0xd8, 0x70, 0xea, 0xfc, 0x3e, 0x13, 0x49, 0x19, - 0x92, 0xf4, 0x8c, 0x45, 0x22, 0x36, 0x63, 0xec, 0x71, 0x6a, 0x6a, 0x49, 0xfd, 0x2f, 0x52, 0x4b, - 0xfa, 0x31, 0x52, 0xcb, 0xbf, 0x01, 0xb2, 0x98, 0x38, 0x16, 0x0b, 0x8b, 0x68, 0x07, 0x72, 0xe4, - 0xac, 0x4d, 0x2c, 0xea, 0x66, 0x92, 0xe9, 0x40, 0x42, 0x68, 0xd7, 0x5d, 0x4d, 0x06, 0x89, 0x3d, - 0x33, 0x74, 0x5b, 0xb2, 0x9e, 0x68, 0x02, 0x23, 0xcd, 0x83, 0xb4, 0xe7, 0x55, 0x97, 0xf6, 0x24, - 0x23, 0x51, 0xb0, 0xb0, 0x1a, 0xe3, 0x3d, 0xb7, 0x25, 0xef, 0x49, 0xcd, 0xf9, 0x58, 0x88, 0xf8, - 0xd4, 0x42, 0xc4, 0x27, 0x3d, 0x67, 0x98, 0x11, 0xcc, 0xe7, 0x55, 0x97, 0xf9, 0x2c, 0xcd, 0xe9, - 0xf1, 0x18, 0xf5, 0xd9, 0x0d, 0x53, 0x1f, 0x41, 0x5b, 0x6e, 0x44, 0x5a, 0x47, 0x72, 0x9f, 0x1f, - 0x05, 0xb8, 0x4f, 0x36, 0x92, 0x78, 0x08, 0x27, 0x53, 0xc8, 0x4f, 0x2d, 0x44, 0x7e, 0x72, 0x73, - 0xe6, 0x20, 0x82, 0xfd, 0xbc, 0x15, 0x64, 0x3f, 0x10, 0x49, 0xa0, 0xe4, 0x7a, 0x4f, 0xa3, 0x3f, - 0xaf, 0x79, 0xf4, 0x67, 0x39, 0x92, 0xbf, 0xc9, 0x31, 0x8c, 0xf3, 0x9f, 0xc3, 0x09, 0xfe, 0x23, - 0xf8, 0xca, 0xb3, 0x91, 0x2e, 0xe6, 0x10, 0xa0, 0xc3, 0x09, 0x02, 0x54, 0x98, 0xe3, 0x70, 0x0e, - 0x03, 0x7a, 0x7f, 0x3a, 0x03, 0x8a, 0xe6, 0x28, 0xb2, 0x9b, 0x8b, 0x51, 0x20, 0x35, 0x82, 0x02, - 0x95, 0x22, 0xe1, 0xba, 0x70, 0xbf, 0x30, 0x07, 0x3a, 0x99, 0xc2, 0x81, 0x04, 0x5b, 0xb9, 0x19, - 0xe9, 0x7c, 0x01, 0x12, 0x74, 0x32, 0x85, 0x04, 0xad, 0xcc, 0x75, 0x3b, 0x97, 0x05, 0xed, 0x86, - 0x59, 0x10, 0x9a, 0x73, 0xae, 0x22, 0x69, 0x50, 0x2b, 0x8a, 0x06, 0xad, 0x72, 0x8f, 0x2f, 0x46, - 0x7a, 0xfc, 0x2e, 0x3c, 0xe8, 0x79, 0x96, 0x25, 0xc7, 0xa2, 0x29, 0xcb, 0xe4, 0xc4, 0xb6, 0x4d, - 0x5b, 0x42, 0x79, 0xd1, 0x50, 0x6e, 0x32, 0x40, 0xe8, 0x47, 0xce, 0x19, 0x9c, 0x89, 0x23, 0xa6, - 0x40, 0xb4, 0x54, 0xfe, 0x14, 0xf7, 0x6d, 0x79, 0x1e, 0x09, 0x82, 0xc9, 0x9c, 0x04, 0x93, 0x01, - 0x0a, 0x91, 0x08, 0x53, 0x88, 0x75, 0x58, 0x66, 0x48, 0x68, 0x8c, 0x1d, 0x68, 0x96, 0xc7, 0x0e, - 0x6e, 0xc1, 0x0a, 0xcf, 0x73, 0x02, 0x18, 0x48, 0xf8, 0x93, 0xe2, 0xa8, 0xa0, 0xc4, 0x5e, 0x88, - 0x63, 0x2f, 0x70, 0xd0, 0x4b, 0xb0, 0x1a, 0xd0, 0xf5, 0x10, 0x96, 0x80, 0xca, 0x65, 0x4f, 0x7b, - 0x5b, 0x42, 0xad, 0x2f, 0xe2, 0xfe, 0x0c, 0xf9, 0xb4, 0x62, 0x1a, 0x03, 0x88, 0x7f, 0x4f, 0x0c, - 0x20, 0xf1, 0x9d, 0x19, 0x40, 0x10, 0x31, 0x26, 0xc3, 0x88, 0xf1, 0x5f, 0x71, 0x7f, 0x4d, 0x3c, - 0x3c, 0xdf, 0x36, 0x3b, 0x44, 0x62, 0x38, 0xfe, 0xcc, 0x10, 0x44, 0xdf, 0xec, 0x4a, 0xa4, 0xc6, - 0x1e, 0x99, 0x96, 0x97, 0xde, 0x72, 0x32, 0x7b, 0x79, 0xf0, 0x2f, 0xcd, 0x67, 0x58, 0xc2, 0xbf, - 0x32, 0x24, 0x1f, 0x12, 0x91, 0x8c, 0xf2, 0x98, 0x3d, 0x32, 0x3d, 0xbe, 0xc9, 0x78, 0x8a, 0xc9, - 0x63, 0xd1, 0x40, 0x77, 0x20, 0xc7, 0x0b, 0xa8, 0xaa, 0x69, 0x39, 0x32, 0x6f, 0x3c, 0x15, 0x1c, - 0xab, 0xa8, 0x93, 0x6e, 0x1c, 0x31, 0x9d, 0x43, 0xcb, 0xc1, 0x59, 0x4b, 0x3e, 0x05, 0x90, 0x6d, - 0x2e, 0xc4, 0x2c, 0xae, 0x42, 0x8e, 0xf5, 0xde, 0xb1, 0xb4, 0x36, 0xe1, 0x49, 0x20, 0x87, 0x7d, - 0x81, 0xf2, 0x00, 0xd0, 0x64, 0x2a, 0x43, 0x0d, 0x58, 0x22, 0x23, 0x62, 0x50, 0x87, 0x03, 0xcc, - 0x31, 0x00, 0x27, 0xa1, 0x0b, 0x31, 0xe8, 0x4e, 0x85, 0x4d, 0xf2, 0x3f, 0xbf, 0x5e, 0x2f, 0x0b, - 0xed, 0x17, 0xcd, 0x81, 0x4e, 0xc9, 0xc0, 0xa2, 0xe7, 0x58, 0xda, 0x2b, 0x7f, 0x4b, 0x30, 0x7a, - 0x12, 0x4a, 0x73, 0x53, 0xe7, 0xd6, 0xdd, 0xf2, 0x89, 0x00, 0x7f, 0x5a, 0x6c, 0xbe, 0xd7, 0x00, - 0xba, 0x9a, 0xa3, 0x7e, 0xa2, 0x19, 0x94, 0x74, 0xe4, 0xa4, 0x07, 0x24, 0xa8, 0x0a, 0x59, 0xd6, - 0x1a, 0x3a, 0xa4, 0x23, 0xa9, 0x9c, 0xd7, 0x0e, 0x8c, 0x33, 0xf3, 0x78, 0xe3, 0x0c, 0xcf, 0x72, - 0x76, 0x6c, 0x96, 0x03, 0x30, 0x3f, 0x17, 0x84, 0xf9, 0xac, 0x6f, 0x96, 0xad, 0x9b, 0xb6, 0x4e, - 0xcf, 0xf9, 0xd2, 0x24, 0xb1, 0xd7, 0x46, 0x37, 0xa0, 0x30, 0x20, 0x03, 0xcb, 0x34, 0xfb, 0xaa, - 0x08, 0x37, 0xcb, 0xdc, 0x34, 0x2f, 0x85, 0x75, 0x1e, 0x75, 0x7e, 0x9d, 0xf0, 0xcf, 0x9f, 0x4f, - 0x11, 0xff, 0xef, 0x26, 0x58, 0xf9, 0x0d, 0xaf, 0x6e, 0x84, 0x81, 0x0c, 0x3a, 0x86, 0x15, 0xef, - 0xf8, 0xab, 0x43, 0x1e, 0x16, 0xdc, 0x0d, 0xbd, 0x68, 0xfc, 0x28, 0x8f, 0xc2, 0x62, 0x07, 0xbd, - 0x07, 0x4f, 0x8e, 0xc5, 0x36, 0xcf, 0x75, 0x62, 0xd1, 0x10, 0xf7, 0x44, 0x38, 0xc4, 0xb9, 0xae, - 0xfd, 0xc9, 0x4a, 0x3e, 0xe6, 0xa9, 0xdb, 0x63, 0x44, 0x3f, 0x88, 0xcb, 0xa6, 0x2e, 0xff, 0x0d, - 0x28, 0xd8, 0x84, 0x6a, 0xba, 0xa1, 0x86, 0x4a, 0x12, 0x79, 0x21, 0x94, 0x85, 0x8e, 0x23, 0x78, - 0x62, 0x2a, 0x3e, 0x43, 0x3f, 0x84, 0x9c, 0x0f, 0xed, 0xe2, 0x11, 0x0c, 0xc7, 0x23, 0xee, 0xbe, - 0xae, 0xf2, 0xe7, 0xb8, 0xef, 0x32, 0x5c, 0x0a, 0xa8, 0xc3, 0x92, 0x4d, 0x9c, 0x61, 0x5f, 0x90, - 0xf3, 0xe2, 0xd6, 0x4b, 0x8b, 0x21, 0x3b, 0x26, 0x1d, 0xf6, 0x29, 0x96, 0xc6, 0xca, 0x03, 0x58, - 0x12, 0x12, 0xb4, 0x0c, 0x99, 0x93, 0x83, 0x7b, 0x07, 0x87, 0xef, 0x1e, 0x94, 0x63, 0x08, 0x60, - 0x69, 0xbb, 0x56, 0xab, 0x1f, 0x35, 0xcb, 0x71, 0x94, 0x83, 0xf4, 0xf6, 0xce, 0x21, 0x6e, 0x96, - 0x13, 0x4c, 0x8c, 0xeb, 0x6f, 0xd7, 0x6b, 0xcd, 0x72, 0x12, 0xad, 0x40, 0x41, 0x3c, 0xab, 0xbb, - 0x87, 0xf8, 0x9d, 0xed, 0x66, 0x39, 0x15, 0x10, 0x1d, 0xd7, 0x0f, 0xee, 0xd6, 0x71, 0x39, 0xad, - 0xbc, 0xcc, 0xd8, 0x7f, 0x04, 0x16, 0xf4, 0x79, 0x7e, 0x3c, 0xc0, 0xf3, 0x95, 0xdf, 0x26, 0x18, - 0x5d, 0x8e, 0x02, 0x78, 0xe8, 0xed, 0xb1, 0x81, 0x6f, 0x5d, 0x00, 0x1d, 0x8e, 0x8d, 0x1e, 0x3d, - 0x03, 0x45, 0x9b, 0x9c, 0x12, 0xda, 0xee, 0x09, 0xc0, 0x29, 0x52, 0x66, 0x01, 0x17, 0xa4, 0x94, - 0x1b, 0x39, 0x42, 0xed, 0x23, 0xd2, 0xa6, 0xaa, 0x88, 0x45, 0x62, 0xd3, 0xe5, 0x98, 0x1a, 0x93, - 0x1e, 0x0b, 0xa1, 0xf2, 0xe1, 0x85, 0xe6, 0x32, 0x07, 0x69, 0x5c, 0x6f, 0xe2, 0xf7, 0xca, 0x49, - 0x84, 0xa0, 0xc8, 0x1f, 0xd5, 0xe3, 0x83, 0xed, 0xa3, 0xe3, 0xc6, 0x21, 0x9b, 0xcb, 0x55, 0x28, - 0xb9, 0x73, 0xe9, 0x0a, 0xd3, 0xca, 0x1d, 0x78, 0x32, 0x02, 0x9d, 0xce, 0xa9, 0x75, 0x28, 0xef, - 0xfb, 0xb9, 0x2b, 0x50, 0xc4, 0xd8, 0x85, 0xe2, 0x18, 0x32, 0x8c, 0x4f, 0x52, 0x17, 0xbf, 0x08, - 0xe1, 0xa1, 0x3e, 0x5c, 0x18, 0x05, 0x9b, 0xca, 0x1f, 0xe2, 0xf0, 0xd4, 0x0c, 0xec, 0x88, 0xee, - 0x8d, 0xad, 0xd9, 0xed, 0x8b, 0x20, 0xcf, 0xf1, 0x2d, 0x7b, 0x67, 0xa1, 0x69, 0x3e, 0xde, 0xdf, - 0x3e, 0x6e, 0x84, 0xb7, 0xac, 0xf2, 0xc7, 0x44, 0x70, 0xfe, 0xc2, 0x98, 0xfb, 0x32, 0x2c, 0x69, - 0x6d, 0x06, 0x5b, 0x79, 0x17, 0xb3, 0x58, 0xb6, 0x66, 0xd4, 0xce, 0xd0, 0x1b, 0x00, 0xf4, 0x4c, - 0x15, 0xbd, 0x72, 0xe3, 0xd0, 0x24, 0x6d, 0xaf, 0x9f, 0x91, 0x76, 0xf3, 0x4c, 0x8e, 0x21, 0x47, - 0xe5, 0x93, 0x83, 0xde, 0x99, 0x16, 0x71, 0x17, 0xac, 0xd9, 0x5e, 0x2c, 0xd6, 0xa6, 0x1f, 0x2f, - 0xd6, 0x2a, 0x1f, 0x40, 0x31, 0x5c, 0xd2, 0x61, 0x07, 0xd7, 0x36, 0x87, 0x46, 0x87, 0xcf, 0x55, - 0x1a, 0x8b, 0x06, 0x7a, 0x05, 0xd2, 0x6c, 0x5b, 0xb8, 0xb8, 0x73, 0x32, 0xc2, 0xb1, 0x65, 0x0d, - 0x94, 0x84, 0x84, 0xb6, 0xf2, 0x08, 0xd2, 0x3c, 0x56, 0xb3, 0xb8, 0xcb, 0x0b, 0xaa, 0x12, 0xca, - 0xb3, 0x67, 0xf4, 0x01, 0x80, 0x46, 0xa9, 0xad, 0xb7, 0x86, 0xbe, 0xe3, 0xf5, 0xe9, 0xb1, 0x7e, - 0xdb, 0xd5, 0xdb, 0xb9, 0x2a, 0x83, 0xfe, 0x25, 0xdf, 0x34, 0x10, 0xf8, 0x03, 0x0e, 0x95, 0x03, - 0x28, 0x86, 0x6d, 0x5d, 0xf0, 0x29, 0xfa, 0x10, 0x06, 0x9f, 0x82, 0x4b, 0x48, 0xf0, 0xe9, 0x41, - 0xd7, 0xa4, 0x28, 0x42, 0xf3, 0x86, 0xf2, 0xcb, 0x04, 0xe4, 0x83, 0x0b, 0xfe, 0x3d, 0xc3, 0x8b, - 0x6b, 0x53, 0xe0, 0x45, 0xae, 0xab, 0x39, 0xef, 0x0a, 0x74, 0x71, 0x65, 0x02, 0x5d, 0x64, 0xba, - 0x9a, 0x73, 0xc2, 0xc0, 0xc5, 0x3b, 0x90, 0xa3, 0x67, 0xea, 0x63, 0xe2, 0x8b, 0x2c, 0x3d, 0xab, - 0x2f, 0x82, 0x30, 0x3e, 0x8d, 0x43, 0xd6, 0x9b, 0x81, 0x88, 0x02, 0xbb, 0x3f, 0x81, 0x89, 0x60, - 0xe9, 0x57, 0x14, 0xd9, 0x93, 0x5e, 0x91, 0xfd, 0x2d, 0x2f, 0x72, 0xa4, 0x16, 0xad, 0xeb, 0xb8, - 0xb5, 0x4c, 0x19, 0x2e, 0x5e, 0x87, 0x9c, 0x77, 0x7a, 0x18, 0x33, 0xd4, 0x3a, 0x1d, 0x9b, 0x38, - 0x8e, 0xcc, 0x39, 0x6e, 0x93, 0xff, 0x54, 0x30, 0x3f, 0x91, 0xc5, 0xe5, 0x24, 0x16, 0x0d, 0xa5, - 0x03, 0xa5, 0xb1, 0xa3, 0x87, 0x5e, 0x87, 0x8c, 0x35, 0x6c, 0xa9, 0xee, 0x26, 0x19, 0xbb, 0xa1, - 0xe0, 0x72, 0x8e, 0x61, 0xab, 0xaf, 0xb7, 0xef, 0x91, 0x73, 0xb7, 0x33, 0xd6, 0xb0, 0x75, 0x4f, - 0xec, 0x25, 0xf1, 0x95, 0x44, 0xf0, 0x2b, 0x23, 0xc8, 0xba, 0x47, 0x03, 0xfd, 0x18, 0x72, 0xde, - 0xd9, 0xf6, 0xfe, 0x35, 0x45, 0x86, 0x03, 0xe9, 0xde, 0x37, 0x61, 0x04, 0xd6, 0xd1, 0xbb, 0x06, - 0xe9, 0xa8, 0x3e, 0x37, 0xe5, 0x5f, 0xcb, 0xe2, 0x92, 0x78, 0xb1, 0xef, 0x12, 0x53, 0xe5, 0x3f, - 0x71, 0xc8, 0xba, 0x75, 0x55, 0xf4, 0x72, 0xe0, 0xf4, 0x15, 0xa7, 0xc5, 0x31, 0xa9, 0xe8, 0xff, - 0xcf, 0x08, 0xf7, 0x35, 0x71, 0xf1, 0xbe, 0x46, 0xfd, 0xe0, 0x71, 0x7f, 0xb5, 0xa5, 0x2e, 0xfc, - 0xab, 0xed, 0x45, 0x40, 0xd4, 0xa4, 0x5a, 0x5f, 0x1d, 0x99, 0x54, 0x37, 0xba, 0xaa, 0x98, 0x6c, - 0x71, 0x50, 0xca, 0xfc, 0xcd, 0x7d, 0xfe, 0xe2, 0x88, 0xcf, 0xfb, 0x2f, 0xe2, 0x90, 0xf5, 0x00, - 0xd5, 0x45, 0xff, 0x76, 0x5c, 0x86, 0x25, 0x89, 0x19, 0xc4, 0xef, 0x0e, 0xd9, 0xf2, 0xea, 0xf0, - 0xa9, 0x40, 0x1d, 0xbe, 0x0a, 0xd9, 0x01, 0xa1, 0x1a, 0x3f, 0xf5, 0xa2, 0x3c, 0xe0, 0xb5, 0x6f, - 0xbd, 0x06, 0xcb, 0x81, 0x3f, 0x45, 0x2c, 0x10, 0x1c, 0xd4, 0xdf, 0x2d, 0xc7, 0xaa, 0x99, 0x4f, - 0x3f, 0xbf, 0x9e, 0x3c, 0x20, 0x9f, 0xb0, 0x3d, 0x8b, 0xeb, 0xb5, 0x46, 0xbd, 0x76, 0xaf, 0x1c, - 0xaf, 0x2e, 0x7f, 0xfa, 0xf9, 0xf5, 0x0c, 0x26, 0xbc, 0xf4, 0x79, 0xab, 0x01, 0xf9, 0xe0, 0xaa, - 0x84, 0xf3, 0x21, 0x82, 0xe2, 0xdd, 0x93, 0xa3, 0xfd, 0xbd, 0xda, 0x76, 0xb3, 0xae, 0xde, 0x3f, - 0x6c, 0xd6, 0xcb, 0x71, 0xf4, 0x24, 0xac, 0xee, 0xef, 0xfd, 0xa4, 0xd1, 0x54, 0x6b, 0xfb, 0x7b, - 0xf5, 0x83, 0xa6, 0xba, 0xdd, 0x6c, 0x6e, 0xd7, 0xee, 0x95, 0x13, 0x5b, 0x5f, 0xe4, 0xa1, 0xb4, - 0xbd, 0x53, 0xdb, 0x63, 0x90, 0x49, 0x6f, 0x6b, 0xbc, 0x76, 0x53, 0x83, 0x14, 0xaf, 0xce, 0xcc, - 0xbc, 0xec, 0x53, 0x9d, 0x5d, 0x14, 0x47, 0xbb, 0x90, 0xe6, 0x85, 0x1b, 0x34, 0xfb, 0xf6, 0x4f, - 0x75, 0x4e, 0x95, 0x9c, 0x75, 0x86, 0x1f, 0x8f, 0x99, 0xd7, 0x81, 0xaa, 0xb3, 0x8b, 0xe6, 0x08, - 0x43, 0xce, 0x27, 0x7e, 0xf3, 0xaf, 0xc7, 0x54, 0x17, 0x08, 0x36, 0x68, 0x1f, 0x32, 0x2e, 0x57, - 0x9f, 0x77, 0x61, 0xa7, 0x3a, 0xb7, 0xaa, 0xcd, 0xa6, 0x4b, 0xd4, 0x54, 0x66, 0xdf, 0x3e, 0xaa, - 0xce, 0x29, 0xd1, 0xa3, 0x3d, 0x58, 0x92, 0x64, 0x66, 0xce, 0x25, 0x9c, 0xea, 0xbc, 0x2a, 0x35, - 0x9b, 0x34, 0xbf, 0x5a, 0x35, 0xff, 0x4e, 0x55, 0x75, 0x81, 0xbf, 0x0f, 0xe8, 0x04, 0x20, 0x50, - 0x41, 0x59, 0xe0, 0xb2, 0x54, 0x75, 0x91, 0xbf, 0x0a, 0xe8, 0x10, 0xb2, 0x1e, 0xa1, 0x9d, 0x7b, - 0x75, 0xa9, 0x3a, 0xbf, 0xbc, 0x8f, 0x1e, 0x40, 0x21, 0x4c, 0xe4, 0x16, 0xbb, 0x90, 0x54, 0x5d, - 0xb0, 0x6e, 0xcf, 0xfc, 0x87, 0x59, 0xdd, 0x62, 0x17, 0x94, 0xaa, 0x0b, 0x96, 0xf1, 0xd1, 0x47, - 0xb0, 0x32, 0xc9, 0xba, 0x16, 0xbf, 0xaf, 0x54, 0xbd, 0x40, 0x61, 0x1f, 0x0d, 0x00, 0x4d, 0x61, - 0x6b, 0x17, 0xb8, 0xbe, 0x54, 0xbd, 0x48, 0x9d, 0x1f, 0x75, 0xa0, 0x34, 0x4e, 0x81, 0x16, 0xbd, - 0xce, 0x54, 0x5d, 0xb8, 0xe6, 0x2f, 0xbe, 0x12, 0x26, 0x0a, 0x8b, 0x5e, 0x6f, 0xaa, 0x2e, 0xfc, - 0x0b, 0x80, 0x1d, 0x87, 0x00, 0x29, 0x5b, 0xe0, 0xba, 0x53, 0x75, 0x91, 0x9f, 0x01, 0xc8, 0x82, - 0xd5, 0x69, 0x64, 0xec, 0x22, 0xb7, 0x9f, 0xaa, 0x17, 0xfa, 0x47, 0xb0, 0x53, 0xff, 0xf2, 0x9b, - 0xb5, 0xf8, 0x57, 0xdf, 0xac, 0xc5, 0xff, 0xf1, 0xcd, 0x5a, 0xfc, 0xb3, 0x6f, 0xd7, 0x62, 0x5f, - 0x7d, 0xbb, 0x16, 0xfb, 0xeb, 0xb7, 0x6b, 0xb1, 0x9f, 0xbd, 0xd0, 0xd5, 0x69, 0x6f, 0xd8, 0xda, - 0x68, 0x9b, 0x83, 0xcd, 0xe0, 0x65, 0xd5, 0x69, 0x17, 0x68, 0x5b, 0x4b, 0x3c, 0xd3, 0xdf, 0xfe, - 0x6f, 0x00, 0x00, 0x00, 0xff, 0xff, 0x07, 0xc6, 0xcd, 0x86, 0x60, 0x2b, 0x00, 0x00, + // 3233 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe4, 0x5a, 0xcb, 0x6f, 0x23, 0xc7, + 0xd1, 0xe7, 0xfb, 0x51, 0x14, 0x1f, 0x6a, 0xc9, 0x32, 0x77, 0xbc, 0x2b, 0xad, 0x67, 0x61, 0x7b, + 0xbd, 0xb6, 0xa5, 0xcf, 0xda, 0xcf, 0xce, 0x1a, 0x76, 0x62, 0x4b, 0x5c, 0x2a, 0x94, 0x57, 0x96, + 0x94, 0x11, 0xb5, 0x86, 0x13, 0x7b, 0xc7, 0x43, 0xb2, 0x45, 0x8e, 0x97, 0x9c, 0x19, 0xcf, 0x0c, + 0x69, 0x69, 0x8f, 0x79, 0x5c, 0x8c, 0x1c, 0x7c, 0x0c, 0x10, 0xf8, 0xe6, 0x7f, 0x20, 0x40, 0x0e, + 0x39, 0xe5, 0x14, 0x20, 0x06, 0x92, 0x83, 0x8f, 0x39, 0x04, 0x4e, 0x60, 0xdf, 0x72, 0xcd, 0x21, + 0xa7, 0x00, 0x41, 0x3f, 0xe6, 0x45, 0x72, 0xc8, 0x61, 0xb4, 0x3e, 0xe5, 0xd6, 0x5d, 0x53, 0x55, + 0xd3, 0x5d, 0xdd, 0x5d, 0x55, 0xbf, 0xae, 0x86, 0xa7, 0x6c, 0xac, 0x75, 0xb0, 0x39, 0x50, 0x35, + 0x7b, 0x4b, 0x69, 0xb5, 0xd5, 0x2d, 0xfb, 0xc2, 0xc0, 0xd6, 0xa6, 0x61, 0xea, 0xb6, 0x8e, 0xca, + 0xde, 0xc7, 0x4d, 0xf2, 0x51, 0xb8, 0xe6, 0xe3, 0x6e, 0x9b, 0x17, 0x86, 0xad, 0x6f, 0x19, 0xa6, + 0xae, 0x9f, 0x31, 0x7e, 0xe1, 0xaa, 0xef, 0x33, 0xd5, 0xe3, 0xd7, 0x16, 0xf8, 0xca, 0x85, 0x1f, + 0xe2, 0x0b, 0xe7, 0xeb, 0xb5, 0x09, 0x59, 0x43, 0x31, 0x95, 0x81, 0xf3, 0x79, 0xa3, 0xab, 0xeb, + 0xdd, 0x3e, 0xde, 0xa2, 0xbd, 0xd6, 0xf0, 0x6c, 0xcb, 0x56, 0x07, 0xd8, 0xb2, 0x95, 0x81, 0xc1, + 0x19, 0x56, 0xbb, 0x7a, 0x57, 0xa7, 0xcd, 0x2d, 0xd2, 0x62, 0x54, 0xf1, 0x9f, 0x00, 0x59, 0x09, + 0x7f, 0x3c, 0xc4, 0x96, 0x8d, 0xb6, 0x21, 0x85, 0xdb, 0x3d, 0xbd, 0x1a, 0xbf, 0x1e, 0xbf, 0x59, + 0xd8, 0xbe, 0xba, 0x39, 0x36, 0xb9, 0x4d, 0xce, 0x57, 0x6f, 0xf7, 0xf4, 0x46, 0x4c, 0xa2, 0xbc, + 0xe8, 0x15, 0x48, 0x9f, 0xf5, 0x87, 0x56, 0xaf, 0x9a, 0xa0, 0x42, 0xd7, 0xc2, 0x84, 0xf6, 0x08, + 0x53, 0x23, 0x26, 0x31, 0x6e, 0xf2, 0x2b, 0x55, 0x3b, 0xd3, 0xab, 0xc9, 0xd9, 0xbf, 0xda, 0xd7, + 0xce, 0xe8, 0xaf, 0x08, 0x2f, 0xda, 0x05, 0x50, 0x35, 0xd5, 0x96, 0xdb, 0x3d, 0x45, 0xd5, 0xaa, + 0x29, 0x2a, 0xf9, 0x74, 0xb8, 0xa4, 0x6a, 0xd7, 0x08, 0x63, 0x23, 0x26, 0xe5, 0x55, 0xa7, 0x43, + 0x86, 0xfb, 0xf1, 0x10, 0x9b, 0x17, 0xd5, 0xf4, 0xec, 0xe1, 0xfe, 0x88, 0x30, 0x91, 0xe1, 0x52, + 0x6e, 0x54, 0x87, 0x42, 0x0b, 0x77, 0x55, 0x4d, 0x6e, 0xf5, 0xf5, 0xf6, 0xc3, 0x6a, 0x86, 0x0a, + 0x8b, 0x61, 0xc2, 0xbb, 0x84, 0x75, 0x97, 0x70, 0x36, 0x62, 0x12, 0xb4, 0xdc, 0x1e, 0x7a, 0x03, + 0x72, 0xed, 0x1e, 0x6e, 0x3f, 0x94, 0xed, 0xf3, 0x6a, 0x96, 0xea, 0xd8, 0x08, 0xd3, 0x51, 0x23, + 0x7c, 0xcd, 0xf3, 0x46, 0x4c, 0xca, 0xb6, 0x59, 0x93, 0xcc, 0xbf, 0x83, 0xfb, 0xea, 0x08, 0x9b, + 0x44, 0x3e, 0x37, 0x7b, 0xfe, 0x77, 0x19, 0x27, 0xd5, 0x90, 0xef, 0x38, 0x1d, 0xf4, 0x26, 0xe4, + 0xb1, 0xd6, 0xe1, 0xd3, 0xc8, 0x53, 0x15, 0xd7, 0x43, 0xd7, 0x59, 0xeb, 0x38, 0x93, 0xc8, 0x61, + 0xde, 0x46, 0x77, 0x20, 0xd3, 0xd6, 0x07, 0x03, 0xd5, 0xae, 0x02, 0x95, 0x5e, 0x0f, 0x9d, 0x00, + 0xe5, 0x6a, 0xc4, 0x24, 0xce, 0x8f, 0x0e, 0xa1, 0xd4, 0x57, 0x2d, 0x5b, 0xb6, 0x34, 0xc5, 0xb0, + 0x7a, 0xba, 0x6d, 0x55, 0x0b, 0x54, 0xc3, 0x33, 0x61, 0x1a, 0x0e, 0x54, 0xcb, 0x3e, 0x71, 0x98, + 0x1b, 0x31, 0xa9, 0xd8, 0xf7, 0x13, 0x88, 0x3e, 0xfd, 0xec, 0x0c, 0x9b, 0xae, 0xc2, 0xea, 0xd2, + 0x6c, 0x7d, 0x47, 0x84, 0xdb, 0x91, 0x27, 0xfa, 0x74, 0x3f, 0x01, 0xfd, 0x04, 0x56, 0xfa, 0xba, + 0xd2, 0x71, 0xd5, 0xc9, 0xed, 0xde, 0x50, 0x7b, 0x58, 0x2d, 0x52, 0xa5, 0xcf, 0x87, 0x0e, 0x52, + 0x57, 0x3a, 0x8e, 0x8a, 0x1a, 0x11, 0x68, 0xc4, 0xa4, 0xe5, 0xfe, 0x38, 0x11, 0x3d, 0x80, 0x55, + 0xc5, 0x30, 0xfa, 0x17, 0xe3, 0xda, 0x4b, 0x54, 0xfb, 0xad, 0x30, 0xed, 0x3b, 0x44, 0x66, 0x5c, + 0x3d, 0x52, 0x26, 0xa8, 0xa8, 0x09, 0x15, 0xc3, 0xc4, 0x86, 0x62, 0x62, 0xd9, 0x30, 0x75, 0x43, + 0xb7, 0x94, 0x7e, 0xb5, 0x4c, 0x75, 0x3f, 0x17, 0xa6, 0xfb, 0x98, 0xf1, 0x1f, 0x73, 0xf6, 0x46, + 0x4c, 0x2a, 0x1b, 0x41, 0x12, 0xd3, 0xaa, 0xb7, 0xb1, 0x65, 0x79, 0x5a, 0x2b, 0xf3, 0xb4, 0x52, + 0xfe, 0xa0, 0xd6, 0x00, 0x89, 0x1c, 0x26, 0x7c, 0x4e, 0xc4, 0xe5, 0x91, 0x6e, 0xe3, 0xea, 0xf2, + 0xec, 0xc3, 0x54, 0xa7, 0xac, 0xf7, 0x75, 0x1b, 0x93, 0xc3, 0x84, 0xdd, 0x1e, 0x52, 0xe0, 0x89, + 0x11, 0x36, 0xd5, 0xb3, 0x0b, 0xaa, 0x46, 0xa6, 0x5f, 0x2c, 0x55, 0xd7, 0xaa, 0x88, 0x2a, 0x7c, + 0x21, 0x4c, 0xe1, 0x7d, 0x2a, 0x44, 0x54, 0xd4, 0x1d, 0x91, 0x46, 0x4c, 0x5a, 0x19, 0x4d, 0x92, + 0xc9, 0x16, 0x3b, 0x53, 0x35, 0xa5, 0xaf, 0x3e, 0xc2, 0xfc, 0xc8, 0xac, 0xcc, 0xde, 0x62, 0x7b, + 0x9c, 0xdb, 0x39, 0x37, 0xc5, 0x33, 0x3f, 0x61, 0x37, 0x0b, 0xe9, 0x91, 0xd2, 0x1f, 0x62, 0xf1, + 0x39, 0x28, 0xf8, 0x9c, 0x29, 0xaa, 0x42, 0x76, 0x80, 0x2d, 0x4b, 0xe9, 0x62, 0xea, 0x7b, 0xf3, + 0x92, 0xd3, 0x15, 0x7f, 0x9e, 0x80, 0xe5, 0x09, 0xaf, 0x82, 0x10, 0xa4, 0x7a, 0x8a, 0xd5, 0xa3, + 0xcc, 0x4b, 0x12, 0x6d, 0xa3, 0x57, 0x21, 0xd3, 0xc3, 0x4a, 0x07, 0x9b, 0xdc, 0x13, 0x57, 0xfd, + 0x63, 0x64, 0x51, 0xa6, 0x41, 0xbf, 0xef, 0xa6, 0xbe, 0xfc, 0x7a, 0x23, 0x26, 0x71, 0x6e, 0x74, + 0x04, 0x95, 0xbe, 0x62, 0xd9, 0x32, 0x3b, 0xa5, 0xb2, 0xcf, 0x2b, 0x4f, 0xfa, 0xa6, 0x03, 0xc5, + 0x39, 0xd7, 0xc4, 0x31, 0x73, 0x45, 0xa5, 0x7e, 0x80, 0x8a, 0x24, 0x58, 0x6d, 0x5d, 0x3c, 0x52, + 0x34, 0x5b, 0xd5, 0xb0, 0x3c, 0x52, 0xfa, 0x6a, 0x47, 0xb1, 0x75, 0xd3, 0xaa, 0xa6, 0xae, 0x27, + 0x6f, 0x16, 0xb6, 0xaf, 0x4c, 0x28, 0xad, 0x8f, 0xd4, 0x0e, 0xd6, 0xda, 0x98, 0xab, 0x5b, 0x71, + 0x85, 0xef, 0xbb, 0xb2, 0x62, 0x09, 0x96, 0xfc, 0x71, 0x44, 0xfc, 0x2c, 0xee, 0x1a, 0x90, 0xfe, + 0xb3, 0x0a, 0xd9, 0x11, 0x36, 0xe9, 0xea, 0x73, 0x03, 0xf2, 0x2e, 0xba, 0x01, 0x45, 0xba, 0x72, + 0xb2, 0xf3, 0x9d, 0x58, 0x27, 0x25, 0x2d, 0x51, 0xe2, 0x7d, 0xce, 0xb4, 0x01, 0x05, 0x63, 0xdb, + 0x70, 0x59, 0x92, 0x94, 0x05, 0x8c, 0x6d, 0xc3, 0x61, 0x78, 0x1a, 0x96, 0xc8, 0x58, 0x5d, 0x8e, + 0x14, 0xfd, 0x49, 0x81, 0xd0, 0x38, 0x8b, 0xf8, 0xe7, 0x04, 0x54, 0xc6, 0x63, 0x0f, 0xba, 0x03, + 0x29, 0x12, 0x86, 0x79, 0x44, 0x15, 0x36, 0x59, 0x8c, 0xde, 0x74, 0x62, 0xf4, 0x66, 0xd3, 0x89, + 0xd1, 0xbb, 0x39, 0x32, 0xf9, 0xcf, 0xfe, 0xb6, 0x11, 0x97, 0xa8, 0x04, 0xba, 0x42, 0x42, 0x85, + 0xa2, 0x6a, 0xb2, 0xda, 0xa1, 0x43, 0xce, 0x93, 0x38, 0xa0, 0xa8, 0xda, 0x7e, 0x07, 0x1d, 0x40, + 0xa5, 0xad, 0x6b, 0x16, 0xd6, 0xac, 0xa1, 0x25, 0xb3, 0x1c, 0x80, 0xaf, 0xd8, 0xd3, 0x93, 0x6b, + 0x5e, 0x73, 0x38, 0x8f, 0x29, 0xa3, 0x54, 0x6e, 0x07, 0x09, 0x68, 0x0f, 0x60, 0x62, 0x91, 0x26, + 0x43, 0x82, 0xbb, 0x16, 0xa7, 0x46, 0x47, 0xb1, 0x9d, 0xb5, 0xf2, 0x49, 0xa2, 0x67, 0xa1, 0xac, + 0x18, 0x86, 0x6c, 0xd9, 0x8a, 0x8d, 0xe5, 0xd6, 0x85, 0x8d, 0x2d, 0x1a, 0x63, 0x97, 0xa4, 0xa2, + 0x62, 0x18, 0x27, 0x84, 0xba, 0x4b, 0x88, 0xe8, 0x19, 0x28, 0x91, 0x70, 0xac, 0x2a, 0x7d, 0xb9, + 0x87, 0xd5, 0x6e, 0xcf, 0xa6, 0xd1, 0x34, 0x29, 0x15, 0x39, 0xb5, 0x41, 0x89, 0x62, 0xc7, 0x5d, + 0x71, 0x1a, 0x8a, 0xc9, 0x96, 0xef, 0x28, 0xb6, 0xe2, 0x6c, 0x79, 0xd2, 0x26, 0x34, 0x43, 0xb1, + 0x7b, 0xdc, 0x3e, 0xb4, 0x8d, 0xd6, 0xc8, 0x31, 0xa0, 0x6a, 0x93, 0x54, 0x2d, 0xef, 0xa1, 0x55, + 0x48, 0x1b, 0xa6, 0x3e, 0xc2, 0x74, 0xe9, 0x72, 0x12, 0xeb, 0x88, 0xa2, 0xbb, 0x66, 0x6e, 0xbc, + 0x44, 0x25, 0x48, 0xd8, 0xe7, 0xfc, 0x3f, 0x09, 0xfb, 0x5c, 0x7c, 0x1e, 0xca, 0x63, 0x01, 0xd1, + 0xf7, 0x93, 0xb8, 0xff, 0x27, 0xa2, 0x04, 0xa5, 0x60, 0xf8, 0x1e, 0x57, 0x86, 0xfe, 0x0f, 0x52, + 0x64, 0x5d, 0xe8, 0x90, 0x4b, 0x53, 0xf2, 0x1e, 0x2e, 0xd7, 0xbc, 0x30, 0xb0, 0x44, 0x39, 0xc5, + 0x32, 0x14, 0x03, 0x11, 0x55, 0x5c, 0x83, 0xd5, 0x69, 0x01, 0x52, 0xec, 0xb9, 0xf4, 0x40, 0xa0, + 0x43, 0xaf, 0x40, 0xce, 0x8d, 0x90, 0x6c, 0x1f, 0x4e, 0x9e, 0x41, 0x87, 0x59, 0x72, 0x59, 0xc9, + 0x06, 0x24, 0xeb, 0x49, 0xfd, 0x4c, 0x82, 0x8e, 0x3f, 0xab, 0x18, 0x46, 0x43, 0xb1, 0x7a, 0xe2, + 0x87, 0x50, 0x0d, 0x8b, 0x7e, 0x63, 0xa6, 0x49, 0xb9, 0xf6, 0x5f, 0x83, 0xcc, 0x99, 0x6e, 0x0e, + 0x14, 0x9b, 0x2a, 0x2b, 0x4a, 0xbc, 0x47, 0xd6, 0x85, 0x45, 0xc2, 0x24, 0x25, 0xb3, 0x8e, 0x28, + 0xc3, 0x95, 0xd0, 0x08, 0x48, 0x44, 0x54, 0xad, 0x83, 0x99, 0x59, 0x8b, 0x12, 0xeb, 0x78, 0x8a, + 0xd8, 0x60, 0x59, 0x87, 0xfc, 0xd6, 0xa2, 0x73, 0xa5, 0xfa, 0xf3, 0x12, 0xef, 0x89, 0x32, 0xac, + 0x4d, 0x0f, 0x83, 0xe8, 0x1a, 0x00, 0x73, 0x18, 0x7c, 0xbb, 0x25, 0x6f, 0x2e, 0x49, 0x79, 0x4a, + 0xb9, 0x4b, 0xf6, 0xdc, 0xb3, 0x50, 0xf6, 0x3e, 0xcb, 0x96, 0xfa, 0x88, 0xad, 0x65, 0x52, 0x2a, + 0xba, 0x3c, 0x27, 0xea, 0x23, 0x2c, 0xbe, 0xe9, 0xfa, 0x6d, 0x2f, 0x80, 0xa1, 0x5b, 0x90, 0xa2, + 0x21, 0x8f, 0x2d, 0xc3, 0xda, 0xe4, 0x69, 0x25, 0x5c, 0x12, 0xe5, 0x11, 0x1b, 0x20, 0x84, 0x07, + 0xac, 0x85, 0x34, 0xfd, 0x3a, 0xe1, 0x9b, 0x6c, 0x30, 0x14, 0x3f, 0xce, 0x40, 0x52, 0x81, 0xa4, + 0x7d, 0x4e, 0x3c, 0x11, 0xb1, 0x18, 0x69, 0x4e, 0x0d, 0x2d, 0xa9, 0xef, 0x22, 0xb4, 0xa4, 0x2f, + 0x11, 0x5a, 0x7e, 0x93, 0x70, 0xcf, 0x4d, 0x20, 0x7a, 0x3b, 0xf3, 0x89, 0x7b, 0xf3, 0x71, 0xac, + 0x95, 0xf0, 0x59, 0x2b, 0xcc, 0xdf, 0x78, 0x56, 0x4c, 0x5d, 0x3a, 0x1c, 0xa7, 0xbf, 0x0b, 0x9b, + 0x65, 0x2e, 0x61, 0xb3, 0x3f, 0x15, 0x20, 0x27, 0x61, 0xcb, 0x20, 0xa1, 0x04, 0xed, 0x42, 0x1e, + 0x9f, 0xb7, 0xb1, 0x61, 0x3b, 0xd1, 0x77, 0x7a, 0x32, 0xc7, 0xb8, 0xeb, 0x0e, 0x27, 0x81, 0x25, + 0xae, 0x18, 0xba, 0xcd, 0x91, 0x67, 0x38, 0x88, 0xe4, 0xe2, 0x7e, 0xe8, 0xf9, 0xaa, 0x03, 0x3d, + 0x93, 0xa1, 0x48, 0x84, 0x49, 0x8d, 0x61, 0xcf, 0xdb, 0x1c, 0x7b, 0xa6, 0xe6, 0xfc, 0x2c, 0x00, + 0x3e, 0x6b, 0x01, 0xf0, 0x99, 0x9e, 0x33, 0xcd, 0x10, 0xf4, 0xf9, 0xaa, 0x83, 0x3e, 0x33, 0x73, + 0x46, 0x3c, 0x06, 0x3f, 0xf7, 0x82, 0xf0, 0x93, 0x41, 0xc7, 0x1b, 0xa1, 0xd2, 0xa1, 0xf8, 0xf3, + 0xfb, 0x3e, 0xfc, 0x99, 0x0b, 0x05, 0x7f, 0x4c, 0xc9, 0x14, 0x00, 0x5a, 0x0b, 0x00, 0xd0, 0xfc, + 0x1c, 0x1b, 0x84, 0x20, 0xd0, 0xb7, 0xfc, 0x08, 0x14, 0x42, 0x41, 0x2c, 0x5f, 0xef, 0x69, 0x10, + 0xf4, 0x35, 0x17, 0x82, 0x16, 0x42, 0x31, 0x34, 0x9f, 0xc3, 0x38, 0x06, 0x3d, 0x9a, 0xc0, 0xa0, + 0x0c, 0x33, 0x3e, 0x1b, 0xaa, 0x62, 0x0e, 0x08, 0x3d, 0x9a, 0x00, 0xa1, 0xc5, 0x39, 0x0a, 0xe7, + 0xa0, 0xd0, 0xf7, 0xa7, 0xa3, 0xd0, 0x70, 0x9c, 0xc8, 0x87, 0x19, 0x0d, 0x86, 0xca, 0x21, 0x30, + 0xb4, 0x1c, 0x0a, 0x99, 0x98, 0xfa, 0xc8, 0x38, 0xf4, 0x74, 0x0a, 0x0e, 0x65, 0x88, 0xf1, 0x66, + 0xa8, 0xf2, 0x08, 0x40, 0xf4, 0x74, 0x0a, 0x10, 0x5d, 0x9e, 0xab, 0x76, 0x2e, 0x12, 0xdd, 0x0b, + 0x22, 0x51, 0x34, 0xe7, 0x5c, 0x85, 0x42, 0xd1, 0x56, 0x18, 0x14, 0x65, 0x70, 0xf1, 0xc5, 0x50, + 0x8d, 0x0b, 0x60, 0xd1, 0xa3, 0x09, 0x2c, 0xba, 0x3a, 0x67, 0xa7, 0x45, 0x05, 0xa3, 0xcf, 0x93, + 0x54, 0x65, 0xcc, 0x3d, 0x93, 0x74, 0x0a, 0x9b, 0xa6, 0x6e, 0x72, 0x3c, 0xc5, 0x3a, 0xe2, 0x4d, + 0x92, 0x95, 0x7b, 0xae, 0x78, 0x06, 0x70, 0xa5, 0x69, 0xab, 0xcf, 0xfd, 0x8a, 0xbf, 0x8b, 0x7b, + 0xb2, 0x34, 0x30, 0xf9, 0x33, 0xfa, 0x3c, 0xcf, 0xe8, 0x7d, 0x38, 0x2e, 0x11, 0xc4, 0x71, 0x1b, + 0x50, 0x20, 0xe9, 0xe8, 0x18, 0x44, 0x53, 0x0c, 0x17, 0xa2, 0xdd, 0x82, 0x65, 0x1a, 0x38, 0x59, + 0x76, 0xc6, 0x63, 0x72, 0x8a, 0xc6, 0xe4, 0x32, 0xf9, 0xc0, 0xac, 0xc0, 0x82, 0xf3, 0x4b, 0xb0, + 0xe2, 0xe3, 0x75, 0xd3, 0x5c, 0x86, 0x57, 0x2a, 0x2e, 0xf7, 0x0e, 0xcf, 0x77, 0xff, 0x10, 0xf7, + 0x2c, 0xe4, 0x61, 0xbb, 0x69, 0x30, 0x2c, 0xfe, 0x98, 0x60, 0x58, 0xe2, 0xbf, 0x86, 0x61, 0xfe, + 0xb4, 0x3d, 0x19, 0x4c, 0xdb, 0xff, 0x15, 0xf7, 0xd6, 0xc4, 0x05, 0x55, 0x6d, 0xbd, 0x83, 0x79, + 0x22, 0x4d, 0xdb, 0x24, 0xed, 0xe9, 0xeb, 0x5d, 0x9e, 0x2e, 0x93, 0x26, 0xe1, 0x72, 0xe3, 0x65, + 0x9e, 0x87, 0x43, 0x37, 0x07, 0x4f, 0x53, 0x0b, 0xf3, 0x1c, 0xbc, 0x02, 0xc9, 0x87, 0x98, 0x45, + 0xb7, 0x25, 0x89, 0x34, 0x09, 0x1f, 0xdd, 0x64, 0x34, 0x66, 0x2d, 0x49, 0xac, 0x83, 0xee, 0x40, + 0x9e, 0xde, 0x8a, 0xcb, 0xba, 0x61, 0xf1, 0x40, 0xf4, 0x94, 0x7f, 0xae, 0xec, 0xf2, 0x7b, 0xf3, + 0x98, 0xf0, 0x1c, 0x19, 0x96, 0x94, 0x33, 0x78, 0xcb, 0x97, 0x6e, 0xe5, 0x03, 0xe9, 0xd6, 0x55, + 0xc8, 0x93, 0xd1, 0x5b, 0x86, 0xd2, 0xc6, 0x34, 0xaa, 0xe4, 0x25, 0x8f, 0x20, 0x3e, 0x00, 0x34, + 0x19, 0x1b, 0x51, 0x03, 0x32, 0x78, 0x84, 0x35, 0x9b, 0xe5, 0x78, 0x63, 0x59, 0x34, 0xcf, 0x85, + 0xb0, 0x66, 0xef, 0x56, 0x89, 0x91, 0xff, 0xf1, 0xf5, 0x46, 0x85, 0x71, 0xbf, 0xa8, 0x0f, 0x54, + 0x1b, 0x0f, 0x0c, 0xfb, 0x42, 0xe2, 0xf2, 0xe2, 0x5f, 0x13, 0x04, 0x23, 0x06, 0xe2, 0xe6, 0x54, + 0xdb, 0x3a, 0x5b, 0x3e, 0xe1, 0x03, 0xb1, 0xd1, 0xec, 0xbd, 0x0e, 0xd0, 0x55, 0x2c, 0xf9, 0x13, + 0x45, 0xb3, 0x71, 0x87, 0x1b, 0xdd, 0x47, 0x41, 0x02, 0xe4, 0x48, 0x6f, 0x68, 0xe1, 0x0e, 0xc7, + 0xd3, 0x6e, 0xdf, 0x37, 0xcf, 0xec, 0xe5, 0xe6, 0x19, 0xb4, 0x72, 0x6e, 0xcc, 0xca, 0x3e, 0xac, + 0x95, 0xf7, 0x63, 0x2d, 0x32, 0x36, 0xc3, 0x54, 0x75, 0x53, 0xb5, 0x2f, 0xe8, 0xd2, 0x24, 0x25, + 0xb7, 0x8f, 0x6e, 0x40, 0x71, 0x80, 0x07, 0x86, 0xae, 0xf7, 0x65, 0xe6, 0x6e, 0x0a, 0x54, 0x74, + 0x89, 0x13, 0xeb, 0xd4, 0xeb, 0xfc, 0x22, 0xe1, 0x9d, 0x3f, 0x0f, 0xa7, 0xff, 0xcf, 0x19, 0x58, + 0xfc, 0x25, 0xbd, 0x62, 0x0a, 0x66, 0x46, 0xe8, 0x04, 0x96, 0xdd, 0xe3, 0x2f, 0x0f, 0xa9, 0x5b, + 0x70, 0x36, 0x74, 0x54, 0xff, 0x51, 0x19, 0x05, 0xc9, 0x16, 0x7a, 0x0f, 0x9e, 0x1c, 0xf3, 0x6d, + 0xae, 0xea, 0x44, 0x54, 0x17, 0xf7, 0x44, 0xd0, 0xc5, 0x39, 0xaa, 0x3d, 0x63, 0x25, 0x2f, 0x79, + 0xea, 0xf6, 0xa1, 0x14, 0x4c, 0xf4, 0xa6, 0x2e, 0xff, 0x0d, 0x28, 0x9a, 0xd8, 0x56, 0x54, 0x4d, + 0x0e, 0xe0, 0xb4, 0x25, 0x46, 0xe4, 0xb7, 0x4d, 0xc7, 0xf0, 0xc4, 0xd4, 0x84, 0x0f, 0x7d, 0x0f, + 0xf2, 0x5e, 0xae, 0x18, 0x0f, 0x81, 0x4c, 0xee, 0xed, 0x89, 0xc7, 0x2b, 0xfe, 0x3e, 0xee, 0xa9, + 0x0c, 0xde, 0xc7, 0xd4, 0x21, 0x63, 0x62, 0x6b, 0xd8, 0x67, 0x37, 0x24, 0xa5, 0xed, 0x97, 0xa2, + 0xa5, 0x8a, 0x84, 0x3a, 0xec, 0xdb, 0x12, 0x17, 0x16, 0x1f, 0x40, 0x86, 0x51, 0x50, 0x01, 0xb2, + 0xa7, 0x87, 0xf7, 0x0e, 0x8f, 0xde, 0x3d, 0xac, 0xc4, 0x10, 0x40, 0x66, 0xa7, 0x56, 0xab, 0x1f, + 0x37, 0x2b, 0x71, 0x94, 0x87, 0xf4, 0xce, 0xee, 0x91, 0xd4, 0xac, 0x24, 0x08, 0x59, 0xaa, 0xbf, + 0x5d, 0xaf, 0x35, 0x2b, 0x49, 0xb4, 0x0c, 0x45, 0xd6, 0x96, 0xf7, 0x8e, 0xa4, 0x77, 0x76, 0x9a, + 0x95, 0x94, 0x8f, 0x74, 0x52, 0x3f, 0xbc, 0x5b, 0x97, 0x2a, 0x69, 0xf1, 0x65, 0xb8, 0x12, 0x9a, + 0x5c, 0x7a, 0x97, 0x2d, 0x71, 0xdf, 0x65, 0x8b, 0xf8, 0xab, 0x04, 0x08, 0xe1, 0x19, 0x23, 0x7a, + 0x7b, 0x6c, 0xe2, 0xdb, 0x0b, 0xa4, 0x9b, 0x63, 0xb3, 0x47, 0xcf, 0x40, 0xc9, 0xc4, 0x67, 0xd8, + 0x6e, 0xf7, 0x58, 0x06, 0xcb, 0x42, 0x66, 0x51, 0x2a, 0x72, 0x2a, 0x15, 0xb2, 0x18, 0xdb, 0x47, + 0xb8, 0x6d, 0xcb, 0xcc, 0x17, 0xb1, 0x4d, 0x97, 0x27, 0x6c, 0x84, 0x7a, 0xc2, 0x88, 0xe2, 0x87, + 0x0b, 0xd9, 0x32, 0x0f, 0x69, 0xa9, 0xde, 0x94, 0xde, 0xab, 0x24, 0x11, 0x82, 0x12, 0x6d, 0xca, + 0x27, 0x87, 0x3b, 0xc7, 0x27, 0x8d, 0x23, 0x62, 0xcb, 0x15, 0x28, 0x3b, 0xb6, 0x74, 0x88, 0x69, + 0xf1, 0x0e, 0x3c, 0x19, 0x92, 0xee, 0xce, 0xb9, 0x70, 0x12, 0xdf, 0xf7, 0x62, 0x97, 0xef, 0x26, + 0x69, 0x0f, 0x4a, 0x63, 0xa9, 0x66, 0x7c, 0x12, 0x0b, 0x79, 0x37, 0x41, 0x6e, 0x1a, 0x29, 0x15, + 0x47, 0xfe, 0xae, 0xf8, 0x45, 0x1c, 0x9e, 0x9a, 0x91, 0x8c, 0xa2, 0x7b, 0x63, 0x6b, 0x76, 0x7b, + 0x91, 0x54, 0x76, 0x7c, 0xcb, 0xde, 0x89, 0x64, 0xe6, 0x93, 0x83, 0x9d, 0x93, 0x46, 0x70, 0xcb, + 0x8a, 0xbf, 0x4d, 0xf8, 0xed, 0x17, 0x4c, 0xe2, 0xd7, 0x20, 0xa3, 0xb4, 0x49, 0xda, 0x4a, 0x87, + 0x98, 0x93, 0x78, 0x6f, 0xc6, 0x05, 0x26, 0x7a, 0x03, 0xc0, 0x3e, 0x97, 0xd9, 0xa8, 0x1c, 0x3f, + 0x34, 0x79, 0x0f, 0x50, 0x3f, 0xc7, 0xed, 0xe6, 0x39, 0x9f, 0x43, 0xde, 0xe6, 0x2d, 0x0b, 0xbd, + 0x33, 0xcd, 0xe3, 0x46, 0xbc, 0x38, 0x5f, 0xcc, 0xd7, 0xa6, 0x2f, 0xe7, 0x6b, 0xc5, 0x3f, 0x26, + 0x3c, 0x27, 0x14, 0xbc, 0xdc, 0xfa, 0x7f, 0xef, 0x72, 0x2b, 0x12, 0x86, 0x67, 0x17, 0x60, 0x53, + 0x63, 0x4d, 0xe2, 0xbb, 0x8b, 0x35, 0xc9, 0xc7, 0x16, 0x6b, 0x52, 0x97, 0x8c, 0x35, 0x1f, 0x40, + 0x29, 0x78, 0xdb, 0x46, 0x5c, 0xa0, 0xa9, 0x0f, 0xb5, 0x0e, 0xdd, 0x75, 0x69, 0x89, 0x75, 0xd0, + 0x2b, 0x90, 0x26, 0x07, 0xcc, 0xb1, 0xca, 0x64, 0xac, 0x20, 0x07, 0xc4, 0x77, 0x5b, 0xc7, 0xb8, + 0xc5, 0x47, 0x90, 0xa6, 0x23, 0x21, 0x11, 0x8c, 0xd6, 0x07, 0x38, 0x28, 0x22, 0x6d, 0xf4, 0x01, + 0x80, 0x62, 0xdb, 0xa6, 0xda, 0x1a, 0x7a, 0x8a, 0x37, 0xa6, 0xcf, 0x64, 0xc7, 0xe1, 0xdb, 0xbd, + 0xca, 0xa7, 0xb4, 0xea, 0x89, 0xfa, 0xa6, 0xe5, 0x53, 0x28, 0x1e, 0x42, 0x29, 0x28, 0xeb, 0xa4, + 0xf1, 0x6c, 0x0c, 0xc1, 0x34, 0x9e, 0xa1, 0x32, 0x9e, 0xc6, 0xbb, 0x20, 0x20, 0xc9, 0x6a, 0x2a, + 0xb4, 0x23, 0xfe, 0x2c, 0x01, 0x4b, 0xfe, 0xa3, 0xf3, 0x98, 0x13, 0xb5, 0x6b, 0x53, 0x12, 0xb5, + 0x7c, 0x57, 0xb1, 0xde, 0x65, 0x79, 0xda, 0x95, 0x89, 0x3c, 0x2d, 0xdb, 0x55, 0xac, 0x53, 0x92, + 0xa6, 0xbd, 0x03, 0x79, 0xfb, 0x5c, 0xbe, 0x64, 0xa6, 0x96, 0xb3, 0xcf, 0xeb, 0x51, 0x72, 0xb5, + 0x4f, 0xe3, 0x90, 0x73, 0x2d, 0x10, 0x52, 0x2f, 0xf2, 0x0c, 0x98, 0xf0, 0x57, 0x32, 0x58, 0xcd, + 0x28, 0xe9, 0xd6, 0x8c, 0xde, 0x72, 0x7d, 0x70, 0x2a, 0xea, 0x95, 0x9b, 0x73, 0xa9, 0xcc, 0x1d, + 0xef, 0xeb, 0x90, 0x77, 0x4f, 0x23, 0xc1, 0xd8, 0x4a, 0xa7, 0x63, 0x62, 0xcb, 0xe2, 0xd1, 0xdb, + 0xe9, 0xd2, 0x1a, 0x99, 0xfe, 0x09, 0xaf, 0x95, 0x24, 0x25, 0xd6, 0x11, 0x3b, 0x50, 0x1e, 0x3b, + 0xca, 0xe8, 0x75, 0xc8, 0x1a, 0xc3, 0x96, 0xec, 0x6c, 0x92, 0xb1, 0x07, 0x3c, 0x0e, 0x7a, 0x1b, + 0xb6, 0xfa, 0x6a, 0xfb, 0x1e, 0xbe, 0x70, 0x06, 0x63, 0x0c, 0x5b, 0xf7, 0xd8, 0x5e, 0x62, 0x7f, + 0x49, 0xf8, 0xff, 0x32, 0x82, 0x9c, 0x73, 0x34, 0xd0, 0x0f, 0x20, 0xef, 0x7a, 0x09, 0xb7, 0x74, + 0x1a, 0xea, 0x5e, 0xb8, 0x7a, 0x4f, 0x04, 0xdd, 0x82, 0x65, 0x4b, 0xed, 0x6a, 0xb8, 0x23, 0x7b, + 0x28, 0x9f, 0xfe, 0x2d, 0x27, 0x95, 0xd9, 0x87, 0x03, 0x07, 0xe2, 0x8b, 0xff, 0x8e, 0x43, 0xce, + 0xb9, 0xf2, 0x46, 0x2f, 0xfb, 0x4e, 0x5f, 0x69, 0x5a, 0x44, 0xe0, 0x8c, 0x5e, 0x79, 0x2e, 0x38, + 0xd6, 0xc4, 0xe2, 0x63, 0x0d, 0xab, 0x1f, 0x38, 0x95, 0xe3, 0xd4, 0xc2, 0x95, 0xe3, 0x17, 0x01, + 0xd9, 0xba, 0xad, 0xf4, 0xe5, 0x91, 0x6e, 0xab, 0x5a, 0x57, 0x66, 0xc6, 0x66, 0x07, 0xa5, 0x42, + 0xbf, 0xdc, 0xa7, 0x1f, 0x8e, 0xa9, 0xdd, 0x7f, 0x1a, 0x87, 0x9c, 0x9b, 0x9a, 0x2e, 0x5a, 0xbc, + 0x5b, 0x83, 0x0c, 0xcf, 0xbe, 0x58, 0xf5, 0x8e, 0xf7, 0xdc, 0x42, 0x49, 0xca, 0x57, 0x28, 0x11, + 0x20, 0x37, 0xc0, 0xb6, 0x42, 0x4f, 0x3d, 0xbb, 0x68, 0x71, 0xfb, 0xb7, 0x5e, 0x83, 0x82, 0xaf, + 0xf0, 0x49, 0x1c, 0xc1, 0x61, 0xfd, 0xdd, 0x4a, 0x4c, 0xc8, 0x7e, 0xfa, 0xf9, 0xf5, 0xe4, 0x21, + 0xfe, 0x84, 0xec, 0x59, 0xa9, 0x5e, 0x6b, 0xd4, 0x6b, 0xf7, 0x2a, 0x71, 0xa1, 0xf0, 0xe9, 0xe7, + 0xd7, 0xb3, 0x12, 0xa6, 0xb7, 0xd2, 0xb7, 0x1a, 0xb0, 0xe4, 0x5f, 0x95, 0x60, 0x66, 0x81, 0xa0, + 0x74, 0xf7, 0xf4, 0xf8, 0x60, 0xbf, 0xb6, 0xd3, 0xac, 0xcb, 0xf7, 0x8f, 0x9a, 0xf5, 0x4a, 0x1c, + 0x3d, 0x09, 0x2b, 0x07, 0xfb, 0x3f, 0x6c, 0x34, 0xe5, 0xda, 0xc1, 0x7e, 0xfd, 0xb0, 0x29, 0xef, + 0x34, 0x9b, 0x3b, 0xb5, 0x7b, 0x95, 0xc4, 0xf6, 0x17, 0x45, 0x28, 0xef, 0xec, 0xd6, 0xf6, 0x49, + 0xf2, 0xa9, 0xb6, 0x15, 0x7a, 0x0b, 0x56, 0x83, 0x14, 0xbd, 0xe7, 0x9a, 0xf9, 0x16, 0x4e, 0x98, + 0x5d, 0xaf, 0x40, 0x7b, 0x90, 0xa6, 0x57, 0x60, 0x68, 0xf6, 0xe3, 0x38, 0x61, 0x4e, 0x01, 0x83, + 0x0c, 0x86, 0x1e, 0x8f, 0x99, 0xaf, 0xe5, 0x84, 0xd9, 0xf5, 0x0c, 0x24, 0x41, 0xde, 0x83, 0xd0, + 0xf3, 0x5f, 0x8f, 0x09, 0x11, 0x9c, 0x0d, 0x3a, 0x80, 0xac, 0x73, 0xeb, 0x31, 0xef, 0x3d, 0x9b, + 0x30, 0xb7, 0xe0, 0x40, 0xcc, 0xc5, 0x6e, 0xa7, 0x66, 0x3f, 0xce, 0x13, 0xe6, 0x54, 0x4f, 0xd0, + 0x3e, 0x64, 0x38, 0x2c, 0x9c, 0xf3, 0x46, 0x4d, 0x98, 0x57, 0x40, 0x20, 0x46, 0xf3, 0xee, 0xfd, + 0xe6, 0x3f, 0x39, 0x14, 0x22, 0x14, 0x86, 0xd0, 0x29, 0x80, 0xef, 0x2e, 0x2a, 0xc2, 0x5b, 0x42, + 0x21, 0x4a, 0xc1, 0x07, 0x1d, 0x41, 0xce, 0xbd, 0x1a, 0x98, 0xfb, 0xb2, 0x4f, 0x98, 0x5f, 0x79, + 0x41, 0x0f, 0xa0, 0x18, 0x84, 0xc4, 0xd1, 0xde, 0xeb, 0x09, 0x11, 0x4b, 0x2a, 0x44, 0x7f, 0x10, + 0x1f, 0x47, 0x7b, 0xbf, 0x27, 0x44, 0xac, 0xb0, 0xa0, 0x8f, 0x60, 0x79, 0x12, 0xbf, 0x46, 0x7f, + 0xce, 0x27, 0x2c, 0x50, 0x73, 0x41, 0x03, 0x40, 0x53, 0x70, 0xef, 0x02, 0xaf, 0xfb, 0x84, 0x45, + 0x4a, 0x30, 0xa8, 0x03, 0xe5, 0x71, 0x30, 0x19, 0xf5, 0xb5, 0x9f, 0x10, 0xb9, 0x1c, 0xc3, 0xfe, + 0x12, 0x84, 0x5c, 0x51, 0x5f, 0xff, 0x09, 0x91, 0xab, 0x33, 0xe4, 0x38, 0xf8, 0xe0, 0x6d, 0x84, + 0xd7, 0x80, 0x42, 0x94, 0x3a, 0x0d, 0x32, 0x60, 0x65, 0x1a, 0xac, 0x5d, 0xe4, 0x71, 0xa0, 0xb0, + 0x50, 0xf9, 0x86, 0xec, 0xe7, 0x20, 0xd4, 0x8a, 0xf6, 0x58, 0x50, 0x88, 0x58, 0xc7, 0xd9, 0xad, + 0x7f, 0xf9, 0xcd, 0x7a, 0xfc, 0xab, 0x6f, 0xd6, 0xe3, 0x7f, 0xff, 0x66, 0x3d, 0xfe, 0xd9, 0xb7, + 0xeb, 0xb1, 0xaf, 0xbe, 0x5d, 0x8f, 0xfd, 0xe5, 0xdb, 0xf5, 0xd8, 0x8f, 0x5f, 0xe8, 0xaa, 0x76, + 0x6f, 0xd8, 0xda, 0x6c, 0xeb, 0x83, 0x2d, 0xff, 0x5b, 0xf1, 0x69, 0xef, 0xd7, 0x5b, 0x19, 0x9a, + 0x49, 0xdc, 0xfe, 0x4f, 0x00, 0x00, 0x00, 0xff, 0xff, 0x67, 0x9a, 0x73, 0x47, 0xdf, 0x2e, 0x00, + 0x00, } // Reference imports to suppress errors if they are not otherwise used. @@ -3870,6 +4058,7 @@ type ABCIApplicationClient interface { ProcessProposal(ctx context.Context, in *RequestProcessProposal, opts ...grpc.CallOption) (*ResponseProcessProposal, error) ExtendVote(ctx context.Context, in *RequestExtendVote, opts ...grpc.CallOption) (*ResponseExtendVote, error) VerifyVoteExtension(ctx context.Context, in *RequestVerifyVoteExtension, opts ...grpc.CallOption) (*ResponseVerifyVoteExtension, error) + FinalizeBlock(ctx context.Context, in *RequestFinalizeBlock, opts ...grpc.CallOption) (*ResponseFinalizeBlock, error) } type aBCIApplicationClient struct { @@ -4042,6 +4231,15 @@ func (c *aBCIApplicationClient) VerifyVoteExtension(ctx context.Context, in *Req return out, nil } +func (c *aBCIApplicationClient) FinalizeBlock(ctx context.Context, in *RequestFinalizeBlock, opts ...grpc.CallOption) (*ResponseFinalizeBlock, error) { + out := new(ResponseFinalizeBlock) + err := c.cc.Invoke(ctx, "/tendermint.abci.ABCIApplication/FinalizeBlock", in, out, opts...) + if err != nil { + return nil, err + } + return out, nil +} + // ABCIApplicationServer is the server API for ABCIApplication service. type ABCIApplicationServer interface { Echo(context.Context, *RequestEcho) (*ResponseEcho, error) @@ -4062,6 +4260,7 @@ type ABCIApplicationServer interface { ProcessProposal(context.Context, *RequestProcessProposal) (*ResponseProcessProposal, error) ExtendVote(context.Context, *RequestExtendVote) (*ResponseExtendVote, error) VerifyVoteExtension(context.Context, *RequestVerifyVoteExtension) (*ResponseVerifyVoteExtension, error) + FinalizeBlock(context.Context, *RequestFinalizeBlock) (*ResponseFinalizeBlock, error) } // UnimplementedABCIApplicationServer can be embedded to have forward compatible implementations. @@ -4122,6 +4321,9 @@ func (*UnimplementedABCIApplicationServer) ExtendVote(ctx context.Context, req * func (*UnimplementedABCIApplicationServer) VerifyVoteExtension(ctx context.Context, req *RequestVerifyVoteExtension) (*ResponseVerifyVoteExtension, error) { return nil, status.Errorf(codes.Unimplemented, "method VerifyVoteExtension not implemented") } +func (*UnimplementedABCIApplicationServer) FinalizeBlock(ctx context.Context, req *RequestFinalizeBlock) (*ResponseFinalizeBlock, error) { + return nil, status.Errorf(codes.Unimplemented, "method FinalizeBlock not implemented") +} func RegisterABCIApplicationServer(s *grpc.Server, srv ABCIApplicationServer) { s.RegisterService(&_ABCIApplication_serviceDesc, srv) @@ -4451,6 +4653,24 @@ func _ABCIApplication_VerifyVoteExtension_Handler(srv interface{}, ctx context.C return interceptor(ctx, in, info, handler) } +func _ABCIApplication_FinalizeBlock_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) { + in := new(RequestFinalizeBlock) + if err := dec(in); err != nil { + return nil, err + } + if interceptor == nil { + return srv.(ABCIApplicationServer).FinalizeBlock(ctx, in) + } + info := &grpc.UnaryServerInfo{ + Server: srv, + FullMethod: "/tendermint.abci.ABCIApplication/FinalizeBlock", + } + handler := func(ctx context.Context, req interface{}) (interface{}, error) { + return srv.(ABCIApplicationServer).FinalizeBlock(ctx, req.(*RequestFinalizeBlock)) + } + return interceptor(ctx, in, info, handler) +} + var _ABCIApplication_serviceDesc = grpc.ServiceDesc{ ServiceName: "tendermint.abci.ABCIApplication", HandlerType: (*ABCIApplicationServer)(nil), @@ -4527,6 +4747,10 @@ var _ABCIApplication_serviceDesc = grpc.ServiceDesc{ MethodName: "VerifyVoteExtension", Handler: _ABCIApplication_VerifyVoteExtension_Handler, }, + { + MethodName: "FinalizeBlock", + Handler: _ABCIApplication_FinalizeBlock_Handler, + }, }, Streams: []grpc.StreamDesc{}, Metadata: "tendermint/abci/types.proto", @@ -4948,6 +5172,29 @@ func (m *Request_VerifyVoteExtension) MarshalToSizedBuffer(dAtA []byte) (int, er } return len(dAtA) - i, nil } +func (m *Request_FinalizeBlock) MarshalTo(dAtA []byte) (int, error) { + size := m.Size() + return m.MarshalToSizedBuffer(dAtA[:size]) +} + +func (m *Request_FinalizeBlock) MarshalToSizedBuffer(dAtA []byte) (int, error) { + i := len(dAtA) + if m.FinalizeBlock != nil { + { + size, err := m.FinalizeBlock.MarshalToSizedBuffer(dAtA[:i]) + if err != nil { + return 0, err + } + i -= size + i = encodeVarintTypes(dAtA, i, uint64(size)) + } + i-- + dAtA[i] = 0x1 + i-- + dAtA[i] = 0x9a + } + return len(dAtA) - i, nil +} func (m *RequestEcho) Marshal() (dAtA []byte, err error) { size := m.Size() dAtA = make([]byte, size) @@ -5177,12 +5424,12 @@ func (m *RequestInitChain) MarshalToSizedBuffer(dAtA []byte) (int, error) { i-- dAtA[i] = 0x12 } - n22, err22 := github_com_gogo_protobuf_types.StdTimeMarshalTo(m.Time, dAtA[i-github_com_gogo_protobuf_types.SizeOfStdTime(m.Time):]) - if err22 != nil { - return 0, err22 + n23, err23 := github_com_gogo_protobuf_types.StdTimeMarshalTo(m.Time, dAtA[i-github_com_gogo_protobuf_types.SizeOfStdTime(m.Time):]) + if err23 != nil { + return 0, err23 } - i -= n22 - i = encodeVarintTypes(dAtA, i, uint64(n22)) + i -= n23 + i = encodeVarintTypes(dAtA, i, uint64(n23)) i-- dAtA[i] = 0xa return len(dAtA) - i, nil @@ -5681,6 +5928,84 @@ func (m *RequestProcessProposal) MarshalToSizedBuffer(dAtA []byte) (int, error) return len(dAtA) - i, nil } +func (m *RequestFinalizeBlock) Marshal() (dAtA []byte, err error) { + size := m.Size() + dAtA = make([]byte, size) + n, err := m.MarshalToSizedBuffer(dAtA[:size]) + if err != nil { + return nil, err + } + return dAtA[:n], nil +} + +func (m *RequestFinalizeBlock) MarshalTo(dAtA []byte) (int, error) { + size := m.Size() + return m.MarshalToSizedBuffer(dAtA[:size]) +} + +func (m *RequestFinalizeBlock) MarshalToSizedBuffer(dAtA []byte) (int, error) { + i := len(dAtA) + _ = i + var l int + _ = l + if len(m.ByzantineValidators) > 0 { + for iNdEx := len(m.ByzantineValidators) - 1; iNdEx >= 0; iNdEx-- { + { + size, err := m.ByzantineValidators[iNdEx].MarshalToSizedBuffer(dAtA[:i]) + if err != nil { + return 0, err + } + i -= size + i = encodeVarintTypes(dAtA, i, uint64(size)) + } + i-- + dAtA[i] = 0x32 + } + } + { + size, err := m.LastCommitInfo.MarshalToSizedBuffer(dAtA[:i]) + if err != nil { + return 0, err + } + i -= size + i = encodeVarintTypes(dAtA, i, uint64(size)) + } + i-- + dAtA[i] = 0x2a + { + size, err := m.Header.MarshalToSizedBuffer(dAtA[:i]) + if err != nil { + return 0, err + } + i -= size + i = encodeVarintTypes(dAtA, i, uint64(size)) + } + i-- + dAtA[i] = 0x22 + if m.Height != 0 { + i = encodeVarintTypes(dAtA, i, uint64(m.Height)) + i-- + dAtA[i] = 0x18 + } + if len(m.Hash) > 0 { + i -= len(m.Hash) + copy(dAtA[i:], m.Hash) + i = encodeVarintTypes(dAtA, i, uint64(len(m.Hash))) + i-- + dAtA[i] = 0x12 + } + if len(m.Txs) > 0 { + for iNdEx := len(m.Txs) - 1; iNdEx >= 0; iNdEx-- { + i -= len(m.Txs[iNdEx]) + copy(dAtA[i:], m.Txs[iNdEx]) + i = encodeVarintTypes(dAtA, i, uint64(len(m.Txs[iNdEx]))) + i-- + dAtA[i] = 0xa + } + } + return len(dAtA) - i, nil +} + func (m *Response) Marshal() (dAtA []byte, err error) { size := m.Size() dAtA = make([]byte, size) @@ -6120,6 +6445,29 @@ func (m *Response_VerifyVoteExtension) MarshalToSizedBuffer(dAtA []byte) (int, e } return len(dAtA) - i, nil } +func (m *Response_FinalizeBlock) MarshalTo(dAtA []byte) (int, error) { + size := m.Size() + return m.MarshalToSizedBuffer(dAtA[:size]) +} + +func (m *Response_FinalizeBlock) MarshalToSizedBuffer(dAtA []byte) (int, error) { + i := len(dAtA) + if m.FinalizeBlock != nil { + { + size, err := m.FinalizeBlock.MarshalToSizedBuffer(dAtA[:i]) + if err != nil { + return 0, err + } + i -= size + i = encodeVarintTypes(dAtA, i, uint64(size)) + } + i-- + dAtA[i] = 0x1 + i-- + dAtA[i] = 0xa2 + } + return len(dAtA) - i, nil +} func (m *ResponseException) Marshal() (dAtA []byte, err error) { size := m.Size() dAtA = make([]byte, size) @@ -6837,20 +7185,20 @@ func (m *ResponseApplySnapshotChunk) MarshalToSizedBuffer(dAtA []byte) (int, err } } if len(m.RefetchChunks) > 0 { - dAtA51 := make([]byte, len(m.RefetchChunks)*10) - var j50 int + dAtA55 := make([]byte, len(m.RefetchChunks)*10) + var j54 int for _, num := range m.RefetchChunks { for num >= 1<<7 { - dAtA51[j50] = uint8(uint64(num)&0x7f | 0x80) + dAtA55[j54] = uint8(uint64(num)&0x7f | 0x80) num >>= 7 - j50++ + j54++ } - dAtA51[j50] = uint8(num) - j50++ + dAtA55[j54] = uint8(num) + j54++ } - i -= j50 - copy(dAtA[i:], dAtA51[:j50]) - i = encodeVarintTypes(dAtA, i, uint64(j50)) + i -= j54 + copy(dAtA[i:], dAtA55[:j54]) + i = encodeVarintTypes(dAtA, i, uint64(j54)) i-- dAtA[i] = 0x12 } @@ -7037,6 +7385,83 @@ func (m *ResponseProcessProposal) MarshalToSizedBuffer(dAtA []byte) (int, error) return len(dAtA) - i, nil } +func (m *ResponseFinalizeBlock) Marshal() (dAtA []byte, err error) { + size := m.Size() + dAtA = make([]byte, size) + n, err := m.MarshalToSizedBuffer(dAtA[:size]) + if err != nil { + return nil, err + } + return dAtA[:n], nil +} + +func (m *ResponseFinalizeBlock) MarshalTo(dAtA []byte) (int, error) { + size := m.Size() + return m.MarshalToSizedBuffer(dAtA[:size]) +} + +func (m *ResponseFinalizeBlock) MarshalToSizedBuffer(dAtA []byte) (int, error) { + i := len(dAtA) + _ = i + var l int + _ = l + if len(m.Events) > 0 { + for iNdEx := len(m.Events) - 1; iNdEx >= 0; iNdEx-- { + { + size, err := m.Events[iNdEx].MarshalToSizedBuffer(dAtA[:i]) + if err != nil { + return 0, err + } + i -= size + i = encodeVarintTypes(dAtA, i, uint64(size)) + } + i-- + dAtA[i] = 0x22 + } + } + if m.ConsensusParamUpdates != nil { + { + size, err := m.ConsensusParamUpdates.MarshalToSizedBuffer(dAtA[:i]) + if err != nil { + return 0, err + } + i -= size + i = encodeVarintTypes(dAtA, i, uint64(size)) + } + i-- + dAtA[i] = 0x1a + } + if len(m.ValidatorUpdates) > 0 { + for iNdEx := len(m.ValidatorUpdates) - 1; iNdEx >= 0; iNdEx-- { + { + size, err := m.ValidatorUpdates[iNdEx].MarshalToSizedBuffer(dAtA[:i]) + if err != nil { + return 0, err + } + i -= size + i = encodeVarintTypes(dAtA, i, uint64(size)) + } + i-- + dAtA[i] = 0x12 + } + } + if len(m.Txs) > 0 { + for iNdEx := len(m.Txs) - 1; iNdEx >= 0; iNdEx-- { + { + size, err := m.Txs[iNdEx].MarshalToSizedBuffer(dAtA[:i]) + if err != nil { + return 0, err + } + i -= size + i = encodeVarintTypes(dAtA, i, uint64(size)) + } + i-- + dAtA[i] = 0xa + } + } + return len(dAtA) - i, nil +} + func (m *LastCommitInfo) Marshal() (dAtA []byte, err error) { size := m.Size() dAtA = make([]byte, size) @@ -7441,12 +7866,12 @@ func (m *Evidence) MarshalToSizedBuffer(dAtA []byte) (int, error) { i-- dAtA[i] = 0x28 } - n57, err57 := github_com_gogo_protobuf_types.StdTimeMarshalTo(m.Time, dAtA[i-github_com_gogo_protobuf_types.SizeOfStdTime(m.Time):]) - if err57 != nil { - return 0, err57 + n62, err62 := github_com_gogo_protobuf_types.StdTimeMarshalTo(m.Time, dAtA[i-github_com_gogo_protobuf_types.SizeOfStdTime(m.Time):]) + if err62 != nil { + return 0, err62 } - i -= n57 - i = encodeVarintTypes(dAtA, i, uint64(n57)) + i -= n62 + i = encodeVarintTypes(dAtA, i, uint64(n62)) i-- dAtA[i] = 0x22 if m.Height != 0 { @@ -7763,6 +8188,18 @@ func (m *Request_VerifyVoteExtension) Size() (n int) { } return n } +func (m *Request_FinalizeBlock) Size() (n int) { + if m == nil { + return 0 + } + var l int + _ = l + if m.FinalizeBlock != nil { + l = m.FinalizeBlock.Size() + n += 2 + l + sovTypes(uint64(l)) + } + return n +} func (m *RequestEcho) Size() (n int) { if m == nil { return 0 @@ -8073,6 +8510,38 @@ func (m *RequestProcessProposal) Size() (n int) { return n } +func (m *RequestFinalizeBlock) Size() (n int) { + if m == nil { + return 0 + } + var l int + _ = l + if len(m.Txs) > 0 { + for _, b := range m.Txs { + l = len(b) + n += 1 + l + sovTypes(uint64(l)) + } + } + l = len(m.Hash) + if l > 0 { + n += 1 + l + sovTypes(uint64(l)) + } + if m.Height != 0 { + n += 1 + sovTypes(uint64(m.Height)) + } + l = m.Header.Size() + n += 1 + l + sovTypes(uint64(l)) + l = m.LastCommitInfo.Size() + n += 1 + l + sovTypes(uint64(l)) + if len(m.ByzantineValidators) > 0 { + for _, e := range m.ByzantineValidators { + l = e.Size() + n += 1 + l + sovTypes(uint64(l)) + } + } + return n +} + func (m *Response) Size() (n int) { if m == nil { return 0 @@ -8313,6 +8782,18 @@ func (m *Response_VerifyVoteExtension) Size() (n int) { } return n } +func (m *Response_FinalizeBlock) Size() (n int) { + if m == nil { + return 0 + } + var l int + _ = l + if m.FinalizeBlock != nil { + l = m.FinalizeBlock.Size() + n += 2 + l + sovTypes(uint64(l)) + } + return n +} func (m *ResponseException) Size() (n int) { if m == nil { return 0 @@ -8724,6 +9205,37 @@ func (m *ResponseProcessProposal) Size() (n int) { return n } +func (m *ResponseFinalizeBlock) Size() (n int) { + if m == nil { + return 0 + } + var l int + _ = l + if len(m.Txs) > 0 { + for _, e := range m.Txs { + l = e.Size() + n += 1 + l + sovTypes(uint64(l)) + } + } + if len(m.ValidatorUpdates) > 0 { + for _, e := range m.ValidatorUpdates { + l = e.Size() + n += 1 + l + sovTypes(uint64(l)) + } + } + if m.ConsensusParamUpdates != nil { + l = m.ConsensusParamUpdates.Size() + n += 1 + l + sovTypes(uint64(l)) + } + if len(m.Events) > 0 { + for _, e := range m.Events { + l = e.Size() + n += 1 + l + sovTypes(uint64(l)) + } + } + return n +} + func (m *LastCommitInfo) Size() (n int) { if m == nil { return 0 @@ -9599,6 +10111,41 @@ func (m *Request) Unmarshal(dAtA []byte) error { } m.Value = &Request_VerifyVoteExtension{v} iNdEx = postIndex + case 19: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field FinalizeBlock", wireType) + } + var msglen int + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowTypes + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + msglen |= int(b&0x7F) << shift + if b < 0x80 { + break + } + } + if msglen < 0 { + return ErrInvalidLengthTypes + } + postIndex := iNdEx + msglen + if postIndex < 0 { + return ErrInvalidLengthTypes + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + v := &RequestFinalizeBlock{} + if err := v.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { + return err + } + m.Value = &Request_FinalizeBlock{v} + iNdEx = postIndex default: iNdEx = preIndex skippy, err := skipTypes(dAtA[iNdEx:]) @@ -11688,6 +12235,241 @@ func (m *RequestProcessProposal) Unmarshal(dAtA []byte) error { } return nil } +func (m *RequestFinalizeBlock) Unmarshal(dAtA []byte) error { + l := len(dAtA) + iNdEx := 0 + for iNdEx < l { + preIndex := iNdEx + var wire uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowTypes + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + wire |= uint64(b&0x7F) << shift + if b < 0x80 { + break + } + } + fieldNum := int32(wire >> 3) + wireType := int(wire & 0x7) + if wireType == 4 { + return fmt.Errorf("proto: RequestFinalizeBlock: wiretype end group for non-group") + } + if fieldNum <= 0 { + return fmt.Errorf("proto: RequestFinalizeBlock: illegal tag %d (wire type %d)", fieldNum, wire) + } + switch fieldNum { + case 1: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field Txs", wireType) + } + var byteLen int + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowTypes + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + byteLen |= int(b&0x7F) << shift + if b < 0x80 { + break + } + } + if byteLen < 0 { + return ErrInvalidLengthTypes + } + postIndex := iNdEx + byteLen + if postIndex < 0 { + return ErrInvalidLengthTypes + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + m.Txs = append(m.Txs, make([]byte, postIndex-iNdEx)) + copy(m.Txs[len(m.Txs)-1], dAtA[iNdEx:postIndex]) + iNdEx = postIndex + case 2: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field Hash", wireType) + } + var byteLen int + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowTypes + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + byteLen |= int(b&0x7F) << shift + if b < 0x80 { + break + } + } + if byteLen < 0 { + return ErrInvalidLengthTypes + } + postIndex := iNdEx + byteLen + if postIndex < 0 { + return ErrInvalidLengthTypes + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + m.Hash = append(m.Hash[:0], dAtA[iNdEx:postIndex]...) + if m.Hash == nil { + m.Hash = []byte{} + } + iNdEx = postIndex + case 3: + if wireType != 0 { + return fmt.Errorf("proto: wrong wireType = %d for field Height", wireType) + } + m.Height = 0 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowTypes + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + m.Height |= int64(b&0x7F) << shift + if b < 0x80 { + break + } + } + case 4: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field Header", wireType) + } + var msglen int + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowTypes + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + msglen |= int(b&0x7F) << shift + if b < 0x80 { + break + } + } + if msglen < 0 { + return ErrInvalidLengthTypes + } + postIndex := iNdEx + msglen + if postIndex < 0 { + return ErrInvalidLengthTypes + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + if err := m.Header.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { + return err + } + iNdEx = postIndex + case 5: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field LastCommitInfo", wireType) + } + var msglen int + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowTypes + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + msglen |= int(b&0x7F) << shift + if b < 0x80 { + break + } + } + if msglen < 0 { + return ErrInvalidLengthTypes + } + postIndex := iNdEx + msglen + if postIndex < 0 { + return ErrInvalidLengthTypes + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + if err := m.LastCommitInfo.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { + return err + } + iNdEx = postIndex + case 6: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field ByzantineValidators", wireType) + } + var msglen int + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowTypes + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + msglen |= int(b&0x7F) << shift + if b < 0x80 { + break + } + } + if msglen < 0 { + return ErrInvalidLengthTypes + } + postIndex := iNdEx + msglen + if postIndex < 0 { + return ErrInvalidLengthTypes + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + m.ByzantineValidators = append(m.ByzantineValidators, Evidence{}) + if err := m.ByzantineValidators[len(m.ByzantineValidators)-1].Unmarshal(dAtA[iNdEx:postIndex]); err != nil { + return err + } + iNdEx = postIndex + default: + iNdEx = preIndex + skippy, err := skipTypes(dAtA[iNdEx:]) + if err != nil { + return err + } + if (skippy < 0) || (iNdEx+skippy) < 0 { + return ErrInvalidLengthTypes + } + if (iNdEx + skippy) > l { + return io.ErrUnexpectedEOF + } + iNdEx += skippy + } + } + + if iNdEx > l { + return io.ErrUnexpectedEOF + } + return nil +} func (m *Response) Unmarshal(dAtA []byte) error { l := len(dAtA) iNdEx := 0 @@ -12382,6 +13164,41 @@ func (m *Response) Unmarshal(dAtA []byte) error { } m.Value = &Response_VerifyVoteExtension{v} iNdEx = postIndex + case 20: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field FinalizeBlock", wireType) + } + var msglen int + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowTypes + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + msglen |= int(b&0x7F) << shift + if b < 0x80 { + break + } + } + if msglen < 0 { + return ErrInvalidLengthTypes + } + postIndex := iNdEx + msglen + if postIndex < 0 { + return ErrInvalidLengthTypes + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + v := &ResponseFinalizeBlock{} + if err := v.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { + return err + } + m.Value = &Response_FinalizeBlock{v} + iNdEx = postIndex default: iNdEx = preIndex skippy, err := skipTypes(dAtA[iNdEx:]) @@ -15089,6 +15906,194 @@ func (m *ResponseProcessProposal) Unmarshal(dAtA []byte) error { } return nil } +func (m *ResponseFinalizeBlock) Unmarshal(dAtA []byte) error { + l := len(dAtA) + iNdEx := 0 + for iNdEx < l { + preIndex := iNdEx + var wire uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowTypes + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + wire |= uint64(b&0x7F) << shift + if b < 0x80 { + break + } + } + fieldNum := int32(wire >> 3) + wireType := int(wire & 0x7) + if wireType == 4 { + return fmt.Errorf("proto: ResponseFinalizeBlock: wiretype end group for non-group") + } + if fieldNum <= 0 { + return fmt.Errorf("proto: ResponseFinalizeBlock: illegal tag %d (wire type %d)", fieldNum, wire) + } + switch fieldNum { + case 1: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field Txs", wireType) + } + var msglen int + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowTypes + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + msglen |= int(b&0x7F) << shift + if b < 0x80 { + break + } + } + if msglen < 0 { + return ErrInvalidLengthTypes + } + postIndex := iNdEx + msglen + if postIndex < 0 { + return ErrInvalidLengthTypes + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + m.Txs = append(m.Txs, &ResponseDeliverTx{}) + if err := m.Txs[len(m.Txs)-1].Unmarshal(dAtA[iNdEx:postIndex]); err != nil { + return err + } + iNdEx = postIndex + case 2: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field ValidatorUpdates", wireType) + } + var msglen int + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowTypes + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + msglen |= int(b&0x7F) << shift + if b < 0x80 { + break + } + } + if msglen < 0 { + return ErrInvalidLengthTypes + } + postIndex := iNdEx + msglen + if postIndex < 0 { + return ErrInvalidLengthTypes + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + m.ValidatorUpdates = append(m.ValidatorUpdates, ValidatorUpdate{}) + if err := m.ValidatorUpdates[len(m.ValidatorUpdates)-1].Unmarshal(dAtA[iNdEx:postIndex]); err != nil { + return err + } + iNdEx = postIndex + case 3: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field ConsensusParamUpdates", wireType) + } + var msglen int + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowTypes + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + msglen |= int(b&0x7F) << shift + if b < 0x80 { + break + } + } + if msglen < 0 { + return ErrInvalidLengthTypes + } + postIndex := iNdEx + msglen + if postIndex < 0 { + return ErrInvalidLengthTypes + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + if m.ConsensusParamUpdates == nil { + m.ConsensusParamUpdates = &types.ConsensusParams{} + } + if err := m.ConsensusParamUpdates.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { + return err + } + iNdEx = postIndex + case 4: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field Events", wireType) + } + var msglen int + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowTypes + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + msglen |= int(b&0x7F) << shift + if b < 0x80 { + break + } + } + if msglen < 0 { + return ErrInvalidLengthTypes + } + postIndex := iNdEx + msglen + if postIndex < 0 { + return ErrInvalidLengthTypes + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + m.Events = append(m.Events, Event{}) + if err := m.Events[len(m.Events)-1].Unmarshal(dAtA[iNdEx:postIndex]); err != nil { + return err + } + iNdEx = postIndex + default: + iNdEx = preIndex + skippy, err := skipTypes(dAtA[iNdEx:]) + if err != nil { + return err + } + if (skippy < 0) || (iNdEx+skippy) < 0 { + return ErrInvalidLengthTypes + } + if (iNdEx + skippy) > l { + return io.ErrUnexpectedEOF + } + iNdEx += skippy + } + } + + if iNdEx > l { + return io.ErrUnexpectedEOF + } + return nil +} func (m *LastCommitInfo) Unmarshal(dAtA []byte) error { l := len(dAtA) iNdEx := 0