From 27297a447cd3fb2bc150e6853b081c7c6850680d Mon Sep 17 00:00:00 2001 From: Sergio Mena Date: Tue, 8 Feb 2022 17:32:17 +0100 Subject: [PATCH] Rebased to master the existing `ProcessProposal` PR (#7752) * Rebased and git-squashed the commits in PR #7091 - add processproposal proto/boilerplate/logic - mockery - gofmt - fix test - gofmt - move UNKNOWN response behaviour to reject * Fixed build of some UTs * Addressed William's comment on context * Adapted TestProcessProposal * BaseApp needs to ACCEPT vote extensions by default * Added missing ProcessProposal to socket_server.go * Re-renamed TwoThirdPrevote... to Valid... * Addressed William's comment on ProcessProposal error * Addressed Callum's comments * fmt Co-authored-by: mconcat --- abci/client/client.go | 1 + abci/client/grpc_client.go | 8 + abci/client/local_client.go | 11 + abci/client/mocks/client.go | 23 + abci/client/socket_client.go | 12 + abci/example/kvstore/persistent_kvstore.go | 10 + abci/server/socket_server.go | 3 + abci/types/application.go | 15 +- abci/types/messages.go | 12 + abci/types/result.go | 14 +- abci/types/types.pb.go | 1182 +++++++++++++++----- internal/consensus/state.go | 29 +- internal/consensus/types/round_state.go | 13 +- internal/proxy/app_conn.go | 9 + internal/proxy/mocks/app_conn_consensus.go | 23 + internal/state/execution.go | 17 + internal/state/execution_test.go | 42 + internal/state/helpers_test.go | 9 + types/tx.go | 1 + 19 files changed, 1173 insertions(+), 261 deletions(-) diff --git a/abci/client/client.go b/abci/client/client.go index 6a26e3e3d..47a14d9fc 100644 --- a/abci/client/client.go +++ b/abci/client/client.go @@ -46,6 +46,7 @@ type Client interface { Commit(context.Context) (*types.ResponseCommit, error) InitChain(context.Context, types.RequestInitChain) (*types.ResponseInitChain, error) PrepareProposal(context.Context, types.RequestPrepareProposal) (*types.ResponsePrepareProposal, error) + ProcessProposal(context.Context, types.RequestProcessProposal) (*types.ResponseProcessProposal, error) ExtendVote(context.Context, types.RequestExtendVote) (*types.ResponseExtendVote, error) VerifyVoteExtension(context.Context, types.RequestVerifyVoteExtension) (*types.ResponseVerifyVoteExtension, error) BeginBlock(context.Context, types.RequestBeginBlock) (*types.ResponseBeginBlock, error) diff --git a/abci/client/grpc_client.go b/abci/client/grpc_client.go index 2eb9f7363..716be6d6a 100644 --- a/abci/client/grpc_client.go +++ b/abci/client/grpc_client.go @@ -377,6 +377,14 @@ func (cli *grpcClient) PrepareProposal( return cli.client.PrepareProposal(ctx, req.GetPrepareProposal(), grpc.WaitForReady(true)) } +func (cli *grpcClient) ProcessProposal( + ctx context.Context, + params types.RequestProcessProposal) (*types.ResponseProcessProposal, error) { + + req := types.ToRequestProcessProposal(params) + return cli.client.ProcessProposal(ctx, req.GetProcessProposal(), grpc.WaitForReady(true)) +} + func (cli *grpcClient) ExtendVote( ctx context.Context, params types.RequestExtendVote) (*types.ResponseExtendVote, error) { diff --git a/abci/client/local_client.go b/abci/client/local_client.go index 23934138d..25d8ed90e 100644 --- a/abci/client/local_client.go +++ b/abci/client/local_client.go @@ -233,6 +233,17 @@ func (app *localClient) PrepareProposal( return &res, nil } +func (app *localClient) ProcessProposal( + ctx context.Context, + req types.RequestProcessProposal) (*types.ResponseProcessProposal, error) { + + app.mtx.Lock() + defer app.mtx.Unlock() + + res := app.Application.ProcessProposal(req) + return &res, nil +} + func (app *localClient) ExtendVote( ctx context.Context, req types.RequestExtendVote) (*types.ResponseExtendVote, error) { diff --git a/abci/client/mocks/client.go b/abci/client/mocks/client.go index 108103ef7..dac3c43b4 100644 --- a/abci/client/mocks/client.go +++ b/abci/client/mocks/client.go @@ -450,6 +450,29 @@ func (_m *Client) PrepareProposal(_a0 context.Context, _a1 types.RequestPrepareP return r0, r1 } +// ProcessProposal provides a mock function with given fields: _a0, _a1 +func (_m *Client) ProcessProposal(_a0 context.Context, _a1 types.RequestProcessProposal) (*types.ResponseProcessProposal, error) { + ret := _m.Called(_a0, _a1) + + var r0 *types.ResponseProcessProposal + if rf, ok := ret.Get(0).(func(context.Context, types.RequestProcessProposal) *types.ResponseProcessProposal); ok { + r0 = rf(_a0, _a1) + } else { + if ret.Get(0) != nil { + r0 = ret.Get(0).(*types.ResponseProcessProposal) + } + } + + var r1 error + if rf, ok := ret.Get(1).(func(context.Context, types.RequestProcessProposal) error); ok { + r1 = rf(_a0, _a1) + } else { + r1 = ret.Error(1) + } + + return r0, r1 +} + // Query provides a mock function with given fields: _a0, _a1 func (_m *Client) Query(_a0 context.Context, _a1 types.RequestQuery) (*types.ResponseQuery, error) { ret := _m.Called(_a0, _a1) diff --git a/abci/client/socket_client.go b/abci/client/socket_client.go index 808c69586..fa0fcf97f 100644 --- a/abci/client/socket_client.go +++ b/abci/client/socket_client.go @@ -415,6 +415,18 @@ func (cli *socketClient) PrepareProposal( return reqres.Response.GetPrepareProposal(), nil } +func (cli *socketClient) ProcessProposal( + ctx context.Context, + req types.RequestProcessProposal, +) (*types.ResponseProcessProposal, error) { + + reqres, err := cli.queueRequestAndFlush(ctx, types.ToRequestProcessProposal(req)) + if err != nil { + return nil, err + } + return reqres.Response.GetProcessProposal(), nil +} + func (cli *socketClient) ExtendVote( ctx context.Context, req types.RequestExtendVote) (*types.ResponseExtendVote, error) { diff --git a/abci/example/kvstore/persistent_kvstore.go b/abci/example/kvstore/persistent_kvstore.go index 83922eb80..be46665c8 100644 --- a/abci/example/kvstore/persistent_kvstore.go +++ b/abci/example/kvstore/persistent_kvstore.go @@ -189,6 +189,16 @@ func (app *PersistentKVStoreApplication) PrepareProposal( return types.ResponsePrepareProposal{BlockData: app.substPrepareTx(req.BlockData)} } +func (app *PersistentKVStoreApplication) ProcessProposal( + req types.RequestProcessProposal) types.ResponseProcessProposal { + for _, tx := range req.Txs { + if len(tx) == 0 { + return types.ResponseProcessProposal{Result: types.ResponseProcessProposal_REJECT} + } + } + return types.ResponseProcessProposal{Result: types.ResponseProcessProposal_ACCEPT} +} + //--------------------------------------------- // update validators diff --git a/abci/server/socket_server.go b/abci/server/socket_server.go index 3ccab7ad4..a548755c3 100644 --- a/abci/server/socket_server.go +++ b/abci/server/socket_server.go @@ -243,6 +243,9 @@ func (s *SocketServer) handleRequest(req *types.Request, responses chan<- *types case *types.Request_PrepareProposal: res := s.app.PrepareProposal(*r.PrepareProposal) responses <- types.ToResponsePrepareProposal(res) + case *types.Request_ProcessProposal: + res := s.app.ProcessProposal(*r.ProcessProposal) + responses <- types.ToResponseProcessProposal(res) case *types.Request_LoadSnapshotChunk: res := s.app.LoadSnapshotChunk(*r.LoadSnapshotChunk) responses <- types.ToResponseLoadSnapshotChunk(res) diff --git a/abci/types/application.go b/abci/types/application.go index dfbe1bf6e..98848bb1e 100644 --- a/abci/types/application.go +++ b/abci/types/application.go @@ -19,6 +19,7 @@ type Application interface { // Consensus Connection InitChain(RequestInitChain) ResponseInitChain // Initialize blockchain w validators/other info from TendermintCore PrepareProposal(RequestPrepareProposal) ResponsePrepareProposal + ProcessProposal(RequestProcessProposal) ResponseProcessProposal // Signals the beginning of a block BeginBlock(RequestBeginBlock) ResponseBeginBlock // Deliver a tx for full processing @@ -72,7 +73,9 @@ func (BaseApplication) ExtendVote(req RequestExtendVote) ResponseExtendVote { } func (BaseApplication) VerifyVoteExtension(req RequestVerifyVoteExtension) ResponseVerifyVoteExtension { - return ResponseVerifyVoteExtension{} + return ResponseVerifyVoteExtension{ + Result: ResponseVerifyVoteExtension_ACCEPT, + } } func (BaseApplication) Query(req RequestQuery) ResponseQuery { @@ -111,6 +114,10 @@ func (BaseApplication) PrepareProposal(req RequestPrepareProposal) ResponsePrepa return ResponsePrepareProposal{} } +func (BaseApplication) ProcessProposal(req RequestProcessProposal) ResponseProcessProposal { + return ResponseProcessProposal{} +} + //------------------------------------------------------- // GRPCApplication is a GRPC wrapper for Application @@ -211,3 +218,9 @@ func (app *GRPCApplication) PrepareProposal( res := app.app.PrepareProposal(*req) return &res, nil } + +func (app *GRPCApplication) ProcessProposal( + ctx context.Context, req *RequestProcessProposal) (*ResponseProcessProposal, error) { + res := app.app.ProcessProposal(*req) + return &res, nil +} diff --git a/abci/types/messages.go b/abci/types/messages.go index ec2a2d28d..90cbfcc22 100644 --- a/abci/types/messages.go +++ b/abci/types/messages.go @@ -128,6 +128,12 @@ func ToRequestPrepareProposal(req RequestPrepareProposal) *Request { } } +func ToRequestProcessProposal(req RequestProcessProposal) *Request { + return &Request{ + Value: &Request_ProcessProposal{&req}, + } +} + //---------------------------------------- func ToResponseException(errStr string) *Response { @@ -236,3 +242,9 @@ func ToResponsePrepareProposal(res ResponsePrepareProposal) *Response { Value: &Response_PrepareProposal{&res}, } } + +func ToResponseProcessProposal(res ResponseProcessProposal) *Response { + return &Response{ + Value: &Response_ProcessProposal{&res}, + } +} diff --git a/abci/types/result.go b/abci/types/result.go index a08c3fda5..fb76e01d0 100644 --- a/abci/types/result.go +++ b/abci/types/result.go @@ -43,14 +43,24 @@ func (r ResponseQuery) IsErr() bool { return r.Code != CodeTypeOK } +// IsUnknown returns true if Code is Unknown +func (r ResponseVerifyVoteExtension) IsUnknown() bool { + return r.Result == ResponseVerifyVoteExtension_UNKNOWN +} + // IsOK returns true if Code is OK func (r ResponseVerifyVoteExtension) IsOK() bool { - return r.Result <= ResponseVerifyVoteExtension_ACCEPT + return r.Result == ResponseVerifyVoteExtension_ACCEPT } // IsErr returns true if Code is something other than OK. func (r ResponseVerifyVoteExtension) IsErr() bool { - return r.Result > ResponseVerifyVoteExtension_ACCEPT + return r.Result != ResponseVerifyVoteExtension_ACCEPT +} + +// IsOK returns true if Code is OK +func (r ResponseProcessProposal) IsOK() bool { + return r.Result == ResponseProcessProposal_ACCEPT } //--------------------------------------------------------------------------- diff --git a/abci/types/types.pb.go b/abci/types/types.pb.go index 37c274462..25f814ba6 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{31, 0} + return fileDescriptor_252557cfdd89a31a, []int{32, 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{33, 0} + return fileDescriptor_252557cfdd89a31a, []int{34, 0} } type ResponseVerifyVoteExtension_Result int32 @@ -188,7 +188,35 @@ func (x ResponseVerifyVoteExtension_Result) String() string { } func (ResponseVerifyVoteExtension_Result) EnumDescriptor() ([]byte, []int) { - return fileDescriptor_252557cfdd89a31a, []int{36, 0} + return fileDescriptor_252557cfdd89a31a, []int{37, 0} +} + +type ResponseProcessProposal_Result int32 + +const ( + ResponseProcessProposal_UNKNOWN ResponseProcessProposal_Result = 0 + ResponseProcessProposal_ACCEPT ResponseProcessProposal_Result = 1 + ResponseProcessProposal_REJECT ResponseProcessProposal_Result = 2 +) + +var ResponseProcessProposal_Result_name = map[int32]string{ + 0: "UNKNOWN", + 1: "ACCEPT", + 2: "REJECT", +} + +var ResponseProcessProposal_Result_value = map[string]int32{ + "UNKNOWN": 0, + "ACCEPT": 1, + "REJECT": 2, +} + +func (x ResponseProcessProposal_Result) String() string { + return proto.EnumName(ResponseProcessProposal_Result_name, int32(x)) +} + +func (ResponseProcessProposal_Result) EnumDescriptor() ([]byte, []int) { + return fileDescriptor_252557cfdd89a31a, []int{38, 0} } type Request struct { @@ -208,6 +236,7 @@ type Request struct { // *Request_LoadSnapshotChunk // *Request_ApplySnapshotChunk // *Request_PrepareProposal + // *Request_ProcessProposal // *Request_ExtendVote // *Request_VerifyVoteExtension Value isRequest_Value `protobuf_oneof:"value"` @@ -297,11 +326,14 @@ type Request_ApplySnapshotChunk struct { type Request_PrepareProposal struct { PrepareProposal *RequestPrepareProposal `protobuf:"bytes,15,opt,name=prepare_proposal,json=prepareProposal,proto3,oneof" json:"prepare_proposal,omitempty"` } +type Request_ProcessProposal struct { + ProcessProposal *RequestProcessProposal `protobuf:"bytes,16,opt,name=process_proposal,json=processProposal,proto3,oneof" json:"process_proposal,omitempty"` +} type Request_ExtendVote struct { - ExtendVote *RequestExtendVote `protobuf:"bytes,16,opt,name=extend_vote,json=extendVote,proto3,oneof" json:"extend_vote,omitempty"` + ExtendVote *RequestExtendVote `protobuf:"bytes,17,opt,name=extend_vote,json=extendVote,proto3,oneof" json:"extend_vote,omitempty"` } type Request_VerifyVoteExtension struct { - VerifyVoteExtension *RequestVerifyVoteExtension `protobuf:"bytes,17,opt,name=verify_vote_extension,json=verifyVoteExtension,proto3,oneof" json:"verify_vote_extension,omitempty"` + VerifyVoteExtension *RequestVerifyVoteExtension `protobuf:"bytes,18,opt,name=verify_vote_extension,json=verifyVoteExtension,proto3,oneof" json:"verify_vote_extension,omitempty"` } func (*Request_Echo) isRequest_Value() {} @@ -319,6 +351,7 @@ func (*Request_OfferSnapshot) isRequest_Value() {} func (*Request_LoadSnapshotChunk) isRequest_Value() {} func (*Request_ApplySnapshotChunk) isRequest_Value() {} func (*Request_PrepareProposal) isRequest_Value() {} +func (*Request_ProcessProposal) isRequest_Value() {} func (*Request_ExtendVote) isRequest_Value() {} func (*Request_VerifyVoteExtension) isRequest_Value() {} @@ -434,6 +467,13 @@ func (m *Request) GetPrepareProposal() *RequestPrepareProposal { return nil } +func (m *Request) GetProcessProposal() *RequestProcessProposal { + if x, ok := m.GetValue().(*Request_ProcessProposal); ok { + return x.ProcessProposal + } + return nil +} + func (m *Request) GetExtendVote() *RequestExtendVote { if x, ok := m.GetValue().(*Request_ExtendVote); ok { return x.ExtendVote @@ -466,6 +506,7 @@ func (*Request) XXX_OneofWrappers() []interface{} { (*Request_LoadSnapshotChunk)(nil), (*Request_ApplySnapshotChunk)(nil), (*Request_PrepareProposal)(nil), + (*Request_ProcessProposal)(nil), (*Request_ExtendVote)(nil), (*Request_VerifyVoteExtension)(nil), } @@ -1373,6 +1414,58 @@ func (m *RequestVerifyVoteExtension) GetVote() *types1.Vote { return nil } +type RequestProcessProposal struct { + Header types1.Header `protobuf:"bytes,1,opt,name=header,proto3" json:"header"` + Txs [][]byte `protobuf:"bytes,2,rep,name=txs,proto3" json:"txs,omitempty"` +} + +func (m *RequestProcessProposal) Reset() { *m = RequestProcessProposal{} } +func (m *RequestProcessProposal) String() string { return proto.CompactTextString(m) } +func (*RequestProcessProposal) ProtoMessage() {} +func (*RequestProcessProposal) Descriptor() ([]byte, []int) { + return fileDescriptor_252557cfdd89a31a, []int{18} +} +func (m *RequestProcessProposal) XXX_Unmarshal(b []byte) error { + return m.Unmarshal(b) +} +func (m *RequestProcessProposal) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + if deterministic { + return xxx_messageInfo_RequestProcessProposal.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 *RequestProcessProposal) XXX_Merge(src proto.Message) { + xxx_messageInfo_RequestProcessProposal.Merge(m, src) +} +func (m *RequestProcessProposal) XXX_Size() int { + return m.Size() +} +func (m *RequestProcessProposal) XXX_DiscardUnknown() { + xxx_messageInfo_RequestProcessProposal.DiscardUnknown(m) +} + +var xxx_messageInfo_RequestProcessProposal proto.InternalMessageInfo + +func (m *RequestProcessProposal) GetHeader() types1.Header { + if m != nil { + return m.Header + } + return types1.Header{} +} + +func (m *RequestProcessProposal) GetTxs() [][]byte { + if m != nil { + return m.Txs + } + return nil +} + type Response struct { // Types that are valid to be assigned to Value: // *Response_Exception @@ -1391,6 +1484,7 @@ type Response struct { // *Response_LoadSnapshotChunk // *Response_ApplySnapshotChunk // *Response_PrepareProposal + // *Response_ProcessProposal // *Response_ExtendVote // *Response_VerifyVoteExtension Value isResponse_Value `protobuf_oneof:"value"` @@ -1400,7 +1494,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{18} + return fileDescriptor_252557cfdd89a31a, []int{19} } func (m *Response) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1483,11 +1577,14 @@ type Response_ApplySnapshotChunk struct { type Response_PrepareProposal struct { PrepareProposal *ResponsePrepareProposal `protobuf:"bytes,16,opt,name=prepare_proposal,json=prepareProposal,proto3,oneof" json:"prepare_proposal,omitempty"` } +type Response_ProcessProposal struct { + ProcessProposal *ResponseProcessProposal `protobuf:"bytes,17,opt,name=process_proposal,json=processProposal,proto3,oneof" json:"process_proposal,omitempty"` +} type Response_ExtendVote struct { - ExtendVote *ResponseExtendVote `protobuf:"bytes,17,opt,name=extend_vote,json=extendVote,proto3,oneof" json:"extend_vote,omitempty"` + ExtendVote *ResponseExtendVote `protobuf:"bytes,18,opt,name=extend_vote,json=extendVote,proto3,oneof" json:"extend_vote,omitempty"` } type Response_VerifyVoteExtension struct { - VerifyVoteExtension *ResponseVerifyVoteExtension `protobuf:"bytes,18,opt,name=verify_vote_extension,json=verifyVoteExtension,proto3,oneof" json:"verify_vote_extension,omitempty"` + VerifyVoteExtension *ResponseVerifyVoteExtension `protobuf:"bytes,19,opt,name=verify_vote_extension,json=verifyVoteExtension,proto3,oneof" json:"verify_vote_extension,omitempty"` } func (*Response_Exception) isResponse_Value() {} @@ -1506,6 +1603,7 @@ func (*Response_OfferSnapshot) isResponse_Value() {} func (*Response_LoadSnapshotChunk) isResponse_Value() {} func (*Response_ApplySnapshotChunk) isResponse_Value() {} func (*Response_PrepareProposal) isResponse_Value() {} +func (*Response_ProcessProposal) isResponse_Value() {} func (*Response_ExtendVote) isResponse_Value() {} func (*Response_VerifyVoteExtension) isResponse_Value() {} @@ -1628,6 +1726,13 @@ func (m *Response) GetPrepareProposal() *ResponsePrepareProposal { return nil } +func (m *Response) GetProcessProposal() *ResponseProcessProposal { + if x, ok := m.GetValue().(*Response_ProcessProposal); ok { + return x.ProcessProposal + } + return nil +} + func (m *Response) GetExtendVote() *ResponseExtendVote { if x, ok := m.GetValue().(*Response_ExtendVote); ok { return x.ExtendVote @@ -1661,6 +1766,7 @@ func (*Response) XXX_OneofWrappers() []interface{} { (*Response_LoadSnapshotChunk)(nil), (*Response_ApplySnapshotChunk)(nil), (*Response_PrepareProposal)(nil), + (*Response_ProcessProposal)(nil), (*Response_ExtendVote)(nil), (*Response_VerifyVoteExtension)(nil), } @@ -1675,7 +1781,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{19} + return fileDescriptor_252557cfdd89a31a, []int{20} } func (m *ResponseException) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1719,7 +1825,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{20} + return fileDescriptor_252557cfdd89a31a, []int{21} } func (m *ResponseEcho) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1762,7 +1868,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{21} + return fileDescriptor_252557cfdd89a31a, []int{22} } func (m *ResponseFlush) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1804,7 +1910,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{22} + return fileDescriptor_252557cfdd89a31a, []int{23} } func (m *ResponseInfo) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1878,7 +1984,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{23} + return fileDescriptor_252557cfdd89a31a, []int{24} } func (m *ResponseInitChain) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1945,7 +2051,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{24} + return fileDescriptor_252557cfdd89a31a, []int{25} } func (m *ResponseQuery) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2045,7 +2151,7 @@ func (m *ResponseBeginBlock) Reset() { *m = ResponseBeginBlock{} } func (m *ResponseBeginBlock) String() string { return proto.CompactTextString(m) } func (*ResponseBeginBlock) ProtoMessage() {} func (*ResponseBeginBlock) Descriptor() ([]byte, []int) { - return fileDescriptor_252557cfdd89a31a, []int{25} + return fileDescriptor_252557cfdd89a31a, []int{26} } func (m *ResponseBeginBlock) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2101,7 +2207,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{26} + return fileDescriptor_252557cfdd89a31a, []int{27} } func (m *ResponseCheckTx) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2222,7 +2328,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{27} + return fileDescriptor_252557cfdd89a31a, []int{28} } func (m *ResponseDeliverTx) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2317,7 +2423,7 @@ func (m *ResponseEndBlock) Reset() { *m = ResponseEndBlock{} } func (m *ResponseEndBlock) String() string { return proto.CompactTextString(m) } func (*ResponseEndBlock) ProtoMessage() {} func (*ResponseEndBlock) Descriptor() ([]byte, []int) { - return fileDescriptor_252557cfdd89a31a, []int{28} + return fileDescriptor_252557cfdd89a31a, []int{29} } func (m *ResponseEndBlock) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2377,7 +2483,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{29} + return fileDescriptor_252557cfdd89a31a, []int{30} } func (m *ResponseCommit) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2428,7 +2534,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{30} + return fileDescriptor_252557cfdd89a31a, []int{31} } func (m *ResponseListSnapshots) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2472,7 +2578,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{31} + return fileDescriptor_252557cfdd89a31a, []int{32} } func (m *ResponseOfferSnapshot) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2516,7 +2622,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{32} + return fileDescriptor_252557cfdd89a31a, []int{33} } func (m *ResponseLoadSnapshotChunk) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2562,7 +2668,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{33} + return fileDescriptor_252557cfdd89a31a, []int{34} } func (m *ResponseApplySnapshotChunk) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2620,7 +2726,7 @@ func (m *ResponsePrepareProposal) Reset() { *m = ResponsePrepareProposal func (m *ResponsePrepareProposal) String() string { return proto.CompactTextString(m) } func (*ResponsePrepareProposal) ProtoMessage() {} func (*ResponsePrepareProposal) Descriptor() ([]byte, []int) { - return fileDescriptor_252557cfdd89a31a, []int{34} + return fileDescriptor_252557cfdd89a31a, []int{35} } func (m *ResponsePrepareProposal) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2664,7 +2770,7 @@ func (m *ResponseExtendVote) Reset() { *m = ResponseExtendVote{} } func (m *ResponseExtendVote) String() string { return proto.CompactTextString(m) } func (*ResponseExtendVote) ProtoMessage() {} func (*ResponseExtendVote) Descriptor() ([]byte, []int) { - return fileDescriptor_252557cfdd89a31a, []int{35} + return fileDescriptor_252557cfdd89a31a, []int{36} } func (m *ResponseExtendVote) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2708,7 +2814,7 @@ func (m *ResponseVerifyVoteExtension) Reset() { *m = ResponseVerifyVoteE func (m *ResponseVerifyVoteExtension) String() string { return proto.CompactTextString(m) } func (*ResponseVerifyVoteExtension) ProtoMessage() {} func (*ResponseVerifyVoteExtension) Descriptor() ([]byte, []int) { - return fileDescriptor_252557cfdd89a31a, []int{36} + return fileDescriptor_252557cfdd89a31a, []int{37} } func (m *ResponseVerifyVoteExtension) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2744,6 +2850,58 @@ func (m *ResponseVerifyVoteExtension) GetResult() ResponseVerifyVoteExtension_Re return ResponseVerifyVoteExtension_UNKNOWN } +type ResponseProcessProposal struct { + Result ResponseProcessProposal_Result `protobuf:"varint,1,opt,name=result,proto3,enum=tendermint.abci.ResponseProcessProposal_Result" json:"result,omitempty"` + Evidence [][]byte `protobuf:"bytes,2,rep,name=evidence,proto3" json:"evidence,omitempty"` +} + +func (m *ResponseProcessProposal) Reset() { *m = ResponseProcessProposal{} } +func (m *ResponseProcessProposal) String() string { return proto.CompactTextString(m) } +func (*ResponseProcessProposal) ProtoMessage() {} +func (*ResponseProcessProposal) Descriptor() ([]byte, []int) { + return fileDescriptor_252557cfdd89a31a, []int{38} +} +func (m *ResponseProcessProposal) XXX_Unmarshal(b []byte) error { + return m.Unmarshal(b) +} +func (m *ResponseProcessProposal) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + if deterministic { + return xxx_messageInfo_ResponseProcessProposal.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 *ResponseProcessProposal) XXX_Merge(src proto.Message) { + xxx_messageInfo_ResponseProcessProposal.Merge(m, src) +} +func (m *ResponseProcessProposal) XXX_Size() int { + return m.Size() +} +func (m *ResponseProcessProposal) XXX_DiscardUnknown() { + xxx_messageInfo_ResponseProcessProposal.DiscardUnknown(m) +} + +var xxx_messageInfo_ResponseProcessProposal proto.InternalMessageInfo + +func (m *ResponseProcessProposal) GetResult() ResponseProcessProposal_Result { + if m != nil { + return m.Result + } + return ResponseProcessProposal_UNKNOWN +} + +func (m *ResponseProcessProposal) GetEvidence() [][]byte { + if m != nil { + return m.Evidence + } + return nil +} + type LastCommitInfo struct { Round int32 `protobuf:"varint,1,opt,name=round,proto3" json:"round,omitempty"` Votes []VoteInfo `protobuf:"bytes,2,rep,name=votes,proto3" json:"votes"` @@ -2753,7 +2911,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{37} + return fileDescriptor_252557cfdd89a31a, []int{39} } func (m *LastCommitInfo) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2808,7 +2966,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{38} + return fileDescriptor_252557cfdd89a31a, []int{40} } func (m *Event) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2862,7 +3020,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{39} + return fileDescriptor_252557cfdd89a31a, []int{41} } func (m *EventAttribute) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2926,7 +3084,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{40} + return fileDescriptor_252557cfdd89a31a, []int{42} } func (m *TxResult) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2994,7 +3152,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{41} + return fileDescriptor_252557cfdd89a31a, []int{43} } func (m *Validator) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -3047,7 +3205,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{42} + return fileDescriptor_252557cfdd89a31a, []int{44} } func (m *ValidatorUpdate) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -3100,7 +3258,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{43} + return fileDescriptor_252557cfdd89a31a, []int{45} } func (m *VoteInfo) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -3161,7 +3319,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{44} + return fileDescriptor_252557cfdd89a31a, []int{46} } func (m *Evidence) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -3237,7 +3395,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{45} + return fileDescriptor_252557cfdd89a31a, []int{47} } func (m *Snapshot) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -3307,6 +3465,7 @@ func init() { proto.RegisterEnum("tendermint.abci.ResponseOfferSnapshot_Result", ResponseOfferSnapshot_Result_name, ResponseOfferSnapshot_Result_value) proto.RegisterEnum("tendermint.abci.ResponseApplySnapshotChunk_Result", ResponseApplySnapshotChunk_Result_name, ResponseApplySnapshotChunk_Result_value) proto.RegisterEnum("tendermint.abci.ResponseVerifyVoteExtension_Result", ResponseVerifyVoteExtension_Result_name, ResponseVerifyVoteExtension_Result_value) + proto.RegisterEnum("tendermint.abci.ResponseProcessProposal_Result", ResponseProcessProposal_Result_name, ResponseProcessProposal_Result_value) proto.RegisterType((*Request)(nil), "tendermint.abci.Request") proto.RegisterType((*RequestEcho)(nil), "tendermint.abci.RequestEcho") proto.RegisterType((*RequestFlush)(nil), "tendermint.abci.RequestFlush") @@ -3325,6 +3484,7 @@ func init() { proto.RegisterType((*RequestPrepareProposal)(nil), "tendermint.abci.RequestPrepareProposal") proto.RegisterType((*RequestExtendVote)(nil), "tendermint.abci.RequestExtendVote") proto.RegisterType((*RequestVerifyVoteExtension)(nil), "tendermint.abci.RequestVerifyVoteExtension") + proto.RegisterType((*RequestProcessProposal)(nil), "tendermint.abci.RequestProcessProposal") proto.RegisterType((*Response)(nil), "tendermint.abci.Response") proto.RegisterType((*ResponseException)(nil), "tendermint.abci.ResponseException") proto.RegisterType((*ResponseEcho)(nil), "tendermint.abci.ResponseEcho") @@ -3344,6 +3504,7 @@ func init() { proto.RegisterType((*ResponsePrepareProposal)(nil), "tendermint.abci.ResponsePrepareProposal") proto.RegisterType((*ResponseExtendVote)(nil), "tendermint.abci.ResponseExtendVote") proto.RegisterType((*ResponseVerifyVoteExtension)(nil), "tendermint.abci.ResponseVerifyVoteExtension") + proto.RegisterType((*ResponseProcessProposal)(nil), "tendermint.abci.ResponseProcessProposal") proto.RegisterType((*LastCommitInfo)(nil), "tendermint.abci.LastCommitInfo") proto.RegisterType((*Event)(nil), "tendermint.abci.Event") proto.RegisterType((*EventAttribute)(nil), "tendermint.abci.EventAttribute") @@ -3358,190 +3519,197 @@ func init() { func init() { proto.RegisterFile("tendermint/abci/types.proto", fileDescriptor_252557cfdd89a31a) } var fileDescriptor_252557cfdd89a31a = []byte{ - // 2926 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe4, 0x5a, 0xcd, 0x73, 0x23, 0xc5, - 0x15, 0xd7, 0xa7, 0xad, 0x79, 0xb2, 0x3e, 0xdc, 0x5e, 0x16, 0x31, 0xec, 0xda, 0xcb, 0x50, 0xc0, - 0xb2, 0x80, 0x1d, 0xbc, 0x05, 0x59, 0x8a, 0x24, 0x60, 0x69, 0xe5, 0xc8, 0xac, 0x63, 0x3b, 0x6d, - 0xed, 0x52, 0x24, 0xb0, 0xc3, 0x48, 0xd3, 0xb6, 0x86, 0x95, 0x66, 0x86, 0x99, 0x91, 0xb0, 0xf7, - 0x98, 0x4a, 0x2e, 0x54, 0x0e, 0x1c, 0x73, 0xe1, 0x94, 0xfc, 0x11, 0x39, 0xe5, 0x94, 0x03, 0x87, - 0xa4, 0x8a, 0x63, 0x0e, 0x29, 0x92, 0x62, 0x6f, 0xf9, 0x07, 0x72, 0x4a, 0x55, 0xaa, 0x3f, 0xe6, - 0x4b, 0xd2, 0xe8, 0x03, 0x72, 0xcb, 0xad, 0xfb, 0xf5, 0x7b, 0x6f, 0xba, 0x5f, 0x77, 0xbf, 0xf7, - 0x7b, 0x6f, 0x1a, 0x9e, 0xf5, 0x88, 0xa9, 0x13, 0x67, 0x60, 0x98, 0xde, 0x8e, 0xd6, 0xe9, 0x1a, - 0x3b, 0xde, 0xa5, 0x4d, 0xdc, 0x6d, 0xdb, 0xb1, 0x3c, 0x0b, 0x55, 0xc2, 0xc1, 0x6d, 0x3a, 0x28, - 0x5f, 0x8f, 0x70, 0x77, 0x9d, 0x4b, 0xdb, 0xb3, 0x76, 0x6c, 0xc7, 0xb2, 0xce, 0x38, 0xbf, 0x7c, - 0x2d, 0x32, 0xcc, 0xf4, 0x44, 0xb5, 0xc5, 0x46, 0x85, 0xf0, 0x23, 0x72, 0xe9, 0x8f, 0x5e, 0x9f, - 0x90, 0xb5, 0x35, 0x47, 0x1b, 0xf8, 0xc3, 0x5b, 0xe7, 0x96, 0x75, 0xde, 0x27, 0x3b, 0xac, 0xd7, - 0x19, 0x9e, 0xed, 0x78, 0xc6, 0x80, 0xb8, 0x9e, 0x36, 0xb0, 0x05, 0xc3, 0x95, 0x73, 0xeb, 0xdc, - 0x62, 0xcd, 0x1d, 0xda, 0xe2, 0x54, 0xe5, 0xaf, 0x12, 0xac, 0x62, 0xf2, 0xe9, 0x90, 0xb8, 0x1e, - 0xda, 0x85, 0x1c, 0xe9, 0xf6, 0xac, 0x5a, 0xfa, 0x46, 0xfa, 0x66, 0x71, 0xf7, 0xda, 0xf6, 0xd8, - 0xe2, 0xb6, 0x05, 0x5f, 0xb3, 0xdb, 0xb3, 0x5a, 0x29, 0xcc, 0x78, 0xd1, 0x1b, 0x90, 0x3f, 0xeb, - 0x0f, 0xdd, 0x5e, 0x2d, 0xc3, 0x84, 0xae, 0x27, 0x09, 0xed, 0x53, 0xa6, 0x56, 0x0a, 0x73, 0x6e, - 0xfa, 0x29, 0xc3, 0x3c, 0xb3, 0x6a, 0xd9, 0xd9, 0x9f, 0x3a, 0x30, 0xcf, 0xd8, 0xa7, 0x28, 0x2f, - 0xaa, 0x03, 0x18, 0xa6, 0xe1, 0xa9, 0xdd, 0x9e, 0x66, 0x98, 0xb5, 0x1c, 0x93, 0x7c, 0x2e, 0x59, - 0xd2, 0xf0, 0x1a, 0x94, 0xb1, 0x95, 0xc2, 0x92, 0xe1, 0x77, 0xe8, 0x74, 0x3f, 0x1d, 0x12, 0xe7, - 0xb2, 0x96, 0x9f, 0x3d, 0xdd, 0x9f, 0x53, 0x26, 0x3a, 0x5d, 0xc6, 0x8d, 0x9a, 0x50, 0xec, 0x90, - 0x73, 0xc3, 0x54, 0x3b, 0x7d, 0xab, 0xfb, 0xa8, 0xb6, 0xc2, 0x84, 0x95, 0x24, 0xe1, 0x3a, 0x65, - 0xad, 0x53, 0xce, 0x56, 0x0a, 0x43, 0x27, 0xe8, 0xa1, 0x1f, 0x41, 0xa1, 0xdb, 0x23, 0xdd, 0x47, - 0xaa, 0x77, 0x51, 0x5b, 0x65, 0x3a, 0xb6, 0x92, 0x74, 0x34, 0x28, 0x5f, 0xfb, 0xa2, 0x95, 0xc2, - 0xab, 0x5d, 0xde, 0xa4, 0xeb, 0xd7, 0x49, 0xdf, 0x18, 0x11, 0x87, 0xca, 0x17, 0x66, 0xaf, 0xff, - 0x2e, 0xe7, 0x64, 0x1a, 0x24, 0xdd, 0xef, 0xa0, 0x77, 0x40, 0x22, 0xa6, 0x2e, 0x96, 0x21, 0x31, - 0x15, 0x37, 0x12, 0xf7, 0xd9, 0xd4, 0xfd, 0x45, 0x14, 0x88, 0x68, 0xa3, 0x3b, 0xb0, 0xd2, 0xb5, - 0x06, 0x03, 0xc3, 0xab, 0x01, 0x93, 0xde, 0x4c, 0x5c, 0x00, 0xe3, 0x6a, 0xa5, 0xb0, 0xe0, 0x47, - 0x47, 0x50, 0xee, 0x1b, 0xae, 0xa7, 0xba, 0xa6, 0x66, 0xbb, 0x3d, 0xcb, 0x73, 0x6b, 0x45, 0xa6, - 0xe1, 0x85, 0x24, 0x0d, 0x87, 0x86, 0xeb, 0x9d, 0xfa, 0xcc, 0xad, 0x14, 0x2e, 0xf5, 0xa3, 0x04, - 0xaa, 0xcf, 0x3a, 0x3b, 0x23, 0x4e, 0xa0, 0xb0, 0xb6, 0x36, 0x5b, 0xdf, 0x31, 0xe5, 0xf6, 0xe5, - 0xa9, 0x3e, 0x2b, 0x4a, 0x40, 0xbf, 0x84, 0x8d, 0xbe, 0xa5, 0xe9, 0x81, 0x3a, 0xb5, 0xdb, 0x1b, - 0x9a, 0x8f, 0x6a, 0x25, 0xa6, 0xf4, 0xe5, 0xc4, 0x49, 0x5a, 0x9a, 0xee, 0xab, 0x68, 0x50, 0x81, - 0x56, 0x0a, 0xaf, 0xf7, 0xc7, 0x89, 0xe8, 0x21, 0x5c, 0xd1, 0x6c, 0xbb, 0x7f, 0x39, 0xae, 0xbd, - 0xcc, 0xb4, 0xdf, 0x4a, 0xd2, 0xbe, 0x47, 0x65, 0xc6, 0xd5, 0x23, 0x6d, 0x82, 0x8a, 0xda, 0x50, - 0xb5, 0x1d, 0x62, 0x6b, 0x0e, 0x51, 0x6d, 0xc7, 0xb2, 0x2d, 0x57, 0xeb, 0xd7, 0x2a, 0x4c, 0xf7, - 0x4b, 0x49, 0xba, 0x4f, 0x38, 0xff, 0x89, 0x60, 0x6f, 0xa5, 0x70, 0xc5, 0x8e, 0x93, 0xe8, 0xb1, - 0x27, 0x17, 0x54, 0x5c, 0x1d, 0x59, 0x1e, 0xa9, 0x55, 0x67, 0x1f, 0xfb, 0x26, 0x63, 0x7d, 0x60, - 0x79, 0x84, 0x1e, 0x7b, 0x12, 0xf4, 0x90, 0x06, 0x4f, 0x8d, 0x88, 0x63, 0x9c, 0x5d, 0x32, 0x35, - 0x2a, 0x1b, 0x71, 0x0d, 0xcb, 0xac, 0xad, 0x33, 0x85, 0xaf, 0x24, 0x29, 0x7c, 0xc0, 0x84, 0xa8, - 0x8a, 0xa6, 0x2f, 0xd2, 0x4a, 0xe1, 0x8d, 0xd1, 0x24, 0xb9, 0xbe, 0x0a, 0xf9, 0x91, 0xd6, 0x1f, - 0x12, 0xe5, 0x25, 0x28, 0x46, 0xdc, 0x14, 0xaa, 0xc1, 0xea, 0x80, 0xb8, 0xae, 0x76, 0x4e, 0x98, - 0x57, 0x93, 0xb0, 0xdf, 0x55, 0xca, 0xb0, 0x16, 0x75, 0x4d, 0xca, 0x17, 0xe9, 0x40, 0x92, 0x7a, - 0x1d, 0x2a, 0x39, 0x22, 0x0e, 0x9b, 0xa6, 0x90, 0x14, 0x5d, 0xf4, 0x3c, 0x94, 0xd8, 0xfd, 0x51, - 0xfd, 0x71, 0xea, 0xfa, 0x72, 0x78, 0x8d, 0x11, 0x1f, 0x08, 0xa6, 0x2d, 0x28, 0xda, 0xbb, 0x76, - 0xc0, 0x92, 0x65, 0x2c, 0x60, 0xef, 0xda, 0x3e, 0xc3, 0x73, 0xb0, 0x46, 0xd7, 0x1a, 0x70, 0xe4, - 0xd8, 0x47, 0x8a, 0x94, 0x26, 0x58, 0x94, 0xbf, 0x64, 0xa0, 0x3a, 0xee, 0xce, 0xd0, 0x1d, 0xc8, - 0x51, 0xcf, 0x2e, 0x9c, 0xb4, 0xbc, 0xcd, 0xdd, 0xfe, 0xb6, 0xef, 0xf6, 0xb7, 0xdb, 0xbe, 0xdb, - 0xaf, 0x17, 0xbe, 0xfa, 0x66, 0x2b, 0xf5, 0xc5, 0x3f, 0xb6, 0xd2, 0x98, 0x49, 0xa0, 0x67, 0xa8, - 0xf7, 0xd1, 0x0c, 0x53, 0x35, 0x74, 0x36, 0x65, 0x89, 0xba, 0x16, 0xcd, 0x30, 0x0f, 0x74, 0x74, - 0x08, 0xd5, 0xae, 0x65, 0xba, 0xc4, 0x74, 0x87, 0xae, 0xca, 0xc3, 0x8a, 0x70, 0xcd, 0x31, 0x07, - 0xc3, 0x83, 0x55, 0xc3, 0xe7, 0x3c, 0x61, 0x8c, 0xb8, 0xd2, 0x8d, 0x13, 0xd0, 0x3e, 0xc0, 0x48, - 0xeb, 0x1b, 0xba, 0xe6, 0x59, 0x8e, 0x5b, 0xcb, 0xdd, 0xc8, 0x4e, 0xf5, 0x32, 0x0f, 0x7c, 0x96, - 0xfb, 0xb6, 0xae, 0x79, 0xa4, 0x9e, 0xa3, 0xd3, 0xc5, 0x11, 0x49, 0xf4, 0x22, 0x54, 0x34, 0xdb, - 0x56, 0x5d, 0x4f, 0xf3, 0x88, 0xda, 0xb9, 0xf4, 0x88, 0xcb, 0xdc, 0xf6, 0x1a, 0x2e, 0x69, 0xb6, - 0x7d, 0x4a, 0xa9, 0x75, 0x4a, 0x44, 0x2f, 0x40, 0x99, 0x7a, 0x78, 0x43, 0xeb, 0xab, 0x3d, 0x62, - 0x9c, 0xf7, 0x3c, 0xe6, 0xa0, 0xb3, 0xb8, 0x24, 0xa8, 0x2d, 0x46, 0x54, 0xf4, 0x60, 0xc7, 0x99, - 0x77, 0x47, 0x08, 0x72, 0xba, 0xe6, 0x69, 0xcc, 0x92, 0x6b, 0x98, 0xb5, 0x29, 0xcd, 0xd6, 0xbc, - 0x9e, 0xb0, 0x0f, 0x6b, 0xa3, 0xab, 0xb0, 0x22, 0xd4, 0x66, 0x99, 0x5a, 0xd1, 0x43, 0x57, 0x20, - 0x6f, 0x3b, 0xd6, 0x88, 0xb0, 0xad, 0x2b, 0x60, 0xde, 0x51, 0x7e, 0x9d, 0x81, 0xf5, 0x89, 0x38, - 0x40, 0xf5, 0xf6, 0x34, 0xb7, 0xe7, 0x7f, 0x8b, 0xb6, 0xd1, 0x9b, 0x54, 0xaf, 0xa6, 0x13, 0x47, - 0xc4, 0xce, 0xda, 0xa4, 0xa9, 0x5b, 0x6c, 0x5c, 0x98, 0x46, 0x70, 0xa3, 0x63, 0xa8, 0xf6, 0x35, - 0xd7, 0x53, 0xb9, 0x5f, 0x55, 0x23, 0x71, 0x74, 0x32, 0x9a, 0x1c, 0x6a, 0xbe, 0x27, 0xa6, 0x87, - 0x5a, 0x28, 0x2a, 0xf7, 0x63, 0x54, 0x84, 0xe1, 0x4a, 0xe7, 0xf2, 0xb1, 0x66, 0x7a, 0x86, 0x49, - 0xd4, 0x89, 0x9d, 0x7b, 0x66, 0x42, 0x69, 0x73, 0x64, 0xe8, 0xc4, 0xec, 0xfa, 0x5b, 0xb6, 0x11, - 0x08, 0x07, 0x5b, 0xea, 0x2a, 0x18, 0xca, 0xf1, 0x48, 0x86, 0xca, 0x90, 0xf1, 0x2e, 0x84, 0x01, - 0x32, 0xde, 0x05, 0xfa, 0x01, 0xe4, 0xe8, 0x22, 0xd9, 0xe2, 0xcb, 0x53, 0x20, 0x80, 0x90, 0x6b, - 0x5f, 0xda, 0x04, 0x33, 0x4e, 0x45, 0x09, 0xae, 0x43, 0x10, 0xdd, 0xc6, 0xb5, 0x2a, 0x2f, 0x43, - 0x65, 0x2c, 0x7c, 0x45, 0xf6, 0x2f, 0x1d, 0xdd, 0x3f, 0xa5, 0x02, 0xa5, 0x58, 0xac, 0x52, 0xae, - 0xc2, 0x95, 0x69, 0xa1, 0x47, 0xe9, 0x05, 0xf4, 0x58, 0x08, 0x41, 0x6f, 0x40, 0x21, 0x88, 0x3d, - 0xfc, 0x3a, 0x4e, 0xda, 0xca, 0x67, 0xc6, 0x01, 0x2b, 0xbd, 0x87, 0xf4, 0x58, 0xb3, 0xf3, 0x90, - 0x61, 0x13, 0x5f, 0xd5, 0x6c, 0xbb, 0xa5, 0xb9, 0x3d, 0xe5, 0x63, 0xa8, 0x25, 0xc5, 0x95, 0xb1, - 0x65, 0xe4, 0x82, 0x63, 0x78, 0x15, 0x56, 0xce, 0x2c, 0x67, 0xa0, 0x79, 0x4c, 0x59, 0x09, 0x8b, - 0x1e, 0x3d, 0x9e, 0x3c, 0xc6, 0x64, 0x19, 0x99, 0x77, 0x14, 0x15, 0x9e, 0x49, 0x8c, 0x2d, 0x54, - 0xc4, 0x30, 0x75, 0xc2, 0xed, 0x59, 0xc2, 0xbc, 0x13, 0x2a, 0xe2, 0x93, 0xe5, 0x1d, 0xfa, 0x59, - 0x97, 0xad, 0x95, 0xe9, 0x97, 0xb0, 0xe8, 0x29, 0x2a, 0x5c, 0x9d, 0x1e, 0x60, 0xd0, 0x75, 0x00, - 0xee, 0x37, 0xc5, 0xad, 0xcb, 0xde, 0x5c, 0xc3, 0x12, 0xa3, 0xdc, 0xa5, 0x57, 0xef, 0x45, 0xa8, - 0x84, 0xc3, 0xaa, 0x6b, 0x3c, 0xe6, 0x47, 0x23, 0x8b, 0x4b, 0x01, 0xcf, 0xa9, 0xf1, 0x98, 0x28, - 0xef, 0x04, 0xf7, 0x2b, 0x0c, 0x38, 0xe8, 0x16, 0xe4, 0x58, 0x88, 0xe2, 0xdb, 0x70, 0x75, 0xf2, - 0x26, 0x51, 0x2e, 0xcc, 0x78, 0x94, 0x16, 0xc8, 0xc9, 0x01, 0x66, 0x29, 0x4d, 0xbf, 0x07, 0x28, - 0x60, 0xe2, 0xda, 0xd4, 0xff, 0xa1, 0x3a, 0x48, 0xe4, 0xa2, 0x4b, 0x6c, 0xcf, 0x0f, 0x19, 0xd3, - 0x43, 0x25, 0xe7, 0x6e, 0xfa, 0x9c, 0x14, 0x9e, 0x05, 0x62, 0xe8, 0xb6, 0x40, 0xe0, 0xc9, 0x60, - 0x5a, 0x88, 0x47, 0x21, 0xf8, 0x9b, 0x3e, 0x04, 0xcf, 0x26, 0x22, 0x32, 0x2e, 0x35, 0x86, 0xc1, - 0x6f, 0x0b, 0x0c, 0x9e, 0x9b, 0xf3, 0xb1, 0x18, 0x08, 0x6f, 0xc4, 0x40, 0x78, 0x7e, 0xce, 0x32, - 0x13, 0x50, 0xf8, 0x9b, 0x3e, 0x0a, 0x5f, 0x99, 0x33, 0xe3, 0x31, 0x18, 0xbe, 0x1f, 0x87, 0xe1, - 0x1c, 0x42, 0x3f, 0x9f, 0x28, 0x9d, 0x88, 0xc3, 0x7f, 0x1c, 0xc1, 0xe1, 0x85, 0x44, 0x10, 0xcc, - 0x95, 0x4c, 0x01, 0xe2, 0x8d, 0x18, 0x10, 0x97, 0xe6, 0xd8, 0x20, 0x01, 0x89, 0xbf, 0x1b, 0x45, - 0xe2, 0x90, 0x08, 0xe6, 0xc5, 0x7e, 0x4f, 0x83, 0xe2, 0x6f, 0x05, 0x50, 0xbc, 0x98, 0x98, 0x4b, - 0x88, 0x35, 0x8c, 0x63, 0xf1, 0xe3, 0x09, 0x2c, 0xce, 0xb1, 0xf3, 0x8b, 0x89, 0x2a, 0xe6, 0x80, - 0xf1, 0xe3, 0x09, 0x30, 0x5e, 0x9a, 0xa3, 0x70, 0x0e, 0x1a, 0xff, 0x70, 0x3a, 0x1a, 0x4f, 0xc6, - 0xcb, 0x62, 0x9a, 0x8b, 0xc1, 0x71, 0x35, 0x01, 0x8e, 0x57, 0x12, 0x01, 0x29, 0x57, 0xbf, 0x30, - 0x1e, 0xbf, 0x3f, 0x05, 0x8f, 0x73, 0xf8, 0x7c, 0x33, 0x51, 0xf9, 0x02, 0x80, 0x7c, 0x3f, 0x0e, - 0xc8, 0xd7, 0xe7, 0x5c, 0x80, 0x44, 0x44, 0xde, 0x49, 0x42, 0xe4, 0x88, 0x69, 0x7c, 0x35, 0x51, - 0xe3, 0x77, 0x81, 0xe4, 0x2f, 0x53, 0x87, 0x3d, 0xe6, 0xf6, 0x68, 0x50, 0x21, 0x8e, 0x63, 0x39, - 0x02, 0x5c, 0xf3, 0x8e, 0x72, 0x93, 0x42, 0xb4, 0xd0, 0xc5, 0xcd, 0x80, 0xef, 0x2c, 0x78, 0x47, - 0xdc, 0x9a, 0xf2, 0xc7, 0x74, 0x28, 0xcb, 0x50, 0x4d, 0x14, 0xde, 0x49, 0x02, 0xde, 0x45, 0x40, - 0x7d, 0x26, 0x0e, 0xea, 0xb7, 0xa0, 0x48, 0x83, 0xf2, 0x18, 0x5e, 0xd7, 0xec, 0x00, 0xaf, 0xdf, - 0x82, 0x75, 0x86, 0xba, 0x78, 0x8c, 0x12, 0x91, 0x38, 0xc7, 0x02, 0x54, 0x85, 0x0e, 0xf0, 0xfb, - 0xc9, 0x43, 0xf2, 0x6b, 0xb0, 0x11, 0xe1, 0x0d, 0x82, 0x3d, 0x07, 0xaf, 0xd5, 0x80, 0x7b, 0x4f, - 0x44, 0xfd, 0x3f, 0xa7, 0x43, 0x0b, 0x85, 0x40, 0x7f, 0x1a, 0x26, 0x4f, 0xff, 0x8f, 0x30, 0x79, - 0xe6, 0x3b, 0x63, 0xf2, 0x28, 0x78, 0xc9, 0xc6, 0xc1, 0xcb, 0xbf, 0xd3, 0xe1, 0x9e, 0x04, 0x08, - 0xbb, 0x6b, 0xe9, 0x44, 0xc0, 0x09, 0xd6, 0x46, 0x55, 0xc8, 0xf6, 0xad, 0x73, 0x01, 0x1a, 0x68, - 0x93, 0x72, 0x05, 0x71, 0x48, 0x12, 0x61, 0x26, 0x40, 0x22, 0x79, 0x66, 0x61, 0x81, 0x44, 0xaa, - 0x90, 0x7d, 0x44, 0x78, 0xd4, 0x58, 0xc3, 0xb4, 0x49, 0xf9, 0xd8, 0x21, 0x63, 0xb1, 0x60, 0x0d, - 0xf3, 0x0e, 0xba, 0x03, 0x12, 0xab, 0xba, 0xa9, 0x96, 0xed, 0x0a, 0x07, 0xff, 0x6c, 0x74, 0xad, - 0xbc, 0xb8, 0xb6, 0x7d, 0x42, 0x79, 0x8e, 0x6d, 0x17, 0x17, 0x6c, 0xd1, 0x8a, 0x80, 0x2c, 0x29, - 0x86, 0xf5, 0xaf, 0x81, 0x44, 0x67, 0xef, 0xda, 0x5a, 0x97, 0x30, 0x6f, 0x2d, 0xe1, 0x90, 0xa0, - 0x3c, 0x04, 0x34, 0x19, 0x73, 0x50, 0x0b, 0x56, 0xc8, 0x88, 0x98, 0x9e, 0xcb, 0xb0, 0xce, 0x18, - 0x96, 0x10, 0x40, 0x9a, 0x98, 0x5e, 0xbd, 0x46, 0x8d, 0xfc, 0xaf, 0x6f, 0xb6, 0xaa, 0x9c, 0xfb, - 0x55, 0x6b, 0x60, 0x78, 0x64, 0x60, 0x7b, 0x97, 0x58, 0xc8, 0x2b, 0x7f, 0xcf, 0x50, 0x54, 0x1b, - 0x8b, 0x47, 0x53, 0x6d, 0xeb, 0x1f, 0xf9, 0x4c, 0x24, 0xa3, 0x59, 0xcc, 0xde, 0x9b, 0x00, 0xe7, - 0x9a, 0xab, 0x7e, 0xa6, 0x99, 0x1e, 0xd1, 0x85, 0xd1, 0x23, 0x14, 0x24, 0x43, 0x81, 0xf6, 0x86, - 0x2e, 0xd1, 0x45, 0x72, 0x15, 0xf4, 0x23, 0xeb, 0x5c, 0xfd, 0x7e, 0xeb, 0x8c, 0x5b, 0xb9, 0x30, - 0x66, 0xe5, 0x08, 0xe2, 0x94, 0xa2, 0x88, 0x93, 0xce, 0xcd, 0x76, 0x0c, 0xcb, 0x31, 0xbc, 0x4b, - 0xb6, 0x35, 0x59, 0x1c, 0xf4, 0x69, 0xae, 0x3e, 0x20, 0x03, 0xdb, 0xb2, 0xfa, 0x2a, 0x77, 0x37, - 0x45, 0x26, 0xba, 0x26, 0x88, 0x4d, 0xe6, 0x75, 0x7e, 0x93, 0x09, 0xef, 0x5f, 0x98, 0x59, 0xfc, - 0xdf, 0x19, 0x58, 0xf9, 0x2d, 0xab, 0x37, 0xc4, 0x11, 0x07, 0x3a, 0x85, 0xf5, 0xe0, 0xfa, 0xab, - 0x43, 0xe6, 0x16, 0xfc, 0x03, 0xbd, 0xa8, 0xff, 0xa8, 0x8e, 0xe2, 0x64, 0x17, 0x7d, 0x00, 0x4f, - 0x8f, 0xf9, 0xb6, 0x40, 0x75, 0x66, 0x51, 0x17, 0xf7, 0x54, 0xdc, 0xc5, 0xf9, 0xaa, 0x43, 0x63, - 0x65, 0xbf, 0xe7, 0xad, 0x3b, 0xa0, 0x29, 0x6c, 0x14, 0x40, 0x4d, 0xdd, 0xfe, 0xe7, 0xa1, 0xe4, - 0x10, 0x4f, 0x33, 0x4c, 0x35, 0x56, 0x24, 0x58, 0xe3, 0x44, 0x51, 0x7a, 0x38, 0x81, 0xa7, 0xa6, - 0x02, 0x29, 0xf4, 0x43, 0x90, 0x42, 0x0c, 0x96, 0x4e, 0xc8, 0xb7, 0x83, 0x1c, 0x32, 0xe4, 0x55, - 0xfe, 0x94, 0x0e, 0x55, 0xc6, 0xb3, 0xd2, 0x26, 0xac, 0x38, 0xc4, 0x1d, 0xf6, 0x79, 0x9e, 0x58, - 0xde, 0x7d, 0x6d, 0x31, 0x08, 0x46, 0xa9, 0xc3, 0xbe, 0x87, 0x85, 0xb0, 0xf2, 0x10, 0x56, 0x38, - 0x05, 0x15, 0x61, 0xf5, 0xfe, 0xd1, 0xbd, 0xa3, 0xe3, 0xf7, 0x8f, 0xaa, 0x29, 0x04, 0xb0, 0xb2, - 0xd7, 0x68, 0x34, 0x4f, 0xda, 0xd5, 0x34, 0x92, 0x20, 0xbf, 0x57, 0x3f, 0xc6, 0xed, 0x6a, 0x86, - 0x92, 0x71, 0xf3, 0xbd, 0x66, 0xa3, 0x5d, 0xcd, 0xa2, 0x75, 0x28, 0xf1, 0xb6, 0xba, 0x7f, 0x8c, - 0x7f, 0xb6, 0xd7, 0xae, 0xe6, 0x22, 0xa4, 0xd3, 0xe6, 0xd1, 0xdd, 0x26, 0xae, 0xe6, 0x95, 0xd7, - 0x69, 0x22, 0x9a, 0x00, 0xda, 0xc2, 0x94, 0x33, 0x1d, 0x49, 0x39, 0x95, 0xdf, 0x65, 0x68, 0xe6, - 0x96, 0x84, 0xc4, 0xd0, 0x7b, 0x63, 0x0b, 0xdf, 0x5d, 0x02, 0xc6, 0x8d, 0xad, 0x1e, 0xbd, 0x00, - 0x65, 0x87, 0x9c, 0x11, 0xaf, 0xdb, 0xe3, 0xc8, 0x90, 0x87, 0xcc, 0x12, 0x2e, 0x09, 0x2a, 0x13, - 0x72, 0x39, 0xdb, 0x27, 0xa4, 0xeb, 0xa9, 0xdc, 0x17, 0xf1, 0x43, 0x27, 0x51, 0x36, 0x4a, 0x3d, - 0xe5, 0x44, 0xe5, 0xe3, 0xa5, 0x6c, 0x29, 0x41, 0x1e, 0x37, 0xdb, 0xf8, 0x83, 0x6a, 0x16, 0x21, - 0x28, 0xb3, 0xa6, 0x7a, 0x7a, 0xb4, 0x77, 0x72, 0xda, 0x3a, 0xa6, 0xb6, 0xdc, 0x80, 0x8a, 0x6f, - 0x4b, 0x9f, 0x98, 0x57, 0xee, 0xc0, 0xd3, 0x09, 0x30, 0x72, 0x4e, 0xda, 0xad, 0x7c, 0x18, 0xc6, - 0xae, 0x48, 0x3e, 0xbd, 0x0f, 0xe5, 0x31, 0x64, 0x98, 0x9e, 0xcc, 0x31, 0xc2, 0x7c, 0x38, 0x40, - 0x7d, 0xb8, 0x34, 0x8a, 0x76, 0x95, 0x3f, 0xa4, 0xe1, 0xd9, 0x19, 0xd8, 0x11, 0xdd, 0x1b, 0xdb, - 0xb3, 0xdb, 0xcb, 0x20, 0xcf, 0xf1, 0x23, 0x7b, 0x67, 0x21, 0x33, 0x9f, 0x1e, 0xee, 0x9d, 0xb6, - 0xe2, 0x47, 0x56, 0xf9, 0x08, 0xca, 0xf1, 0x4a, 0x19, 0x3d, 0x81, 0x8e, 0x35, 0x34, 0x75, 0x36, - 0xaf, 0x3c, 0xe6, 0x1d, 0xf4, 0x06, 0xe4, 0xe9, 0xfa, 0x7c, 0x00, 0x35, 0x79, 0x55, 0xe9, 0xfc, - 0x22, 0x95, 0x36, 0xce, 0xad, 0x3c, 0x86, 0x3c, 0x73, 0x3a, 0xd4, 0x81, 0xb0, 0x9a, 0x97, 0xc0, - 0xa4, 0xb4, 0x8d, 0x3e, 0x02, 0xd0, 0x3c, 0xcf, 0x31, 0x3a, 0xc3, 0x50, 0xf1, 0xd6, 0x74, 0xa7, - 0xb5, 0xe7, 0xf3, 0xd5, 0xaf, 0x09, 0xef, 0x75, 0x25, 0x14, 0x8d, 0x78, 0xb0, 0x88, 0x42, 0xe5, - 0x08, 0xca, 0x71, 0x59, 0x1f, 0x45, 0xf1, 0x39, 0xc4, 0x51, 0x14, 0x07, 0xc5, 0x02, 0x45, 0x05, - 0x18, 0x2c, 0xcb, 0xeb, 0x9b, 0xac, 0xa3, 0x7c, 0x9e, 0x86, 0x42, 0xfb, 0x42, 0xd8, 0x39, 0xa1, - 0xb4, 0x16, 0x8a, 0x66, 0xa2, 0x85, 0x24, 0x5e, 0xab, 0xcb, 0x06, 0x15, 0xc0, 0x77, 0x83, 0xcd, - 0xcf, 0x2d, 0x9a, 0x43, 0xfb, 0xa5, 0x50, 0xb1, 0xe3, 0x6f, 0x83, 0x14, 0x84, 0x1c, 0x0a, 0xee, - 0x35, 0x5d, 0x77, 0x88, 0xeb, 0x0a, 0xb7, 0xe1, 0x77, 0x59, 0xa5, 0xd6, 0xfa, 0x4c, 0x94, 0xaa, - 0xb2, 0x98, 0x77, 0x14, 0x1d, 0x2a, 0x63, 0xf1, 0x0a, 0xbd, 0x0d, 0xab, 0xf6, 0xb0, 0xa3, 0xfa, - 0xe6, 0x19, 0xfb, 0x33, 0xe9, 0xc3, 0xc6, 0x61, 0xa7, 0x6f, 0x74, 0xef, 0x91, 0x4b, 0x7f, 0x32, - 0xf6, 0xb0, 0x73, 0x8f, 0x5b, 0x91, 0x7f, 0x25, 0x13, 0xfd, 0xca, 0x08, 0x0a, 0xfe, 0xa1, 0x40, - 0x3f, 0x01, 0x29, 0x08, 0x85, 0x41, 0x01, 0x3f, 0x31, 0x86, 0x0a, 0xf5, 0xa1, 0x08, 0xcd, 0x41, - 0x5c, 0xe3, 0xdc, 0x24, 0xba, 0x1a, 0xa6, 0x17, 0xec, 0x6b, 0x05, 0x5c, 0xe1, 0x03, 0x87, 0x7e, - 0x6e, 0xa1, 0xfc, 0x27, 0x0d, 0x05, 0xbf, 0x50, 0x8b, 0x5e, 0x8f, 0x9c, 0xbb, 0xf2, 0x94, 0x52, - 0x8f, 0xcf, 0x18, 0x16, 0x5b, 0xe3, 0x73, 0xcd, 0x2c, 0x3f, 0xd7, 0xa4, 0xaa, 0xb9, 0xff, 0xff, - 0x22, 0xb7, 0xf4, 0xff, 0x8b, 0x57, 0x01, 0x79, 0x96, 0xa7, 0xf5, 0x69, 0xce, 0x6a, 0x98, 0xe7, - 0x2a, 0x37, 0x36, 0x87, 0x52, 0x55, 0x36, 0xf2, 0x80, 0x0d, 0x9c, 0x30, 0xbb, 0xff, 0x2a, 0x0d, - 0x85, 0x20, 0x26, 0x2e, 0x5b, 0x3b, 0xbd, 0x0a, 0x2b, 0xc2, 0xed, 0xf3, 0xe2, 0xa9, 0xe8, 0x05, - 0x65, 0xfc, 0x5c, 0xa4, 0x8c, 0x2f, 0x43, 0x61, 0x40, 0x3c, 0x8d, 0x79, 0x57, 0x9e, 0xe1, 0x05, - 0xfd, 0x5b, 0x6f, 0x41, 0x31, 0x52, 0xc6, 0xa6, 0x37, 0xef, 0xa8, 0xf9, 0x7e, 0x35, 0x25, 0xaf, - 0x7e, 0xfe, 0xe5, 0x8d, 0xec, 0x11, 0xf9, 0x8c, 0x9e, 0x59, 0xdc, 0x6c, 0xb4, 0x9a, 0x8d, 0x7b, - 0xd5, 0xb4, 0x5c, 0xfc, 0xfc, 0xcb, 0x1b, 0xab, 0x98, 0xb0, 0x32, 0xd3, 0xad, 0x16, 0xac, 0x45, - 0x77, 0x25, 0xee, 0xd2, 0x10, 0x94, 0xef, 0xde, 0x3f, 0x39, 0x3c, 0x68, 0xec, 0xb5, 0x9b, 0xea, - 0x83, 0xe3, 0x76, 0xb3, 0x9a, 0x46, 0x4f, 0xc3, 0xc6, 0xe1, 0xc1, 0x4f, 0x5b, 0x6d, 0xb5, 0x71, - 0x78, 0xd0, 0x3c, 0x6a, 0xab, 0x7b, 0xed, 0xf6, 0x5e, 0xe3, 0x5e, 0x35, 0xb3, 0xfb, 0x4d, 0x11, - 0x2a, 0x7b, 0xf5, 0xc6, 0x01, 0x8d, 0x7a, 0x46, 0x57, 0x63, 0xe9, 0x77, 0x03, 0x72, 0x2c, 0xc1, - 0x9e, 0xf9, 0x93, 0x5f, 0x9e, 0x5d, 0x80, 0x44, 0xfb, 0x90, 0x67, 0xb9, 0x37, 0x9a, 0xfd, 0xd7, - 0x5f, 0x9e, 0x53, 0x91, 0xa4, 0x93, 0x61, 0xd7, 0x63, 0xe6, 0x33, 0x00, 0x79, 0x76, 0x81, 0x12, - 0x61, 0x90, 0x42, 0xec, 0x3e, 0xff, 0xb7, 0xb8, 0xbc, 0x80, 0xb3, 0x41, 0x87, 0xb0, 0xea, 0xa7, - 0x5b, 0xf3, 0x7e, 0xd4, 0xcb, 0x73, 0x2b, 0x88, 0xd4, 0x5c, 0x3c, 0x2d, 0x9e, 0xfd, 0xea, 0x40, - 0x9e, 0x53, 0x0e, 0x45, 0x07, 0xb0, 0x22, 0xf0, 0xe8, 0x9c, 0x9f, 0xef, 0xf2, 0xbc, 0x8a, 0x20, - 0x35, 0x5a, 0x58, 0x70, 0x98, 0xff, 0x96, 0x42, 0x5e, 0xa0, 0xd2, 0x8b, 0xee, 0x03, 0x44, 0x92, - 0xe0, 0x05, 0x1e, 0x49, 0xc8, 0x8b, 0x54, 0x70, 0xd1, 0x31, 0x14, 0x82, 0x9c, 0x64, 0xee, 0x93, - 0x05, 0x79, 0x7e, 0x29, 0x15, 0x3d, 0x84, 0x52, 0x1c, 0x8b, 0x2f, 0xf6, 0x10, 0x41, 0x5e, 0xb0, - 0x46, 0x4a, 0xf5, 0xc7, 0x81, 0xf9, 0x62, 0x0f, 0x13, 0xe4, 0x05, 0x4b, 0xa6, 0xe8, 0x13, 0x58, - 0x9f, 0x04, 0xce, 0x8b, 0xbf, 0x53, 0x90, 0x97, 0x28, 0xa2, 0xa2, 0x01, 0xa0, 0x29, 0x80, 0x7b, - 0x89, 0x67, 0x0b, 0xf2, 0x32, 0x35, 0x55, 0xa4, 0x43, 0x65, 0x1c, 0xc5, 0x2e, 0xfa, 0x8c, 0x41, - 0x5e, 0xb8, 0xbe, 0x4a, 0x0f, 0x6a, 0x04, 0xf1, 0x2e, 0xf0, 0xac, 0x41, 0x5e, 0xa4, 0xd2, 0x8a, - 0x6c, 0xd8, 0x98, 0x86, 0x74, 0x97, 0x79, 0xe5, 0x20, 0x2f, 0x55, 0x80, 0xad, 0x37, 0xbf, 0xfa, - 0x76, 0x33, 0xfd, 0xf5, 0xb7, 0x9b, 0xe9, 0x7f, 0x7e, 0xbb, 0x99, 0xfe, 0xe2, 0xc9, 0x66, 0xea, - 0xeb, 0x27, 0x9b, 0xa9, 0xbf, 0x3d, 0xd9, 0x4c, 0xfd, 0xe2, 0x95, 0x73, 0xc3, 0xeb, 0x0d, 0x3b, - 0xdb, 0x5d, 0x6b, 0xb0, 0x13, 0x7d, 0x3e, 0x36, 0xed, 0x49, 0x5b, 0x67, 0x85, 0xc5, 0xe0, 0xdb, - 0xff, 0x0d, 0x00, 0x00, 0xff, 0xff, 0x05, 0x6a, 0x5b, 0xf0, 0xf2, 0x26, 0x00, 0x00, + // 3029 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe4, 0x5a, 0xcd, 0x73, 0x23, 0xd5, + 0xb5, 0xd7, 0xa7, 0x2d, 0x1d, 0xeb, 0xcb, 0xd7, 0xc3, 0x20, 0x9a, 0x19, 0x7b, 0xe8, 0x29, 0x60, + 0x18, 0xc0, 0x7e, 0x78, 0x0a, 0xde, 0x50, 0xbc, 0xf7, 0xc0, 0xd2, 0xc8, 0xc8, 0x8c, 0x9f, 0xed, + 0x5c, 0x6b, 0x86, 0x22, 0x81, 0x69, 0x5a, 0xd2, 0xb5, 0xd5, 0x8c, 0xd4, 0xdd, 0x74, 0xb7, 0x84, + 0x3d, 0xcb, 0x54, 0xb2, 0xa1, 0xb2, 0x60, 0x99, 0x0d, 0xab, 0x64, 0x9b, 0x7d, 0x56, 0x59, 0xb1, + 0x60, 0x91, 0x05, 0xcb, 0x2c, 0x52, 0x24, 0x05, 0xbb, 0xfc, 0x03, 0xa9, 0x4a, 0x55, 0xaa, 0x52, + 0xf7, 0xa3, 0x3f, 0xa5, 0x96, 0x5a, 0x90, 0x5d, 0x76, 0x7d, 0x4f, 0x9f, 0x73, 0xfa, 0x7e, 0x9e, + 0xf3, 0xfb, 0x9d, 0xbe, 0xf0, 0xac, 0x43, 0xf4, 0x3e, 0xb1, 0x46, 0x9a, 0xee, 0xec, 0xa8, 0xdd, + 0x9e, 0xb6, 0xe3, 0x5c, 0x9a, 0xc4, 0xde, 0x36, 0x2d, 0xc3, 0x31, 0x50, 0xd5, 0x7f, 0xb9, 0x4d, + 0x5f, 0x4a, 0xd7, 0x03, 0xda, 0x3d, 0xeb, 0xd2, 0x74, 0x8c, 0x1d, 0xd3, 0x32, 0x8c, 0x33, 0xae, + 0x2f, 0x5d, 0x0b, 0xbc, 0x66, 0x7e, 0x82, 0xde, 0x42, 0x6f, 0x85, 0xf1, 0x63, 0x72, 0xe9, 0xbe, + 0xbd, 0x3e, 0x65, 0x6b, 0xaa, 0x96, 0x3a, 0x72, 0x5f, 0x6f, 0x9d, 0x1b, 0xc6, 0xf9, 0x90, 0xec, + 0xb0, 0x56, 0x77, 0x7c, 0xb6, 0xe3, 0x68, 0x23, 0x62, 0x3b, 0xea, 0xc8, 0x14, 0x0a, 0x57, 0xce, + 0x8d, 0x73, 0x83, 0x3d, 0xee, 0xd0, 0x27, 0x2e, 0x95, 0x7f, 0x03, 0xb0, 0x8a, 0xc9, 0xa7, 0x63, + 0x62, 0x3b, 0x68, 0x17, 0x72, 0xa4, 0x37, 0x30, 0xea, 0xe9, 0x1b, 0xe9, 0x5b, 0x6b, 0xbb, 0xd7, + 0xb6, 0x23, 0x83, 0xdb, 0x16, 0x7a, 0xad, 0xde, 0xc0, 0x68, 0xa7, 0x30, 0xd3, 0x45, 0xaf, 0x43, + 0xfe, 0x6c, 0x38, 0xb6, 0x07, 0xf5, 0x0c, 0x33, 0xba, 0x1e, 0x67, 0xb4, 0x4f, 0x95, 0xda, 0x29, + 0xcc, 0xb5, 0xe9, 0xa7, 0x34, 0xfd, 0xcc, 0xa8, 0x67, 0xe7, 0x7f, 0xea, 0x40, 0x3f, 0x63, 0x9f, + 0xa2, 0xba, 0xa8, 0x01, 0xa0, 0xe9, 0x9a, 0xa3, 0xf4, 0x06, 0xaa, 0xa6, 0xd7, 0x73, 0xcc, 0xf2, + 0xb9, 0x78, 0x4b, 0xcd, 0x69, 0x52, 0xc5, 0x76, 0x0a, 0x17, 0x35, 0xb7, 0x41, 0xbb, 0xfb, 0xe9, + 0x98, 0x58, 0x97, 0xf5, 0xfc, 0xfc, 0xee, 0xfe, 0x84, 0x2a, 0xd1, 0xee, 0x32, 0x6d, 0xd4, 0x82, + 0xb5, 0x2e, 0x39, 0xd7, 0x74, 0xa5, 0x3b, 0x34, 0x7a, 0x8f, 0xeb, 0x2b, 0xcc, 0x58, 0x8e, 0x33, + 0x6e, 0x50, 0xd5, 0x06, 0xd5, 0x6c, 0xa7, 0x30, 0x74, 0xbd, 0x16, 0xfa, 0x1f, 0x28, 0xf4, 0x06, + 0xa4, 0xf7, 0x58, 0x71, 0x2e, 0xea, 0xab, 0xcc, 0xc7, 0x56, 0x9c, 0x8f, 0x26, 0xd5, 0xeb, 0x5c, + 0xb4, 0x53, 0x78, 0xb5, 0xc7, 0x1f, 0xe9, 0xf8, 0xfb, 0x64, 0xa8, 0x4d, 0x88, 0x45, 0xed, 0x0b, + 0xf3, 0xc7, 0x7f, 0x8f, 0x6b, 0x32, 0x0f, 0xc5, 0xbe, 0xdb, 0x40, 0x6f, 0x43, 0x91, 0xe8, 0x7d, + 0x31, 0x8c, 0x22, 0x73, 0x71, 0x23, 0x76, 0x9d, 0xf5, 0xbe, 0x3b, 0x88, 0x02, 0x11, 0xcf, 0xe8, + 0x2e, 0xac, 0xf4, 0x8c, 0xd1, 0x48, 0x73, 0xea, 0xc0, 0xac, 0x37, 0x63, 0x07, 0xc0, 0xb4, 0xda, + 0x29, 0x2c, 0xf4, 0xd1, 0x11, 0x54, 0x86, 0x9a, 0xed, 0x28, 0xb6, 0xae, 0x9a, 0xf6, 0xc0, 0x70, + 0xec, 0xfa, 0x1a, 0xf3, 0xf0, 0x7c, 0x9c, 0x87, 0x43, 0xcd, 0x76, 0x4e, 0x5d, 0xe5, 0x76, 0x0a, + 0x97, 0x87, 0x41, 0x01, 0xf5, 0x67, 0x9c, 0x9d, 0x11, 0xcb, 0x73, 0x58, 0x2f, 0xcd, 0xf7, 0x77, + 0x4c, 0xb5, 0x5d, 0x7b, 0xea, 0xcf, 0x08, 0x0a, 0xd0, 0xcf, 0x60, 0x63, 0x68, 0xa8, 0x7d, 0xcf, + 0x9d, 0xd2, 0x1b, 0x8c, 0xf5, 0xc7, 0xf5, 0x32, 0x73, 0xfa, 0x52, 0x6c, 0x27, 0x0d, 0xb5, 0xef, + 0xba, 0x68, 0x52, 0x83, 0x76, 0x0a, 0xaf, 0x0f, 0xa3, 0x42, 0xf4, 0x08, 0xae, 0xa8, 0xa6, 0x39, + 0xbc, 0x8c, 0x7a, 0xaf, 0x30, 0xef, 0xb7, 0xe3, 0xbc, 0xef, 0x51, 0x9b, 0xa8, 0x7b, 0xa4, 0x4e, + 0x49, 0x51, 0x07, 0x6a, 0xa6, 0x45, 0x4c, 0xd5, 0x22, 0x8a, 0x69, 0x19, 0xa6, 0x61, 0xab, 0xc3, + 0x7a, 0x95, 0xf9, 0x7e, 0x31, 0xce, 0xf7, 0x09, 0xd7, 0x3f, 0x11, 0xea, 0xed, 0x14, 0xae, 0x9a, + 0x61, 0x11, 0xf7, 0x6a, 0xf4, 0x88, 0x6d, 0xfb, 0x5e, 0x6b, 0x8b, 0xbc, 0x32, 0xfd, 0xb0, 0xd7, + 0x90, 0x88, 0x1e, 0x26, 0x72, 0x41, 0xcd, 0x95, 0x89, 0xe1, 0x90, 0xfa, 0xfa, 0xfc, 0xc3, 0xd4, + 0x62, 0xaa, 0x0f, 0x0d, 0x87, 0xd0, 0xc3, 0x44, 0xbc, 0x16, 0x52, 0xe1, 0xa9, 0x09, 0xb1, 0xb4, + 0xb3, 0x4b, 0xe6, 0x46, 0x61, 0x6f, 0x6c, 0xcd, 0xd0, 0xeb, 0x88, 0x39, 0x7c, 0x39, 0xce, 0xe1, + 0x43, 0x66, 0x44, 0x5d, 0xb4, 0x5c, 0x93, 0x76, 0x0a, 0x6f, 0x4c, 0xa6, 0xc5, 0x8d, 0x55, 0xc8, + 0x4f, 0xd4, 0xe1, 0x98, 0xc8, 0x2f, 0xc2, 0x5a, 0x20, 0xf8, 0xa1, 0x3a, 0xac, 0x8e, 0x88, 0x6d, + 0xab, 0xe7, 0x84, 0xc5, 0xca, 0x22, 0x76, 0x9b, 0x72, 0x05, 0x4a, 0xc1, 0x80, 0x27, 0x7f, 0x91, + 0xf6, 0x2c, 0x69, 0x2c, 0xa3, 0x96, 0x13, 0x62, 0xb1, 0x6e, 0x0a, 0x4b, 0xd1, 0x44, 0x37, 0xa1, + 0xcc, 0x4e, 0xa5, 0xe2, 0xbe, 0xa7, 0x01, 0x35, 0x87, 0x4b, 0x4c, 0xf8, 0x50, 0x28, 0x6d, 0xc1, + 0x9a, 0xb9, 0x6b, 0x7a, 0x2a, 0x59, 0xa6, 0x02, 0xe6, 0xae, 0xe9, 0x2a, 0x3c, 0x07, 0x25, 0x3a, + 0x56, 0x4f, 0x23, 0xc7, 0x3e, 0xb2, 0x46, 0x65, 0x42, 0x45, 0xfe, 0x63, 0x06, 0x6a, 0xd1, 0x20, + 0x89, 0xee, 0x42, 0x8e, 0xe6, 0x0b, 0x11, 0xfa, 0xa5, 0x6d, 0x9e, 0x4c, 0xb6, 0xdd, 0x64, 0xb2, + 0xdd, 0x71, 0x93, 0x49, 0xa3, 0xf0, 0xf5, 0xb7, 0x5b, 0xa9, 0x2f, 0xfe, 0xb2, 0x95, 0xc6, 0xcc, + 0x02, 0x3d, 0x43, 0x63, 0x9a, 0xaa, 0xe9, 0x8a, 0xd6, 0x67, 0x5d, 0x2e, 0xd2, 0x80, 0xa5, 0x6a, + 0xfa, 0x41, 0x1f, 0x1d, 0x42, 0xad, 0x67, 0xe8, 0x36, 0xd1, 0xed, 0xb1, 0xad, 0xf0, 0x64, 0x25, + 0x02, 0x7e, 0x28, 0x6c, 0xf1, 0x14, 0xd8, 0x74, 0x35, 0x4f, 0x98, 0x22, 0xae, 0xf6, 0xc2, 0x02, + 0xb4, 0x0f, 0x30, 0x51, 0x87, 0x5a, 0x5f, 0x75, 0x0c, 0xcb, 0xae, 0xe7, 0x6e, 0x64, 0x67, 0xc6, + 0xae, 0x87, 0xae, 0xca, 0x03, 0xb3, 0xaf, 0x3a, 0xa4, 0x91, 0xa3, 0xdd, 0xc5, 0x01, 0x4b, 0xf4, + 0x02, 0x54, 0x55, 0xd3, 0x54, 0x6c, 0x47, 0x75, 0x88, 0xd2, 0xbd, 0x74, 0x88, 0xcd, 0x92, 0x41, + 0x09, 0x97, 0x55, 0xd3, 0x3c, 0xa5, 0xd2, 0x06, 0x15, 0xa2, 0xe7, 0xa1, 0x42, 0xf3, 0x86, 0xa6, + 0x0e, 0x95, 0x01, 0xd1, 0xce, 0x07, 0x0e, 0x0b, 0xfb, 0x59, 0x5c, 0x16, 0xd2, 0x36, 0x13, 0xca, + 0x7d, 0x6f, 0xc5, 0x59, 0xce, 0x40, 0x08, 0x72, 0x7d, 0xd5, 0x51, 0xd9, 0x4c, 0x96, 0x30, 0x7b, + 0xa6, 0x32, 0x53, 0x75, 0x06, 0x62, 0x7e, 0xd8, 0x33, 0xba, 0x0a, 0x2b, 0xc2, 0x6d, 0x96, 0xb9, + 0x15, 0x2d, 0x74, 0x05, 0xf2, 0xa6, 0x65, 0x4c, 0x08, 0x5b, 0xba, 0x02, 0xe6, 0x0d, 0xf9, 0x17, + 0x19, 0x58, 0x9f, 0xca, 0x2e, 0xd4, 0xef, 0x40, 0xb5, 0x07, 0xee, 0xb7, 0xe8, 0x33, 0x7a, 0x83, + 0xfa, 0x55, 0xfb, 0xc4, 0x12, 0x19, 0xb9, 0x3e, 0x3d, 0xd5, 0x6d, 0xf6, 0x5e, 0x4c, 0x8d, 0xd0, + 0x46, 0xc7, 0x50, 0x1b, 0xaa, 0xb6, 0xa3, 0xf0, 0x68, 0xad, 0x04, 0xb2, 0xf3, 0x74, 0x8e, 0x3a, + 0x54, 0xdd, 0xf8, 0x4e, 0x37, 0xb5, 0x70, 0x54, 0x19, 0x86, 0xa4, 0x08, 0xc3, 0x95, 0xee, 0xe5, + 0x13, 0x55, 0x77, 0x34, 0x9d, 0x28, 0x53, 0x2b, 0xf7, 0xcc, 0x94, 0xd3, 0xd6, 0x44, 0xeb, 0x13, + 0xbd, 0xe7, 0x2e, 0xd9, 0x86, 0x67, 0xec, 0x2d, 0xa9, 0x2d, 0x63, 0xa8, 0x84, 0xf3, 0x23, 0xaa, + 0x40, 0xc6, 0xb9, 0x10, 0x13, 0x90, 0x71, 0x2e, 0xd0, 0x7f, 0x41, 0x8e, 0x0e, 0x92, 0x0d, 0xbe, + 0x32, 0x03, 0x58, 0x08, 0xbb, 0xce, 0xa5, 0x49, 0x30, 0xd3, 0x94, 0x65, 0xef, 0x38, 0x78, 0x39, + 0x33, 0xea, 0x55, 0x7e, 0x09, 0xaa, 0x91, 0xa4, 0x18, 0x58, 0xbf, 0x74, 0x70, 0xfd, 0xe4, 0x2a, + 0x94, 0x43, 0x19, 0x50, 0xbe, 0x0a, 0x57, 0x66, 0x25, 0x34, 0x79, 0xe0, 0xc9, 0x43, 0x89, 0x09, + 0xbd, 0x0e, 0x05, 0x2f, 0xa3, 0xf1, 0xe3, 0x38, 0x3d, 0x57, 0xae, 0x32, 0xf6, 0x54, 0xe9, 0x39, + 0xa4, 0xdb, 0x9a, 0xed, 0x87, 0x0c, 0xeb, 0xf8, 0xaa, 0x6a, 0x9a, 0x6d, 0xd5, 0x1e, 0xc8, 0x1f, + 0x43, 0x3d, 0x2e, 0x5b, 0x45, 0x86, 0x91, 0xf3, 0xb6, 0xe1, 0x55, 0x58, 0x39, 0x33, 0xac, 0x91, + 0xea, 0x30, 0x67, 0x65, 0x2c, 0x5a, 0x74, 0x7b, 0xf2, 0xcc, 0x95, 0x65, 0x62, 0xde, 0x90, 0x15, + 0x78, 0x26, 0x36, 0x63, 0x51, 0x13, 0x4d, 0xef, 0x13, 0x3e, 0x9f, 0x65, 0xcc, 0x1b, 0xbe, 0x23, + 0xde, 0x59, 0xde, 0xa0, 0x9f, 0xb5, 0xd9, 0x58, 0x99, 0xff, 0x22, 0x16, 0x2d, 0x59, 0x81, 0xab, + 0xb3, 0xd3, 0x16, 0xba, 0x0e, 0xc0, 0xe3, 0xa6, 0x38, 0x75, 0xd9, 0x5b, 0x25, 0x5c, 0x64, 0x92, + 0x7b, 0xf4, 0xe8, 0xbd, 0x00, 0x55, 0xff, 0xb5, 0x62, 0x6b, 0x4f, 0xf8, 0xd6, 0xc8, 0xe2, 0xb2, + 0xa7, 0x73, 0xaa, 0x3d, 0x21, 0xf2, 0xdb, 0xde, 0xf9, 0xf2, 0x13, 0x0e, 0xba, 0x0d, 0x39, 0x96, + 0xa2, 0xf8, 0x32, 0x5c, 0x9d, 0x3e, 0x49, 0x54, 0x0b, 0x33, 0x1d, 0xb9, 0x0d, 0x52, 0x7c, 0x82, + 0x59, 0xca, 0x53, 0x37, 0x30, 0xd6, 0x70, 0xe6, 0xf4, 0xcf, 0x76, 0x7a, 0xa9, 0xb3, 0x5d, 0x83, + 0xac, 0x73, 0x61, 0xd7, 0x33, 0x6c, 0x72, 0xe8, 0xa3, 0xfc, 0x0f, 0x80, 0x02, 0x26, 0xb6, 0x49, + 0x63, 0x2c, 0x6a, 0x40, 0x91, 0x5c, 0xf4, 0x88, 0xe9, 0xb8, 0x69, 0x69, 0x76, 0x3a, 0xe6, 0xda, + 0x2d, 0x57, 0x93, 0x02, 0x4b, 0xcf, 0x0c, 0xdd, 0x11, 0xdc, 0x21, 0x9e, 0x06, 0x08, 0xf3, 0x20, + 0x79, 0x78, 0xc3, 0x25, 0x0f, 0xd9, 0x58, 0x2c, 0xc9, 0xad, 0x22, 0xec, 0xe1, 0x8e, 0x60, 0x0f, + 0xb9, 0x05, 0x1f, 0x0b, 0xd1, 0x87, 0x66, 0x88, 0x3e, 0xe4, 0x17, 0x0c, 0x33, 0x86, 0x3f, 0xbc, + 0xe1, 0xf2, 0x87, 0x95, 0x05, 0x3d, 0x8e, 0x10, 0x88, 0xfd, 0x30, 0x81, 0xe0, 0xe0, 0xff, 0x66, + 0xac, 0x75, 0x2c, 0x83, 0xf8, 0xdf, 0x00, 0x83, 0x28, 0xc4, 0xc2, 0x77, 0xee, 0x64, 0x06, 0x85, + 0x68, 0x86, 0x28, 0x44, 0x71, 0xc1, 0x1c, 0xc4, 0x70, 0x88, 0x77, 0x82, 0x1c, 0x02, 0x62, 0x69, + 0x88, 0x58, 0xef, 0x59, 0x24, 0xe2, 0x4d, 0x8f, 0x44, 0xac, 0xc5, 0xb2, 0x20, 0x31, 0x86, 0x28, + 0x8b, 0x38, 0x9e, 0x62, 0x11, 0x1c, 0xf5, 0xbf, 0x10, 0xeb, 0x62, 0x01, 0x8d, 0x38, 0x9e, 0xa2, + 0x11, 0xe5, 0x05, 0x0e, 0x17, 0xf0, 0x88, 0x0f, 0x67, 0xf3, 0x88, 0x78, 0xa4, 0x2f, 0xba, 0x99, + 0x8c, 0x48, 0x28, 0x31, 0x44, 0xa2, 0x1a, 0x0b, 0x7a, 0xb9, 0xfb, 0xc4, 0x4c, 0xe2, 0xc1, 0x0c, + 0x26, 0xc1, 0x31, 0xff, 0xad, 0x58, 0xe7, 0x09, 0xa8, 0xc4, 0x83, 0x19, 0x54, 0x62, 0x7d, 0xa1, + 0xdb, 0x85, 0x5c, 0x62, 0x3f, 0xcc, 0x25, 0xd0, 0x82, 0x73, 0x15, 0x4b, 0x26, 0xba, 0x71, 0x64, + 0x62, 0x83, 0x79, 0x7c, 0x25, 0xd6, 0xe3, 0x0f, 0x61, 0x13, 0x2f, 0xd1, 0x5c, 0x13, 0x89, 0xa6, + 0x34, 0x1f, 0x12, 0xcb, 0x32, 0x2c, 0xc1, 0x0b, 0x78, 0x43, 0xbe, 0x45, 0xd1, 0xa5, 0x1f, 0x39, + 0xe7, 0x30, 0x0f, 0x86, 0x3b, 0x02, 0xd1, 0x52, 0xfe, 0x7d, 0xda, 0xb7, 0x65, 0x80, 0x2c, 0x88, + 0x4c, 0x8b, 0x02, 0x99, 0x06, 0xf8, 0x48, 0x26, 0xcc, 0x47, 0xb6, 0x60, 0x8d, 0xe2, 0x89, 0x08, + 0xd5, 0x50, 0x4d, 0x8f, 0x6a, 0xdc, 0x86, 0x75, 0x06, 0x18, 0x79, 0x7a, 0x15, 0x20, 0x22, 0xc7, + 0x72, 0x6b, 0x95, 0xbe, 0xe0, 0xc7, 0x9e, 0xa3, 0x89, 0x57, 0x61, 0x23, 0xa0, 0xeb, 0xe1, 0x14, + 0x8e, 0xbb, 0x6b, 0x9e, 0xf6, 0x9e, 0x00, 0x2c, 0x5f, 0xa5, 0xfd, 0x19, 0xf2, 0x39, 0xca, 0x2c, + 0x3a, 0x91, 0xfe, 0x37, 0xd1, 0x89, 0xcc, 0x0f, 0xa6, 0x13, 0x41, 0xdc, 0x95, 0x0d, 0xe3, 0xae, + 0xbf, 0xa7, 0xfd, 0x35, 0xf1, 0xc8, 0x41, 0xcf, 0xe8, 0x13, 0x81, 0x84, 0xd8, 0x33, 0x4d, 0xce, + 0x43, 0xe3, 0x5c, 0xe0, 0x1d, 0xfa, 0x48, 0xb5, 0xbc, 0xf4, 0x56, 0x14, 0xd9, 0xcb, 0x03, 0x51, + 0x79, 0x36, 0xc3, 0x02, 0x44, 0xd5, 0x20, 0xfb, 0x98, 0xf0, 0x64, 0x54, 0xc2, 0xf4, 0x91, 0xea, + 0xb1, 0x4d, 0xc6, 0x52, 0x4c, 0x09, 0xf3, 0x06, 0xba, 0x0b, 0x45, 0x56, 0x86, 0x54, 0x0c, 0xd3, + 0x16, 0x79, 0xe3, 0xd9, 0xe0, 0x58, 0x79, 0xb5, 0x71, 0xfb, 0x84, 0xea, 0x1c, 0x9b, 0x36, 0x2e, + 0x98, 0xe2, 0x29, 0x80, 0x0f, 0x8b, 0x21, 0x9a, 0x72, 0x0d, 0x8a, 0xb4, 0xf7, 0xb6, 0xa9, 0xf6, + 0x08, 0x4b, 0x02, 0x45, 0xec, 0x0b, 0xe4, 0x47, 0x80, 0xa6, 0x53, 0x19, 0x6a, 0xc3, 0x0a, 0x99, + 0x10, 0xdd, 0xb1, 0x19, 0x4c, 0x8b, 0xc0, 0x20, 0xc1, 0x01, 0x88, 0xee, 0x34, 0xea, 0x74, 0x92, + 0xff, 0xf6, 0xed, 0x56, 0x8d, 0x6b, 0xbf, 0x62, 0x8c, 0x34, 0x87, 0x8c, 0x4c, 0xe7, 0x12, 0x0b, + 0x7b, 0xf9, 0xcf, 0x19, 0x0a, 0xc8, 0x43, 0x69, 0x6e, 0xe6, 0xdc, 0xba, 0x5b, 0x3e, 0x13, 0x20, + 0x63, 0xc9, 0xe6, 0x7b, 0x13, 0xe0, 0x5c, 0xb5, 0x95, 0xcf, 0x54, 0xdd, 0x21, 0x7d, 0x31, 0xe9, + 0x01, 0x09, 0x92, 0xa0, 0x40, 0x5b, 0x63, 0x9b, 0xf4, 0x05, 0x2f, 0xf4, 0xda, 0x81, 0x71, 0xae, + 0xfe, 0xb8, 0x71, 0x86, 0x67, 0xb9, 0x10, 0x99, 0xe5, 0x00, 0x58, 0x2e, 0x06, 0xc1, 0x32, 0xed, + 0x9b, 0x69, 0x69, 0x86, 0xa5, 0x39, 0x97, 0x6c, 0x69, 0xb2, 0xd8, 0x6b, 0xa3, 0x9b, 0x50, 0x1e, + 0x91, 0x91, 0x69, 0x18, 0x43, 0x85, 0x87, 0x9b, 0x35, 0x66, 0x5a, 0x12, 0xc2, 0x16, 0x8b, 0x3a, + 0xbf, 0xcc, 0xf8, 0xe7, 0xcf, 0x27, 0x45, 0xff, 0x71, 0x13, 0x2c, 0xff, 0x8a, 0x95, 0x4a, 0xc2, + 0x40, 0x06, 0x9d, 0xc2, 0xba, 0x77, 0xfc, 0x95, 0x31, 0x0b, 0x0b, 0xee, 0x86, 0x4e, 0x1a, 0x3f, + 0x6a, 0x93, 0xb0, 0xd8, 0x46, 0x1f, 0xc0, 0xd3, 0x91, 0xd8, 0xe6, 0xb9, 0xce, 0x24, 0x0d, 0x71, + 0x4f, 0x85, 0x43, 0x9c, 0xeb, 0xda, 0x9f, 0xac, 0xec, 0x8f, 0x3c, 0x75, 0x07, 0x94, 0x7d, 0x07, + 0x71, 0xd9, 0xcc, 0xe5, 0xbf, 0x09, 0x65, 0x8b, 0x38, 0xaa, 0xa6, 0x2b, 0xa1, 0xfa, 0x46, 0x89, + 0x0b, 0x45, 0xd5, 0xe4, 0x04, 0x9e, 0x9a, 0x89, 0xcf, 0xd0, 0x7f, 0x43, 0xd1, 0x87, 0x76, 0xe9, + 0x98, 0x52, 0x81, 0x47, 0x7f, 0x7d, 0x5d, 0xf9, 0x0f, 0x69, 0xdf, 0x65, 0x98, 0x50, 0xb7, 0x60, + 0xc5, 0x22, 0xf6, 0x78, 0xc8, 0x29, 0x6e, 0x65, 0xf7, 0xd5, 0x64, 0xc8, 0x8e, 0x4a, 0xc7, 0x43, + 0x07, 0x0b, 0x63, 0xf9, 0x11, 0xac, 0x70, 0x09, 0x5a, 0x83, 0xd5, 0x07, 0x47, 0xf7, 0x8f, 0x8e, + 0xdf, 0x3f, 0xaa, 0xa5, 0x10, 0xc0, 0xca, 0x5e, 0xb3, 0xd9, 0x3a, 0xe9, 0xd4, 0xd2, 0xa8, 0x08, + 0xf9, 0xbd, 0xc6, 0x31, 0xee, 0xd4, 0x32, 0x54, 0x8c, 0x5b, 0xef, 0xb5, 0x9a, 0x9d, 0x5a, 0x16, + 0xad, 0x43, 0x99, 0x3f, 0x2b, 0xfb, 0xc7, 0xf8, 0xff, 0xf7, 0x3a, 0xb5, 0x5c, 0x40, 0x74, 0xda, + 0x3a, 0xba, 0xd7, 0xc2, 0xb5, 0xbc, 0xfc, 0x1a, 0xe5, 0xd0, 0x31, 0x58, 0xd0, 0x67, 0xcb, 0xe9, + 0x00, 0x5b, 0x96, 0x7f, 0x9d, 0xa1, 0xa4, 0x33, 0x0e, 0xe0, 0xa1, 0xf7, 0x22, 0x03, 0xdf, 0x5d, + 0x02, 0x1d, 0x46, 0x46, 0x8f, 0x9e, 0x87, 0x8a, 0x45, 0xce, 0x88, 0xd3, 0x1b, 0x70, 0xc0, 0xc9, + 0x53, 0x66, 0x19, 0x97, 0x85, 0x94, 0x19, 0xd9, 0x5c, 0xed, 0x13, 0xd2, 0x73, 0x14, 0x1e, 0x8b, + 0xf8, 0xa6, 0x2b, 0x52, 0x35, 0x2a, 0x3d, 0xe5, 0x42, 0xf9, 0xe3, 0xa5, 0xe6, 0xb2, 0x08, 0x79, + 0xdc, 0xea, 0xe0, 0x0f, 0x6a, 0x59, 0x84, 0xa0, 0xc2, 0x1e, 0x95, 0xd3, 0xa3, 0xbd, 0x93, 0xd3, + 0xf6, 0x31, 0x9d, 0xcb, 0x0d, 0xa8, 0xba, 0x73, 0xe9, 0x0a, 0xf3, 0xf2, 0x5d, 0x78, 0x3a, 0x06, + 0x9d, 0x2e, 0xa8, 0x18, 0xc8, 0x1f, 0xfa, 0xb9, 0x2b, 0x50, 0x0a, 0xd8, 0x87, 0x4a, 0x04, 0x19, + 0xa6, 0xa7, 0xa9, 0x8b, 0x4f, 0xe5, 0x3d, 0xd4, 0x87, 0xcb, 0x93, 0x60, 0x53, 0xfe, 0x6d, 0x1a, + 0x9e, 0x9d, 0x83, 0x1d, 0xd1, 0xfd, 0xc8, 0x9a, 0xdd, 0x59, 0x06, 0x79, 0x46, 0xb7, 0xec, 0xdd, + 0x44, 0xd3, 0x7c, 0x7a, 0xb8, 0x77, 0xda, 0x0e, 0x6f, 0x59, 0xf9, 0x77, 0xe9, 0xe0, 0xfc, 0x85, + 0x31, 0xf7, 0xbb, 0x91, 0x2e, 0xee, 0x24, 0x05, 0xf0, 0xd1, 0x3d, 0x25, 0x41, 0x81, 0x88, 0xa2, + 0x9f, 0xa8, 0x4d, 0x78, 0x6d, 0xf9, 0xd5, 0xc5, 0x5d, 0xf7, 0xfb, 0x9b, 0x91, 0x3f, 0x82, 0x4a, + 0xb8, 0x28, 0x49, 0x4f, 0x8c, 0x65, 0x8c, 0xf5, 0x3e, 0xeb, 0x64, 0x1e, 0xf3, 0x06, 0x7a, 0x1d, + 0xf2, 0x74, 0x3d, 0x5c, 0xc0, 0x37, 0x1d, 0x5a, 0xe8, 0x7c, 0x06, 0x8a, 0x9a, 0x5c, 0x5b, 0x7e, + 0x02, 0x79, 0x16, 0x24, 0x69, 0xc0, 0x63, 0xe5, 0x45, 0x81, 0xa1, 0xe9, 0x33, 0xfa, 0x08, 0x40, + 0x75, 0x1c, 0x4b, 0xeb, 0x8e, 0x7d, 0xc7, 0x5b, 0xb3, 0x83, 0xec, 0x9e, 0xab, 0xd7, 0xb8, 0x26, + 0xa2, 0xed, 0x15, 0xdf, 0x34, 0x10, 0x71, 0x03, 0x0e, 0xe5, 0x23, 0xa8, 0x84, 0x6d, 0x5d, 0xd4, + 0xc7, 0xfb, 0x10, 0x46, 0x7d, 0x1c, 0xc4, 0x0b, 0xd4, 0xe7, 0x61, 0xc6, 0x2c, 0x2f, 0x25, 0xb3, + 0x86, 0xfc, 0x79, 0x1a, 0x0a, 0x9d, 0x0b, 0x31, 0xb9, 0x31, 0x55, 0x4c, 0xdf, 0x34, 0x13, 0xac, + 0xd9, 0xf1, 0xb2, 0x68, 0xd6, 0x2b, 0xb6, 0xbe, 0xe3, 0xed, 0x84, 0x5c, 0xd2, 0x52, 0x82, 0x5b, + 0x99, 0x12, 0x3b, 0xf4, 0x2d, 0x28, 0x7a, 0x29, 0x92, 0x92, 0x11, 0xb5, 0xdf, 0xb7, 0x88, 0x6d, + 0x8b, 0x30, 0xe7, 0x36, 0x59, 0x51, 0xdc, 0xf8, 0x4c, 0x54, 0x05, 0xb3, 0x98, 0x37, 0xe4, 0x3e, + 0x54, 0x23, 0xf9, 0x15, 0xbd, 0x05, 0xab, 0xe6, 0xb8, 0xab, 0xb8, 0xd3, 0x13, 0xf9, 0xb5, 0xec, + 0xc2, 0xdc, 0x71, 0x77, 0xa8, 0xf5, 0xee, 0x93, 0x4b, 0xb7, 0x33, 0xe6, 0xb8, 0x7b, 0x9f, 0xcf, + 0x22, 0xff, 0x4a, 0x26, 0xf8, 0x95, 0x09, 0x14, 0xdc, 0x4d, 0x81, 0xfe, 0x0f, 0x8a, 0x5e, 0xea, + 0xf6, 0xfe, 0x95, 0xc4, 0xe6, 0x7c, 0xe1, 0xde, 0x37, 0xa1, 0x9c, 0xc9, 0xd6, 0xce, 0x75, 0xd2, + 0x57, 0x7c, 0x3a, 0xc4, 0xbe, 0x56, 0xc0, 0x55, 0xfe, 0xe2, 0xd0, 0xe5, 0x42, 0xf2, 0x3f, 0xd3, + 0x50, 0x70, 0x6b, 0xe2, 0xe8, 0xb5, 0xc0, 0xbe, 0xab, 0xcc, 0xa8, 0x78, 0xb9, 0x8a, 0x7e, 0x5d, + 0x3b, 0xdc, 0xd7, 0xcc, 0xf2, 0x7d, 0x8d, 0xfb, 0x41, 0xe1, 0xfe, 0x2a, 0xca, 0x2d, 0xfd, 0xab, + 0xe8, 0x15, 0x40, 0x8e, 0xe1, 0xa8, 0x43, 0xca, 0xb1, 0x35, 0xfd, 0x5c, 0xe1, 0x93, 0xcd, 0xa1, + 0x5f, 0x8d, 0xbd, 0x79, 0xc8, 0x5e, 0x9c, 0xb0, 0x79, 0xff, 0x79, 0x1a, 0x0a, 0x5e, 0x0e, 0x5f, + 0xb6, 0x4c, 0x7d, 0x15, 0x56, 0x44, 0x9a, 0xe2, 0x75, 0x6a, 0xd1, 0xf2, 0xfe, 0x98, 0xe4, 0x02, + 0x7f, 0x4c, 0x24, 0x28, 0x8c, 0x88, 0xa3, 0xb2, 0x6c, 0xc0, 0x19, 0xa9, 0xd7, 0xbe, 0xfd, 0x26, + 0xac, 0x05, 0xfe, 0x18, 0xd0, 0x93, 0x77, 0xd4, 0x7a, 0xbf, 0x96, 0x92, 0x56, 0x3f, 0xff, 0xf2, + 0x46, 0xf6, 0x88, 0x7c, 0x46, 0xf7, 0x2c, 0x6e, 0x35, 0xdb, 0xad, 0xe6, 0xfd, 0x5a, 0x5a, 0x5a, + 0xfb, 0xfc, 0xcb, 0x1b, 0xab, 0x98, 0xb0, 0x6a, 0xdb, 0xed, 0x36, 0x94, 0x82, 0xab, 0x12, 0x8e, + 0x63, 0x08, 0x2a, 0xf7, 0x1e, 0x9c, 0x1c, 0x1e, 0x34, 0xf7, 0x3a, 0x2d, 0xe5, 0xe1, 0x71, 0xa7, + 0x55, 0x4b, 0xa3, 0xa7, 0x61, 0xe3, 0xf0, 0xe0, 0xdd, 0x76, 0x47, 0x69, 0x1e, 0x1e, 0xb4, 0x8e, + 0x3a, 0xca, 0x5e, 0xa7, 0xb3, 0xd7, 0xbc, 0x5f, 0xcb, 0xec, 0x7e, 0x55, 0x82, 0xea, 0x5e, 0xa3, + 0x79, 0x40, 0xb3, 0xb4, 0xd6, 0x53, 0x59, 0xb9, 0xa0, 0x09, 0x39, 0x56, 0x10, 0x98, 0x7b, 0x4b, + 0x43, 0x9a, 0x5f, 0x87, 0x45, 0xfb, 0x90, 0x67, 0xb5, 0x02, 0x34, 0xff, 0xda, 0x86, 0xb4, 0xa0, + 0x30, 0x4b, 0x3b, 0xc3, 0x8e, 0xc7, 0xdc, 0x7b, 0x1c, 0xd2, 0xfc, 0x3a, 0x2d, 0xc2, 0x50, 0xf4, + 0xb9, 0xc6, 0xe2, 0x7b, 0x0d, 0x52, 0x82, 0x60, 0x83, 0x0e, 0x61, 0xd5, 0xa5, 0x87, 0x8b, 0x6e, + 0x5a, 0x48, 0x0b, 0x0b, 0xa9, 0x74, 0xba, 0x38, 0x8d, 0x9f, 0x7f, 0x6d, 0x44, 0x5a, 0x50, 0x15, + 0x46, 0x07, 0xb0, 0x22, 0xf0, 0xf3, 0x82, 0xdb, 0x13, 0xd2, 0xa2, 0xc2, 0x28, 0x9d, 0x34, 0xbf, + 0x40, 0xb2, 0xf8, 0x32, 0x8c, 0x94, 0xa0, 0xe0, 0x8d, 0x1e, 0x00, 0x04, 0x48, 0x7b, 0x82, 0x5b, + 0x2e, 0x52, 0x92, 0x42, 0x36, 0x3a, 0x86, 0x82, 0xc7, 0xa1, 0x16, 0xde, 0x39, 0x91, 0x16, 0x57, + 0x94, 0xd1, 0x23, 0x28, 0x87, 0xb9, 0x43, 0xb2, 0x9b, 0x24, 0x52, 0xc2, 0x52, 0x31, 0xf5, 0x1f, + 0x26, 0x12, 0xc9, 0x6e, 0x96, 0x48, 0x09, 0x2b, 0xc7, 0xe8, 0x13, 0x58, 0x9f, 0x06, 0xfa, 0xc9, + 0x2f, 0x9a, 0x48, 0x4b, 0xd4, 0x92, 0xd1, 0x08, 0xd0, 0x0c, 0x82, 0xb0, 0xc4, 0xbd, 0x13, 0x69, + 0x99, 0xd2, 0x32, 0xea, 0x43, 0x35, 0x8a, 0xba, 0x93, 0xde, 0x43, 0x91, 0x12, 0x97, 0x99, 0xf9, + 0x57, 0xc2, 0xd8, 0x34, 0xe9, 0xbd, 0x14, 0x29, 0x71, 0xd5, 0x99, 0x1e, 0x87, 0x00, 0x0f, 0x48, + 0x70, 0x4f, 0x45, 0x4a, 0x52, 0x7f, 0x46, 0x26, 0x6c, 0xcc, 0xc2, 0xff, 0xcb, 0x5c, 0x5b, 0x91, + 0x96, 0x2a, 0x4b, 0x37, 0x5a, 0x5f, 0x7f, 0xb7, 0x99, 0xfe, 0xe6, 0xbb, 0xcd, 0xf4, 0x5f, 0xbf, + 0xdb, 0x4c, 0x7f, 0xf1, 0xfd, 0x66, 0xea, 0x9b, 0xef, 0x37, 0x53, 0x7f, 0xfa, 0x7e, 0x33, 0xf5, + 0xd3, 0x97, 0xcf, 0x35, 0x67, 0x30, 0xee, 0x6e, 0xf7, 0x8c, 0xd1, 0x4e, 0xf0, 0x96, 0xe1, 0xac, + 0x9b, 0x8f, 0xdd, 0x15, 0x96, 0xe9, 0xef, 0xfc, 0x2b, 0x00, 0x00, 0xff, 0xff, 0x2f, 0xe2, 0x4c, + 0x31, 0x19, 0x29, 0x00, 0x00, } // Reference imports to suppress errors if they are not otherwise used. @@ -3571,6 +3739,7 @@ type ABCIApplicationClient interface { 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) ExtendVote(ctx context.Context, in *RequestExtendVote, opts ...grpc.CallOption) (*ResponseExtendVote, error) VerifyVoteExtension(ctx context.Context, in *RequestVerifyVoteExtension, opts ...grpc.CallOption) (*ResponseVerifyVoteExtension, error) } @@ -3718,6 +3887,15 @@ func (c *aBCIApplicationClient) PrepareProposal(ctx context.Context, in *Request return out, nil } +func (c *aBCIApplicationClient) ProcessProposal(ctx context.Context, in *RequestProcessProposal, opts ...grpc.CallOption) (*ResponseProcessProposal, error) { + out := new(ResponseProcessProposal) + err := c.cc.Invoke(ctx, "/tendermint.abci.ABCIApplication/ProcessProposal", 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...) @@ -3753,6 +3931,7 @@ type ABCIApplicationServer interface { LoadSnapshotChunk(context.Context, *RequestLoadSnapshotChunk) (*ResponseLoadSnapshotChunk, error) ApplySnapshotChunk(context.Context, *RequestApplySnapshotChunk) (*ResponseApplySnapshotChunk, error) PrepareProposal(context.Context, *RequestPrepareProposal) (*ResponsePrepareProposal, error) + ProcessProposal(context.Context, *RequestProcessProposal) (*ResponseProcessProposal, error) ExtendVote(context.Context, *RequestExtendVote) (*ResponseExtendVote, error) VerifyVoteExtension(context.Context, *RequestVerifyVoteExtension) (*ResponseVerifyVoteExtension, error) } @@ -3806,6 +3985,9 @@ func (*UnimplementedABCIApplicationServer) ApplySnapshotChunk(ctx context.Contex func (*UnimplementedABCIApplicationServer) PrepareProposal(ctx context.Context, req *RequestPrepareProposal) (*ResponsePrepareProposal, error) { return nil, status.Errorf(codes.Unimplemented, "method PrepareProposal not implemented") } +func (*UnimplementedABCIApplicationServer) ProcessProposal(ctx context.Context, req *RequestProcessProposal) (*ResponseProcessProposal, error) { + return nil, status.Errorf(codes.Unimplemented, "method ProcessProposal not implemented") +} func (*UnimplementedABCIApplicationServer) ExtendVote(ctx context.Context, req *RequestExtendVote) (*ResponseExtendVote, error) { return nil, status.Errorf(codes.Unimplemented, "method ExtendVote not implemented") } @@ -4087,6 +4269,24 @@ func _ABCIApplication_PrepareProposal_Handler(srv interface{}, ctx context.Conte return interceptor(ctx, in, info, handler) } +func _ABCIApplication_ProcessProposal_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) { + in := new(RequestProcessProposal) + if err := dec(in); err != nil { + return nil, err + } + if interceptor == nil { + return srv.(ABCIApplicationServer).ProcessProposal(ctx, in) + } + info := &grpc.UnaryServerInfo{ + Server: srv, + FullMethod: "/tendermint.abci.ABCIApplication/ProcessProposal", + } + handler := func(ctx context.Context, req interface{}) (interface{}, error) { + return srv.(ABCIApplicationServer).ProcessProposal(ctx, req.(*RequestProcessProposal)) + } + 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 { @@ -4187,6 +4387,10 @@ var _ABCIApplication_serviceDesc = grpc.ServiceDesc{ MethodName: "PrepareProposal", Handler: _ABCIApplication_PrepareProposal_Handler, }, + { + MethodName: "ProcessProposal", + Handler: _ABCIApplication_ProcessProposal_Handler, + }, { MethodName: "ExtendVote", Handler: _ABCIApplication_ExtendVote_Handler, @@ -4547,6 +4751,29 @@ func (m *Request_PrepareProposal) MarshalToSizedBuffer(dAtA []byte) (int, error) } return len(dAtA) - i, nil } +func (m *Request_ProcessProposal) MarshalTo(dAtA []byte) (int, error) { + size := m.Size() + return m.MarshalToSizedBuffer(dAtA[:size]) +} + +func (m *Request_ProcessProposal) MarshalToSizedBuffer(dAtA []byte) (int, error) { + i := len(dAtA) + if m.ProcessProposal != nil { + { + size, err := m.ProcessProposal.MarshalToSizedBuffer(dAtA[:i]) + if err != nil { + return 0, err + } + i -= size + i = encodeVarintTypes(dAtA, i, uint64(size)) + } + i-- + dAtA[i] = 0x1 + i-- + dAtA[i] = 0x82 + } + return len(dAtA) - i, nil +} func (m *Request_ExtendVote) MarshalTo(dAtA []byte) (int, error) { size := m.Size() return m.MarshalToSizedBuffer(dAtA[:size]) @@ -4566,7 +4793,7 @@ func (m *Request_ExtendVote) MarshalToSizedBuffer(dAtA []byte) (int, error) { i-- dAtA[i] = 0x1 i-- - dAtA[i] = 0x82 + dAtA[i] = 0x8a } return len(dAtA) - i, nil } @@ -4589,7 +4816,7 @@ func (m *Request_VerifyVoteExtension) MarshalToSizedBuffer(dAtA []byte) (int, er i-- dAtA[i] = 0x1 i-- - dAtA[i] = 0x8a + dAtA[i] = 0x92 } return len(dAtA) - i, nil } @@ -4758,12 +4985,12 @@ func (m *RequestInitChain) MarshalToSizedBuffer(dAtA []byte) (int, error) { i-- dAtA[i] = 0x12 } - n19, err19 := github_com_gogo_protobuf_types.StdTimeMarshalTo(m.Time, dAtA[i-github_com_gogo_protobuf_types.SizeOfStdTime(m.Time):]) - if err19 != nil { - return 0, err19 + n20, err20 := github_com_gogo_protobuf_types.StdTimeMarshalTo(m.Time, dAtA[i-github_com_gogo_protobuf_types.SizeOfStdTime(m.Time):]) + if err20 != nil { + return 0, err20 } - i -= n19 - i = encodeVarintTypes(dAtA, i, uint64(n19)) + i -= n20 + i = encodeVarintTypes(dAtA, i, uint64(n20)) i-- dAtA[i] = 0xa return len(dAtA) - i, nil @@ -5253,6 +5480,48 @@ func (m *RequestVerifyVoteExtension) MarshalToSizedBuffer(dAtA []byte) (int, err return len(dAtA) - i, nil } +func (m *RequestProcessProposal) 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 *RequestProcessProposal) MarshalTo(dAtA []byte) (int, error) { + size := m.Size() + return m.MarshalToSizedBuffer(dAtA[:size]) +} + +func (m *RequestProcessProposal) MarshalToSizedBuffer(dAtA []byte) (int, error) { + i := len(dAtA) + _ = i + var l int + _ = l + if len(m.Txs) > 0 { + for iNdEx := len(m.Txs) - 1; iNdEx >= 0; iNdEx-- { + i -= len(m.Txs[iNdEx]) + copy(dAtA[i:], m.Txs[iNdEx]) + i = encodeVarintTypes(dAtA, i, uint64(len(m.Txs[iNdEx]))) + i-- + dAtA[i] = 0x12 + } + } + { + size, err := m.Header.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 *Response) Marshal() (dAtA []byte, err error) { size := m.Size() dAtA = make([]byte, size) @@ -5623,6 +5892,29 @@ func (m *Response_PrepareProposal) MarshalToSizedBuffer(dAtA []byte) (int, error } return len(dAtA) - i, nil } +func (m *Response_ProcessProposal) MarshalTo(dAtA []byte) (int, error) { + size := m.Size() + return m.MarshalToSizedBuffer(dAtA[:size]) +} + +func (m *Response_ProcessProposal) MarshalToSizedBuffer(dAtA []byte) (int, error) { + i := len(dAtA) + if m.ProcessProposal != nil { + { + size, err := m.ProcessProposal.MarshalToSizedBuffer(dAtA[:i]) + if err != nil { + return 0, err + } + i -= size + i = encodeVarintTypes(dAtA, i, uint64(size)) + } + i-- + dAtA[i] = 0x1 + i-- + dAtA[i] = 0x8a + } + return len(dAtA) - i, nil +} func (m *Response_ExtendVote) MarshalTo(dAtA []byte) (int, error) { size := m.Size() return m.MarshalToSizedBuffer(dAtA[:size]) @@ -5642,7 +5934,7 @@ func (m *Response_ExtendVote) MarshalToSizedBuffer(dAtA []byte) (int, error) { i-- dAtA[i] = 0x1 i-- - dAtA[i] = 0x8a + dAtA[i] = 0x92 } return len(dAtA) - i, nil } @@ -5665,7 +5957,7 @@ func (m *Response_VerifyVoteExtension) MarshalToSizedBuffer(dAtA []byte) (int, e i-- dAtA[i] = 0x1 i-- - dAtA[i] = 0x92 + dAtA[i] = 0x9a } return len(dAtA) - i, nil } @@ -6386,20 +6678,20 @@ func (m *ResponseApplySnapshotChunk) MarshalToSizedBuffer(dAtA []byte) (int, err } } if len(m.RefetchChunks) > 0 { - dAtA47 := make([]byte, len(m.RefetchChunks)*10) - var j46 int + dAtA50 := make([]byte, len(m.RefetchChunks)*10) + var j49 int for _, num := range m.RefetchChunks { for num >= 1<<7 { - dAtA47[j46] = uint8(uint64(num)&0x7f | 0x80) + dAtA50[j49] = uint8(uint64(num)&0x7f | 0x80) num >>= 7 - j46++ + j49++ } - dAtA47[j46] = uint8(num) - j46++ + dAtA50[j49] = uint8(num) + j49++ } - i -= j46 - copy(dAtA[i:], dAtA47[:j46]) - i = encodeVarintTypes(dAtA, i, uint64(j46)) + i -= j49 + copy(dAtA[i:], dAtA50[:j49]) + i = encodeVarintTypes(dAtA, i, uint64(j49)) i-- dAtA[i] = 0x12 } @@ -6506,7 +6798,7 @@ func (m *ResponseVerifyVoteExtension) MarshalToSizedBuffer(dAtA []byte) (int, er return len(dAtA) - i, nil } -func (m *LastCommitInfo) Marshal() (dAtA []byte, err error) { +func (m *ResponseProcessProposal) Marshal() (dAtA []byte, err error) { size := m.Size() dAtA = make([]byte, size) n, err := m.MarshalToSizedBuffer(dAtA[:size]) @@ -6516,23 +6808,60 @@ func (m *LastCommitInfo) Marshal() (dAtA []byte, err error) { return dAtA[:n], nil } -func (m *LastCommitInfo) MarshalTo(dAtA []byte) (int, error) { +func (m *ResponseProcessProposal) MarshalTo(dAtA []byte) (int, error) { size := m.Size() return m.MarshalToSizedBuffer(dAtA[:size]) } -func (m *LastCommitInfo) MarshalToSizedBuffer(dAtA []byte) (int, error) { +func (m *ResponseProcessProposal) MarshalToSizedBuffer(dAtA []byte) (int, error) { i := len(dAtA) _ = 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 - } + if len(m.Evidence) > 0 { + for iNdEx := len(m.Evidence) - 1; iNdEx >= 0; iNdEx-- { + i -= len(m.Evidence[iNdEx]) + copy(dAtA[i:], m.Evidence[iNdEx]) + i = encodeVarintTypes(dAtA, i, uint64(len(m.Evidence[iNdEx]))) + i-- + dAtA[i] = 0x12 + } + } + if m.Result != 0 { + i = encodeVarintTypes(dAtA, i, uint64(m.Result)) + i-- + dAtA[i] = 0x8 + } + return len(dAtA) - i, nil +} + +func (m *LastCommitInfo) 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 *LastCommitInfo) MarshalTo(dAtA []byte) (int, error) { + size := m.Size() + return m.MarshalToSizedBuffer(dAtA[:size]) +} + +func (m *LastCommitInfo) MarshalToSizedBuffer(dAtA []byte) (int, error) { + i := len(dAtA) + _ = 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)) } @@ -6830,12 +7159,12 @@ func (m *Evidence) MarshalToSizedBuffer(dAtA []byte) (int, error) { i-- dAtA[i] = 0x28 } - n52, err52 := github_com_gogo_protobuf_types.StdTimeMarshalTo(m.Time, dAtA[i-github_com_gogo_protobuf_types.SizeOfStdTime(m.Time):]) - if err52 != nil { - return 0, err52 + n55, err55 := github_com_gogo_protobuf_types.StdTimeMarshalTo(m.Time, dAtA[i-github_com_gogo_protobuf_types.SizeOfStdTime(m.Time):]) + if err55 != nil { + return 0, err55 } - i -= n52 - i = encodeVarintTypes(dAtA, i, uint64(n52)) + i -= n55 + i = encodeVarintTypes(dAtA, i, uint64(n55)) i-- dAtA[i] = 0x22 if m.Height != 0 { @@ -7116,6 +7445,18 @@ func (m *Request_PrepareProposal) Size() (n int) { } return n } +func (m *Request_ProcessProposal) Size() (n int) { + if m == nil { + return 0 + } + var l int + _ = l + if m.ProcessProposal != nil { + l = m.ProcessProposal.Size() + n += 2 + l + sovTypes(uint64(l)) + } + return n +} func (m *Request_ExtendVote) Size() (n int) { if m == nil { return 0 @@ -7421,6 +7762,23 @@ func (m *RequestVerifyVoteExtension) Size() (n int) { return n } +func (m *RequestProcessProposal) Size() (n int) { + if m == nil { + return 0 + } + var l int + _ = l + l = m.Header.Size() + n += 1 + l + sovTypes(uint64(l)) + if len(m.Txs) > 0 { + for _, b := range m.Txs { + l = len(b) + n += 1 + l + sovTypes(uint64(l)) + } + } + return n +} + func (m *Response) Size() (n int) { if m == nil { return 0 @@ -7625,6 +7983,18 @@ func (m *Response_PrepareProposal) Size() (n int) { } return n } +func (m *Response_ProcessProposal) Size() (n int) { + if m == nil { + return 0 + } + var l int + _ = l + if m.ProcessProposal != nil { + l = m.ProcessProposal.Size() + n += 2 + l + sovTypes(uint64(l)) + } + return n +} func (m *Response_ExtendVote) Size() (n int) { if m == nil { return 0 @@ -8028,6 +8398,24 @@ func (m *ResponseVerifyVoteExtension) Size() (n int) { return n } +func (m *ResponseProcessProposal) Size() (n int) { + if m == nil { + return 0 + } + var l int + _ = l + if m.Result != 0 { + n += 1 + sovTypes(uint64(m.Result)) + } + if len(m.Evidence) > 0 { + for _, b := range m.Evidence { + l = len(b) + n += 1 + l + sovTypes(uint64(l)) + } + } + return n +} + func (m *LastCommitInfo) Size() (n int) { if m == nil { return 0 @@ -8759,6 +9147,41 @@ func (m *Request) Unmarshal(dAtA []byte) error { m.Value = &Request_PrepareProposal{v} iNdEx = postIndex case 16: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field ProcessProposal", 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 := &RequestProcessProposal{} + if err := v.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { + return err + } + m.Value = &Request_ProcessProposal{v} + iNdEx = postIndex + case 17: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field ExtendVote", wireType) } @@ -8793,7 +9216,7 @@ func (m *Request) Unmarshal(dAtA []byte) error { } m.Value = &Request_ExtendVote{v} iNdEx = postIndex - case 17: + case 18: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field VerifyVoteExtension", wireType) } @@ -10701,6 +11124,121 @@ func (m *RequestVerifyVoteExtension) Unmarshal(dAtA []byte) error { } return nil } +func (m *RequestProcessProposal) 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: RequestProcessProposal: wiretype end group for non-group") + } + if fieldNum <= 0 { + return fmt.Errorf("proto: RequestProcessProposal: illegal tag %d (wire type %d)", fieldNum, wire) + } + switch fieldNum { + case 1: + 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 2: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field Txs", wireType) + } + var byteLen int + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowTypes + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + byteLen |= int(b&0x7F) << shift + if b < 0x80 { + break + } + } + if byteLen < 0 { + return ErrInvalidLengthTypes + } + postIndex := iNdEx + byteLen + if postIndex < 0 { + return ErrInvalidLengthTypes + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + m.Txs = append(m.Txs, make([]byte, postIndex-iNdEx)) + copy(m.Txs[len(m.Txs)-1], dAtA[iNdEx:postIndex]) + iNdEx = postIndex + default: + iNdEx = preIndex + skippy, err := skipTypes(dAtA[iNdEx:]) + if err != nil { + return err + } + if (skippy < 0) || (iNdEx+skippy) < 0 { + return ErrInvalidLengthTypes + } + if (iNdEx + skippy) > l { + return io.ErrUnexpectedEOF + } + iNdEx += skippy + } + } + + if iNdEx > l { + return io.ErrUnexpectedEOF + } + return nil +} func (m *Response) Unmarshal(dAtA []byte) error { l := len(dAtA) iNdEx := 0 @@ -11291,6 +11829,41 @@ func (m *Response) Unmarshal(dAtA []byte) error { m.Value = &Response_PrepareProposal{v} iNdEx = postIndex case 17: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field ProcessProposal", 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 := &ResponseProcessProposal{} + if err := v.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { + return err + } + m.Value = &Response_ProcessProposal{v} + iNdEx = postIndex + case 18: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field ExtendVote", wireType) } @@ -11325,7 +11898,7 @@ func (m *Response) Unmarshal(dAtA []byte) error { } m.Value = &Response_ExtendVote{v} iNdEx = postIndex - case 18: + case 19: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field VerifyVoteExtension", wireType) } @@ -13859,6 +14432,107 @@ func (m *ResponseVerifyVoteExtension) Unmarshal(dAtA []byte) error { } return nil } +func (m *ResponseProcessProposal) 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: ResponseProcessProposal: wiretype end group for non-group") + } + if fieldNum <= 0 { + return fmt.Errorf("proto: ResponseProcessProposal: illegal tag %d (wire type %d)", fieldNum, wire) + } + switch fieldNum { + case 1: + if wireType != 0 { + return fmt.Errorf("proto: wrong wireType = %d for field Result", wireType) + } + m.Result = 0 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowTypes + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + m.Result |= ResponseProcessProposal_Result(b&0x7F) << shift + if b < 0x80 { + break + } + } + case 2: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field Evidence", 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.Evidence = append(m.Evidence, make([]byte, postIndex-iNdEx)) + copy(m.Evidence[len(m.Evidence)-1], dAtA[iNdEx:postIndex]) + iNdEx = postIndex + default: + iNdEx = preIndex + skippy, err := skipTypes(dAtA[iNdEx:]) + if err != nil { + return err + } + if (skippy < 0) || (iNdEx+skippy) < 0 { + return ErrInvalidLengthTypes + } + if (iNdEx + skippy) > l { + return io.ErrUnexpectedEOF + } + iNdEx += skippy + } + } + + if iNdEx > l { + return io.ErrUnexpectedEOF + } + return nil +} func (m *LastCommitInfo) Unmarshal(dAtA []byte) error { l := len(dAtA) iNdEx := 0 diff --git a/internal/consensus/state.go b/internal/consensus/state.go index d4a14e7ef..a5e2e0551 100644 --- a/internal/consensus/state.go +++ b/internal/consensus/state.go @@ -1439,11 +1439,12 @@ func (cs *State) defaultDoPrevote(ctx context.Context, height int64, round int32 return } - // Validate proposal block + // Validate proposal block, from Tendermint's perspective err := cs.blockExec.ValidateBlock(cs.state, cs.ProposalBlock) if err != nil { // ProposalBlock is invalid, prevote nil. - logger.Error("prevote step: ProposalBlock is invalid; prevoting nil", "err", err) + logger.Error("prevote step: consensus deems this block invalid; prevoting nil", + "err", err) cs.signAddVote(ctx, tmproto.PrevoteType, nil, types.PartSetHeader{}) return } @@ -1506,6 +1507,30 @@ func (cs *State) defaultDoPrevote(ctx context.Context, height int64, round int32 } } + /* + Before prevoting on the block received from the proposer for the current round and height, + we request the Application, via `ProcessProposal` ABCI call, to confirm that the block is + valid. If the Application does not accept the block, Tendermint prevotes `nil`. + + WARNING: misuse of block rejection by the Application can seriously compromise Tendermint's + liveness properties. Please see `PrepareProosal`-`ProcessProposal` coherence and determinism + properties in the ABCI++ specification. + */ + stateMachineValidBlock, err := cs.blockExec.ProcessProposal(ctx, cs.ProposalBlock) + if err != nil { + panic(fmt.Sprintf( + "state machine returned an error (%v) when calling ProcessProposal", err, + )) + } + + // Vote nil if the Application rejected the block + if !stateMachineValidBlock { + logger.Error("prevote step: state machine rejected a proposed block; this should not happen:"+ + "the proposer may be misbehaving; prevoting nil", "err", err) + cs.signAddVote(ctx, tmproto.PrevoteType, nil, types.PartSetHeader{}) + return + } + logger.Debug("prevote step: ProposalBlock is valid but was not our locked block or " + "did not receive a more recent majority; prevoting nil") cs.signAddVote(ctx, tmproto.PrevoteType, nil, types.PartSetHeader{}) diff --git a/internal/consensus/types/round_state.go b/internal/consensus/types/round_state.go index 566ca04d0..b1cf30f38 100644 --- a/internal/consensus/types/round_state.go +++ b/internal/consensus/types/round_state.go @@ -81,6 +81,15 @@ type RoundState struct { LockedBlock *types.Block `json:"locked_block"` LockedBlockParts *types.PartSet `json:"locked_block_parts"` + // The variables below starting with "Valid..." derive their name from + // the algorithm presented in this paper: + // [The latest gossip on BFT consensus](https://arxiv.org/abs/1807.04938). + // Therefore, "Valid...": + // * means that the block or round that the variable refers to has + // received 2/3+ non-`nil` prevotes (a.k.a. a *polka*) + // * has nothing to do with whether the Application returned "Accept" in its + // response to `ProcessProposal`, or "Reject" + // Last known round with POL for non-nil valid block. ValidRound int32 `json:"valid_round"` ValidBlock *types.Block `json:"valid_block"` // Last known block of POL mentioned above. @@ -187,8 +196,8 @@ func (rs *RoundState) StringIndented(indent string) string { %s ProposalBlock: %v %v %s LockedRound: %v %s LockedBlock: %v %v -%s ValidRound: %v -%s ValidBlock: %v %v +%s ValidRound: %v +%s ValidBlock: %v %v %s Votes: %v %s LastCommit: %v %s LastValidators:%v diff --git a/internal/proxy/app_conn.go b/internal/proxy/app_conn.go index 79d462f2c..4dc86b72c 100644 --- a/internal/proxy/app_conn.go +++ b/internal/proxy/app_conn.go @@ -21,6 +21,7 @@ type AppConnConsensus interface { InitChain(context.Context, types.RequestInitChain) (*types.ResponseInitChain, error) PrepareProposal(context.Context, types.RequestPrepareProposal) (*types.ResponsePrepareProposal, error) + ProcessProposal(context.Context, types.RequestProcessProposal) (*types.ResponseProcessProposal, error) ExtendVote(context.Context, types.RequestExtendVote) (*types.ResponseExtendVote, error) VerifyVoteExtension(context.Context, types.RequestVerifyVoteExtension) (*types.ResponseVerifyVoteExtension, error) BeginBlock(context.Context, types.RequestBeginBlock) (*types.ResponseBeginBlock, error) @@ -98,6 +99,14 @@ func (app *appConnConsensus) PrepareProposal( return app.appConn.PrepareProposal(ctx, req) } +func (app *appConnConsensus) ProcessProposal( + ctx context.Context, + req types.RequestProcessProposal, +) (*types.ResponseProcessProposal, error) { + defer addTimeSample(app.metrics.MethodTiming.With("method", "process_proposal", "type", "sync"))() + return app.appConn.ProcessProposal(ctx, req) +} + func (app *appConnConsensus) ExtendVote( ctx context.Context, req types.RequestExtendVote, diff --git a/internal/proxy/mocks/app_conn_consensus.go b/internal/proxy/mocks/app_conn_consensus.go index 9c03cacae..ba34020cc 100644 --- a/internal/proxy/mocks/app_conn_consensus.go +++ b/internal/proxy/mocks/app_conn_consensus.go @@ -192,6 +192,29 @@ func (_m *AppConnConsensus) PrepareProposal(_a0 context.Context, _a1 types.Reque return r0, r1 } +// ProcessProposal provides a mock function with given fields: _a0, _a1 +func (_m *AppConnConsensus) ProcessProposal(_a0 context.Context, _a1 types.RequestProcessProposal) (*types.ResponseProcessProposal, error) { + ret := _m.Called(_a0, _a1) + + var r0 *types.ResponseProcessProposal + if rf, ok := ret.Get(0).(func(context.Context, types.RequestProcessProposal) *types.ResponseProcessProposal); ok { + r0 = rf(_a0, _a1) + } else { + if ret.Get(0) != nil { + r0 = ret.Get(0).(*types.ResponseProcessProposal) + } + } + + var r1 error + if rf, ok := ret.Get(1).(func(context.Context, types.RequestProcessProposal) error); ok { + r1 = rf(_a0, _a1) + } else { + r1 = ret.Error(1) + } + + return r0, r1 +} + // SetResponseCallback provides a mock function with given fields: _a0 func (_m *AppConnConsensus) SetResponseCallback(_a0 abciclient.Callback) { _m.Called(_a0) diff --git a/internal/state/execution.go b/internal/state/execution.go index 161d3ec54..6da7060a8 100644 --- a/internal/state/execution.go +++ b/internal/state/execution.go @@ -148,6 +148,23 @@ func (blockExec *BlockExecutor) CreateProposalBlock( return state.MakeBlock(height, modifiedTxs, commit, evidence, proposerAddr) } +func (blockExec *BlockExecutor) ProcessProposal( + ctx context.Context, + block *types.Block, +) (bool, error) { + req := abci.RequestProcessProposal{ + Txs: block.Data.Txs.ToSliceOfBytes(), + Header: *block.Header.ToProto(), + } + + resp, err := blockExec.proxyApp.ProcessProposal(ctx, req) + if err != nil { + return false, ErrInvalidBlock(err) + } + + return resp.IsOK(), nil +} + // ValidateBlock validates the given block against the given state. // If the block is invalid, it returns an error. // Validation does not mutate state, but does require historical information from the stateDB, diff --git a/internal/state/execution_test.go b/internal/state/execution_test.go index da8dc1fbc..a8ae6c138 100644 --- a/internal/state/execution_test.go +++ b/internal/state/execution_test.go @@ -24,6 +24,7 @@ import ( "github.com/tendermint/tendermint/internal/state/mocks" sf "github.com/tendermint/tendermint/internal/state/test/factory" "github.com/tendermint/tendermint/internal/store" + "github.com/tendermint/tendermint/internal/test/factory" "github.com/tendermint/tendermint/libs/log" tmtime "github.com/tendermint/tendermint/libs/time" "github.com/tendermint/tendermint/types" @@ -239,6 +240,47 @@ func TestBeginBlockByzantineValidators(t *testing.T) { assert.Equal(t, abciEv, app.ByzantineValidators) } +func TestProcessProposal(t *testing.T) { + height := 1 + runTest := func(txs types.Txs, expectAccept bool) { + ctx, cancel := context.WithCancel(context.Background()) + defer cancel() + + app := &testApp{} + cc := abciclient.NewLocalCreator(app) + logger := log.TestingLogger() + proxyApp := proxy.NewAppConns(cc, logger, proxy.NopMetrics()) + err := proxyApp.Start(ctx) + require.NoError(t, err) + + state, stateDB, _ := makeState(t, 1, height) + stateStore := sm.NewStore(stateDB) + blockStore := store.NewBlockStore(dbm.NewMemDB()) + + blockExec := sm.NewBlockExecutor( + stateStore, + logger, + proxyApp.Consensus(), + mmock.Mempool{}, + sm.EmptyEvidencePool{}, + blockStore, + ) + + block, err := sf.MakeBlock(state, int64(height), new(types.Commit)) + require.NoError(t, err) + block.Txs = txs + acceptBlock, err := blockExec.ProcessProposal(ctx, block) + require.NoError(t, err) + require.Equal(t, expectAccept, acceptBlock) + } + goodTxs := factory.MakeTenTxs(int64(height)) + runTest(goodTxs, true) + // testApp has process proposal fail if any tx is 0-len + badTxs := factory.MakeTenTxs(int64(height)) + badTxs[0] = types.Tx{} + runTest(badTxs, false) +} + func TestValidateValidatorUpdates(t *testing.T) { pubkey1 := ed25519.GenPrivKey().PubKey() pubkey2 := ed25519.GenPrivKey().PubKey() diff --git a/internal/state/helpers_test.go b/internal/state/helpers_test.go index 99bb2720d..4bebe1a94 100644 --- a/internal/state/helpers_test.go +++ b/internal/state/helpers_test.go @@ -327,3 +327,12 @@ func (app *testApp) Commit() abci.ResponseCommit { func (app *testApp) Query(reqQuery abci.RequestQuery) (resQuery abci.ResponseQuery) { return } + +func (app *testApp) ProcessProposal(req abci.RequestProcessProposal) abci.ResponseProcessProposal { + for _, tx := range req.Txs { + if len(tx) == 0 { + return abci.ResponseProcessProposal{Result: abci.ResponseProcessProposal_REJECT} + } + } + return abci.ResponseProcessProposal{Result: abci.ResponseProcessProposal_ACCEPT} +} diff --git a/types/tx.go b/types/tx.go index 2f7c7057b..746252238 100644 --- a/types/tx.go +++ b/types/tx.go @@ -93,6 +93,7 @@ func (txs Txs) ToSliceOfBytes() [][]byte { } // ToTxs converts a raw slice of byte slices into a Txs type. +// TODO This function is to disappear when TxRecord is introduced func ToTxs(txs [][]byte) Txs { txBzs := make(Txs, len(txs)) for i := 0; i < len(txs); i++ {