From 70b307cf63ec601ac8211864be3a19ca053599a0 Mon Sep 17 00:00:00 2001 From: Sam Ricotta Date: Thu, 17 Oct 2024 14:21:16 +0300 Subject: [PATCH 1/5] chore: update exposed db object `IndexedBlock` in x/finality module --- proto/babylon/finality/v1/query.proto | 15 +- .../configurer/chain/queries_btcstaking.go | 20 +- x/finality/keeper/grpc_query.go | 20 +- x/finality/types/query.pb.go | 478 ++++++++++++++---- 4 files changed, 416 insertions(+), 117 deletions(-) diff --git a/proto/babylon/finality/v1/query.proto b/proto/babylon/finality/v1/query.proto index 2689f74ca..78ec1b83d 100644 --- a/proto/babylon/finality/v1/query.proto +++ b/proto/babylon/finality/v1/query.proto @@ -146,11 +146,22 @@ message QueryBlockRequest { uint64 height = 1; } +// BlockResponse is the necessary metadata and finalization status of a block +message BlockResponse { + // height is the height of the block + uint64 height = 1; + // app_hash is the AppHash of the block + bytes app_hash = 2; + // finalized indicates whether the IndexedBlock is finalised by 2/3 + // finality providers or not + bool finalized = 3; +} + // QueryBlockResponse is the response type for the // Query/Block RPC method. message QueryBlockResponse { // block is the Babylon at the given height - IndexedBlock block = 1; + BlockResponse block = 1; } // QueryListBlocksRequest is the request type for the @@ -167,7 +178,7 @@ message QueryListBlocksRequest { // Query/ListBlocks RPC method. message QueryListBlocksResponse { // blocks is the list of blocks at the given status - repeated IndexedBlock blocks = 1; + repeated BlockResponse blocks = 1; // pagination defines the pagination in the response. cosmos.base.query.v1beta1.PageResponse pagination = 2; diff --git a/test/e2e/configurer/chain/queries_btcstaking.go b/test/e2e/configurer/chain/queries_btcstaking.go index b7621230f..b0c903f61 100644 --- a/test/e2e/configurer/chain/queries_btcstaking.go +++ b/test/e2e/configurer/chain/queries_btcstaking.go @@ -170,7 +170,7 @@ func (n *NodeConfig) QueryListBlocks(status ftypes.QueriedBlockStatus) []*ftypes err = util.Cdc.UnmarshalJSON(bz, &resp) require.NoError(n.t, err) - return resp.Blocks + return convertToIndexedBlockList(resp.Blocks) } func (n *NodeConfig) QueryIndexedBlock(height uint64) *ftypes.IndexedBlock { @@ -182,5 +182,21 @@ func (n *NodeConfig) QueryIndexedBlock(height uint64) *ftypes.IndexedBlock { err = util.Cdc.UnmarshalJSON(bz, &resp) require.NoError(n.t, err) - return resp.Block + return convertToIndexedBlock(resp.Block) +} + +func convertToIndexedBlock(br *ftypes.BlockResponse) *ftypes.IndexedBlock { + return &ftypes.IndexedBlock{ + Height: br.Height, + AppHash: br.AppHash, + Finalized: br.Finalized, + } +} + +func convertToIndexedBlockList(brs []*ftypes.BlockResponse) []*ftypes.IndexedBlock { + var ibs []*ftypes.IndexedBlock + for _, indexedBlock := range brs { + ibs = append(ibs, convertToIndexedBlock(indexedBlock)) + } + return ibs } diff --git a/x/finality/keeper/grpc_query.go b/x/finality/keeper/grpc_query.go index f3452cc1d..fdebf25f8 100644 --- a/x/finality/keeper/grpc_query.go +++ b/x/finality/keeper/grpc_query.go @@ -97,7 +97,7 @@ func (k Keeper) Block(ctx context.Context, req *types.QueryBlockRequest) (*types return nil, err } - return &types.QueryBlockResponse{Block: b}, nil + return &types.QueryBlockResponse{Block: convertToBlockResponse(b)}, nil } // ListBlocks returns a list of blocks at the given finalisation status @@ -129,7 +129,7 @@ func (k Keeper) ListBlocks(ctx context.Context, req *types.QueryListBlocksReques } resp := &types.QueryListBlocksResponse{ - Blocks: ibs, + Blocks: convertToBlockResponseList(ibs), Pagination: pageRes, } return resp, nil @@ -290,3 +290,19 @@ func convertToSigningInfosResponse(signInfos []types.FinalityProviderSigningInfo } return response } + +func convertToBlockResponse(ib *types.IndexedBlock) *types.BlockResponse { + return &types.BlockResponse{ + Height: ib.Height, + AppHash: ib.AppHash, + Finalized: ib.Finalized, + } +} + +func convertToBlockResponseList(ibs []*types.IndexedBlock) []*types.BlockResponse { + var blockResponses []*types.BlockResponse + for _, ib := range ibs { + blockResponses = append(blockResponses, convertToBlockResponse(ib)) + } + return blockResponses +} diff --git a/x/finality/types/query.pb.go b/x/finality/types/query.pb.go index 18df8c26d..a154fb32f 100644 --- a/x/finality/types/query.pb.go +++ b/x/finality/types/query.pb.go @@ -481,18 +481,83 @@ func (m *QueryBlockRequest) GetHeight() uint64 { return 0 } +// BlockResponse is the necessary metadata and finalization status of a block +type BlockResponse struct { + // height is the height of the block + Height uint64 `protobuf:"varint,1,opt,name=height,proto3" json:"height,omitempty"` + // app_hash is the AppHash of the block + AppHash []byte `protobuf:"bytes,2,opt,name=app_hash,json=appHash,proto3" json:"app_hash,omitempty"` + // finalized indicates whether the IndexedBlock is finalised by 2/3 + // finality providers or not + Finalized bool `protobuf:"varint,3,opt,name=finalized,proto3" json:"finalized,omitempty"` +} + +func (m *BlockResponse) Reset() { *m = BlockResponse{} } +func (m *BlockResponse) String() string { return proto.CompactTextString(m) } +func (*BlockResponse) ProtoMessage() {} +func (*BlockResponse) Descriptor() ([]byte, []int) { + return fileDescriptor_32bddab77af6fdae, []int{8} +} +func (m *BlockResponse) XXX_Unmarshal(b []byte) error { + return m.Unmarshal(b) +} +func (m *BlockResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + if deterministic { + return xxx_messageInfo_BlockResponse.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 *BlockResponse) XXX_Merge(src proto.Message) { + xxx_messageInfo_BlockResponse.Merge(m, src) +} +func (m *BlockResponse) XXX_Size() int { + return m.Size() +} +func (m *BlockResponse) XXX_DiscardUnknown() { + xxx_messageInfo_BlockResponse.DiscardUnknown(m) +} + +var xxx_messageInfo_BlockResponse proto.InternalMessageInfo + +func (m *BlockResponse) GetHeight() uint64 { + if m != nil { + return m.Height + } + return 0 +} + +func (m *BlockResponse) GetAppHash() []byte { + if m != nil { + return m.AppHash + } + return nil +} + +func (m *BlockResponse) GetFinalized() bool { + if m != nil { + return m.Finalized + } + return false +} + // QueryBlockResponse is the response type for the // Query/Block RPC method. type QueryBlockResponse struct { // block is the Babylon at the given height - Block *IndexedBlock `protobuf:"bytes,1,opt,name=block,proto3" json:"block,omitempty"` + Block *BlockResponse `protobuf:"bytes,1,opt,name=block,proto3" json:"block,omitempty"` } func (m *QueryBlockResponse) Reset() { *m = QueryBlockResponse{} } func (m *QueryBlockResponse) String() string { return proto.CompactTextString(m) } func (*QueryBlockResponse) ProtoMessage() {} func (*QueryBlockResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_32bddab77af6fdae, []int{8} + return fileDescriptor_32bddab77af6fdae, []int{9} } func (m *QueryBlockResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -521,7 +586,7 @@ func (m *QueryBlockResponse) XXX_DiscardUnknown() { var xxx_messageInfo_QueryBlockResponse proto.InternalMessageInfo -func (m *QueryBlockResponse) GetBlock() *IndexedBlock { +func (m *QueryBlockResponse) GetBlock() *BlockResponse { if m != nil { return m.Block } @@ -541,7 +606,7 @@ func (m *QueryListBlocksRequest) Reset() { *m = QueryListBlocksRequest{} func (m *QueryListBlocksRequest) String() string { return proto.CompactTextString(m) } func (*QueryListBlocksRequest) ProtoMessage() {} func (*QueryListBlocksRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_32bddab77af6fdae, []int{9} + return fileDescriptor_32bddab77af6fdae, []int{10} } func (m *QueryListBlocksRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -588,7 +653,7 @@ func (m *QueryListBlocksRequest) GetPagination() *query.PageRequest { // Query/ListBlocks RPC method. type QueryListBlocksResponse struct { // blocks is the list of blocks at the given status - Blocks []*IndexedBlock `protobuf:"bytes,1,rep,name=blocks,proto3" json:"blocks,omitempty"` + Blocks []*BlockResponse `protobuf:"bytes,1,rep,name=blocks,proto3" json:"blocks,omitempty"` // pagination defines the pagination in the response. Pagination *query.PageResponse `protobuf:"bytes,2,opt,name=pagination,proto3" json:"pagination,omitempty"` } @@ -597,7 +662,7 @@ func (m *QueryListBlocksResponse) Reset() { *m = QueryListBlocksResponse func (m *QueryListBlocksResponse) String() string { return proto.CompactTextString(m) } func (*QueryListBlocksResponse) ProtoMessage() {} func (*QueryListBlocksResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_32bddab77af6fdae, []int{10} + return fileDescriptor_32bddab77af6fdae, []int{11} } func (m *QueryListBlocksResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -626,7 +691,7 @@ func (m *QueryListBlocksResponse) XXX_DiscardUnknown() { var xxx_messageInfo_QueryListBlocksResponse proto.InternalMessageInfo -func (m *QueryListBlocksResponse) GetBlocks() []*IndexedBlock { +func (m *QueryListBlocksResponse) GetBlocks() []*BlockResponse { if m != nil { return m.Blocks } @@ -651,7 +716,7 @@ func (m *QueryVotesAtHeightRequest) Reset() { *m = QueryVotesAtHeightReq func (m *QueryVotesAtHeightRequest) String() string { return proto.CompactTextString(m) } func (*QueryVotesAtHeightRequest) ProtoMessage() {} func (*QueryVotesAtHeightRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_32bddab77af6fdae, []int{11} + return fileDescriptor_32bddab77af6fdae, []int{12} } func (m *QueryVotesAtHeightRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -699,7 +764,7 @@ func (m *QueryVotesAtHeightResponse) Reset() { *m = QueryVotesAtHeightRe func (m *QueryVotesAtHeightResponse) String() string { return proto.CompactTextString(m) } func (*QueryVotesAtHeightResponse) ProtoMessage() {} func (*QueryVotesAtHeightResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_32bddab77af6fdae, []int{12} + return fileDescriptor_32bddab77af6fdae, []int{13} } func (m *QueryVotesAtHeightResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -740,7 +805,7 @@ func (m *QueryEvidenceRequest) Reset() { *m = QueryEvidenceRequest{} } func (m *QueryEvidenceRequest) String() string { return proto.CompactTextString(m) } func (*QueryEvidenceRequest) ProtoMessage() {} func (*QueryEvidenceRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_32bddab77af6fdae, []int{13} + return fileDescriptor_32bddab77af6fdae, []int{14} } func (m *QueryEvidenceRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -786,7 +851,7 @@ func (m *QueryEvidenceResponse) Reset() { *m = QueryEvidenceResponse{} } func (m *QueryEvidenceResponse) String() string { return proto.CompactTextString(m) } func (*QueryEvidenceResponse) ProtoMessage() {} func (*QueryEvidenceResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_32bddab77af6fdae, []int{14} + return fileDescriptor_32bddab77af6fdae, []int{15} } func (m *QueryEvidenceResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -836,7 +901,7 @@ func (m *QueryListEvidencesRequest) Reset() { *m = QueryListEvidencesReq func (m *QueryListEvidencesRequest) String() string { return proto.CompactTextString(m) } func (*QueryListEvidencesRequest) ProtoMessage() {} func (*QueryListEvidencesRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_32bddab77af6fdae, []int{15} + return fileDescriptor_32bddab77af6fdae, []int{16} } func (m *QueryListEvidencesRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -892,7 +957,7 @@ func (m *QueryListEvidencesResponse) Reset() { *m = QueryListEvidencesRe func (m *QueryListEvidencesResponse) String() string { return proto.CompactTextString(m) } func (*QueryListEvidencesResponse) ProtoMessage() {} func (*QueryListEvidencesResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_32bddab77af6fdae, []int{16} + return fileDescriptor_32bddab77af6fdae, []int{17} } func (m *QueryListEvidencesResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -947,7 +1012,7 @@ func (m *QuerySigningInfoRequest) Reset() { *m = QuerySigningInfoRequest func (m *QuerySigningInfoRequest) String() string { return proto.CompactTextString(m) } func (*QuerySigningInfoRequest) ProtoMessage() {} func (*QuerySigningInfoRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_32bddab77af6fdae, []int{17} + return fileDescriptor_32bddab77af6fdae, []int{18} } func (m *QuerySigningInfoRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1001,7 +1066,7 @@ func (m *SigningInfoResponse) Reset() { *m = SigningInfoResponse{} } func (m *SigningInfoResponse) String() string { return proto.CompactTextString(m) } func (*SigningInfoResponse) ProtoMessage() {} func (*SigningInfoResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_32bddab77af6fdae, []int{18} + return fileDescriptor_32bddab77af6fdae, []int{19} } func (m *SigningInfoResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1068,7 +1133,7 @@ func (m *QuerySigningInfoResponse) Reset() { *m = QuerySigningInfoRespon func (m *QuerySigningInfoResponse) String() string { return proto.CompactTextString(m) } func (*QuerySigningInfoResponse) ProtoMessage() {} func (*QuerySigningInfoResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_32bddab77af6fdae, []int{19} + return fileDescriptor_32bddab77af6fdae, []int{20} } func (m *QuerySigningInfoResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1114,7 +1179,7 @@ func (m *QuerySigningInfosRequest) Reset() { *m = QuerySigningInfosReque func (m *QuerySigningInfosRequest) String() string { return proto.CompactTextString(m) } func (*QuerySigningInfosRequest) ProtoMessage() {} func (*QuerySigningInfosRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_32bddab77af6fdae, []int{20} + return fileDescriptor_32bddab77af6fdae, []int{21} } func (m *QuerySigningInfosRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1162,7 +1227,7 @@ func (m *QuerySigningInfosResponse) Reset() { *m = QuerySigningInfosResp func (m *QuerySigningInfosResponse) String() string { return proto.CompactTextString(m) } func (*QuerySigningInfosResponse) ProtoMessage() {} func (*QuerySigningInfosResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_32bddab77af6fdae, []int{21} + return fileDescriptor_32bddab77af6fdae, []int{22} } func (m *QuerySigningInfosResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1217,6 +1282,7 @@ func init() { proto.RegisterType((*QueryListPubRandCommitResponse)(nil), "babylon.finality.v1.QueryListPubRandCommitResponse") proto.RegisterMapType((map[uint64]*PubRandCommitResponse)(nil), "babylon.finality.v1.QueryListPubRandCommitResponse.PubRandCommitMapEntry") proto.RegisterType((*QueryBlockRequest)(nil), "babylon.finality.v1.QueryBlockRequest") + proto.RegisterType((*BlockResponse)(nil), "babylon.finality.v1.BlockResponse") proto.RegisterType((*QueryBlockResponse)(nil), "babylon.finality.v1.QueryBlockResponse") proto.RegisterType((*QueryListBlocksRequest)(nil), "babylon.finality.v1.QueryListBlocksRequest") proto.RegisterType((*QueryListBlocksResponse)(nil), "babylon.finality.v1.QueryListBlocksResponse") @@ -1236,98 +1302,101 @@ func init() { func init() { proto.RegisterFile("babylon/finality/v1/query.proto", fileDescriptor_32bddab77af6fdae) } var fileDescriptor_32bddab77af6fdae = []byte{ - // 1453 bytes of a gzipped FileDescriptorProto + // 1491 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xbc, 0x57, 0xdf, 0x6f, 0x14, 0xd5, - 0x17, 0xef, 0x6d, 0x69, 0xa1, 0xa7, 0xbb, 0xdf, 0x6f, 0x7b, 0x5b, 0xb0, 0x2e, 0xb2, 0x2d, 0x03, - 0x96, 0x5a, 0x60, 0xc6, 0x6e, 0x11, 0x01, 0x35, 0xc0, 0x22, 0x48, 0x63, 0x59, 0x97, 0x29, 0x92, - 0xc8, 0xcb, 0x64, 0x66, 0xf7, 0x76, 0x3b, 0x76, 0x67, 0xee, 0xb0, 0x33, 0xb3, 0xe9, 0x86, 0x90, - 0x18, 0x13, 0x79, 0x30, 0x9a, 0x90, 0xf8, 0xa2, 0x0f, 0x3c, 0x68, 0x8c, 0x31, 0xf1, 0xc5, 0x57, - 0xff, 0x03, 0x1e, 0x09, 0xfa, 0x60, 0x48, 0x40, 0x03, 0x26, 0xfe, 0x1b, 0x66, 0xee, 0xbd, 0xb3, - 0x3b, 0xb3, 0x9d, 0xfd, 0xd1, 0xda, 0xf8, 0xd2, 0x74, 0xee, 0x3d, 0xe7, 0xdc, 0xcf, 0xf9, 0x9c, - 0x73, 0xcf, 0xfd, 0x2c, 0xcc, 0x18, 0xba, 0xd1, 0xa8, 0x52, 0x5b, 0x59, 0x33, 0x6d, 0xbd, 0x6a, - 0x7a, 0x0d, 0xa5, 0xbe, 0xa8, 0xdc, 0xf6, 0x49, 0xad, 0x21, 0x3b, 0x35, 0xea, 0x51, 0x3c, 0x29, - 0x0c, 0xe4, 0xd0, 0x40, 0xae, 0x2f, 0x66, 0xa6, 0x2a, 0xb4, 0x42, 0xd9, 0xbe, 0x12, 0xfc, 0xc7, - 0x4d, 0x33, 0xaf, 0x54, 0x28, 0xad, 0x54, 0x89, 0xa2, 0x3b, 0xa6, 0xa2, 0xdb, 0x36, 0xf5, 0x74, - 0xcf, 0xa4, 0xb6, 0x2b, 0x76, 0x17, 0x4a, 0xd4, 0xb5, 0xa8, 0xab, 0x18, 0xba, 0x4b, 0xf8, 0x09, - 0x4a, 0x7d, 0xd1, 0x20, 0x9e, 0xbe, 0xa8, 0x38, 0x7a, 0xc5, 0xb4, 0x99, 0xb1, 0xb0, 0x9d, 0x4d, - 0x42, 0xe5, 0xe8, 0x35, 0xdd, 0x0a, 0xa3, 0x49, 0x49, 0x16, 0x4d, 0x88, 0xdc, 0x66, 0x46, 0xe0, - 0x61, 0x5f, 0x86, 0xbf, 0xa6, 0x78, 0xa6, 0x45, 0x5c, 0x4f, 0xb7, 0x1c, 0x61, 0x30, 0xa1, 0x5b, - 0xa6, 0x4d, 0x15, 0xf6, 0x97, 0x2f, 0x49, 0x53, 0x80, 0xaf, 0x07, 0xd8, 0x8a, 0xec, 0x30, 0x95, - 0xdc, 0xf6, 0x89, 0xeb, 0x49, 0x45, 0x98, 0x8c, 0xad, 0xba, 0x0e, 0xb5, 0x5d, 0x82, 0xcf, 0xc2, - 0x08, 0x07, 0x35, 0x8d, 0x66, 0xd1, 0xfc, 0x58, 0xee, 0xa0, 0x9c, 0x40, 0x96, 0xcc, 0x9d, 0xf2, - 0x7b, 0x1e, 0x3e, 0x9b, 0x19, 0x50, 0x85, 0x83, 0xf4, 0x25, 0x82, 0x59, 0x16, 0x72, 0xc5, 0x74, - 0xbd, 0xa2, 0x6f, 0x54, 0xcd, 0x92, 0xaa, 0xdb, 0x65, 0x6a, 0xd9, 0xc4, 0x0d, 0x8f, 0xc5, 0x87, - 0x21, 0xbd, 0xe6, 0x68, 0x86, 0x57, 0xd2, 0x9c, 0x0d, 0x6d, 0x9d, 0x6c, 0xb2, 0x63, 0x46, 0x55, - 0x58, 0x73, 0xf2, 0x5e, 0xa9, 0xb8, 0x71, 0x95, 0x6c, 0xe2, 0x2b, 0x00, 0x2d, 0xf6, 0xa6, 0x07, - 0x19, 0x8c, 0x39, 0x99, 0x53, 0x2d, 0x07, 0x54, 0xcb, 0xbc, 0x98, 0x82, 0x6a, 0xb9, 0xa8, 0x57, - 0x88, 0x08, 0xaf, 0x46, 0x3c, 0xa5, 0xc7, 0x83, 0x70, 0xb8, 0x0b, 0x1e, 0x91, 0xf0, 0xf7, 0x08, - 0x52, 0x8e, 0x6f, 0x68, 0x35, 0xdd, 0x2e, 0x6b, 0x96, 0xee, 0x4c, 0xa3, 0xd9, 0xa1, 0xf9, 0xb1, - 0xdc, 0x95, 0xc4, 0xbc, 0x7b, 0x86, 0x93, 0x8b, 0xbe, 0x11, 0xac, 0x5e, 0xd3, 0x9d, 0xcb, 0xb6, - 0x57, 0x6b, 0xe4, 0xcf, 0x3d, 0x79, 0x36, 0x73, 0xba, 0x62, 0x7a, 0xeb, 0xbe, 0x21, 0x97, 0xa8, - 0xa5, 0x88, 0xa8, 0x55, 0xdd, 0x70, 0x4f, 0x9a, 0x34, 0xfc, 0x54, 0xbc, 0x86, 0x43, 0x5c, 0x79, - 0xb5, 0xb4, 0x6e, 0xd3, 0x5a, 0x4d, 0xc4, 0x50, 0xc1, 0x69, 0x06, 0xc3, 0xef, 0x25, 0x90, 0x72, - 0xac, 0x27, 0x29, 0x1c, 0x54, 0x94, 0x95, 0xcc, 0x3b, 0xf0, 0xff, 0x36, 0x8c, 0x78, 0x1c, 0x86, - 0x36, 0x48, 0x83, 0x55, 0x62, 0x8f, 0x1a, 0xfc, 0x8b, 0xa7, 0x60, 0xb8, 0xae, 0x57, 0x7d, 0xc2, - 0x0e, 0x4a, 0xa9, 0xfc, 0xe3, 0xdc, 0xe0, 0x19, 0x24, 0xd5, 0x61, 0xbf, 0x70, 0xbf, 0x44, 0x2d, - 0xcb, 0xf4, 0x9a, 0x3c, 0xce, 0x42, 0xca, 0xf6, 0x2d, 0x2d, 0xa4, 0x52, 0x44, 0x03, 0xdb, 0xb7, - 0x84, 0x3d, 0xce, 0x02, 0x94, 0x98, 0x8f, 0x45, 0x6c, 0x4f, 0x44, 0x8e, 0xac, 0xe0, 0x83, 0x30, - 0x4a, 0x1c, 0x5a, 0x5a, 0xd7, 0x6c, 0xdf, 0x9a, 0x1e, 0x62, 0xee, 0xfb, 0xd8, 0x42, 0xc1, 0xb7, - 0xa4, 0xcf, 0x11, 0x1c, 0x8a, 0xb2, 0x1f, 0x45, 0xf0, 0x9f, 0x77, 0xd6, 0x6f, 0x83, 0x90, 0xed, - 0x04, 0x46, 0xd0, 0xb1, 0x09, 0x93, 0xcd, 0xae, 0xe2, 0x39, 0x46, 0x9a, 0x6b, 0xb9, 0x67, 0x73, - 0x6d, 0x8d, 0x28, 0xc7, 0x56, 0xc3, 0xda, 0xa9, 0xe3, 0x4e, 0xdb, 0xf2, 0xee, 0x75, 0x0a, 0x6d, - 0x2b, 0x75, 0x97, 0x7e, 0xb9, 0x10, 0xed, 0x97, 0xb1, 0xdc, 0x42, 0xf2, 0xd0, 0x48, 0x4a, 0x2b, - 0xda, 0x5b, 0xc7, 0x61, 0x82, 0x71, 0x90, 0xaf, 0xd2, 0xd2, 0x46, 0x58, 0xd6, 0x03, 0x30, 0xb2, - 0x4e, 0xcc, 0xca, 0xba, 0x27, 0xce, 0x13, 0x5f, 0xd2, 0x35, 0x31, 0xd5, 0x84, 0xb1, 0xa0, 0xfd, - 0x4d, 0x18, 0x36, 0x82, 0x05, 0x31, 0xbd, 0x0e, 0x27, 0x02, 0x59, 0xb6, 0xcb, 0x64, 0x93, 0x94, - 0xb9, 0x27, 0xb7, 0x97, 0xbe, 0x45, 0x70, 0xa0, 0x59, 0x00, 0xb6, 0xd3, 0x1c, 0x59, 0xe7, 0x61, - 0xc4, 0xf5, 0x74, 0xcf, 0xe7, 0x23, 0xf1, 0x7f, 0xb9, 0x63, 0x1d, 0xab, 0x67, 0x8a, 0xa0, 0xab, - 0xcc, 0x5c, 0x15, 0x6e, 0xbb, 0xd6, 0x76, 0x0f, 0x10, 0xbc, 0xb4, 0x05, 0x63, 0x6b, 0x6e, 0xb3, - 0x44, 0x5c, 0xd1, 0x62, 0x7d, 0x64, 0x2e, 0x1c, 0x76, 0xad, 0x61, 0xa4, 0x25, 0x78, 0x99, 0xc1, - 0xbb, 0x49, 0x3d, 0xe2, 0x5e, 0xf4, 0xae, 0xb2, 0x42, 0xf5, 0xaa, 0x23, 0x85, 0x4c, 0x92, 0x93, - 0x48, 0xeb, 0x3a, 0xec, 0xe5, 0x37, 0x9a, 0xe7, 0x95, 0xca, 0x9f, 0x79, 0xf2, 0x6c, 0xe6, 0x54, - 0xbf, 0xf3, 0x34, 0xbf, 0x5c, 0x5c, 0x3a, 0xf5, 0x7a, 0xd1, 0x37, 0xde, 0x27, 0x0d, 0x75, 0xc4, - 0x08, 0xc6, 0x80, 0x2b, 0x9d, 0x85, 0x29, 0x76, 0xe0, 0xe5, 0xba, 0x59, 0x26, 0x76, 0x89, 0xf4, - 0x3f, 0x3f, 0x24, 0x15, 0xf6, 0xb7, 0xb9, 0x36, 0xd9, 0xdf, 0x47, 0xc4, 0x9a, 0xe8, 0xbc, 0x43, - 0x89, 0xfc, 0x37, 0x1d, 0x9b, 0xe6, 0xd2, 0x3d, 0x24, 0x58, 0x0b, 0x8a, 0x1a, 0xee, 0x47, 0x9e, - 0xcb, 0x94, 0xeb, 0xe9, 0x35, 0x4f, 0x8b, 0x71, 0x37, 0xc6, 0xd6, 0x38, 0x55, 0xbb, 0xd6, 0x5d, - 0xdf, 0x21, 0x51, 0x89, 0x36, 0x20, 0x22, 0xc5, 0xb7, 0x60, 0x34, 0xc4, 0x1c, 0xf6, 0x58, 0x8f, - 0x1c, 0x5b, 0xf6, 0xbb, 0xd7, 0x62, 0x6f, 0x8b, 0x1b, 0xb0, 0x6a, 0x56, 0x6c, 0xd3, 0xae, 0x2c, - 0xdb, 0x6b, 0x74, 0x1b, 0xf5, 0x7b, 0x8a, 0x60, 0x32, 0xe6, 0x29, 0x72, 0xeb, 0xe3, 0xe9, 0x68, - 0x2f, 0x44, 0x90, 0xc3, 0x50, 0xbc, 0x10, 0x39, 0xd8, 0x6f, 0x99, 0xae, 0x4b, 0xca, 0x1a, 0xbf, - 0x58, 0x5a, 0x89, 0xfa, 0xb6, 0x47, 0x6a, 0xec, 0x2d, 0x1b, 0x52, 0x27, 0xf9, 0x26, 0xbf, 0xb7, - 0x97, 0xf8, 0x16, 0x5e, 0x81, 0xd4, 0xc7, 0xba, 0x59, 0x25, 0x65, 0xcd, 0xb7, 0x3d, 0xb3, 0x3a, - 0xbd, 0x87, 0x51, 0x93, 0x91, 0xb9, 0xcc, 0x93, 0x43, 0x99, 0x27, 0xdf, 0x08, 0x65, 0x5e, 0x3e, - 0x1d, 0x68, 0xae, 0xfb, 0x7f, 0xcc, 0xa0, 0x1f, 0xff, 0xfe, 0x79, 0x01, 0xa9, 0x63, 0xdc, 0xfd, - 0xc3, 0xc0, 0x5b, 0xb2, 0x60, 0x7a, 0x2b, 0x3b, 0xcd, 0x9b, 0x94, 0x72, 0xf9, 0xb2, 0x66, 0xda, - 0x6b, 0x54, 0xb4, 0xe9, 0x7c, 0x62, 0x09, 0x13, 0xfc, 0x85, 0xd6, 0x1b, 0x73, 0x5b, 0x5b, 0x92, - 0xb1, 0xf5, 0xb8, 0x66, 0xe3, 0xc6, 0xbb, 0x12, 0xed, 0xb8, 0x2b, 0x7f, 0x09, 0xaf, 0x47, 0xfc, - 0x10, 0x91, 0xd4, 0x2a, 0xa4, 0xa3, 0x49, 0x85, 0x8d, 0xb9, 0xdd, 0xac, 0x52, 0x91, 0xac, 0x76, - 0xaf, 0x59, 0x17, 0xce, 0xf3, 0x27, 0x2a, 0xfe, 0x2a, 0xe0, 0x09, 0x48, 0x17, 0x3e, 0x28, 0x68, - 0x57, 0x96, 0x0b, 0x17, 0x57, 0x96, 0x6f, 0x5d, 0x7e, 0x77, 0x7c, 0x00, 0xa7, 0x61, 0xb4, 0xf5, - 0x89, 0xf0, 0x5e, 0x18, 0xba, 0x58, 0xf8, 0x68, 0x7c, 0x30, 0xf7, 0x59, 0x1a, 0x86, 0x59, 0xf2, - 0xf8, 0x13, 0x04, 0x23, 0x5c, 0x74, 0xe3, 0xce, 0xcf, 0x4f, 0x5c, 0xe1, 0x67, 0xe6, 0x7b, 0x1b, - 0x72, 0xd0, 0xd2, 0x91, 0x4f, 0x7f, 0xfd, 0xeb, 0xab, 0xc1, 0x43, 0xf8, 0xa0, 0xd2, 0xf9, 0x47, - 0x0a, 0x7e, 0x8a, 0x60, 0x2a, 0x49, 0xfa, 0xe2, 0x37, 0xb6, 0x2b, 0x95, 0x39, 0xbc, 0xd3, 0x3b, - 0x53, 0xd8, 0xd2, 0x4d, 0x06, 0xb6, 0x88, 0x0b, 0x4a, 0xb7, 0xdf, 0x4b, 0x9a, 0x53, 0xa3, 0xc1, - 0xf8, 0xa9, 0xb9, 0xca, 0x9d, 0xd8, 0xdd, 0xbe, 0xab, 0x38, 0x2c, 0x32, 0x93, 0x66, 0x3c, 0xb4, - 0x56, 0x35, 0x5d, 0x0f, 0x3f, 0x46, 0x30, 0xb1, 0x45, 0x7d, 0xe1, 0xdc, 0xb6, 0xa4, 0x1a, 0xcf, - 0x6c, 0x69, 0x07, 0xf2, 0x4e, 0xba, 0xc1, 0xd2, 0x2a, 0xe0, 0x95, 0x7f, 0x91, 0x56, 0x4c, 0x6e, - 0xb2, 0xa4, 0xee, 0x21, 0x18, 0x66, 0xcd, 0x87, 0xe7, 0x3a, 0x83, 0x8a, 0xea, 0xad, 0xcc, 0xb1, - 0x9e, 0x76, 0x02, 0xf0, 0x09, 0x06, 0x78, 0x0e, 0x1f, 0x4d, 0x04, 0xcc, 0x47, 0xa0, 0x72, 0x87, - 0x8f, 0xcb, 0xbb, 0xf8, 0x0b, 0x04, 0xd0, 0x92, 0x2d, 0xf8, 0x78, 0x77, 0x8a, 0x62, 0x02, 0x2c, - 0x73, 0xa2, 0x3f, 0xe3, 0xbe, 0x9a, 0x59, 0x68, 0x9e, 0x07, 0x08, 0xd2, 0x31, 0xc5, 0x81, 0xe5, - 0xce, 0x87, 0x24, 0xe9, 0x99, 0x8c, 0xd2, 0xb7, 0xbd, 0xc0, 0x75, 0x9c, 0xe1, 0x7a, 0x15, 0x1f, - 0x49, 0xc4, 0x55, 0x0f, 0x7c, 0x5a, 0x74, 0xfd, 0x84, 0x60, 0x5f, 0xf8, 0x90, 0xe2, 0xd7, 0x3a, - 0x1f, 0xd5, 0x26, 0x62, 0x32, 0x0b, 0xfd, 0x98, 0x0a, 0x40, 0x57, 0x19, 0xa0, 0x3c, 0xbe, 0xb0, - 0xd3, 0x8e, 0x0b, 0xdf, 0x77, 0xfc, 0x35, 0x82, 0x74, 0x4c, 0x35, 0x74, 0x63, 0x33, 0x49, 0xe7, - 0x74, 0x63, 0x33, 0x51, 0x8e, 0x48, 0x73, 0x0c, 0xfc, 0x2c, 0xce, 0x26, 0x82, 0x6f, 0x29, 0x8f, - 0x1f, 0x10, 0x8c, 0x45, 0x06, 0x3f, 0xee, 0xd2, 0x4b, 0x5b, 0x35, 0x45, 0xe6, 0x64, 0x9f, 0xd6, - 0x02, 0xd4, 0x39, 0x06, 0xea, 0x14, 0xce, 0x25, 0x82, 0x8a, 0xbd, 0x54, 0xed, 0x64, 0xe2, 0x6f, - 0x10, 0xa4, 0xa2, 0x6f, 0x1c, 0xee, 0xef, 0xec, 0x26, 0x83, 0x72, 0xbf, 0xe6, 0x02, 0xeb, 0x02, - 0xc3, 0x7a, 0x14, 0x4b, 0xbd, 0xb1, 0xe6, 0x57, 0x1e, 0x3e, 0xcf, 0xa2, 0x47, 0xcf, 0xb3, 0xe8, - 0xcf, 0xe7, 0x59, 0x74, 0xff, 0x45, 0x76, 0xe0, 0xd1, 0x8b, 0xec, 0xc0, 0xef, 0x2f, 0xb2, 0x03, - 0xb7, 0x72, 0xbd, 0xa5, 0xf8, 0x66, 0x2b, 0x30, 0x53, 0xe5, 0xc6, 0x08, 0x53, 0x35, 0x4b, 0xff, - 0x04, 0x00, 0x00, 0xff, 0xff, 0xaf, 0xed, 0x13, 0xce, 0xa8, 0x13, 0x00, 0x00, + 0x17, 0xef, 0x6d, 0x69, 0x69, 0x4f, 0x77, 0xbf, 0xdf, 0xf6, 0xb6, 0x60, 0x59, 0x60, 0x5b, 0x06, + 0x2c, 0xb5, 0xc0, 0x8c, 0xdd, 0x22, 0x81, 0xaa, 0x01, 0x16, 0xc1, 0x36, 0xd6, 0x75, 0x99, 0x22, + 0x89, 0xbc, 0x8c, 0x33, 0xdb, 0xdb, 0xdd, 0xb1, 0x3b, 0x73, 0x87, 0x9d, 0x99, 0x4d, 0x57, 0x42, + 0x62, 0x4c, 0xe4, 0xc1, 0x68, 0x42, 0xe2, 0x8b, 0x3e, 0x68, 0xa2, 0x31, 0xc6, 0xc4, 0x17, 0x5f, + 0xfd, 0x0f, 0x78, 0x24, 0xe8, 0x83, 0x21, 0x01, 0x0d, 0x98, 0xf8, 0x6f, 0x98, 0xbd, 0xf7, 0xce, + 0xee, 0xcc, 0x76, 0xf6, 0x47, 0x6b, 0xe3, 0x4b, 0xd3, 0xb9, 0x73, 0x7e, 0x7c, 0xce, 0x39, 0x9f, + 0x39, 0xf7, 0xb3, 0x30, 0x6d, 0xe8, 0x46, 0xad, 0x4c, 0x6d, 0x65, 0xc3, 0xb4, 0xf5, 0xb2, 0xe9, + 0xd5, 0x94, 0xea, 0x82, 0x72, 0xdb, 0x27, 0x95, 0x9a, 0xec, 0x54, 0xa8, 0x47, 0xf1, 0x84, 0x30, + 0x90, 0x03, 0x03, 0xb9, 0xba, 0x90, 0x9a, 0x2c, 0xd2, 0x22, 0x65, 0xef, 0x95, 0xfa, 0x7f, 0xdc, + 0x34, 0x75, 0xa4, 0x48, 0x69, 0xb1, 0x4c, 0x14, 0xdd, 0x31, 0x15, 0xdd, 0xb6, 0xa9, 0xa7, 0x7b, + 0x26, 0xb5, 0x5d, 0xf1, 0x76, 0xbe, 0x40, 0x5d, 0x8b, 0xba, 0x8a, 0xa1, 0xbb, 0x84, 0x67, 0x50, + 0xaa, 0x0b, 0x06, 0xf1, 0xf4, 0x05, 0xc5, 0xd1, 0x8b, 0xa6, 0xcd, 0x8c, 0x85, 0xed, 0x4c, 0x1c, + 0x2a, 0x47, 0xaf, 0xe8, 0x56, 0x10, 0x4d, 0x8a, 0xb3, 0x68, 0x40, 0xe4, 0x36, 0xd3, 0x02, 0x0f, + 0x7b, 0x32, 0xfc, 0x0d, 0xc5, 0x33, 0x2d, 0xe2, 0x7a, 0xba, 0xe5, 0x08, 0x83, 0x71, 0xdd, 0x32, + 0x6d, 0xaa, 0xb0, 0xbf, 0xfc, 0x48, 0x9a, 0x04, 0x7c, 0xbd, 0x8e, 0x2d, 0xcf, 0x92, 0xa9, 0xe4, + 0xb6, 0x4f, 0x5c, 0x4f, 0xca, 0xc3, 0x44, 0xe4, 0xd4, 0x75, 0xa8, 0xed, 0x12, 0x7c, 0x01, 0x86, + 0x38, 0xa8, 0x29, 0x34, 0x83, 0xe6, 0x46, 0x33, 0x87, 0xe5, 0x98, 0x66, 0xc9, 0xdc, 0x29, 0xbb, + 0xef, 0xc1, 0xd3, 0xe9, 0x3e, 0x55, 0x38, 0x48, 0x9f, 0x23, 0x98, 0x61, 0x21, 0x57, 0x4d, 0xd7, + 0xcb, 0xfb, 0x46, 0xd9, 0x2c, 0xa8, 0xba, 0xbd, 0x4e, 0x2d, 0x9b, 0xb8, 0x41, 0x5a, 0x7c, 0x0c, + 0x92, 0x1b, 0x8e, 0x66, 0x78, 0x05, 0xcd, 0xd9, 0xd4, 0x4a, 0x64, 0x8b, 0xa5, 0x19, 0x51, 0x61, + 0xc3, 0xc9, 0x7a, 0x85, 0xfc, 0xe6, 0x32, 0xd9, 0xc2, 0xd7, 0x00, 0x9a, 0xdd, 0x9b, 0xea, 0x67, + 0x30, 0x66, 0x65, 0xde, 0x6a, 0xb9, 0xde, 0x6a, 0x99, 0x0f, 0x53, 0xb4, 0x5a, 0xce, 0xeb, 0x45, + 0x22, 0xc2, 0xab, 0x21, 0x4f, 0xe9, 0x51, 0x3f, 0x1c, 0xeb, 0x80, 0x47, 0x14, 0xfc, 0x3d, 0x82, + 0x84, 0xe3, 0x1b, 0x5a, 0x45, 0xb7, 0xd7, 0x35, 0x4b, 0x77, 0xa6, 0xd0, 0xcc, 0xc0, 0xdc, 0x68, + 0xe6, 0x5a, 0x6c, 0xdd, 0x5d, 0xc3, 0xc9, 0x79, 0xdf, 0xa8, 0x9f, 0xbe, 0xad, 0x3b, 0x57, 0x6d, + 0xaf, 0x52, 0xcb, 0x2e, 0x3d, 0x7e, 0x3a, 0x7d, 0xae, 0x68, 0x7a, 0x25, 0xdf, 0x90, 0x0b, 0xd4, + 0x52, 0x44, 0xd4, 0xb2, 0x6e, 0xb8, 0x67, 0x4c, 0x1a, 0x3c, 0x2a, 0x5e, 0xcd, 0x21, 0xae, 0xbc, + 0x56, 0x28, 0xd9, 0xb4, 0x52, 0x11, 0x31, 0x54, 0x70, 0x1a, 0xc1, 0xf0, 0x9b, 0x31, 0x4d, 0x39, + 0xd9, 0xb5, 0x29, 0x1c, 0x54, 0xb8, 0x2b, 0xa9, 0xd7, 0xe1, 0xff, 0x2d, 0x18, 0xf1, 0x18, 0x0c, + 0x6c, 0x92, 0x1a, 0x9b, 0xc4, 0x3e, 0xb5, 0xfe, 0x2f, 0x9e, 0x84, 0xc1, 0xaa, 0x5e, 0xf6, 0x09, + 0x4b, 0x94, 0x50, 0xf9, 0xc3, 0x52, 0xff, 0x79, 0x24, 0x55, 0xe1, 0x80, 0x70, 0xbf, 0x42, 0x2d, + 0xcb, 0xf4, 0x1a, 0x7d, 0x9c, 0x81, 0x84, 0xed, 0x5b, 0x5a, 0xd0, 0x4a, 0x11, 0x0d, 0x6c, 0xdf, + 0x12, 0xf6, 0x38, 0x0d, 0x50, 0x60, 0x3e, 0x16, 0xb1, 0x3d, 0x11, 0x39, 0x74, 0x82, 0x0f, 0xc3, + 0x08, 0x71, 0x68, 0xa1, 0xa4, 0xd9, 0xbe, 0x35, 0x35, 0xc0, 0xdc, 0x87, 0xd9, 0x41, 0xce, 0xb7, + 0xa4, 0x4f, 0x11, 0x1c, 0x0d, 0x77, 0x3f, 0x8c, 0xe0, 0x3f, 0x67, 0xd6, 0x6f, 0xfd, 0x90, 0x6e, + 0x07, 0x46, 0xb4, 0x63, 0x0b, 0x26, 0x1a, 0xac, 0xe2, 0x35, 0x86, 0xc8, 0xb5, 0xd2, 0x95, 0x5c, + 0xdb, 0x23, 0xca, 0x91, 0xd3, 0x60, 0x76, 0xea, 0x98, 0xd3, 0x72, 0xbc, 0x77, 0x4c, 0xa1, 0x2d, + 0xa3, 0xee, 0xc0, 0x97, 0x4b, 0x61, 0xbe, 0x8c, 0x66, 0xe6, 0xe3, 0x97, 0x46, 0x5c, 0x59, 0x61, + 0x6e, 0x9d, 0x82, 0x71, 0xd6, 0x83, 0x6c, 0x99, 0x16, 0x36, 0x83, 0xb1, 0x1e, 0x84, 0xa1, 0x12, + 0x31, 0x8b, 0x25, 0x4f, 0xe4, 0x13, 0x4f, 0xd2, 0xfb, 0x90, 0x14, 0x76, 0xa2, 0xe3, 0x6d, 0x0c, + 0xf1, 0x21, 0x18, 0xd6, 0x1d, 0x47, 0x2b, 0xe9, 0x6e, 0x49, 0x90, 0x6e, 0xbf, 0xee, 0x38, 0xcb, + 0xba, 0x5b, 0xc2, 0x47, 0x60, 0x84, 0x03, 0xfc, 0x90, 0xac, 0x33, 0xc6, 0x0d, 0xab, 0xcd, 0x03, + 0x29, 0x27, 0xf6, 0x66, 0x34, 0xcd, 0x79, 0x18, 0x34, 0xea, 0x07, 0x62, 0x3f, 0x4a, 0xb1, 0xa5, + 0x46, 0x5c, 0x54, 0xee, 0x20, 0x7d, 0x8b, 0xe0, 0x60, 0x63, 0xc6, 0xcc, 0xa2, 0xb1, 0x15, 0x2f, + 0xc2, 0x90, 0xeb, 0xe9, 0x9e, 0xcf, 0xb7, 0xee, 0xff, 0x32, 0x27, 0xdb, 0x12, 0xc4, 0x24, 0xeb, + 0xcc, 0x75, 0x8d, 0x99, 0xab, 0xc2, 0x6d, 0xcf, 0x98, 0xfd, 0x0d, 0x82, 0x17, 0xb6, 0x61, 0x14, + 0x95, 0x2f, 0xc1, 0x10, 0x2b, 0xc4, 0x15, 0x2c, 0xee, 0xa5, 0x74, 0xe1, 0xb1, 0x67, 0xa4, 0x94, + 0x16, 0xe1, 0x10, 0xc3, 0x77, 0x93, 0x7a, 0xc4, 0xbd, 0xec, 0x2d, 0xb3, 0x19, 0x77, 0xe3, 0x0a, + 0x85, 0x54, 0x9c, 0x93, 0xa8, 0xeb, 0x3a, 0xec, 0xe7, 0x5b, 0x83, 0x17, 0x96, 0xc8, 0x9e, 0x7f, + 0xfc, 0x74, 0xfa, 0x6c, 0xaf, 0x3b, 0x3b, 0xbb, 0x92, 0x5f, 0x3c, 0xfb, 0x72, 0xde, 0x37, 0xde, + 0x22, 0x35, 0x75, 0xc8, 0xa8, 0xaf, 0x1a, 0x57, 0xba, 0x00, 0x93, 0x2c, 0xe1, 0xd5, 0xaa, 0xb9, + 0x4e, 0xec, 0x02, 0xe9, 0x7d, 0x47, 0x49, 0x2a, 0x1c, 0x68, 0x71, 0x6d, 0xdc, 0xcc, 0xc3, 0x44, + 0x9c, 0x09, 0xee, 0x1d, 0x8d, 0x1d, 0x40, 0xc3, 0xb1, 0x61, 0x2e, 0xdd, 0x43, 0xa2, 0x6b, 0xf5, + 0xa9, 0x06, 0xef, 0x43, 0x57, 0x72, 0xc2, 0xf5, 0xf4, 0x8a, 0xa7, 0x45, 0x7a, 0x37, 0xca, 0xce, + 0x78, 0xab, 0xf6, 0x8c, 0x5e, 0xdf, 0x21, 0x31, 0x89, 0x16, 0x20, 0xa2, 0xc4, 0x57, 0x61, 0x24, + 0xc0, 0x1c, 0x90, 0xac, 0x4b, 0x8d, 0x4d, 0xfb, 0xbd, 0xa3, 0xd8, 0x6b, 0xe2, 0x13, 0x58, 0x33, + 0x8b, 0xb6, 0x69, 0x17, 0x57, 0xec, 0x0d, 0xba, 0x83, 0xf9, 0x3d, 0x41, 0x30, 0x11, 0xf1, 0x14, + 0xb5, 0xf5, 0x70, 0x3d, 0xb5, 0x0e, 0xa2, 0x5e, 0xc3, 0x40, 0x74, 0x10, 0x19, 0x38, 0x60, 0x99, + 0xae, 0x4b, 0xd6, 0x35, 0xfe, 0x61, 0x69, 0x05, 0xea, 0xdb, 0x1e, 0xa9, 0xb0, 0xed, 0x35, 0xa0, + 0x4e, 0xf0, 0x97, 0xfc, 0xc3, 0xbd, 0xc2, 0x5f, 0xe1, 0x55, 0x48, 0x7c, 0xa0, 0x9b, 0x65, 0xb2, + 0xae, 0xf9, 0xb6, 0x67, 0x96, 0xa7, 0xf6, 0xb1, 0xd6, 0xa4, 0x64, 0x2e, 0x25, 0xe5, 0x40, 0x4a, + 0xca, 0x37, 0x02, 0x29, 0x99, 0x4d, 0xd6, 0x75, 0xdd, 0xfd, 0x3f, 0xa6, 0xd1, 0x8f, 0x7f, 0xff, + 0x3c, 0x8f, 0xd4, 0x51, 0xee, 0xfe, 0x6e, 0xdd, 0x5b, 0xb2, 0x60, 0x6a, 0x7b, 0x77, 0x1a, 0x5f, + 0x52, 0xc2, 0xe5, 0xc7, 0x9a, 0x69, 0x6f, 0x50, 0x41, 0xd3, 0xb9, 0xd8, 0x11, 0xc6, 0xf8, 0x0b, + 0x3d, 0x39, 0xea, 0x36, 0x5f, 0x49, 0xc6, 0xf6, 0x74, 0x0d, 0xe2, 0x46, 0x59, 0x89, 0x76, 0xcd, + 0xca, 0x5f, 0x82, 0xcf, 0x23, 0x9a, 0x44, 0x14, 0xb5, 0x06, 0xc9, 0x70, 0x51, 0x01, 0x31, 0x77, + 0x5a, 0x55, 0x22, 0x54, 0xd5, 0xde, 0x91, 0x75, 0xfe, 0x22, 0xbf, 0xa4, 0xa2, 0xd7, 0x02, 0x1e, + 0x87, 0x64, 0xee, 0x9d, 0x9c, 0x76, 0x6d, 0x25, 0x77, 0x79, 0x75, 0xe5, 0xd6, 0xd5, 0x37, 0xc6, + 0xfa, 0x70, 0x12, 0x46, 0x9a, 0x8f, 0x08, 0xef, 0x87, 0x81, 0xcb, 0xb9, 0xf7, 0xc6, 0xfa, 0x33, + 0x9f, 0x24, 0x61, 0x90, 0x15, 0x8f, 0x3f, 0x42, 0x30, 0xc4, 0x85, 0x3d, 0x6e, 0x7f, 0xff, 0x44, + 0x7f, 0x45, 0xa4, 0xe6, 0xba, 0x1b, 0x72, 0xd0, 0xd2, 0xf1, 0x8f, 0x7f, 0xfd, 0xeb, 0x8b, 0xfe, + 0xa3, 0xf8, 0xb0, 0xd2, 0xfe, 0x87, 0x10, 0x7e, 0x82, 0x60, 0x32, 0x4e, 0x5e, 0xe3, 0x57, 0x76, + 0x2a, 0xc7, 0x39, 0xbc, 0x73, 0xbb, 0x53, 0xf1, 0xd2, 0x4d, 0x06, 0x36, 0x8f, 0x73, 0x4a, 0xa7, + 0xdf, 0x64, 0x9a, 0x53, 0xa1, 0xf5, 0xf5, 0x53, 0x71, 0x95, 0x3b, 0x91, 0x6f, 0xfb, 0xae, 0xe2, + 0xb0, 0xc8, 0x4c, 0xfe, 0xf1, 0xd0, 0x5a, 0xd9, 0x74, 0x3d, 0xfc, 0x08, 0xc1, 0xf8, 0x36, 0x85, + 0x87, 0x33, 0x3b, 0x92, 0x83, 0xbc, 0xb2, 0xc5, 0x5d, 0x48, 0x48, 0xe9, 0x06, 0x2b, 0x2b, 0x87, + 0x57, 0xff, 0x45, 0x59, 0x11, 0x49, 0xcb, 0x8a, 0xba, 0x87, 0x60, 0x90, 0x91, 0x0f, 0xcf, 0xb6, + 0x07, 0x15, 0xd6, 0x74, 0xa9, 0x93, 0x5d, 0xed, 0x04, 0xe0, 0xd3, 0x0c, 0xf0, 0x2c, 0x3e, 0x11, + 0x0b, 0x98, 0xaf, 0x40, 0xe5, 0x0e, 0x5f, 0x97, 0x77, 0xf1, 0x67, 0x08, 0xa0, 0xa9, 0x5b, 0xf0, + 0xa9, 0xce, 0x2d, 0x8a, 0x28, 0xb0, 0xd4, 0xe9, 0xde, 0x8c, 0x7b, 0x22, 0xb3, 0xd0, 0x3c, 0x5f, + 0x23, 0x48, 0x46, 0x14, 0x07, 0x96, 0xdb, 0x27, 0x89, 0xd3, 0x33, 0x29, 0xa5, 0x67, 0x7b, 0x81, + 0xeb, 0x14, 0xc3, 0xf5, 0x22, 0x3e, 0x1e, 0x8b, 0xab, 0x5a, 0xf7, 0x69, 0xb6, 0xeb, 0x27, 0x04, + 0xc3, 0xc1, 0x45, 0x8a, 0x5f, 0x6a, 0x9f, 0xaa, 0x45, 0xc4, 0xa4, 0xe6, 0x7b, 0x31, 0x15, 0x80, + 0x96, 0x19, 0xa0, 0x2c, 0xbe, 0xb4, 0x5b, 0xc6, 0x05, 0xf7, 0x3b, 0xfe, 0x12, 0x41, 0x32, 0xa2, + 0x1a, 0x3a, 0x75, 0x33, 0x4e, 0xe7, 0x74, 0xea, 0x66, 0xac, 0x1c, 0x91, 0x66, 0x19, 0xf8, 0x19, + 0x9c, 0x8e, 0x05, 0xdf, 0x54, 0x1e, 0x3f, 0x20, 0x18, 0x0d, 0x2d, 0x7e, 0xdc, 0x81, 0x4b, 0xdb, + 0x35, 0x45, 0xea, 0x4c, 0x8f, 0xd6, 0x02, 0xd4, 0x12, 0x03, 0x75, 0x16, 0x67, 0x62, 0x41, 0x45, + 0x6e, 0xaa, 0xd6, 0x66, 0xe2, 0xaf, 0x10, 0x24, 0xc2, 0x77, 0x1c, 0xee, 0x2d, 0x77, 0xa3, 0x83, + 0x72, 0xaf, 0xe6, 0x02, 0xeb, 0x3c, 0xc3, 0x7a, 0x02, 0x4b, 0xdd, 0xb1, 0x66, 0x57, 0x1f, 0x3c, + 0x4b, 0xa3, 0x87, 0xcf, 0xd2, 0xe8, 0xcf, 0x67, 0x69, 0x74, 0xff, 0x79, 0xba, 0xef, 0xe1, 0xf3, + 0x74, 0xdf, 0xef, 0xcf, 0xd3, 0x7d, 0xb7, 0x32, 0xdd, 0xa5, 0xf8, 0x56, 0x33, 0x30, 0x53, 0xe5, + 0xc6, 0x10, 0x53, 0x35, 0x8b, 0xff, 0x04, 0x00, 0x00, 0xff, 0xff, 0x20, 0xe7, 0xf0, 0x73, 0x0c, + 0x14, 0x00, 0x00, } // Reference imports to suppress errors if they are not otherwise used. @@ -2088,6 +2157,51 @@ func (m *QueryBlockRequest) MarshalToSizedBuffer(dAtA []byte) (int, error) { return len(dAtA) - i, nil } +func (m *BlockResponse) 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 *BlockResponse) MarshalTo(dAtA []byte) (int, error) { + size := m.Size() + return m.MarshalToSizedBuffer(dAtA[:size]) +} + +func (m *BlockResponse) MarshalToSizedBuffer(dAtA []byte) (int, error) { + i := len(dAtA) + _ = i + var l int + _ = l + if m.Finalized { + i-- + if m.Finalized { + dAtA[i] = 1 + } else { + dAtA[i] = 0 + } + i-- + dAtA[i] = 0x18 + } + if len(m.AppHash) > 0 { + i -= len(m.AppHash) + copy(dAtA[i:], m.AppHash) + i = encodeVarintQuery(dAtA, i, uint64(len(m.AppHash))) + i-- + dAtA[i] = 0x12 + } + if m.Height != 0 { + i = encodeVarintQuery(dAtA, i, uint64(m.Height)) + i-- + dAtA[i] = 0x8 + } + return len(dAtA) - i, nil +} + func (m *QueryBlockResponse) Marshal() (dAtA []byte, err error) { size := m.Size() dAtA = make([]byte, size) @@ -2774,6 +2888,25 @@ func (m *QueryBlockRequest) Size() (n int) { return n } +func (m *BlockResponse) Size() (n int) { + if m == nil { + return 0 + } + var l int + _ = l + if m.Height != 0 { + n += 1 + sovQuery(uint64(m.Height)) + } + l = len(m.AppHash) + if l > 0 { + n += 1 + l + sovQuery(uint64(l)) + } + if m.Finalized { + n += 2 + } + return n +} + func (m *QueryBlockResponse) Size() (n int) { if m == nil { return 0 @@ -3956,6 +4089,129 @@ func (m *QueryBlockRequest) Unmarshal(dAtA []byte) error { } return nil } +func (m *BlockResponse) 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 ErrIntOverflowQuery + } + 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: BlockResponse: wiretype end group for non-group") + } + if fieldNum <= 0 { + return fmt.Errorf("proto: BlockResponse: illegal tag %d (wire type %d)", fieldNum, wire) + } + switch fieldNum { + case 1: + if wireType != 0 { + return fmt.Errorf("proto: wrong wireType = %d for field Height", wireType) + } + m.Height = 0 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowQuery + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + m.Height |= uint64(b&0x7F) << shift + if b < 0x80 { + break + } + } + case 2: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field AppHash", wireType) + } + var byteLen int + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowQuery + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + byteLen |= int(b&0x7F) << shift + if b < 0x80 { + break + } + } + if byteLen < 0 { + return ErrInvalidLengthQuery + } + postIndex := iNdEx + byteLen + if postIndex < 0 { + return ErrInvalidLengthQuery + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + m.AppHash = append(m.AppHash[:0], dAtA[iNdEx:postIndex]...) + if m.AppHash == nil { + m.AppHash = []byte{} + } + iNdEx = postIndex + case 3: + if wireType != 0 { + return fmt.Errorf("proto: wrong wireType = %d for field Finalized", wireType) + } + var v int + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowQuery + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + v |= int(b&0x7F) << shift + if b < 0x80 { + break + } + } + m.Finalized = bool(v != 0) + default: + iNdEx = preIndex + skippy, err := skipQuery(dAtA[iNdEx:]) + if err != nil { + return err + } + if (skippy < 0) || (iNdEx+skippy) < 0 { + return ErrInvalidLengthQuery + } + if (iNdEx + skippy) > l { + return io.ErrUnexpectedEOF + } + iNdEx += skippy + } + } + + if iNdEx > l { + return io.ErrUnexpectedEOF + } + return nil +} func (m *QueryBlockResponse) Unmarshal(dAtA []byte) error { l := len(dAtA) iNdEx := 0 @@ -4015,7 +4271,7 @@ func (m *QueryBlockResponse) Unmarshal(dAtA []byte) error { return io.ErrUnexpectedEOF } if m.Block == nil { - m.Block = &IndexedBlock{} + m.Block = &BlockResponse{} } if err := m.Block.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { return err @@ -4205,7 +4461,7 @@ func (m *QueryListBlocksResponse) Unmarshal(dAtA []byte) error { if postIndex > l { return io.ErrUnexpectedEOF } - m.Blocks = append(m.Blocks, &IndexedBlock{}) + m.Blocks = append(m.Blocks, &BlockResponse{}) if err := m.Blocks[len(m.Blocks)-1].Unmarshal(dAtA[iNdEx:postIndex]); err != nil { return err } From d1132da9384f4c8bf173a5d18866ab2107199187 Mon Sep 17 00:00:00 2001 From: Sam Ricotta Date: Thu, 17 Oct 2024 14:22:54 +0300 Subject: [PATCH 2/5] Update CHANGELOG.md --- CHANGELOG.md | 1 + 1 file changed, 1 insertion(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index adfdb24bf..272d93429 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -53,6 +53,7 @@ to total bonded sat * [#201](https://github.com/babylonlabs-io/babylon/pull/201) Adjusted handling of `ValidatorWithBlsKey` in checkpoint keeper queries to improve API security. * [#202](https://github.com/babylonlabs-io/babylon/pull/202) Adjusted handling of `FinalityProviderWithMeta` in btcstaking keeper queries to improve API security. * [#203](https://github.com/babylonlabs-io/babylon/pull/203) Adjusted handling of `RewardGauge` in incentive keeper queries to improve API security. +* [#209](https://github.com/babylonlabs-io/babylon/pull/209) Adjusted handling of `IndexedBlock` in finality keeper queries to improve API security. ### State Machine Breaking From 0d78758aa2edb51590f1e681e1bfc69a217c8a9b Mon Sep 17 00:00:00 2001 From: Sam Ricotta Date: Fri, 25 Oct 2024 12:09:26 +0300 Subject: [PATCH 3/5] Update query.pb.go --- x/finality/types/query.pb.go | 317 +++++++++++++---------------------- 1 file changed, 112 insertions(+), 205 deletions(-) diff --git a/x/finality/types/query.pb.go b/x/finality/types/query.pb.go index d3a8e570c..db92ef2ea 100644 --- a/x/finality/types/query.pb.go +++ b/x/finality/types/query.pb.go @@ -868,7 +868,7 @@ func (m *EvidenceResponse) Reset() { *m = EvidenceResponse{} } func (m *EvidenceResponse) String() string { return proto.CompactTextString(m) } func (*EvidenceResponse) ProtoMessage() {} func (*EvidenceResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_32bddab77af6fdae, []int{14} + return fileDescriptor_32bddab77af6fdae, []int{15} } func (m *EvidenceResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -935,7 +935,7 @@ func (m *QueryEvidenceResponse) Reset() { *m = QueryEvidenceResponse{} } func (m *QueryEvidenceResponse) String() string { return proto.CompactTextString(m) } func (*QueryEvidenceResponse) ProtoMessage() {} func (*QueryEvidenceResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_32bddab77af6fdae, []int{15} + return fileDescriptor_32bddab77af6fdae, []int{16} } func (m *QueryEvidenceResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -985,7 +985,7 @@ func (m *QueryListEvidencesRequest) Reset() { *m = QueryListEvidencesReq func (m *QueryListEvidencesRequest) String() string { return proto.CompactTextString(m) } func (*QueryListEvidencesRequest) ProtoMessage() {} func (*QueryListEvidencesRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_32bddab77af6fdae, []int{16} + return fileDescriptor_32bddab77af6fdae, []int{17} } func (m *QueryListEvidencesRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1041,7 +1041,7 @@ func (m *QueryListEvidencesResponse) Reset() { *m = QueryListEvidencesRe func (m *QueryListEvidencesResponse) String() string { return proto.CompactTextString(m) } func (*QueryListEvidencesResponse) ProtoMessage() {} func (*QueryListEvidencesResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_32bddab77af6fdae, []int{17} + return fileDescriptor_32bddab77af6fdae, []int{18} } func (m *QueryListEvidencesResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1096,7 +1096,7 @@ func (m *QuerySigningInfoRequest) Reset() { *m = QuerySigningInfoRequest func (m *QuerySigningInfoRequest) String() string { return proto.CompactTextString(m) } func (*QuerySigningInfoRequest) ProtoMessage() {} func (*QuerySigningInfoRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_32bddab77af6fdae, []int{18} + return fileDescriptor_32bddab77af6fdae, []int{19} } func (m *QuerySigningInfoRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1150,7 +1150,7 @@ func (m *SigningInfoResponse) Reset() { *m = SigningInfoResponse{} } func (m *SigningInfoResponse) String() string { return proto.CompactTextString(m) } func (*SigningInfoResponse) ProtoMessage() {} func (*SigningInfoResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_32bddab77af6fdae, []int{19} + return fileDescriptor_32bddab77af6fdae, []int{20} } func (m *SigningInfoResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1217,7 +1217,7 @@ func (m *QuerySigningInfoResponse) Reset() { *m = QuerySigningInfoRespon func (m *QuerySigningInfoResponse) String() string { return proto.CompactTextString(m) } func (*QuerySigningInfoResponse) ProtoMessage() {} func (*QuerySigningInfoResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_32bddab77af6fdae, []int{20} + return fileDescriptor_32bddab77af6fdae, []int{21} } func (m *QuerySigningInfoResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1263,7 +1263,7 @@ func (m *QuerySigningInfosRequest) Reset() { *m = QuerySigningInfosReque func (m *QuerySigningInfosRequest) String() string { return proto.CompactTextString(m) } func (*QuerySigningInfosRequest) ProtoMessage() {} func (*QuerySigningInfosRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_32bddab77af6fdae, []int{21} + return fileDescriptor_32bddab77af6fdae, []int{22} } func (m *QuerySigningInfosRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1311,7 +1311,7 @@ func (m *QuerySigningInfosResponse) Reset() { *m = QuerySigningInfosResp func (m *QuerySigningInfosResponse) String() string { return proto.CompactTextString(m) } func (*QuerySigningInfosResponse) ProtoMessage() {} func (*QuerySigningInfosResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_32bddab77af6fdae, []int{22} + return fileDescriptor_32bddab77af6fdae, []int{23} } func (m *QuerySigningInfosResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1387,202 +1387,109 @@ func init() { func init() { proto.RegisterFile("babylon/finality/v1/query.proto", fileDescriptor_32bddab77af6fdae) } var fileDescriptor_32bddab77af6fdae = []byte{ - // 1491 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xbc, 0x57, 0xdf, 0x6f, 0x14, 0xd5, - 0x17, 0xef, 0x6d, 0x69, 0x69, 0x4f, 0x77, 0xbf, 0xdf, 0xf6, 0xb6, 0x60, 0x59, 0x60, 0x5b, 0x06, - 0x2c, 0xb5, 0xc0, 0x8c, 0xdd, 0x22, 0x81, 0xaa, 0x01, 0x16, 0xc1, 0x36, 0xd6, 0x75, 0x99, 0x22, - 0x89, 0xbc, 0x8c, 0x33, 0xdb, 0xdb, 0xdd, 0xb1, 0x3b, 0x73, 0x87, 0x9d, 0x99, 0x4d, 0x57, 0x42, - 0x62, 0x4c, 0xe4, 0xc1, 0x68, 0x42, 0xe2, 0x8b, 0x3e, 0x68, 0xa2, 0x31, 0xc6, 0xc4, 0x17, 0x5f, - 0xfd, 0x0f, 0x78, 0x24, 0xe8, 0x83, 0x21, 0x01, 0x0d, 0x98, 0xf8, 0x6f, 0x98, 0xbd, 0xf7, 0xce, - 0xee, 0xcc, 0x76, 0xf6, 0x47, 0x6b, 0xe3, 0x4b, 0xd3, 0xb9, 0x73, 0x7e, 0x7c, 0xce, 0x39, 0x9f, - 0x39, 0xf7, 0xb3, 0x30, 0x6d, 0xe8, 0x46, 0xad, 0x4c, 0x6d, 0x65, 0xc3, 0xb4, 0xf5, 0xb2, 0xe9, - 0xd5, 0x94, 0xea, 0x82, 0x72, 0xdb, 0x27, 0x95, 0x9a, 0xec, 0x54, 0xa8, 0x47, 0xf1, 0x84, 0x30, - 0x90, 0x03, 0x03, 0xb9, 0xba, 0x90, 0x9a, 0x2c, 0xd2, 0x22, 0x65, 0xef, 0x95, 0xfa, 0x7f, 0xdc, - 0x34, 0x75, 0xa4, 0x48, 0x69, 0xb1, 0x4c, 0x14, 0xdd, 0x31, 0x15, 0xdd, 0xb6, 0xa9, 0xa7, 0x7b, - 0x26, 0xb5, 0x5d, 0xf1, 0x76, 0xbe, 0x40, 0x5d, 0x8b, 0xba, 0x8a, 0xa1, 0xbb, 0x84, 0x67, 0x50, - 0xaa, 0x0b, 0x06, 0xf1, 0xf4, 0x05, 0xc5, 0xd1, 0x8b, 0xa6, 0xcd, 0x8c, 0x85, 0xed, 0x4c, 0x1c, - 0x2a, 0x47, 0xaf, 0xe8, 0x56, 0x10, 0x4d, 0x8a, 0xb3, 0x68, 0x40, 0xe4, 0x36, 0xd3, 0x02, 0x0f, - 0x7b, 0x32, 0xfc, 0x0d, 0xc5, 0x33, 0x2d, 0xe2, 0x7a, 0xba, 0xe5, 0x08, 0x83, 0x71, 0xdd, 0x32, - 0x6d, 0xaa, 0xb0, 0xbf, 0xfc, 0x48, 0x9a, 0x04, 0x7c, 0xbd, 0x8e, 0x2d, 0xcf, 0x92, 0xa9, 0xe4, - 0xb6, 0x4f, 0x5c, 0x4f, 0xca, 0xc3, 0x44, 0xe4, 0xd4, 0x75, 0xa8, 0xed, 0x12, 0x7c, 0x01, 0x86, - 0x38, 0xa8, 0x29, 0x34, 0x83, 0xe6, 0x46, 0x33, 0x87, 0xe5, 0x98, 0x66, 0xc9, 0xdc, 0x29, 0xbb, - 0xef, 0xc1, 0xd3, 0xe9, 0x3e, 0x55, 0x38, 0x48, 0x9f, 0x23, 0x98, 0x61, 0x21, 0x57, 0x4d, 0xd7, - 0xcb, 0xfb, 0x46, 0xd9, 0x2c, 0xa8, 0xba, 0xbd, 0x4e, 0x2d, 0x9b, 0xb8, 0x41, 0x5a, 0x7c, 0x0c, - 0x92, 0x1b, 0x8e, 0x66, 0x78, 0x05, 0xcd, 0xd9, 0xd4, 0x4a, 0x64, 0x8b, 0xa5, 0x19, 0x51, 0x61, - 0xc3, 0xc9, 0x7a, 0x85, 0xfc, 0xe6, 0x32, 0xd9, 0xc2, 0xd7, 0x00, 0x9a, 0xdd, 0x9b, 0xea, 0x67, - 0x30, 0x66, 0x65, 0xde, 0x6a, 0xb9, 0xde, 0x6a, 0x99, 0x0f, 0x53, 0xb4, 0x5a, 0xce, 0xeb, 0x45, - 0x22, 0xc2, 0xab, 0x21, 0x4f, 0xe9, 0x51, 0x3f, 0x1c, 0xeb, 0x80, 0x47, 0x14, 0xfc, 0x3d, 0x82, - 0x84, 0xe3, 0x1b, 0x5a, 0x45, 0xb7, 0xd7, 0x35, 0x4b, 0x77, 0xa6, 0xd0, 0xcc, 0xc0, 0xdc, 0x68, - 0xe6, 0x5a, 0x6c, 0xdd, 0x5d, 0xc3, 0xc9, 0x79, 0xdf, 0xa8, 0x9f, 0xbe, 0xad, 0x3b, 0x57, 0x6d, - 0xaf, 0x52, 0xcb, 0x2e, 0x3d, 0x7e, 0x3a, 0x7d, 0xae, 0x68, 0x7a, 0x25, 0xdf, 0x90, 0x0b, 0xd4, - 0x52, 0x44, 0xd4, 0xb2, 0x6e, 0xb8, 0x67, 0x4c, 0x1a, 0x3c, 0x2a, 0x5e, 0xcd, 0x21, 0xae, 0xbc, - 0x56, 0x28, 0xd9, 0xb4, 0x52, 0x11, 0x31, 0x54, 0x70, 0x1a, 0xc1, 0xf0, 0x9b, 0x31, 0x4d, 0x39, - 0xd9, 0xb5, 0x29, 0x1c, 0x54, 0xb8, 0x2b, 0xa9, 0xd7, 0xe1, 0xff, 0x2d, 0x18, 0xf1, 0x18, 0x0c, - 0x6c, 0x92, 0x1a, 0x9b, 0xc4, 0x3e, 0xb5, 0xfe, 0x2f, 0x9e, 0x84, 0xc1, 0xaa, 0x5e, 0xf6, 0x09, - 0x4b, 0x94, 0x50, 0xf9, 0xc3, 0x52, 0xff, 0x79, 0x24, 0x55, 0xe1, 0x80, 0x70, 0xbf, 0x42, 0x2d, - 0xcb, 0xf4, 0x1a, 0x7d, 0x9c, 0x81, 0x84, 0xed, 0x5b, 0x5a, 0xd0, 0x4a, 0x11, 0x0d, 0x6c, 0xdf, - 0x12, 0xf6, 0x38, 0x0d, 0x50, 0x60, 0x3e, 0x16, 0xb1, 0x3d, 0x11, 0x39, 0x74, 0x82, 0x0f, 0xc3, - 0x08, 0x71, 0x68, 0xa1, 0xa4, 0xd9, 0xbe, 0x35, 0x35, 0xc0, 0xdc, 0x87, 0xd9, 0x41, 0xce, 0xb7, - 0xa4, 0x4f, 0x11, 0x1c, 0x0d, 0x77, 0x3f, 0x8c, 0xe0, 0x3f, 0x67, 0xd6, 0x6f, 0xfd, 0x90, 0x6e, - 0x07, 0x46, 0xb4, 0x63, 0x0b, 0x26, 0x1a, 0xac, 0xe2, 0x35, 0x86, 0xc8, 0xb5, 0xd2, 0x95, 0x5c, - 0xdb, 0x23, 0xca, 0x91, 0xd3, 0x60, 0x76, 0xea, 0x98, 0xd3, 0x72, 0xbc, 0x77, 0x4c, 0xa1, 0x2d, - 0xa3, 0xee, 0xc0, 0x97, 0x4b, 0x61, 0xbe, 0x8c, 0x66, 0xe6, 0xe3, 0x97, 0x46, 0x5c, 0x59, 0x61, - 0x6e, 0x9d, 0x82, 0x71, 0xd6, 0x83, 0x6c, 0x99, 0x16, 0x36, 0x83, 0xb1, 0x1e, 0x84, 0xa1, 0x12, - 0x31, 0x8b, 0x25, 0x4f, 0xe4, 0x13, 0x4f, 0xd2, 0xfb, 0x90, 0x14, 0x76, 0xa2, 0xe3, 0x6d, 0x0c, - 0xf1, 0x21, 0x18, 0xd6, 0x1d, 0x47, 0x2b, 0xe9, 0x6e, 0x49, 0x90, 0x6e, 0xbf, 0xee, 0x38, 0xcb, - 0xba, 0x5b, 0xc2, 0x47, 0x60, 0x84, 0x03, 0xfc, 0x90, 0xac, 0x33, 0xc6, 0x0d, 0xab, 0xcd, 0x03, - 0x29, 0x27, 0xf6, 0x66, 0x34, 0xcd, 0x79, 0x18, 0x34, 0xea, 0x07, 0x62, 0x3f, 0x4a, 0xb1, 0xa5, - 0x46, 0x5c, 0x54, 0xee, 0x20, 0x7d, 0x8b, 0xe0, 0x60, 0x63, 0xc6, 0xcc, 0xa2, 0xb1, 0x15, 0x2f, - 0xc2, 0x90, 0xeb, 0xe9, 0x9e, 0xcf, 0xb7, 0xee, 0xff, 0x32, 0x27, 0xdb, 0x12, 0xc4, 0x24, 0xeb, - 0xcc, 0x75, 0x8d, 0x99, 0xab, 0xc2, 0x6d, 0xcf, 0x98, 0xfd, 0x0d, 0x82, 0x17, 0xb6, 0x61, 0x14, - 0x95, 0x2f, 0xc1, 0x10, 0x2b, 0xc4, 0x15, 0x2c, 0xee, 0xa5, 0x74, 0xe1, 0xb1, 0x67, 0xa4, 0x94, - 0x16, 0xe1, 0x10, 0xc3, 0x77, 0x93, 0x7a, 0xc4, 0xbd, 0xec, 0x2d, 0xb3, 0x19, 0x77, 0xe3, 0x0a, - 0x85, 0x54, 0x9c, 0x93, 0xa8, 0xeb, 0x3a, 0xec, 0xe7, 0x5b, 0x83, 0x17, 0x96, 0xc8, 0x9e, 0x7f, - 0xfc, 0x74, 0xfa, 0x6c, 0xaf, 0x3b, 0x3b, 0xbb, 0x92, 0x5f, 0x3c, 0xfb, 0x72, 0xde, 0x37, 0xde, - 0x22, 0x35, 0x75, 0xc8, 0xa8, 0xaf, 0x1a, 0x57, 0xba, 0x00, 0x93, 0x2c, 0xe1, 0xd5, 0xaa, 0xb9, - 0x4e, 0xec, 0x02, 0xe9, 0x7d, 0x47, 0x49, 0x2a, 0x1c, 0x68, 0x71, 0x6d, 0xdc, 0xcc, 0xc3, 0x44, - 0x9c, 0x09, 0xee, 0x1d, 0x8d, 0x1d, 0x40, 0xc3, 0xb1, 0x61, 0x2e, 0xdd, 0x43, 0xa2, 0x6b, 0xf5, - 0xa9, 0x06, 0xef, 0x43, 0x57, 0x72, 0xc2, 0xf5, 0xf4, 0x8a, 0xa7, 0x45, 0x7a, 0x37, 0xca, 0xce, - 0x78, 0xab, 0xf6, 0x8c, 0x5e, 0xdf, 0x21, 0x31, 0x89, 0x16, 0x20, 0xa2, 0xc4, 0x57, 0x61, 0x24, - 0xc0, 0x1c, 0x90, 0xac, 0x4b, 0x8d, 0x4d, 0xfb, 0xbd, 0xa3, 0xd8, 0x6b, 0xe2, 0x13, 0x58, 0x33, - 0x8b, 0xb6, 0x69, 0x17, 0x57, 0xec, 0x0d, 0xba, 0x83, 0xf9, 0x3d, 0x41, 0x30, 0x11, 0xf1, 0x14, - 0xb5, 0xf5, 0x70, 0x3d, 0xb5, 0x0e, 0xa2, 0x5e, 0xc3, 0x40, 0x74, 0x10, 0x19, 0x38, 0x60, 0x99, - 0xae, 0x4b, 0xd6, 0x35, 0xfe, 0x61, 0x69, 0x05, 0xea, 0xdb, 0x1e, 0xa9, 0xb0, 0xed, 0x35, 0xa0, - 0x4e, 0xf0, 0x97, 0xfc, 0xc3, 0xbd, 0xc2, 0x5f, 0xe1, 0x55, 0x48, 0x7c, 0xa0, 0x9b, 0x65, 0xb2, - 0xae, 0xf9, 0xb6, 0x67, 0x96, 0xa7, 0xf6, 0xb1, 0xd6, 0xa4, 0x64, 0x2e, 0x25, 0xe5, 0x40, 0x4a, - 0xca, 0x37, 0x02, 0x29, 0x99, 0x4d, 0xd6, 0x75, 0xdd, 0xfd, 0x3f, 0xa6, 0xd1, 0x8f, 0x7f, 0xff, - 0x3c, 0x8f, 0xd4, 0x51, 0xee, 0xfe, 0x6e, 0xdd, 0x5b, 0xb2, 0x60, 0x6a, 0x7b, 0x77, 0x1a, 0x5f, - 0x52, 0xc2, 0xe5, 0xc7, 0x9a, 0x69, 0x6f, 0x50, 0x41, 0xd3, 0xb9, 0xd8, 0x11, 0xc6, 0xf8, 0x0b, - 0x3d, 0x39, 0xea, 0x36, 0x5f, 0x49, 0xc6, 0xf6, 0x74, 0x0d, 0xe2, 0x46, 0x59, 0x89, 0x76, 0xcd, - 0xca, 0x5f, 0x82, 0xcf, 0x23, 0x9a, 0x44, 0x14, 0xb5, 0x06, 0xc9, 0x70, 0x51, 0x01, 0x31, 0x77, - 0x5a, 0x55, 0x22, 0x54, 0xd5, 0xde, 0x91, 0x75, 0xfe, 0x22, 0xbf, 0xa4, 0xa2, 0xd7, 0x02, 0x1e, - 0x87, 0x64, 0xee, 0x9d, 0x9c, 0x76, 0x6d, 0x25, 0x77, 0x79, 0x75, 0xe5, 0xd6, 0xd5, 0x37, 0xc6, - 0xfa, 0x70, 0x12, 0x46, 0x9a, 0x8f, 0x08, 0xef, 0x87, 0x81, 0xcb, 0xb9, 0xf7, 0xc6, 0xfa, 0x33, - 0x9f, 0x24, 0x61, 0x90, 0x15, 0x8f, 0x3f, 0x42, 0x30, 0xc4, 0x85, 0x3d, 0x6e, 0x7f, 0xff, 0x44, - 0x7f, 0x45, 0xa4, 0xe6, 0xba, 0x1b, 0x72, 0xd0, 0xd2, 0xf1, 0x8f, 0x7f, 0xfd, 0xeb, 0x8b, 0xfe, - 0xa3, 0xf8, 0xb0, 0xd2, 0xfe, 0x87, 0x10, 0x7e, 0x82, 0x60, 0x32, 0x4e, 0x5e, 0xe3, 0x57, 0x76, - 0x2a, 0xc7, 0x39, 0xbc, 0x73, 0xbb, 0x53, 0xf1, 0xd2, 0x4d, 0x06, 0x36, 0x8f, 0x73, 0x4a, 0xa7, - 0xdf, 0x64, 0x9a, 0x53, 0xa1, 0xf5, 0xf5, 0x53, 0x71, 0x95, 0x3b, 0x91, 0x6f, 0xfb, 0xae, 0xe2, - 0xb0, 0xc8, 0x4c, 0xfe, 0xf1, 0xd0, 0x5a, 0xd9, 0x74, 0x3d, 0xfc, 0x08, 0xc1, 0xf8, 0x36, 0x85, - 0x87, 0x33, 0x3b, 0x92, 0x83, 0xbc, 0xb2, 0xc5, 0x5d, 0x48, 0x48, 0xe9, 0x06, 0x2b, 0x2b, 0x87, - 0x57, 0xff, 0x45, 0x59, 0x11, 0x49, 0xcb, 0x8a, 0xba, 0x87, 0x60, 0x90, 0x91, 0x0f, 0xcf, 0xb6, - 0x07, 0x15, 0xd6, 0x74, 0xa9, 0x93, 0x5d, 0xed, 0x04, 0xe0, 0xd3, 0x0c, 0xf0, 0x2c, 0x3e, 0x11, - 0x0b, 0x98, 0xaf, 0x40, 0xe5, 0x0e, 0x5f, 0x97, 0x77, 0xf1, 0x67, 0x08, 0xa0, 0xa9, 0x5b, 0xf0, - 0xa9, 0xce, 0x2d, 0x8a, 0x28, 0xb0, 0xd4, 0xe9, 0xde, 0x8c, 0x7b, 0x22, 0xb3, 0xd0, 0x3c, 0x5f, - 0x23, 0x48, 0x46, 0x14, 0x07, 0x96, 0xdb, 0x27, 0x89, 0xd3, 0x33, 0x29, 0xa5, 0x67, 0x7b, 0x81, - 0xeb, 0x14, 0xc3, 0xf5, 0x22, 0x3e, 0x1e, 0x8b, 0xab, 0x5a, 0xf7, 0x69, 0xb6, 0xeb, 0x27, 0x04, - 0xc3, 0xc1, 0x45, 0x8a, 0x5f, 0x6a, 0x9f, 0xaa, 0x45, 0xc4, 0xa4, 0xe6, 0x7b, 0x31, 0x15, 0x80, - 0x96, 0x19, 0xa0, 0x2c, 0xbe, 0xb4, 0x5b, 0xc6, 0x05, 0xf7, 0x3b, 0xfe, 0x12, 0x41, 0x32, 0xa2, - 0x1a, 0x3a, 0x75, 0x33, 0x4e, 0xe7, 0x74, 0xea, 0x66, 0xac, 0x1c, 0x91, 0x66, 0x19, 0xf8, 0x19, - 0x9c, 0x8e, 0x05, 0xdf, 0x54, 0x1e, 0x3f, 0x20, 0x18, 0x0d, 0x2d, 0x7e, 0xdc, 0x81, 0x4b, 0xdb, - 0x35, 0x45, 0xea, 0x4c, 0x8f, 0xd6, 0x02, 0xd4, 0x12, 0x03, 0x75, 0x16, 0x67, 0x62, 0x41, 0x45, - 0x6e, 0xaa, 0xd6, 0x66, 0xe2, 0xaf, 0x10, 0x24, 0xc2, 0x77, 0x1c, 0xee, 0x2d, 0x77, 0xa3, 0x83, - 0x72, 0xaf, 0xe6, 0x02, 0xeb, 0x3c, 0xc3, 0x7a, 0x02, 0x4b, 0xdd, 0xb1, 0x66, 0x57, 0x1f, 0x3c, - 0x4b, 0xa3, 0x87, 0xcf, 0xd2, 0xe8, 0xcf, 0x67, 0x69, 0x74, 0xff, 0x79, 0xba, 0xef, 0xe1, 0xf3, - 0x74, 0xdf, 0xef, 0xcf, 0xd3, 0x7d, 0xb7, 0x32, 0xdd, 0xa5, 0xf8, 0x56, 0x33, 0x30, 0x53, 0xe5, - 0xc6, 0x10, 0x53, 0x35, 0x8b, 0xff, 0x04, 0x00, 0x00, 0xff, 0xff, 0x20, 0xe7, 0xf0, 0x73, 0x0c, - 0x14, 0x00, 0x00, - // 1589 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xbc, 0x57, 0xdd, 0x6f, 0xd3, 0x56, - 0x14, 0xef, 0x6d, 0xe9, 0xd7, 0x49, 0x32, 0xda, 0xdb, 0xc2, 0xba, 0x30, 0xd2, 0xd6, 0x40, 0xe9, - 0x0a, 0xd8, 0x6b, 0xca, 0x18, 0xa0, 0x4d, 0xd0, 0xb0, 0x76, 0xad, 0x56, 0x4a, 0x70, 0x01, 0x69, - 0xbc, 0x58, 0x76, 0xea, 0x24, 0x5e, 0x63, 0x5f, 0x13, 0xdb, 0x55, 0x2b, 0x84, 0x34, 0x4d, 0x1a, - 0x0f, 0xd3, 0x26, 0x21, 0xed, 0x65, 0x7b, 0xe0, 0x61, 0xd2, 0x34, 0x4d, 0xdb, 0xcb, 0x5e, 0xf7, - 0x1f, 0xf0, 0x88, 0xd8, 0x1e, 0x26, 0x26, 0xd8, 0x04, 0x93, 0xf6, 0x6f, 0x4c, 0xbe, 0xf7, 0x3a, - 0xb1, 0x53, 0xe7, 0xa3, 0xa5, 0xda, 0x4b, 0x14, 0x5f, 0x9f, 0x8f, 0xdf, 0x39, 0xf7, 0xdc, 0x9f, - 0x7f, 0x17, 0xc6, 0x35, 0x55, 0xdb, 0xae, 0x10, 0x4b, 0x2a, 0x1a, 0x96, 0x5a, 0x31, 0xdc, 0x6d, - 0x69, 0x73, 0x56, 0xba, 0xe3, 0xe9, 0xd5, 0x6d, 0xd1, 0xae, 0x12, 0x97, 0xe0, 0x11, 0x6e, 0x20, - 0x06, 0x06, 0xe2, 0xe6, 0x6c, 0x7a, 0xb4, 0x44, 0x4a, 0x84, 0xbe, 0x97, 0xfc, 0x7f, 0xcc, 0x34, - 0xfd, 0x66, 0x89, 0x90, 0x52, 0x45, 0x97, 0x54, 0xdb, 0x90, 0x54, 0xcb, 0x22, 0xae, 0xea, 0x1a, - 0xc4, 0x72, 0xf8, 0xdb, 0x99, 0x02, 0x71, 0x4c, 0xe2, 0x48, 0x9a, 0xea, 0xe8, 0x2c, 0x83, 0xb4, - 0x39, 0xab, 0xe9, 0xae, 0x3a, 0x2b, 0xd9, 0x6a, 0xc9, 0xb0, 0xa8, 0x31, 0xb7, 0x9d, 0x88, 0x43, - 0x65, 0xab, 0x55, 0xd5, 0x0c, 0xa2, 0x09, 0x71, 0x16, 0x35, 0x88, 0xcc, 0x66, 0x9c, 0xe3, 0xa1, - 0x4f, 0x9a, 0x57, 0x94, 0x5c, 0xc3, 0xd4, 0x1d, 0x57, 0x35, 0x6d, 0x6e, 0x30, 0xac, 0x9a, 0x86, - 0x45, 0x24, 0xfa, 0xcb, 0x96, 0x84, 0x51, 0xc0, 0xd7, 0x7d, 0x6c, 0x79, 0x9a, 0x4c, 0xd6, 0xef, - 0x78, 0xba, 0xe3, 0x0a, 0x79, 0x18, 0x89, 0xac, 0x3a, 0x36, 0xb1, 0x1c, 0x1d, 0x5f, 0x80, 0x3e, - 0x06, 0x6a, 0x0c, 0x4d, 0xa0, 0xe9, 0x44, 0xf6, 0x88, 0x18, 0xd3, 0x2c, 0x91, 0x39, 0xe5, 0x0e, - 0x3c, 0x7a, 0x3e, 0xde, 0x25, 0x73, 0x07, 0xe1, 0x2b, 0x04, 0x13, 0x34, 0xe4, 0x8a, 0xe1, 0xb8, - 0x79, 0x4f, 0xab, 0x18, 0x05, 0x59, 0xb5, 0xd6, 0x89, 0x69, 0xe9, 0x4e, 0x90, 0x16, 0x4f, 0x42, - 0xaa, 0x68, 0x2b, 0x9a, 0x5b, 0x50, 0xec, 0x0d, 0xa5, 0xac, 0x6f, 0xd1, 0x34, 0x83, 0x32, 0x14, - 0xed, 0x9c, 0x5b, 0xc8, 0x6f, 0x2c, 0xe9, 0x5b, 0x78, 0x11, 0xa0, 0xde, 0xbd, 0xb1, 0x6e, 0x0a, - 0x63, 0x4a, 0x64, 0xad, 0x16, 0xfd, 0x56, 0x8b, 0x6c, 0x33, 0x79, 0xab, 0xc5, 0xbc, 0x5a, 0xd2, - 0x79, 0x78, 0x39, 0xe4, 0x29, 0x3c, 0xe9, 0x86, 0xc9, 0x16, 0x78, 0x78, 0xc1, 0xdf, 0x23, 0x48, - 0xda, 0x9e, 0xa6, 0x54, 0x55, 0x6b, 0x5d, 0x31, 0x55, 0x7b, 0x0c, 0x4d, 0xf4, 0x4c, 0x27, 0xb2, - 0x8b, 0xb1, 0x75, 0xb7, 0x0d, 0x27, 0xe6, 0x3d, 0xcd, 0x5f, 0xbd, 0xaa, 0xda, 0x0b, 0x96, 0x5b, - 0xdd, 0xce, 0x5d, 0x7c, 0xfa, 0x7c, 0xfc, 0x5c, 0xc9, 0x70, 0xcb, 0x9e, 0x26, 0x16, 0x88, 0x29, - 0xf1, 0xa8, 0x15, 0x55, 0x73, 0xce, 0x18, 0x24, 0x78, 0x94, 0xdc, 0x6d, 0x5b, 0x77, 0xc4, 0xb5, - 0x42, 0xd9, 0x22, 0xd5, 0x2a, 0x8f, 0x21, 0x83, 0x5d, 0x0b, 0x86, 0x3f, 0x8c, 0x69, 0xca, 0xc9, - 0xb6, 0x4d, 0x61, 0xa0, 0xc2, 0x5d, 0x49, 0xbf, 0x0f, 0x07, 0x1b, 0x30, 0xe2, 0x21, 0xe8, 0xd9, - 0xd0, 0xb7, 0xe9, 0x4e, 0x1c, 0x90, 0xfd, 0xbf, 0x78, 0x14, 0x7a, 0x37, 0xd5, 0x8a, 0xa7, 0xd3, - 0x44, 0x49, 0x99, 0x3d, 0x5c, 0xec, 0x3e, 0x8f, 0x84, 0x4d, 0x38, 0xc4, 0xdd, 0xaf, 0x10, 0xd3, - 0x34, 0xdc, 0x5a, 0x1f, 0x27, 0x20, 0x69, 0x79, 0xa6, 0x12, 0xb4, 0x92, 0x47, 0x03, 0xcb, 0x33, - 0xb9, 0x3d, 0xce, 0x00, 0x14, 0xa8, 0x8f, 0xa9, 0x5b, 0x2e, 0x8f, 0x1c, 0x5a, 0xc1, 0x47, 0x60, - 0x50, 0xb7, 0x49, 0xa1, 0xac, 0x58, 0x9e, 0x39, 0xd6, 0x43, 0xdd, 0x07, 0xe8, 0xc2, 0xaa, 0x67, - 0x0a, 0x5f, 0x20, 0x38, 0x1a, 0xee, 0x7e, 0x18, 0xc1, 0xff, 0x3e, 0x59, 0xbf, 0x77, 0x43, 0xa6, - 0x19, 0x18, 0xde, 0x8e, 0x2d, 0x18, 0xa9, 0x4d, 0x15, 0xab, 0x31, 0x34, 0x5c, 0xcb, 0x6d, 0x87, - 0x6b, 0x67, 0x44, 0x31, 0xb2, 0x1a, 0xec, 0x9d, 0x3c, 0x64, 0x37, 0x2c, 0xef, 0xdf, 0xa4, 0x90, - 0x86, 0xad, 0x6e, 0x31, 0x2f, 0x97, 0xc3, 0xf3, 0x92, 0xc8, 0xce, 0xc4, 0x93, 0x46, 0x5c, 0x59, - 0xe1, 0xd9, 0x3a, 0x05, 0xc3, 0xb4, 0x07, 0xb9, 0x0a, 0x29, 0x6c, 0x04, 0xdb, 0x7a, 0x18, 0xfa, - 0xca, 0xba, 0x51, 0x2a, 0xbb, 0x3c, 0x1f, 0x7f, 0x12, 0xae, 0x72, 0x56, 0xe3, 0xc6, 0xbc, 0xed, - 0xef, 0x42, 0xaf, 0xe6, 0x2f, 0x70, 0xf6, 0x9a, 0x8c, 0x05, 0xb2, 0x6c, 0xad, 0xeb, 0x5b, 0xfa, - 0x3a, 0xf3, 0x64, 0xf6, 0xc2, 0x77, 0x08, 0x0e, 0xd7, 0x36, 0x80, 0xbe, 0xa9, 0x51, 0xd6, 0x25, - 0xe8, 0x73, 0x5c, 0xd5, 0xf5, 0x18, 0x25, 0xbe, 0x96, 0x3d, 0xd9, 0x74, 0xf7, 0x0c, 0x1e, 0x74, - 0x8d, 0x9a, 0xcb, 0xdc, 0x6d, 0xdf, 0xc6, 0xee, 0x21, 0x82, 0xd7, 0x77, 0x60, 0xac, 0xf3, 0x36, - 0x2d, 0xc4, 0xe1, 0x23, 0xd6, 0x41, 0xe5, 0xdc, 0x61, 0xdf, 0x06, 0x46, 0x98, 0x83, 0x37, 0x28, - 0xbc, 0x5b, 0xc4, 0xd5, 0x9d, 0x79, 0x77, 0x89, 0x6e, 0x54, 0xbb, 0x7d, 0x24, 0x90, 0x8e, 0x73, - 0xe2, 0x65, 0x5d, 0x87, 0x7e, 0x76, 0xa2, 0x59, 0x5d, 0xc9, 0xdc, 0xf9, 0xa7, 0xcf, 0xc7, 0xcf, - 0x76, 0xca, 0xa7, 0xb9, 0xe5, 0xfc, 0xdc, 0xd9, 0xb7, 0xf3, 0x9e, 0xf6, 0x91, 0xbe, 0x2d, 0xf7, - 0x69, 0x3e, 0x0d, 0x38, 0xc2, 0x05, 0x18, 0xa5, 0x09, 0x17, 0x36, 0x8d, 0x75, 0xdd, 0x2a, 0xe8, - 0x9d, 0xf3, 0x87, 0xf0, 0x67, 0x0f, 0x0c, 0xd5, 0xdd, 0x38, 0xc4, 0x0e, 0x78, 0x67, 0x12, 0x92, - 0xb4, 0xd7, 0x0a, 0xef, 0x40, 0x37, 0xed, 0x40, 0x82, 0xae, 0xb1, 0x82, 0xf1, 0x4d, 0x18, 0xa8, - 0x51, 0xa7, 0xcf, 0x7d, 0xc9, 0x57, 0xfa, 0x72, 0xf4, 0x73, 0x56, 0xc0, 0xa7, 0x01, 0x17, 0x54, - 0x8b, 0x58, 0x46, 0x41, 0xad, 0x28, 0xaa, 0x6d, 0x2b, 0x65, 0xd5, 0x29, 0x8f, 0x1d, 0xa0, 0xdc, - 0x3b, 0x54, 0x7b, 0x33, 0x6f, 0xdb, 0x4b, 0xaa, 0x53, 0xc6, 0x02, 0xa4, 0x8a, 0xa4, 0xba, 0x51, - 0x37, 0xec, 0xa5, 0x86, 0x09, 0x7f, 0x31, 0xb0, 0xb1, 0xe1, 0x70, 0x3d, 0x62, 0x30, 0x5b, 0x8a, - 0x63, 0x94, 0xc6, 0xfa, 0xf6, 0x0c, 0x7b, 0xe1, 0xda, 0x8d, 0xb5, 0x35, 0xa3, 0x24, 0x8f, 0xd6, - 0x22, 0x2f, 0xf2, 0xc0, 0x6b, 0x46, 0x09, 0x17, 0x61, 0x98, 0xa2, 0x8a, 0x24, 0xeb, 0x7f, 0xe5, - 0x64, 0x07, 0xfd, 0xa0, 0xa1, 0x3c, 0xc2, 0x6d, 0x38, 0xd4, 0x30, 0x18, 0x7c, 0x87, 0xe7, 0x61, - 0x40, 0xe7, 0x6b, 0x9c, 0x57, 0x4e, 0xc4, 0x9e, 0xae, 0x46, 0x47, 0xb9, 0xe6, 0x26, 0xdc, 0x47, - 0xfc, 0x6c, 0xf8, 0x47, 0x37, 0xb0, 0x0b, 0x89, 0xa2, 0xa4, 0xe3, 0xaa, 0x55, 0x57, 0x89, 0x9c, - 0x90, 0x04, 0x5d, 0xe3, 0xf3, 0xb1, 0x5f, 0x1c, 0xf2, 0x13, 0xe2, 0xe7, 0xad, 0x01, 0x08, 0x2f, - 0xf5, 0x0a, 0x0c, 0x06, 0x98, 0x03, 0x26, 0xe9, 0xb0, 0xd6, 0xba, 0xdf, 0xfe, 0x11, 0xca, 0x7b, - 0x9c, 0xef, 0xd6, 0x8c, 0x92, 0x65, 0x58, 0xa5, 0x65, 0xab, 0x48, 0x76, 0x71, 0x5a, 0x9f, 0x21, - 0x18, 0x89, 0x78, 0xee, 0xea, 0xc0, 0x46, 0x36, 0xc4, 0xaf, 0xa1, 0x27, 0xba, 0x21, 0x59, 0x38, - 0x64, 0x1a, 0x8e, 0xa3, 0xaf, 0x2b, 0x8c, 0x46, 0x95, 0x02, 0xf1, 0x2c, 0x57, 0xaf, 0xd2, 0xd3, - 0xdb, 0x23, 0x8f, 0xb0, 0x97, 0x8c, 0xa5, 0xaf, 0xb0, 0x57, 0x78, 0x05, 0x92, 0x9f, 0xa8, 0x46, - 0x45, 0x5f, 0x57, 0x3c, 0xcb, 0x35, 0x2a, 0xf4, 0x1c, 0x26, 0xb2, 0x69, 0x91, 0x89, 0x7a, 0x31, - 0x10, 0xf5, 0xe2, 0x8d, 0x40, 0xd4, 0xe7, 0x52, 0xbe, 0xc2, 0x7e, 0xf0, 0xd7, 0x38, 0xfa, 0xf1, - 0xdf, 0x5f, 0x66, 0x90, 0x9c, 0x60, 0xee, 0x37, 0x7d, 0x6f, 0xc1, 0x84, 0xb1, 0x9d, 0xdd, 0xa9, - 0xf1, 0x66, 0xd2, 0x61, 0xcb, 0x8a, 0x61, 0x15, 0x09, 0x1f, 0xdb, 0xe9, 0xd8, 0xad, 0x8c, 0xf1, - 0xe7, 0xca, 0x3e, 0xe1, 0xd4, 0x5f, 0x09, 0xda, 0xce, 0x74, 0xb5, 0x01, 0x8e, 0x4e, 0x27, 0xda, - 0xf3, 0x74, 0xfe, 0x1a, 0x1c, 0x93, 0x68, 0x12, 0x5e, 0xd4, 0x1a, 0xa4, 0xc2, 0x45, 0x05, 0x03, - 0xba, 0xdb, 0xaa, 0x92, 0xa1, 0xaa, 0xf6, 0x6f, 0x58, 0x67, 0x2e, 0x31, 0x41, 0x12, 0xd5, 0x00, - 0x78, 0x18, 0x52, 0xab, 0xd7, 0x56, 0x95, 0xc5, 0xe5, 0xd5, 0xf9, 0x95, 0xe5, 0xdb, 0x0b, 0x1f, - 0x0c, 0x75, 0xe1, 0x14, 0x0c, 0xd6, 0x1f, 0x11, 0xee, 0x87, 0x9e, 0xf9, 0xd5, 0x8f, 0x87, 0xba, - 0xb3, 0x9f, 0xa7, 0xa0, 0x97, 0x16, 0x8f, 0x3f, 0x45, 0xd0, 0xc7, 0xae, 0x58, 0xb8, 0xb9, 0xd8, - 0x88, 0xde, 0xe7, 0xd2, 0xd3, 0xed, 0x0d, 0x19, 0x68, 0xe1, 0xd8, 0x67, 0xbf, 0xfd, 0xf3, 0x75, - 0xf7, 0x51, 0x7c, 0x44, 0x6a, 0x7e, 0x25, 0xc5, 0xcf, 0x10, 0x8c, 0xc6, 0x5d, 0x74, 0xf0, 0x3b, - 0xbb, 0xbd, 0x18, 0x31, 0x78, 0xe7, 0xf6, 0x76, 0x9f, 0x12, 0x6e, 0x51, 0xb0, 0x79, 0xbc, 0x2a, - 0xb5, 0xba, 0x1d, 0x2b, 0x76, 0x95, 0xf8, 0xf4, 0x53, 0x75, 0xa4, 0xbb, 0x91, 0xb3, 0x7d, 0x4f, - 0xb2, 0x69, 0x64, 0xfa, 0x61, 0x65, 0xa1, 0x95, 0x8a, 0xe1, 0xb8, 0xf8, 0x09, 0x82, 0xe1, 0x1d, - 0x5a, 0x1b, 0x67, 0x77, 0x25, 0xcc, 0x59, 0x65, 0x73, 0x7b, 0x10, 0xf3, 0xc2, 0x0d, 0x5a, 0xd6, - 0x2a, 0x5e, 0x79, 0x85, 0xb2, 0x22, 0x97, 0x0b, 0x5a, 0xd4, 0x7d, 0x04, 0xbd, 0x74, 0xf8, 0xf0, - 0x54, 0x73, 0x50, 0x61, 0x75, 0x9d, 0x3e, 0xd9, 0xd6, 0x8e, 0x03, 0x3e, 0x4d, 0x01, 0x4f, 0xe1, - 0xe3, 0xb1, 0x80, 0x19, 0x05, 0x4a, 0x77, 0x19, 0x5d, 0xde, 0xc3, 0x5f, 0x22, 0x80, 0xba, 0x48, - 0xc5, 0xa7, 0x5a, 0xb7, 0x28, 0x22, 0xb7, 0xd3, 0xa7, 0x3b, 0x33, 0xee, 0x68, 0x98, 0xb9, 0xc2, - 0x7d, 0x88, 0x20, 0x15, 0xd1, 0x97, 0x58, 0x6c, 0x9e, 0x24, 0x4e, 0xbd, 0xa6, 0xa5, 0x8e, 0xed, - 0x39, 0xae, 0x53, 0x14, 0xd7, 0x09, 0x7c, 0x2c, 0x16, 0xd7, 0xa6, 0xef, 0x53, 0x6f, 0xd7, 0xcf, - 0x08, 0x06, 0x82, 0x0f, 0x2a, 0x7e, 0xab, 0x79, 0xaa, 0x06, 0xc9, 0x9a, 0x9e, 0xe9, 0xc4, 0x94, - 0x03, 0x5a, 0xa2, 0x80, 0x72, 0xf8, 0xf2, 0x5e, 0x27, 0x2e, 0xf8, 0xbe, 0xe3, 0x6f, 0x10, 0xa4, - 0x22, 0xea, 0xa1, 0x55, 0x37, 0xe3, 0xf4, 0x4e, 0xab, 0x6e, 0xc6, 0xca, 0x12, 0x61, 0x8a, 0x82, - 0x9f, 0xc0, 0x99, 0x58, 0xf0, 0x75, 0xe5, 0xf1, 0x03, 0x82, 0x44, 0x88, 0xf8, 0x71, 0x8b, 0x59, - 0xda, 0xa9, 0x29, 0xd2, 0x67, 0x3a, 0xb4, 0xe6, 0xa0, 0x2e, 0x52, 0x50, 0x67, 0x71, 0x36, 0x16, - 0x54, 0xe4, 0x4b, 0xd5, 0xd8, 0x4c, 0xfc, 0x2d, 0x82, 0x64, 0xf8, 0x1b, 0x87, 0x3b, 0xcb, 0x5d, - 0xeb, 0xa0, 0xd8, 0xa9, 0x39, 0xc7, 0x3a, 0x43, 0xb1, 0x1e, 0xc7, 0x42, 0x7b, 0xac, 0xb9, 0x95, - 0x47, 0x2f, 0x32, 0xe8, 0xf1, 0x8b, 0x0c, 0xfa, 0xfb, 0x45, 0x06, 0x3d, 0x78, 0x99, 0xe9, 0x7a, - 0xfc, 0x32, 0xd3, 0xf5, 0xc7, 0xcb, 0x4c, 0xd7, 0xed, 0x6c, 0x7b, 0xa9, 0xbd, 0x55, 0x0f, 0x4c, - 0x55, 0xb7, 0xd6, 0x47, 0x55, 0xcd, 0xdc, 0x7f, 0x01, 0x00, 0x00, 0xff, 0xff, 0x2d, 0xb4, 0xbe, - 0x11, 0x96, 0x15, 0x00, 0x00, + // 1623 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xbc, 0x57, 0x5f, 0x6f, 0x13, 0x57, + 0x16, 0xcf, 0x4d, 0x88, 0x93, 0x1c, 0xdb, 0x4b, 0x72, 0x13, 0xd8, 0x60, 0xc0, 0x09, 0x03, 0x84, + 0x6c, 0x80, 0x99, 0x8d, 0xc3, 0x22, 0x88, 0x76, 0x05, 0x31, 0x9b, 0x6c, 0xa2, 0xcd, 0x1a, 0x33, + 0x01, 0xa4, 0xe5, 0x65, 0x3a, 0xe3, 0x8c, 0xed, 0x69, 0x3c, 0x73, 0x07, 0xcf, 0x4c, 0x94, 0x14, + 0x21, 0x55, 0x95, 0xca, 0x43, 0xd5, 0x4a, 0x48, 0x7d, 0x69, 0x1f, 0x5a, 0xa9, 0x52, 0x55, 0x55, + 0xed, 0x4b, 0x5f, 0xfb, 0x0d, 0x78, 0x44, 0xb4, 0x0f, 0x15, 0x15, 0xb4, 0x82, 0x4a, 0xfd, 0x1a, + 0xd5, 0xdc, 0x7b, 0xc7, 0x9e, 0x71, 0xc6, 0xb1, 0x13, 0xa2, 0xbe, 0x58, 0x9e, 0x33, 0xe7, 0xcf, + 0xef, 0x9c, 0xfb, 0x3b, 0x67, 0xce, 0x85, 0x09, 0x4d, 0xd5, 0xb6, 0x6b, 0xc4, 0x92, 0xca, 0x86, + 0xa5, 0xd6, 0x0c, 0x77, 0x5b, 0xda, 0x9c, 0x95, 0xee, 0x7b, 0x7a, 0x7d, 0x5b, 0xb4, 0xeb, 0xc4, + 0x25, 0x78, 0x94, 0x2b, 0x88, 0x81, 0x82, 0xb8, 0x39, 0x9b, 0x19, 0xab, 0x90, 0x0a, 0xa1, 0xef, + 0x25, 0xff, 0x1f, 0x53, 0xcd, 0x9c, 0xa8, 0x10, 0x52, 0xa9, 0xe9, 0x92, 0x6a, 0x1b, 0x92, 0x6a, + 0x59, 0xc4, 0x55, 0x5d, 0x83, 0x58, 0x0e, 0x7f, 0x3b, 0x53, 0x22, 0x8e, 0x49, 0x1c, 0x49, 0x53, + 0x1d, 0x9d, 0x45, 0x90, 0x36, 0x67, 0x35, 0xdd, 0x55, 0x67, 0x25, 0x5b, 0xad, 0x18, 0x16, 0x55, + 0xe6, 0xba, 0x93, 0x71, 0xa8, 0x6c, 0xb5, 0xae, 0x9a, 0x81, 0x37, 0x21, 0x4e, 0xa3, 0x01, 0x91, + 0xe9, 0x4c, 0x70, 0x3c, 0xf4, 0x49, 0xf3, 0xca, 0x92, 0x6b, 0x98, 0xba, 0xe3, 0xaa, 0xa6, 0xcd, + 0x15, 0x46, 0x54, 0xd3, 0xb0, 0x88, 0x44, 0x7f, 0x99, 0x48, 0x18, 0x03, 0x7c, 0xcb, 0xc7, 0x56, + 0xa4, 0xc1, 0x64, 0xfd, 0xbe, 0xa7, 0x3b, 0xae, 0x50, 0x84, 0xd1, 0x88, 0xd4, 0xb1, 0x89, 0xe5, + 0xe8, 0xf8, 0x2a, 0x24, 0x18, 0xa8, 0x71, 0x34, 0x89, 0xa6, 0x93, 0xb9, 0xe3, 0x62, 0x4c, 0xb1, + 0x44, 0x66, 0x94, 0x3f, 0xf4, 0xe4, 0xe5, 0x44, 0x8f, 0xcc, 0x0d, 0x84, 0x8f, 0x10, 0x4c, 0x52, + 0x97, 0xab, 0x86, 0xe3, 0x16, 0x3d, 0xad, 0x66, 0x94, 0x64, 0xd5, 0x5a, 0x27, 0xa6, 0xa5, 0x3b, + 0x41, 0x58, 0x7c, 0x0a, 0xd2, 0x65, 0x5b, 0xd1, 0xdc, 0x92, 0x62, 0x6f, 0x28, 0x55, 0x7d, 0x8b, + 0x86, 0x19, 0x92, 0xa1, 0x6c, 0xe7, 0xdd, 0x52, 0x71, 0x63, 0x59, 0xdf, 0xc2, 0x4b, 0x00, 0xcd, + 0xea, 0x8d, 0xf7, 0x52, 0x18, 0x53, 0x22, 0x2b, 0xb5, 0xe8, 0x97, 0x5a, 0x64, 0x87, 0xc9, 0x4b, + 0x2d, 0x16, 0xd5, 0x8a, 0xce, 0xdd, 0xcb, 0x21, 0x4b, 0xe1, 0x59, 0x2f, 0x9c, 0xda, 0x05, 0x0f, + 0x4f, 0xf8, 0x4b, 0x04, 0x29, 0xdb, 0xd3, 0x94, 0xba, 0x6a, 0xad, 0x2b, 0xa6, 0x6a, 0x8f, 0xa3, + 0xc9, 0xbe, 0xe9, 0x64, 0x6e, 0x29, 0x36, 0xef, 0x8e, 0xee, 0xc4, 0xa2, 0xa7, 0xf9, 0xd2, 0xff, + 0xa9, 0xf6, 0xa2, 0xe5, 0xd6, 0xb7, 0xf3, 0xf3, 0xcf, 0x5f, 0x4e, 0x5c, 0xae, 0x18, 0x6e, 0xd5, + 0xd3, 0xc4, 0x12, 0x31, 0x25, 0xee, 0xb5, 0xa6, 0x6a, 0xce, 0x45, 0x83, 0x04, 0x8f, 0x92, 0xbb, + 0x6d, 0xeb, 0x8e, 0xb8, 0x56, 0xaa, 0x5a, 0xa4, 0x5e, 0xe7, 0x3e, 0x64, 0xb0, 0x1b, 0xce, 0xf0, + 0x7f, 0x62, 0x8a, 0x72, 0xae, 0x63, 0x51, 0x18, 0xa8, 0x70, 0x55, 0x32, 0xff, 0x82, 0xc3, 0x2d, + 0x18, 0xf1, 0x30, 0xf4, 0x6d, 0xe8, 0xdb, 0xf4, 0x24, 0x0e, 0xc9, 0xfe, 0x5f, 0x3c, 0x06, 0xfd, + 0x9b, 0x6a, 0xcd, 0xd3, 0x69, 0xa0, 0x94, 0xcc, 0x1e, 0xe6, 0x7b, 0xaf, 0x20, 0x61, 0x13, 0x8e, + 0x70, 0xf3, 0x1b, 0xc4, 0x34, 0x0d, 0xb7, 0x51, 0xc7, 0x49, 0x48, 0x59, 0x9e, 0xa9, 0x04, 0xa5, + 0xe4, 0xde, 0xc0, 0xf2, 0x4c, 0xae, 0x8f, 0xb3, 0x00, 0x25, 0x6a, 0x63, 0xea, 0x96, 0xcb, 0x3d, + 0x87, 0x24, 0xf8, 0x38, 0x0c, 0xe9, 0x36, 0x29, 0x55, 0x15, 0xcb, 0x33, 0xc7, 0xfb, 0xa8, 0xf9, + 0x20, 0x15, 0x14, 0x3c, 0x53, 0xf8, 0x00, 0xc1, 0xc9, 0x70, 0xf5, 0xc3, 0x08, 0xfe, 0x74, 0x66, + 0xfd, 0xd8, 0x0b, 0xd9, 0x76, 0x60, 0x78, 0x39, 0xb6, 0x60, 0xb4, 0xc1, 0x2a, 0x96, 0x63, 0x88, + 0x5c, 0x2b, 0x1d, 0xc9, 0xb5, 0xd3, 0xa3, 0x18, 0x91, 0x06, 0x67, 0x27, 0x0f, 0xdb, 0x2d, 0xe2, + 0x83, 0x63, 0x0a, 0x69, 0x39, 0xea, 0x5d, 0xf8, 0x72, 0x3d, 0xcc, 0x97, 0x64, 0x6e, 0x26, 0x7e, + 0x68, 0xc4, 0xa5, 0x15, 0xe6, 0xd6, 0x79, 0x18, 0xa1, 0x35, 0xc8, 0xd7, 0x48, 0x69, 0x23, 0x38, + 0xd6, 0xa3, 0x90, 0xa8, 0xea, 0x46, 0xa5, 0xea, 0xf2, 0x78, 0xfc, 0x49, 0x78, 0x0b, 0xd2, 0x5c, + 0x8f, 0x57, 0xbc, 0x8d, 0x22, 0x3e, 0x06, 0x83, 0xaa, 0x6d, 0x2b, 0x55, 0xd5, 0xa9, 0x72, 0xd2, + 0x0d, 0xa8, 0xb6, 0xbd, 0xac, 0x3a, 0x55, 0x7c, 0x02, 0x86, 0x18, 0xc0, 0x77, 0xf4, 0x75, 0xca, + 0xb8, 0x41, 0xb9, 0x29, 0x10, 0x0a, 0x7c, 0x6e, 0x46, 0xc3, 0x5c, 0x81, 0x7e, 0xcd, 0x17, 0xf0, + 0xf9, 0x28, 0xc4, 0xa6, 0x1a, 0x31, 0x91, 0x99, 0x81, 0xf0, 0x05, 0x82, 0xa3, 0x8d, 0x33, 0xa6, + 0x1a, 0x8d, 0xa9, 0x78, 0x0d, 0x12, 0x8e, 0xab, 0xba, 0x1e, 0x9b, 0xba, 0x7f, 0xc9, 0x9d, 0x6b, + 0x4b, 0x10, 0x43, 0x5f, 0xa7, 0xa6, 0x6b, 0x54, 0x5d, 0xe6, 0x66, 0x07, 0xc6, 0xec, 0xcf, 0x11, + 0xfc, 0x75, 0x07, 0x46, 0x9e, 0xf9, 0x3c, 0x24, 0x68, 0x22, 0x0e, 0x67, 0x71, 0x37, 0xa9, 0x73, + 0x8b, 0x03, 0x23, 0xa5, 0x30, 0x07, 0xc7, 0x28, 0xbe, 0xbb, 0xc4, 0xd5, 0x9d, 0x05, 0x77, 0x99, + 0x9e, 0x71, 0x27, 0xae, 0x10, 0xc8, 0xc4, 0x19, 0xf1, 0xbc, 0x6e, 0xc1, 0x00, 0x9b, 0x1a, 0x2c, + 0xb1, 0x54, 0xfe, 0xca, 0xf3, 0x97, 0x13, 0x97, 0xba, 0x9d, 0xd9, 0xf9, 0x95, 0xe2, 0xdc, 0xa5, + 0xbf, 0x17, 0x3d, 0xed, 0xbf, 0xfa, 0xb6, 0x9c, 0xd0, 0xfc, 0x51, 0xe3, 0x08, 0x57, 0x61, 0x8c, + 0x06, 0x5c, 0xdc, 0x34, 0xd6, 0x75, 0xab, 0xa4, 0x77, 0x3f, 0xa3, 0x84, 0x9f, 0xfb, 0x60, 0xb8, + 0x69, 0xc6, 0x21, 0x76, 0x31, 0xdb, 0x4e, 0x41, 0x8a, 0xd6, 0x5a, 0xe1, 0x15, 0xe8, 0xa5, 0x15, + 0x48, 0x52, 0x19, 0x4b, 0x18, 0xdf, 0x81, 0xc1, 0xc6, 0x78, 0xf6, 0xd9, 0x9e, 0x7a, 0xa3, 0xaf, + 0xd3, 0x00, 0x9f, 0x3c, 0xf8, 0x02, 0xe0, 0x92, 0x6a, 0x11, 0xcb, 0x28, 0xa9, 0x35, 0xa5, 0xd1, + 0x6a, 0x87, 0x68, 0xab, 0x0d, 0x37, 0xde, 0x2c, 0xf0, 0x9e, 0x13, 0x20, 0x5d, 0x26, 0xf5, 0x8d, + 0xa6, 0x62, 0x3f, 0x55, 0x4c, 0xfa, 0xc2, 0x40, 0xc7, 0x86, 0xa3, 0x4d, 0x8f, 0x01, 0xb9, 0x14, + 0xc7, 0xa8, 0x8c, 0x27, 0xf6, 0x0d, 0x7b, 0xf1, 0xe6, 0xed, 0xb5, 0x35, 0xa3, 0x22, 0x8f, 0x35, + 0x3c, 0x2f, 0x71, 0xc7, 0x6b, 0x46, 0x05, 0x97, 0x61, 0x84, 0xa2, 0x8a, 0x04, 0x1b, 0x78, 0xe3, + 0x60, 0x87, 0x7d, 0xa7, 0xa1, 0x38, 0xc2, 0x3d, 0x38, 0xd2, 0x42, 0x0c, 0x7e, 0xc2, 0x0b, 0x30, + 0xa8, 0x73, 0x19, 0x9f, 0x2c, 0x67, 0x63, 0xdb, 0xab, 0xd5, 0x50, 0x6e, 0x98, 0x09, 0x8f, 0x10, + 0xef, 0x0d, 0xbf, 0x77, 0x03, 0xbd, 0xd0, 0xe2, 0x95, 0x72, 0x5c, 0xb5, 0xee, 0x2a, 0x91, 0x0e, + 0x49, 0x52, 0x19, 0xe7, 0xc7, 0x41, 0x0d, 0x91, 0x6f, 0x10, 0xef, 0xb7, 0x16, 0x20, 0x3c, 0xd5, + 0x1b, 0x30, 0x14, 0x60, 0x0e, 0x46, 0x49, 0x97, 0xb9, 0x36, 0xed, 0x0e, 0x6e, 0xa0, 0xfc, 0x93, + 0x0f, 0xbc, 0x35, 0xa3, 0x62, 0x19, 0x56, 0x65, 0xc5, 0x2a, 0x93, 0x3d, 0x74, 0xeb, 0x0b, 0x04, + 0xa3, 0x11, 0xcb, 0x3d, 0x35, 0x6c, 0xe4, 0x40, 0xfc, 0x1c, 0xfa, 0xa2, 0x07, 0x92, 0x83, 0x23, + 0xa6, 0xe1, 0x38, 0xfa, 0xba, 0xc2, 0xc6, 0xa8, 0x52, 0x22, 0x9e, 0xe5, 0xea, 0x75, 0xda, 0xbd, + 0x7d, 0xf2, 0x28, 0x7b, 0xc9, 0xc6, 0xf4, 0x0d, 0xf6, 0x0a, 0xaf, 0x42, 0xea, 0x6d, 0xd5, 0xa8, + 0xe9, 0xeb, 0x8a, 0x67, 0xb9, 0x46, 0x8d, 0xf6, 0x61, 0x32, 0x97, 0x11, 0xd9, 0xc5, 0x41, 0x0c, + 0x2e, 0x0e, 0xe2, 0xed, 0xe0, 0xe2, 0x90, 0x4f, 0xfb, 0x5b, 0xfc, 0xe3, 0x5f, 0x26, 0xd0, 0xd7, + 0xbf, 0x7f, 0x37, 0x83, 0xe4, 0x24, 0x33, 0xbf, 0xe3, 0x5b, 0x0b, 0x26, 0x8c, 0xef, 0xac, 0x4e, + 0x63, 0x6e, 0xa6, 0x1c, 0x26, 0x56, 0x0c, 0xab, 0x4c, 0x38, 0x6d, 0xa7, 0x63, 0x8f, 0x32, 0xc6, + 0x9e, 0xdf, 0x1e, 0x92, 0x4e, 0xf3, 0x95, 0xa0, 0xed, 0x0c, 0xd7, 0x20, 0x70, 0x94, 0x9d, 0x68, + 0xdf, 0xec, 0xfc, 0x3e, 0x68, 0x93, 0x68, 0x10, 0x9e, 0xd4, 0x1a, 0xa4, 0xc3, 0x49, 0x05, 0x04, + 0xdd, 0x6b, 0x56, 0xa9, 0x50, 0x56, 0x07, 0x47, 0xd6, 0x99, 0x6b, 0x6c, 0x25, 0x89, 0x2e, 0x01, + 0x78, 0x04, 0xd2, 0x85, 0x9b, 0x05, 0x65, 0x69, 0xa5, 0xb0, 0xb0, 0xba, 0x72, 0x6f, 0xf1, 0xdf, + 0xc3, 0x3d, 0x38, 0x0d, 0x43, 0xcd, 0x47, 0x84, 0x07, 0xa0, 0x6f, 0xa1, 0xf0, 0xff, 0xe1, 0xde, + 0xdc, 0xfb, 0x69, 0xe8, 0xa7, 0xc9, 0xe3, 0x77, 0x11, 0x24, 0xd8, 0x35, 0x0e, 0xb7, 0xdf, 0x36, + 0xa2, 0x77, 0xc6, 0xcc, 0x74, 0x67, 0x45, 0x06, 0x5a, 0x38, 0xfd, 0xde, 0x0f, 0xbf, 0x7d, 0xdc, + 0x7b, 0x12, 0x1f, 0x97, 0xda, 0x5f, 0x7b, 0xf1, 0x0b, 0x04, 0x63, 0x71, 0x97, 0x29, 0xfc, 0x8f, + 0xbd, 0x5e, 0xbe, 0x18, 0xbc, 0xcb, 0xfb, 0xbb, 0xb3, 0x09, 0x77, 0x29, 0xd8, 0x22, 0x2e, 0x48, + 0xbb, 0xdd, 0xc0, 0x15, 0xbb, 0x4e, 0xfc, 0xf1, 0x53, 0x77, 0xa4, 0x07, 0x91, 0xde, 0x7e, 0x28, + 0xd9, 0xd4, 0x33, 0xfd, 0xb0, 0x32, 0xd7, 0x4a, 0xcd, 0x70, 0x5c, 0xfc, 0x0c, 0xc1, 0xc8, 0x8e, + 0x7d, 0x1e, 0xe7, 0xf6, 0xb4, 0xfc, 0xb3, 0xcc, 0xe6, 0xf6, 0x71, 0x61, 0x10, 0x6e, 0xd3, 0xb4, + 0x0a, 0x78, 0xf5, 0x0d, 0xd2, 0x8a, 0x5c, 0x60, 0x68, 0x52, 0x8f, 0x10, 0xf4, 0x53, 0xf2, 0xe1, + 0xa9, 0xf6, 0xa0, 0xc2, 0x1b, 0x7c, 0xe6, 0x5c, 0x47, 0x3d, 0x0e, 0xf8, 0x02, 0x05, 0x3c, 0x85, + 0xcf, 0xc4, 0x02, 0x66, 0x23, 0x50, 0x7a, 0xc0, 0xc6, 0xe5, 0x43, 0xfc, 0x21, 0x02, 0x68, 0x6e, + 0xa9, 0xf8, 0xfc, 0xee, 0x25, 0x8a, 0xec, 0xdb, 0x99, 0x0b, 0xdd, 0x29, 0x77, 0x45, 0x66, 0xbe, + 0xe1, 0x7e, 0x86, 0x20, 0x1d, 0xd9, 0x2f, 0xb1, 0xd8, 0x3e, 0x48, 0xdc, 0xf6, 0x9a, 0x91, 0xba, + 0xd6, 0xe7, 0xb8, 0xce, 0x53, 0x5c, 0x67, 0xf1, 0xe9, 0x58, 0x5c, 0x9b, 0xbe, 0x4d, 0xb3, 0x5c, + 0xdf, 0x22, 0x18, 0x0c, 0x3e, 0xa8, 0xf8, 0x6f, 0xed, 0x43, 0xb5, 0xac, 0xac, 0x99, 0x99, 0x6e, + 0x54, 0x39, 0xa0, 0x65, 0x0a, 0x28, 0x8f, 0xaf, 0xef, 0x97, 0x71, 0xc1, 0xf7, 0x1d, 0x7f, 0x82, + 0x20, 0x1d, 0xd9, 0x1e, 0x76, 0xab, 0x66, 0xdc, 0xbe, 0xb3, 0x5b, 0x35, 0x63, 0xd7, 0x12, 0x61, + 0x8a, 0x82, 0x9f, 0xc4, 0xd9, 0x58, 0xf0, 0xcd, 0xcd, 0xe3, 0x2b, 0x04, 0xc9, 0xd0, 0xe0, 0xc7, + 0xbb, 0x70, 0x69, 0xe7, 0x4e, 0x91, 0xb9, 0xd8, 0xa5, 0x36, 0x07, 0x35, 0x4f, 0x41, 0x5d, 0xc2, + 0xb9, 0x58, 0x50, 0x91, 0x2f, 0x55, 0x6b, 0x31, 0xf1, 0xa7, 0x08, 0x52, 0xe1, 0x6f, 0x1c, 0xee, + 0x2e, 0x76, 0xa3, 0x82, 0x62, 0xb7, 0xea, 0x1c, 0xeb, 0x0c, 0xc5, 0x7a, 0x06, 0x0b, 0x9d, 0xb1, + 0xe6, 0x57, 0x9f, 0xbc, 0xca, 0xa2, 0xa7, 0xaf, 0xb2, 0xe8, 0xd7, 0x57, 0x59, 0xf4, 0xf8, 0x75, + 0xb6, 0xe7, 0xe9, 0xeb, 0x6c, 0xcf, 0x4f, 0xaf, 0xb3, 0x3d, 0xf7, 0x72, 0x9d, 0x57, 0xed, 0xad, + 0xa6, 0x63, 0xba, 0x75, 0x6b, 0x09, 0xba, 0xd5, 0xcc, 0xfd, 0x11, 0x00, 0x00, 0xff, 0xff, 0x48, + 0xf3, 0x86, 0xd5, 0xfa, 0x15, 0x00, 0x00, } // Reference imports to suppress errors if they are not otherwise used. From 328205a89376542ba19d0257f336a4de6e441d49 Mon Sep 17 00:00:00 2001 From: Sam Ricotta Date: Fri, 25 Oct 2024 12:26:38 +0300 Subject: [PATCH 4/5] proto --- proto/babylon/finality/v1/query.proto | 8 +- x/finality/types/query.pb.go | 270 +++++++++++++------------- 2 files changed, 139 insertions(+), 139 deletions(-) diff --git a/proto/babylon/finality/v1/query.proto b/proto/babylon/finality/v1/query.proto index a33eb3b7e..54debc442 100644 --- a/proto/babylon/finality/v1/query.proto +++ b/proto/babylon/finality/v1/query.proto @@ -146,8 +146,8 @@ message QueryBlockRequest { uint64 height = 1; } -// BlockResponse is the necessary metadata and finalization status of a block -message BlockResponse { +// IndexedBlockResponse is the necessary metadata and finalization status of a block +message IndexedBlockResponse { // height is the height of the block uint64 height = 1; // app_hash is the AppHash of the block @@ -161,7 +161,7 @@ message BlockResponse { // Query/Block RPC method. message QueryBlockResponse { // block is the Babylon at the given height - BlockResponse block = 1; + IndexedBlockResponse block = 1; } // QueryListBlocksRequest is the request type for the @@ -178,7 +178,7 @@ message QueryListBlocksRequest { // Query/ListBlocks RPC method. message QueryListBlocksResponse { // blocks is the list of blocks at the given status - repeated BlockResponse blocks = 1; + repeated IndexedBlockResponse blocks = 1; // pagination defines the pagination in the response. cosmos.base.query.v1beta1.PageResponse pagination = 2; diff --git a/x/finality/types/query.pb.go b/x/finality/types/query.pb.go index db92ef2ea..e2d95f40b 100644 --- a/x/finality/types/query.pb.go +++ b/x/finality/types/query.pb.go @@ -481,8 +481,8 @@ func (m *QueryBlockRequest) GetHeight() uint64 { return 0 } -// BlockResponse is the necessary metadata and finalization status of a block -type BlockResponse struct { +// IndexedBlockResponse is the necessary metadata and finalization status of a block +type IndexedBlockResponse struct { // height is the height of the block Height uint64 `protobuf:"varint,1,opt,name=height,proto3" json:"height,omitempty"` // app_hash is the AppHash of the block @@ -492,18 +492,18 @@ type BlockResponse struct { Finalized bool `protobuf:"varint,3,opt,name=finalized,proto3" json:"finalized,omitempty"` } -func (m *BlockResponse) Reset() { *m = BlockResponse{} } -func (m *BlockResponse) String() string { return proto.CompactTextString(m) } -func (*BlockResponse) ProtoMessage() {} -func (*BlockResponse) Descriptor() ([]byte, []int) { +func (m *IndexedBlockResponse) Reset() { *m = IndexedBlockResponse{} } +func (m *IndexedBlockResponse) String() string { return proto.CompactTextString(m) } +func (*IndexedBlockResponse) ProtoMessage() {} +func (*IndexedBlockResponse) Descriptor() ([]byte, []int) { return fileDescriptor_32bddab77af6fdae, []int{8} } -func (m *BlockResponse) XXX_Unmarshal(b []byte) error { +func (m *IndexedBlockResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) } -func (m *BlockResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { +func (m *IndexedBlockResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { if deterministic { - return xxx_messageInfo_BlockResponse.Marshal(b, m, deterministic) + return xxx_messageInfo_IndexedBlockResponse.Marshal(b, m, deterministic) } else { b = b[:cap(b)] n, err := m.MarshalToSizedBuffer(b) @@ -513,33 +513,33 @@ func (m *BlockResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error return b[:n], nil } } -func (m *BlockResponse) XXX_Merge(src proto.Message) { - xxx_messageInfo_BlockResponse.Merge(m, src) +func (m *IndexedBlockResponse) XXX_Merge(src proto.Message) { + xxx_messageInfo_IndexedBlockResponse.Merge(m, src) } -func (m *BlockResponse) XXX_Size() int { +func (m *IndexedBlockResponse) XXX_Size() int { return m.Size() } -func (m *BlockResponse) XXX_DiscardUnknown() { - xxx_messageInfo_BlockResponse.DiscardUnknown(m) +func (m *IndexedBlockResponse) XXX_DiscardUnknown() { + xxx_messageInfo_IndexedBlockResponse.DiscardUnknown(m) } -var xxx_messageInfo_BlockResponse proto.InternalMessageInfo +var xxx_messageInfo_IndexedBlockResponse proto.InternalMessageInfo -func (m *BlockResponse) GetHeight() uint64 { +func (m *IndexedBlockResponse) GetHeight() uint64 { if m != nil { return m.Height } return 0 } -func (m *BlockResponse) GetAppHash() []byte { +func (m *IndexedBlockResponse) GetAppHash() []byte { if m != nil { return m.AppHash } return nil } -func (m *BlockResponse) GetFinalized() bool { +func (m *IndexedBlockResponse) GetFinalized() bool { if m != nil { return m.Finalized } @@ -550,7 +550,7 @@ func (m *BlockResponse) GetFinalized() bool { // Query/Block RPC method. type QueryBlockResponse struct { // block is the Babylon at the given height - Block *BlockResponse `protobuf:"bytes,1,opt,name=block,proto3" json:"block,omitempty"` + Block *IndexedBlockResponse `protobuf:"bytes,1,opt,name=block,proto3" json:"block,omitempty"` } func (m *QueryBlockResponse) Reset() { *m = QueryBlockResponse{} } @@ -586,7 +586,7 @@ func (m *QueryBlockResponse) XXX_DiscardUnknown() { var xxx_messageInfo_QueryBlockResponse proto.InternalMessageInfo -func (m *QueryBlockResponse) GetBlock() *BlockResponse { +func (m *QueryBlockResponse) GetBlock() *IndexedBlockResponse { if m != nil { return m.Block } @@ -653,7 +653,7 @@ func (m *QueryListBlocksRequest) GetPagination() *query.PageRequest { // Query/ListBlocks RPC method. type QueryListBlocksResponse struct { // blocks is the list of blocks at the given status - Blocks []*BlockResponse `protobuf:"bytes,1,rep,name=blocks,proto3" json:"blocks,omitempty"` + Blocks []*IndexedBlockResponse `protobuf:"bytes,1,rep,name=blocks,proto3" json:"blocks,omitempty"` // pagination defines the pagination in the response. Pagination *query.PageResponse `protobuf:"bytes,2,opt,name=pagination,proto3" json:"pagination,omitempty"` } @@ -691,7 +691,7 @@ func (m *QueryListBlocksResponse) XXX_DiscardUnknown() { var xxx_messageInfo_QueryListBlocksResponse proto.InternalMessageInfo -func (m *QueryListBlocksResponse) GetBlocks() []*BlockResponse { +func (m *QueryListBlocksResponse) GetBlocks() []*IndexedBlockResponse { if m != nil { return m.Blocks } @@ -1366,7 +1366,7 @@ func init() { proto.RegisterType((*QueryListPubRandCommitResponse)(nil), "babylon.finality.v1.QueryListPubRandCommitResponse") proto.RegisterMapType((map[uint64]*PubRandCommitResponse)(nil), "babylon.finality.v1.QueryListPubRandCommitResponse.PubRandCommitMapEntry") proto.RegisterType((*QueryBlockRequest)(nil), "babylon.finality.v1.QueryBlockRequest") - proto.RegisterType((*BlockResponse)(nil), "babylon.finality.v1.BlockResponse") + proto.RegisterType((*IndexedBlockResponse)(nil), "babylon.finality.v1.IndexedBlockResponse") proto.RegisterType((*QueryBlockResponse)(nil), "babylon.finality.v1.QueryBlockResponse") proto.RegisterType((*QueryListBlocksRequest)(nil), "babylon.finality.v1.QueryListBlocksRequest") proto.RegisterType((*QueryListBlocksResponse)(nil), "babylon.finality.v1.QueryListBlocksResponse") @@ -1387,109 +1387,109 @@ func init() { func init() { proto.RegisterFile("babylon/finality/v1/query.proto", fileDescriptor_32bddab77af6fdae) } var fileDescriptor_32bddab77af6fdae = []byte{ - // 1623 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xbc, 0x57, 0x5f, 0x6f, 0x13, 0x57, - 0x16, 0xcf, 0x4d, 0x88, 0x93, 0x1c, 0xdb, 0x4b, 0x72, 0x13, 0xd8, 0x60, 0xc0, 0x09, 0x03, 0x84, - 0x6c, 0x80, 0x99, 0x8d, 0xc3, 0x22, 0x88, 0x76, 0x05, 0x31, 0x9b, 0x6c, 0xa2, 0xcd, 0x1a, 0x33, - 0x01, 0xa4, 0xe5, 0x65, 0x3a, 0xe3, 0x8c, 0xed, 0x69, 0x3c, 0x73, 0x07, 0xcf, 0x4c, 0x94, 0x14, - 0x21, 0x55, 0x95, 0xca, 0x43, 0xd5, 0x4a, 0x48, 0x7d, 0x69, 0x1f, 0x5a, 0xa9, 0x52, 0x55, 0x55, - 0xed, 0x4b, 0x5f, 0xfb, 0x0d, 0x78, 0x44, 0xb4, 0x0f, 0x15, 0x15, 0xb4, 0x82, 0x4a, 0xfd, 0x1a, - 0xd5, 0xdc, 0x7b, 0xc7, 0x9e, 0x71, 0xc6, 0xb1, 0x13, 0xa2, 0xbe, 0x58, 0x9e, 0x33, 0xe7, 0xcf, - 0xef, 0x9c, 0xfb, 0x3b, 0x67, 0xce, 0x85, 0x09, 0x4d, 0xd5, 0xb6, 0x6b, 0xc4, 0x92, 0xca, 0x86, - 0xa5, 0xd6, 0x0c, 0x77, 0x5b, 0xda, 0x9c, 0x95, 0xee, 0x7b, 0x7a, 0x7d, 0x5b, 0xb4, 0xeb, 0xc4, - 0x25, 0x78, 0x94, 0x2b, 0x88, 0x81, 0x82, 0xb8, 0x39, 0x9b, 0x19, 0xab, 0x90, 0x0a, 0xa1, 0xef, - 0x25, 0xff, 0x1f, 0x53, 0xcd, 0x9c, 0xa8, 0x10, 0x52, 0xa9, 0xe9, 0x92, 0x6a, 0x1b, 0x92, 0x6a, - 0x59, 0xc4, 0x55, 0x5d, 0x83, 0x58, 0x0e, 0x7f, 0x3b, 0x53, 0x22, 0x8e, 0x49, 0x1c, 0x49, 0x53, - 0x1d, 0x9d, 0x45, 0x90, 0x36, 0x67, 0x35, 0xdd, 0x55, 0x67, 0x25, 0x5b, 0xad, 0x18, 0x16, 0x55, - 0xe6, 0xba, 0x93, 0x71, 0xa8, 0x6c, 0xb5, 0xae, 0x9a, 0x81, 0x37, 0x21, 0x4e, 0xa3, 0x01, 0x91, - 0xe9, 0x4c, 0x70, 0x3c, 0xf4, 0x49, 0xf3, 0xca, 0x92, 0x6b, 0x98, 0xba, 0xe3, 0xaa, 0xa6, 0xcd, - 0x15, 0x46, 0x54, 0xd3, 0xb0, 0x88, 0x44, 0x7f, 0x99, 0x48, 0x18, 0x03, 0x7c, 0xcb, 0xc7, 0x56, - 0xa4, 0xc1, 0x64, 0xfd, 0xbe, 0xa7, 0x3b, 0xae, 0x50, 0x84, 0xd1, 0x88, 0xd4, 0xb1, 0x89, 0xe5, - 0xe8, 0xf8, 0x2a, 0x24, 0x18, 0xa8, 0x71, 0x34, 0x89, 0xa6, 0x93, 0xb9, 0xe3, 0x62, 0x4c, 0xb1, - 0x44, 0x66, 0x94, 0x3f, 0xf4, 0xe4, 0xe5, 0x44, 0x8f, 0xcc, 0x0d, 0x84, 0x8f, 0x10, 0x4c, 0x52, - 0x97, 0xab, 0x86, 0xe3, 0x16, 0x3d, 0xad, 0x66, 0x94, 0x64, 0xd5, 0x5a, 0x27, 0xa6, 0xa5, 0x3b, - 0x41, 0x58, 0x7c, 0x0a, 0xd2, 0x65, 0x5b, 0xd1, 0xdc, 0x92, 0x62, 0x6f, 0x28, 0x55, 0x7d, 0x8b, - 0x86, 0x19, 0x92, 0xa1, 0x6c, 0xe7, 0xdd, 0x52, 0x71, 0x63, 0x59, 0xdf, 0xc2, 0x4b, 0x00, 0xcd, - 0xea, 0x8d, 0xf7, 0x52, 0x18, 0x53, 0x22, 0x2b, 0xb5, 0xe8, 0x97, 0x5a, 0x64, 0x87, 0xc9, 0x4b, - 0x2d, 0x16, 0xd5, 0x8a, 0xce, 0xdd, 0xcb, 0x21, 0x4b, 0xe1, 0x59, 0x2f, 0x9c, 0xda, 0x05, 0x0f, - 0x4f, 0xf8, 0x4b, 0x04, 0x29, 0xdb, 0xd3, 0x94, 0xba, 0x6a, 0xad, 0x2b, 0xa6, 0x6a, 0x8f, 0xa3, - 0xc9, 0xbe, 0xe9, 0x64, 0x6e, 0x29, 0x36, 0xef, 0x8e, 0xee, 0xc4, 0xa2, 0xa7, 0xf9, 0xd2, 0xff, - 0xa9, 0xf6, 0xa2, 0xe5, 0xd6, 0xb7, 0xf3, 0xf3, 0xcf, 0x5f, 0x4e, 0x5c, 0xae, 0x18, 0x6e, 0xd5, - 0xd3, 0xc4, 0x12, 0x31, 0x25, 0xee, 0xb5, 0xa6, 0x6a, 0xce, 0x45, 0x83, 0x04, 0x8f, 0x92, 0xbb, - 0x6d, 0xeb, 0x8e, 0xb8, 0x56, 0xaa, 0x5a, 0xa4, 0x5e, 0xe7, 0x3e, 0x64, 0xb0, 0x1b, 0xce, 0xf0, - 0x7f, 0x62, 0x8a, 0x72, 0xae, 0x63, 0x51, 0x18, 0xa8, 0x70, 0x55, 0x32, 0xff, 0x82, 0xc3, 0x2d, - 0x18, 0xf1, 0x30, 0xf4, 0x6d, 0xe8, 0xdb, 0xf4, 0x24, 0x0e, 0xc9, 0xfe, 0x5f, 0x3c, 0x06, 0xfd, - 0x9b, 0x6a, 0xcd, 0xd3, 0x69, 0xa0, 0x94, 0xcc, 0x1e, 0xe6, 0x7b, 0xaf, 0x20, 0x61, 0x13, 0x8e, - 0x70, 0xf3, 0x1b, 0xc4, 0x34, 0x0d, 0xb7, 0x51, 0xc7, 0x49, 0x48, 0x59, 0x9e, 0xa9, 0x04, 0xa5, - 0xe4, 0xde, 0xc0, 0xf2, 0x4c, 0xae, 0x8f, 0xb3, 0x00, 0x25, 0x6a, 0x63, 0xea, 0x96, 0xcb, 0x3d, - 0x87, 0x24, 0xf8, 0x38, 0x0c, 0xe9, 0x36, 0x29, 0x55, 0x15, 0xcb, 0x33, 0xc7, 0xfb, 0xa8, 0xf9, - 0x20, 0x15, 0x14, 0x3c, 0x53, 0xf8, 0x00, 0xc1, 0xc9, 0x70, 0xf5, 0xc3, 0x08, 0xfe, 0x74, 0x66, - 0xfd, 0xd8, 0x0b, 0xd9, 0x76, 0x60, 0x78, 0x39, 0xb6, 0x60, 0xb4, 0xc1, 0x2a, 0x96, 0x63, 0x88, - 0x5c, 0x2b, 0x1d, 0xc9, 0xb5, 0xd3, 0xa3, 0x18, 0x91, 0x06, 0x67, 0x27, 0x0f, 0xdb, 0x2d, 0xe2, - 0x83, 0x63, 0x0a, 0x69, 0x39, 0xea, 0x5d, 0xf8, 0x72, 0x3d, 0xcc, 0x97, 0x64, 0x6e, 0x26, 0x7e, - 0x68, 0xc4, 0xa5, 0x15, 0xe6, 0xd6, 0x79, 0x18, 0xa1, 0x35, 0xc8, 0xd7, 0x48, 0x69, 0x23, 0x38, - 0xd6, 0xa3, 0x90, 0xa8, 0xea, 0x46, 0xa5, 0xea, 0xf2, 0x78, 0xfc, 0x49, 0x78, 0x0b, 0xd2, 0x5c, - 0x8f, 0x57, 0xbc, 0x8d, 0x22, 0x3e, 0x06, 0x83, 0xaa, 0x6d, 0x2b, 0x55, 0xd5, 0xa9, 0x72, 0xd2, - 0x0d, 0xa8, 0xb6, 0xbd, 0xac, 0x3a, 0x55, 0x7c, 0x02, 0x86, 0x18, 0xc0, 0x77, 0xf4, 0x75, 0xca, - 0xb8, 0x41, 0xb9, 0x29, 0x10, 0x0a, 0x7c, 0x6e, 0x46, 0xc3, 0x5c, 0x81, 0x7e, 0xcd, 0x17, 0xf0, - 0xf9, 0x28, 0xc4, 0xa6, 0x1a, 0x31, 0x91, 0x99, 0x81, 0xf0, 0x05, 0x82, 0xa3, 0x8d, 0x33, 0xa6, - 0x1a, 0x8d, 0xa9, 0x78, 0x0d, 0x12, 0x8e, 0xab, 0xba, 0x1e, 0x9b, 0xba, 0x7f, 0xc9, 0x9d, 0x6b, - 0x4b, 0x10, 0x43, 0x5f, 0xa7, 0xa6, 0x6b, 0x54, 0x5d, 0xe6, 0x66, 0x07, 0xc6, 0xec, 0xcf, 0x11, - 0xfc, 0x75, 0x07, 0x46, 0x9e, 0xf9, 0x3c, 0x24, 0x68, 0x22, 0x0e, 0x67, 0x71, 0x37, 0xa9, 0x73, - 0x8b, 0x03, 0x23, 0xa5, 0x30, 0x07, 0xc7, 0x28, 0xbe, 0xbb, 0xc4, 0xd5, 0x9d, 0x05, 0x77, 0x99, - 0x9e, 0x71, 0x27, 0xae, 0x10, 0xc8, 0xc4, 0x19, 0xf1, 0xbc, 0x6e, 0xc1, 0x00, 0x9b, 0x1a, 0x2c, - 0xb1, 0x54, 0xfe, 0xca, 0xf3, 0x97, 0x13, 0x97, 0xba, 0x9d, 0xd9, 0xf9, 0x95, 0xe2, 0xdc, 0xa5, - 0xbf, 0x17, 0x3d, 0xed, 0xbf, 0xfa, 0xb6, 0x9c, 0xd0, 0xfc, 0x51, 0xe3, 0x08, 0x57, 0x61, 0x8c, - 0x06, 0x5c, 0xdc, 0x34, 0xd6, 0x75, 0xab, 0xa4, 0x77, 0x3f, 0xa3, 0x84, 0x9f, 0xfb, 0x60, 0xb8, - 0x69, 0xc6, 0x21, 0x76, 0x31, 0xdb, 0x4e, 0x41, 0x8a, 0xd6, 0x5a, 0xe1, 0x15, 0xe8, 0xa5, 0x15, - 0x48, 0x52, 0x19, 0x4b, 0x18, 0xdf, 0x81, 0xc1, 0xc6, 0x78, 0xf6, 0xd9, 0x9e, 0x7a, 0xa3, 0xaf, - 0xd3, 0x00, 0x9f, 0x3c, 0xf8, 0x02, 0xe0, 0x92, 0x6a, 0x11, 0xcb, 0x28, 0xa9, 0x35, 0xa5, 0xd1, - 0x6a, 0x87, 0x68, 0xab, 0x0d, 0x37, 0xde, 0x2c, 0xf0, 0x9e, 0x13, 0x20, 0x5d, 0x26, 0xf5, 0x8d, - 0xa6, 0x62, 0x3f, 0x55, 0x4c, 0xfa, 0xc2, 0x40, 0xc7, 0x86, 0xa3, 0x4d, 0x8f, 0x01, 0xb9, 0x14, - 0xc7, 0xa8, 0x8c, 0x27, 0xf6, 0x0d, 0x7b, 0xf1, 0xe6, 0xed, 0xb5, 0x35, 0xa3, 0x22, 0x8f, 0x35, - 0x3c, 0x2f, 0x71, 0xc7, 0x6b, 0x46, 0x05, 0x97, 0x61, 0x84, 0xa2, 0x8a, 0x04, 0x1b, 0x78, 0xe3, - 0x60, 0x87, 0x7d, 0xa7, 0xa1, 0x38, 0xc2, 0x3d, 0x38, 0xd2, 0x42, 0x0c, 0x7e, 0xc2, 0x0b, 0x30, - 0xa8, 0x73, 0x19, 0x9f, 0x2c, 0x67, 0x63, 0xdb, 0xab, 0xd5, 0x50, 0x6e, 0x98, 0x09, 0x8f, 0x10, - 0xef, 0x0d, 0xbf, 0x77, 0x03, 0xbd, 0xd0, 0xe2, 0x95, 0x72, 0x5c, 0xb5, 0xee, 0x2a, 0x91, 0x0e, - 0x49, 0x52, 0x19, 0xe7, 0xc7, 0x41, 0x0d, 0x91, 0x6f, 0x10, 0xef, 0xb7, 0x16, 0x20, 0x3c, 0xd5, - 0x1b, 0x30, 0x14, 0x60, 0x0e, 0x46, 0x49, 0x97, 0xb9, 0x36, 0xed, 0x0e, 0x6e, 0xa0, 0xfc, 0x93, - 0x0f, 0xbc, 0x35, 0xa3, 0x62, 0x19, 0x56, 0x65, 0xc5, 0x2a, 0x93, 0x3d, 0x74, 0xeb, 0x0b, 0x04, - 0xa3, 0x11, 0xcb, 0x3d, 0x35, 0x6c, 0xe4, 0x40, 0xfc, 0x1c, 0xfa, 0xa2, 0x07, 0x92, 0x83, 0x23, - 0xa6, 0xe1, 0x38, 0xfa, 0xba, 0xc2, 0xc6, 0xa8, 0x52, 0x22, 0x9e, 0xe5, 0xea, 0x75, 0xda, 0xbd, - 0x7d, 0xf2, 0x28, 0x7b, 0xc9, 0xc6, 0xf4, 0x0d, 0xf6, 0x0a, 0xaf, 0x42, 0xea, 0x6d, 0xd5, 0xa8, - 0xe9, 0xeb, 0x8a, 0x67, 0xb9, 0x46, 0x8d, 0xf6, 0x61, 0x32, 0x97, 0x11, 0xd9, 0xc5, 0x41, 0x0c, - 0x2e, 0x0e, 0xe2, 0xed, 0xe0, 0xe2, 0x90, 0x4f, 0xfb, 0x5b, 0xfc, 0xe3, 0x5f, 0x26, 0xd0, 0xd7, - 0xbf, 0x7f, 0x37, 0x83, 0xe4, 0x24, 0x33, 0xbf, 0xe3, 0x5b, 0x0b, 0x26, 0x8c, 0xef, 0xac, 0x4e, - 0x63, 0x6e, 0xa6, 0x1c, 0x26, 0x56, 0x0c, 0xab, 0x4c, 0x38, 0x6d, 0xa7, 0x63, 0x8f, 0x32, 0xc6, - 0x9e, 0xdf, 0x1e, 0x92, 0x4e, 0xf3, 0x95, 0xa0, 0xed, 0x0c, 0xd7, 0x20, 0x70, 0x94, 0x9d, 0x68, - 0xdf, 0xec, 0xfc, 0x3e, 0x68, 0x93, 0x68, 0x10, 0x9e, 0xd4, 0x1a, 0xa4, 0xc3, 0x49, 0x05, 0x04, - 0xdd, 0x6b, 0x56, 0xa9, 0x50, 0x56, 0x07, 0x47, 0xd6, 0x99, 0x6b, 0x6c, 0x25, 0x89, 0x2e, 0x01, - 0x78, 0x04, 0xd2, 0x85, 0x9b, 0x05, 0x65, 0x69, 0xa5, 0xb0, 0xb0, 0xba, 0x72, 0x6f, 0xf1, 0xdf, - 0xc3, 0x3d, 0x38, 0x0d, 0x43, 0xcd, 0x47, 0x84, 0x07, 0xa0, 0x6f, 0xa1, 0xf0, 0xff, 0xe1, 0xde, - 0xdc, 0xfb, 0x69, 0xe8, 0xa7, 0xc9, 0xe3, 0x77, 0x11, 0x24, 0xd8, 0x35, 0x0e, 0xb7, 0xdf, 0x36, - 0xa2, 0x77, 0xc6, 0xcc, 0x74, 0x67, 0x45, 0x06, 0x5a, 0x38, 0xfd, 0xde, 0x0f, 0xbf, 0x7d, 0xdc, - 0x7b, 0x12, 0x1f, 0x97, 0xda, 0x5f, 0x7b, 0xf1, 0x0b, 0x04, 0x63, 0x71, 0x97, 0x29, 0xfc, 0x8f, - 0xbd, 0x5e, 0xbe, 0x18, 0xbc, 0xcb, 0xfb, 0xbb, 0xb3, 0x09, 0x77, 0x29, 0xd8, 0x22, 0x2e, 0x48, - 0xbb, 0xdd, 0xc0, 0x15, 0xbb, 0x4e, 0xfc, 0xf1, 0x53, 0x77, 0xa4, 0x07, 0x91, 0xde, 0x7e, 0x28, - 0xd9, 0xd4, 0x33, 0xfd, 0xb0, 0x32, 0xd7, 0x4a, 0xcd, 0x70, 0x5c, 0xfc, 0x0c, 0xc1, 0xc8, 0x8e, - 0x7d, 0x1e, 0xe7, 0xf6, 0xb4, 0xfc, 0xb3, 0xcc, 0xe6, 0xf6, 0x71, 0x61, 0x10, 0x6e, 0xd3, 0xb4, - 0x0a, 0x78, 0xf5, 0x0d, 0xd2, 0x8a, 0x5c, 0x60, 0x68, 0x52, 0x8f, 0x10, 0xf4, 0x53, 0xf2, 0xe1, - 0xa9, 0xf6, 0xa0, 0xc2, 0x1b, 0x7c, 0xe6, 0x5c, 0x47, 0x3d, 0x0e, 0xf8, 0x02, 0x05, 0x3c, 0x85, - 0xcf, 0xc4, 0x02, 0x66, 0x23, 0x50, 0x7a, 0xc0, 0xc6, 0xe5, 0x43, 0xfc, 0x21, 0x02, 0x68, 0x6e, - 0xa9, 0xf8, 0xfc, 0xee, 0x25, 0x8a, 0xec, 0xdb, 0x99, 0x0b, 0xdd, 0x29, 0x77, 0x45, 0x66, 0xbe, - 0xe1, 0x7e, 0x86, 0x20, 0x1d, 0xd9, 0x2f, 0xb1, 0xd8, 0x3e, 0x48, 0xdc, 0xf6, 0x9a, 0x91, 0xba, - 0xd6, 0xe7, 0xb8, 0xce, 0x53, 0x5c, 0x67, 0xf1, 0xe9, 0x58, 0x5c, 0x9b, 0xbe, 0x4d, 0xb3, 0x5c, - 0xdf, 0x22, 0x18, 0x0c, 0x3e, 0xa8, 0xf8, 0x6f, 0xed, 0x43, 0xb5, 0xac, 0xac, 0x99, 0x99, 0x6e, - 0x54, 0x39, 0xa0, 0x65, 0x0a, 0x28, 0x8f, 0xaf, 0xef, 0x97, 0x71, 0xc1, 0xf7, 0x1d, 0x7f, 0x82, - 0x20, 0x1d, 0xd9, 0x1e, 0x76, 0xab, 0x66, 0xdc, 0xbe, 0xb3, 0x5b, 0x35, 0x63, 0xd7, 0x12, 0x61, - 0x8a, 0x82, 0x9f, 0xc4, 0xd9, 0x58, 0xf0, 0xcd, 0xcd, 0xe3, 0x2b, 0x04, 0xc9, 0xd0, 0xe0, 0xc7, - 0xbb, 0x70, 0x69, 0xe7, 0x4e, 0x91, 0xb9, 0xd8, 0xa5, 0x36, 0x07, 0x35, 0x4f, 0x41, 0x5d, 0xc2, - 0xb9, 0x58, 0x50, 0x91, 0x2f, 0x55, 0x6b, 0x31, 0xf1, 0xa7, 0x08, 0x52, 0xe1, 0x6f, 0x1c, 0xee, - 0x2e, 0x76, 0xa3, 0x82, 0x62, 0xb7, 0xea, 0x1c, 0xeb, 0x0c, 0xc5, 0x7a, 0x06, 0x0b, 0x9d, 0xb1, - 0xe6, 0x57, 0x9f, 0xbc, 0xca, 0xa2, 0xa7, 0xaf, 0xb2, 0xe8, 0xd7, 0x57, 0x59, 0xf4, 0xf8, 0x75, - 0xb6, 0xe7, 0xe9, 0xeb, 0x6c, 0xcf, 0x4f, 0xaf, 0xb3, 0x3d, 0xf7, 0x72, 0x9d, 0x57, 0xed, 0xad, - 0xa6, 0x63, 0xba, 0x75, 0x6b, 0x09, 0xba, 0xd5, 0xcc, 0xfd, 0x11, 0x00, 0x00, 0xff, 0xff, 0x48, - 0xf3, 0x86, 0xd5, 0xfa, 0x15, 0x00, 0x00, + // 1622 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xbc, 0x57, 0x5f, 0x6f, 0xd3, 0x56, + 0x14, 0xaf, 0x5b, 0x9a, 0xb6, 0x27, 0xc9, 0x68, 0x6f, 0x0b, 0x2b, 0x01, 0xd2, 0x62, 0xa0, 0x94, + 0x02, 0xf6, 0x9a, 0x32, 0x04, 0x68, 0x13, 0x34, 0xac, 0x5d, 0xab, 0x75, 0x25, 0xb8, 0x80, 0x34, + 0x5e, 0x2c, 0x3b, 0x71, 0x12, 0xaf, 0xb1, 0xaf, 0x89, 0xed, 0xaa, 0x1d, 0x42, 0x9a, 0x26, 0x8d, + 0x87, 0x69, 0x93, 0x90, 0xf6, 0xb2, 0x3d, 0xec, 0x61, 0xd2, 0x36, 0x4d, 0xdb, 0xcb, 0x5e, 0xf7, + 0x0d, 0x78, 0x44, 0x6c, 0x0f, 0x13, 0x13, 0x6c, 0x82, 0x49, 0xfb, 0x1a, 0x93, 0xef, 0xbd, 0x76, + 0xec, 0xd4, 0xf9, 0xd3, 0x52, 0xed, 0x25, 0x8a, 0xaf, 0xcf, 0x9f, 0xdf, 0x39, 0xf7, 0x77, 0x8e, + 0xcf, 0x81, 0x09, 0x55, 0x51, 0xb7, 0x6a, 0xd8, 0x14, 0xcb, 0xba, 0xa9, 0xd4, 0x74, 0x67, 0x4b, + 0xdc, 0x98, 0x15, 0xef, 0xba, 0x5a, 0x7d, 0x4b, 0xb0, 0xea, 0xd8, 0xc1, 0x68, 0x94, 0x09, 0x08, + 0xbe, 0x80, 0xb0, 0x31, 0x9b, 0x19, 0xab, 0xe0, 0x0a, 0x26, 0xef, 0x45, 0xef, 0x1f, 0x15, 0xcd, + 0x1c, 0xa9, 0x60, 0x5c, 0xa9, 0x69, 0xa2, 0x62, 0xe9, 0xa2, 0x62, 0x9a, 0xd8, 0x51, 0x1c, 0x1d, + 0x9b, 0x36, 0x7b, 0x3b, 0x53, 0xc4, 0xb6, 0x81, 0x6d, 0x51, 0x55, 0x6c, 0x8d, 0x7a, 0x10, 0x37, + 0x66, 0x55, 0xcd, 0x51, 0x66, 0x45, 0x4b, 0xa9, 0xe8, 0x26, 0x11, 0x66, 0xb2, 0x93, 0x71, 0xa8, + 0x2c, 0xa5, 0xae, 0x18, 0xbe, 0x35, 0x3e, 0x4e, 0x22, 0x80, 0x48, 0x65, 0x26, 0x18, 0x1e, 0xf2, + 0xa4, 0xba, 0x65, 0xd1, 0xd1, 0x0d, 0xcd, 0x76, 0x14, 0xc3, 0x62, 0x02, 0x23, 0x8a, 0xa1, 0x9b, + 0x58, 0x24, 0xbf, 0xf4, 0x88, 0x1f, 0x03, 0x74, 0xc3, 0xc3, 0x56, 0x20, 0xce, 0x24, 0xed, 0xae, + 0xab, 0xd9, 0x0e, 0x5f, 0x80, 0xd1, 0xc8, 0xa9, 0x6d, 0x61, 0xd3, 0xd6, 0xd0, 0x25, 0x48, 0x50, + 0x50, 0xe3, 0xdc, 0x24, 0x37, 0x9d, 0xcc, 0x1d, 0x16, 0x62, 0x92, 0x25, 0x50, 0xa5, 0xfc, 0xbe, + 0x47, 0xcf, 0x27, 0x7a, 0x24, 0xa6, 0xc0, 0x7f, 0xc1, 0xc1, 0x24, 0x31, 0xb9, 0xa2, 0xdb, 0x4e, + 0xc1, 0x55, 0x6b, 0x7a, 0x51, 0x52, 0xcc, 0x12, 0x36, 0x4c, 0xcd, 0xf6, 0xdd, 0xa2, 0x63, 0x90, + 0x2e, 0x5b, 0xb2, 0xea, 0x14, 0x65, 0x6b, 0x5d, 0xae, 0x6a, 0x9b, 0xc4, 0xcd, 0x90, 0x04, 0x65, + 0x2b, 0xef, 0x14, 0x0b, 0xeb, 0x4b, 0xda, 0x26, 0x5a, 0x04, 0x68, 0x64, 0x6f, 0xbc, 0x97, 0xc0, + 0x98, 0x12, 0x68, 0xaa, 0x05, 0x2f, 0xd5, 0x02, 0xbd, 0x4c, 0x96, 0x6a, 0xa1, 0xa0, 0x54, 0x34, + 0x66, 0x5e, 0x0a, 0x69, 0xf2, 0x4f, 0x7a, 0xe1, 0x58, 0x1b, 0x3c, 0x2c, 0xe0, 0xef, 0x38, 0x48, + 0x59, 0xae, 0x2a, 0xd7, 0x15, 0xb3, 0x24, 0x1b, 0x8a, 0x35, 0xce, 0x4d, 0xf6, 0x4d, 0x27, 0x73, + 0x8b, 0xb1, 0x71, 0x77, 0x34, 0x27, 0x14, 0x5c, 0xd5, 0x3b, 0x7d, 0x5f, 0xb1, 0x16, 0x4c, 0xa7, + 0xbe, 0x95, 0xbf, 0xfc, 0xf4, 0xf9, 0xc4, 0x85, 0x8a, 0xee, 0x54, 0x5d, 0x55, 0x28, 0x62, 0x43, + 0x64, 0x56, 0x6b, 0x8a, 0x6a, 0x9f, 0xd3, 0xb1, 0xff, 0x28, 0x3a, 0x5b, 0x96, 0x66, 0x0b, 0x6b, + 0xc5, 0xaa, 0x89, 0xeb, 0x75, 0x66, 0x43, 0x02, 0x2b, 0x30, 0x86, 0xde, 0x8d, 0x49, 0xca, 0xa9, + 0x8e, 0x49, 0xa1, 0xa0, 0xc2, 0x59, 0xc9, 0xbc, 0x0d, 0xfb, 0x9b, 0x30, 0xa2, 0x61, 0xe8, 0x5b, + 0xd7, 0xb6, 0xc8, 0x4d, 0xec, 0x93, 0xbc, 0xbf, 0x68, 0x0c, 0xfa, 0x37, 0x94, 0x9a, 0xab, 0x11, + 0x47, 0x29, 0x89, 0x3e, 0x5c, 0xee, 0xbd, 0xc8, 0xf1, 0x1b, 0x70, 0x80, 0xa9, 0x5f, 0xc3, 0x86, + 0xa1, 0x3b, 0x41, 0x1e, 0x27, 0x21, 0x65, 0xba, 0x86, 0xec, 0xa7, 0x92, 0x59, 0x03, 0xd3, 0x35, + 0x98, 0x3c, 0xca, 0x02, 0x14, 0x89, 0x8e, 0xa1, 0x99, 0x0e, 0xb3, 0x1c, 0x3a, 0x41, 0x87, 0x61, + 0x48, 0xb3, 0x70, 0xb1, 0x2a, 0x9b, 0xae, 0x31, 0xde, 0x47, 0xd4, 0x07, 0xc9, 0xc1, 0xaa, 0x6b, + 0xf0, 0x9f, 0x71, 0x70, 0x34, 0x9c, 0xfd, 0x30, 0x82, 0xff, 0x9d, 0x59, 0xbf, 0xf7, 0x42, 0xb6, + 0x15, 0x18, 0x96, 0x8e, 0x4d, 0x18, 0x0d, 0x58, 0x45, 0x63, 0x0c, 0x91, 0x6b, 0xb9, 0x23, 0xb9, + 0xb6, 0x5b, 0x14, 0x22, 0xa7, 0xfe, 0xdd, 0x49, 0xc3, 0x56, 0xd3, 0xf1, 0xde, 0x31, 0x05, 0x37, + 0x5d, 0x75, 0x1b, 0xbe, 0x5c, 0x0d, 0xf3, 0x25, 0x99, 0x9b, 0x89, 0x6f, 0x1a, 0x71, 0x61, 0x85, + 0xb9, 0x75, 0x06, 0x46, 0x48, 0x0e, 0xf2, 0x35, 0x5c, 0x5c, 0xf7, 0xaf, 0xf5, 0x20, 0x24, 0xaa, + 0x9a, 0x5e, 0xa9, 0x3a, 0xcc, 0x1f, 0x7b, 0xe2, 0x2b, 0x30, 0xb6, 0x6c, 0x96, 0xb4, 0x4d, 0xad, + 0xc4, 0xc4, 0x59, 0xe2, 0x5b, 0xc8, 0xa3, 0x43, 0x30, 0xa8, 0x58, 0x96, 0x5c, 0x55, 0xec, 0x2a, + 0xe3, 0xde, 0x80, 0x62, 0x59, 0x4b, 0x8a, 0x5d, 0x45, 0x47, 0x60, 0x88, 0xe2, 0xfc, 0x48, 0x2b, + 0x11, 0xe2, 0x0d, 0x4a, 0x8d, 0x03, 0xfe, 0x16, 0x6b, 0x9f, 0x51, 0x37, 0x57, 0xa0, 0x5f, 0xf5, + 0x0e, 0x58, 0x9b, 0x3c, 0x1d, 0x1b, 0x71, 0x1c, 0x40, 0x89, 0xea, 0xf1, 0xdf, 0x72, 0x70, 0x30, + 0xb8, 0x71, 0x22, 0x11, 0xf4, 0xc8, 0x2b, 0x90, 0xb0, 0x1d, 0xc5, 0x71, 0x69, 0x0f, 0x7e, 0x2d, + 0x77, 0xaa, 0x25, 0x5d, 0x74, 0x66, 0x7c, 0x8d, 0x88, 0x4b, 0x4c, 0x6d, 0xcf, 0x78, 0xfe, 0x3d, + 0x07, 0xaf, 0x6f, 0xc3, 0xc8, 0x12, 0x30, 0x0f, 0x09, 0x12, 0x88, 0xcd, 0x38, 0xbd, 0x83, 0x0c, + 0x30, 0xc5, 0x3d, 0x63, 0x2a, 0x3f, 0x07, 0x87, 0x08, 0xcc, 0xdb, 0xd8, 0xd1, 0xec, 0x79, 0x67, + 0x89, 0xdc, 0x78, 0x27, 0x02, 0x61, 0xc8, 0xc4, 0x29, 0xb1, 0xf0, 0x6e, 0xc0, 0x00, 0x6d, 0x25, + 0x34, 0xbe, 0x54, 0xfe, 0xe2, 0xd3, 0xe7, 0x13, 0xe7, 0xbb, 0x6d, 0xe4, 0xf9, 0xe5, 0xc2, 0xdc, + 0xf9, 0x37, 0x0a, 0xae, 0xfa, 0x9e, 0xb6, 0x25, 0x25, 0x54, 0xaf, 0xff, 0xd8, 0xfc, 0x25, 0x18, + 0x23, 0x0e, 0x17, 0x36, 0xf4, 0x92, 0x66, 0x16, 0xb5, 0xee, 0x1b, 0x17, 0xff, 0x67, 0x1f, 0x0c, + 0x37, 0xd4, 0x18, 0xc4, 0x2e, 0x1a, 0xde, 0x31, 0x48, 0x91, 0x5c, 0xcb, 0x2c, 0x03, 0xbd, 0x24, + 0x03, 0x49, 0x72, 0x46, 0x03, 0x46, 0xb7, 0x60, 0x30, 0xe8, 0xd9, 0x1e, 0xf7, 0x53, 0xaf, 0xf4, + 0xc9, 0x1a, 0x60, 0xed, 0x08, 0x9d, 0x05, 0x54, 0x54, 0x4c, 0x6c, 0xea, 0x45, 0xa5, 0x26, 0x07, + 0x85, 0xb7, 0x8f, 0x14, 0xde, 0x70, 0xf0, 0x66, 0x9e, 0x55, 0x20, 0x0f, 0xe9, 0x32, 0xae, 0xaf, + 0x37, 0x04, 0xfb, 0x89, 0x60, 0xd2, 0x3b, 0xf4, 0x65, 0x2c, 0x38, 0xd8, 0xb0, 0xe8, 0x73, 0x4c, + 0xb6, 0xf5, 0xca, 0x78, 0x62, 0xd7, 0xb0, 0x17, 0xae, 0xdf, 0x5c, 0x5b, 0xd3, 0x2b, 0xd2, 0x58, + 0x60, 0x79, 0x91, 0x19, 0x5e, 0xd3, 0x2b, 0xa8, 0x0c, 0x23, 0x04, 0x55, 0xc4, 0xd9, 0xc0, 0x2b, + 0x3b, 0xdb, 0xef, 0x19, 0x0d, 0xf9, 0xe1, 0xef, 0xc0, 0x81, 0x26, 0x62, 0x04, 0x35, 0x36, 0xa8, + 0xb1, 0x33, 0xd6, 0x67, 0x4e, 0xc6, 0x56, 0x59, 0xb3, 0xa2, 0x14, 0xa8, 0xf1, 0x0f, 0x38, 0x56, + 0x1b, 0x5e, 0x09, 0xfb, 0x72, 0xa1, 0x69, 0x2c, 0x65, 0x3b, 0x4a, 0xdd, 0x91, 0x23, 0x15, 0x92, + 0x24, 0x67, 0x8c, 0x1f, 0x7b, 0xd5, 0x4b, 0x7e, 0xe2, 0x58, 0xbd, 0x35, 0x01, 0x61, 0xa1, 0x5e, + 0x83, 0x21, 0x1f, 0xb3, 0xdf, 0x51, 0xba, 0x8c, 0xb5, 0xa1, 0xb7, 0x77, 0x0d, 0xe5, 0x2d, 0xd6, + 0xf7, 0xd6, 0xf4, 0x8a, 0xa9, 0x9b, 0x95, 0x65, 0xb3, 0x8c, 0x77, 0x50, 0xad, 0xcf, 0x38, 0x18, + 0x8d, 0x68, 0xee, 0xa8, 0x60, 0x23, 0x17, 0xe2, 0xc5, 0xd0, 0x17, 0xbd, 0x90, 0x1c, 0x1c, 0x30, + 0x74, 0xdb, 0xd6, 0x4a, 0x32, 0x6d, 0xa3, 0x72, 0x11, 0xbb, 0xa6, 0xa3, 0xd5, 0x49, 0xf5, 0xf6, + 0x49, 0xa3, 0xf4, 0x25, 0xed, 0xd6, 0xd7, 0xe8, 0x2b, 0xb4, 0x02, 0xa9, 0x0f, 0x15, 0xbd, 0xa6, + 0x95, 0x64, 0xd7, 0x74, 0xf4, 0x1a, 0xa9, 0xc3, 0x64, 0x2e, 0x23, 0xd0, 0x6d, 0x42, 0xf0, 0xb7, + 0x09, 0xe1, 0xa6, 0xbf, 0x4d, 0xe4, 0xd3, 0xde, 0x68, 0xff, 0xf0, 0xaf, 0x09, 0xee, 0xc7, 0x7f, + 0x7f, 0x99, 0xe1, 0xa4, 0x24, 0x55, 0xbf, 0xe5, 0x69, 0xf3, 0x06, 0x8c, 0x6f, 0xcf, 0x4e, 0xd0, + 0x37, 0x53, 0x36, 0x3d, 0x96, 0x75, 0xb3, 0x8c, 0x19, 0x6d, 0xa7, 0x63, 0xaf, 0x32, 0x46, 0x9f, + 0xad, 0x14, 0x49, 0xbb, 0xf1, 0x8a, 0x57, 0xb7, 0xbb, 0x0b, 0x08, 0x1c, 0x65, 0x27, 0xb7, 0x6b, + 0x76, 0xfe, 0xea, 0x97, 0x49, 0xd4, 0x09, 0x0b, 0x6a, 0x0d, 0xd2, 0xe1, 0xa0, 0x7c, 0x82, 0xee, + 0x34, 0xaa, 0x54, 0x28, 0xaa, 0xbd, 0x23, 0xeb, 0xcc, 0x15, 0x3a, 0xa0, 0x44, 0x67, 0x01, 0x34, + 0x02, 0xe9, 0xd5, 0xeb, 0xab, 0xf2, 0xe2, 0xf2, 0xea, 0xfc, 0xca, 0xf2, 0x9d, 0x85, 0x77, 0x86, + 0x7b, 0x50, 0x1a, 0x86, 0x1a, 0x8f, 0x1c, 0x1a, 0x80, 0xbe, 0xf9, 0xd5, 0x0f, 0x86, 0x7b, 0x73, + 0x9f, 0xa6, 0xa1, 0x9f, 0x04, 0x8f, 0x3e, 0xe6, 0x20, 0x41, 0x77, 0x3b, 0xd4, 0x7a, 0xe8, 0x88, + 0x2e, 0x92, 0x99, 0xe9, 0xce, 0x82, 0x14, 0x34, 0x7f, 0xfc, 0x93, 0xdf, 0xfe, 0xf9, 0xb2, 0xf7, + 0x28, 0x3a, 0x2c, 0xb6, 0xde, 0x85, 0xd1, 0x33, 0x0e, 0xc6, 0xe2, 0x36, 0x2c, 0xf4, 0xe6, 0x4e, + 0x37, 0x32, 0x0a, 0xef, 0xc2, 0xee, 0x16, 0x39, 0xfe, 0x36, 0x01, 0x5b, 0x40, 0xab, 0x62, 0xbb, + 0xb5, 0x5c, 0xb6, 0xea, 0xd8, 0x6b, 0x3f, 0x75, 0x5b, 0xbc, 0x17, 0xa9, 0xed, 0xfb, 0xa2, 0x45, + 0x2c, 0x93, 0x0f, 0x2b, 0x35, 0x2d, 0xd7, 0x74, 0xdb, 0x41, 0x4f, 0x38, 0x18, 0xd9, 0x36, 0xe4, + 0xa3, 0xdc, 0x8e, 0x36, 0x02, 0x1a, 0xd9, 0xdc, 0x2e, 0xb6, 0x08, 0xfe, 0x26, 0x09, 0x6b, 0x15, + 0xad, 0xbc, 0x42, 0x58, 0x91, 0xad, 0x86, 0x04, 0xf5, 0x80, 0x83, 0x7e, 0x42, 0x3e, 0x34, 0xd5, + 0x1a, 0x54, 0x78, 0xac, 0xcf, 0x9c, 0xea, 0x28, 0xc7, 0x00, 0x9f, 0x25, 0x80, 0xa7, 0xd0, 0x89, + 0x58, 0xc0, 0xb4, 0x05, 0x8a, 0xf7, 0x68, 0xbb, 0xbc, 0x8f, 0x3e, 0xe7, 0x00, 0x1a, 0xc3, 0x2a, + 0x3a, 0xd3, 0x3e, 0x45, 0x91, 0xb1, 0x3b, 0x73, 0xb6, 0x3b, 0xe1, 0xae, 0xc8, 0xcc, 0x26, 0xdc, + 0x6f, 0x38, 0x48, 0x47, 0xe6, 0x4b, 0x24, 0xb4, 0x76, 0x12, 0x37, 0xbd, 0x66, 0xc4, 0xae, 0xe5, + 0x19, 0xae, 0x33, 0x04, 0xd7, 0x49, 0x74, 0x3c, 0x16, 0xd7, 0x86, 0xa7, 0xd3, 0x48, 0xd7, 0xcf, + 0x1c, 0x0c, 0xfa, 0x1f, 0x54, 0x74, 0xba, 0xb5, 0xab, 0xa6, 0x91, 0x35, 0x33, 0xd3, 0x8d, 0x28, + 0x03, 0xb4, 0x44, 0x00, 0xe5, 0xd1, 0xd5, 0xdd, 0x32, 0xce, 0xff, 0xbe, 0xa3, 0xaf, 0x38, 0x48, + 0x47, 0xa6, 0x87, 0x76, 0xd9, 0x8c, 0x9b, 0x77, 0xda, 0x65, 0x33, 0x76, 0x2c, 0xe1, 0xa7, 0x08, + 0xf8, 0x49, 0x94, 0x8d, 0x05, 0xdf, 0x98, 0x3c, 0x7e, 0xe0, 0x20, 0x19, 0x6a, 0xfc, 0xa8, 0x0d, + 0x97, 0xb6, 0xcf, 0x14, 0x99, 0x73, 0x5d, 0x4a, 0x33, 0x50, 0x97, 0x09, 0xa8, 0xf3, 0x28, 0x17, + 0x0b, 0x2a, 0xf2, 0xa5, 0x6a, 0x4e, 0x26, 0xfa, 0x9a, 0x83, 0x54, 0xf8, 0x1b, 0x87, 0xba, 0xf3, + 0x1d, 0x64, 0x50, 0xe8, 0x56, 0x9c, 0x61, 0x9d, 0x21, 0x58, 0x4f, 0x20, 0xbe, 0x33, 0xd6, 0xfc, + 0xca, 0xa3, 0x17, 0x59, 0xee, 0xf1, 0x8b, 0x2c, 0xf7, 0xf7, 0x8b, 0x2c, 0xf7, 0xf0, 0x65, 0xb6, + 0xe7, 0xf1, 0xcb, 0x6c, 0xcf, 0x1f, 0x2f, 0xb3, 0x3d, 0x77, 0x72, 0x9d, 0x47, 0xed, 0xcd, 0x86, + 0x61, 0x32, 0x75, 0xab, 0x09, 0x32, 0xd5, 0xcc, 0xfd, 0x17, 0x00, 0x00, 0xff, 0xff, 0x56, 0xf7, + 0x3e, 0xd8, 0x0f, 0x16, 0x00, 0x00, } // Reference imports to suppress errors if they are not otherwise used. @@ -2250,7 +2250,7 @@ func (m *QueryBlockRequest) MarshalToSizedBuffer(dAtA []byte) (int, error) { return len(dAtA) - i, nil } -func (m *BlockResponse) Marshal() (dAtA []byte, err error) { +func (m *IndexedBlockResponse) Marshal() (dAtA []byte, err error) { size := m.Size() dAtA = make([]byte, size) n, err := m.MarshalToSizedBuffer(dAtA[:size]) @@ -2260,12 +2260,12 @@ func (m *BlockResponse) Marshal() (dAtA []byte, err error) { return dAtA[:n], nil } -func (m *BlockResponse) MarshalTo(dAtA []byte) (int, error) { +func (m *IndexedBlockResponse) MarshalTo(dAtA []byte) (int, error) { size := m.Size() return m.MarshalToSizedBuffer(dAtA[:size]) } -func (m *BlockResponse) MarshalToSizedBuffer(dAtA []byte) (int, error) { +func (m *IndexedBlockResponse) MarshalToSizedBuffer(dAtA []byte) (int, error) { i := len(dAtA) _ = i var l int @@ -3066,7 +3066,7 @@ func (m *QueryBlockRequest) Size() (n int) { return n } -func (m *BlockResponse) Size() (n int) { +func (m *IndexedBlockResponse) Size() (n int) { if m == nil { return 0 } @@ -4303,7 +4303,7 @@ func (m *QueryBlockRequest) Unmarshal(dAtA []byte) error { } return nil } -func (m *BlockResponse) Unmarshal(dAtA []byte) error { +func (m *IndexedBlockResponse) Unmarshal(dAtA []byte) error { l := len(dAtA) iNdEx := 0 for iNdEx < l { @@ -4326,10 +4326,10 @@ func (m *BlockResponse) Unmarshal(dAtA []byte) error { fieldNum := int32(wire >> 3) wireType := int(wire & 0x7) if wireType == 4 { - return fmt.Errorf("proto: BlockResponse: wiretype end group for non-group") + return fmt.Errorf("proto: IndexedBlockResponse: wiretype end group for non-group") } if fieldNum <= 0 { - return fmt.Errorf("proto: BlockResponse: illegal tag %d (wire type %d)", fieldNum, wire) + return fmt.Errorf("proto: IndexedBlockResponse: illegal tag %d (wire type %d)", fieldNum, wire) } switch fieldNum { case 1: @@ -4485,7 +4485,7 @@ func (m *QueryBlockResponse) Unmarshal(dAtA []byte) error { return io.ErrUnexpectedEOF } if m.Block == nil { - m.Block = &BlockResponse{} + m.Block = &IndexedBlockResponse{} } if err := m.Block.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { return err @@ -4675,7 +4675,7 @@ func (m *QueryListBlocksResponse) Unmarshal(dAtA []byte) error { if postIndex > l { return io.ErrUnexpectedEOF } - m.Blocks = append(m.Blocks, &BlockResponse{}) + m.Blocks = append(m.Blocks, &IndexedBlockResponse{}) if err := m.Blocks[len(m.Blocks)-1].Unmarshal(dAtA[iNdEx:postIndex]); err != nil { return err } From 223f37f4214b79467daa6567b895e67318511336 Mon Sep 17 00:00:00 2001 From: Sam Ricotta Date: Fri, 25 Oct 2024 12:31:42 +0300 Subject: [PATCH 5/5] update functions names --- test/e2e/configurer/chain/queries_btcstaking.go | 4 ++-- x/finality/keeper/grpc_query.go | 15 ++++++++------- 2 files changed, 10 insertions(+), 9 deletions(-) diff --git a/test/e2e/configurer/chain/queries_btcstaking.go b/test/e2e/configurer/chain/queries_btcstaking.go index b0c903f61..f40084cb7 100644 --- a/test/e2e/configurer/chain/queries_btcstaking.go +++ b/test/e2e/configurer/chain/queries_btcstaking.go @@ -185,7 +185,7 @@ func (n *NodeConfig) QueryIndexedBlock(height uint64) *ftypes.IndexedBlock { return convertToIndexedBlock(resp.Block) } -func convertToIndexedBlock(br *ftypes.BlockResponse) *ftypes.IndexedBlock { +func convertToIndexedBlock(br *ftypes.IndexedBlockResponse) *ftypes.IndexedBlock { return &ftypes.IndexedBlock{ Height: br.Height, AppHash: br.AppHash, @@ -193,7 +193,7 @@ func convertToIndexedBlock(br *ftypes.BlockResponse) *ftypes.IndexedBlock { } } -func convertToIndexedBlockList(brs []*ftypes.BlockResponse) []*ftypes.IndexedBlock { +func convertToIndexedBlockList(brs []*ftypes.IndexedBlockResponse) []*ftypes.IndexedBlock { var ibs []*ftypes.IndexedBlock for _, indexedBlock := range brs { ibs = append(ibs, convertToIndexedBlock(indexedBlock)) diff --git a/x/finality/keeper/grpc_query.go b/x/finality/keeper/grpc_query.go index 9bf7e70c4..42a048591 100644 --- a/x/finality/keeper/grpc_query.go +++ b/x/finality/keeper/grpc_query.go @@ -97,7 +97,7 @@ func (k Keeper) Block(ctx context.Context, req *types.QueryBlockRequest) (*types return nil, err } - return &types.QueryBlockResponse{Block: convertToBlockResponse(b)}, nil + return &types.QueryBlockResponse{Block: convertToIndexedBlockResponse(b)}, nil } // ListBlocks returns a list of blocks at the given finalisation status @@ -129,7 +129,7 @@ func (k Keeper) ListBlocks(ctx context.Context, req *types.QueryListBlocksReques } resp := &types.QueryListBlocksResponse{ - Blocks: convertToBlockResponseList(ibs), + Blocks: convertToIndexedBlockResponseList(ibs), Pagination: pageRes, } return resp, nil @@ -291,20 +291,21 @@ func convertToSigningInfosResponse(signInfos []types.FinalityProviderSigningInfo return response } -func convertToBlockResponse(ib *types.IndexedBlock) *types.BlockResponse { - return &types.BlockResponse{ +func convertToIndexedBlockResponse(ib *types.IndexedBlock) *types.IndexedBlockResponse { + return &types.IndexedBlockResponse{ Height: ib.Height, AppHash: ib.AppHash, Finalized: ib.Finalized, } } -func convertToBlockResponseList(ibs []*types.IndexedBlock) []*types.BlockResponse { - var blockResponses []*types.BlockResponse +func convertToIndexedBlockResponseList(ibs []*types.IndexedBlock) []*types.IndexedBlockResponse { + var blockResponses []*types.IndexedBlockResponse for _, ib := range ibs { - blockResponses = append(blockResponses, convertToBlockResponse(ib)) + blockResponses = append(blockResponses, convertToIndexedBlockResponse(ib)) } return blockResponses +} func convertToEvidenceResponse(evidence *types.Evidence) *types.EvidenceResponse { return &types.EvidenceResponse{