diff --git a/abci/types/mocks/application.go b/abci/types/mocks/application.go index 4e19828ac..30bf0f84c 100644 --- a/abci/types/mocks/application.go +++ b/abci/types/mocks/application.go @@ -26,20 +26,6 @@ func (_m *Application) ApplySnapshotChunk(_a0 types.RequestApplySnapshotChunk) t return r0 } -// BeginBlock provides a mock function with given fields: _a0 -func (_m *Application) BeginBlock(_a0 types.RequestBeginBlock) types.ResponseBeginBlock { - ret := _m.Called(_a0) - - var r0 types.ResponseBeginBlock - if rf, ok := ret.Get(0).(func(types.RequestBeginBlock) types.ResponseBeginBlock); ok { - r0 = rf(_a0) - } else { - r0 = ret.Get(0).(types.ResponseBeginBlock) - } - - return r0 -} - // CheckTx provides a mock function with given fields: _a0 func (_m *Application) CheckTx(_a0 types.RequestCheckTx) types.ResponseCheckTx { ret := _m.Called(_a0) @@ -68,34 +54,6 @@ func (_m *Application) Commit() types.ResponseCommit { return r0 } -// DeliverTx provides a mock function with given fields: _a0 -func (_m *Application) DeliverTx(_a0 types.RequestDeliverTx) types.ResponseDeliverTx { - ret := _m.Called(_a0) - - var r0 types.ResponseDeliverTx - if rf, ok := ret.Get(0).(func(types.RequestDeliverTx) types.ResponseDeliverTx); ok { - r0 = rf(_a0) - } else { - r0 = ret.Get(0).(types.ResponseDeliverTx) - } - - return r0 -} - -// EndBlock provides a mock function with given fields: _a0 -func (_m *Application) EndBlock(_a0 types.RequestEndBlock) types.ResponseEndBlock { - ret := _m.Called(_a0) - - var r0 types.ResponseEndBlock - if rf, ok := ret.Get(0).(func(types.RequestEndBlock) types.ResponseEndBlock); ok { - r0 = rf(_a0) - } else { - r0 = ret.Get(0).(types.ResponseEndBlock) - } - - return r0 -} - // ExtendVote provides a mock function with given fields: _a0 func (_m *Application) ExtendVote(_a0 types.RequestExtendVote) types.ResponseExtendVote { ret := _m.Called(_a0) @@ -110,6 +68,20 @@ func (_m *Application) ExtendVote(_a0 types.RequestExtendVote) types.ResponseExt return r0 } +// FinalizeBlock provides a mock function with given fields: _a0 +func (_m *Application) FinalizeBlock(_a0 types.RequestFinalizeBlock) types.ResponseFinalizeBlock { + ret := _m.Called(_a0) + + var r0 types.ResponseFinalizeBlock + if rf, ok := ret.Get(0).(func(types.RequestFinalizeBlock) types.ResponseFinalizeBlock); ok { + r0 = rf(_a0) + } else { + r0 = ret.Get(0).(types.ResponseFinalizeBlock) + } + + return r0 +} + // Info provides a mock function with given fields: _a0 func (_m *Application) Info(_a0 types.RequestInfo) types.ResponseInfo { ret := _m.Called(_a0) diff --git a/abci/types/mocks/base.go b/abci/types/mocks/base.go index 3a4470c18..4c76148f3 100644 --- a/abci/types/mocks/base.go +++ b/abci/types/mocks/base.go @@ -88,42 +88,6 @@ func (m baseMock) ProcessProposal(input types.RequestProcessProposal) types.Resp return r } -// Signals the beginning of a block -func (m baseMock) BeginBlock(input types.RequestBeginBlock) types.ResponseBeginBlock { - var ret types.ResponseBeginBlock - defer func() { - if r := recover(); r != nil { - ret = m.base.BeginBlock(input) - } - }() - ret = m.Application.BeginBlock(input) - return ret -} - -// Deliver a tx for full processing -func (m baseMock) DeliverTx(input types.RequestDeliverTx) types.ResponseDeliverTx { - var ret types.ResponseDeliverTx - defer func() { - if r := recover(); r != nil { - ret = m.base.DeliverTx(input) - } - }() - ret = m.Application.DeliverTx(input) - return ret -} - -// Signals the end of a block, returns changes to the validator set -func (m baseMock) EndBlock(input types.RequestEndBlock) types.ResponseEndBlock { - var ret types.ResponseEndBlock - defer func() { - if r := recover(); r != nil { - ret = m.base.EndBlock(input) - } - }() - ret = m.Application.EndBlock(input) - return ret -} - // Commit the state and return the application Merkle root hash func (m baseMock) Commit() types.ResponseCommit { var ret types.ResponseCommit @@ -205,3 +169,14 @@ func (m baseMock) ApplySnapshotChunk(input types.RequestApplySnapshotChunk) type ret = m.Application.ApplySnapshotChunk(input) return ret } + +func (m baseMock) FinalizeBlock(input types.RequestFinalizeBlock) types.ResponseFinalizeBlock { + var ret types.ResponseFinalizeBlock + defer func() { + if r := recover(); r != nil { + ret = m.base.FinalizeBlock(input) + } + }() + ret = m.Application.FinalizeBlock(input) + return ret +} diff --git a/abci/types/types.pb.go b/abci/types/types.pb.go index e17237028..095f8c00d 100644 --- a/abci/types/types.pb.go +++ b/abci/types/types.pb.go @@ -1260,6 +1260,9 @@ type RequestPrepareProposal struct { BlockData [][]byte `protobuf:"bytes,1,rep,name=block_data,json=blockData,proto3" json:"block_data,omitempty"` // If an application decides to populate block_data with extra information, they can not exceed this value. BlockDataSize int64 `protobuf:"varint,2,opt,name=block_data_size,json=blockDataSize,proto3" json:"block_data_size,omitempty"` + // votes includes all votes from the previous block. This contains vote extension data that can be used in proposal + // preparation. The votes here will then form the last commit that gets sent in the proposed block. + Votes []*types.Vote `protobuf:"bytes,3,rep,name=votes,proto3" json:"votes,omitempty"` } func (m *RequestPrepareProposal) Reset() { *m = RequestPrepareProposal{} } @@ -1309,6 +1312,13 @@ func (m *RequestPrepareProposal) GetBlockDataSize() int64 { return 0 } +func (m *RequestPrepareProposal) GetVotes() []*types.Vote { + if m != nil { + return m.Votes + } + return nil +} + // Extends a vote with application-side injection type RequestExtendVote struct { Vote *types.Vote `protobuf:"bytes,1,opt,name=vote,proto3" json:"vote,omitempty"` @@ -3822,210 +3832,208 @@ func init() { func init() { proto.RegisterFile("tendermint/abci/types.proto", fileDescriptor_252557cfdd89a31a) } var fileDescriptor_252557cfdd89a31a = []byte{ - // 3233 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe4, 0x5a, 0xcb, 0x6f, 0x23, 0xc7, - 0xd1, 0xe7, 0xfb, 0x51, 0x14, 0x1f, 0x6a, 0xc9, 0x32, 0x77, 0xbc, 0x2b, 0xad, 0x67, 0x61, 0x7b, - 0xbd, 0xb6, 0xa5, 0xcf, 0xda, 0xcf, 0xce, 0x1a, 0x76, 0x62, 0x4b, 0x5c, 0x2a, 0x94, 0x57, 0x96, - 0x94, 0x11, 0xb5, 0x86, 0x13, 0x7b, 0xc7, 0x43, 0xb2, 0x45, 0x8e, 0x97, 0x9c, 0x19, 0xcf, 0x0c, - 0x69, 0x69, 0x8f, 0x79, 0x5c, 0x8c, 0x1c, 0x7c, 0x0c, 0x10, 0xf8, 0xe6, 0x7f, 0x20, 0x40, 0x0e, - 0x39, 0xe5, 0x14, 0x20, 0x06, 0x92, 0x83, 0x8f, 0x39, 0x04, 0x4e, 0x60, 0xdf, 0x72, 0xcd, 0x21, - 0xa7, 0x00, 0x41, 0x3f, 0xe6, 0x45, 0x72, 0xc8, 0x61, 0xb4, 0x3e, 0xe5, 0xd6, 0x5d, 0x53, 0x55, - 0xd3, 0x5d, 0xdd, 0x5d, 0x55, 0xbf, 0xae, 0x86, 0xa7, 0x6c, 0xac, 0x75, 0xb0, 0x39, 0x50, 0x35, - 0x7b, 0x4b, 0x69, 0xb5, 0xd5, 0x2d, 0xfb, 0xc2, 0xc0, 0xd6, 0xa6, 0x61, 0xea, 0xb6, 0x8e, 0xca, - 0xde, 0xc7, 0x4d, 0xf2, 0x51, 0xb8, 0xe6, 0xe3, 0x6e, 0x9b, 0x17, 0x86, 0xad, 0x6f, 0x19, 0xa6, - 0xae, 0x9f, 0x31, 0x7e, 0xe1, 0xaa, 0xef, 0x33, 0xd5, 0xe3, 0xd7, 0x16, 0xf8, 0xca, 0x85, 0x1f, - 0xe2, 0x0b, 0xe7, 0xeb, 0xb5, 0x09, 0x59, 0x43, 0x31, 0x95, 0x81, 0xf3, 0x79, 0xa3, 0xab, 0xeb, - 0xdd, 0x3e, 0xde, 0xa2, 0xbd, 0xd6, 0xf0, 0x6c, 0xcb, 0x56, 0x07, 0xd8, 0xb2, 0x95, 0x81, 0xc1, - 0x19, 0x56, 0xbb, 0x7a, 0x57, 0xa7, 0xcd, 0x2d, 0xd2, 0x62, 0x54, 0xf1, 0x9f, 0x00, 0x59, 0x09, - 0x7f, 0x3c, 0xc4, 0x96, 0x8d, 0xb6, 0x21, 0x85, 0xdb, 0x3d, 0xbd, 0x1a, 0xbf, 0x1e, 0xbf, 0x59, - 0xd8, 0xbe, 0xba, 0x39, 0x36, 0xb9, 0x4d, 0xce, 0x57, 0x6f, 0xf7, 0xf4, 0x46, 0x4c, 0xa2, 0xbc, - 0xe8, 0x15, 0x48, 0x9f, 0xf5, 0x87, 0x56, 0xaf, 0x9a, 0xa0, 0x42, 0xd7, 0xc2, 0x84, 0xf6, 0x08, - 0x53, 0x23, 0x26, 0x31, 0x6e, 0xf2, 0x2b, 0x55, 0x3b, 0xd3, 0xab, 0xc9, 0xd9, 0xbf, 0xda, 0xd7, - 0xce, 0xe8, 0xaf, 0x08, 0x2f, 0xda, 0x05, 0x50, 0x35, 0xd5, 0x96, 0xdb, 0x3d, 0x45, 0xd5, 0xaa, - 0x29, 0x2a, 0xf9, 0x74, 0xb8, 0xa4, 0x6a, 0xd7, 0x08, 0x63, 0x23, 0x26, 0xe5, 0x55, 0xa7, 0x43, - 0x86, 0xfb, 0xf1, 0x10, 0x9b, 0x17, 0xd5, 0xf4, 0xec, 0xe1, 0xfe, 0x88, 0x30, 0x91, 0xe1, 0x52, - 0x6e, 0x54, 0x87, 0x42, 0x0b, 0x77, 0x55, 0x4d, 0x6e, 0xf5, 0xf5, 0xf6, 0xc3, 0x6a, 0x86, 0x0a, - 0x8b, 0x61, 0xc2, 0xbb, 0x84, 0x75, 0x97, 0x70, 0x36, 0x62, 0x12, 0xb4, 0xdc, 0x1e, 0x7a, 0x03, - 0x72, 0xed, 0x1e, 0x6e, 0x3f, 0x94, 0xed, 0xf3, 0x6a, 0x96, 0xea, 0xd8, 0x08, 0xd3, 0x51, 0x23, - 0x7c, 0xcd, 0xf3, 0x46, 0x4c, 0xca, 0xb6, 0x59, 0x93, 0xcc, 0xbf, 0x83, 0xfb, 0xea, 0x08, 0x9b, - 0x44, 0x3e, 0x37, 0x7b, 0xfe, 0x77, 0x19, 0x27, 0xd5, 0x90, 0xef, 0x38, 0x1d, 0xf4, 0x26, 0xe4, - 0xb1, 0xd6, 0xe1, 0xd3, 0xc8, 0x53, 0x15, 0xd7, 0x43, 0xd7, 0x59, 0xeb, 0x38, 0x93, 0xc8, 0x61, - 0xde, 0x46, 0x77, 0x20, 0xd3, 0xd6, 0x07, 0x03, 0xd5, 0xae, 0x02, 0x95, 0x5e, 0x0f, 0x9d, 0x00, - 0xe5, 0x6a, 0xc4, 0x24, 0xce, 0x8f, 0x0e, 0xa1, 0xd4, 0x57, 0x2d, 0x5b, 0xb6, 0x34, 0xc5, 0xb0, - 0x7a, 0xba, 0x6d, 0x55, 0x0b, 0x54, 0xc3, 0x33, 0x61, 0x1a, 0x0e, 0x54, 0xcb, 0x3e, 0x71, 0x98, - 0x1b, 0x31, 0xa9, 0xd8, 0xf7, 0x13, 0x88, 0x3e, 0xfd, 0xec, 0x0c, 0x9b, 0xae, 0xc2, 0xea, 0xd2, - 0x6c, 0x7d, 0x47, 0x84, 0xdb, 0x91, 0x27, 0xfa, 0x74, 0x3f, 0x01, 0xfd, 0x04, 0x56, 0xfa, 0xba, - 0xd2, 0x71, 0xd5, 0xc9, 0xed, 0xde, 0x50, 0x7b, 0x58, 0x2d, 0x52, 0xa5, 0xcf, 0x87, 0x0e, 0x52, - 0x57, 0x3a, 0x8e, 0x8a, 0x1a, 0x11, 0x68, 0xc4, 0xa4, 0xe5, 0xfe, 0x38, 0x11, 0x3d, 0x80, 0x55, - 0xc5, 0x30, 0xfa, 0x17, 0xe3, 0xda, 0x4b, 0x54, 0xfb, 0xad, 0x30, 0xed, 0x3b, 0x44, 0x66, 0x5c, - 0x3d, 0x52, 0x26, 0xa8, 0xa8, 0x09, 0x15, 0xc3, 0xc4, 0x86, 0x62, 0x62, 0xd9, 0x30, 0x75, 0x43, - 0xb7, 0x94, 0x7e, 0xb5, 0x4c, 0x75, 0x3f, 0x17, 0xa6, 0xfb, 0x98, 0xf1, 0x1f, 0x73, 0xf6, 0x46, - 0x4c, 0x2a, 0x1b, 0x41, 0x12, 0xd3, 0xaa, 0xb7, 0xb1, 0x65, 0x79, 0x5a, 0x2b, 0xf3, 0xb4, 0x52, - 0xfe, 0xa0, 0xd6, 0x00, 0x89, 0x1c, 0x26, 0x7c, 0x4e, 0xc4, 0xe5, 0x91, 0x6e, 0xe3, 0xea, 0xf2, - 0xec, 0xc3, 0x54, 0xa7, 0xac, 0xf7, 0x75, 0x1b, 0x93, 0xc3, 0x84, 0xdd, 0x1e, 0x52, 0xe0, 0x89, - 0x11, 0x36, 0xd5, 0xb3, 0x0b, 0xaa, 0x46, 0xa6, 0x5f, 0x2c, 0x55, 0xd7, 0xaa, 0x88, 0x2a, 0x7c, - 0x21, 0x4c, 0xe1, 0x7d, 0x2a, 0x44, 0x54, 0xd4, 0x1d, 0x91, 0x46, 0x4c, 0x5a, 0x19, 0x4d, 0x92, - 0xc9, 0x16, 0x3b, 0x53, 0x35, 0xa5, 0xaf, 0x3e, 0xc2, 0xfc, 0xc8, 0xac, 0xcc, 0xde, 0x62, 0x7b, - 0x9c, 0xdb, 0x39, 0x37, 0xc5, 0x33, 0x3f, 0x61, 0x37, 0x0b, 0xe9, 0x91, 0xd2, 0x1f, 0x62, 0xf1, - 0x39, 0x28, 0xf8, 0x9c, 0x29, 0xaa, 0x42, 0x76, 0x80, 0x2d, 0x4b, 0xe9, 0x62, 0xea, 0x7b, 0xf3, - 0x92, 0xd3, 0x15, 0x7f, 0x9e, 0x80, 0xe5, 0x09, 0xaf, 0x82, 0x10, 0xa4, 0x7a, 0x8a, 0xd5, 0xa3, - 0xcc, 0x4b, 0x12, 0x6d, 0xa3, 0x57, 0x21, 0xd3, 0xc3, 0x4a, 0x07, 0x9b, 0xdc, 0x13, 0x57, 0xfd, - 0x63, 0x64, 0x51, 0xa6, 0x41, 0xbf, 0xef, 0xa6, 0xbe, 0xfc, 0x7a, 0x23, 0x26, 0x71, 0x6e, 0x74, - 0x04, 0x95, 0xbe, 0x62, 0xd9, 0x32, 0x3b, 0xa5, 0xb2, 0xcf, 0x2b, 0x4f, 0xfa, 0xa6, 0x03, 0xc5, - 0x39, 0xd7, 0xc4, 0x31, 0x73, 0x45, 0xa5, 0x7e, 0x80, 0x8a, 0x24, 0x58, 0x6d, 0x5d, 0x3c, 0x52, - 0x34, 0x5b, 0xd5, 0xb0, 0x3c, 0x52, 0xfa, 0x6a, 0x47, 0xb1, 0x75, 0xd3, 0xaa, 0xa6, 0xae, 0x27, - 0x6f, 0x16, 0xb6, 0xaf, 0x4c, 0x28, 0xad, 0x8f, 0xd4, 0x0e, 0xd6, 0xda, 0x98, 0xab, 0x5b, 0x71, - 0x85, 0xef, 0xbb, 0xb2, 0x62, 0x09, 0x96, 0xfc, 0x71, 0x44, 0xfc, 0x2c, 0xee, 0x1a, 0x90, 0xfe, - 0xb3, 0x0a, 0xd9, 0x11, 0x36, 0xe9, 0xea, 0x73, 0x03, 0xf2, 0x2e, 0xba, 0x01, 0x45, 0xba, 0x72, - 0xb2, 0xf3, 0x9d, 0x58, 0x27, 0x25, 0x2d, 0x51, 0xe2, 0x7d, 0xce, 0xb4, 0x01, 0x05, 0x63, 0xdb, - 0x70, 0x59, 0x92, 0x94, 0x05, 0x8c, 0x6d, 0xc3, 0x61, 0x78, 0x1a, 0x96, 0xc8, 0x58, 0x5d, 0x8e, - 0x14, 0xfd, 0x49, 0x81, 0xd0, 0x38, 0x8b, 0xf8, 0xe7, 0x04, 0x54, 0xc6, 0x63, 0x0f, 0xba, 0x03, - 0x29, 0x12, 0x86, 0x79, 0x44, 0x15, 0x36, 0x59, 0x8c, 0xde, 0x74, 0x62, 0xf4, 0x66, 0xd3, 0x89, - 0xd1, 0xbb, 0x39, 0x32, 0xf9, 0xcf, 0xfe, 0xb6, 0x11, 0x97, 0xa8, 0x04, 0xba, 0x42, 0x42, 0x85, - 0xa2, 0x6a, 0xb2, 0xda, 0xa1, 0x43, 0xce, 0x93, 0x38, 0xa0, 0xa8, 0xda, 0x7e, 0x07, 0x1d, 0x40, - 0xa5, 0xad, 0x6b, 0x16, 0xd6, 0xac, 0xa1, 0x25, 0xb3, 0x1c, 0x80, 0xaf, 0xd8, 0xd3, 0x93, 0x6b, - 0x5e, 0x73, 0x38, 0x8f, 0x29, 0xa3, 0x54, 0x6e, 0x07, 0x09, 0x68, 0x0f, 0x60, 0x62, 0x91, 0x26, - 0x43, 0x82, 0xbb, 0x16, 0xa7, 0x46, 0x47, 0xb1, 0x9d, 0xb5, 0xf2, 0x49, 0xa2, 0x67, 0xa1, 0xac, - 0x18, 0x86, 0x6c, 0xd9, 0x8a, 0x8d, 0xe5, 0xd6, 0x85, 0x8d, 0x2d, 0x1a, 0x63, 0x97, 0xa4, 0xa2, - 0x62, 0x18, 0x27, 0x84, 0xba, 0x4b, 0x88, 0xe8, 0x19, 0x28, 0x91, 0x70, 0xac, 0x2a, 0x7d, 0xb9, - 0x87, 0xd5, 0x6e, 0xcf, 0xa6, 0xd1, 0x34, 0x29, 0x15, 0x39, 0xb5, 0x41, 0x89, 0x62, 0xc7, 0x5d, - 0x71, 0x1a, 0x8a, 0xc9, 0x96, 0xef, 0x28, 0xb6, 0xe2, 0x6c, 0x79, 0xd2, 0x26, 0x34, 0x43, 0xb1, - 0x7b, 0xdc, 0x3e, 0xb4, 0x8d, 0xd6, 0xc8, 0x31, 0xa0, 0x6a, 0x93, 0x54, 0x2d, 0xef, 0xa1, 0x55, - 0x48, 0x1b, 0xa6, 0x3e, 0xc2, 0x74, 0xe9, 0x72, 0x12, 0xeb, 0x88, 0xa2, 0xbb, 0x66, 0x6e, 0xbc, - 0x44, 0x25, 0x48, 0xd8, 0xe7, 0xfc, 0x3f, 0x09, 0xfb, 0x5c, 0x7c, 0x1e, 0xca, 0x63, 0x01, 0xd1, - 0xf7, 0x93, 0xb8, 0xff, 0x27, 0xa2, 0x04, 0xa5, 0x60, 0xf8, 0x1e, 0x57, 0x86, 0xfe, 0x0f, 0x52, - 0x64, 0x5d, 0xe8, 0x90, 0x4b, 0x53, 0xf2, 0x1e, 0x2e, 0xd7, 0xbc, 0x30, 0xb0, 0x44, 0x39, 0xc5, - 0x32, 0x14, 0x03, 0x11, 0x55, 0x5c, 0x83, 0xd5, 0x69, 0x01, 0x52, 0xec, 0xb9, 0xf4, 0x40, 0xa0, - 0x43, 0xaf, 0x40, 0xce, 0x8d, 0x90, 0x6c, 0x1f, 0x4e, 0x9e, 0x41, 0x87, 0x59, 0x72, 0x59, 0xc9, - 0x06, 0x24, 0xeb, 0x49, 0xfd, 0x4c, 0x82, 0x8e, 0x3f, 0xab, 0x18, 0x46, 0x43, 0xb1, 0x7a, 0xe2, - 0x87, 0x50, 0x0d, 0x8b, 0x7e, 0x63, 0xa6, 0x49, 0xb9, 0xf6, 0x5f, 0x83, 0xcc, 0x99, 0x6e, 0x0e, - 0x14, 0x9b, 0x2a, 0x2b, 0x4a, 0xbc, 0x47, 0xd6, 0x85, 0x45, 0xc2, 0x24, 0x25, 0xb3, 0x8e, 0x28, - 0xc3, 0x95, 0xd0, 0x08, 0x48, 0x44, 0x54, 0xad, 0x83, 0x99, 0x59, 0x8b, 0x12, 0xeb, 0x78, 0x8a, - 0xd8, 0x60, 0x59, 0x87, 0xfc, 0xd6, 0xa2, 0x73, 0xa5, 0xfa, 0xf3, 0x12, 0xef, 0x89, 0x32, 0xac, - 0x4d, 0x0f, 0x83, 0xe8, 0x1a, 0x00, 0x73, 0x18, 0x7c, 0xbb, 0x25, 0x6f, 0x2e, 0x49, 0x79, 0x4a, - 0xb9, 0x4b, 0xf6, 0xdc, 0xb3, 0x50, 0xf6, 0x3e, 0xcb, 0x96, 0xfa, 0x88, 0xad, 0x65, 0x52, 0x2a, - 0xba, 0x3c, 0x27, 0xea, 0x23, 0x2c, 0xbe, 0xe9, 0xfa, 0x6d, 0x2f, 0x80, 0xa1, 0x5b, 0x90, 0xa2, - 0x21, 0x8f, 0x2d, 0xc3, 0xda, 0xe4, 0x69, 0x25, 0x5c, 0x12, 0xe5, 0x11, 0x1b, 0x20, 0x84, 0x07, - 0xac, 0x85, 0x34, 0xfd, 0x3a, 0xe1, 0x9b, 0x6c, 0x30, 0x14, 0x3f, 0xce, 0x40, 0x52, 0x81, 0xa4, - 0x7d, 0x4e, 0x3c, 0x11, 0xb1, 0x18, 0x69, 0x4e, 0x0d, 0x2d, 0xa9, 0xef, 0x22, 0xb4, 0xa4, 0x2f, - 0x11, 0x5a, 0x7e, 0x93, 0x70, 0xcf, 0x4d, 0x20, 0x7a, 0x3b, 0xf3, 0x89, 0x7b, 0xf3, 0x71, 0xac, - 0x95, 0xf0, 0x59, 0x2b, 0xcc, 0xdf, 0x78, 0x56, 0x4c, 0x5d, 0x3a, 0x1c, 0xa7, 0xbf, 0x0b, 0x9b, - 0x65, 0x2e, 0x61, 0xb3, 0x3f, 0x15, 0x20, 0x27, 0x61, 0xcb, 0x20, 0xa1, 0x04, 0xed, 0x42, 0x1e, - 0x9f, 0xb7, 0xb1, 0x61, 0x3b, 0xd1, 0x77, 0x7a, 0x32, 0xc7, 0xb8, 0xeb, 0x0e, 0x27, 0x81, 0x25, - 0xae, 0x18, 0xba, 0xcd, 0x91, 0x67, 0x38, 0x88, 0xe4, 0xe2, 0x7e, 0xe8, 0xf9, 0xaa, 0x03, 0x3d, - 0x93, 0xa1, 0x48, 0x84, 0x49, 0x8d, 0x61, 0xcf, 0xdb, 0x1c, 0x7b, 0xa6, 0xe6, 0xfc, 0x2c, 0x00, - 0x3e, 0x6b, 0x01, 0xf0, 0x99, 0x9e, 0x33, 0xcd, 0x10, 0xf4, 0xf9, 0xaa, 0x83, 0x3e, 0x33, 0x73, - 0x46, 0x3c, 0x06, 0x3f, 0xf7, 0x82, 0xf0, 0x93, 0x41, 0xc7, 0x1b, 0xa1, 0xd2, 0xa1, 0xf8, 0xf3, - 0xfb, 0x3e, 0xfc, 0x99, 0x0b, 0x05, 0x7f, 0x4c, 0xc9, 0x14, 0x00, 0x5a, 0x0b, 0x00, 0xd0, 0xfc, - 0x1c, 0x1b, 0x84, 0x20, 0xd0, 0xb7, 0xfc, 0x08, 0x14, 0x42, 0x41, 0x2c, 0x5f, 0xef, 0x69, 0x10, - 0xf4, 0x35, 0x17, 0x82, 0x16, 0x42, 0x31, 0x34, 0x9f, 0xc3, 0x38, 0x06, 0x3d, 0x9a, 0xc0, 0xa0, - 0x0c, 0x33, 0x3e, 0x1b, 0xaa, 0x62, 0x0e, 0x08, 0x3d, 0x9a, 0x00, 0xa1, 0xc5, 0x39, 0x0a, 0xe7, - 0xa0, 0xd0, 0xf7, 0xa7, 0xa3, 0xd0, 0x70, 0x9c, 0xc8, 0x87, 0x19, 0x0d, 0x86, 0xca, 0x21, 0x30, - 0xb4, 0x1c, 0x0a, 0x99, 0x98, 0xfa, 0xc8, 0x38, 0xf4, 0x74, 0x0a, 0x0e, 0x65, 0x88, 0xf1, 0x66, - 0xa8, 0xf2, 0x08, 0x40, 0xf4, 0x74, 0x0a, 0x10, 0x5d, 0x9e, 0xab, 0x76, 0x2e, 0x12, 0xdd, 0x0b, - 0x22, 0x51, 0x34, 0xe7, 0x5c, 0x85, 0x42, 0xd1, 0x56, 0x18, 0x14, 0x65, 0x70, 0xf1, 0xc5, 0x50, - 0x8d, 0x0b, 0x60, 0xd1, 0xa3, 0x09, 0x2c, 0xba, 0x3a, 0x67, 0xa7, 0x45, 0x05, 0xa3, 0xcf, 0x93, - 0x54, 0x65, 0xcc, 0x3d, 0x93, 0x74, 0x0a, 0x9b, 0xa6, 0x6e, 0x72, 0x3c, 0xc5, 0x3a, 0xe2, 0x4d, - 0x92, 0x95, 0x7b, 0xae, 0x78, 0x06, 0x70, 0xa5, 0x69, 0xab, 0xcf, 0xfd, 0x8a, 0xbf, 0x8b, 0x7b, - 0xb2, 0x34, 0x30, 0xf9, 0x33, 0xfa, 0x3c, 0xcf, 0xe8, 0x7d, 0x38, 0x2e, 0x11, 0xc4, 0x71, 0x1b, - 0x50, 0x20, 0xe9, 0xe8, 0x18, 0x44, 0x53, 0x0c, 0x17, 0xa2, 0xdd, 0x82, 0x65, 0x1a, 0x38, 0x59, - 0x76, 0xc6, 0x63, 0x72, 0x8a, 0xc6, 0xe4, 0x32, 0xf9, 0xc0, 0xac, 0xc0, 0x82, 0xf3, 0x4b, 0xb0, - 0xe2, 0xe3, 0x75, 0xd3, 0x5c, 0x86, 0x57, 0x2a, 0x2e, 0xf7, 0x0e, 0xcf, 0x77, 0xff, 0x10, 0xf7, - 0x2c, 0xe4, 0x61, 0xbb, 0x69, 0x30, 0x2c, 0xfe, 0x98, 0x60, 0x58, 0xe2, 0xbf, 0x86, 0x61, 0xfe, - 0xb4, 0x3d, 0x19, 0x4c, 0xdb, 0xff, 0x15, 0xf7, 0xd6, 0xc4, 0x05, 0x55, 0x6d, 0xbd, 0x83, 0x79, - 0x22, 0x4d, 0xdb, 0x24, 0xed, 0xe9, 0xeb, 0x5d, 0x9e, 0x2e, 0x93, 0x26, 0xe1, 0x72, 0xe3, 0x65, - 0x9e, 0x87, 0x43, 0x37, 0x07, 0x4f, 0x53, 0x0b, 0xf3, 0x1c, 0xbc, 0x02, 0xc9, 0x87, 0x98, 0x45, - 0xb7, 0x25, 0x89, 0x34, 0x09, 0x1f, 0xdd, 0x64, 0x34, 0x66, 0x2d, 0x49, 0xac, 0x83, 0xee, 0x40, - 0x9e, 0xde, 0x8a, 0xcb, 0xba, 0x61, 0xf1, 0x40, 0xf4, 0x94, 0x7f, 0xae, 0xec, 0xf2, 0x7b, 0xf3, - 0x98, 0xf0, 0x1c, 0x19, 0x96, 0x94, 0x33, 0x78, 0xcb, 0x97, 0x6e, 0xe5, 0x03, 0xe9, 0xd6, 0x55, - 0xc8, 0x93, 0xd1, 0x5b, 0x86, 0xd2, 0xc6, 0x34, 0xaa, 0xe4, 0x25, 0x8f, 0x20, 0x3e, 0x00, 0x34, - 0x19, 0x1b, 0x51, 0x03, 0x32, 0x78, 0x84, 0x35, 0x9b, 0xe5, 0x78, 0x63, 0x59, 0x34, 0xcf, 0x85, - 0xb0, 0x66, 0xef, 0x56, 0x89, 0x91, 0xff, 0xf1, 0xf5, 0x46, 0x85, 0x71, 0xbf, 0xa8, 0x0f, 0x54, - 0x1b, 0x0f, 0x0c, 0xfb, 0x42, 0xe2, 0xf2, 0xe2, 0x5f, 0x13, 0x04, 0x23, 0x06, 0xe2, 0xe6, 0x54, - 0xdb, 0x3a, 0x5b, 0x3e, 0xe1, 0x03, 0xb1, 0xd1, 0xec, 0xbd, 0x0e, 0xd0, 0x55, 0x2c, 0xf9, 0x13, - 0x45, 0xb3, 0x71, 0x87, 0x1b, 0xdd, 0x47, 0x41, 0x02, 0xe4, 0x48, 0x6f, 0x68, 0xe1, 0x0e, 0xc7, - 0xd3, 0x6e, 0xdf, 0x37, 0xcf, 0xec, 0xe5, 0xe6, 0x19, 0xb4, 0x72, 0x6e, 0xcc, 0xca, 0x3e, 0xac, - 0x95, 0xf7, 0x63, 0x2d, 0x32, 0x36, 0xc3, 0x54, 0x75, 0x53, 0xb5, 0x2f, 0xe8, 0xd2, 0x24, 0x25, - 0xb7, 0x8f, 0x6e, 0x40, 0x71, 0x80, 0x07, 0x86, 0xae, 0xf7, 0x65, 0xe6, 0x6e, 0x0a, 0x54, 0x74, - 0x89, 0x13, 0xeb, 0xd4, 0xeb, 0xfc, 0x22, 0xe1, 0x9d, 0x3f, 0x0f, 0xa7, 0xff, 0xcf, 0x19, 0x58, - 0xfc, 0x25, 0xbd, 0x62, 0x0a, 0x66, 0x46, 0xe8, 0x04, 0x96, 0xdd, 0xe3, 0x2f, 0x0f, 0xa9, 0x5b, - 0x70, 0x36, 0x74, 0x54, 0xff, 0x51, 0x19, 0x05, 0xc9, 0x16, 0x7a, 0x0f, 0x9e, 0x1c, 0xf3, 0x6d, - 0xae, 0xea, 0x44, 0x54, 0x17, 0xf7, 0x44, 0xd0, 0xc5, 0x39, 0xaa, 0x3d, 0x63, 0x25, 0x2f, 0x79, - 0xea, 0xf6, 0xa1, 0x14, 0x4c, 0xf4, 0xa6, 0x2e, 0xff, 0x0d, 0x28, 0x9a, 0xd8, 0x56, 0x54, 0x4d, - 0x0e, 0xe0, 0xb4, 0x25, 0x46, 0xe4, 0xb7, 0x4d, 0xc7, 0xf0, 0xc4, 0xd4, 0x84, 0x0f, 0x7d, 0x0f, - 0xf2, 0x5e, 0xae, 0x18, 0x0f, 0x81, 0x4c, 0xee, 0xed, 0x89, 0xc7, 0x2b, 0xfe, 0x3e, 0xee, 0xa9, - 0x0c, 0xde, 0xc7, 0xd4, 0x21, 0x63, 0x62, 0x6b, 0xd8, 0x67, 0x37, 0x24, 0xa5, 0xed, 0x97, 0xa2, - 0xa5, 0x8a, 0x84, 0x3a, 0xec, 0xdb, 0x12, 0x17, 0x16, 0x1f, 0x40, 0x86, 0x51, 0x50, 0x01, 0xb2, - 0xa7, 0x87, 0xf7, 0x0e, 0x8f, 0xde, 0x3d, 0xac, 0xc4, 0x10, 0x40, 0x66, 0xa7, 0x56, 0xab, 0x1f, - 0x37, 0x2b, 0x71, 0x94, 0x87, 0xf4, 0xce, 0xee, 0x91, 0xd4, 0xac, 0x24, 0x08, 0x59, 0xaa, 0xbf, - 0x5d, 0xaf, 0x35, 0x2b, 0x49, 0xb4, 0x0c, 0x45, 0xd6, 0x96, 0xf7, 0x8e, 0xa4, 0x77, 0x76, 0x9a, - 0x95, 0x94, 0x8f, 0x74, 0x52, 0x3f, 0xbc, 0x5b, 0x97, 0x2a, 0x69, 0xf1, 0x65, 0xb8, 0x12, 0x9a, - 0x5c, 0x7a, 0x97, 0x2d, 0x71, 0xdf, 0x65, 0x8b, 0xf8, 0xab, 0x04, 0x08, 0xe1, 0x19, 0x23, 0x7a, - 0x7b, 0x6c, 0xe2, 0xdb, 0x0b, 0xa4, 0x9b, 0x63, 0xb3, 0x47, 0xcf, 0x40, 0xc9, 0xc4, 0x67, 0xd8, - 0x6e, 0xf7, 0x58, 0x06, 0xcb, 0x42, 0x66, 0x51, 0x2a, 0x72, 0x2a, 0x15, 0xb2, 0x18, 0xdb, 0x47, - 0xb8, 0x6d, 0xcb, 0xcc, 0x17, 0xb1, 0x4d, 0x97, 0x27, 0x6c, 0x84, 0x7a, 0xc2, 0x88, 0xe2, 0x87, - 0x0b, 0xd9, 0x32, 0x0f, 0x69, 0xa9, 0xde, 0x94, 0xde, 0xab, 0x24, 0x11, 0x82, 0x12, 0x6d, 0xca, - 0x27, 0x87, 0x3b, 0xc7, 0x27, 0x8d, 0x23, 0x62, 0xcb, 0x15, 0x28, 0x3b, 0xb6, 0x74, 0x88, 0x69, - 0xf1, 0x0e, 0x3c, 0x19, 0x92, 0xee, 0xce, 0xb9, 0x70, 0x12, 0xdf, 0xf7, 0x62, 0x97, 0xef, 0x26, - 0x69, 0x0f, 0x4a, 0x63, 0xa9, 0x66, 0x7c, 0x12, 0x0b, 0x79, 0x37, 0x41, 0x6e, 0x1a, 0x29, 0x15, - 0x47, 0xfe, 0xae, 0xf8, 0x45, 0x1c, 0x9e, 0x9a, 0x91, 0x8c, 0xa2, 0x7b, 0x63, 0x6b, 0x76, 0x7b, - 0x91, 0x54, 0x76, 0x7c, 0xcb, 0xde, 0x89, 0x64, 0xe6, 0x93, 0x83, 0x9d, 0x93, 0x46, 0x70, 0xcb, - 0x8a, 0xbf, 0x4d, 0xf8, 0xed, 0x17, 0x4c, 0xe2, 0xd7, 0x20, 0xa3, 0xb4, 0x49, 0xda, 0x4a, 0x87, - 0x98, 0x93, 0x78, 0x6f, 0xc6, 0x05, 0x26, 0x7a, 0x03, 0xc0, 0x3e, 0x97, 0xd9, 0xa8, 0x1c, 0x3f, - 0x34, 0x79, 0x0f, 0x50, 0x3f, 0xc7, 0xed, 0xe6, 0x39, 0x9f, 0x43, 0xde, 0xe6, 0x2d, 0x0b, 0xbd, - 0x33, 0xcd, 0xe3, 0x46, 0xbc, 0x38, 0x5f, 0xcc, 0xd7, 0xa6, 0x2f, 0xe7, 0x6b, 0xc5, 0x3f, 0x26, - 0x3c, 0x27, 0x14, 0xbc, 0xdc, 0xfa, 0x7f, 0xef, 0x72, 0x2b, 0x12, 0x86, 0x67, 0x17, 0x60, 0x53, - 0x63, 0x4d, 0xe2, 0xbb, 0x8b, 0x35, 0xc9, 0xc7, 0x16, 0x6b, 0x52, 0x97, 0x8c, 0x35, 0x1f, 0x40, - 0x29, 0x78, 0xdb, 0x46, 0x5c, 0xa0, 0xa9, 0x0f, 0xb5, 0x0e, 0xdd, 0x75, 0x69, 0x89, 0x75, 0xd0, - 0x2b, 0x90, 0x26, 0x07, 0xcc, 0xb1, 0xca, 0x64, 0xac, 0x20, 0x07, 0xc4, 0x77, 0x5b, 0xc7, 0xb8, - 0xc5, 0x47, 0x90, 0xa6, 0x23, 0x21, 0x11, 0x8c, 0xd6, 0x07, 0x38, 0x28, 0x22, 0x6d, 0xf4, 0x01, - 0x80, 0x62, 0xdb, 0xa6, 0xda, 0x1a, 0x7a, 0x8a, 0x37, 0xa6, 0xcf, 0x64, 0xc7, 0xe1, 0xdb, 0xbd, - 0xca, 0xa7, 0xb4, 0xea, 0x89, 0xfa, 0xa6, 0xe5, 0x53, 0x28, 0x1e, 0x42, 0x29, 0x28, 0xeb, 0xa4, - 0xf1, 0x6c, 0x0c, 0xc1, 0x34, 0x9e, 0xa1, 0x32, 0x9e, 0xc6, 0xbb, 0x20, 0x20, 0xc9, 0x6a, 0x2a, - 0xb4, 0x23, 0xfe, 0x2c, 0x01, 0x4b, 0xfe, 0xa3, 0xf3, 0x98, 0x13, 0xb5, 0x6b, 0x53, 0x12, 0xb5, - 0x7c, 0x57, 0xb1, 0xde, 0x65, 0x79, 0xda, 0x95, 0x89, 0x3c, 0x2d, 0xdb, 0x55, 0xac, 0x53, 0x92, - 0xa6, 0xbd, 0x03, 0x79, 0xfb, 0x5c, 0xbe, 0x64, 0xa6, 0x96, 0xb3, 0xcf, 0xeb, 0x51, 0x72, 0xb5, - 0x4f, 0xe3, 0x90, 0x73, 0x2d, 0x10, 0x52, 0x2f, 0xf2, 0x0c, 0x98, 0xf0, 0x57, 0x32, 0x58, 0xcd, - 0x28, 0xe9, 0xd6, 0x8c, 0xde, 0x72, 0x7d, 0x70, 0x2a, 0xea, 0x95, 0x9b, 0x73, 0xa9, 0xcc, 0x1d, - 0xef, 0xeb, 0x90, 0x77, 0x4f, 0x23, 0xc1, 0xd8, 0x4a, 0xa7, 0x63, 0x62, 0xcb, 0xe2, 0xd1, 0xdb, - 0xe9, 0xd2, 0x1a, 0x99, 0xfe, 0x09, 0xaf, 0x95, 0x24, 0x25, 0xd6, 0x11, 0x3b, 0x50, 0x1e, 0x3b, - 0xca, 0xe8, 0x75, 0xc8, 0x1a, 0xc3, 0x96, 0xec, 0x6c, 0x92, 0xb1, 0x07, 0x3c, 0x0e, 0x7a, 0x1b, - 0xb6, 0xfa, 0x6a, 0xfb, 0x1e, 0xbe, 0x70, 0x06, 0x63, 0x0c, 0x5b, 0xf7, 0xd8, 0x5e, 0x62, 0x7f, - 0x49, 0xf8, 0xff, 0x32, 0x82, 0x9c, 0x73, 0x34, 0xd0, 0x0f, 0x20, 0xef, 0x7a, 0x09, 0xb7, 0x74, - 0x1a, 0xea, 0x5e, 0xb8, 0x7a, 0x4f, 0x04, 0xdd, 0x82, 0x65, 0x4b, 0xed, 0x6a, 0xb8, 0x23, 0x7b, - 0x28, 0x9f, 0xfe, 0x2d, 0x27, 0x95, 0xd9, 0x87, 0x03, 0x07, 0xe2, 0x8b, 0xff, 0x8e, 0x43, 0xce, - 0xb9, 0xf2, 0x46, 0x2f, 0xfb, 0x4e, 0x5f, 0x69, 0x5a, 0x44, 0xe0, 0x8c, 0x5e, 0x79, 0x2e, 0x38, - 0xd6, 0xc4, 0xe2, 0x63, 0x0d, 0xab, 0x1f, 0x38, 0x95, 0xe3, 0xd4, 0xc2, 0x95, 0xe3, 0x17, 0x01, - 0xd9, 0xba, 0xad, 0xf4, 0xe5, 0x91, 0x6e, 0xab, 0x5a, 0x57, 0x66, 0xc6, 0x66, 0x07, 0xa5, 0x42, - 0xbf, 0xdc, 0xa7, 0x1f, 0x8e, 0xa9, 0xdd, 0x7f, 0x1a, 0x87, 0x9c, 0x9b, 0x9a, 0x2e, 0x5a, 0xbc, - 0x5b, 0x83, 0x0c, 0xcf, 0xbe, 0x58, 0xf5, 0x8e, 0xf7, 0xdc, 0x42, 0x49, 0xca, 0x57, 0x28, 0x11, - 0x20, 0x37, 0xc0, 0xb6, 0x42, 0x4f, 0x3d, 0xbb, 0x68, 0x71, 0xfb, 0xb7, 0x5e, 0x83, 0x82, 0xaf, - 0xf0, 0x49, 0x1c, 0xc1, 0x61, 0xfd, 0xdd, 0x4a, 0x4c, 0xc8, 0x7e, 0xfa, 0xf9, 0xf5, 0xe4, 0x21, - 0xfe, 0x84, 0xec, 0x59, 0xa9, 0x5e, 0x6b, 0xd4, 0x6b, 0xf7, 0x2a, 0x71, 0xa1, 0xf0, 0xe9, 0xe7, - 0xd7, 0xb3, 0x12, 0xa6, 0xb7, 0xd2, 0xb7, 0x1a, 0xb0, 0xe4, 0x5f, 0x95, 0x60, 0x66, 0x81, 0xa0, - 0x74, 0xf7, 0xf4, 0xf8, 0x60, 0xbf, 0xb6, 0xd3, 0xac, 0xcb, 0xf7, 0x8f, 0x9a, 0xf5, 0x4a, 0x1c, - 0x3d, 0x09, 0x2b, 0x07, 0xfb, 0x3f, 0x6c, 0x34, 0xe5, 0xda, 0xc1, 0x7e, 0xfd, 0xb0, 0x29, 0xef, - 0x34, 0x9b, 0x3b, 0xb5, 0x7b, 0x95, 0xc4, 0xf6, 0x17, 0x45, 0x28, 0xef, 0xec, 0xd6, 0xf6, 0x49, - 0xf2, 0xa9, 0xb6, 0x15, 0x7a, 0x0b, 0x56, 0x83, 0x14, 0xbd, 0xe7, 0x9a, 0xf9, 0x16, 0x4e, 0x98, - 0x5d, 0xaf, 0x40, 0x7b, 0x90, 0xa6, 0x57, 0x60, 0x68, 0xf6, 0xe3, 0x38, 0x61, 0x4e, 0x01, 0x83, - 0x0c, 0x86, 0x1e, 0x8f, 0x99, 0xaf, 0xe5, 0x84, 0xd9, 0xf5, 0x0c, 0x24, 0x41, 0xde, 0x83, 0xd0, - 0xf3, 0x5f, 0x8f, 0x09, 0x11, 0x9c, 0x0d, 0x3a, 0x80, 0xac, 0x73, 0xeb, 0x31, 0xef, 0x3d, 0x9b, - 0x30, 0xb7, 0xe0, 0x40, 0xcc, 0xc5, 0x6e, 0xa7, 0x66, 0x3f, 0xce, 0x13, 0xe6, 0x54, 0x4f, 0xd0, - 0x3e, 0x64, 0x38, 0x2c, 0x9c, 0xf3, 0x46, 0x4d, 0x98, 0x57, 0x40, 0x20, 0x46, 0xf3, 0xee, 0xfd, - 0xe6, 0x3f, 0x39, 0x14, 0x22, 0x14, 0x86, 0xd0, 0x29, 0x80, 0xef, 0x2e, 0x2a, 0xc2, 0x5b, 0x42, - 0x21, 0x4a, 0xc1, 0x07, 0x1d, 0x41, 0xce, 0xbd, 0x1a, 0x98, 0xfb, 0xb2, 0x4f, 0x98, 0x5f, 0x79, - 0x41, 0x0f, 0xa0, 0x18, 0x84, 0xc4, 0xd1, 0xde, 0xeb, 0x09, 0x11, 0x4b, 0x2a, 0x44, 0x7f, 0x10, - 0x1f, 0x47, 0x7b, 0xbf, 0x27, 0x44, 0xac, 0xb0, 0xa0, 0x8f, 0x60, 0x79, 0x12, 0xbf, 0x46, 0x7f, - 0xce, 0x27, 0x2c, 0x50, 0x73, 0x41, 0x03, 0x40, 0x53, 0x70, 0xef, 0x02, 0xaf, 0xfb, 0x84, 0x45, - 0x4a, 0x30, 0xa8, 0x03, 0xe5, 0x71, 0x30, 0x19, 0xf5, 0xb5, 0x9f, 0x10, 0xb9, 0x1c, 0xc3, 0xfe, - 0x12, 0x84, 0x5c, 0x51, 0x5f, 0xff, 0x09, 0x91, 0xab, 0x33, 0xe4, 0x38, 0xf8, 0xe0, 0x6d, 0x84, - 0xd7, 0x80, 0x42, 0x94, 0x3a, 0x0d, 0x32, 0x60, 0x65, 0x1a, 0xac, 0x5d, 0xe4, 0x71, 0xa0, 0xb0, - 0x50, 0xf9, 0x86, 0xec, 0xe7, 0x20, 0xd4, 0x8a, 0xf6, 0x58, 0x50, 0x88, 0x58, 0xc7, 0xd9, 0xad, - 0x7f, 0xf9, 0xcd, 0x7a, 0xfc, 0xab, 0x6f, 0xd6, 0xe3, 0x7f, 0xff, 0x66, 0x3d, 0xfe, 0xd9, 0xb7, - 0xeb, 0xb1, 0xaf, 0xbe, 0x5d, 0x8f, 0xfd, 0xe5, 0xdb, 0xf5, 0xd8, 0x8f, 0x5f, 0xe8, 0xaa, 0x76, - 0x6f, 0xd8, 0xda, 0x6c, 0xeb, 0x83, 0x2d, 0xff, 0x5b, 0xf1, 0x69, 0xef, 0xd7, 0x5b, 0x19, 0x9a, - 0x49, 0xdc, 0xfe, 0x4f, 0x00, 0x00, 0x00, 0xff, 0xff, 0x67, 0x9a, 0x73, 0x47, 0xdf, 0x2e, 0x00, - 0x00, + // 3208 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe4, 0x5a, 0x4d, 0x6c, 0x1b, 0xc7, + 0x15, 0xe6, 0xff, 0xcf, 0xe3, 0xaf, 0x46, 0x8e, 0x43, 0x33, 0xb6, 0xe4, 0xac, 0x91, 0xc4, 0x71, + 0x1c, 0xb9, 0x91, 0x9b, 0xd4, 0x41, 0xd2, 0x26, 0x12, 0x4d, 0x95, 0x8a, 0x15, 0x49, 0x1d, 0x51, + 0x0e, 0xd2, 0x26, 0xde, 0x2c, 0xc9, 0x11, 0xb9, 0x31, 0xb9, 0xbb, 0xd9, 0x5d, 0x32, 0x92, 0x8f, + 0xfd, 0xb9, 0x04, 0x2d, 0x90, 0x63, 0x81, 0x22, 0xb7, 0x1e, 0x7a, 0x2d, 0xd0, 0x43, 0x4f, 0x3d, + 0x15, 0x68, 0x80, 0xf6, 0x90, 0x63, 0x0f, 0x45, 0x5a, 0x24, 0xb7, 0x5e, 0x7b, 0xe8, 0xa9, 0x40, + 0x31, 0x3f, 0xfb, 0x47, 0x72, 0xf9, 0x53, 0x39, 0xa7, 0xde, 0x66, 0xde, 0xbe, 0xf7, 0x76, 0xe6, + 0xcd, 0xcf, 0x7b, 0xdf, 0x7b, 0x03, 0x4f, 0xd9, 0x44, 0xeb, 0x10, 0x73, 0xa0, 0x6a, 0xf6, 0x2d, + 0xa5, 0xd5, 0x56, 0x6f, 0xd9, 0x67, 0x06, 0xb1, 0x36, 0x0c, 0x53, 0xb7, 0x75, 0x54, 0xf2, 0x3e, + 0x6e, 0xd0, 0x8f, 0xd5, 0x2b, 0x3e, 0xee, 0xb6, 0x79, 0x66, 0xd8, 0xfa, 0x2d, 0xc3, 0xd4, 0xf5, + 0x13, 0xce, 0x5f, 0xbd, 0xec, 0xfb, 0xcc, 0xf4, 0xf8, 0xb5, 0x05, 0xbe, 0x0a, 0xe1, 0x87, 0xe4, + 0xcc, 0xf9, 0x7a, 0x65, 0x42, 0xd6, 0x50, 0x4c, 0x65, 0xe0, 0x7c, 0x5e, 0xef, 0xea, 0x7a, 0xb7, + 0x4f, 0x6e, 0xb1, 0x5e, 0x6b, 0x78, 0x72, 0xcb, 0x56, 0x07, 0xc4, 0xb2, 0x95, 0x81, 0x21, 0x18, + 0x2e, 0x74, 0xf5, 0xae, 0xce, 0x9a, 0xb7, 0x68, 0x8b, 0x53, 0xa5, 0x7f, 0x01, 0xa4, 0x31, 0xf9, + 0x68, 0x48, 0x2c, 0x1b, 0x6d, 0x42, 0x82, 0xb4, 0x7b, 0x7a, 0x25, 0x7a, 0x35, 0x7a, 0x3d, 0xb7, + 0x79, 0x79, 0x63, 0x6c, 0x72, 0x1b, 0x82, 0xaf, 0xde, 0xee, 0xe9, 0x8d, 0x08, 0x66, 0xbc, 0xe8, + 0x65, 0x48, 0x9e, 0xf4, 0x87, 0x56, 0xaf, 0x12, 0x63, 0x42, 0x57, 0xc2, 0x84, 0x76, 0x28, 0x53, + 0x23, 0x82, 0x39, 0x37, 0xfd, 0x95, 0xaa, 0x9d, 0xe8, 0x95, 0xf8, 0xec, 0x5f, 0xed, 0x6a, 0x27, + 0xec, 0x57, 0x94, 0x17, 0x6d, 0x03, 0xa8, 0x9a, 0x6a, 0xcb, 0xed, 0x9e, 0xa2, 0x6a, 0x95, 0x04, + 0x93, 0x7c, 0x3a, 0x5c, 0x52, 0xb5, 0x6b, 0x94, 0xb1, 0x11, 0xc1, 0x59, 0xd5, 0xe9, 0xd0, 0xe1, + 0x7e, 0x34, 0x24, 0xe6, 0x59, 0x25, 0x39, 0x7b, 0xb8, 0x3f, 0xa0, 0x4c, 0x74, 0xb8, 0x8c, 0x1b, + 0xd5, 0x21, 0xd7, 0x22, 0x5d, 0x55, 0x93, 0x5b, 0x7d, 0xbd, 0xfd, 0xb0, 0x92, 0x62, 0xc2, 0x52, + 0x98, 0xf0, 0x36, 0x65, 0xdd, 0xa6, 0x9c, 0x8d, 0x08, 0x86, 0x96, 0xdb, 0x43, 0xaf, 0x43, 0xa6, + 0xdd, 0x23, 0xed, 0x87, 0xb2, 0x7d, 0x5a, 0x49, 0x33, 0x1d, 0xeb, 0x61, 0x3a, 0x6a, 0x94, 0xaf, + 0x79, 0xda, 0x88, 0xe0, 0x74, 0x9b, 0x37, 0xe9, 0xfc, 0x3b, 0xa4, 0xaf, 0x8e, 0x88, 0x49, 0xe5, + 0x33, 0xb3, 0xe7, 0x7f, 0x97, 0x73, 0x32, 0x0d, 0xd9, 0x8e, 0xd3, 0x41, 0x6f, 0x40, 0x96, 0x68, + 0x1d, 0x31, 0x8d, 0x2c, 0x53, 0x71, 0x35, 0x74, 0x9d, 0xb5, 0x8e, 0x33, 0x89, 0x0c, 0x11, 0x6d, + 0x74, 0x07, 0x52, 0x6d, 0x7d, 0x30, 0x50, 0xed, 0x0a, 0x30, 0xe9, 0xb5, 0xd0, 0x09, 0x30, 0xae, + 0x46, 0x04, 0x0b, 0x7e, 0xb4, 0x0f, 0xc5, 0xbe, 0x6a, 0xd9, 0xb2, 0xa5, 0x29, 0x86, 0xd5, 0xd3, + 0x6d, 0xab, 0x92, 0x63, 0x1a, 0x9e, 0x09, 0xd3, 0xb0, 0xa7, 0x5a, 0xf6, 0x91, 0xc3, 0xdc, 0x88, + 0xe0, 0x42, 0xdf, 0x4f, 0xa0, 0xfa, 0xf4, 0x93, 0x13, 0x62, 0xba, 0x0a, 0x2b, 0xf9, 0xd9, 0xfa, + 0x0e, 0x28, 0xb7, 0x23, 0x4f, 0xf5, 0xe9, 0x7e, 0x02, 0xfa, 0x11, 0xac, 0xf6, 0x75, 0xa5, 0xe3, + 0xaa, 0x93, 0xdb, 0xbd, 0xa1, 0xf6, 0xb0, 0x52, 0x60, 0x4a, 0x9f, 0x0f, 0x1d, 0xa4, 0xae, 0x74, + 0x1c, 0x15, 0x35, 0x2a, 0xd0, 0x88, 0xe0, 0x95, 0xfe, 0x38, 0x11, 0x3d, 0x80, 0x0b, 0x8a, 0x61, + 0xf4, 0xcf, 0xc6, 0xb5, 0x17, 0x99, 0xf6, 0x1b, 0x61, 0xda, 0xb7, 0xa8, 0xcc, 0xb8, 0x7a, 0xa4, + 0x4c, 0x50, 0x51, 0x13, 0xca, 0x86, 0x49, 0x0c, 0xc5, 0x24, 0xb2, 0x61, 0xea, 0x86, 0x6e, 0x29, + 0xfd, 0x4a, 0x89, 0xe9, 0x7e, 0x2e, 0x4c, 0xf7, 0x21, 0xe7, 0x3f, 0x14, 0xec, 0x8d, 0x08, 0x2e, + 0x19, 0x41, 0x12, 0xd7, 0xaa, 0xb7, 0x89, 0x65, 0x79, 0x5a, 0xcb, 0xf3, 0xb4, 0x32, 0xfe, 0xa0, + 0xd6, 0x00, 0x89, 0x1e, 0x26, 0x72, 0x4a, 0xc5, 0xe5, 0x91, 0x6e, 0x93, 0xca, 0xca, 0xec, 0xc3, + 0x54, 0x67, 0xac, 0xf7, 0x75, 0x9b, 0xd0, 0xc3, 0x44, 0xdc, 0x1e, 0x52, 0xe0, 0x89, 0x11, 0x31, + 0xd5, 0x93, 0x33, 0xa6, 0x46, 0x66, 0x5f, 0x2c, 0x55, 0xd7, 0x2a, 0x88, 0x29, 0x7c, 0x21, 0x4c, + 0xe1, 0x7d, 0x26, 0x44, 0x55, 0xd4, 0x1d, 0x91, 0x46, 0x04, 0xaf, 0x8e, 0x26, 0xc9, 0x74, 0x8b, + 0x9d, 0xa8, 0x9a, 0xd2, 0x57, 0x1f, 0x11, 0x71, 0x64, 0x56, 0x67, 0x6f, 0xb1, 0x1d, 0xc1, 0xed, + 0x9c, 0x9b, 0xc2, 0x89, 0x9f, 0xb0, 0x9d, 0x86, 0xe4, 0x48, 0xe9, 0x0f, 0x89, 0xf4, 0x1c, 0xe4, + 0x7c, 0x97, 0x29, 0xaa, 0x40, 0x7a, 0x40, 0x2c, 0x4b, 0xe9, 0x12, 0x76, 0xf7, 0x66, 0xb1, 0xd3, + 0x95, 0x7e, 0x1a, 0x83, 0x95, 0x89, 0x5b, 0x05, 0x21, 0x48, 0xf4, 0x14, 0xab, 0xc7, 0x98, 0xf3, + 0x98, 0xb5, 0xd1, 0x2b, 0x90, 0xea, 0x11, 0xa5, 0x43, 0x4c, 0x71, 0x13, 0x57, 0xfc, 0x63, 0xe4, + 0x5e, 0xa6, 0xc1, 0xbe, 0x6f, 0x27, 0x3e, 0xff, 0x72, 0x3d, 0x82, 0x05, 0x37, 0x3a, 0x80, 0x72, + 0x5f, 0xb1, 0x6c, 0x99, 0x9f, 0x52, 0xd9, 0x77, 0x2b, 0x4f, 0xde, 0x4d, 0x7b, 0x8a, 0x73, 0xae, + 0xe9, 0xc5, 0x2c, 0x14, 0x15, 0xfb, 0x01, 0x2a, 0xc2, 0x70, 0xa1, 0x75, 0xf6, 0x48, 0xd1, 0x6c, + 0x55, 0x23, 0xf2, 0x48, 0xe9, 0xab, 0x1d, 0xc5, 0xd6, 0x4d, 0xab, 0x92, 0xb8, 0x1a, 0xbf, 0x9e, + 0xdb, 0xbc, 0x34, 0xa1, 0xb4, 0x3e, 0x52, 0x3b, 0x44, 0x6b, 0x13, 0xa1, 0x6e, 0xd5, 0x15, 0xbe, + 0xef, 0xca, 0x4a, 0x45, 0xc8, 0xfb, 0xfd, 0x88, 0xf4, 0x69, 0xd4, 0x35, 0x20, 0xfb, 0x67, 0x05, + 0xd2, 0x23, 0x62, 0xb2, 0xd5, 0x17, 0x06, 0x14, 0x5d, 0x74, 0x0d, 0x0a, 0x6c, 0xe5, 0x64, 0xe7, + 0x3b, 0xb5, 0x4e, 0x02, 0xe7, 0x19, 0xf1, 0xbe, 0x60, 0x5a, 0x87, 0x9c, 0xb1, 0x69, 0xb8, 0x2c, + 0x71, 0xc6, 0x02, 0xc6, 0xa6, 0xe1, 0x30, 0x3c, 0x0d, 0x79, 0x3a, 0x56, 0x97, 0x23, 0xc1, 0x7e, + 0x92, 0xa3, 0x34, 0xc1, 0x22, 0xfd, 0x25, 0x06, 0xe5, 0x71, 0xdf, 0x83, 0xee, 0x40, 0x82, 0xba, + 0x61, 0xe1, 0x51, 0xab, 0x1b, 0xdc, 0x47, 0x6f, 0x38, 0x3e, 0x7a, 0xa3, 0xe9, 0xf8, 0xe8, 0xed, + 0x0c, 0x9d, 0xfc, 0xa7, 0x7f, 0x5f, 0x8f, 0x62, 0x26, 0x81, 0x2e, 0x51, 0x57, 0xa1, 0xa8, 0x9a, + 0xac, 0x76, 0xd8, 0x90, 0xb3, 0xd4, 0x0f, 0x28, 0xaa, 0xb6, 0xdb, 0x41, 0x7b, 0x50, 0x6e, 0xeb, + 0x9a, 0x45, 0x34, 0x6b, 0x68, 0xc9, 0x3c, 0x06, 0x10, 0x2b, 0xf6, 0xf4, 0xe4, 0x9a, 0xd7, 0x1c, + 0xce, 0x43, 0xc6, 0x88, 0x4b, 0xed, 0x20, 0x01, 0xed, 0x00, 0x4c, 0x2c, 0xd2, 0xa4, 0x4b, 0x70, + 0xd7, 0xe2, 0xd8, 0xe8, 0x28, 0xb6, 0xb3, 0x56, 0x3e, 0x49, 0xf4, 0x2c, 0x94, 0x14, 0xc3, 0x90, + 0x2d, 0x5b, 0xb1, 0x89, 0xdc, 0x3a, 0xb3, 0x89, 0xc5, 0x7c, 0x6c, 0x1e, 0x17, 0x14, 0xc3, 0x38, + 0xa2, 0xd4, 0x6d, 0x4a, 0x44, 0xcf, 0x40, 0x91, 0xba, 0x63, 0x55, 0xe9, 0xcb, 0x3d, 0xa2, 0x76, + 0x7b, 0x36, 0xf3, 0xa6, 0x71, 0x5c, 0x10, 0xd4, 0x06, 0x23, 0x4a, 0x1d, 0x77, 0xc5, 0x99, 0x2b, + 0xa6, 0x5b, 0xbe, 0xa3, 0xd8, 0x8a, 0xb3, 0xe5, 0x69, 0x9b, 0xd2, 0x0c, 0xc5, 0xee, 0x09, 0xfb, + 0xb0, 0x36, 0xba, 0x48, 0x8f, 0x01, 0x53, 0x1b, 0x67, 0x6a, 0x45, 0x0f, 0x5d, 0x80, 0xa4, 0x61, + 0xea, 0x23, 0xc2, 0x96, 0x2e, 0x83, 0x79, 0x47, 0x92, 0xdc, 0x35, 0x73, 0xfd, 0x25, 0x2a, 0x42, + 0xcc, 0x3e, 0x15, 0xff, 0x89, 0xd9, 0xa7, 0xd2, 0xf3, 0x50, 0x1a, 0x73, 0x88, 0xbe, 0x9f, 0x44, + 0xfd, 0x3f, 0x91, 0x30, 0x14, 0x83, 0xee, 0x7b, 0x5c, 0x19, 0xfa, 0x16, 0x24, 0xe8, 0xba, 0xb0, + 0x21, 0x17, 0xa7, 0xc4, 0x3d, 0x42, 0xae, 0x79, 0x66, 0x10, 0xcc, 0x38, 0xa5, 0x12, 0x14, 0x02, + 0x1e, 0x55, 0xba, 0x08, 0x17, 0xa6, 0x39, 0x48, 0xa9, 0xe7, 0xd2, 0x03, 0x8e, 0x0e, 0xbd, 0x0c, + 0x19, 0xd7, 0x43, 0xf2, 0x7d, 0x38, 0x79, 0x06, 0x1d, 0x66, 0xec, 0xb2, 0xd2, 0x0d, 0x48, 0xd7, + 0x93, 0xdd, 0x33, 0x31, 0x36, 0xfe, 0xb4, 0x62, 0x18, 0x0d, 0xc5, 0xea, 0x49, 0x1f, 0x40, 0x25, + 0xcc, 0xfb, 0x8d, 0x99, 0x26, 0xe1, 0xda, 0xff, 0x22, 0xa4, 0x4e, 0x74, 0x73, 0xa0, 0xd8, 0x4c, + 0x59, 0x01, 0x8b, 0x1e, 0x5d, 0x17, 0xee, 0x09, 0xe3, 0x8c, 0xcc, 0x3b, 0x92, 0x0c, 0x97, 0x42, + 0x3d, 0x20, 0x15, 0x51, 0xb5, 0x0e, 0xe1, 0x66, 0x2d, 0x60, 0xde, 0xf1, 0x14, 0xf1, 0xc1, 0xf2, + 0x0e, 0xfd, 0xad, 0xc5, 0xe6, 0xca, 0xf4, 0x67, 0xb1, 0xe8, 0x49, 0xbf, 0x88, 0xc2, 0xc5, 0xe9, + 0x7e, 0x10, 0x5d, 0x01, 0xe0, 0x37, 0x86, 0xd8, 0x6f, 0xf1, 0xeb, 0x79, 0x9c, 0x65, 0x94, 0xbb, + 0x74, 0xd3, 0x3d, 0x0b, 0x25, 0xef, 0xb3, 0x6c, 0xa9, 0x8f, 0xf8, 0x62, 0xc6, 0x71, 0xc1, 0xe5, + 0x39, 0x52, 0x1f, 0x11, 0x74, 0x13, 0x92, 0xd4, 0x2f, 0xd1, 0xa3, 0x49, 0x8f, 0xd4, 0xc5, 0xc9, + 0xa3, 0x49, 0x7d, 0x0d, 0xe6, 0x4c, 0xd2, 0x1b, 0xee, 0x35, 0xef, 0xf9, 0x3b, 0x74, 0x03, 0x12, + 0xcc, 0x43, 0xf2, 0x55, 0x0b, 0xd3, 0xc0, 0x78, 0xa4, 0x06, 0x54, 0xc3, 0xfd, 0xdb, 0x52, 0x9a, + 0x7e, 0x15, 0xf3, 0x99, 0x26, 0xe8, 0xb9, 0x1f, 0xa7, 0xdf, 0x29, 0x43, 0xdc, 0x3e, 0xe5, 0xd6, + 0xc9, 0x63, 0xda, 0x9c, 0xea, 0x89, 0x12, 0xdf, 0x84, 0x27, 0x4a, 0x9e, 0xc3, 0x13, 0xfd, 0x36, + 0xe6, 0x1e, 0xb3, 0x80, 0xb3, 0x77, 0xe6, 0x13, 0xf5, 0xe6, 0xe3, 0x58, 0x2b, 0xe6, 0xb3, 0x56, + 0xd8, 0xf5, 0xe4, 0x59, 0x31, 0x71, 0x6e, 0xef, 0x9d, 0xfc, 0x26, 0x6c, 0x96, 0x3a, 0x87, 0xcd, + 0xfe, 0x9c, 0x83, 0x0c, 0x26, 0x96, 0x41, 0x3d, 0x0f, 0xda, 0x86, 0x2c, 0x39, 0x6d, 0x13, 0xc3, + 0x76, 0x9c, 0xf5, 0xf4, 0xd8, 0x8f, 0x73, 0xd7, 0x1d, 0x4e, 0x8a, 0x62, 0x5c, 0x31, 0x74, 0x5b, + 0x00, 0xd5, 0x70, 0xcc, 0x29, 0xc4, 0xfd, 0x48, 0xf5, 0x15, 0x07, 0xa9, 0xc6, 0x43, 0x81, 0x0b, + 0x97, 0x1a, 0x83, 0xaa, 0xb7, 0x05, 0x54, 0x4d, 0xcc, 0xf9, 0x59, 0x00, 0xab, 0xd6, 0x02, 0x58, + 0x35, 0x39, 0x67, 0x9a, 0x21, 0x60, 0xf5, 0x15, 0x07, 0xac, 0xa6, 0xe6, 0x8c, 0x78, 0x0c, 0xad, + 0xee, 0x04, 0xd1, 0x2a, 0x47, 0x9a, 0xd7, 0x42, 0xa5, 0x43, 0xe1, 0xea, 0x77, 0x7d, 0x70, 0x35, + 0x13, 0x8a, 0x15, 0xb9, 0x92, 0x29, 0x78, 0xb5, 0x16, 0xc0, 0xab, 0xd9, 0x39, 0x36, 0x08, 0x01, + 0xac, 0x6f, 0xfa, 0x01, 0x2b, 0x84, 0x62, 0x5e, 0xb1, 0xde, 0xd3, 0x10, 0xeb, 0xab, 0x2e, 0x62, + 0xcd, 0x85, 0x42, 0x6e, 0x31, 0x87, 0x71, 0xc8, 0x7a, 0x30, 0x01, 0x59, 0x39, 0xc4, 0x7c, 0x36, + 0x54, 0xc5, 0x1c, 0xcc, 0x7a, 0x30, 0x81, 0x59, 0x0b, 0x73, 0x14, 0xce, 0x01, 0xad, 0xef, 0x4d, + 0x07, 0xad, 0xe1, 0xb0, 0x52, 0x0c, 0x73, 0x31, 0xd4, 0x2a, 0x87, 0xa0, 0xd6, 0x52, 0x28, 0xc2, + 0xe2, 0xea, 0x17, 0x86, 0xad, 0xc7, 0x53, 0x60, 0x2b, 0x07, 0x98, 0xd7, 0x43, 0x95, 0x2f, 0x80, + 0x5b, 0x8f, 0xa7, 0xe0, 0xd6, 0x95, 0xb9, 0x6a, 0xe7, 0x02, 0xd7, 0x9d, 0x20, 0x70, 0x45, 0x73, + 0xce, 0x55, 0x28, 0x72, 0x6d, 0x85, 0x21, 0x57, 0x8e, 0x2e, 0x6f, 0x86, 0x6a, 0x5c, 0x02, 0xba, + 0x1e, 0x4c, 0x40, 0xd7, 0x0b, 0x73, 0x76, 0xda, 0xa2, 0xd8, 0xf5, 0x79, 0x1a, 0xaa, 0x8c, 0x5d, + 0xcf, 0x34, 0xfa, 0x22, 0xa6, 0xa9, 0x9b, 0x02, 0x7e, 0xf1, 0x8e, 0x74, 0x9d, 0x06, 0xf1, 0xde, + 0x55, 0x3c, 0x03, 0xe7, 0xb2, 0x28, 0xd7, 0x77, 0xfd, 0x4a, 0xbf, 0x8f, 0x7a, 0xb2, 0xcc, 0x31, + 0xf9, 0x01, 0x40, 0x56, 0x00, 0x00, 0x1f, 0xec, 0x8b, 0x05, 0x61, 0xdf, 0x3a, 0xe4, 0x68, 0xf4, + 0x3a, 0x86, 0xe8, 0x14, 0xc3, 0x45, 0x74, 0x37, 0x60, 0x85, 0x39, 0x4e, 0x1e, 0xcb, 0x09, 0x9f, + 0x9c, 0x60, 0x3e, 0xb9, 0x44, 0x3f, 0x70, 0x2b, 0x70, 0xe7, 0xfc, 0x22, 0xac, 0xfa, 0x78, 0xdd, + 0xa8, 0x98, 0xc3, 0x9b, 0xb2, 0xcb, 0xbd, 0x25, 0xc2, 0xe3, 0x3f, 0x46, 0x3d, 0x0b, 0x79, 0x50, + 0x70, 0x1a, 0x6a, 0x8b, 0x3e, 0x26, 0xd4, 0x16, 0xfb, 0x9f, 0x51, 0x9b, 0x3f, 0xca, 0x8f, 0x07, + 0xa3, 0xfc, 0x7f, 0x47, 0xbd, 0x35, 0x71, 0x31, 0x58, 0x5b, 0xef, 0x10, 0x11, 0x77, 0xb3, 0x36, + 0x0d, 0x7b, 0xfa, 0x7a, 0x57, 0x44, 0xd7, 0xb4, 0x49, 0xb9, 0x5c, 0x7f, 0x99, 0x15, 0xee, 0xd0, + 0x0d, 0xd9, 0x93, 0xcc, 0xc2, 0x22, 0x64, 0x2f, 0x43, 0xfc, 0x21, 0xe1, 0xde, 0x2d, 0x8f, 0x69, + 0x93, 0xf2, 0xb1, 0x4d, 0xc6, 0x7c, 0x56, 0x1e, 0xf3, 0x0e, 0xba, 0x03, 0x59, 0x96, 0x44, 0x97, + 0x75, 0xc3, 0x12, 0x8e, 0xe8, 0x29, 0xff, 0x5c, 0x79, 0xae, 0x7c, 0xe3, 0x90, 0xf2, 0x1c, 0x18, + 0x16, 0xce, 0x18, 0xa2, 0xe5, 0x0b, 0xb7, 0xb2, 0x81, 0x70, 0xeb, 0x32, 0x64, 0xe9, 0xe8, 0x2d, + 0x43, 0x69, 0x13, 0xe6, 0x55, 0xb2, 0xd8, 0x23, 0x48, 0x0f, 0x00, 0x4d, 0xfa, 0x46, 0xd4, 0x80, + 0x14, 0x19, 0x11, 0xcd, 0xe6, 0x31, 0xde, 0x58, 0x14, 0x2d, 0x62, 0x21, 0xa2, 0xd9, 0xdb, 0x15, + 0x6a, 0xe4, 0x7f, 0x7e, 0xb9, 0x5e, 0xe6, 0xdc, 0x37, 0xf5, 0x81, 0x6a, 0x93, 0x81, 0x61, 0x9f, + 0x61, 0x21, 0x2f, 0xfd, 0x2d, 0x46, 0x21, 0x65, 0xc0, 0x6f, 0x4e, 0xb5, 0xad, 0xb3, 0xe5, 0x63, + 0x3e, 0xcc, 0xbb, 0x98, 0xbd, 0xd7, 0x00, 0xba, 0x8a, 0x25, 0x7f, 0xac, 0x68, 0x36, 0xe9, 0x08, + 0xa3, 0xfb, 0x28, 0xa8, 0x0a, 0x19, 0xda, 0x1b, 0x5a, 0xa4, 0x23, 0xe0, 0xb7, 0xdb, 0xf7, 0xcd, + 0x33, 0x7d, 0xbe, 0x79, 0x06, 0xad, 0x9c, 0x19, 0xb3, 0xb2, 0x0f, 0x9a, 0x65, 0xfd, 0xd0, 0x8c, + 0x8e, 0xcd, 0x30, 0x55, 0xdd, 0x54, 0xed, 0x33, 0xb6, 0x34, 0x71, 0xec, 0xf6, 0xd1, 0x35, 0x28, + 0x0c, 0xc8, 0xc0, 0xd0, 0xf5, 0xbe, 0xcc, 0xaf, 0x9b, 0x1c, 0x13, 0xcd, 0x0b, 0x62, 0x9d, 0xdd, + 0x3a, 0x3f, 0x8b, 0x79, 0xe7, 0xcf, 0x83, 0xf5, 0xff, 0x77, 0x06, 0x96, 0x7e, 0xce, 0x32, 0x52, + 0xc1, 0xc8, 0x08, 0x1d, 0xc1, 0x8a, 0x7b, 0xfc, 0xe5, 0x21, 0xbb, 0x16, 0x9c, 0x0d, 0xbd, 0xe8, + 0xfd, 0x51, 0x1e, 0x05, 0xc9, 0x16, 0x7a, 0x17, 0x9e, 0x1c, 0xbb, 0xdb, 0x5c, 0xd5, 0xb1, 0x45, + 0xaf, 0xb8, 0x27, 0x82, 0x57, 0x9c, 0xa3, 0xda, 0x33, 0x56, 0xfc, 0x9c, 0xa7, 0x6e, 0x17, 0x8a, + 0xc1, 0x40, 0x6f, 0xea, 0xf2, 0x5f, 0x83, 0x82, 0x49, 0x6c, 0x45, 0xd5, 0xe4, 0x00, 0x4e, 0xcb, + 0x73, 0xa2, 0x48, 0x4e, 0x1d, 0xc2, 0x13, 0x53, 0x03, 0x3e, 0xf4, 0x1d, 0xc8, 0x7a, 0xb1, 0x62, + 0x34, 0x04, 0x32, 0xb9, 0xc9, 0x16, 0x8f, 0x57, 0xfa, 0x43, 0xd4, 0x53, 0x19, 0x4c, 0xdf, 0xd4, + 0x21, 0x65, 0x12, 0x6b, 0xd8, 0xe7, 0x09, 0x95, 0xe2, 0xe6, 0x8b, 0x8b, 0x85, 0x8a, 0x94, 0x3a, + 0xec, 0xdb, 0x58, 0x08, 0x4b, 0x0f, 0x20, 0xc5, 0x29, 0x28, 0x07, 0xe9, 0xe3, 0xfd, 0x7b, 0xfb, + 0x07, 0xef, 0xec, 0x97, 0x23, 0x08, 0x20, 0xb5, 0x55, 0xab, 0xd5, 0x0f, 0x9b, 0xe5, 0x28, 0xca, + 0x42, 0x72, 0x6b, 0xfb, 0x00, 0x37, 0xcb, 0x31, 0x4a, 0xc6, 0xf5, 0xb7, 0xea, 0xb5, 0x66, 0x39, + 0x8e, 0x56, 0xa0, 0xc0, 0xdb, 0xf2, 0xce, 0x01, 0x7e, 0x7b, 0xab, 0x59, 0x4e, 0xf8, 0x48, 0x47, + 0xf5, 0xfd, 0xbb, 0x75, 0x5c, 0x4e, 0x4a, 0x2f, 0xc1, 0xa5, 0xd0, 0xe0, 0xd2, 0xcb, 0xcd, 0x44, + 0x7d, 0xb9, 0x19, 0xe9, 0x97, 0x31, 0xa8, 0x86, 0x47, 0x8c, 0xe8, 0xad, 0xb1, 0x89, 0x6f, 0x2e, + 0x11, 0x6e, 0x8e, 0xcd, 0x1e, 0x3d, 0x03, 0x45, 0x93, 0x9c, 0x10, 0xbb, 0xdd, 0xe3, 0x11, 0x2c, + 0x77, 0x99, 0x05, 0x5c, 0x10, 0x54, 0x26, 0x64, 0x71, 0xb6, 0x0f, 0x49, 0xdb, 0x96, 0xf9, 0x5d, + 0xc4, 0x37, 0x5d, 0x96, 0xb2, 0x51, 0xea, 0x11, 0x27, 0x4a, 0x1f, 0x2c, 0x65, 0xcb, 0x2c, 0x24, + 0x71, 0xbd, 0x89, 0xdf, 0x2d, 0xc7, 0x11, 0x82, 0x22, 0x6b, 0xca, 0x47, 0xfb, 0x5b, 0x87, 0x47, + 0x8d, 0x03, 0x6a, 0xcb, 0x55, 0x28, 0x39, 0xb6, 0x74, 0x88, 0x49, 0xe9, 0x0e, 0x3c, 0x19, 0x12, + 0xee, 0xce, 0x49, 0x4f, 0x49, 0xef, 0x79, 0xbe, 0xcb, 0x97, 0x49, 0xda, 0x81, 0xe2, 0x58, 0xa8, + 0x19, 0x9d, 0xc4, 0x42, 0x5e, 0x26, 0xc8, 0x0d, 0x23, 0x71, 0x61, 0xe4, 0xef, 0x4a, 0xbf, 0x8e, + 0xc2, 0x53, 0x33, 0x82, 0x51, 0x74, 0x6f, 0x6c, 0xcd, 0x6e, 0x2f, 0x13, 0xca, 0x8e, 0x6f, 0xd9, + 0x3b, 0x0b, 0x99, 0xf9, 0x68, 0x6f, 0xeb, 0xa8, 0x11, 0xdc, 0xb2, 0xd2, 0xef, 0x62, 0x7e, 0xfb, + 0x05, 0x83, 0xf8, 0x8b, 0x90, 0x52, 0xda, 0x34, 0x6c, 0x65, 0x43, 0xcc, 0x60, 0xd1, 0x9b, 0x91, + 0xef, 0x44, 0xaf, 0x03, 0xd8, 0xa7, 0x32, 0x1f, 0x95, 0x73, 0x0f, 0x4d, 0xe6, 0x01, 0xea, 0xa7, + 0xa4, 0xdd, 0x3c, 0x15, 0x73, 0xc8, 0xda, 0xa2, 0x65, 0xa1, 0xb7, 0xa7, 0xdd, 0xb8, 0x0b, 0xe6, + 0xd9, 0x97, 0xbb, 0x6b, 0x93, 0xe7, 0xbb, 0x6b, 0xa5, 0x3f, 0xc5, 0xbc, 0x4b, 0x28, 0x98, 0xdc, + 0xfa, 0xb6, 0x97, 0xdc, 0x5a, 0x08, 0xc3, 0xf3, 0x04, 0xd8, 0x54, 0x5f, 0x13, 0xfb, 0xe6, 0x7c, + 0x4d, 0xfc, 0xb1, 0xf9, 0x9a, 0xc4, 0x39, 0x7d, 0xcd, 0xfb, 0x50, 0x0c, 0x66, 0xdb, 0xe8, 0x15, + 0x68, 0xea, 0x43, 0xad, 0xc3, 0x76, 0x5d, 0x12, 0xf3, 0x0e, 0x7a, 0xd9, 0x49, 0x12, 0xc7, 0x42, + 0x7c, 0x05, 0x3d, 0x20, 0xbe, 0x6c, 0x9d, 0xc8, 0x16, 0x3f, 0x82, 0x24, 0x1b, 0x09, 0xf5, 0x60, + 0xac, 0x9c, 0x20, 0x40, 0x11, 0x6d, 0xa3, 0xf7, 0x01, 0x14, 0xdb, 0x36, 0xd5, 0xd6, 0xd0, 0x53, + 0xbc, 0x3e, 0x7d, 0x26, 0x5b, 0x0e, 0xdf, 0xf6, 0x65, 0x31, 0xa5, 0x0b, 0x9e, 0xa8, 0x6f, 0x5a, + 0x3e, 0x85, 0xd2, 0x3e, 0x14, 0x83, 0xb2, 0x4e, 0x18, 0xcf, 0xc7, 0x10, 0x0c, 0xe3, 0x39, 0x2a, + 0x13, 0x61, 0xbc, 0x0b, 0x02, 0xe2, 0xbc, 0x04, 0xc3, 0x3a, 0xd2, 0x4f, 0x62, 0x90, 0xf7, 0x1f, + 0x9d, 0xc7, 0x1c, 0xa8, 0x5d, 0x99, 0x12, 0xa8, 0x65, 0xbb, 0x8a, 0xf5, 0x0e, 0x8f, 0xd3, 0x2e, + 0x4d, 0xc4, 0x69, 0xe9, 0xae, 0x62, 0x1d, 0xd3, 0x30, 0xed, 0x6d, 0xc8, 0xda, 0xa7, 0xf2, 0x39, + 0x23, 0xb5, 0x8c, 0x7d, 0x5a, 0x5f, 0x24, 0x56, 0xfb, 0x24, 0x0a, 0x19, 0xd7, 0x02, 0x21, 0xe5, + 0x25, 0xcf, 0x80, 0x31, 0x7f, 0xe1, 0x83, 0x97, 0x98, 0xe2, 0x6e, 0x89, 0xe9, 0x4d, 0xf7, 0x0e, + 0x4e, 0x2c, 0x9a, 0x72, 0x73, 0x92, 0xca, 0xe2, 0xe2, 0x7d, 0x0d, 0xb2, 0xee, 0x69, 0xa4, 0x18, + 0x5b, 0xe9, 0x74, 0x4c, 0x62, 0x59, 0xc2, 0x7b, 0x3b, 0x5d, 0x56, 0x52, 0xd3, 0x3f, 0x16, 0xa5, + 0x95, 0x38, 0xe6, 0x1d, 0xa9, 0x03, 0xa5, 0xb1, 0xa3, 0x8c, 0x5e, 0x83, 0xb4, 0x31, 0x6c, 0xc9, + 0xce, 0x26, 0x19, 0x7b, 0xef, 0xe3, 0xa0, 0xb7, 0x61, 0xab, 0xaf, 0xb6, 0xef, 0x91, 0x33, 0x67, + 0x30, 0xc6, 0xb0, 0x75, 0x8f, 0xef, 0x25, 0xfe, 0x97, 0x98, 0xff, 0x2f, 0x23, 0xc8, 0x38, 0x47, + 0x03, 0x7d, 0x0f, 0xb2, 0xee, 0x2d, 0xe1, 0x56, 0x5a, 0x43, 0xaf, 0x17, 0xa1, 0xde, 0x13, 0x41, + 0x37, 0x60, 0xc5, 0x52, 0xbb, 0x1a, 0xe9, 0xc8, 0x1e, 0xca, 0x67, 0x7f, 0xcb, 0xe0, 0x12, 0xff, + 0xb0, 0xe7, 0x40, 0x7c, 0xe9, 0x3f, 0x51, 0xc8, 0x38, 0x29, 0x6f, 0xf4, 0x92, 0xef, 0xf4, 0x15, + 0xa7, 0x79, 0x04, 0xc1, 0xe8, 0x55, 0xf3, 0x82, 0x63, 0x8d, 0x2d, 0x3f, 0xd6, 0xb0, 0xfa, 0x81, + 0x53, 0x68, 0x4e, 0x2c, 0x5d, 0x68, 0xbe, 0x09, 0xc8, 0xd6, 0x6d, 0xa5, 0x2f, 0x8f, 0x74, 0x5b, + 0xd5, 0xba, 0x32, 0x37, 0x36, 0x3f, 0x28, 0x65, 0xf6, 0xe5, 0x3e, 0xfb, 0x70, 0xc8, 0xec, 0xfe, + 0xe3, 0x28, 0x64, 0xdc, 0xd0, 0x74, 0xd9, 0x5a, 0xdf, 0x45, 0x48, 0x89, 0xe8, 0x8b, 0x17, 0xfb, + 0x44, 0xcf, 0x2d, 0x94, 0x24, 0x7c, 0x85, 0x92, 0x2a, 0x64, 0x06, 0xc4, 0x56, 0xd8, 0xa9, 0xe7, + 0x89, 0x16, 0xb7, 0x7f, 0xe3, 0x55, 0xc8, 0xf9, 0xea, 0xa4, 0xf4, 0x22, 0xd8, 0xaf, 0xbf, 0x53, + 0x8e, 0x54, 0xd3, 0x9f, 0x7c, 0x76, 0x35, 0xbe, 0x4f, 0x3e, 0xa6, 0x7b, 0x16, 0xd7, 0x6b, 0x8d, + 0x7a, 0xed, 0x5e, 0x39, 0x5a, 0xcd, 0x7d, 0xf2, 0xd9, 0xd5, 0x34, 0x26, 0x2c, 0x2b, 0x7d, 0xa3, + 0x01, 0x79, 0xff, 0xaa, 0x04, 0x23, 0x0b, 0x04, 0xc5, 0xbb, 0xc7, 0x87, 0x7b, 0xbb, 0xb5, 0xad, + 0x66, 0x5d, 0xbe, 0x7f, 0xd0, 0xac, 0x97, 0xa3, 0xe8, 0x49, 0x58, 0xdd, 0xdb, 0xfd, 0x7e, 0xa3, + 0x29, 0xd7, 0xf6, 0x76, 0xeb, 0xfb, 0x4d, 0x79, 0xab, 0xd9, 0xdc, 0xaa, 0xdd, 0x2b, 0xc7, 0x36, + 0x7f, 0x93, 0x83, 0xd2, 0xd6, 0x76, 0x6d, 0x97, 0x06, 0x9f, 0x6a, 0x5b, 0x61, 0x59, 0xb0, 0x1a, + 0x24, 0x58, 0x9e, 0x6b, 0xe6, 0xd3, 0xb9, 0xea, 0xec, 0x7a, 0x05, 0xda, 0x81, 0x24, 0x4b, 0x81, + 0xa1, 0xd9, 0x6f, 0xe9, 0xaa, 0x73, 0x0a, 0x18, 0x74, 0x30, 0xec, 0x78, 0xcc, 0x7c, 0x5c, 0x57, + 0x9d, 0x5d, 0xcf, 0x40, 0x7b, 0x90, 0x76, 0x32, 0x14, 0xf3, 0x9e, 0xaa, 0x55, 0xe7, 0x16, 0x07, + 0xe8, 0xd4, 0x78, 0x26, 0x69, 0xf6, 0xbb, 0xbb, 0xea, 0x9c, 0x4a, 0x07, 0xda, 0x85, 0x94, 0x80, + 0x70, 0x73, 0x9e, 0x9f, 0x55, 0xe7, 0x25, 0xfb, 0x11, 0x86, 0xac, 0x97, 0xa3, 0x9b, 0xff, 0x9a, + 0xb0, 0xba, 0x40, 0x11, 0x07, 0x3d, 0x80, 0x42, 0x10, 0x16, 0x2e, 0xf6, 0xc4, 0xad, 0xba, 0x60, + 0x59, 0x81, 0xea, 0x0f, 0x62, 0xc4, 0xc5, 0x9e, 0xbc, 0x55, 0x17, 0xac, 0x32, 0xa0, 0x0f, 0x61, + 0x65, 0x12, 0xc3, 0x2d, 0xfe, 0x02, 0xae, 0xba, 0x44, 0xdd, 0x01, 0x0d, 0x00, 0x4d, 0xc1, 0x7e, + 0x4b, 0x3c, 0x88, 0xab, 0x2e, 0x53, 0x86, 0x40, 0x1d, 0x28, 0x8d, 0x03, 0xaa, 0x45, 0x1f, 0xc8, + 0x55, 0x17, 0x2e, 0x49, 0xf0, 0xbf, 0x04, 0x61, 0xc7, 0xa2, 0x0f, 0xe6, 0xaa, 0x0b, 0x57, 0x28, + 0xe8, 0x36, 0x08, 0x46, 0xe9, 0x8b, 0x3d, 0x4b, 0xab, 0x2e, 0x58, 0x02, 0x40, 0xc7, 0x00, 0x3e, + 0x08, 0xb9, 0xc0, 0x03, 0xbd, 0xea, 0x22, 0xb5, 0x10, 0x64, 0xc0, 0xea, 0x34, 0xe8, 0xb8, 0xcc, + 0x7b, 0xbd, 0xea, 0x52, 0x25, 0x92, 0xed, 0xfa, 0xe7, 0x5f, 0xad, 0x45, 0xbf, 0xf8, 0x6a, 0x2d, + 0xfa, 0x8f, 0xaf, 0xd6, 0xa2, 0x9f, 0x7e, 0xbd, 0x16, 0xf9, 0xe2, 0xeb, 0xb5, 0xc8, 0x5f, 0xbf, + 0x5e, 0x8b, 0xfc, 0xf0, 0x85, 0xae, 0x6a, 0xf7, 0x86, 0xad, 0x8d, 0xb6, 0x3e, 0xb8, 0xe5, 0x7f, + 0x5e, 0x3d, 0xed, 0xc9, 0x77, 0x2b, 0xc5, 0xbc, 0xe9, 0xed, 0xff, 0x06, 0x00, 0x00, 0xff, 0xff, + 0x5c, 0xd7, 0x22, 0x06, 0x12, 0x2e, 0x00, 0x00, } // Reference imports to suppress errors if they are not otherwise used. @@ -4043,22 +4051,19 @@ type ABCIApplicationClient interface { Echo(ctx context.Context, in *RequestEcho, opts ...grpc.CallOption) (*ResponseEcho, error) Flush(ctx context.Context, in *RequestFlush, opts ...grpc.CallOption) (*ResponseFlush, error) Info(ctx context.Context, in *RequestInfo, opts ...grpc.CallOption) (*ResponseInfo, error) - DeliverTx(ctx context.Context, in *RequestDeliverTx, opts ...grpc.CallOption) (*ResponseDeliverTx, error) CheckTx(ctx context.Context, in *RequestCheckTx, opts ...grpc.CallOption) (*ResponseCheckTx, error) Query(ctx context.Context, in *RequestQuery, opts ...grpc.CallOption) (*ResponseQuery, error) Commit(ctx context.Context, in *RequestCommit, opts ...grpc.CallOption) (*ResponseCommit, error) InitChain(ctx context.Context, in *RequestInitChain, opts ...grpc.CallOption) (*ResponseInitChain, error) - BeginBlock(ctx context.Context, in *RequestBeginBlock, opts ...grpc.CallOption) (*ResponseBeginBlock, error) - EndBlock(ctx context.Context, in *RequestEndBlock, opts ...grpc.CallOption) (*ResponseEndBlock, error) ListSnapshots(ctx context.Context, in *RequestListSnapshots, opts ...grpc.CallOption) (*ResponseListSnapshots, error) OfferSnapshot(ctx context.Context, in *RequestOfferSnapshot, opts ...grpc.CallOption) (*ResponseOfferSnapshot, error) LoadSnapshotChunk(ctx context.Context, in *RequestLoadSnapshotChunk, opts ...grpc.CallOption) (*ResponseLoadSnapshotChunk, error) ApplySnapshotChunk(ctx context.Context, in *RequestApplySnapshotChunk, opts ...grpc.CallOption) (*ResponseApplySnapshotChunk, error) PrepareProposal(ctx context.Context, in *RequestPrepareProposal, opts ...grpc.CallOption) (*ResponsePrepareProposal, error) ProcessProposal(ctx context.Context, in *RequestProcessProposal, opts ...grpc.CallOption) (*ResponseProcessProposal, error) + FinalizeBlock(ctx context.Context, in *RequestFinalizeBlock, opts ...grpc.CallOption) (*ResponseFinalizeBlock, error) ExtendVote(ctx context.Context, in *RequestExtendVote, opts ...grpc.CallOption) (*ResponseExtendVote, error) VerifyVoteExtension(ctx context.Context, in *RequestVerifyVoteExtension, opts ...grpc.CallOption) (*ResponseVerifyVoteExtension, error) - FinalizeBlock(ctx context.Context, in *RequestFinalizeBlock, opts ...grpc.CallOption) (*ResponseFinalizeBlock, error) } type aBCIApplicationClient struct { @@ -4096,15 +4101,6 @@ func (c *aBCIApplicationClient) Info(ctx context.Context, in *RequestInfo, opts return out, nil } -func (c *aBCIApplicationClient) DeliverTx(ctx context.Context, in *RequestDeliverTx, opts ...grpc.CallOption) (*ResponseDeliverTx, error) { - out := new(ResponseDeliverTx) - err := c.cc.Invoke(ctx, "/tendermint.abci.ABCIApplication/DeliverTx", in, out, opts...) - if err != nil { - return nil, err - } - return out, nil -} - func (c *aBCIApplicationClient) CheckTx(ctx context.Context, in *RequestCheckTx, opts ...grpc.CallOption) (*ResponseCheckTx, error) { out := new(ResponseCheckTx) err := c.cc.Invoke(ctx, "/tendermint.abci.ABCIApplication/CheckTx", in, out, opts...) @@ -4141,24 +4137,6 @@ func (c *aBCIApplicationClient) InitChain(ctx context.Context, in *RequestInitCh return out, nil } -func (c *aBCIApplicationClient) BeginBlock(ctx context.Context, in *RequestBeginBlock, opts ...grpc.CallOption) (*ResponseBeginBlock, error) { - out := new(ResponseBeginBlock) - err := c.cc.Invoke(ctx, "/tendermint.abci.ABCIApplication/BeginBlock", in, out, opts...) - if err != nil { - return nil, err - } - return out, nil -} - -func (c *aBCIApplicationClient) EndBlock(ctx context.Context, in *RequestEndBlock, opts ...grpc.CallOption) (*ResponseEndBlock, error) { - out := new(ResponseEndBlock) - err := c.cc.Invoke(ctx, "/tendermint.abci.ABCIApplication/EndBlock", in, out, opts...) - if err != nil { - return nil, err - } - return out, nil -} - func (c *aBCIApplicationClient) ListSnapshots(ctx context.Context, in *RequestListSnapshots, opts ...grpc.CallOption) (*ResponseListSnapshots, error) { out := new(ResponseListSnapshots) err := c.cc.Invoke(ctx, "/tendermint.abci.ABCIApplication/ListSnapshots", in, out, opts...) @@ -4213,6 +4191,15 @@ func (c *aBCIApplicationClient) ProcessProposal(ctx context.Context, in *Request return out, nil } +func (c *aBCIApplicationClient) FinalizeBlock(ctx context.Context, in *RequestFinalizeBlock, opts ...grpc.CallOption) (*ResponseFinalizeBlock, error) { + out := new(ResponseFinalizeBlock) + err := c.cc.Invoke(ctx, "/tendermint.abci.ABCIApplication/FinalizeBlock", in, out, opts...) + if err != nil { + return nil, err + } + return out, nil +} + func (c *aBCIApplicationClient) ExtendVote(ctx context.Context, in *RequestExtendVote, opts ...grpc.CallOption) (*ResponseExtendVote, error) { out := new(ResponseExtendVote) err := c.cc.Invoke(ctx, "/tendermint.abci.ABCIApplication/ExtendVote", in, out, opts...) @@ -4231,36 +4218,24 @@ func (c *aBCIApplicationClient) VerifyVoteExtension(ctx context.Context, in *Req return out, nil } -func (c *aBCIApplicationClient) FinalizeBlock(ctx context.Context, in *RequestFinalizeBlock, opts ...grpc.CallOption) (*ResponseFinalizeBlock, error) { - out := new(ResponseFinalizeBlock) - err := c.cc.Invoke(ctx, "/tendermint.abci.ABCIApplication/FinalizeBlock", in, out, opts...) - if err != nil { - return nil, err - } - return out, nil -} - // ABCIApplicationServer is the server API for ABCIApplication service. type ABCIApplicationServer interface { Echo(context.Context, *RequestEcho) (*ResponseEcho, error) Flush(context.Context, *RequestFlush) (*ResponseFlush, error) Info(context.Context, *RequestInfo) (*ResponseInfo, error) - DeliverTx(context.Context, *RequestDeliverTx) (*ResponseDeliverTx, error) CheckTx(context.Context, *RequestCheckTx) (*ResponseCheckTx, error) Query(context.Context, *RequestQuery) (*ResponseQuery, error) Commit(context.Context, *RequestCommit) (*ResponseCommit, error) InitChain(context.Context, *RequestInitChain) (*ResponseInitChain, error) - BeginBlock(context.Context, *RequestBeginBlock) (*ResponseBeginBlock, error) - EndBlock(context.Context, *RequestEndBlock) (*ResponseEndBlock, error) ListSnapshots(context.Context, *RequestListSnapshots) (*ResponseListSnapshots, error) OfferSnapshot(context.Context, *RequestOfferSnapshot) (*ResponseOfferSnapshot, error) LoadSnapshotChunk(context.Context, *RequestLoadSnapshotChunk) (*ResponseLoadSnapshotChunk, error) ApplySnapshotChunk(context.Context, *RequestApplySnapshotChunk) (*ResponseApplySnapshotChunk, error) PrepareProposal(context.Context, *RequestPrepareProposal) (*ResponsePrepareProposal, error) ProcessProposal(context.Context, *RequestProcessProposal) (*ResponseProcessProposal, error) + FinalizeBlock(context.Context, *RequestFinalizeBlock) (*ResponseFinalizeBlock, error) ExtendVote(context.Context, *RequestExtendVote) (*ResponseExtendVote, error) VerifyVoteExtension(context.Context, *RequestVerifyVoteExtension) (*ResponseVerifyVoteExtension, error) - FinalizeBlock(context.Context, *RequestFinalizeBlock) (*ResponseFinalizeBlock, error) } // UnimplementedABCIApplicationServer can be embedded to have forward compatible implementations. @@ -4276,9 +4251,6 @@ func (*UnimplementedABCIApplicationServer) Flush(ctx context.Context, req *Reque func (*UnimplementedABCIApplicationServer) Info(ctx context.Context, req *RequestInfo) (*ResponseInfo, error) { return nil, status.Errorf(codes.Unimplemented, "method Info not implemented") } -func (*UnimplementedABCIApplicationServer) DeliverTx(ctx context.Context, req *RequestDeliverTx) (*ResponseDeliverTx, error) { - return nil, status.Errorf(codes.Unimplemented, "method DeliverTx not implemented") -} func (*UnimplementedABCIApplicationServer) CheckTx(ctx context.Context, req *RequestCheckTx) (*ResponseCheckTx, error) { return nil, status.Errorf(codes.Unimplemented, "method CheckTx not implemented") } @@ -4291,12 +4263,6 @@ func (*UnimplementedABCIApplicationServer) Commit(ctx context.Context, req *Requ func (*UnimplementedABCIApplicationServer) InitChain(ctx context.Context, req *RequestInitChain) (*ResponseInitChain, error) { return nil, status.Errorf(codes.Unimplemented, "method InitChain not implemented") } -func (*UnimplementedABCIApplicationServer) BeginBlock(ctx context.Context, req *RequestBeginBlock) (*ResponseBeginBlock, error) { - return nil, status.Errorf(codes.Unimplemented, "method BeginBlock not implemented") -} -func (*UnimplementedABCIApplicationServer) EndBlock(ctx context.Context, req *RequestEndBlock) (*ResponseEndBlock, error) { - return nil, status.Errorf(codes.Unimplemented, "method EndBlock not implemented") -} func (*UnimplementedABCIApplicationServer) ListSnapshots(ctx context.Context, req *RequestListSnapshots) (*ResponseListSnapshots, error) { return nil, status.Errorf(codes.Unimplemented, "method ListSnapshots not implemented") } @@ -4315,15 +4281,15 @@ func (*UnimplementedABCIApplicationServer) PrepareProposal(ctx context.Context, func (*UnimplementedABCIApplicationServer) ProcessProposal(ctx context.Context, req *RequestProcessProposal) (*ResponseProcessProposal, error) { return nil, status.Errorf(codes.Unimplemented, "method ProcessProposal not implemented") } +func (*UnimplementedABCIApplicationServer) FinalizeBlock(ctx context.Context, req *RequestFinalizeBlock) (*ResponseFinalizeBlock, error) { + return nil, status.Errorf(codes.Unimplemented, "method FinalizeBlock not implemented") +} func (*UnimplementedABCIApplicationServer) ExtendVote(ctx context.Context, req *RequestExtendVote) (*ResponseExtendVote, error) { return nil, status.Errorf(codes.Unimplemented, "method ExtendVote not implemented") } func (*UnimplementedABCIApplicationServer) VerifyVoteExtension(ctx context.Context, req *RequestVerifyVoteExtension) (*ResponseVerifyVoteExtension, error) { return nil, status.Errorf(codes.Unimplemented, "method VerifyVoteExtension not implemented") } -func (*UnimplementedABCIApplicationServer) FinalizeBlock(ctx context.Context, req *RequestFinalizeBlock) (*ResponseFinalizeBlock, error) { - return nil, status.Errorf(codes.Unimplemented, "method FinalizeBlock not implemented") -} func RegisterABCIApplicationServer(s *grpc.Server, srv ABCIApplicationServer) { s.RegisterService(&_ABCIApplication_serviceDesc, srv) @@ -4383,24 +4349,6 @@ func _ABCIApplication_Info_Handler(srv interface{}, ctx context.Context, dec fun return interceptor(ctx, in, info, handler) } -func _ABCIApplication_DeliverTx_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) { - in := new(RequestDeliverTx) - if err := dec(in); err != nil { - return nil, err - } - if interceptor == nil { - return srv.(ABCIApplicationServer).DeliverTx(ctx, in) - } - info := &grpc.UnaryServerInfo{ - Server: srv, - FullMethod: "/tendermint.abci.ABCIApplication/DeliverTx", - } - handler := func(ctx context.Context, req interface{}) (interface{}, error) { - return srv.(ABCIApplicationServer).DeliverTx(ctx, req.(*RequestDeliverTx)) - } - return interceptor(ctx, in, info, handler) -} - func _ABCIApplication_CheckTx_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) { in := new(RequestCheckTx) if err := dec(in); err != nil { @@ -4473,42 +4421,6 @@ func _ABCIApplication_InitChain_Handler(srv interface{}, ctx context.Context, de return interceptor(ctx, in, info, handler) } -func _ABCIApplication_BeginBlock_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) { - in := new(RequestBeginBlock) - if err := dec(in); err != nil { - return nil, err - } - if interceptor == nil { - return srv.(ABCIApplicationServer).BeginBlock(ctx, in) - } - info := &grpc.UnaryServerInfo{ - Server: srv, - FullMethod: "/tendermint.abci.ABCIApplication/BeginBlock", - } - handler := func(ctx context.Context, req interface{}) (interface{}, error) { - return srv.(ABCIApplicationServer).BeginBlock(ctx, req.(*RequestBeginBlock)) - } - return interceptor(ctx, in, info, handler) -} - -func _ABCIApplication_EndBlock_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) { - in := new(RequestEndBlock) - if err := dec(in); err != nil { - return nil, err - } - if interceptor == nil { - return srv.(ABCIApplicationServer).EndBlock(ctx, in) - } - info := &grpc.UnaryServerInfo{ - Server: srv, - FullMethod: "/tendermint.abci.ABCIApplication/EndBlock", - } - handler := func(ctx context.Context, req interface{}) (interface{}, error) { - return srv.(ABCIApplicationServer).EndBlock(ctx, req.(*RequestEndBlock)) - } - return interceptor(ctx, in, info, handler) -} - func _ABCIApplication_ListSnapshots_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) { in := new(RequestListSnapshots) if err := dec(in); err != nil { @@ -4617,6 +4529,24 @@ func _ABCIApplication_ProcessProposal_Handler(srv interface{}, ctx context.Conte return interceptor(ctx, in, info, handler) } +func _ABCIApplication_FinalizeBlock_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) { + in := new(RequestFinalizeBlock) + if err := dec(in); err != nil { + return nil, err + } + if interceptor == nil { + return srv.(ABCIApplicationServer).FinalizeBlock(ctx, in) + } + info := &grpc.UnaryServerInfo{ + Server: srv, + FullMethod: "/tendermint.abci.ABCIApplication/FinalizeBlock", + } + handler := func(ctx context.Context, req interface{}) (interface{}, error) { + return srv.(ABCIApplicationServer).FinalizeBlock(ctx, req.(*RequestFinalizeBlock)) + } + return interceptor(ctx, in, info, handler) +} + func _ABCIApplication_ExtendVote_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) { in := new(RequestExtendVote) if err := dec(in); err != nil { @@ -4653,24 +4583,6 @@ func _ABCIApplication_VerifyVoteExtension_Handler(srv interface{}, ctx context.C return interceptor(ctx, in, info, handler) } -func _ABCIApplication_FinalizeBlock_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) { - in := new(RequestFinalizeBlock) - if err := dec(in); err != nil { - return nil, err - } - if interceptor == nil { - return srv.(ABCIApplicationServer).FinalizeBlock(ctx, in) - } - info := &grpc.UnaryServerInfo{ - Server: srv, - FullMethod: "/tendermint.abci.ABCIApplication/FinalizeBlock", - } - handler := func(ctx context.Context, req interface{}) (interface{}, error) { - return srv.(ABCIApplicationServer).FinalizeBlock(ctx, req.(*RequestFinalizeBlock)) - } - return interceptor(ctx, in, info, handler) -} - var _ABCIApplication_serviceDesc = grpc.ServiceDesc{ ServiceName: "tendermint.abci.ABCIApplication", HandlerType: (*ABCIApplicationServer)(nil), @@ -4687,10 +4599,6 @@ var _ABCIApplication_serviceDesc = grpc.ServiceDesc{ MethodName: "Info", Handler: _ABCIApplication_Info_Handler, }, - { - MethodName: "DeliverTx", - Handler: _ABCIApplication_DeliverTx_Handler, - }, { MethodName: "CheckTx", Handler: _ABCIApplication_CheckTx_Handler, @@ -4707,14 +4615,6 @@ var _ABCIApplication_serviceDesc = grpc.ServiceDesc{ MethodName: "InitChain", Handler: _ABCIApplication_InitChain_Handler, }, - { - MethodName: "BeginBlock", - Handler: _ABCIApplication_BeginBlock_Handler, - }, - { - MethodName: "EndBlock", - Handler: _ABCIApplication_EndBlock_Handler, - }, { MethodName: "ListSnapshots", Handler: _ABCIApplication_ListSnapshots_Handler, @@ -4739,6 +4639,10 @@ var _ABCIApplication_serviceDesc = grpc.ServiceDesc{ MethodName: "ProcessProposal", Handler: _ABCIApplication_ProcessProposal_Handler, }, + { + MethodName: "FinalizeBlock", + Handler: _ABCIApplication_FinalizeBlock_Handler, + }, { MethodName: "ExtendVote", Handler: _ABCIApplication_ExtendVote_Handler, @@ -4747,10 +4651,6 @@ var _ABCIApplication_serviceDesc = grpc.ServiceDesc{ MethodName: "VerifyVoteExtension", Handler: _ABCIApplication_VerifyVoteExtension_Handler, }, - { - MethodName: "FinalizeBlock", - Handler: _ABCIApplication_FinalizeBlock_Handler, - }, }, Streams: []grpc.StreamDesc{}, Metadata: "tendermint/abci/types.proto", @@ -5768,6 +5668,20 @@ func (m *RequestPrepareProposal) MarshalToSizedBuffer(dAtA []byte) (int, error) _ = i var l int _ = l + if len(m.Votes) > 0 { + for iNdEx := len(m.Votes) - 1; iNdEx >= 0; iNdEx-- { + { + size, err := m.Votes[iNdEx].MarshalToSizedBuffer(dAtA[:i]) + if err != nil { + return 0, err + } + i -= size + i = encodeVarintTypes(dAtA, i, uint64(size)) + } + i-- + dAtA[i] = 0x1a + } + } if m.BlockDataSize != 0 { i = encodeVarintTypes(dAtA, i, uint64(m.BlockDataSize)) i-- @@ -8452,6 +8366,12 @@ func (m *RequestPrepareProposal) Size() (n int) { if m.BlockDataSize != 0 { n += 1 + sovTypes(uint64(m.BlockDataSize)) } + if len(m.Votes) > 0 { + for _, e := range m.Votes { + l = e.Size() + n += 1 + l + sovTypes(uint64(l)) + } + } return n } @@ -11826,6 +11746,40 @@ func (m *RequestPrepareProposal) Unmarshal(dAtA []byte) error { break } } + case 3: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field Votes", 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.Votes = append(m.Votes, &types.Vote{}) + if err := m.Votes[len(m.Votes)-1].Unmarshal(dAtA[iNdEx:postIndex]); err != nil { + return err + } + iNdEx = postIndex default: iNdEx = preIndex skippy, err := skipTypes(dAtA[iNdEx:])