diff --git a/abci/types/types.pb.go b/abci/types/types.pb.go index c7942ad25..e0add9aa2 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{29, 0} + return fileDescriptor_252557cfdd89a31a, []int{24, 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{31, 0} + return fileDescriptor_252557cfdd89a31a, []int{26, 0} } type Request struct { @@ -167,10 +167,7 @@ type Request struct { // *Request_Info // *Request_InitChain // *Request_Query - // *Request_BeginBlock // *Request_CheckTx - // *Request_DeliverTx - // *Request_EndBlock // *Request_Commit // *Request_ListSnapshots // *Request_OfferSnapshot @@ -234,18 +231,9 @@ type Request_InitChain struct { type Request_Query struct { Query *RequestQuery `protobuf:"bytes,5,opt,name=query,proto3,oneof" json:"query,omitempty"` } -type Request_BeginBlock struct { - BeginBlock *RequestBeginBlock `protobuf:"bytes,6,opt,name=begin_block,json=beginBlock,proto3,oneof" json:"begin_block,omitempty"` -} type Request_CheckTx struct { CheckTx *RequestCheckTx `protobuf:"bytes,7,opt,name=check_tx,json=checkTx,proto3,oneof" json:"check_tx,omitempty"` } -type Request_DeliverTx struct { - DeliverTx *RequestDeliverTx `protobuf:"bytes,8,opt,name=deliver_tx,json=deliverTx,proto3,oneof" json:"deliver_tx,omitempty"` -} -type Request_EndBlock struct { - EndBlock *RequestEndBlock `protobuf:"bytes,9,opt,name=end_block,json=endBlock,proto3,oneof" json:"end_block,omitempty"` -} type Request_Commit struct { Commit *RequestCommit `protobuf:"bytes,10,opt,name=commit,proto3,oneof" json:"commit,omitempty"` } @@ -270,10 +258,7 @@ func (*Request_Flush) isRequest_Value() {} func (*Request_Info) isRequest_Value() {} func (*Request_InitChain) isRequest_Value() {} func (*Request_Query) isRequest_Value() {} -func (*Request_BeginBlock) isRequest_Value() {} func (*Request_CheckTx) isRequest_Value() {} -func (*Request_DeliverTx) isRequest_Value() {} -func (*Request_EndBlock) isRequest_Value() {} func (*Request_Commit) isRequest_Value() {} func (*Request_ListSnapshots) isRequest_Value() {} func (*Request_OfferSnapshot) isRequest_Value() {} @@ -323,13 +308,6 @@ func (m *Request) GetQuery() *RequestQuery { return nil } -func (m *Request) GetBeginBlock() *RequestBeginBlock { - if x, ok := m.GetValue().(*Request_BeginBlock); ok { - return x.BeginBlock - } - return nil -} - func (m *Request) GetCheckTx() *RequestCheckTx { if x, ok := m.GetValue().(*Request_CheckTx); ok { return x.CheckTx @@ -337,20 +315,6 @@ func (m *Request) GetCheckTx() *RequestCheckTx { return nil } -func (m *Request) GetDeliverTx() *RequestDeliverTx { - if x, ok := m.GetValue().(*Request_DeliverTx); ok { - return x.DeliverTx - } - return nil -} - -func (m *Request) GetEndBlock() *RequestEndBlock { - if x, ok := m.GetValue().(*Request_EndBlock); ok { - return x.EndBlock - } - return nil -} - func (m *Request) GetCommit() *RequestCommit { if x, ok := m.GetValue().(*Request_Commit); ok { return x.Commit @@ -401,10 +365,7 @@ func (*Request) XXX_OneofWrappers() []interface{} { (*Request_Info)(nil), (*Request_InitChain)(nil), (*Request_Query)(nil), - (*Request_BeginBlock)(nil), (*Request_CheckTx)(nil), - (*Request_DeliverTx)(nil), - (*Request_EndBlock)(nil), (*Request_Commit)(nil), (*Request_ListSnapshots)(nil), (*Request_OfferSnapshot)(nil), @@ -714,74 +675,6 @@ func (m *RequestQuery) GetProve() bool { return false } -type RequestBeginBlock struct { - Hash []byte `protobuf:"bytes,1,opt,name=hash,proto3" json:"hash,omitempty"` - Header types1.Header `protobuf:"bytes,2,opt,name=header,proto3" json:"header"` - LastCommitInfo LastCommitInfo `protobuf:"bytes,3,opt,name=last_commit_info,json=lastCommitInfo,proto3" json:"last_commit_info"` - ByzantineValidators []Evidence `protobuf:"bytes,4,rep,name=byzantine_validators,json=byzantineValidators,proto3" json:"byzantine_validators"` -} - -func (m *RequestBeginBlock) Reset() { *m = RequestBeginBlock{} } -func (m *RequestBeginBlock) String() string { return proto.CompactTextString(m) } -func (*RequestBeginBlock) ProtoMessage() {} -func (*RequestBeginBlock) Descriptor() ([]byte, []int) { - return fileDescriptor_252557cfdd89a31a, []int{6} -} -func (m *RequestBeginBlock) XXX_Unmarshal(b []byte) error { - return m.Unmarshal(b) -} -func (m *RequestBeginBlock) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { - if deterministic { - return xxx_messageInfo_RequestBeginBlock.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 *RequestBeginBlock) XXX_Merge(src proto.Message) { - xxx_messageInfo_RequestBeginBlock.Merge(m, src) -} -func (m *RequestBeginBlock) XXX_Size() int { - return m.Size() -} -func (m *RequestBeginBlock) XXX_DiscardUnknown() { - xxx_messageInfo_RequestBeginBlock.DiscardUnknown(m) -} - -var xxx_messageInfo_RequestBeginBlock proto.InternalMessageInfo - -func (m *RequestBeginBlock) GetHash() []byte { - if m != nil { - return m.Hash - } - return nil -} - -func (m *RequestBeginBlock) GetHeader() types1.Header { - if m != nil { - return m.Header - } - return types1.Header{} -} - -func (m *RequestBeginBlock) GetLastCommitInfo() LastCommitInfo { - if m != nil { - return m.LastCommitInfo - } - return LastCommitInfo{} -} - -func (m *RequestBeginBlock) GetByzantineValidators() []Evidence { - if m != nil { - return m.ByzantineValidators - } - return nil -} - type RequestCheckTx struct { Tx []byte `protobuf:"bytes,1,opt,name=tx,proto3" json:"tx,omitempty"` Type CheckTxType `protobuf:"varint,2,opt,name=type,proto3,enum=tendermint.abci.CheckTxType" json:"type,omitempty"` @@ -791,7 +684,7 @@ func (m *RequestCheckTx) Reset() { *m = RequestCheckTx{} } func (m *RequestCheckTx) String() string { return proto.CompactTextString(m) } func (*RequestCheckTx) ProtoMessage() {} func (*RequestCheckTx) Descriptor() ([]byte, []int) { - return fileDescriptor_252557cfdd89a31a, []int{7} + return fileDescriptor_252557cfdd89a31a, []int{6} } func (m *RequestCheckTx) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -834,94 +727,6 @@ func (m *RequestCheckTx) GetType() CheckTxType { return CheckTxType_New } -type RequestDeliverTx struct { - Tx []byte `protobuf:"bytes,1,opt,name=tx,proto3" json:"tx,omitempty"` -} - -func (m *RequestDeliverTx) Reset() { *m = RequestDeliverTx{} } -func (m *RequestDeliverTx) String() string { return proto.CompactTextString(m) } -func (*RequestDeliverTx) ProtoMessage() {} -func (*RequestDeliverTx) Descriptor() ([]byte, []int) { - return fileDescriptor_252557cfdd89a31a, []int{8} -} -func (m *RequestDeliverTx) XXX_Unmarshal(b []byte) error { - return m.Unmarshal(b) -} -func (m *RequestDeliverTx) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { - if deterministic { - return xxx_messageInfo_RequestDeliverTx.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 *RequestDeliverTx) XXX_Merge(src proto.Message) { - xxx_messageInfo_RequestDeliverTx.Merge(m, src) -} -func (m *RequestDeliverTx) XXX_Size() int { - return m.Size() -} -func (m *RequestDeliverTx) XXX_DiscardUnknown() { - xxx_messageInfo_RequestDeliverTx.DiscardUnknown(m) -} - -var xxx_messageInfo_RequestDeliverTx proto.InternalMessageInfo - -func (m *RequestDeliverTx) GetTx() []byte { - if m != nil { - return m.Tx - } - return nil -} - -type RequestEndBlock struct { - Height int64 `protobuf:"varint,1,opt,name=height,proto3" json:"height,omitempty"` -} - -func (m *RequestEndBlock) Reset() { *m = RequestEndBlock{} } -func (m *RequestEndBlock) String() string { return proto.CompactTextString(m) } -func (*RequestEndBlock) ProtoMessage() {} -func (*RequestEndBlock) Descriptor() ([]byte, []int) { - return fileDescriptor_252557cfdd89a31a, []int{9} -} -func (m *RequestEndBlock) XXX_Unmarshal(b []byte) error { - return m.Unmarshal(b) -} -func (m *RequestEndBlock) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { - if deterministic { - return xxx_messageInfo_RequestEndBlock.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 *RequestEndBlock) XXX_Merge(src proto.Message) { - xxx_messageInfo_RequestEndBlock.Merge(m, src) -} -func (m *RequestEndBlock) XXX_Size() int { - return m.Size() -} -func (m *RequestEndBlock) XXX_DiscardUnknown() { - xxx_messageInfo_RequestEndBlock.DiscardUnknown(m) -} - -var xxx_messageInfo_RequestEndBlock proto.InternalMessageInfo - -func (m *RequestEndBlock) GetHeight() int64 { - if m != nil { - return m.Height - } - return 0 -} - type RequestCommit struct { } @@ -929,7 +734,7 @@ func (m *RequestCommit) Reset() { *m = RequestCommit{} } func (m *RequestCommit) String() string { return proto.CompactTextString(m) } func (*RequestCommit) ProtoMessage() {} func (*RequestCommit) Descriptor() ([]byte, []int) { - return fileDescriptor_252557cfdd89a31a, []int{10} + return fileDescriptor_252557cfdd89a31a, []int{7} } func (m *RequestCommit) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -966,7 +771,7 @@ func (m *RequestListSnapshots) Reset() { *m = RequestListSnapshots{} } func (m *RequestListSnapshots) String() string { return proto.CompactTextString(m) } func (*RequestListSnapshots) ProtoMessage() {} func (*RequestListSnapshots) Descriptor() ([]byte, []int) { - return fileDescriptor_252557cfdd89a31a, []int{11} + return fileDescriptor_252557cfdd89a31a, []int{8} } func (m *RequestListSnapshots) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1005,7 +810,7 @@ func (m *RequestOfferSnapshot) Reset() { *m = RequestOfferSnapshot{} } func (m *RequestOfferSnapshot) String() string { return proto.CompactTextString(m) } func (*RequestOfferSnapshot) ProtoMessage() {} func (*RequestOfferSnapshot) Descriptor() ([]byte, []int) { - return fileDescriptor_252557cfdd89a31a, []int{12} + return fileDescriptor_252557cfdd89a31a, []int{9} } func (m *RequestOfferSnapshot) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1059,7 +864,7 @@ func (m *RequestLoadSnapshotChunk) Reset() { *m = RequestLoadSnapshotChu func (m *RequestLoadSnapshotChunk) String() string { return proto.CompactTextString(m) } func (*RequestLoadSnapshotChunk) ProtoMessage() {} func (*RequestLoadSnapshotChunk) Descriptor() ([]byte, []int) { - return fileDescriptor_252557cfdd89a31a, []int{13} + return fileDescriptor_252557cfdd89a31a, []int{10} } func (m *RequestLoadSnapshotChunk) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1120,7 +925,7 @@ func (m *RequestApplySnapshotChunk) Reset() { *m = RequestApplySnapshotC func (m *RequestApplySnapshotChunk) String() string { return proto.CompactTextString(m) } func (*RequestApplySnapshotChunk) ProtoMessage() {} func (*RequestApplySnapshotChunk) Descriptor() ([]byte, []int) { - return fileDescriptor_252557cfdd89a31a, []int{14} + return fileDescriptor_252557cfdd89a31a, []int{11} } func (m *RequestApplySnapshotChunk) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1182,7 +987,7 @@ 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{15} + return fileDescriptor_252557cfdd89a31a, []int{12} } func (m *RequestFinalizeBlock) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1254,10 +1059,7 @@ type Response struct { // *Response_Info // *Response_InitChain // *Response_Query - // *Response_BeginBlock // *Response_CheckTx - // *Response_DeliverTx - // *Response_EndBlock // *Response_Commit // *Response_ListSnapshots // *Response_OfferSnapshot @@ -1271,7 +1073,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{16} + return fileDescriptor_252557cfdd89a31a, []int{13} } func (m *Response) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1324,18 +1126,9 @@ type Response_InitChain struct { type Response_Query struct { Query *ResponseQuery `protobuf:"bytes,6,opt,name=query,proto3,oneof" json:"query,omitempty"` } -type Response_BeginBlock struct { - BeginBlock *ResponseBeginBlock `protobuf:"bytes,7,opt,name=begin_block,json=beginBlock,proto3,oneof" json:"begin_block,omitempty"` -} type Response_CheckTx struct { CheckTx *ResponseCheckTx `protobuf:"bytes,8,opt,name=check_tx,json=checkTx,proto3,oneof" json:"check_tx,omitempty"` } -type Response_DeliverTx struct { - DeliverTx *ResponseDeliverTx `protobuf:"bytes,9,opt,name=deliver_tx,json=deliverTx,proto3,oneof" json:"deliver_tx,omitempty"` -} -type Response_EndBlock struct { - EndBlock *ResponseEndBlock `protobuf:"bytes,10,opt,name=end_block,json=endBlock,proto3,oneof" json:"end_block,omitempty"` -} type Response_Commit struct { Commit *ResponseCommit `protobuf:"bytes,11,opt,name=commit,proto3,oneof" json:"commit,omitempty"` } @@ -1361,10 +1154,7 @@ func (*Response_Flush) isResponse_Value() {} func (*Response_Info) isResponse_Value() {} func (*Response_InitChain) isResponse_Value() {} func (*Response_Query) isResponse_Value() {} -func (*Response_BeginBlock) isResponse_Value() {} func (*Response_CheckTx) isResponse_Value() {} -func (*Response_DeliverTx) isResponse_Value() {} -func (*Response_EndBlock) isResponse_Value() {} func (*Response_Commit) isResponse_Value() {} func (*Response_ListSnapshots) isResponse_Value() {} func (*Response_OfferSnapshot) isResponse_Value() {} @@ -1421,13 +1211,6 @@ func (m *Response) GetQuery() *ResponseQuery { return nil } -func (m *Response) GetBeginBlock() *ResponseBeginBlock { - if x, ok := m.GetValue().(*Response_BeginBlock); ok { - return x.BeginBlock - } - return nil -} - func (m *Response) GetCheckTx() *ResponseCheckTx { if x, ok := m.GetValue().(*Response_CheckTx); ok { return x.CheckTx @@ -1435,20 +1218,6 @@ func (m *Response) GetCheckTx() *ResponseCheckTx { return nil } -func (m *Response) GetDeliverTx() *ResponseDeliverTx { - if x, ok := m.GetValue().(*Response_DeliverTx); ok { - return x.DeliverTx - } - return nil -} - -func (m *Response) GetEndBlock() *ResponseEndBlock { - if x, ok := m.GetValue().(*Response_EndBlock); ok { - return x.EndBlock - } - return nil -} - func (m *Response) GetCommit() *ResponseCommit { if x, ok := m.GetValue().(*Response_Commit); ok { return x.Commit @@ -1500,10 +1269,7 @@ func (*Response) XXX_OneofWrappers() []interface{} { (*Response_Info)(nil), (*Response_InitChain)(nil), (*Response_Query)(nil), - (*Response_BeginBlock)(nil), (*Response_CheckTx)(nil), - (*Response_DeliverTx)(nil), - (*Response_EndBlock)(nil), (*Response_Commit)(nil), (*Response_ListSnapshots)(nil), (*Response_OfferSnapshot)(nil), @@ -1522,7 +1288,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{17} + return fileDescriptor_252557cfdd89a31a, []int{14} } func (m *ResponseException) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1566,7 +1332,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{18} + return fileDescriptor_252557cfdd89a31a, []int{15} } func (m *ResponseEcho) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1609,7 +1375,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{19} + return fileDescriptor_252557cfdd89a31a, []int{16} } func (m *ResponseFlush) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1651,7 +1417,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{20} + return fileDescriptor_252557cfdd89a31a, []int{17} } func (m *ResponseInfo) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1725,7 +1491,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{21} + return fileDescriptor_252557cfdd89a31a, []int{18} } func (m *ResponseInitChain) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1792,7 +1558,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{22} + return fileDescriptor_252557cfdd89a31a, []int{19} } func (m *ResponseQuery) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1884,50 +1650,6 @@ func (m *ResponseQuery) GetCodespace() string { return "" } -type ResponseBeginBlock struct { - Events []Event `protobuf:"bytes,1,rep,name=events,proto3" json:"events,omitempty"` -} - -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{23} -} -func (m *ResponseBeginBlock) XXX_Unmarshal(b []byte) error { - return m.Unmarshal(b) -} -func (m *ResponseBeginBlock) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { - if deterministic { - return xxx_messageInfo_ResponseBeginBlock.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 *ResponseBeginBlock) XXX_Merge(src proto.Message) { - xxx_messageInfo_ResponseBeginBlock.Merge(m, src) -} -func (m *ResponseBeginBlock) XXX_Size() int { - return m.Size() -} -func (m *ResponseBeginBlock) XXX_DiscardUnknown() { - xxx_messageInfo_ResponseBeginBlock.DiscardUnknown(m) -} - -var xxx_messageInfo_ResponseBeginBlock proto.InternalMessageInfo - -func (m *ResponseBeginBlock) GetEvents() []Event { - if m != nil { - return m.Events - } - return nil -} - type ResponseCheckTx struct { Code uint32 `protobuf:"varint,1,opt,name=code,proto3" json:"code,omitempty"` Data []byte `protobuf:"bytes,2,opt,name=data,proto3" json:"data,omitempty"` @@ -1945,7 +1667,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{24} + return fileDescriptor_252557cfdd89a31a, []int{20} } func (m *ResponseCheckTx) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2059,7 +1781,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{25} + return fileDescriptor_252557cfdd89a31a, []int{21} } func (m *ResponseDeliverTx) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2144,66 +1866,6 @@ func (m *ResponseDeliverTx) GetCodespace() string { return "" } -type ResponseEndBlock struct { - ValidatorUpdates []ValidatorUpdate `protobuf:"bytes,1,rep,name=validator_updates,json=validatorUpdates,proto3" json:"validator_updates"` - ConsensusParamUpdates *types1.ConsensusParams `protobuf:"bytes,2,opt,name=consensus_param_updates,json=consensusParamUpdates,proto3" json:"consensus_param_updates,omitempty"` - Events []Event `protobuf:"bytes,3,rep,name=events,proto3" json:"events,omitempty"` -} - -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{26} -} -func (m *ResponseEndBlock) XXX_Unmarshal(b []byte) error { - return m.Unmarshal(b) -} -func (m *ResponseEndBlock) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { - if deterministic { - return xxx_messageInfo_ResponseEndBlock.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 *ResponseEndBlock) XXX_Merge(src proto.Message) { - xxx_messageInfo_ResponseEndBlock.Merge(m, src) -} -func (m *ResponseEndBlock) XXX_Size() int { - return m.Size() -} -func (m *ResponseEndBlock) XXX_DiscardUnknown() { - xxx_messageInfo_ResponseEndBlock.DiscardUnknown(m) -} - -var xxx_messageInfo_ResponseEndBlock proto.InternalMessageInfo - -func (m *ResponseEndBlock) GetValidatorUpdates() []ValidatorUpdate { - if m != nil { - return m.ValidatorUpdates - } - return nil -} - -func (m *ResponseEndBlock) GetConsensusParamUpdates() *types1.ConsensusParams { - if m != nil { - return m.ConsensusParamUpdates - } - return nil -} - -func (m *ResponseEndBlock) GetEvents() []Event { - if m != nil { - return m.Events - } - return nil -} - type ResponseCommit struct { // reserve 1 Data []byte `protobuf:"bytes,2,opt,name=data,proto3" json:"data,omitempty"` @@ -2214,7 +1876,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{27} + return fileDescriptor_252557cfdd89a31a, []int{22} } func (m *ResponseCommit) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2265,7 +1927,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{28} + return fileDescriptor_252557cfdd89a31a, []int{23} } func (m *ResponseListSnapshots) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2309,7 +1971,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{29} + return fileDescriptor_252557cfdd89a31a, []int{24} } func (m *ResponseOfferSnapshot) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2353,7 +2015,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{30} + return fileDescriptor_252557cfdd89a31a, []int{25} } func (m *ResponseLoadSnapshotChunk) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2399,7 +2061,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{31} + return fileDescriptor_252557cfdd89a31a, []int{26} } func (m *ResponseApplySnapshotChunk) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2460,7 +2122,7 @@ 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{32} + return fileDescriptor_252557cfdd89a31a, []int{27} } func (m *ResponseFinalizeBlock) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2526,7 +2188,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{33} + return fileDescriptor_252557cfdd89a31a, []int{28} } func (m *LastCommitInfo) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2581,7 +2243,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{34} + return fileDescriptor_252557cfdd89a31a, []int{29} } func (m *Event) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2635,7 +2297,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{35} + return fileDescriptor_252557cfdd89a31a, []int{30} } func (m *EventAttribute) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2699,7 +2361,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{36} + return fileDescriptor_252557cfdd89a31a, []int{31} } func (m *TxResult) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2767,7 +2429,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{37} + return fileDescriptor_252557cfdd89a31a, []int{32} } func (m *Validator) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2820,7 +2482,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{38} + return fileDescriptor_252557cfdd89a31a, []int{33} } func (m *ValidatorUpdate) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2873,7 +2535,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{39} + return fileDescriptor_252557cfdd89a31a, []int{34} } func (m *VoteInfo) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2934,7 +2596,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{40} + return fileDescriptor_252557cfdd89a31a, []int{35} } func (m *Evidence) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -3010,7 +2672,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{41} + return fileDescriptor_252557cfdd89a31a, []int{36} } func (m *Snapshot) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -3085,10 +2747,7 @@ func init() { proto.RegisterType((*RequestInfo)(nil), "tendermint.abci.RequestInfo") proto.RegisterType((*RequestInitChain)(nil), "tendermint.abci.RequestInitChain") proto.RegisterType((*RequestQuery)(nil), "tendermint.abci.RequestQuery") - proto.RegisterType((*RequestBeginBlock)(nil), "tendermint.abci.RequestBeginBlock") proto.RegisterType((*RequestCheckTx)(nil), "tendermint.abci.RequestCheckTx") - proto.RegisterType((*RequestDeliverTx)(nil), "tendermint.abci.RequestDeliverTx") - proto.RegisterType((*RequestEndBlock)(nil), "tendermint.abci.RequestEndBlock") proto.RegisterType((*RequestCommit)(nil), "tendermint.abci.RequestCommit") proto.RegisterType((*RequestListSnapshots)(nil), "tendermint.abci.RequestListSnapshots") proto.RegisterType((*RequestOfferSnapshot)(nil), "tendermint.abci.RequestOfferSnapshot") @@ -3102,10 +2761,8 @@ func init() { proto.RegisterType((*ResponseInfo)(nil), "tendermint.abci.ResponseInfo") proto.RegisterType((*ResponseInitChain)(nil), "tendermint.abci.ResponseInitChain") proto.RegisterType((*ResponseQuery)(nil), "tendermint.abci.ResponseQuery") - proto.RegisterType((*ResponseBeginBlock)(nil), "tendermint.abci.ResponseBeginBlock") proto.RegisterType((*ResponseCheckTx)(nil), "tendermint.abci.ResponseCheckTx") proto.RegisterType((*ResponseDeliverTx)(nil), "tendermint.abci.ResponseDeliverTx") - proto.RegisterType((*ResponseEndBlock)(nil), "tendermint.abci.ResponseEndBlock") proto.RegisterType((*ResponseCommit)(nil), "tendermint.abci.ResponseCommit") proto.RegisterType((*ResponseListSnapshots)(nil), "tendermint.abci.ResponseListSnapshots") proto.RegisterType((*ResponseOfferSnapshot)(nil), "tendermint.abci.ResponseOfferSnapshot") @@ -3126,175 +2783,165 @@ func init() { func init() { proto.RegisterFile("tendermint/abci/types.proto", fileDescriptor_252557cfdd89a31a) } var fileDescriptor_252557cfdd89a31a = []byte{ - // 2687 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe4, 0x5a, 0xcf, 0x73, 0x23, 0xc5, - 0xf5, 0xd7, 0xef, 0x1f, 0x4f, 0x96, 0x2c, 0xf7, 0x9a, 0x45, 0x88, 0xc5, 0x36, 0x43, 0xc1, 0x17, - 0x16, 0xb0, 0xbf, 0x98, 0x40, 0xa0, 0xc8, 0x0f, 0x2c, 0x21, 0x47, 0x66, 0x1d, 0xdb, 0x69, 0x8b, - 0xa5, 0x48, 0xc2, 0x0e, 0x23, 0x4d, 0x5b, 0x1a, 0x56, 0x9a, 0x19, 0x66, 0x5a, 0xc6, 0xe6, 0x98, - 0x4a, 0x2e, 0x5b, 0x39, 0x6c, 0x55, 0x2e, 0xc9, 0x61, 0xff, 0x8e, 0xe4, 0x94, 0x53, 0xaa, 0xc2, - 0x21, 0x07, 0x8e, 0x39, 0x91, 0xd4, 0xee, 0x2d, 0xb7, 0x9c, 0x72, 0x4a, 0x55, 0xaa, 0x7f, 0xcc, - 0x2f, 0x49, 0x23, 0xc9, 0x59, 0x38, 0xe5, 0xd6, 0xfd, 0xe6, 0xbd, 0xa7, 0xee, 0xd7, 0xfd, 0x3e, - 0xfd, 0xe9, 0xd7, 0x82, 0xa7, 0x29, 0x31, 0x75, 0xe2, 0x8c, 0x0c, 0x93, 0xee, 0x68, 0xdd, 0x9e, - 0xb1, 0x43, 0x2f, 0x6d, 0xe2, 0x6e, 0xdb, 0x8e, 0x45, 0x2d, 0xb4, 0x1a, 0x7c, 0xdc, 0x66, 0x1f, - 0xeb, 0xcf, 0x84, 0xb4, 0x7b, 0xce, 0xa5, 0x4d, 0xad, 0x1d, 0xdb, 0xb1, 0xac, 0x33, 0xa1, 0x5f, - 0xbf, 0x11, 0xfa, 0xcc, 0xfd, 0x84, 0xbd, 0x45, 0xbe, 0x4a, 0xe3, 0xbb, 0xe4, 0xd2, 0xfb, 0xfa, - 0xcc, 0x94, 0xad, 0xad, 0x39, 0xda, 0xc8, 0xfb, 0xbc, 0xd9, 0xb7, 0xac, 0xfe, 0x90, 0xec, 0xf0, - 0x5e, 0x77, 0x7c, 0xb6, 0x43, 0x8d, 0x11, 0x71, 0xa9, 0x36, 0xb2, 0xa5, 0xc2, 0x7a, 0xdf, 0xea, - 0x5b, 0xbc, 0xb9, 0xc3, 0x5a, 0x42, 0xaa, 0x3c, 0x28, 0x40, 0x1e, 0x93, 0xcf, 0xc6, 0xc4, 0xa5, - 0x68, 0x17, 0x32, 0xa4, 0x37, 0xb0, 0x6a, 0xc9, 0xad, 0xe4, 0x8b, 0xa5, 0xdd, 0x1b, 0xdb, 0x13, - 0x93, 0xdb, 0x96, 0x7a, 0xad, 0xde, 0xc0, 0x6a, 0x27, 0x30, 0xd7, 0x45, 0x6f, 0x40, 0xf6, 0x6c, - 0x38, 0x76, 0x07, 0xb5, 0x14, 0x37, 0x7a, 0x26, 0xce, 0x68, 0x9f, 0x29, 0xb5, 0x13, 0x58, 0x68, - 0xb3, 0x9f, 0x32, 0xcc, 0x33, 0xab, 0x96, 0x9e, 0xff, 0x53, 0x07, 0xe6, 0x19, 0xff, 0x29, 0xa6, - 0x8b, 0x1a, 0x00, 0x86, 0x69, 0x50, 0xb5, 0x37, 0xd0, 0x0c, 0xb3, 0x96, 0xe1, 0x96, 0xcf, 0xc6, - 0x5b, 0x1a, 0xb4, 0xc9, 0x14, 0xdb, 0x09, 0x5c, 0x34, 0xbc, 0x0e, 0x1b, 0xee, 0x67, 0x63, 0xe2, - 0x5c, 0xd6, 0xb2, 0xf3, 0x87, 0xfb, 0x13, 0xa6, 0xc4, 0x86, 0xcb, 0xb5, 0x51, 0x0b, 0x4a, 0x5d, - 0xd2, 0x37, 0x4c, 0xb5, 0x3b, 0xb4, 0x7a, 0x77, 0x6b, 0x39, 0x6e, 0xac, 0xc4, 0x19, 0x37, 0x98, - 0x6a, 0x83, 0x69, 0xb6, 0x13, 0x18, 0xba, 0x7e, 0x0f, 0x7d, 0x0f, 0x0a, 0xbd, 0x01, 0xe9, 0xdd, - 0x55, 0xe9, 0x45, 0x2d, 0xcf, 0x7d, 0x6c, 0xc6, 0xf9, 0x68, 0x32, 0xbd, 0xce, 0x45, 0x3b, 0x81, - 0xf3, 0x3d, 0xd1, 0x64, 0xf3, 0xd7, 0xc9, 0xd0, 0x38, 0x27, 0x0e, 0xb3, 0x2f, 0xcc, 0x9f, 0xff, - 0x7b, 0x42, 0x93, 0x7b, 0x28, 0xea, 0x5e, 0x07, 0xfd, 0x10, 0x8a, 0xc4, 0xd4, 0xe5, 0x34, 0x8a, - 0xdc, 0xc5, 0x56, 0xec, 0x3a, 0x9b, 0xba, 0x37, 0x89, 0x02, 0x91, 0x6d, 0xf4, 0x16, 0xe4, 0x7a, - 0xd6, 0x68, 0x64, 0xd0, 0x1a, 0x70, 0xeb, 0x8d, 0xd8, 0x09, 0x70, 0xad, 0x76, 0x02, 0x4b, 0x7d, - 0x74, 0x04, 0x95, 0xa1, 0xe1, 0x52, 0xd5, 0x35, 0x35, 0xdb, 0x1d, 0x58, 0xd4, 0xad, 0x95, 0xb8, - 0x87, 0xe7, 0xe3, 0x3c, 0x1c, 0x1a, 0x2e, 0x3d, 0xf5, 0x94, 0xdb, 0x09, 0x5c, 0x1e, 0x86, 0x05, - 0xcc, 0x9f, 0x75, 0x76, 0x46, 0x1c, 0xdf, 0x61, 0x6d, 0x65, 0xbe, 0xbf, 0x63, 0xa6, 0xed, 0xd9, - 0x33, 0x7f, 0x56, 0x58, 0x80, 0x7e, 0x06, 0xd7, 0x86, 0x96, 0xa6, 0xfb, 0xee, 0xd4, 0xde, 0x60, - 0x6c, 0xde, 0xad, 0x95, 0xb9, 0xd3, 0x97, 0x62, 0x07, 0x69, 0x69, 0xba, 0xe7, 0xa2, 0xc9, 0x0c, - 0xda, 0x09, 0xbc, 0x36, 0x9c, 0x14, 0xa2, 0x3b, 0xb0, 0xae, 0xd9, 0xf6, 0xf0, 0x72, 0xd2, 0x7b, - 0x85, 0x7b, 0xbf, 0x19, 0xe7, 0x7d, 0x8f, 0xd9, 0x4c, 0xba, 0x47, 0xda, 0x94, 0x94, 0x05, 0xe3, - 0xcc, 0x30, 0xb5, 0xa1, 0xf1, 0x05, 0x91, 0x8b, 0xbb, 0x3a, 0x3f, 0x18, 0xfb, 0x52, 0xdb, 0x5b, - 0xe1, 0xf2, 0x59, 0x58, 0xd0, 0xc8, 0x43, 0xf6, 0x5c, 0x1b, 0x8e, 0x89, 0xf2, 0x7f, 0x50, 0x0a, - 0xa5, 0x3d, 0xaa, 0x41, 0x7e, 0x44, 0x5c, 0x57, 0xeb, 0x13, 0x8e, 0x12, 0x45, 0xec, 0x75, 0x95, - 0x0a, 0xac, 0x84, 0x53, 0x5d, 0xb9, 0x9f, 0xf4, 0x2d, 0x59, 0x16, 0x33, 0xcb, 0x73, 0xe2, 0xb8, - 0x86, 0x65, 0x7a, 0x96, 0xb2, 0x8b, 0x9e, 0x83, 0x32, 0x1f, 0xb2, 0xea, 0x7d, 0x67, 0x50, 0x92, - 0xc1, 0x2b, 0x5c, 0x78, 0x5b, 0x2a, 0x6d, 0x42, 0xc9, 0xde, 0xb5, 0x7d, 0x95, 0x34, 0x57, 0x01, - 0x7b, 0xd7, 0xf6, 0x14, 0x9e, 0x85, 0x15, 0x36, 0x3f, 0x5f, 0x23, 0xc3, 0x7f, 0xa4, 0xc4, 0x64, - 0x52, 0x45, 0xf9, 0x4b, 0x0a, 0xaa, 0x93, 0xf0, 0x80, 0xde, 0x82, 0x0c, 0x43, 0x4a, 0x09, 0x7a, - 0xf5, 0x6d, 0x01, 0xa3, 0xdb, 0x1e, 0x8c, 0x6e, 0x77, 0x3c, 0x18, 0x6d, 0x14, 0xbe, 0xfc, 0x7a, - 0x33, 0x71, 0xff, 0x6f, 0x9b, 0x49, 0xcc, 0x2d, 0xd0, 0x53, 0x2c, 0x9b, 0x35, 0xc3, 0x54, 0x0d, - 0x9d, 0x0f, 0xb9, 0xc8, 0x52, 0x55, 0x33, 0xcc, 0x03, 0x1d, 0x1d, 0x42, 0xb5, 0x67, 0x99, 0x2e, - 0x31, 0xdd, 0xb1, 0xab, 0x0a, 0x98, 0x96, 0x50, 0x17, 0x49, 0x58, 0x01, 0xfe, 0x4d, 0x4f, 0xf3, - 0x84, 0x2b, 0xe2, 0xd5, 0x5e, 0x54, 0x80, 0xf6, 0x01, 0xce, 0xb5, 0xa1, 0xa1, 0x6b, 0xd4, 0x72, - 0xdc, 0x5a, 0x66, 0x2b, 0x3d, 0x33, 0x6b, 0x6f, 0x7b, 0x2a, 0x1f, 0xd8, 0xba, 0x46, 0x49, 0x23, - 0xc3, 0x86, 0x8b, 0x43, 0x96, 0xe8, 0x05, 0x58, 0xd5, 0x6c, 0x5b, 0x75, 0xa9, 0x46, 0x89, 0xda, - 0xbd, 0xa4, 0xc4, 0xe5, 0x30, 0xb8, 0x82, 0xcb, 0x9a, 0x6d, 0x9f, 0x32, 0x69, 0x83, 0x09, 0xd1, - 0xf3, 0x50, 0x61, 0x88, 0x69, 0x68, 0x43, 0x75, 0x40, 0x8c, 0xfe, 0x80, 0x72, 0xc0, 0x4b, 0xe3, - 0xb2, 0x94, 0xb6, 0xb9, 0x50, 0xd1, 0xfd, 0x15, 0xe7, 0x68, 0x89, 0x10, 0x64, 0x74, 0x8d, 0x6a, - 0x3c, 0x92, 0x2b, 0x98, 0xb7, 0x99, 0xcc, 0xd6, 0xe8, 0x40, 0xc6, 0x87, 0xb7, 0xd1, 0x75, 0xc8, - 0x49, 0xb7, 0x69, 0xee, 0x56, 0xf6, 0xd0, 0x3a, 0x64, 0x6d, 0xc7, 0x3a, 0x27, 0x7c, 0xe9, 0x0a, - 0x58, 0x74, 0x94, 0x5f, 0xa6, 0x60, 0x6d, 0x0a, 0x57, 0x99, 0xdf, 0x81, 0xe6, 0x0e, 0xbc, 0xdf, - 0x62, 0x6d, 0xf4, 0x26, 0xf3, 0xab, 0xe9, 0xc4, 0x91, 0x67, 0x51, 0x6d, 0x3a, 0xd4, 0x6d, 0xfe, - 0x5d, 0x86, 0x46, 0x6a, 0xa3, 0x63, 0xa8, 0x0e, 0x35, 0x97, 0xaa, 0x02, 0xa7, 0xd4, 0xd0, 0xb9, - 0x34, 0x8d, 0xce, 0x87, 0x9a, 0x87, 0x6c, 0x6c, 0x53, 0x4b, 0x47, 0x95, 0x61, 0x44, 0x8a, 0x30, - 0xac, 0x77, 0x2f, 0xbf, 0xd0, 0x4c, 0x6a, 0x98, 0x44, 0x9d, 0x5a, 0xb9, 0xa7, 0xa6, 0x9c, 0xb6, - 0xce, 0x0d, 0x9d, 0x98, 0x3d, 0x6f, 0xc9, 0xae, 0xf9, 0xc6, 0xfe, 0x92, 0xba, 0x0a, 0x86, 0x4a, - 0xf4, 0x64, 0x40, 0x15, 0x48, 0xd1, 0x0b, 0x19, 0x80, 0x14, 0xbd, 0x40, 0xff, 0x0f, 0x19, 0x36, - 0x49, 0x3e, 0xf9, 0xca, 0x8c, 0x23, 0x55, 0xda, 0x75, 0x2e, 0x6d, 0x82, 0xb9, 0xa6, 0xa2, 0xf8, - 0xe9, 0xe0, 0x9f, 0x16, 0x93, 0x5e, 0x95, 0x97, 0x60, 0x75, 0xe2, 0x38, 0x08, 0xad, 0x5f, 0x32, - 0xbc, 0x7e, 0xca, 0x2a, 0x94, 0x23, 0xd8, 0xaf, 0x5c, 0x87, 0xf5, 0x59, 0x50, 0xae, 0x0c, 0x7c, - 0x79, 0x04, 0x92, 0xd1, 0x1b, 0x50, 0xf0, 0xb1, 0x5c, 0xa4, 0xe3, 0x74, 0xac, 0x3c, 0x65, 0xec, - 0xab, 0xb2, 0x3c, 0x64, 0xdb, 0x9a, 0xef, 0x87, 0x14, 0x1f, 0x78, 0x5e, 0xb3, 0xed, 0xb6, 0xe6, - 0x0e, 0x94, 0x4f, 0xa0, 0x16, 0x87, 0xd3, 0x13, 0xd3, 0xc8, 0xf8, 0xdb, 0xf0, 0x3a, 0xe4, 0xce, - 0x2c, 0x67, 0xa4, 0x51, 0xee, 0xac, 0x8c, 0x65, 0x8f, 0x6d, 0x4f, 0x81, 0xd9, 0x69, 0x2e, 0x16, - 0x1d, 0x45, 0x85, 0xa7, 0x62, 0xb1, 0x9a, 0x99, 0x18, 0xa6, 0x4e, 0x44, 0x3c, 0xcb, 0x58, 0x74, - 0x02, 0x47, 0x62, 0xb0, 0xa2, 0xc3, 0x7e, 0xd6, 0xe5, 0x73, 0xe5, 0xfe, 0x8b, 0x58, 0xf6, 0x94, - 0xdf, 0xa5, 0xfc, 0x68, 0x45, 0x30, 0x1b, 0x55, 0x21, 0x4d, 0x2f, 0xdc, 0x5a, 0x72, 0x2b, 0xfd, - 0xe2, 0x0a, 0x66, 0x4d, 0x3f, 0x29, 0x52, 0x33, 0x93, 0x22, 0xfd, 0xd8, 0x49, 0x91, 0xf9, 0x36, - 0x92, 0x22, 0xfb, 0x18, 0x49, 0xf1, 0xcf, 0x02, 0x14, 0x30, 0x71, 0x6d, 0x86, 0x97, 0xa8, 0x01, - 0x45, 0x72, 0xd1, 0x23, 0x36, 0xf5, 0x8e, 0x98, 0xd9, 0x0c, 0x4d, 0x68, 0xb7, 0x3c, 0x4d, 0x46, - 0x8f, 0x7c, 0x33, 0xf4, 0xba, 0x64, 0xc0, 0xf1, 0x64, 0x56, 0x9a, 0x87, 0x29, 0xf0, 0x9b, 0x1e, - 0x05, 0x4e, 0xc7, 0x32, 0x22, 0x61, 0x35, 0xc1, 0x81, 0x5f, 0x97, 0x1c, 0x38, 0xb3, 0xe0, 0xc7, - 0x22, 0x24, 0xb8, 0x19, 0x21, 0xc1, 0xd9, 0x05, 0xd3, 0x8c, 0x61, 0xc1, 0x6f, 0x7a, 0x2c, 0x38, - 0xb7, 0x60, 0xc4, 0x13, 0x34, 0x78, 0x3f, 0x4a, 0x83, 0x05, 0x85, 0x7d, 0x2e, 0xd6, 0x3a, 0x96, - 0x07, 0x7f, 0x3f, 0xc4, 0x83, 0x0b, 0xb1, 0x24, 0x54, 0x38, 0x99, 0x41, 0x84, 0x9b, 0x11, 0x22, - 0x5c, 0x5c, 0x10, 0x83, 0x18, 0x26, 0xfc, 0x6e, 0x98, 0x09, 0x43, 0x2c, 0x99, 0x96, 0xeb, 0x3d, - 0x8b, 0x0a, 0xbf, 0xed, 0x53, 0xe1, 0x52, 0x2c, 0x97, 0x97, 0x73, 0x98, 0xe4, 0xc2, 0xc7, 0x53, - 0x5c, 0x58, 0x70, 0xd7, 0x17, 0x62, 0x5d, 0x2c, 0x20, 0xc3, 0xc7, 0x53, 0x64, 0xb8, 0xbc, 0xc0, - 0xe1, 0x02, 0x36, 0xfc, 0xf3, 0xd9, 0x6c, 0x38, 0x9e, 0xaf, 0xca, 0x61, 0x2e, 0x47, 0x87, 0xd5, - 0x18, 0x3a, 0x2c, 0x48, 0xeb, 0xcb, 0xb1, 0xee, 0x97, 0xe6, 0xc3, 0xc7, 0x53, 0x7c, 0xb8, 0xba, - 0x20, 0x1e, 0xcb, 0x12, 0xe2, 0x97, 0x18, 0x1d, 0x99, 0x00, 0x11, 0x06, 0xe9, 0xc4, 0x71, 0x2c, - 0x47, 0x52, 0x5b, 0xd1, 0x51, 0x5e, 0x64, 0x04, 0x29, 0x00, 0x8c, 0x39, 0xe4, 0x99, 0x1f, 0x9d, - 0x21, 0x90, 0x50, 0xfe, 0x90, 0x0c, 0x6c, 0x39, 0x7c, 0x86, 0xc9, 0x55, 0x51, 0x92, 0xab, 0x10, - 0xa5, 0x4e, 0x45, 0x29, 0xf5, 0x26, 0x94, 0xd8, 0x91, 0x38, 0xc1, 0x96, 0x35, 0xdb, 0x67, 0xcb, - 0x37, 0x61, 0x8d, 0xc3, 0xbb, 0x20, 0xde, 0xf2, 0x1c, 0xcc, 0xf0, 0xe3, 0x7c, 0x95, 0x7d, 0x10, - 0x51, 0x10, 0x07, 0xe2, 0xab, 0x70, 0x2d, 0xa4, 0xeb, 0x1f, 0xb5, 0x82, 0x3a, 0x56, 0x7d, 0xed, - 0x3d, 0x79, 0xe6, 0xfe, 0x29, 0x19, 0x44, 0x28, 0xa0, 0xd9, 0xb3, 0x18, 0x71, 0xf2, 0x1b, 0x62, - 0xc4, 0xa9, 0xff, 0x9a, 0x11, 0x87, 0xa9, 0x43, 0x3a, 0x4a, 0x1d, 0xfe, 0x95, 0x0c, 0xd6, 0xc4, - 0xe7, 0xb7, 0x3d, 0x4b, 0x27, 0xf2, 0x30, 0xe7, 0x6d, 0x76, 0x08, 0x0f, 0xad, 0xbe, 0x3c, 0xb2, - 0x59, 0x93, 0x69, 0xf9, 0xa8, 0x5e, 0x94, 0xa0, 0xed, 0xf3, 0x80, 0x2c, 0x8f, 0xb0, 0xe4, 0x01, - 0x55, 0x48, 0xdf, 0x25, 0x02, 0x83, 0x57, 0x30, 0x6b, 0x32, 0x3d, 0xbe, 0xc9, 0x38, 0xb2, 0xae, - 0x60, 0xd1, 0x41, 0x6f, 0x41, 0x91, 0xd7, 0x90, 0x54, 0xcb, 0x76, 0x25, 0x5c, 0x3e, 0x1d, 0x9e, - 0xab, 0x28, 0x15, 0x6d, 0x9f, 0x30, 0x9d, 0x63, 0xdb, 0xc5, 0x05, 0x5b, 0xb6, 0x42, 0x14, 0xa7, - 0x18, 0x61, 0xda, 0x37, 0xa0, 0xc8, 0x46, 0xef, 0xda, 0x5a, 0x8f, 0x70, 0xec, 0x2b, 0xe2, 0x40, - 0xa0, 0xdc, 0x01, 0x34, 0x8d, 0xe0, 0xa8, 0x0d, 0x39, 0x72, 0x4e, 0x4c, 0x2a, 0x18, 0x47, 0x69, - 0xf7, 0xfa, 0x8c, 0x13, 0x9b, 0x98, 0xb4, 0x51, 0x63, 0x41, 0xfe, 0xc7, 0xd7, 0x9b, 0x55, 0xa1, - 0xfd, 0x8a, 0x35, 0x32, 0x28, 0x19, 0xd9, 0xf4, 0x12, 0x4b, 0x7b, 0xe5, 0xf7, 0x29, 0xc6, 0x29, - 0x23, 0xe8, 0x3e, 0x33, 0xb6, 0xde, 0x96, 0x4f, 0x85, 0xee, 0x13, 0xcb, 0xc5, 0x7b, 0x03, 0xa0, - 0xaf, 0xb9, 0xea, 0xe7, 0x9a, 0x49, 0x89, 0x2e, 0x83, 0x1e, 0x92, 0xa0, 0x3a, 0x14, 0x58, 0x6f, - 0xec, 0x12, 0x5d, 0x5e, 0x6d, 0xfc, 0x7e, 0x68, 0x9e, 0xf9, 0xc7, 0x9b, 0x67, 0x34, 0xca, 0x85, - 0x89, 0x28, 0x87, 0xf8, 0x5e, 0x31, 0xcc, 0xf7, 0xd8, 0xd8, 0x6c, 0xc7, 0xb0, 0x1c, 0x83, 0x5e, - 0xf2, 0xa5, 0x49, 0x63, 0xbf, 0xaf, 0xfc, 0x2a, 0x15, 0xa4, 0x56, 0x40, 0xd9, 0xff, 0xe7, 0x62, - 0xa7, 0xfc, 0x9a, 0x5f, 0xe4, 0xa3, 0x47, 0x33, 0x3a, 0x85, 0x35, 0x3f, 0xb3, 0xd5, 0x31, 0xcf, - 0x78, 0x6f, 0xaf, 0x2e, 0x0b, 0x0d, 0xd5, 0xf3, 0xa8, 0xd8, 0x45, 0x1f, 0xc1, 0x93, 0x13, 0xb0, - 0xe5, 0xbb, 0x4e, 0x2d, 0x8b, 0x5e, 0x4f, 0x44, 0xd1, 0xcb, 0x73, 0x1d, 0x04, 0x2b, 0xfd, 0x98, - 0x09, 0x75, 0xc0, 0xee, 0x86, 0x61, 0xa6, 0x31, 0x73, 0xf9, 0x9f, 0x83, 0xb2, 0x43, 0xa8, 0x66, - 0x98, 0x6a, 0xe4, 0xf6, 0xbd, 0x22, 0x84, 0xf2, 0x4e, 0x7f, 0x02, 0x4f, 0xcc, 0x64, 0x1c, 0xe8, - 0xbb, 0x50, 0x0c, 0xc8, 0x4a, 0x32, 0x86, 0xb3, 0xfb, 0x97, 0xb3, 0x40, 0x57, 0xf9, 0x63, 0x32, - 0x70, 0x19, 0xbd, 0xee, 0xb5, 0x20, 0xe7, 0x10, 0x77, 0x3c, 0x14, 0x17, 0xb0, 0xca, 0xee, 0xab, - 0xcb, 0x71, 0x15, 0x26, 0x1d, 0x0f, 0x29, 0x96, 0xc6, 0xca, 0x1d, 0xc8, 0x09, 0x09, 0x2a, 0x41, - 0xfe, 0x83, 0xa3, 0x5b, 0x47, 0xc7, 0x1f, 0x1e, 0x55, 0x13, 0x08, 0x20, 0xb7, 0xd7, 0x6c, 0xb6, - 0x4e, 0x3a, 0xd5, 0x24, 0x2a, 0x42, 0x76, 0xaf, 0x71, 0x8c, 0x3b, 0xd5, 0x14, 0x13, 0xe3, 0xd6, - 0xfb, 0xad, 0x66, 0xa7, 0x9a, 0x46, 0x6b, 0x50, 0x16, 0x6d, 0x75, 0xff, 0x18, 0xff, 0x78, 0xaf, - 0x53, 0xcd, 0x84, 0x44, 0xa7, 0xad, 0xa3, 0xf7, 0x5a, 0xb8, 0x9a, 0x55, 0x5e, 0x63, 0x37, 0xbc, - 0x18, 0x76, 0x13, 0xdc, 0xe5, 0x92, 0xa1, 0xbb, 0x9c, 0xf2, 0xdb, 0x14, 0xd4, 0xe3, 0x29, 0x0b, - 0x7a, 0x7f, 0x62, 0xe2, 0xbb, 0x57, 0xe0, 0x3b, 0x13, 0xb3, 0x47, 0xcf, 0x43, 0xc5, 0x21, 0x67, - 0x84, 0xf6, 0x06, 0x82, 0x42, 0x89, 0xd3, 0xb0, 0x8c, 0xcb, 0x52, 0xca, 0x8d, 0x5c, 0xa1, 0xf6, - 0x29, 0xe9, 0x51, 0x55, 0xc0, 0x8c, 0xd8, 0x74, 0x45, 0xa6, 0xc6, 0xa4, 0xa7, 0x42, 0xa8, 0x7c, - 0x72, 0xa5, 0x58, 0x16, 0x21, 0x8b, 0x5b, 0x1d, 0xfc, 0x51, 0x35, 0x8d, 0x10, 0x54, 0x78, 0x53, - 0x3d, 0x3d, 0xda, 0x3b, 0x39, 0x6d, 0x1f, 0xb3, 0x58, 0x5e, 0x83, 0x55, 0x2f, 0x96, 0x9e, 0x30, - 0xab, 0xfc, 0x39, 0x15, 0x6c, 0x87, 0xe8, 0x7d, 0xf6, 0x3b, 0xc1, 0x7d, 0x76, 0x29, 0x3a, 0x2f, - 0xee, 0xbc, 0x33, 0xb3, 0x3e, 0xf5, 0xed, 0x65, 0x7d, 0xfa, 0x1b, 0xcb, 0xfa, 0xcc, 0x63, 0x66, - 0xfd, 0xc7, 0x50, 0x89, 0x5e, 0xbc, 0xd9, 0x66, 0x74, 0xac, 0xb1, 0xa9, 0xf3, 0x6d, 0x95, 0xc5, - 0xa2, 0x83, 0xde, 0x80, 0xec, 0xb9, 0x15, 0x44, 0x65, 0x3a, 0x6b, 0x6f, 0x5b, 0x94, 0x84, 0x2e, - 0xee, 0x42, 0x5b, 0xf9, 0x02, 0xb2, 0x7c, 0x24, 0x0c, 0x4b, 0x78, 0x5d, 0x49, 0x32, 0x4f, 0xd6, - 0x46, 0x1f, 0x03, 0x68, 0x94, 0x3a, 0x46, 0x77, 0x1c, 0x38, 0xde, 0x9c, 0x3d, 0x93, 0x3d, 0x4f, - 0xaf, 0x71, 0x43, 0x4e, 0x69, 0x3d, 0x30, 0x0d, 0x4d, 0x2b, 0xe4, 0x50, 0x39, 0x82, 0x4a, 0xd4, - 0xd6, 0xe3, 0x4a, 0x62, 0x0c, 0x51, 0xae, 0x24, 0xa8, 0xaf, 0xe4, 0x4a, 0x3e, 0xd3, 0x4a, 0x8b, - 0x1a, 0x22, 0xef, 0x28, 0xf7, 0x92, 0x50, 0xe8, 0x5c, 0xc8, 0x9d, 0x1d, 0x53, 0xbe, 0x0a, 0x4c, - 0x53, 0xe1, 0x62, 0x8d, 0xa8, 0x87, 0xa5, 0xfd, 0x2a, 0xdb, 0xbb, 0x7e, 0xee, 0x66, 0x96, 0xbd, - 0x77, 0x7a, 0x95, 0x15, 0x89, 0x57, 0xef, 0x40, 0xd1, 0xdf, 0x87, 0x8c, 0xc2, 0x6b, 0xba, 0xee, - 0x10, 0xd7, 0x95, 0x08, 0xe2, 0x75, 0x79, 0x35, 0xd4, 0xfa, 0x5c, 0xd6, 0x6d, 0xd2, 0x58, 0x74, - 0x14, 0x1d, 0x56, 0x27, 0x36, 0x31, 0x7a, 0x07, 0xf2, 0xf6, 0xb8, 0xab, 0x7a, 0xe1, 0x99, 0x78, - 0x4d, 0xf3, 0xc8, 0xe1, 0xb8, 0x3b, 0x34, 0x7a, 0xb7, 0xc8, 0xa5, 0x37, 0x18, 0x7b, 0xdc, 0xbd, - 0x25, 0xa2, 0x28, 0x7e, 0x25, 0x15, 0xfe, 0x95, 0x73, 0x28, 0x78, 0x9b, 0x02, 0xfd, 0x00, 0x8a, - 0x7e, 0x7e, 0xf8, 0x45, 0xf2, 0xd8, 0xc4, 0x92, 0xee, 0x03, 0x13, 0x76, 0xd3, 0x70, 0x8d, 0xbe, - 0x49, 0x74, 0x35, 0xb8, 0x44, 0xf0, 0x5f, 0x2b, 0xe0, 0x55, 0xf1, 0xe1, 0xd0, 0xbb, 0x41, 0x28, - 0xff, 0x4e, 0x42, 0xc1, 0xab, 0xfb, 0xa0, 0xd7, 0x42, 0xfb, 0xae, 0x32, 0xa3, 0x3c, 0xe2, 0x29, - 0x06, 0x05, 0xcd, 0xe8, 0x58, 0x53, 0x57, 0x1f, 0x6b, 0x5c, 0x65, 0xda, 0x7b, 0x23, 0xc8, 0x5c, - 0xf9, 0x8d, 0xe0, 0x15, 0x40, 0xd4, 0xa2, 0xda, 0x50, 0x3d, 0xb7, 0xa8, 0x61, 0xf6, 0x55, 0x11, - 0x6c, 0xc1, 0xaa, 0xaa, 0xfc, 0xcb, 0x6d, 0xfe, 0xe1, 0x84, 0xc7, 0xfd, 0x17, 0x49, 0x28, 0xf8, - 0xc7, 0xe3, 0x55, 0xeb, 0x93, 0xd7, 0x21, 0x27, 0x4f, 0x00, 0x51, 0xa0, 0x94, 0x3d, 0xbf, 0x2a, - 0x98, 0x09, 0x55, 0x05, 0xeb, 0x50, 0x18, 0x11, 0xaa, 0x71, 0x8e, 0x20, 0xee, 0x71, 0x7e, 0xff, - 0xe6, 0xdb, 0x50, 0x0a, 0x95, 0x8a, 0x59, 0xe6, 0x1d, 0xb5, 0x3e, 0xac, 0x26, 0xea, 0xf9, 0x7b, - 0x0f, 0xb6, 0xd2, 0x47, 0xe4, 0x73, 0xb6, 0x67, 0x71, 0xab, 0xd9, 0x6e, 0x35, 0x6f, 0x55, 0x93, - 0xf5, 0xd2, 0xbd, 0x07, 0x5b, 0x79, 0x4c, 0x78, 0x69, 0xe6, 0x66, 0x1b, 0x56, 0xc2, 0xab, 0x12, - 0x3d, 0x44, 0x10, 0x54, 0xde, 0xfb, 0xe0, 0xe4, 0xf0, 0xa0, 0xb9, 0xd7, 0x69, 0xa9, 0xb7, 0x8f, - 0x3b, 0xad, 0x6a, 0x12, 0x3d, 0x09, 0xd7, 0x0e, 0x0f, 0x7e, 0xd4, 0xee, 0xa8, 0xcd, 0xc3, 0x83, - 0xd6, 0x51, 0x47, 0xdd, 0xeb, 0x74, 0xf6, 0x9a, 0xb7, 0xaa, 0xa9, 0xdd, 0xdf, 0x14, 0x60, 0x75, - 0xaf, 0xd1, 0x3c, 0x60, 0x07, 0xa0, 0xd1, 0xd3, 0xf8, 0x25, 0xbb, 0x09, 0x19, 0x7e, 0x8d, 0x9e, - 0xfb, 0x30, 0x5d, 0x9f, 0x5f, 0xb4, 0x43, 0xfb, 0x90, 0xe5, 0x37, 0x6c, 0x34, 0xff, 0xa5, 0xba, - 0xbe, 0xa0, 0x8a, 0xc7, 0x06, 0xc3, 0xd3, 0x63, 0xee, 0xd3, 0x75, 0x7d, 0x7e, 0x51, 0x0f, 0x1d, - 0x42, 0xde, 0xbb, 0x00, 0x2d, 0x7a, 0x08, 0xae, 0x2f, 0xac, 0x90, 0xb1, 0xa9, 0x89, 0x8b, 0xea, - 0xfc, 0x57, 0xed, 0xfa, 0x82, 0x72, 0x1f, 0x3a, 0x80, 0x9c, 0xa4, 0x91, 0x0b, 0x1e, 0x77, 0xeb, - 0x8b, 0x2a, 0x5e, 0x08, 0x43, 0x31, 0x28, 0x01, 0x2c, 0x7e, 0xab, 0xaf, 0x2f, 0x51, 0xc9, 0x44, - 0x77, 0xa0, 0x1c, 0xa5, 0xa6, 0xcb, 0x3d, 0x20, 0xd7, 0x97, 0xac, 0xad, 0x31, 0xff, 0x51, 0x9e, - 0xba, 0xdc, 0x83, 0x72, 0x7d, 0xc9, 0x52, 0x1b, 0xfa, 0x14, 0xd6, 0xa6, 0x79, 0xe4, 0xf2, 0xef, - 0xcb, 0xf5, 0x2b, 0x14, 0xdf, 0xd0, 0x08, 0xd0, 0x0c, 0xfe, 0x79, 0x85, 0xe7, 0xe6, 0xfa, 0x55, - 0x6a, 0x71, 0x2c, 0x74, 0x51, 0x4e, 0xb7, 0xdc, 0xf3, 0x73, 0x7d, 0xc9, 0xaa, 0x5c, 0xa3, 0xf5, - 0xe5, 0xc3, 0x8d, 0xe4, 0x57, 0x0f, 0x37, 0x92, 0x7f, 0x7f, 0xb8, 0x91, 0xbc, 0xff, 0x68, 0x23, - 0xf1, 0xd5, 0xa3, 0x8d, 0xc4, 0x5f, 0x1f, 0x6d, 0x24, 0x7e, 0xfa, 0x72, 0xdf, 0xa0, 0x83, 0x71, - 0x77, 0xbb, 0x67, 0x8d, 0x76, 0xc2, 0xff, 0x93, 0x99, 0xf5, 0xdf, 0x9d, 0x6e, 0x8e, 0x03, 0xf7, - 0xeb, 0xff, 0x09, 0x00, 0x00, 0xff, 0xff, 0xd6, 0x32, 0xd7, 0x62, 0xdb, 0x23, 0x00, 0x00, + // 2525 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe4, 0x59, 0x4b, 0x73, 0x1b, 0xc7, + 0x11, 0xc6, 0xe2, 0x8d, 0xc6, 0x83, 0xe0, 0x88, 0x96, 0x61, 0x58, 0x26, 0xe9, 0x75, 0xd9, 0xa1, + 0x65, 0x9b, 0x8c, 0xa9, 0x48, 0x91, 0xcb, 0x49, 0x2a, 0x04, 0x04, 0x05, 0xb4, 0x18, 0x92, 0x19, + 0x42, 0x72, 0x39, 0x89, 0xb5, 0x5e, 0x02, 0x43, 0x62, 0x2d, 0x60, 0x77, 0xbd, 0x3b, 0xa0, 0x48, + 0x1d, 0x53, 0x95, 0x8b, 0x4e, 0xaa, 0xca, 0x25, 0x39, 0xf8, 0x92, 0x3f, 0x91, 0x9c, 0x72, 0x4a, + 0x55, 0x7c, 0xc8, 0xc1, 0xb9, 0xe5, 0xe4, 0xa4, 0xa4, 0x5b, 0xfe, 0x40, 0x4e, 0xa9, 0x4a, 0xcd, + 0x63, 0x5f, 0x00, 0x16, 0x00, 0x93, 0xdc, 0x72, 0x9b, 0xe9, 0xed, 0xee, 0x99, 0xe9, 0x9d, 0xee, + 0xfe, 0xba, 0x07, 0x5e, 0xa5, 0xc4, 0xec, 0x11, 0x67, 0x68, 0x98, 0x74, 0x4b, 0x3f, 0xee, 0x1a, + 0x5b, 0xf4, 0xc2, 0x26, 0xee, 0xa6, 0xed, 0x58, 0xd4, 0x42, 0x4b, 0xc1, 0xc7, 0x4d, 0xf6, 0xb1, + 0xfe, 0x5a, 0x88, 0xbb, 0xeb, 0x5c, 0xd8, 0xd4, 0xda, 0xb2, 0x1d, 0xcb, 0x3a, 0x11, 0xfc, 0xf5, + 0x6b, 0xa1, 0xcf, 0x5c, 0x4f, 0x58, 0x5b, 0xe4, 0xab, 0x14, 0x7e, 0x44, 0x2e, 0xbc, 0xaf, 0xaf, + 0x4d, 0xc8, 0xda, 0xba, 0xa3, 0x0f, 0xbd, 0xcf, 0x6b, 0xa7, 0x96, 0x75, 0x3a, 0x20, 0x5b, 0x7c, + 0x76, 0x3c, 0x3a, 0xd9, 0xa2, 0xc6, 0x90, 0xb8, 0x54, 0x1f, 0xda, 0x92, 0x61, 0xe5, 0xd4, 0x3a, + 0xb5, 0xf8, 0x70, 0x8b, 0x8d, 0x04, 0x55, 0xfd, 0x4b, 0x16, 0x72, 0x98, 0x7c, 0x31, 0x22, 0x2e, + 0x45, 0xdb, 0x90, 0x26, 0xdd, 0xbe, 0x55, 0x53, 0xd6, 0x95, 0x8d, 0xe2, 0xf6, 0xb5, 0xcd, 0xb1, + 0xc3, 0x6d, 0x4a, 0xbe, 0x56, 0xb7, 0x6f, 0xb5, 0x13, 0x98, 0xf3, 0xa2, 0x9b, 0x90, 0x39, 0x19, + 0x8c, 0xdc, 0x7e, 0x2d, 0xc9, 0x85, 0x5e, 0x8b, 0x13, 0xba, 0xcb, 0x98, 0xda, 0x09, 0x2c, 0xb8, + 0xd9, 0x52, 0x86, 0x79, 0x62, 0xd5, 0x52, 0xb3, 0x97, 0xda, 0x35, 0x4f, 0xf8, 0x52, 0x8c, 0x17, + 0x35, 0x00, 0x0c, 0xd3, 0xa0, 0x5a, 0xb7, 0xaf, 0x1b, 0x66, 0x2d, 0xcd, 0x25, 0x5f, 0x8f, 0x97, + 0x34, 0x68, 0x93, 0x31, 0xb6, 0x13, 0xb8, 0x60, 0x78, 0x13, 0xb6, 0xdd, 0x2f, 0x46, 0xc4, 0xb9, + 0xa8, 0x65, 0x66, 0x6f, 0xf7, 0x27, 0x8c, 0x89, 0x6d, 0x97, 0x73, 0xa3, 0xef, 0x41, 0xbe, 0xdb, + 0x27, 0xdd, 0x47, 0x1a, 0x3d, 0xaf, 0xe5, 0xb8, 0xe4, 0x5a, 0x9c, 0x64, 0x93, 0xf1, 0x75, 0xce, + 0xdb, 0x09, 0x9c, 0xeb, 0x8a, 0x21, 0xba, 0x0d, 0xd9, 0xae, 0x35, 0x1c, 0x1a, 0xb4, 0x06, 0x5c, + 0x76, 0x35, 0x56, 0x96, 0x73, 0xb5, 0x13, 0x58, 0xf2, 0xa3, 0x7d, 0xa8, 0x0c, 0x0c, 0x97, 0x6a, + 0xae, 0xa9, 0xdb, 0x6e, 0xdf, 0xa2, 0x6e, 0xad, 0xc8, 0x35, 0xbc, 0x19, 0xa7, 0x61, 0xcf, 0x70, + 0xe9, 0x91, 0xc7, 0xdc, 0x4e, 0xe0, 0xf2, 0x20, 0x4c, 0x60, 0xfa, 0xac, 0x93, 0x13, 0xe2, 0xf8, + 0x0a, 0x6b, 0xa5, 0xd9, 0xfa, 0x0e, 0x18, 0xb7, 0x27, 0xcf, 0xf4, 0x59, 0x61, 0x02, 0xfa, 0x19, + 0x5c, 0x19, 0x58, 0x7a, 0xcf, 0x57, 0xa7, 0x75, 0xfb, 0x23, 0xf3, 0x51, 0xad, 0xcc, 0x95, 0xbe, + 0x1d, 0xbb, 0x49, 0x4b, 0xef, 0x79, 0x2a, 0x9a, 0x4c, 0xa0, 0x9d, 0xc0, 0xcb, 0x83, 0x71, 0x22, + 0x7a, 0x08, 0x2b, 0xba, 0x6d, 0x0f, 0x2e, 0xc6, 0xb5, 0x57, 0xb8, 0xf6, 0xeb, 0x71, 0xda, 0x77, + 0x98, 0xcc, 0xb8, 0x7a, 0xa4, 0x4f, 0x50, 0x99, 0x31, 0x4e, 0x0c, 0x53, 0x1f, 0x18, 0x4f, 0x88, + 0x76, 0x3c, 0xb0, 0xba, 0x8f, 0x6a, 0x4b, 0xb3, 0x8d, 0x71, 0x57, 0x72, 0x37, 0x18, 0x33, 0x33, + 0xc6, 0x49, 0x98, 0xd0, 0xc8, 0x41, 0xe6, 0x4c, 0x1f, 0x8c, 0x88, 0xfa, 0x2d, 0x28, 0x86, 0x5c, + 0x05, 0xd5, 0x20, 0x37, 0x24, 0xae, 0xab, 0x9f, 0x12, 0xee, 0x59, 0x05, 0xec, 0x4d, 0xd5, 0x0a, + 0x94, 0xc2, 0xee, 0xa1, 0x3e, 0x53, 0x7c, 0x49, 0x76, 0xf3, 0x99, 0xe4, 0x19, 0x71, 0x5c, 0xc3, + 0x32, 0x3d, 0x49, 0x39, 0x45, 0x6f, 0x40, 0x99, 0x6f, 0x59, 0xf3, 0xbe, 0x33, 0xf7, 0x4b, 0xe3, + 0x12, 0x27, 0x3e, 0x90, 0x4c, 0x6b, 0x50, 0xb4, 0xb7, 0x6d, 0x9f, 0x25, 0xc5, 0x59, 0xc0, 0xde, + 0xb6, 0x3d, 0x86, 0xd7, 0xa1, 0xc4, 0xce, 0xe7, 0x73, 0xa4, 0xf9, 0x22, 0x45, 0x46, 0x93, 0x2c, + 0xea, 0x9f, 0x93, 0x50, 0x1d, 0x77, 0x29, 0x74, 0x1b, 0xd2, 0x2c, 0xba, 0xc8, 0x40, 0x51, 0xdf, + 0x14, 0xa1, 0x67, 0xd3, 0x0b, 0x3d, 0x9b, 0x1d, 0x2f, 0xf4, 0x34, 0xf2, 0x5f, 0x7d, 0xb3, 0x96, + 0x78, 0xf6, 0xb7, 0x35, 0x05, 0x73, 0x09, 0xf4, 0x0a, 0x73, 0x24, 0xdd, 0x30, 0x35, 0xa3, 0xc7, + 0xb7, 0x5c, 0x60, 0x5e, 0xa2, 0x1b, 0xe6, 0x6e, 0x0f, 0xed, 0x41, 0xb5, 0x6b, 0x99, 0x2e, 0x31, + 0xdd, 0x91, 0xab, 0x89, 0xd0, 0x26, 0xc3, 0x43, 0xc4, 0xc9, 0x45, 0xc0, 0x6c, 0x7a, 0x9c, 0x87, + 0x9c, 0x11, 0x2f, 0x75, 0xa3, 0x04, 0x74, 0x17, 0xe0, 0x4c, 0x1f, 0x18, 0x3d, 0x9d, 0x5a, 0x8e, + 0x5b, 0x4b, 0xaf, 0xa7, 0x36, 0x8a, 0xdb, 0xeb, 0x13, 0x3f, 0xf6, 0x81, 0xc7, 0x72, 0xdf, 0xee, + 0xe9, 0x94, 0x34, 0xd2, 0x6c, 0xbb, 0x38, 0x24, 0x89, 0xde, 0x82, 0x25, 0xdd, 0xb6, 0x35, 0x97, + 0xea, 0x94, 0x68, 0xc7, 0x17, 0x94, 0xb8, 0x3c, 0x74, 0x94, 0x70, 0x59, 0xb7, 0xed, 0x23, 0x46, + 0x6d, 0x30, 0x22, 0x7a, 0x13, 0x2a, 0x2c, 0xca, 0x18, 0xfa, 0x40, 0xeb, 0x13, 0xe3, 0xb4, 0x4f, + 0x6b, 0xd9, 0x75, 0x65, 0x23, 0x85, 0xcb, 0x92, 0xda, 0xe6, 0x44, 0xb5, 0xe7, 0xff, 0x71, 0x1e, + 0x61, 0x10, 0x82, 0x74, 0x4f, 0xa7, 0x3a, 0xb7, 0x64, 0x09, 0xf3, 0x31, 0xa3, 0xd9, 0x3a, 0xed, + 0x4b, 0xfb, 0xf0, 0x31, 0xba, 0x0a, 0x59, 0xa9, 0x36, 0xc5, 0xd5, 0xca, 0x19, 0x5a, 0x81, 0x8c, + 0xed, 0x58, 0x67, 0x84, 0xff, 0xba, 0x3c, 0x16, 0x13, 0x15, 0x43, 0x25, 0x1a, 0x8d, 0x50, 0x05, + 0x92, 0xf4, 0x5c, 0xae, 0x92, 0xa4, 0xe7, 0xe8, 0xdb, 0x90, 0x66, 0x86, 0xe4, 0x6b, 0x54, 0xa6, + 0xc4, 0x5f, 0x29, 0xd7, 0xb9, 0xb0, 0x09, 0xe6, 0x9c, 0xea, 0x12, 0x94, 0x23, 0x51, 0x4a, 0xbd, + 0x0a, 0x2b, 0xd3, 0x82, 0x8e, 0xda, 0xf7, 0xe9, 0x91, 0xe0, 0x81, 0x6e, 0x42, 0xde, 0x8f, 0x3a, + 0xe2, 0xe2, 0xbc, 0x32, 0xb1, 0xac, 0xc7, 0x8c, 0x7d, 0x56, 0x76, 0x63, 0xd8, 0x0f, 0xe8, 0xeb, + 0x32, 0xc7, 0x94, 0x70, 0x4e, 0xb7, 0xed, 0xb6, 0xee, 0xf6, 0xd5, 0xcf, 0xa0, 0x16, 0x17, 0x51, + 0x42, 0x06, 0x53, 0xf8, 0xb5, 0xf7, 0x0c, 0x76, 0x15, 0xb2, 0x27, 0x96, 0x33, 0xd4, 0x29, 0x57, + 0x56, 0xc6, 0x72, 0xc6, 0x0c, 0x29, 0xa2, 0x4b, 0x8a, 0x93, 0xc5, 0x44, 0xd5, 0xe0, 0x95, 0xd8, + 0xa8, 0xc2, 0x44, 0x0c, 0xb3, 0x47, 0x84, 0x59, 0xcb, 0x58, 0x4c, 0x02, 0x45, 0x62, 0xb3, 0x62, + 0xc2, 0x96, 0x75, 0xf9, 0x59, 0xb9, 0xfe, 0x02, 0x96, 0x33, 0xf5, 0x37, 0x49, 0xdf, 0x5a, 0x91, + 0xe8, 0x82, 0xaa, 0x90, 0xa2, 0xe7, 0x6e, 0x4d, 0x59, 0x4f, 0x6d, 0x94, 0x30, 0x1b, 0xb2, 0x6b, + 0x11, 0x32, 0x02, 0x1f, 0xa3, 0x5b, 0xec, 0x94, 0xba, 0xa7, 0xb6, 0xb8, 0x5d, 0x9b, 0xf4, 0x94, + 0x36, 0xff, 0x2e, 0x6f, 0xb6, 0xe4, 0x46, 0x07, 0x50, 0x1d, 0xe8, 0x2e, 0xd5, 0x44, 0x9a, 0xd1, + 0x78, 0x2a, 0x4e, 0xc7, 0xe4, 0xb5, 0x3d, 0xdd, 0xfb, 0xe5, 0x2c, 0x26, 0x49, 0x45, 0x95, 0x41, + 0x84, 0x8a, 0x30, 0xac, 0x1c, 0x5f, 0x3c, 0xd1, 0x4d, 0x6a, 0x98, 0x44, 0x0b, 0x39, 0x5e, 0x86, + 0x3b, 0xde, 0xe4, 0x8f, 0x6e, 0x9d, 0x19, 0x3d, 0x62, 0x76, 0x3d, 0x8f, 0xbb, 0xe2, 0x0b, 0xfb, + 0x1e, 0xe9, 0xaa, 0xbf, 0xcd, 0x41, 0x1e, 0x13, 0xd7, 0x66, 0x9e, 0x8d, 0x1a, 0x50, 0x20, 0xe7, + 0x5d, 0x62, 0x53, 0x2f, 0x18, 0x16, 0xb7, 0xd5, 0x29, 0x71, 0x5a, 0x70, 0xb7, 0x3c, 0x4e, 0x96, + 0xfc, 0x7d, 0x31, 0x74, 0x43, 0xe2, 0x9b, 0x78, 0xa8, 0x22, 0xc5, 0xc3, 0x00, 0xe7, 0x96, 0x07, + 0x70, 0x52, 0xb1, 0xb9, 0x5b, 0x48, 0x8d, 0x21, 0x9c, 0x1b, 0x12, 0xe1, 0xa4, 0xe7, 0x2c, 0x16, + 0x81, 0x38, 0xcd, 0x08, 0xc4, 0xc9, 0xcc, 0x39, 0x66, 0x0c, 0xc6, 0xb9, 0xe5, 0x61, 0x9c, 0xec, + 0x9c, 0x1d, 0x8f, 0x81, 0x9c, 0xef, 0x87, 0x40, 0x4e, 0x9e, 0x8b, 0xae, 0xc7, 0x8a, 0x4e, 0x41, + 0x39, 0x1f, 0xf8, 0x28, 0xa7, 0x18, 0x8b, 0x90, 0xa4, 0xf0, 0x38, 0xcc, 0x39, 0x98, 0x80, 0x39, + 0x02, 0x96, 0xbc, 0x15, 0xab, 0x62, 0x0e, 0xce, 0x39, 0x98, 0xc0, 0x39, 0xe5, 0x39, 0x0a, 0xe7, + 0x00, 0x9d, 0x9f, 0x4f, 0x07, 0x3a, 0xf1, 0x50, 0x44, 0x6e, 0x73, 0x31, 0xa4, 0xa3, 0xc5, 0x20, + 0x1d, 0x81, 0x47, 0xde, 0x89, 0x55, 0xbf, 0x30, 0xd4, 0x39, 0x98, 0x80, 0x3a, 0xd5, 0x39, 0xf6, + 0x58, 0x14, 0xeb, 0xbc, 0x0d, 0xcb, 0x13, 0x5e, 0xc7, 0x62, 0x20, 0x71, 0x1c, 0xcb, 0x91, 0xa8, + 0x45, 0x4c, 0xd4, 0x0d, 0x96, 0xfb, 0x02, 0x0f, 0x9b, 0x81, 0x8b, 0x78, 0xae, 0x09, 0x79, 0x95, + 0xfa, 0x7b, 0x25, 0x90, 0xe5, 0xf1, 0x26, 0x9c, 0x37, 0x0b, 0x32, 0x6f, 0x86, 0xd0, 0x52, 0x32, + 0x8a, 0x96, 0xd6, 0xa0, 0xc8, 0x72, 0xc8, 0x18, 0x10, 0xd2, 0x6d, 0x1f, 0x08, 0x5d, 0x87, 0x65, + 0x1e, 0x0f, 0x05, 0xa6, 0x92, 0x89, 0x23, 0xcd, 0x33, 0xed, 0x12, 0xfb, 0x20, 0xac, 0x20, 0x32, + 0xc8, 0x7b, 0x70, 0x25, 0xc4, 0xeb, 0xe7, 0x26, 0x81, 0x0a, 0xaa, 0x3e, 0xf7, 0x8e, 0x4c, 0x52, + 0x7f, 0x54, 0x02, 0x0b, 0x05, 0x08, 0x6a, 0x1a, 0xd8, 0x51, 0xfe, 0x47, 0x60, 0x27, 0xf9, 0x1f, + 0x83, 0x9d, 0x70, 0xae, 0x4d, 0x45, 0x73, 0xed, 0x3f, 0x95, 0xe0, 0x9f, 0xf8, 0xd0, 0xa5, 0x6b, + 0xf5, 0x88, 0xcc, 0x7e, 0x7c, 0xcc, 0xb2, 0xd6, 0xc0, 0x3a, 0x95, 0x39, 0x8e, 0x0d, 0x19, 0x97, + 0x1f, 0x06, 0x0b, 0x32, 0xca, 0xf9, 0x89, 0x33, 0xc3, 0x2d, 0x2c, 0x13, 0x67, 0x15, 0x52, 0x8f, + 0x88, 0x08, 0x5a, 0x25, 0xcc, 0x86, 0x8c, 0x8f, 0x5f, 0x32, 0x5e, 0x72, 0x95, 0xb0, 0x98, 0xa0, + 0xdb, 0x50, 0xe0, 0x25, 0xb5, 0x66, 0xd9, 0xae, 0x8c, 0x53, 0xaf, 0x86, 0xcf, 0x2a, 0x2a, 0xe7, + 0xcd, 0x43, 0xc6, 0x73, 0x60, 0xbb, 0x38, 0x6f, 0xcb, 0x51, 0x08, 0x13, 0x14, 0x22, 0x20, 0xea, + 0x1a, 0x14, 0xd8, 0xee, 0x5d, 0x5b, 0xef, 0x12, 0x5e, 0xa2, 0x15, 0x70, 0x40, 0x50, 0x7f, 0x97, + 0x84, 0xa5, 0xb1, 0xb0, 0x37, 0xf5, 0xec, 0xde, 0x95, 0x4c, 0x86, 0xa0, 0xdc, 0x62, 0xf6, 0x58, + 0x05, 0x38, 0xd5, 0x5d, 0xed, 0xb1, 0x6e, 0x52, 0xd2, 0x93, 0x46, 0x09, 0x51, 0x50, 0x1d, 0xf2, + 0x6c, 0x36, 0x72, 0x49, 0x4f, 0xa2, 0x4a, 0x7f, 0x8e, 0xda, 0x90, 0x25, 0x67, 0xc4, 0xa4, 0x6e, + 0x2d, 0xc7, 0x7f, 0xfb, 0xd5, 0x29, 0xa9, 0x96, 0x98, 0xb4, 0x51, 0x63, 0x3f, 0xfb, 0x1f, 0xdf, + 0xac, 0x55, 0x05, 0xf7, 0xbb, 0xd6, 0xd0, 0xa0, 0x64, 0x68, 0xd3, 0x0b, 0x2c, 0xe5, 0xa3, 0x56, + 0xc8, 0x8f, 0x59, 0x21, 0x04, 0x60, 0x0a, 0x61, 0x00, 0xc3, 0xf6, 0x66, 0x3b, 0x86, 0xe5, 0x18, + 0xf4, 0x82, 0x9b, 0x2e, 0x85, 0xfd, 0xb9, 0xfa, 0xcb, 0x64, 0x70, 0xf5, 0xef, 0x90, 0x81, 0x71, + 0x46, 0x9c, 0xff, 0x47, 0xdb, 0xa9, 0xbb, 0x0c, 0x8e, 0x87, 0x53, 0xdf, 0xd4, 0xf3, 0xbe, 0x01, + 0x65, 0x87, 0x50, 0x56, 0x1b, 0x45, 0x90, 0x7e, 0x49, 0x10, 0x65, 0xfd, 0x70, 0x08, 0x2f, 0x4d, + 0x4d, 0x81, 0xe8, 0xbb, 0x50, 0x08, 0xb2, 0xa7, 0x12, 0x83, 0xba, 0x7c, 0x78, 0x1d, 0xf0, 0xaa, + 0x7f, 0x50, 0x02, 0x95, 0x51, 0xc0, 0xde, 0x82, 0xac, 0x43, 0xdc, 0xd1, 0x40, 0x40, 0xe8, 0xca, + 0xf6, 0x7b, 0x8b, 0x25, 0x4f, 0x46, 0x1d, 0x0d, 0x28, 0x96, 0xc2, 0xea, 0x43, 0xc8, 0x0a, 0x0a, + 0x2a, 0x42, 0xee, 0xfe, 0xfe, 0xbd, 0xfd, 0x83, 0x8f, 0xf7, 0xab, 0x09, 0x04, 0x90, 0xdd, 0x69, + 0x36, 0x5b, 0x87, 0x9d, 0xaa, 0x82, 0x0a, 0x90, 0xd9, 0x69, 0x1c, 0xe0, 0x4e, 0x35, 0xc9, 0xc8, + 0xb8, 0xf5, 0x51, 0xab, 0xd9, 0xa9, 0xa6, 0xd0, 0x32, 0x94, 0xc5, 0x58, 0xbb, 0x7b, 0x80, 0x7f, + 0xbc, 0xd3, 0xa9, 0xa6, 0x43, 0xa4, 0xa3, 0xd6, 0xfe, 0x9d, 0x16, 0xae, 0x66, 0xd4, 0xf7, 0x19, + 0x46, 0x8f, 0x49, 0xb7, 0x01, 0x1a, 0x57, 0x42, 0x68, 0x5c, 0xfd, 0x75, 0x12, 0xea, 0xf1, 0x39, + 0x14, 0x7d, 0x34, 0x76, 0xf0, 0xed, 0x4b, 0x24, 0xe0, 0xb1, 0xd3, 0xb3, 0xba, 0xd0, 0x21, 0x27, + 0x84, 0x76, 0xfb, 0x22, 0xa7, 0x8b, 0xf0, 0x5c, 0xc6, 0x65, 0x49, 0xe5, 0x42, 0xae, 0x60, 0xfb, + 0x9c, 0x74, 0xa9, 0x26, 0xfc, 0x8a, 0x95, 0xbe, 0xa9, 0x8d, 0x02, 0x63, 0x63, 0xd4, 0x23, 0x41, + 0x54, 0x3f, 0xbb, 0x94, 0x2d, 0x0b, 0x90, 0xc1, 0xad, 0x0e, 0xfe, 0xa4, 0x9a, 0x42, 0x08, 0x2a, + 0x7c, 0xa8, 0x1d, 0xed, 0xef, 0x1c, 0x1e, 0xb5, 0x0f, 0x98, 0x2d, 0xaf, 0xc0, 0x92, 0x67, 0x4b, + 0x8f, 0x98, 0x51, 0xff, 0x94, 0x0c, 0xae, 0x43, 0xb4, 0x22, 0xf9, 0x4e, 0x50, 0x91, 0xcc, 0x02, + 0xa5, 0xbe, 0xa3, 0x8b, 0xaa, 0xe5, 0x08, 0x96, 0xfd, 0x04, 0xa3, 0x8d, 0x78, 0xe2, 0xb9, 0x6c, + 0x86, 0xaa, 0x9e, 0x45, 0xc9, 0x2e, 0xfa, 0x04, 0x5e, 0x1e, 0xcb, 0x9e, 0xbe, 0xea, 0x85, 0x3b, + 0x06, 0x2f, 0x45, 0x93, 0xa8, 0xa7, 0x3a, 0x88, 0x09, 0xe9, 0xff, 0x2e, 0x26, 0xa8, 0x9f, 0x42, + 0x25, 0x5a, 0x3a, 0xb1, 0xcb, 0xe8, 0x58, 0x23, 0xb3, 0xc7, 0xaf, 0x55, 0x06, 0x8b, 0x09, 0xba, + 0x09, 0x99, 0x33, 0x2b, 0xb0, 0xca, 0xa4, 0xd7, 0x3e, 0xb0, 0x28, 0x09, 0x95, 0x5e, 0x82, 0x5b, + 0x7d, 0x02, 0x19, 0xbe, 0x13, 0x16, 0x4b, 0x78, 0x29, 0x2f, 0xa1, 0x10, 0x1b, 0xa3, 0x4f, 0x01, + 0x74, 0x4a, 0x1d, 0xe3, 0x78, 0x14, 0x28, 0x5e, 0x9b, 0x7e, 0x92, 0x1d, 0x8f, 0xaf, 0x71, 0x4d, + 0x1e, 0x69, 0x25, 0x10, 0x0d, 0x1d, 0x2b, 0xa4, 0x50, 0xdd, 0x87, 0x4a, 0x54, 0xd6, 0x4b, 0xde, + 0x62, 0x0f, 0xd1, 0xe4, 0x2d, 0xb0, 0x98, 0x4c, 0xde, 0x7e, 0xea, 0x4f, 0x89, 0x7e, 0x05, 0x9f, + 0xa8, 0x4f, 0x15, 0xc8, 0x77, 0xce, 0xe5, 0xcd, 0x8e, 0x56, 0xee, 0x91, 0x56, 0x87, 0x10, 0x4d, + 0x86, 0xcb, 0x6d, 0xd1, 0xd8, 0x48, 0xf9, 0x8d, 0x8d, 0x1f, 0xfa, 0xbe, 0x9b, 0x9e, 0x53, 0x3d, + 0xf9, 0x17, 0xd5, 0xab, 0x8d, 0x65, 0xbc, 0xfa, 0x10, 0x0a, 0xfe, 0x3d, 0x64, 0x98, 0x52, 0xef, + 0xf5, 0x1c, 0xe2, 0xba, 0x32, 0x82, 0x78, 0x53, 0xde, 0x79, 0xb1, 0x1e, 0xcb, 0xca, 0x3b, 0x85, + 0xc5, 0x44, 0xed, 0xc1, 0xd2, 0xd8, 0x25, 0x46, 0x1f, 0x42, 0xce, 0x1e, 0x1d, 0x6b, 0x9e, 0x79, + 0xc6, 0xba, 0xdd, 0x1e, 0x5a, 0x19, 0x1d, 0x0f, 0x8c, 0xee, 0x3d, 0x72, 0xe1, 0x6d, 0xc6, 0x1e, + 0x1d, 0xdf, 0x13, 0x56, 0x14, 0xab, 0x24, 0xc3, 0xab, 0x9c, 0x41, 0xde, 0xbb, 0x14, 0xe8, 0x07, + 0x50, 0xf0, 0xfd, 0xc3, 0x6f, 0xc8, 0xc5, 0x3a, 0x96, 0x54, 0x1f, 0x88, 0x30, 0xe8, 0xeb, 0x1a, + 0xa7, 0x26, 0xe9, 0x69, 0x01, 0xaa, 0xe5, 0xab, 0xe5, 0xf1, 0x92, 0xf8, 0xb0, 0xe7, 0x41, 0x5a, + 0xf5, 0x5f, 0x0a, 0xe4, 0xbd, 0xca, 0x1d, 0xbd, 0x1f, 0xba, 0x77, 0x95, 0x29, 0x05, 0xae, 0xc7, + 0x18, 0xf4, 0x90, 0xa2, 0x7b, 0x4d, 0x5e, 0x7e, 0xaf, 0x71, 0x5d, 0x30, 0xaf, 0x1f, 0x99, 0xbe, + 0x74, 0x3f, 0xf2, 0x5d, 0x40, 0xd4, 0xa2, 0xfa, 0x40, 0x3b, 0xb3, 0xa8, 0x61, 0x9e, 0x6a, 0xc2, + 0xd8, 0x02, 0x46, 0x54, 0xf9, 0x97, 0x07, 0xfc, 0xc3, 0x21, 0xb7, 0xfb, 0x2f, 0x14, 0xc8, 0xfb, + 0xe9, 0xf1, 0xb2, 0x1d, 0xa6, 0xab, 0x90, 0x95, 0x19, 0x40, 0xb4, 0x98, 0xe4, 0xcc, 0xef, 0xeb, + 0xa4, 0x43, 0x7d, 0x9d, 0x3a, 0xe4, 0x87, 0x84, 0xea, 0x1c, 0x23, 0x88, 0xc2, 0xc2, 0x9f, 0x5f, + 0xff, 0x00, 0x8a, 0xa1, 0xee, 0x1c, 0xf3, 0xbc, 0xfd, 0xd6, 0xc7, 0xd5, 0x44, 0x3d, 0xf7, 0xf4, + 0xcb, 0xf5, 0xd4, 0x3e, 0x79, 0xcc, 0xee, 0x2c, 0x6e, 0x35, 0xdb, 0xad, 0xe6, 0xbd, 0xaa, 0x52, + 0x2f, 0x3e, 0xfd, 0x72, 0x3d, 0x87, 0x09, 0x2f, 0xd2, 0xaf, 0xb7, 0xa1, 0x14, 0xfe, 0x2b, 0xd1, + 0x24, 0x82, 0xa0, 0x72, 0xe7, 0xfe, 0xe1, 0xde, 0x6e, 0x73, 0xa7, 0xd3, 0xd2, 0x1e, 0x1c, 0x74, + 0x5a, 0x55, 0x05, 0xbd, 0x0c, 0x57, 0xf6, 0x76, 0x7f, 0xd4, 0xee, 0x68, 0xcd, 0xbd, 0xdd, 0xd6, + 0x7e, 0x47, 0xdb, 0xe9, 0x74, 0x76, 0x9a, 0xf7, 0xaa, 0xc9, 0xed, 0x5f, 0xe5, 0x61, 0x69, 0xa7, + 0xd1, 0xdc, 0x65, 0x09, 0xd0, 0xe8, 0xea, 0xbc, 0xea, 0x6b, 0x42, 0x9a, 0xd7, 0x75, 0x33, 0x1f, + 0x8e, 0xea, 0xb3, 0xdb, 0x2e, 0xe8, 0x2e, 0x64, 0x78, 0xc9, 0x87, 0x66, 0xbf, 0x24, 0xd5, 0xe7, + 0xf4, 0x61, 0xd8, 0x66, 0xb8, 0x7b, 0xcc, 0x7c, 0x5a, 0xaa, 0xcf, 0x6e, 0xcb, 0xa0, 0x3d, 0xc8, + 0x79, 0x88, 0x7f, 0xde, 0x7b, 0x4f, 0x7d, 0x6e, 0xaf, 0x84, 0x1d, 0x4d, 0x54, 0x4e, 0xb3, 0x5f, + 0x9d, 0xea, 0x73, 0x1a, 0x36, 0x68, 0x17, 0xb2, 0x12, 0x46, 0xce, 0x79, 0x48, 0xaa, 0xcf, 0x6b, + 0xc1, 0x20, 0x0c, 0x85, 0xa0, 0x26, 0x9d, 0xff, 0x96, 0x56, 0x5f, 0xa0, 0x17, 0x85, 0x1e, 0x42, + 0x39, 0x0a, 0x4d, 0x17, 0x7b, 0xac, 0xaa, 0x2f, 0xd8, 0xec, 0x61, 0xfa, 0xa3, 0x38, 0x75, 0xb1, + 0xc7, 0xab, 0xfa, 0x82, 0xbd, 0x1f, 0xf4, 0x39, 0x2c, 0x4f, 0xe2, 0xc8, 0xc5, 0xdf, 0xb2, 0xea, + 0x97, 0xe8, 0x06, 0xa1, 0x21, 0xa0, 0x29, 0xf8, 0xf3, 0x12, 0x4f, 0x5b, 0xf5, 0xcb, 0x34, 0x87, + 0x98, 0xe9, 0xa2, 0x98, 0x6e, 0xb1, 0xa7, 0xae, 0xfa, 0x82, 0x6d, 0xa2, 0x46, 0xeb, 0xab, 0xe7, + 0xab, 0xca, 0xd7, 0xcf, 0x57, 0x95, 0xbf, 0x3f, 0x5f, 0x55, 0x9e, 0xbd, 0x58, 0x4d, 0x7c, 0xfd, + 0x62, 0x35, 0xf1, 0xd7, 0x17, 0xab, 0x89, 0x9f, 0xbe, 0x73, 0x6a, 0xd0, 0xfe, 0xe8, 0x78, 0xb3, + 0x6b, 0x0d, 0xb7, 0xc2, 0xef, 0xd8, 0xd3, 0xde, 0xd6, 0x8f, 0xb3, 0x3c, 0x70, 0xdf, 0xf8, 0x77, + 0x00, 0x00, 0x00, 0xff, 0xff, 0x74, 0xa4, 0x84, 0x0b, 0x7b, 0x1f, 0x00, 0x00, } // Reference imports to suppress errors if they are not otherwise used. @@ -3916,27 +3563,6 @@ func (m *Request_Query) MarshalToSizedBuffer(dAtA []byte) (int, error) { } return len(dAtA) - i, nil } -func (m *Request_BeginBlock) MarshalTo(dAtA []byte) (int, error) { - size := m.Size() - return m.MarshalToSizedBuffer(dAtA[:size]) -} - -func (m *Request_BeginBlock) MarshalToSizedBuffer(dAtA []byte) (int, error) { - i := len(dAtA) - if m.BeginBlock != nil { - { - size, err := m.BeginBlock.MarshalToSizedBuffer(dAtA[:i]) - if err != nil { - return 0, err - } - i -= size - i = encodeVarintTypes(dAtA, i, uint64(size)) - } - i-- - dAtA[i] = 0x32 - } - return len(dAtA) - i, nil -} func (m *Request_CheckTx) MarshalTo(dAtA []byte) (int, error) { size := m.Size() return m.MarshalToSizedBuffer(dAtA[:size]) @@ -3958,48 +3584,6 @@ func (m *Request_CheckTx) MarshalToSizedBuffer(dAtA []byte) (int, error) { } return len(dAtA) - i, nil } -func (m *Request_DeliverTx) MarshalTo(dAtA []byte) (int, error) { - size := m.Size() - return m.MarshalToSizedBuffer(dAtA[:size]) -} - -func (m *Request_DeliverTx) MarshalToSizedBuffer(dAtA []byte) (int, error) { - i := len(dAtA) - if m.DeliverTx != nil { - { - size, err := m.DeliverTx.MarshalToSizedBuffer(dAtA[:i]) - if err != nil { - return 0, err - } - i -= size - i = encodeVarintTypes(dAtA, i, uint64(size)) - } - i-- - dAtA[i] = 0x42 - } - return len(dAtA) - i, nil -} -func (m *Request_EndBlock) MarshalTo(dAtA []byte) (int, error) { - size := m.Size() - return m.MarshalToSizedBuffer(dAtA[:size]) -} - -func (m *Request_EndBlock) MarshalToSizedBuffer(dAtA []byte) (int, error) { - i := len(dAtA) - if m.EndBlock != nil { - { - size, err := m.EndBlock.MarshalToSizedBuffer(dAtA[:i]) - if err != nil { - return 0, err - } - i -= size - i = encodeVarintTypes(dAtA, i, uint64(size)) - } - i-- - dAtA[i] = 0x4a - } - return len(dAtA) - i, nil -} func (m *Request_Commit) MarshalTo(dAtA []byte) (int, error) { size := m.Size() return m.MarshalToSizedBuffer(dAtA[:size]) @@ -4291,12 +3875,12 @@ func (m *RequestInitChain) MarshalToSizedBuffer(dAtA []byte) (int, error) { i-- dAtA[i] = 0x12 } - n17, err17 := github_com_gogo_protobuf_types.StdTimeMarshalTo(m.Time, dAtA[i-github_com_gogo_protobuf_types.SizeOfStdTime(m.Time):]) - if err17 != nil { - return 0, err17 + n14, err14 := github_com_gogo_protobuf_types.StdTimeMarshalTo(m.Time, dAtA[i-github_com_gogo_protobuf_types.SizeOfStdTime(m.Time):]) + if err14 != nil { + return 0, err14 } - i -= n17 - i = encodeVarintTypes(dAtA, i, uint64(n17)) + i -= n14 + i = encodeVarintTypes(dAtA, i, uint64(n14)) i-- dAtA[i] = 0xa return len(dAtA) - i, nil @@ -4354,70 +3938,6 @@ func (m *RequestQuery) MarshalToSizedBuffer(dAtA []byte) (int, error) { return len(dAtA) - i, nil } -func (m *RequestBeginBlock) 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 *RequestBeginBlock) MarshalTo(dAtA []byte) (int, error) { - size := m.Size() - return m.MarshalToSizedBuffer(dAtA[:size]) -} - -func (m *RequestBeginBlock) 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] = 0x22 - } - } - { - size, err := m.LastCommitInfo.MarshalToSizedBuffer(dAtA[:i]) - if err != nil { - return 0, err - } - i -= size - i = encodeVarintTypes(dAtA, i, uint64(size)) - } - i-- - dAtA[i] = 0x1a - { - size, err := m.Header.MarshalToSizedBuffer(dAtA[:i]) - if err != nil { - return 0, err - } - i -= size - i = encodeVarintTypes(dAtA, i, uint64(size)) - } - i-- - dAtA[i] = 0x12 - 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] = 0xa - } - return len(dAtA) - i, nil -} - func (m *RequestCheckTx) Marshal() (dAtA []byte, err error) { size := m.Size() dAtA = make([]byte, size) @@ -4453,64 +3973,6 @@ func (m *RequestCheckTx) MarshalToSizedBuffer(dAtA []byte) (int, error) { return len(dAtA) - i, nil } -func (m *RequestDeliverTx) 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 *RequestDeliverTx) MarshalTo(dAtA []byte) (int, error) { - size := m.Size() - return m.MarshalToSizedBuffer(dAtA[:size]) -} - -func (m *RequestDeliverTx) MarshalToSizedBuffer(dAtA []byte) (int, error) { - i := len(dAtA) - _ = i - var l int - _ = l - if len(m.Tx) > 0 { - i -= len(m.Tx) - copy(dAtA[i:], m.Tx) - i = encodeVarintTypes(dAtA, i, uint64(len(m.Tx))) - i-- - dAtA[i] = 0xa - } - return len(dAtA) - i, nil -} - -func (m *RequestEndBlock) 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 *RequestEndBlock) MarshalTo(dAtA []byte) (int, error) { - size := m.Size() - return m.MarshalToSizedBuffer(dAtA[:size]) -} - -func (m *RequestEndBlock) MarshalToSizedBuffer(dAtA []byte) (int, error) { - i := len(dAtA) - _ = i - var l int - _ = l - if m.Height != 0 { - i = encodeVarintTypes(dAtA, i, uint64(m.Height)) - i-- - dAtA[i] = 0x8 - } - return len(dAtA) - i, nil -} - func (m *RequestCommit) Marshal() (dAtA []byte, err error) { size := m.Size() dAtA = make([]byte, size) @@ -4910,27 +4372,6 @@ func (m *Response_Query) MarshalToSizedBuffer(dAtA []byte) (int, error) { } return len(dAtA) - i, nil } -func (m *Response_BeginBlock) MarshalTo(dAtA []byte) (int, error) { - size := m.Size() - return m.MarshalToSizedBuffer(dAtA[:size]) -} - -func (m *Response_BeginBlock) MarshalToSizedBuffer(dAtA []byte) (int, error) { - i := len(dAtA) - if m.BeginBlock != nil { - { - size, err := m.BeginBlock.MarshalToSizedBuffer(dAtA[:i]) - if err != nil { - return 0, err - } - i -= size - i = encodeVarintTypes(dAtA, i, uint64(size)) - } - i-- - dAtA[i] = 0x3a - } - return len(dAtA) - i, nil -} func (m *Response_CheckTx) MarshalTo(dAtA []byte) (int, error) { size := m.Size() return m.MarshalToSizedBuffer(dAtA[:size]) @@ -4952,48 +4393,6 @@ func (m *Response_CheckTx) MarshalToSizedBuffer(dAtA []byte) (int, error) { } return len(dAtA) - i, nil } -func (m *Response_DeliverTx) MarshalTo(dAtA []byte) (int, error) { - size := m.Size() - return m.MarshalToSizedBuffer(dAtA[:size]) -} - -func (m *Response_DeliverTx) MarshalToSizedBuffer(dAtA []byte) (int, error) { - i := len(dAtA) - if m.DeliverTx != nil { - { - size, err := m.DeliverTx.MarshalToSizedBuffer(dAtA[:i]) - if err != nil { - return 0, err - } - i -= size - i = encodeVarintTypes(dAtA, i, uint64(size)) - } - i-- - dAtA[i] = 0x4a - } - return len(dAtA) - i, nil -} -func (m *Response_EndBlock) MarshalTo(dAtA []byte) (int, error) { - size := m.Size() - return m.MarshalToSizedBuffer(dAtA[:size]) -} - -func (m *Response_EndBlock) MarshalToSizedBuffer(dAtA []byte) (int, error) { - i := len(dAtA) - if m.EndBlock != nil { - { - size, err := m.EndBlock.MarshalToSizedBuffer(dAtA[:i]) - if err != nil { - return 0, err - } - i -= size - i = encodeVarintTypes(dAtA, i, uint64(size)) - } - i-- - dAtA[i] = 0x52 - } - return len(dAtA) - i, nil -} func (m *Response_Commit) MarshalTo(dAtA []byte) (int, error) { size := m.Size() return m.MarshalToSizedBuffer(dAtA[:size]) @@ -5400,43 +4799,6 @@ func (m *ResponseQuery) MarshalToSizedBuffer(dAtA []byte) (int, error) { return len(dAtA) - i, nil } -func (m *ResponseBeginBlock) 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 *ResponseBeginBlock) MarshalTo(dAtA []byte) (int, error) { - size := m.Size() - return m.MarshalToSizedBuffer(dAtA[:size]) -} - -func (m *ResponseBeginBlock) 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] = 0xa - } - } - return len(dAtA) - i, nil -} - func (m *ResponseCheckTx) Marshal() (dAtA []byte, err error) { size := m.Size() dAtA = make([]byte, size) @@ -5609,69 +4971,6 @@ func (m *ResponseDeliverTx) MarshalToSizedBuffer(dAtA []byte) (int, error) { return len(dAtA) - i, nil } -func (m *ResponseEndBlock) 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 *ResponseEndBlock) MarshalTo(dAtA []byte) (int, error) { - size := m.Size() - return m.MarshalToSizedBuffer(dAtA[:size]) -} - -func (m *ResponseEndBlock) 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] = 0x1a - } - } - 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] = 0x12 - } - 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] = 0xa - } - } - return len(dAtA) - i, nil -} - func (m *ResponseCommit) Marshal() (dAtA []byte, err error) { size := m.Size() dAtA = make([]byte, size) @@ -5832,20 +5131,20 @@ func (m *ResponseApplySnapshotChunk) MarshalToSizedBuffer(dAtA []byte) (int, err } } if len(m.RefetchChunks) > 0 { - dAtA43 := make([]byte, len(m.RefetchChunks)*10) - var j42 int + dAtA34 := make([]byte, len(m.RefetchChunks)*10) + var j33 int for _, num := range m.RefetchChunks { for num >= 1<<7 { - dAtA43[j42] = uint8(uint64(num)&0x7f | 0x80) + dAtA34[j33] = uint8(uint64(num)&0x7f | 0x80) num >>= 7 - j42++ + j33++ } - dAtA43[j42] = uint8(num) - j42++ + dAtA34[j33] = uint8(num) + j33++ } - i -= j42 - copy(dAtA[i:], dAtA43[:j42]) - i = encodeVarintTypes(dAtA, i, uint64(j42)) + i -= j33 + copy(dAtA[i:], dAtA34[:j33]) + i = encodeVarintTypes(dAtA, i, uint64(j33)) i-- dAtA[i] = 0x12 } @@ -6258,12 +5557,12 @@ func (m *Evidence) MarshalToSizedBuffer(dAtA []byte) (int, error) { i-- dAtA[i] = 0x28 } - n48, err48 := github_com_gogo_protobuf_types.StdTimeMarshalTo(m.Time, dAtA[i-github_com_gogo_protobuf_types.SizeOfStdTime(m.Time):]) - if err48 != nil { - return 0, err48 + n39, err39 := github_com_gogo_protobuf_types.StdTimeMarshalTo(m.Time, dAtA[i-github_com_gogo_protobuf_types.SizeOfStdTime(m.Time):]) + if err39 != nil { + return 0, err39 } - i -= n48 - i = encodeVarintTypes(dAtA, i, uint64(n48)) + i -= n39 + i = encodeVarintTypes(dAtA, i, uint64(n39)) i-- dAtA[i] = 0x22 if m.Height != 0 { @@ -6424,18 +5723,6 @@ func (m *Request_Query) Size() (n int) { } return n } -func (m *Request_BeginBlock) Size() (n int) { - if m == nil { - return 0 - } - var l int - _ = l - if m.BeginBlock != nil { - l = m.BeginBlock.Size() - n += 1 + l + sovTypes(uint64(l)) - } - return n -} func (m *Request_CheckTx) Size() (n int) { if m == nil { return 0 @@ -6448,30 +5735,6 @@ func (m *Request_CheckTx) Size() (n int) { } return n } -func (m *Request_DeliverTx) Size() (n int) { - if m == nil { - return 0 - } - var l int - _ = l - if m.DeliverTx != nil { - l = m.DeliverTx.Size() - n += 1 + l + sovTypes(uint64(l)) - } - return n -} -func (m *Request_EndBlock) Size() (n int) { - if m == nil { - return 0 - } - var l int - _ = l - if m.EndBlock != nil { - l = m.EndBlock.Size() - n += 1 + l + sovTypes(uint64(l)) - } - return n -} func (m *Request_Commit) Size() (n int) { if m == nil { return 0 @@ -6644,29 +5907,6 @@ func (m *RequestQuery) Size() (n int) { return n } -func (m *RequestBeginBlock) Size() (n int) { - if m == nil { - return 0 - } - var l int - _ = l - l = len(m.Hash) - if l > 0 { - n += 1 + l + sovTypes(uint64(l)) - } - 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 *RequestCheckTx) Size() (n int) { if m == nil { return 0 @@ -6683,31 +5923,6 @@ func (m *RequestCheckTx) Size() (n int) { return n } -func (m *RequestDeliverTx) Size() (n int) { - if m == nil { - return 0 - } - var l int - _ = l - l = len(m.Tx) - if l > 0 { - n += 1 + l + sovTypes(uint64(l)) - } - return n -} - -func (m *RequestEndBlock) Size() (n int) { - if m == nil { - return 0 - } - var l int - _ = l - if m.Height != 0 { - n += 1 + sovTypes(uint64(m.Height)) - } - return n -} - func (m *RequestCommit) Size() (n int) { if m == nil { return 0 @@ -6894,18 +6109,6 @@ func (m *Response_Query) Size() (n int) { } return n } -func (m *Response_BeginBlock) Size() (n int) { - if m == nil { - return 0 - } - var l int - _ = l - if m.BeginBlock != nil { - l = m.BeginBlock.Size() - n += 1 + l + sovTypes(uint64(l)) - } - return n -} func (m *Response_CheckTx) Size() (n int) { if m == nil { return 0 @@ -6918,30 +6121,6 @@ func (m *Response_CheckTx) Size() (n int) { } return n } -func (m *Response_DeliverTx) Size() (n int) { - if m == nil { - return 0 - } - var l int - _ = l - if m.DeliverTx != nil { - l = m.DeliverTx.Size() - n += 1 + l + sovTypes(uint64(l)) - } - return n -} -func (m *Response_EndBlock) Size() (n int) { - if m == nil { - return 0 - } - var l int - _ = l - if m.EndBlock != nil { - l = m.EndBlock.Size() - n += 1 + l + sovTypes(uint64(l)) - } - return n -} func (m *Response_Commit) Size() (n int) { if m == nil { return 0 @@ -7141,21 +6320,6 @@ func (m *ResponseQuery) Size() (n int) { return n } -func (m *ResponseBeginBlock) Size() (n int) { - if m == nil { - return 0 - } - var l int - _ = l - if len(m.Events) > 0 { - for _, e := range m.Events { - l = e.Size() - n += 1 + l + sovTypes(uint64(l)) - } - } - return n -} - func (m *ResponseCheckTx) Size() (n int) { if m == nil { return 0 @@ -7243,31 +6407,6 @@ func (m *ResponseDeliverTx) Size() (n int) { return n } -func (m *ResponseEndBlock) Size() (n int) { - if m == nil { - return 0 - } - var l int - _ = 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 *ResponseCommit) Size() (n int) { if m == nil { return 0 @@ -7760,41 +6899,6 @@ func (m *Request) Unmarshal(dAtA []byte) error { } m.Value = &Request_Query{v} iNdEx = postIndex - case 6: - if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field BeginBlock", 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 := &RequestBeginBlock{} - if err := v.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { - return err - } - m.Value = &Request_BeginBlock{v} - iNdEx = postIndex case 7: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field CheckTx", wireType) @@ -7830,76 +6934,6 @@ func (m *Request) Unmarshal(dAtA []byte) error { } m.Value = &Request_CheckTx{v} iNdEx = postIndex - case 8: - if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field DeliverTx", 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 := &RequestDeliverTx{} - if err := v.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { - return err - } - m.Value = &Request_DeliverTx{v} - iNdEx = postIndex - case 9: - if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field EndBlock", 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 := &RequestEndBlock{} - if err := v.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { - return err - } - m.Value = &Request_EndBlock{v} - iNdEx = postIndex case 10: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field Commit", wireType) @@ -8808,190 +7842,6 @@ func (m *RequestQuery) Unmarshal(dAtA []byte) error { } return nil } -func (m *RequestBeginBlock) 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: RequestBeginBlock: wiretype end group for non-group") - } - if fieldNum <= 0 { - return fmt.Errorf("proto: RequestBeginBlock: illegal tag %d (wire type %d)", fieldNum, wire) - } - switch fieldNum { - case 1: - 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 2: - 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 3: - 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 4: - 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 *RequestCheckTx) Unmarshal(dAtA []byte) error { l := len(dAtA) iNdEx := 0 @@ -9095,159 +7945,6 @@ func (m *RequestCheckTx) Unmarshal(dAtA []byte) error { } return nil } -func (m *RequestDeliverTx) 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: RequestDeliverTx: wiretype end group for non-group") - } - if fieldNum <= 0 { - return fmt.Errorf("proto: RequestDeliverTx: illegal tag %d (wire type %d)", fieldNum, wire) - } - switch fieldNum { - case 1: - if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field Tx", 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.Tx = append(m.Tx[:0], dAtA[iNdEx:postIndex]...) - if m.Tx == nil { - m.Tx = []byte{} - } - 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 *RequestEndBlock) 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: RequestEndBlock: wiretype end group for non-group") - } - if fieldNum <= 0 { - return fmt.Errorf("proto: RequestEndBlock: illegal tag %d (wire type %d)", fieldNum, wire) - } - switch fieldNum { - case 1: - 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 - } - } - 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 *RequestCommit) Unmarshal(dAtA []byte) error { l := len(dAtA) iNdEx := 0 @@ -10165,41 +8862,6 @@ func (m *Response) Unmarshal(dAtA []byte) error { } m.Value = &Response_Query{v} iNdEx = postIndex - case 7: - if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field BeginBlock", 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 := &ResponseBeginBlock{} - if err := v.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { - return err - } - m.Value = &Response_BeginBlock{v} - iNdEx = postIndex case 8: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field CheckTx", wireType) @@ -10235,76 +8897,6 @@ func (m *Response) Unmarshal(dAtA []byte) error { } m.Value = &Response_CheckTx{v} iNdEx = postIndex - case 9: - if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field DeliverTx", 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 := &ResponseDeliverTx{} - if err := v.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { - return err - } - m.Value = &Response_DeliverTx{v} - iNdEx = postIndex - case 10: - if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field EndBlock", 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 := &ResponseEndBlock{} - if err := v.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { - return err - } - m.Value = &Response_EndBlock{v} - iNdEx = postIndex case 11: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field Commit", wireType) @@ -11397,90 +9989,6 @@ func (m *ResponseQuery) Unmarshal(dAtA []byte) error { } return nil } -func (m *ResponseBeginBlock) 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: ResponseBeginBlock: wiretype end group for non-group") - } - if fieldNum <= 0 { - return fmt.Errorf("proto: ResponseBeginBlock: illegal tag %d (wire type %d)", fieldNum, wire) - } - switch fieldNum { - case 1: - 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 *ResponseCheckTx) Unmarshal(dAtA []byte) error { l := len(dAtA) iNdEx := 0 @@ -12074,160 +10582,6 @@ func (m *ResponseDeliverTx) Unmarshal(dAtA []byte) error { } return nil } -func (m *ResponseEndBlock) 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: ResponseEndBlock: wiretype end group for non-group") - } - if fieldNum <= 0 { - return fmt.Errorf("proto: ResponseEndBlock: illegal tag %d (wire type %d)", fieldNum, wire) - } - switch fieldNum { - case 1: - 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 2: - 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 = &types1.ConsensusParams{} - } - if err := m.ConsensusParamUpdates.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { - return err - } - iNdEx = postIndex - case 3: - 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 *ResponseCommit) Unmarshal(dAtA []byte) error { l := len(dAtA) iNdEx := 0 diff --git a/proto/tendermint/abci/types.proto b/proto/tendermint/abci/types.proto index 11b9bed50..9233d32bd 100644 --- a/proto/tendermint/abci/types.proto +++ b/proto/tendermint/abci/types.proto @@ -21,15 +21,15 @@ import "gogoproto/gogo.proto"; message Request { oneof value { - RequestEcho echo = 1; - RequestFlush flush = 2; - RequestInfo info = 3; - RequestInitChain init_chain = 4; - RequestQuery query = 5; - RequestBeginBlock begin_block = 6; - RequestCheckTx check_tx = 7; - RequestDeliverTx deliver_tx = 8; - RequestEndBlock end_block = 9; + RequestEcho echo = 1; + RequestFlush flush = 2; + RequestInfo info = 3; + RequestInitChain init_chain = 4; + RequestQuery query = 5; + // RequestBeginBlock begin_block = 6; + RequestCheckTx check_tx = 7; + // RequestDeliverTx deliver_tx = 8; + // RequestEndBlock end_block = 9; RequestCommit commit = 10; RequestListSnapshots list_snapshots = 11; RequestOfferSnapshot offer_snapshot = 12; @@ -68,13 +68,6 @@ message RequestQuery { bool prove = 4; } -message RequestBeginBlock { - bytes hash = 1; - tendermint.types.Header header = 2 [(gogoproto.nullable) = false]; - LastCommitInfo last_commit_info = 3 [(gogoproto.nullable) = false]; - repeated Evidence byzantine_validators = 4 [(gogoproto.nullable) = false]; -} - enum CheckTxType { NEW = 0 [(gogoproto.enumvalue_customname) = "New"]; RECHECK = 1 [(gogoproto.enumvalue_customname) = "Recheck"]; @@ -85,14 +78,6 @@ message RequestCheckTx { CheckTxType type = 2; } -message RequestDeliverTx { - bytes tx = 1; -} - -message RequestEndBlock { - int64 height = 1; -} - message RequestCommit {} // lists available snapshots @@ -131,16 +116,16 @@ message RequestFinalizeBlock { message Response { oneof value { - ResponseException exception = 1; - ResponseEcho echo = 2; - ResponseFlush flush = 3; - ResponseInfo info = 4; - ResponseInitChain init_chain = 5; - ResponseQuery query = 6; - ResponseBeginBlock begin_block = 7; - ResponseCheckTx check_tx = 8; - ResponseDeliverTx deliver_tx = 9; - ResponseEndBlock end_block = 10; + ResponseException exception = 1; + ResponseEcho echo = 2; + ResponseFlush flush = 3; + ResponseInfo info = 4; + ResponseInitChain init_chain = 5; + ResponseQuery query = 6; + // ResponseBeginBlock begin_block = 7; + ResponseCheckTx check_tx = 8; + // ResponseDeliverTx deliver_tx = 9; + // ResponseEndBlock end_block = 10; ResponseCommit commit = 11; ResponseListSnapshots list_snapshots = 12; ResponseOfferSnapshot offer_snapshot = 13; @@ -191,10 +176,6 @@ message ResponseQuery { string codespace = 10; } -message ResponseBeginBlock { - repeated Event events = 1 [(gogoproto.nullable) = false, (gogoproto.jsontag) = "events,omitempty"]; -} - message ResponseCheckTx { uint32 code = 1; bytes data = 2; @@ -220,12 +201,6 @@ message ResponseDeliverTx { string codespace = 8; } -message ResponseEndBlock { - repeated ValidatorUpdate validator_updates = 1 [(gogoproto.nullable) = false]; - tendermint.types.ConsensusParams consensus_param_updates = 2; - repeated Event events = 3 [(gogoproto.nullable) = false, (gogoproto.jsontag) = "events,omitempty"]; -} - message ResponseCommit { // reserve 1 bytes data = 2;