diff --git a/protobuf/flow/access/access.proto b/protobuf/flow/access/access.proto index c415ff8a7..a450ede34 100644 --- a/protobuf/flow/access/access.proto +++ b/protobuf/flow/access/access.proto @@ -51,6 +51,8 @@ service AccessAPI { // GetCollectionByID gets a collection by ID. rpc GetCollectionByID(GetCollectionByIDRequest) returns (CollectionResponse); + // GetFullCollectionByID gets a collection by ID. + rpc GetFullCollectionByID(GetFullCollectionByIDRequest) returns (FullCollectionResponse); // Transactions @@ -189,7 +191,7 @@ service AccessAPI { // if the status is "sealed", only sealed blocks will be returned. rpc SubscribeBlocksFromLatest(SubscribeBlocksFromLatestRequest) returns (stream SubscribeBlocksResponse); - + // Subscribe block headers // SubscribeBlockHeadersFromStartBlockID streams finalized or sealed block headers starting at the requested @@ -317,11 +319,20 @@ message GetCollectionByIDRequest { bytes id = 1; } +message GetFullCollectionByIDRequest { + bytes id = 1; +} + message CollectionResponse { entities.Collection collection = 1; entities.Metadata metadata = 2; } +message FullCollectionResponse { + repeated entities.Transaction transactions = 1; + entities.Metadata metadata = 2; +} + // Transactions message SendTransactionRequest { @@ -666,4 +677,4 @@ message SendAndSubscribeTransactionStatusesResponse { TransactionResultResponse transaction_results = 1; // The message index of the response message. Used by the client to ensure they received all messages. Starts from "0". uint64 message_index = 2; -} \ No newline at end of file +} diff --git a/protobuf/go/flow/access/access.pb.go b/protobuf/go/flow/access/access.pb.go index aef44ebdc..b12248d12 100644 --- a/protobuf/go/flow/access/access.pb.go +++ b/protobuf/go/flow/access/access.pb.go @@ -561,6 +561,45 @@ func (m *GetCollectionByIDRequest) GetId() []byte { return nil } +type GetFullCollectionByIDRequest struct { + Id []byte `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` +} + +func (m *GetFullCollectionByIDRequest) Reset() { *m = GetFullCollectionByIDRequest{} } +func (m *GetFullCollectionByIDRequest) String() string { return proto.CompactTextString(m) } +func (*GetFullCollectionByIDRequest) ProtoMessage() {} +func (*GetFullCollectionByIDRequest) Descriptor() ([]byte, []int) { + return fileDescriptor_4382e32bb8e3e8e5, []int{13} +} + +func (m *GetFullCollectionByIDRequest) XXX_Unmarshal(b []byte) error { + return xxx_messageInfo_GetFullCollectionByIDRequest.Unmarshal(m, b) +} +func (m *GetFullCollectionByIDRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + return xxx_messageInfo_GetFullCollectionByIDRequest.Marshal(b, m, deterministic) +} +func (m *GetFullCollectionByIDRequest) XXX_Merge(src proto.Message) { + xxx_messageInfo_GetFullCollectionByIDRequest.Merge(m, src) +} +func (m *GetFullCollectionByIDRequest) XXX_Size() int { + return xxx_messageInfo_GetFullCollectionByIDRequest.Size(m) +} +func (m *GetFullCollectionByIDRequest) XXX_DiscardUnknown() { + xxx_messageInfo_GetFullCollectionByIDRequest.DiscardUnknown(m) +} + +var xxx_messageInfo_GetFullCollectionByIDRequest proto.InternalMessageInfo + +func (m *GetFullCollectionByIDRequest) GetId() []byte { + if m != nil { + return m.Id + } + return nil +} + type CollectionResponse struct { Collection *entities.Collection `protobuf:"bytes,1,opt,name=collection,proto3" json:"collection,omitempty"` Metadata *entities.Metadata `protobuf:"bytes,2,opt,name=metadata,proto3" json:"metadata,omitempty"` @@ -573,7 +612,7 @@ func (m *CollectionResponse) Reset() { *m = CollectionResponse{} } func (m *CollectionResponse) String() string { return proto.CompactTextString(m) } func (*CollectionResponse) ProtoMessage() {} func (*CollectionResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_4382e32bb8e3e8e5, []int{13} + return fileDescriptor_4382e32bb8e3e8e5, []int{14} } func (m *CollectionResponse) XXX_Unmarshal(b []byte) error { @@ -608,6 +647,53 @@ func (m *CollectionResponse) GetMetadata() *entities.Metadata { return nil } +type FullCollectionResponse struct { + Transactions []*entities.Transaction `protobuf:"bytes,1,rep,name=transactions,proto3" json:"transactions,omitempty"` + Metadata *entities.Metadata `protobuf:"bytes,2,opt,name=metadata,proto3" json:"metadata,omitempty"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` +} + +func (m *FullCollectionResponse) Reset() { *m = FullCollectionResponse{} } +func (m *FullCollectionResponse) String() string { return proto.CompactTextString(m) } +func (*FullCollectionResponse) ProtoMessage() {} +func (*FullCollectionResponse) Descriptor() ([]byte, []int) { + return fileDescriptor_4382e32bb8e3e8e5, []int{15} +} + +func (m *FullCollectionResponse) XXX_Unmarshal(b []byte) error { + return xxx_messageInfo_FullCollectionResponse.Unmarshal(m, b) +} +func (m *FullCollectionResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + return xxx_messageInfo_FullCollectionResponse.Marshal(b, m, deterministic) +} +func (m *FullCollectionResponse) XXX_Merge(src proto.Message) { + xxx_messageInfo_FullCollectionResponse.Merge(m, src) +} +func (m *FullCollectionResponse) XXX_Size() int { + return xxx_messageInfo_FullCollectionResponse.Size(m) +} +func (m *FullCollectionResponse) XXX_DiscardUnknown() { + xxx_messageInfo_FullCollectionResponse.DiscardUnknown(m) +} + +var xxx_messageInfo_FullCollectionResponse proto.InternalMessageInfo + +func (m *FullCollectionResponse) GetTransactions() []*entities.Transaction { + if m != nil { + return m.Transactions + } + return nil +} + +func (m *FullCollectionResponse) GetMetadata() *entities.Metadata { + if m != nil { + return m.Metadata + } + return nil +} + type SendTransactionRequest struct { Transaction *entities.Transaction `protobuf:"bytes,1,opt,name=transaction,proto3" json:"transaction,omitempty"` XXX_NoUnkeyedLiteral struct{} `json:"-"` @@ -619,7 +705,7 @@ func (m *SendTransactionRequest) Reset() { *m = SendTransactionRequest{} func (m *SendTransactionRequest) String() string { return proto.CompactTextString(m) } func (*SendTransactionRequest) ProtoMessage() {} func (*SendTransactionRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_4382e32bb8e3e8e5, []int{14} + return fileDescriptor_4382e32bb8e3e8e5, []int{16} } func (m *SendTransactionRequest) XXX_Unmarshal(b []byte) error { @@ -659,7 +745,7 @@ func (m *SendTransactionResponse) Reset() { *m = SendTransactionResponse func (m *SendTransactionResponse) String() string { return proto.CompactTextString(m) } func (*SendTransactionResponse) ProtoMessage() {} func (*SendTransactionResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_4382e32bb8e3e8e5, []int{15} + return fileDescriptor_4382e32bb8e3e8e5, []int{17} } func (m *SendTransactionResponse) XXX_Unmarshal(b []byte) error { @@ -708,7 +794,7 @@ func (m *GetTransactionRequest) Reset() { *m = GetTransactionRequest{} } func (m *GetTransactionRequest) String() string { return proto.CompactTextString(m) } func (*GetTransactionRequest) ProtoMessage() {} func (*GetTransactionRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_4382e32bb8e3e8e5, []int{16} + return fileDescriptor_4382e32bb8e3e8e5, []int{18} } func (m *GetTransactionRequest) XXX_Unmarshal(b []byte) error { @@ -768,7 +854,7 @@ func (m *GetSystemTransactionRequest) Reset() { *m = GetSystemTransactio func (m *GetSystemTransactionRequest) String() string { return proto.CompactTextString(m) } func (*GetSystemTransactionRequest) ProtoMessage() {} func (*GetSystemTransactionRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_4382e32bb8e3e8e5, []int{17} + return fileDescriptor_4382e32bb8e3e8e5, []int{19} } func (m *GetSystemTransactionRequest) XXX_Unmarshal(b []byte) error { @@ -808,7 +894,7 @@ func (m *GetSystemTransactionResultRequest) Reset() { *m = GetSystemTran func (m *GetSystemTransactionResultRequest) String() string { return proto.CompactTextString(m) } func (*GetSystemTransactionResultRequest) ProtoMessage() {} func (*GetSystemTransactionResultRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_4382e32bb8e3e8e5, []int{18} + return fileDescriptor_4382e32bb8e3e8e5, []int{20} } func (m *GetSystemTransactionResultRequest) XXX_Unmarshal(b []byte) error { @@ -856,7 +942,7 @@ func (m *GetTransactionByIndexRequest) Reset() { *m = GetTransactionByIn func (m *GetTransactionByIndexRequest) String() string { return proto.CompactTextString(m) } func (*GetTransactionByIndexRequest) ProtoMessage() {} func (*GetTransactionByIndexRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_4382e32bb8e3e8e5, []int{19} + return fileDescriptor_4382e32bb8e3e8e5, []int{21} } func (m *GetTransactionByIndexRequest) XXX_Unmarshal(b []byte) error { @@ -910,7 +996,7 @@ func (m *GetTransactionsByBlockIDRequest) Reset() { *m = GetTransactions func (m *GetTransactionsByBlockIDRequest) String() string { return proto.CompactTextString(m) } func (*GetTransactionsByBlockIDRequest) ProtoMessage() {} func (*GetTransactionsByBlockIDRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_4382e32bb8e3e8e5, []int{20} + return fileDescriptor_4382e32bb8e3e8e5, []int{22} } func (m *GetTransactionsByBlockIDRequest) XXX_Unmarshal(b []byte) error { @@ -957,7 +1043,7 @@ func (m *TransactionResultsResponse) Reset() { *m = TransactionResultsRe func (m *TransactionResultsResponse) String() string { return proto.CompactTextString(m) } func (*TransactionResultsResponse) ProtoMessage() {} func (*TransactionResultsResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_4382e32bb8e3e8e5, []int{21} + return fileDescriptor_4382e32bb8e3e8e5, []int{23} } func (m *TransactionResultsResponse) XXX_Unmarshal(b []byte) error { @@ -1004,7 +1090,7 @@ func (m *TransactionsResponse) Reset() { *m = TransactionsResponse{} } func (m *TransactionsResponse) String() string { return proto.CompactTextString(m) } func (*TransactionsResponse) ProtoMessage() {} func (*TransactionsResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_4382e32bb8e3e8e5, []int{22} + return fileDescriptor_4382e32bb8e3e8e5, []int{24} } func (m *TransactionsResponse) XXX_Unmarshal(b []byte) error { @@ -1051,7 +1137,7 @@ func (m *TransactionResponse) Reset() { *m = TransactionResponse{} } func (m *TransactionResponse) String() string { return proto.CompactTextString(m) } func (*TransactionResponse) ProtoMessage() {} func (*TransactionResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_4382e32bb8e3e8e5, []int{23} + return fileDescriptor_4382e32bb8e3e8e5, []int{25} } func (m *TransactionResponse) XXX_Unmarshal(b []byte) error { @@ -1106,7 +1192,7 @@ func (m *TransactionResultResponse) Reset() { *m = TransactionResultResp func (m *TransactionResultResponse) String() string { return proto.CompactTextString(m) } func (*TransactionResultResponse) ProtoMessage() {} func (*TransactionResultResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_4382e32bb8e3e8e5, []int{24} + return fileDescriptor_4382e32bb8e3e8e5, []int{26} } func (m *TransactionResultResponse) XXX_Unmarshal(b []byte) error { @@ -1208,7 +1294,7 @@ func (m *GetAccountRequest) Reset() { *m = GetAccountRequest{} } func (m *GetAccountRequest) String() string { return proto.CompactTextString(m) } func (*GetAccountRequest) ProtoMessage() {} func (*GetAccountRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_4382e32bb8e3e8e5, []int{25} + return fileDescriptor_4382e32bb8e3e8e5, []int{27} } func (m *GetAccountRequest) XXX_Unmarshal(b []byte) error { @@ -1248,7 +1334,7 @@ func (m *GetAccountResponse) Reset() { *m = GetAccountResponse{} } func (m *GetAccountResponse) String() string { return proto.CompactTextString(m) } func (*GetAccountResponse) ProtoMessage() {} func (*GetAccountResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_4382e32bb8e3e8e5, []int{26} + return fileDescriptor_4382e32bb8e3e8e5, []int{28} } func (m *GetAccountResponse) XXX_Unmarshal(b []byte) error { @@ -1294,7 +1380,7 @@ func (m *GetAccountAtLatestBlockRequest) Reset() { *m = GetAccountAtLate func (m *GetAccountAtLatestBlockRequest) String() string { return proto.CompactTextString(m) } func (*GetAccountAtLatestBlockRequest) ProtoMessage() {} func (*GetAccountAtLatestBlockRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_4382e32bb8e3e8e5, []int{27} + return fileDescriptor_4382e32bb8e3e8e5, []int{29} } func (m *GetAccountAtLatestBlockRequest) XXX_Unmarshal(b []byte) error { @@ -1334,7 +1420,7 @@ func (m *AccountResponse) Reset() { *m = AccountResponse{} } func (m *AccountResponse) String() string { return proto.CompactTextString(m) } func (*AccountResponse) ProtoMessage() {} func (*AccountResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_4382e32bb8e3e8e5, []int{28} + return fileDescriptor_4382e32bb8e3e8e5, []int{30} } func (m *AccountResponse) XXX_Unmarshal(b []byte) error { @@ -1381,7 +1467,7 @@ func (m *GetAccountAtBlockHeightRequest) Reset() { *m = GetAccountAtBloc func (m *GetAccountAtBlockHeightRequest) String() string { return proto.CompactTextString(m) } func (*GetAccountAtBlockHeightRequest) ProtoMessage() {} func (*GetAccountAtBlockHeightRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_4382e32bb8e3e8e5, []int{29} + return fileDescriptor_4382e32bb8e3e8e5, []int{31} } func (m *GetAccountAtBlockHeightRequest) XXX_Unmarshal(b []byte) error { @@ -1428,7 +1514,7 @@ func (m *ExecuteScriptAtLatestBlockRequest) Reset() { *m = ExecuteScript func (m *ExecuteScriptAtLatestBlockRequest) String() string { return proto.CompactTextString(m) } func (*ExecuteScriptAtLatestBlockRequest) ProtoMessage() {} func (*ExecuteScriptAtLatestBlockRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_4382e32bb8e3e8e5, []int{30} + return fileDescriptor_4382e32bb8e3e8e5, []int{32} } func (m *ExecuteScriptAtLatestBlockRequest) XXX_Unmarshal(b []byte) error { @@ -1476,7 +1562,7 @@ func (m *ExecuteScriptAtBlockIDRequest) Reset() { *m = ExecuteScriptAtBl func (m *ExecuteScriptAtBlockIDRequest) String() string { return proto.CompactTextString(m) } func (*ExecuteScriptAtBlockIDRequest) ProtoMessage() {} func (*ExecuteScriptAtBlockIDRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_4382e32bb8e3e8e5, []int{31} + return fileDescriptor_4382e32bb8e3e8e5, []int{33} } func (m *ExecuteScriptAtBlockIDRequest) XXX_Unmarshal(b []byte) error { @@ -1531,7 +1617,7 @@ func (m *ExecuteScriptAtBlockHeightRequest) Reset() { *m = ExecuteScript func (m *ExecuteScriptAtBlockHeightRequest) String() string { return proto.CompactTextString(m) } func (*ExecuteScriptAtBlockHeightRequest) ProtoMessage() {} func (*ExecuteScriptAtBlockHeightRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_4382e32bb8e3e8e5, []int{32} + return fileDescriptor_4382e32bb8e3e8e5, []int{34} } func (m *ExecuteScriptAtBlockHeightRequest) XXX_Unmarshal(b []byte) error { @@ -1586,7 +1672,7 @@ func (m *ExecuteScriptResponse) Reset() { *m = ExecuteScriptResponse{} } func (m *ExecuteScriptResponse) String() string { return proto.CompactTextString(m) } func (*ExecuteScriptResponse) ProtoMessage() {} func (*ExecuteScriptResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_4382e32bb8e3e8e5, []int{33} + return fileDescriptor_4382e32bb8e3e8e5, []int{35} } func (m *ExecuteScriptResponse) XXX_Unmarshal(b []byte) error { @@ -1642,7 +1728,7 @@ func (m *GetEventsForHeightRangeRequest) Reset() { *m = GetEventsForHeig func (m *GetEventsForHeightRangeRequest) String() string { return proto.CompactTextString(m) } func (*GetEventsForHeightRangeRequest) ProtoMessage() {} func (*GetEventsForHeightRangeRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_4382e32bb8e3e8e5, []int{34} + return fileDescriptor_4382e32bb8e3e8e5, []int{36} } func (m *GetEventsForHeightRangeRequest) XXX_Unmarshal(b []byte) error { @@ -1704,7 +1790,7 @@ func (m *GetEventsForBlockIDsRequest) Reset() { *m = GetEventsForBlockID func (m *GetEventsForBlockIDsRequest) String() string { return proto.CompactTextString(m) } func (*GetEventsForBlockIDsRequest) ProtoMessage() {} func (*GetEventsForBlockIDsRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_4382e32bb8e3e8e5, []int{35} + return fileDescriptor_4382e32bb8e3e8e5, []int{37} } func (m *GetEventsForBlockIDsRequest) XXX_Unmarshal(b []byte) error { @@ -1758,7 +1844,7 @@ func (m *EventsResponse) Reset() { *m = EventsResponse{} } func (m *EventsResponse) String() string { return proto.CompactTextString(m) } func (*EventsResponse) ProtoMessage() {} func (*EventsResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_4382e32bb8e3e8e5, []int{36} + return fileDescriptor_4382e32bb8e3e8e5, []int{38} } func (m *EventsResponse) XXX_Unmarshal(b []byte) error { @@ -1807,7 +1893,7 @@ func (m *EventsResponse_Result) Reset() { *m = EventsResponse_Result{} } func (m *EventsResponse_Result) String() string { return proto.CompactTextString(m) } func (*EventsResponse_Result) ProtoMessage() {} func (*EventsResponse_Result) Descriptor() ([]byte, []int) { - return fileDescriptor_4382e32bb8e3e8e5, []int{36, 0} + return fileDescriptor_4382e32bb8e3e8e5, []int{38, 0} } func (m *EventsResponse_Result) XXX_Unmarshal(b []byte) error { @@ -1866,7 +1952,7 @@ func (m *GetNetworkParametersRequest) Reset() { *m = GetNetworkParameter func (m *GetNetworkParametersRequest) String() string { return proto.CompactTextString(m) } func (*GetNetworkParametersRequest) ProtoMessage() {} func (*GetNetworkParametersRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_4382e32bb8e3e8e5, []int{37} + return fileDescriptor_4382e32bb8e3e8e5, []int{39} } func (m *GetNetworkParametersRequest) XXX_Unmarshal(b []byte) error { @@ -1898,7 +1984,7 @@ func (m *GetNetworkParametersResponse) Reset() { *m = GetNetworkParamete func (m *GetNetworkParametersResponse) String() string { return proto.CompactTextString(m) } func (*GetNetworkParametersResponse) ProtoMessage() {} func (*GetNetworkParametersResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_4382e32bb8e3e8e5, []int{38} + return fileDescriptor_4382e32bb8e3e8e5, []int{40} } func (m *GetNetworkParametersResponse) XXX_Unmarshal(b []byte) error { @@ -1936,7 +2022,7 @@ func (m *GetLatestProtocolStateSnapshotRequest) Reset() { *m = GetLatest func (m *GetLatestProtocolStateSnapshotRequest) String() string { return proto.CompactTextString(m) } func (*GetLatestProtocolStateSnapshotRequest) ProtoMessage() {} func (*GetLatestProtocolStateSnapshotRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_4382e32bb8e3e8e5, []int{39} + return fileDescriptor_4382e32bb8e3e8e5, []int{41} } func (m *GetLatestProtocolStateSnapshotRequest) XXX_Unmarshal(b []byte) error { @@ -1970,7 +2056,7 @@ func (m *GetProtocolStateSnapshotByBlockIDRequest) Reset() { func (m *GetProtocolStateSnapshotByBlockIDRequest) String() string { return proto.CompactTextString(m) } func (*GetProtocolStateSnapshotByBlockIDRequest) ProtoMessage() {} func (*GetProtocolStateSnapshotByBlockIDRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_4382e32bb8e3e8e5, []int{40} + return fileDescriptor_4382e32bb8e3e8e5, []int{42} } func (m *GetProtocolStateSnapshotByBlockIDRequest) XXX_Unmarshal(b []byte) error { @@ -2011,7 +2097,7 @@ func (m *GetProtocolStateSnapshotByHeightRequest) Reset() { func (m *GetProtocolStateSnapshotByHeightRequest) String() string { return proto.CompactTextString(m) } func (*GetProtocolStateSnapshotByHeightRequest) ProtoMessage() {} func (*GetProtocolStateSnapshotByHeightRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_4382e32bb8e3e8e5, []int{41} + return fileDescriptor_4382e32bb8e3e8e5, []int{43} } func (m *GetProtocolStateSnapshotByHeightRequest) XXX_Unmarshal(b []byte) error { @@ -2051,7 +2137,7 @@ func (m *ProtocolStateSnapshotResponse) Reset() { *m = ProtocolStateSnap func (m *ProtocolStateSnapshotResponse) String() string { return proto.CompactTextString(m) } func (*ProtocolStateSnapshotResponse) ProtoMessage() {} func (*ProtocolStateSnapshotResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_4382e32bb8e3e8e5, []int{42} + return fileDescriptor_4382e32bb8e3e8e5, []int{44} } func (m *ProtocolStateSnapshotResponse) XXX_Unmarshal(b []byte) error { @@ -2097,7 +2183,7 @@ func (m *GetExecutionResultForBlockIDRequest) Reset() { *m = GetExecutio func (m *GetExecutionResultForBlockIDRequest) String() string { return proto.CompactTextString(m) } func (*GetExecutionResultForBlockIDRequest) ProtoMessage() {} func (*GetExecutionResultForBlockIDRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_4382e32bb8e3e8e5, []int{43} + return fileDescriptor_4382e32bb8e3e8e5, []int{45} } func (m *GetExecutionResultForBlockIDRequest) XXX_Unmarshal(b []byte) error { @@ -2137,7 +2223,7 @@ func (m *ExecutionResultForBlockIDResponse) Reset() { *m = ExecutionResu func (m *ExecutionResultForBlockIDResponse) String() string { return proto.CompactTextString(m) } func (*ExecutionResultForBlockIDResponse) ProtoMessage() {} func (*ExecutionResultForBlockIDResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_4382e32bb8e3e8e5, []int{44} + return fileDescriptor_4382e32bb8e3e8e5, []int{46} } func (m *ExecutionResultForBlockIDResponse) XXX_Unmarshal(b []byte) error { @@ -2183,7 +2269,7 @@ func (m *GetExecutionResultByIDRequest) Reset() { *m = GetExecutionResul func (m *GetExecutionResultByIDRequest) String() string { return proto.CompactTextString(m) } func (*GetExecutionResultByIDRequest) ProtoMessage() {} func (*GetExecutionResultByIDRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_4382e32bb8e3e8e5, []int{45} + return fileDescriptor_4382e32bb8e3e8e5, []int{47} } func (m *GetExecutionResultByIDRequest) XXX_Unmarshal(b []byte) error { @@ -2223,7 +2309,7 @@ func (m *ExecutionResultByIDResponse) Reset() { *m = ExecutionResultByID func (m *ExecutionResultByIDResponse) String() string { return proto.CompactTextString(m) } func (*ExecutionResultByIDResponse) ProtoMessage() {} func (*ExecutionResultByIDResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_4382e32bb8e3e8e5, []int{46} + return fileDescriptor_4382e32bb8e3e8e5, []int{48} } func (m *ExecutionResultByIDResponse) XXX_Unmarshal(b []byte) error { @@ -2280,7 +2366,7 @@ func (m *SubscribeBlocksFromStartBlockIDRequest) Reset() { func (m *SubscribeBlocksFromStartBlockIDRequest) String() string { return proto.CompactTextString(m) } func (*SubscribeBlocksFromStartBlockIDRequest) ProtoMessage() {} func (*SubscribeBlocksFromStartBlockIDRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_4382e32bb8e3e8e5, []int{47} + return fileDescriptor_4382e32bb8e3e8e5, []int{49} } func (m *SubscribeBlocksFromStartBlockIDRequest) XXX_Unmarshal(b []byte) error { @@ -2342,7 +2428,7 @@ func (m *SubscribeBlocksFromStartHeightRequest) Reset() { *m = Subscribe func (m *SubscribeBlocksFromStartHeightRequest) String() string { return proto.CompactTextString(m) } func (*SubscribeBlocksFromStartHeightRequest) ProtoMessage() {} func (*SubscribeBlocksFromStartHeightRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_4382e32bb8e3e8e5, []int{48} + return fileDescriptor_4382e32bb8e3e8e5, []int{50} } func (m *SubscribeBlocksFromStartHeightRequest) XXX_Unmarshal(b []byte) error { @@ -2402,7 +2488,7 @@ func (m *SubscribeBlocksFromLatestRequest) Reset() { *m = SubscribeBlock func (m *SubscribeBlocksFromLatestRequest) String() string { return proto.CompactTextString(m) } func (*SubscribeBlocksFromLatestRequest) ProtoMessage() {} func (*SubscribeBlocksFromLatestRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_4382e32bb8e3e8e5, []int{49} + return fileDescriptor_4382e32bb8e3e8e5, []int{51} } func (m *SubscribeBlocksFromLatestRequest) XXX_Unmarshal(b []byte) error { @@ -2451,7 +2537,7 @@ func (m *SubscribeBlocksResponse) Reset() { *m = SubscribeBlocksResponse func (m *SubscribeBlocksResponse) String() string { return proto.CompactTextString(m) } func (*SubscribeBlocksResponse) ProtoMessage() {} func (*SubscribeBlocksResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_4382e32bb8e3e8e5, []int{50} + return fileDescriptor_4382e32bb8e3e8e5, []int{52} } func (m *SubscribeBlocksResponse) XXX_Unmarshal(b []byte) error { @@ -2501,7 +2587,7 @@ func (m *SubscribeBlockHeadersFromStartBlockIDRequest) String() string { } func (*SubscribeBlockHeadersFromStartBlockIDRequest) ProtoMessage() {} func (*SubscribeBlockHeadersFromStartBlockIDRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_4382e32bb8e3e8e5, []int{51} + return fileDescriptor_4382e32bb8e3e8e5, []int{53} } func (m *SubscribeBlockHeadersFromStartBlockIDRequest) XXX_Unmarshal(b []byte) error { @@ -2558,7 +2644,7 @@ func (m *SubscribeBlockHeadersFromStartHeightRequest) String() string { } func (*SubscribeBlockHeadersFromStartHeightRequest) ProtoMessage() {} func (*SubscribeBlockHeadersFromStartHeightRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_4382e32bb8e3e8e5, []int{52} + return fileDescriptor_4382e32bb8e3e8e5, []int{54} } func (m *SubscribeBlockHeadersFromStartHeightRequest) XXX_Unmarshal(b []byte) error { @@ -2611,7 +2697,7 @@ func (m *SubscribeBlockHeadersFromLatestRequest) Reset() { func (m *SubscribeBlockHeadersFromLatestRequest) String() string { return proto.CompactTextString(m) } func (*SubscribeBlockHeadersFromLatestRequest) ProtoMessage() {} func (*SubscribeBlockHeadersFromLatestRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_4382e32bb8e3e8e5, []int{53} + return fileDescriptor_4382e32bb8e3e8e5, []int{55} } func (m *SubscribeBlockHeadersFromLatestRequest) XXX_Unmarshal(b []byte) error { @@ -2653,7 +2739,7 @@ func (m *SubscribeBlockHeadersResponse) Reset() { *m = SubscribeBlockHea func (m *SubscribeBlockHeadersResponse) String() string { return proto.CompactTextString(m) } func (*SubscribeBlockHeadersResponse) ProtoMessage() {} func (*SubscribeBlockHeadersResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_4382e32bb8e3e8e5, []int{54} + return fileDescriptor_4382e32bb8e3e8e5, []int{56} } func (m *SubscribeBlockHeadersResponse) XXX_Unmarshal(b []byte) error { @@ -2703,7 +2789,7 @@ func (m *SubscribeBlockDigestsFromStartBlockIDRequest) String() string { } func (*SubscribeBlockDigestsFromStartBlockIDRequest) ProtoMessage() {} func (*SubscribeBlockDigestsFromStartBlockIDRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_4382e32bb8e3e8e5, []int{55} + return fileDescriptor_4382e32bb8e3e8e5, []int{57} } func (m *SubscribeBlockDigestsFromStartBlockIDRequest) XXX_Unmarshal(b []byte) error { @@ -2760,7 +2846,7 @@ func (m *SubscribeBlockDigestsFromStartHeightRequest) String() string { } func (*SubscribeBlockDigestsFromStartHeightRequest) ProtoMessage() {} func (*SubscribeBlockDigestsFromStartHeightRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_4382e32bb8e3e8e5, []int{56} + return fileDescriptor_4382e32bb8e3e8e5, []int{58} } func (m *SubscribeBlockDigestsFromStartHeightRequest) XXX_Unmarshal(b []byte) error { @@ -2813,7 +2899,7 @@ func (m *SubscribeBlockDigestsFromLatestRequest) Reset() { func (m *SubscribeBlockDigestsFromLatestRequest) String() string { return proto.CompactTextString(m) } func (*SubscribeBlockDigestsFromLatestRequest) ProtoMessage() {} func (*SubscribeBlockDigestsFromLatestRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_4382e32bb8e3e8e5, []int{57} + return fileDescriptor_4382e32bb8e3e8e5, []int{59} } func (m *SubscribeBlockDigestsFromLatestRequest) XXX_Unmarshal(b []byte) error { @@ -2861,7 +2947,7 @@ func (m *SubscribeBlockDigestsResponse) Reset() { *m = SubscribeBlockDig func (m *SubscribeBlockDigestsResponse) String() string { return proto.CompactTextString(m) } func (*SubscribeBlockDigestsResponse) ProtoMessage() {} func (*SubscribeBlockDigestsResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_4382e32bb8e3e8e5, []int{58} + return fileDescriptor_4382e32bb8e3e8e5, []int{60} } func (m *SubscribeBlockDigestsResponse) XXX_Unmarshal(b []byte) error { @@ -2922,7 +3008,7 @@ func (m *SendAndSubscribeTransactionStatusesRequest) String() string { } func (*SendAndSubscribeTransactionStatusesRequest) ProtoMessage() {} func (*SendAndSubscribeTransactionStatusesRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_4382e32bb8e3e8e5, []int{59} + return fileDescriptor_4382e32bb8e3e8e5, []int{61} } func (m *SendAndSubscribeTransactionStatusesRequest) XXX_Unmarshal(b []byte) error { @@ -2976,7 +3062,7 @@ func (m *SendAndSubscribeTransactionStatusesResponse) String() string { } func (*SendAndSubscribeTransactionStatusesResponse) ProtoMessage() {} func (*SendAndSubscribeTransactionStatusesResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_4382e32bb8e3e8e5, []int{60} + return fileDescriptor_4382e32bb8e3e8e5, []int{62} } func (m *SendAndSubscribeTransactionStatusesResponse) XXX_Unmarshal(b []byte) error { @@ -3025,7 +3111,9 @@ func init() { proto.RegisterType((*GetBlockByHeightRequest)(nil), "flow.access.GetBlockByHeightRequest") proto.RegisterType((*BlockResponse)(nil), "flow.access.BlockResponse") proto.RegisterType((*GetCollectionByIDRequest)(nil), "flow.access.GetCollectionByIDRequest") + proto.RegisterType((*GetFullCollectionByIDRequest)(nil), "flow.access.GetFullCollectionByIDRequest") proto.RegisterType((*CollectionResponse)(nil), "flow.access.CollectionResponse") + proto.RegisterType((*FullCollectionResponse)(nil), "flow.access.FullCollectionResponse") proto.RegisterType((*SendTransactionRequest)(nil), "flow.access.SendTransactionRequest") proto.RegisterType((*SendTransactionResponse)(nil), "flow.access.SendTransactionResponse") proto.RegisterType((*GetTransactionRequest)(nil), "flow.access.GetTransactionRequest") @@ -3079,155 +3167,158 @@ func init() { func init() { proto.RegisterFile("flow/access/access.proto", fileDescriptor_4382e32bb8e3e8e5) } var fileDescriptor_4382e32bb8e3e8e5 = []byte{ - // 2393 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xcc, 0x5b, 0xdd, 0x6f, 0x1c, 0x49, - 0x11, 0x57, 0x7b, 0x1d, 0x7f, 0x94, 0xd7, 0x4e, 0xd2, 0xf6, 0x39, 0xeb, 0x71, 0x6c, 0x6f, 0xc6, - 0xf6, 0xc5, 0x97, 0xe4, 0xd6, 0x91, 0x03, 0xba, 0xe4, 0xf8, 0x10, 0x76, 0xce, 0xe7, 0xb3, 0x94, - 0x9c, 0xac, 0xdd, 0x5c, 0xd0, 0x01, 0x77, 0xd6, 0x78, 0xa7, 0xbd, 0x1e, 0x65, 0x77, 0x66, 0x99, - 0x99, 0x4d, 0x62, 0x38, 0xa1, 0x7b, 0x88, 0x10, 0x12, 0x12, 0x1f, 0xe2, 0x01, 0x11, 0x89, 0x17, - 0x78, 0x02, 0x1e, 0x78, 0xe2, 0x01, 0x21, 0x84, 0x84, 0xe0, 0x0f, 0xe0, 0x2f, 0x02, 0x4d, 0x77, - 0xcf, 0xee, 0x74, 0x4f, 0x4f, 0xef, 0xec, 0x3a, 0xc1, 0x79, 0xb9, 0xf3, 0x4c, 0x57, 0x57, 0xfd, - 0xaa, 0xab, 0xba, 0xba, 0xe7, 0x57, 0x1b, 0x28, 0x1d, 0x37, 0xbd, 0x67, 0x9b, 0x56, 0xbd, 0x4e, - 0x82, 0x80, 0xff, 0xaf, 0xd2, 0xf6, 0xbd, 0xd0, 0xc3, 0x53, 0xd1, 0x48, 0x85, 0xbd, 0x32, 0x16, - 0xa9, 0x18, 0x71, 0x43, 0x27, 0x74, 0x08, 0x15, 0xf4, 0x3a, 0x6e, 0xc8, 0x24, 0x8d, 0xb2, 0x38, - 0x78, 0xd4, 0xf4, 0xea, 0x4f, 0x0e, 0x4f, 0x88, 0x65, 0x13, 0x9f, 0x4b, 0x2c, 0x28, 0x24, 0xf8, - 0xd0, 0xb2, 0x38, 0x54, 0xf7, 0x9a, 0x4d, 0x52, 0x0f, 0x1d, 0xcf, 0x55, 0x4f, 0x25, 0x4f, 0x49, - 0xd7, 0xee, 0x9a, 0x34, 0xf4, 0x9c, 0xd4, 0x3b, 0xd1, 0xcc, 0x43, 0x9f, 0x04, 0x9d, 0x66, 0x2c, - 0x75, 0x55, 0x94, 0x6a, 0x91, 0xd0, 0xb2, 0xad, 0xd0, 0xe2, 0xa3, 0xeb, 0xe2, 0xa8, 0xeb, 0xd9, - 0xe4, 0xf0, 0x29, 0xf1, 0x83, 0x48, 0x8d, 0xe3, 0x1e, 0x7b, 0x5c, 0x6c, 0x45, 0x14, 0x0b, 0x7d, - 0xcb, 0x0d, 0xac, 0x24, 0xcc, 0x95, 0x86, 0xe7, 0x35, 0x9a, 0x64, 0x93, 0x3e, 0x1d, 0x75, 0x8e, - 0x37, 0x43, 0xa7, 0x45, 0x82, 0xd0, 0x6a, 0xb5, 0x99, 0x80, 0x39, 0x0d, 0x53, 0x07, 0x8e, 0xdb, - 0xa8, 0x92, 0xef, 0x77, 0x48, 0x10, 0x9a, 0x33, 0x50, 0x64, 0x8f, 0x41, 0xdb, 0x73, 0x03, 0x62, - 0x2e, 0xc2, 0xc2, 0x1e, 0x09, 0x3f, 0xf6, 0x6c, 0xf2, 0x98, 0x59, 0xdf, 0x77, 0x8f, 0xbd, 0x58, - 0xf8, 0x00, 0x0c, 0xd5, 0x20, 0x9b, 0x8a, 0xb7, 0x60, 0x34, 0x42, 0x5a, 0x42, 0x65, 0xb4, 0x31, - 0xb5, 0xb5, 0x5c, 0xa1, 0x71, 0x8b, 0xa1, 0x56, 0xe4, 0x59, 0x54, 0xd6, 0x7c, 0x1f, 0x16, 0xf7, - 0x48, 0xf8, 0xc0, 0x0a, 0x49, 0x10, 0xee, 0x44, 0xd1, 0xf8, 0x88, 0x86, 0x8b, 0x1b, 0xc4, 0x8b, - 0x30, 0xe9, 0x04, 0x87, 0x01, 0xb1, 0x9a, 0xc4, 0xa6, 0x7a, 0x27, 0xaa, 0x13, 0x4e, 0x50, 0xa3, - 0xcf, 0xe6, 0x4d, 0x0a, 0x35, 0x31, 0x6b, 0xe7, 0x74, 0xff, 0x83, 0x78, 0xe6, 0x0c, 0x8c, 0x38, - 0x6c, 0x4a, 0xb1, 0x3a, 0xe2, 0xd8, 0xe6, 0x7b, 0xb0, 0x24, 0x0b, 0x7f, 0x44, 0x9c, 0xc6, 0x49, - 0x18, 0x4f, 0x98, 0x87, 0xb1, 0x13, 0xfa, 0x82, 0x4e, 0x1a, 0xad, 0xf2, 0x27, 0xf3, 0x6f, 0x08, - 0x66, 0x05, 0x64, 0xdc, 0xdb, 0xdb, 0x70, 0x81, 0xa6, 0x0f, 0x77, 0xd7, 0x90, 0xdc, 0x4d, 0x4e, - 0x61, 0x82, 0xf8, 0x1b, 0x50, 0x64, 0x29, 0x19, 0x84, 0x56, 0xd8, 0x09, 0x4a, 0x23, 0x65, 0xb4, - 0x31, 0xa3, 0x9e, 0x58, 0xa3, 0x12, 0xd5, 0xa9, 0xa3, 0xde, 0x03, 0xbe, 0x03, 0x13, 0x71, 0xce, - 0x94, 0x0a, 0xd4, 0xe6, 0x15, 0x69, 0xea, 0x43, 0x3e, 0x5c, 0xed, 0x0a, 0x9a, 0x36, 0xbc, 0x25, - 0xae, 0x6f, 0x9e, 0x95, 0xc5, 0x15, 0x98, 0x3d, 0xee, 0x34, 0x9b, 0x87, 0x0c, 0xae, 0xcf, 0x5d, - 0xa6, 0x80, 0x27, 0xaa, 0x97, 0xa3, 0x21, 0xae, 0x8b, 0x27, 0xcd, 0x27, 0x30, 0x1b, 0x2f, 0xae, - 0x26, 0x06, 0x03, 0xab, 0xb5, 0xe0, 0x4a, 0x4f, 0x6d, 0xae, 0x68, 0x0d, 0x6c, 0xe2, 0xcf, 0x08, - 0xa6, 0x85, 0x37, 0xf8, 0x86, 0x18, 0xd7, 0x39, 0x55, 0x78, 0xce, 0x33, 0xa2, 0x37, 0xa0, 0xb4, - 0x47, 0xc2, 0xfb, 0xdd, 0xf2, 0xa4, 0x4b, 0xfa, 0x17, 0x08, 0x70, 0x4f, 0xb2, 0xeb, 0xe2, 0x3d, - 0x80, 0x5e, 0x79, 0xe3, 0x7e, 0x2e, 0x48, 0x96, 0x13, 0xd3, 0x12, 0xc2, 0x02, 0xe4, 0x91, 0xbc, - 0x90, 0x1f, 0xc3, 0x7c, 0x8d, 0xb8, 0xf6, 0xa3, 0x5e, 0xb1, 0x8a, 0x01, 0x7f, 0x1d, 0xa6, 0x12, - 0x25, 0x2c, 0x63, 0x2b, 0x25, 0xe7, 0x25, 0xc5, 0xcd, 0xcf, 0xe1, 0x4a, 0x4a, 0x2f, 0x77, 0x51, - 0x4e, 0xbd, 0xa1, 0x70, 0xff, 0x13, 0xd1, 0xdd, 0xa3, 0xc0, 0x2d, 0xab, 0x5f, 0x80, 0x09, 0x96, - 0x08, 0x8e, 0x4d, 0xd5, 0x17, 0xab, 0xe3, 0xf4, 0x79, 0xdf, 0xc6, 0xab, 0x30, 0xdd, 0x5b, 0xbf, - 0x68, 0xbc, 0x40, 0xc7, 0x8b, 0xbd, 0x97, 0xfb, 0x36, 0xfe, 0x14, 0xe6, 0xe9, 0x81, 0x72, 0x48, - 0xdc, 0xba, 0x67, 0x3b, 0x6e, 0x23, 0xae, 0xfd, 0xa5, 0x51, 0x9a, 0x52, 0xab, 0x12, 0xd8, 0xdd, - 0x48, 0x78, 0x97, 0xcb, 0xf2, 0xaa, 0x5a, 0x9d, 0x23, 0x8a, 0xb7, 0xe6, 0x5d, 0x5a, 0x61, 0x6b, - 0xa7, 0x41, 0x48, 0x5a, 0x0a, 0x4f, 0x92, 0xc8, 0x91, 0x80, 0xdc, 0xfc, 0x0d, 0x82, 0x6b, 0xea, - 0xa9, 0xd1, 0xa9, 0xd6, 0x5f, 0x81, 0xc6, 0xab, 0x91, 0xb3, 0x7a, 0xf5, 0x47, 0x04, 0x57, 0xc5, - 0xd0, 0xec, 0x9c, 0xee, 0xbb, 0x36, 0x79, 0x9e, 0x03, 0xd6, 0x1c, 0x5c, 0x70, 0x22, 0x51, 0x8a, - 0x62, 0xba, 0xca, 0x1e, 0x34, 0x60, 0x0b, 0x67, 0x05, 0xfb, 0x6b, 0x04, 0x2b, 0x22, 0xd8, 0x60, - 0xe7, 0x94, 0x56, 0x85, 0xde, 0xd6, 0x3d, 0xb7, 0x65, 0x34, 0x52, 0x91, 0x0d, 0xba, 0xbb, 0xe8, - 0xdb, 0x30, 0x9b, 0xd8, 0x6f, 0xfc, 0x3a, 0x13, 0x94, 0x50, 0xb9, 0xb0, 0x31, 0xb5, 0xf5, 0x76, - 0x25, 0x71, 0x31, 0xab, 0x28, 0xf2, 0x83, 0x29, 0xa9, 0xe2, 0x30, 0x65, 0x60, 0xb8, 0xed, 0xf8, - 0x53, 0x04, 0x73, 0xc9, 0x35, 0xec, 0xc2, 0xfc, 0x26, 0x14, 0x13, 0x36, 0x62, 0x7c, 0xba, 0x32, - 0x22, 0xc8, 0x0f, 0x87, 0xe6, 0x27, 0x08, 0x66, 0x55, 0x95, 0xe7, 0x4c, 0x25, 0x6d, 0x38, 0x28, - 0x7f, 0x29, 0xc0, 0x42, 0xe6, 0xfa, 0xe3, 0xbb, 0x30, 0xc6, 0x8f, 0x27, 0x44, 0xd3, 0xa5, 0x9c, - 0x8d, 0x85, 0x1f, 0x52, 0x5c, 0x1e, 0xaf, 0xc0, 0x14, 0xfb, 0xeb, 0xb0, 0xee, 0xd9, 0x84, 0x6f, - 0x17, 0x60, 0xaf, 0xee, 0x7b, 0x36, 0x89, 0x6a, 0x1b, 0xf1, 0x7d, 0xcf, 0x3f, 0x6c, 0x91, 0x20, - 0xb0, 0x1a, 0x84, 0x6e, 0x95, 0xc9, 0x6a, 0x91, 0xbe, 0x7c, 0xc8, 0xde, 0xe1, 0x5b, 0x30, 0x46, - 0x73, 0x2f, 0x28, 0x8d, 0xd2, 0xb8, 0xcc, 0xa9, 0xd2, 0xb5, 0xca, 0x65, 0x84, 0x7d, 0x70, 0x41, - 0xdc, 0x07, 0xeb, 0x30, 0x93, 0xcc, 0x46, 0xc7, 0x2e, 0x8d, 0x51, 0x81, 0xe9, 0xc4, 0x5b, 0x55, - 0xc1, 0x1d, 0x57, 0x14, 0xdc, 0x6b, 0xf1, 0xc9, 0xcd, 0x6f, 0x11, 0x13, 0xf4, 0x16, 0xc1, 0x4e, - 0x67, 0x76, 0xd3, 0x10, 0x42, 0x31, 0x99, 0x33, 0x14, 0xf8, 0x26, 0x5c, 0xae, 0x7b, 0xad, 0x76, - 0x27, 0xb4, 0xa8, 0xf5, 0x0e, 0x5d, 0x15, 0xa0, 0xca, 0x2f, 0x25, 0x06, 0x3e, 0x89, 0xde, 0x9b, - 0xef, 0xc2, 0xe5, 0x3d, 0x12, 0x6e, 0xb3, 0x6f, 0x98, 0xb8, 0x10, 0x94, 0x60, 0xdc, 0xb2, 0x6d, - 0x9f, 0x04, 0x41, 0x5c, 0x07, 0xf8, 0xa3, 0xf9, 0x43, 0xc0, 0x49, 0xf1, 0xee, 0x3d, 0x74, 0x9c, - 0x7f, 0x05, 0xf1, 0x5c, 0x9b, 0x97, 0x50, 0xc6, 0x13, 0x62, 0xb1, 0xe1, 0x72, 0xec, 0x7d, 0x58, - 0xee, 0x19, 0xdf, 0x56, 0xdd, 0x28, 0xb3, 0x81, 0x3f, 0x87, 0x8b, 0xe7, 0x84, 0xfa, 0x33, 0x11, - 0xf5, 0x4e, 0x2f, 0xbc, 0x7d, 0x51, 0xa7, 0x52, 0x64, 0x24, 0x95, 0x22, 0xe6, 0xa7, 0x70, 0x6d, - 0x97, 0x7e, 0xec, 0x91, 0x5a, 0xdd, 0x77, 0xda, 0xea, 0x75, 0x99, 0x87, 0xb1, 0x80, 0x8e, 0x72, - 0x03, 0xfc, 0x09, 0x5f, 0x85, 0x49, 0xcb, 0x6f, 0x74, 0x5a, 0x74, 0x6b, 0x8c, 0x94, 0x0b, 0x1b, - 0xc5, 0x6a, 0xef, 0x85, 0xd9, 0x86, 0x25, 0x49, 0x75, 0xfe, 0x03, 0xa3, 0x67, 0x71, 0x24, 0xdb, - 0x62, 0x41, 0xb6, 0xf8, 0x45, 0xca, 0x19, 0xc5, 0x72, 0xc9, 0x8b, 0x82, 0xd2, 0xfb, 0x66, 0x38, - 0xeb, 0x3f, 0x47, 0xf0, 0x96, 0x60, 0xbe, 0x9b, 0x2a, 0x73, 0x70, 0xe1, 0xa9, 0xd5, 0xec, 0x10, - 0xee, 0x25, 0x7b, 0x18, 0x2a, 0x1d, 0xd4, 0xbb, 0xb3, 0x90, 0xb1, 0x3b, 0xff, 0x83, 0x68, 0xf2, - 0xd0, 0xf2, 0x14, 0x7c, 0xe8, 0xf9, 0x7c, 0x21, 0x2c, 0xb7, 0x41, 0xe2, 0xd5, 0xc0, 0x30, 0x1a, - 0x9e, 0xb6, 0x19, 0xb2, 0xc9, 0x2a, 0xfd, 0x3b, 0x5a, 0xa1, 0x20, 0xb4, 0xfc, 0x50, 0x4a, 0x1b, - 0xfa, 0x8e, 0xaf, 0xd0, 0x12, 0x00, 0x71, 0xed, 0x58, 0x80, 0xd9, 0x9f, 0x24, 0xae, 0xcd, 0x87, - 0x5f, 0xe3, 0x65, 0xf0, 0x0f, 0x88, 0xde, 0x06, 0xbb, 0x3e, 0xf1, 0x9c, 0x0a, 0x74, 0x0e, 0x2d, - 0xc2, 0x64, 0x9c, 0x68, 0x71, 0x9e, 0x4e, 0xf0, 0x4c, 0x0b, 0x5e, 0xe7, 0xad, 0xe9, 0x1f, 0x23, - 0x30, 0xc3, 0x80, 0x26, 0xce, 0xd6, 0x71, 0xf1, 0x0e, 0x62, 0x0a, 0x77, 0x10, 0x51, 0xba, 0xc2, - 0xcf, 0xc1, 0x78, 0xca, 0x50, 0x29, 0x63, 0xfc, 0x15, 0xc1, 0x18, 0x53, 0xa4, 0xdb, 0x71, 0xfd, - 0x6b, 0x45, 0xe2, 0x18, 0x2c, 0xe4, 0x38, 0x06, 0xef, 0xc3, 0x45, 0xa6, 0xb0, 0x4b, 0xdf, 0xd0, - 0xe0, 0x47, 0x37, 0x09, 0x46, 0xf0, 0x54, 0x62, 0x82, 0xa7, 0xf2, 0x28, 0x96, 0xa8, 0xce, 0xd0, - 0x29, 0xdd, 0x67, 0x73, 0x89, 0x06, 0xfb, 0x63, 0x12, 0x3e, 0xf3, 0xfc, 0x27, 0x07, 0x96, 0x6f, - 0xb5, 0x48, 0x48, 0xfc, 0x38, 0xd8, 0xe6, 0x3d, 0x7a, 0x85, 0x56, 0x0c, 0xf3, 0xd5, 0x5e, 0x80, - 0x89, 0xfa, 0x89, 0xe5, 0xb8, 0xb1, 0xbf, 0x93, 0xd5, 0x71, 0xfa, 0xbc, 0x6f, 0x9b, 0xd7, 0x61, - 0xbd, 0x4b, 0x2b, 0x1c, 0x44, 0x40, 0xea, 0x5e, 0x33, 0xba, 0x3c, 0x90, 0x9a, 0x6b, 0xb5, 0x83, - 0x13, 0x2f, 0xae, 0x17, 0xe6, 0x2e, 0x6c, 0xec, 0x11, 0xb5, 0xc8, 0x00, 0x57, 0x60, 0xf3, 0x01, - 0x5c, 0xcf, 0x56, 0x33, 0x68, 0x85, 0x8a, 0x3e, 0x8b, 0x97, 0x32, 0x50, 0x73, 0xd7, 0x2b, 0x80, - 0x03, 0xe2, 0x3b, 0x56, 0xd3, 0xf9, 0x01, 0xb1, 0xe3, 0x51, 0x0e, 0x4a, 0x31, 0x32, 0xdc, 0xe1, - 0xf4, 0x2d, 0x58, 0x8d, 0xf6, 0x62, 0xcc, 0x16, 0xb2, 0x2c, 0xeb, 0x6d, 0xca, 0x1c, 0xcb, 0xf2, - 0x7b, 0x14, 0xd7, 0x6c, 0xe5, 0x7c, 0xee, 0xcc, 0x3e, 0x5c, 0x92, 0x29, 0xc9, 0x0c, 0x8e, 0x4e, - 0xd2, 0x55, 0xbd, 0x48, 0xc4, 0x17, 0xc3, 0xf9, 0xb9, 0x49, 0xa9, 0x37, 0x49, 0xb7, 0x8e, 0xb6, - 0xf8, 0x2d, 0x82, 0x45, 0xa5, 0xf8, 0x1b, 0xe2, 0xd0, 0xdf, 0x11, 0xbc, 0x5d, 0xeb, 0x1c, 0x45, - 0xe7, 0xda, 0x11, 0xa1, 0xab, 0x1d, 0x7c, 0xe8, 0x7b, 0xad, 0x5a, 0x54, 0xe2, 0xa5, 0xe0, 0xad, - 0xc1, 0x0c, 0x3b, 0x0d, 0xa4, 0x10, 0xb2, 0x33, 0x62, 0x87, 0x97, 0x8f, 0x33, 0xf2, 0x48, 0x19, - 0xa4, 0x57, 0x21, 0x8b, 0xf4, 0xfa, 0x17, 0x82, 0xf5, 0x2c, 0xfc, 0xe2, 0x66, 0xba, 0x05, 0x38, - 0x09, 0x5f, 0xd8, 0x52, 0x97, 0x7a, 0x2e, 0xf0, 0x12, 0xf7, 0x7f, 0x76, 0xe3, 0x97, 0x08, 0xca, - 0x0a, 0x37, 0x58, 0x55, 0x8a, 0x3d, 0x90, 0x31, 0xa1, 0x57, 0x82, 0x29, 0x93, 0x4f, 0xdc, 0x85, - 0x2b, 0x12, 0xa4, 0x61, 0x88, 0x45, 0xf3, 0x57, 0x08, 0x6e, 0x89, 0x7a, 0x18, 0x95, 0x7c, 0xae, - 0x79, 0x66, 0xbe, 0x44, 0x70, 0x53, 0x8f, 0xea, 0xfc, 0xb2, 0xc7, 0x6c, 0xc8, 0x7b, 0x32, 0x81, - 0xed, 0x55, 0xa6, 0x84, 0x59, 0x83, 0x25, 0xa5, 0xa1, 0x44, 0x1f, 0x64, 0x8c, 0x35, 0x9d, 0x72, - 0xb4, 0x06, 0xb8, 0xa4, 0x22, 0xe0, 0x1f, 0x38, 0x0d, 0x12, 0x84, 0x6f, 0x5a, 0xc0, 0x65, 0x54, - 0x6f, 0x52, 0xc0, 0x13, 0xd8, 0x5e, 0x69, 0xc0, 0x7f, 0x87, 0xe4, 0x88, 0x73, 0x4b, 0xc9, 0x9b, - 0xd2, 0x19, 0x6e, 0x86, 0x8a, 0xbb, 0x5e, 0x61, 0xe0, 0xbb, 0xde, 0xbf, 0x11, 0xdc, 0xa8, 0x11, - 0xd7, 0xde, 0x76, 0xed, 0x2e, 0xd6, 0x14, 0xb3, 0x43, 0x82, 0x57, 0x42, 0xbc, 0xbf, 0x4e, 0x46, - 0xf2, 0x4f, 0x51, 0xca, 0xe5, 0xf1, 0xa3, 0x1f, 0x45, 0x89, 0xce, 0x48, 0x51, 0xae, 0xc2, 0x34, - 0x67, 0xb5, 0x0e, 0x7b, 0x6c, 0xf1, 0x68, 0xb5, 0xc8, 0x5f, 0x52, 0xb2, 0x79, 0xeb, 0xbf, 0xab, - 0x30, 0xb9, 0x4d, 0xb5, 0x6f, 0x1f, 0xec, 0xe3, 0xaf, 0xc1, 0xe8, 0x81, 0xe3, 0x36, 0x70, 0x49, - 0x30, 0x9b, 0xe8, 0xb6, 0x1a, 0x0b, 0x8a, 0x11, 0xee, 0x08, 0xa1, 0xec, 0x8e, 0xd4, 0x25, 0xc5, - 0xa2, 0x07, 0x99, 0x9d, 0x59, 0xe3, 0x7a, 0x5f, 0x39, 0x6e, 0xe6, 0x08, 0xe6, 0x54, 0x0d, 0x57, - 0xbc, 0x21, 0x2b, 0xc8, 0xea, 0xc9, 0x1a, 0x65, 0x41, 0x52, 0xd5, 0x1a, 0xfd, 0x9c, 0xba, 0x22, - 0x35, 0x66, 0xd3, 0xae, 0xa8, 0x3b, 0xb7, 0x39, 0xf4, 0x1f, 0xc3, 0xbc, 0xba, 0x97, 0x8b, 0x6f, - 0x68, 0x6d, 0x08, 0xc5, 0x2a, 0x87, 0x9d, 0x03, 0x98, 0x11, 0x17, 0x02, 0x9b, 0x9a, 0x55, 0x8a, - 0xf5, 0x1a, 0x69, 0xbd, 0x5d, 0x8d, 0x0f, 0xa0, 0x98, 0x6c, 0x94, 0xe2, 0xb2, 0x12, 0x6f, 0x72, - 0x35, 0x74, 0xda, 0x1e, 0xc1, 0x25, 0xb9, 0x3f, 0x8a, 0xd7, 0x32, 0x34, 0x8a, 0xbe, 0xeb, 0xb4, - 0x7e, 0x97, 0xb2, 0x92, 0x62, 0x83, 0x11, 0xaf, 0xcb, 0x6a, 0x95, 0x0d, 0x48, 0x63, 0x45, 0x10, - 0x53, 0xb4, 0x1e, 0xbf, 0x07, 0x17, 0xa5, 0x96, 0x1d, 0x5e, 0x15, 0xe6, 0xa8, 0x1b, 0x85, 0xc6, - 0x9a, 0x5e, 0x88, 0x6b, 0x7f, 0x4c, 0x03, 0x96, 0x54, 0x9e, 0x0a, 0x98, 0x42, 0x77, 0x59, 0x53, - 0x25, 0x92, 0x9b, 0x26, 0x55, 0x3f, 0x72, 0x69, 0xcf, 0x59, 0x83, 0x70, 0x9b, 0x7e, 0xac, 0xa7, - 0xc6, 0x79, 0x5b, 0x0b, 0xbf, 0xa3, 0x31, 0x25, 0xb6, 0xbe, 0x72, 0x5b, 0x7c, 0x46, 0xf9, 0xad, - 0x74, 0xfb, 0xa7, 0xfb, 0x61, 0x8e, 0x6f, 0x69, 0x8c, 0xa6, 0x5a, 0x58, 0x52, 0x0d, 0xd2, 0xb4, - 0x95, 0x9e, 0xd0, 0x16, 0xb6, 0x52, 0xd7, 0x80, 0x26, 0xaf, 0x65, 0x99, 0x0c, 0xa4, 0xd8, 0xa5, - 0x9a, 0x98, 0xe9, 0x82, 0x97, 0xd5, 0x22, 0xcd, 0x91, 0x1f, 0x21, 0xfd, 0x5d, 0x4c, 0x46, 0xa3, - 0x14, 0x57, 0x72, 0x58, 0x4a, 0x74, 0x54, 0x73, 0xc7, 0xef, 0x21, 0x40, 0x8f, 0xdc, 0xc6, 0xcb, - 0xb2, 0x15, 0xb1, 0xaf, 0x20, 0x6d, 0x4d, 0x45, 0x23, 0xc1, 0xa6, 0xbf, 0xb6, 0x50, 0x31, 0xfc, - 0xf8, 0x66, 0xc6, 0x5c, 0x15, 0xdf, 0x6d, 0x5c, 0x15, 0x84, 0xfb, 0x58, 0x49, 0xde, 0x07, 0xb3, - 0xad, 0xa4, 0x89, 0xe8, 0x3e, 0x56, 0xda, 0x60, 0x64, 0x13, 0xf3, 0x52, 0x40, 0xfa, 0x32, 0xf8, - 0x86, 0x99, 0x2d, 0xdf, 0xb5, 0x78, 0x02, 0xf3, 0x6a, 0xbe, 0x5e, 0x3a, 0x93, 0xb4, 0xa4, 0x7e, - 0x2e, 0x4b, 0x69, 0xdf, 0x92, 0x8b, 0x58, 0xe9, 0x6b, 0x4d, 0x5c, 0xc7, 0x3c, 0x16, 0xeb, 0x34, - 0x66, 0x2a, 0x22, 0x3c, 0x1d, 0x33, 0x0d, 0x5d, 0x6e, 0x2c, 0x6a, 0xd8, 0x5a, 0xfc, 0x19, 0xdd, - 0xa7, 0x29, 0x66, 0x3a, 0xbd, 0x4f, 0xb3, 0xc8, 0x6b, 0xbd, 0xfa, 0x27, 0x54, 0x7d, 0x8a, 0xec, - 0x4c, 0xab, 0xcf, 0xa2, 0x4b, 0x8d, 0x77, 0x72, 0x48, 0x72, 0x63, 0x5f, 0xb2, 0xd6, 0x81, 0x86, - 0x1f, 0xc5, 0x5b, 0xea, 0x9b, 0x84, 0x8e, 0x4c, 0x35, 0xc4, 0x4c, 0xd2, 0x33, 0x98, 0x3f, 0x66, - 0x3f, 0xde, 0xd0, 0x33, 0xaf, 0xf8, 0xab, 0x32, 0x8a, 0x5c, 0x4c, 0xed, 0x40, 0x40, 0x5e, 0x20, - 0x28, 0xf7, 0xe3, 0x6e, 0xf1, 0x57, 0x72, 0xe2, 0x10, 0x73, 0x77, 0x10, 0x18, 0x5f, 0xb2, 0x1f, - 0x8c, 0x64, 0xb2, 0xa5, 0xf8, 0x76, 0x2a, 0xcf, 0xfa, 0x10, 0xb3, 0x86, 0x6a, 0xab, 0xe9, 0x78, - 0x58, 0x97, 0x5e, 0x5b, 0x15, 0xc4, 0x66, 0xfa, 0xda, 0x9a, 0x4d, 0x96, 0x1a, 0x1b, 0x3a, 0xab, - 0x02, 0x4d, 0xfa, 0x23, 0x58, 0xe9, 0xc3, 0x52, 0xe2, 0x3b, 0xe2, 0xb5, 0x2a, 0x17, 0xa7, 0x29, - 0xdf, 0xc5, 0xd4, 0x74, 0xd7, 0x6d, 0x84, 0xbf, 0x80, 0x65, 0x3d, 0xcb, 0x28, 0x6d, 0x82, 0x5c, - 0x94, 0x64, 0x6e, 0xeb, 0x3e, 0x2c, 0x64, 0x92, 0x83, 0xf8, 0xdd, 0x7e, 0x86, 0x05, 0x02, 0x21, - 0xb7, 0xcd, 0x5f, 0xa4, 0x88, 0xd5, 0x0c, 0xda, 0x0e, 0xdf, 0xd3, 0x68, 0xd4, 0x53, 0x7d, 0x52, - 0xd6, 0x6b, 0xa9, 0xa8, 0xdb, 0x08, 0xff, 0x0c, 0xc1, 0x5a, 0x1e, 0xce, 0x0e, 0xdf, 0x1d, 0x00, - 0x91, 0x6e, 0x1b, 0xf6, 0x03, 0xf4, 0x02, 0xc9, 0x69, 0x99, 0x22, 0xea, 0xb4, 0x69, 0x99, 0x45, - 0xeb, 0x0d, 0x08, 0x23, 0x1d, 0xaa, 0x0c, 0xc2, 0x4d, 0x1b, 0x2a, 0x3d, 0x49, 0xa7, 0x85, 0x24, - 0x71, 0x48, 0xca, 0x50, 0xa9, 0xd9, 0x36, 0x6d, 0xa8, 0xb4, 0x04, 0xdd, 0x80, 0x80, 0xd2, 0xa1, - 0x4a, 0x51, 0x6c, 0xda, 0x50, 0x65, 0x11, 0x72, 0x03, 0xc2, 0x78, 0x89, 0x60, 0x35, 0x07, 0x25, - 0x84, 0xdf, 0x4b, 0x7d, 0x23, 0xe6, 0x23, 0xc3, 0x8c, 0xbb, 0x83, 0x4f, 0x8c, 0xc1, 0xed, 0x3c, - 0x00, 0xc3, 0xf3, 0x1b, 0x15, 0xcf, 0xa5, 0x2a, 0xba, 0x44, 0x1d, 0xd3, 0xf5, 0x9d, 0x4a, 0xc3, - 0x09, 0x4f, 0x3a, 0x47, 0x95, 0xba, 0xd7, 0xda, 0x64, 0x22, 0x9b, 0xf4, 0x3f, 0xdd, 0x5f, 0xe7, - 0x37, 0xbc, 0xcd, 0xc4, 0x3f, 0x7c, 0x38, 0x1a, 0xa3, 0x03, 0x77, 0xfe, 0x17, 0x00, 0x00, 0xff, - 0xff, 0x25, 0x13, 0xe5, 0x10, 0x0e, 0x31, 0x00, 0x00, + // 2433 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xcc, 0x5b, 0x5f, 0x6f, 0xdb, 0xc8, + 0x11, 0xc7, 0x5a, 0x8e, 0xff, 0x8c, 0x65, 0x27, 0x59, 0xfb, 0x1c, 0x99, 0x8e, 0x6d, 0x85, 0xb6, + 0x2f, 0xbe, 0x24, 0x27, 0x07, 0x49, 0x8b, 0x4b, 0xae, 0x7f, 0x50, 0x3b, 0xe7, 0xf8, 0x0c, 0x24, + 0x07, 0x83, 0xca, 0xa5, 0xb8, 0xb6, 0x77, 0x06, 0x2d, 0xae, 0x65, 0x22, 0x12, 0xa9, 0x92, 0x54, + 0x12, 0xb7, 0x87, 0xe2, 0x1e, 0x82, 0xa2, 0x40, 0xd1, 0x7f, 0xe8, 0x43, 0xd1, 0x00, 0x7d, 0x69, + 0x9f, 0xda, 0x3e, 0xf4, 0xa9, 0x0f, 0x45, 0x51, 0x14, 0x28, 0xda, 0x0f, 0xd0, 0x6f, 0xd1, 0x8f, + 0x51, 0x70, 0xb9, 0xa4, 0xb8, 0xcb, 0xe5, 0x8a, 0x92, 0x93, 0x73, 0x5e, 0x12, 0x93, 0x3b, 0x3b, + 0xf3, 0x9b, 0x9d, 0xd9, 0xd9, 0xd5, 0x6f, 0x24, 0xa8, 0x1c, 0xb5, 0xdc, 0x67, 0x9b, 0x66, 0xa3, + 0x41, 0x7c, 0x9f, 0xfd, 0x57, 0xeb, 0x78, 0x6e, 0xe0, 0xe2, 0xa9, 0x70, 0xa4, 0x16, 0xbd, 0xd2, + 0x16, 0xa9, 0x18, 0x71, 0x02, 0x3b, 0xb0, 0x09, 0x15, 0x74, 0xbb, 0x4e, 0x10, 0x49, 0x6a, 0x55, + 0x7e, 0xf0, 0xb0, 0xe5, 0x36, 0x9e, 0x1c, 0x1c, 0x13, 0xd3, 0x22, 0x1e, 0x93, 0x58, 0x90, 0x48, + 0xb0, 0xa1, 0x65, 0x7e, 0xa8, 0xe1, 0xb6, 0x5a, 0xa4, 0x11, 0xd8, 0xae, 0x23, 0x9f, 0x4a, 0x9e, + 0x92, 0xc4, 0xee, 0x9a, 0x30, 0xf4, 0x9c, 0x34, 0xba, 0xe1, 0xcc, 0x03, 0x8f, 0xf8, 0xdd, 0x56, + 0x2c, 0x75, 0x99, 0x97, 0x6a, 0x93, 0xc0, 0xb4, 0xcc, 0xc0, 0x64, 0xa3, 0xeb, 0xfc, 0xa8, 0xe3, + 0x5a, 0xe4, 0xe0, 0x29, 0xf1, 0xfc, 0x50, 0x8d, 0xed, 0x1c, 0xb9, 0x4c, 0x6c, 0x85, 0x17, 0x0b, + 0x3c, 0xd3, 0xf1, 0xcd, 0x34, 0xcc, 0x95, 0xa6, 0xeb, 0x36, 0x5b, 0x64, 0x93, 0x3e, 0x1d, 0x76, + 0x8f, 0x36, 0x03, 0xbb, 0x4d, 0xfc, 0xc0, 0x6c, 0x77, 0x22, 0x01, 0x7d, 0x1a, 0xa6, 0xf6, 0x6d, + 0xa7, 0x69, 0x90, 0xef, 0x77, 0x89, 0x1f, 0xe8, 0x33, 0x50, 0x8e, 0x1e, 0xfd, 0x8e, 0xeb, 0xf8, + 0x44, 0x5f, 0x84, 0x85, 0x5d, 0x12, 0x7c, 0xe4, 0x5a, 0xe4, 0x71, 0x64, 0x7d, 0xcf, 0x39, 0x72, + 0x63, 0xe1, 0x7d, 0xd0, 0x64, 0x83, 0xd1, 0x54, 0x7c, 0x0b, 0x46, 0x43, 0xa4, 0x15, 0x54, 0x45, + 0x1b, 0x53, 0xb7, 0x96, 0x6b, 0x34, 0x6e, 0x31, 0xd4, 0x9a, 0x38, 0x8b, 0xca, 0xea, 0xef, 0xc3, + 0xe2, 0x2e, 0x09, 0x1e, 0x98, 0x01, 0xf1, 0x83, 0xed, 0x30, 0x1a, 0x1f, 0xd2, 0x70, 0x31, 0x83, + 0x78, 0x11, 0x26, 0x6d, 0xff, 0xc0, 0x27, 0x66, 0x8b, 0x58, 0x54, 0xef, 0x84, 0x31, 0x61, 0xfb, + 0x75, 0xfa, 0xac, 0x5f, 0xa7, 0x50, 0x53, 0xb3, 0xb6, 0x4f, 0xf6, 0x3e, 0x88, 0x67, 0xce, 0xc0, + 0x88, 0x1d, 0x4d, 0x29, 0x1b, 0x23, 0xb6, 0xa5, 0xbf, 0x07, 0x4b, 0xa2, 0xf0, 0x87, 0xc4, 0x6e, + 0x1e, 0x07, 0xf1, 0x84, 0x79, 0x18, 0x3b, 0xa6, 0x2f, 0xe8, 0xa4, 0x51, 0x83, 0x3d, 0xe9, 0x7f, + 0x47, 0x30, 0xcb, 0x21, 0x63, 0xde, 0xde, 0x84, 0x73, 0x34, 0x7d, 0x98, 0xbb, 0x9a, 0xe0, 0x6e, + 0x7a, 0x4a, 0x24, 0x88, 0xbf, 0x01, 0xe5, 0x28, 0x25, 0xfd, 0xc0, 0x0c, 0xba, 0x7e, 0x65, 0xa4, + 0x8a, 0x36, 0x66, 0xe4, 0x13, 0xeb, 0x54, 0xc2, 0x98, 0x3a, 0xec, 0x3d, 0xe0, 0xdb, 0x30, 0x11, + 0xe7, 0x4c, 0xa5, 0x44, 0x6d, 0x5e, 0x12, 0xa6, 0x3e, 0x64, 0xc3, 0x46, 0x22, 0xa8, 0x5b, 0xf0, + 0x16, 0xbf, 0xbe, 0x45, 0x56, 0x16, 0xd7, 0x60, 0xf6, 0xa8, 0xdb, 0x6a, 0x1d, 0x44, 0x70, 0x3d, + 0xe6, 0x32, 0x05, 0x3c, 0x61, 0x5c, 0x0c, 0x87, 0x98, 0x2e, 0x96, 0x34, 0x1f, 0xc3, 0x6c, 0xbc, + 0xb8, 0x8a, 0x18, 0x0c, 0xac, 0xd6, 0x84, 0x4b, 0x3d, 0xb5, 0x85, 0xa2, 0x35, 0xb0, 0x89, 0xbf, + 0x20, 0x98, 0xe6, 0xde, 0xe0, 0x6b, 0x7c, 0x5c, 0xe7, 0x64, 0xe1, 0x39, 0xcb, 0x88, 0x5e, 0x83, + 0xca, 0x2e, 0x09, 0xee, 0x25, 0xe5, 0x49, 0x95, 0xf4, 0x35, 0xb8, 0xbc, 0x4b, 0x82, 0xfb, 0xdd, + 0x56, 0xab, 0x98, 0xfc, 0x0b, 0x04, 0xb8, 0x27, 0x99, 0x2c, 0xc9, 0x5d, 0x80, 0x5e, 0x39, 0x64, + 0xeb, 0xb2, 0x20, 0x20, 0x4d, 0x4d, 0x4b, 0x09, 0x73, 0x2e, 0x8e, 0x14, 0x75, 0xf1, 0x67, 0x08, + 0xe6, 0x79, 0xd0, 0x09, 0x94, 0x6f, 0x42, 0x39, 0x55, 0xf3, 0xfc, 0x0a, 0xaa, 0x96, 0x24, 0x9b, + 0xef, 0x51, 0x4f, 0xc4, 0xe0, 0xe4, 0x87, 0xc3, 0xf3, 0x18, 0xe6, 0xeb, 0xc4, 0xb1, 0xd2, 0x5a, + 0xd9, 0x02, 0x7e, 0x1d, 0xa6, 0x52, 0xea, 0x73, 0x4a, 0x41, 0x7a, 0x5e, 0x5a, 0x5c, 0xff, 0x0c, + 0x2e, 0x65, 0xf4, 0x32, 0x3f, 0xc5, 0xad, 0x33, 0x14, 0xee, 0x7f, 0x21, 0xba, 0xfb, 0x25, 0xb8, + 0x45, 0xf5, 0x0b, 0x30, 0x11, 0x25, 0xb2, 0x6d, 0x51, 0xf5, 0x65, 0x63, 0x9c, 0x3e, 0xef, 0x59, + 0x78, 0x15, 0xa6, 0x7b, 0xf1, 0x0c, 0xc7, 0x4b, 0x74, 0xbc, 0xdc, 0x7b, 0xb9, 0x67, 0xe1, 0x4f, + 0x60, 0x9e, 0x1e, 0x88, 0x07, 0xc4, 0x69, 0xb8, 0x96, 0xed, 0x34, 0xe3, 0xb3, 0xab, 0x32, 0x4a, + 0xb7, 0xc4, 0xaa, 0x00, 0x76, 0x27, 0x14, 0xde, 0x61, 0xb2, 0xec, 0x54, 0x30, 0xe6, 0x88, 0xe4, + 0xad, 0x7e, 0x87, 0x9e, 0x10, 0xf5, 0x13, 0x3f, 0x20, 0x6d, 0x89, 0x27, 0x69, 0xe4, 0x88, 0x43, + 0xae, 0xff, 0x16, 0xc1, 0x15, 0xf9, 0xd4, 0xf0, 0x54, 0xee, 0xaf, 0x40, 0xe1, 0xd5, 0xc8, 0x69, + 0xbd, 0xfa, 0x13, 0xa2, 0x5b, 0x33, 0x85, 0x6a, 0xfb, 0x64, 0xcf, 0xb1, 0xc8, 0xf3, 0x02, 0xb0, + 0xe6, 0xe0, 0x9c, 0x1d, 0x8a, 0x52, 0x14, 0xd3, 0x46, 0xf4, 0xa0, 0x00, 0x5b, 0x3a, 0x2d, 0xd8, + 0xdf, 0x20, 0x58, 0xe1, 0xc1, 0xfa, 0xdb, 0x27, 0xb4, 0xaa, 0xf5, 0x4a, 0xc9, 0x99, 0x2d, 0xa3, + 0x96, 0x89, 0xac, 0x9f, 0xec, 0xa2, 0x6f, 0xc3, 0x6c, 0x6a, 0xbf, 0xb1, 0xeb, 0x58, 0x5c, 0x34, + 0xde, 0xae, 0xa5, 0x2e, 0x96, 0x35, 0x49, 0x7e, 0x44, 0x4a, 0x0c, 0x1c, 0x64, 0x0c, 0x0c, 0xb7, + 0x1d, 0x7f, 0x8a, 0x60, 0x2e, 0xbd, 0x86, 0x67, 0x5b, 0xd4, 0x7e, 0x82, 0x60, 0x56, 0x56, 0x79, + 0x4e, 0x55, 0xd2, 0x86, 0x83, 0xf2, 0xd7, 0x12, 0x2c, 0xe4, 0xae, 0x3f, 0xbe, 0x03, 0x63, 0xec, + 0x78, 0x45, 0x34, 0x5d, 0xaa, 0xf9, 0x58, 0xd8, 0x21, 0xcb, 0xe4, 0xf1, 0x0a, 0x4c, 0x45, 0x7f, + 0x1d, 0x34, 0x5c, 0x8b, 0xb0, 0xed, 0x02, 0xd1, 0xab, 0x7b, 0xae, 0x45, 0xc2, 0xda, 0x46, 0x3c, + 0xcf, 0xf5, 0x0e, 0xda, 0xc4, 0xf7, 0xcd, 0x26, 0xa1, 0x5b, 0x65, 0xd2, 0x28, 0xd3, 0x97, 0x0f, + 0xa3, 0x77, 0xf8, 0x06, 0x8c, 0xd1, 0xdc, 0xf3, 0x2b, 0xa3, 0x34, 0x2e, 0x73, 0xb2, 0x74, 0x35, + 0x98, 0x0c, 0xb7, 0x0f, 0xce, 0xf1, 0xfb, 0x60, 0x1d, 0x66, 0xd2, 0xd9, 0x68, 0x5b, 0x95, 0x31, + 0x2a, 0x30, 0x9d, 0x7a, 0x2b, 0x2b, 0xb8, 0xe3, 0x92, 0x82, 0x7b, 0x25, 0xbe, 0x79, 0xb0, 0x5b, + 0xd0, 0x04, 0xbd, 0x05, 0x45, 0xb7, 0x8b, 0xe8, 0xa6, 0xc4, 0x85, 0x62, 0xb2, 0x60, 0x28, 0xf0, + 0x75, 0xb8, 0xd8, 0x70, 0xdb, 0x9d, 0x6e, 0x60, 0x52, 0xeb, 0x5d, 0xba, 0x2a, 0x40, 0x95, 0x5f, + 0x48, 0x0d, 0x7c, 0x1c, 0xbe, 0xd7, 0xdf, 0x85, 0x8b, 0xbb, 0x24, 0xd8, 0x8a, 0x3e, 0x83, 0xc5, + 0x85, 0xa0, 0x02, 0xe3, 0xa6, 0x65, 0x79, 0xc4, 0xf7, 0xe3, 0x3a, 0xc0, 0x1e, 0xf5, 0x1f, 0x02, + 0x4e, 0x8b, 0x27, 0xf7, 0xe8, 0x71, 0xf6, 0x29, 0x8e, 0xe5, 0xda, 0xbc, 0x80, 0x32, 0x9e, 0x10, + 0x8b, 0x0d, 0x97, 0x63, 0xef, 0xc3, 0x72, 0xcf, 0xf8, 0x96, 0xec, 0x46, 0x9c, 0x0f, 0xfc, 0x39, + 0x9c, 0x3f, 0x23, 0xd4, 0x9f, 0xf2, 0xa8, 0xb7, 0x7b, 0xe1, 0xed, 0x8b, 0x3a, 0x93, 0x22, 0x23, + 0x99, 0x14, 0xd1, 0x3f, 0x81, 0x2b, 0x3b, 0xf4, 0xc3, 0x2a, 0xa9, 0x37, 0x3c, 0xbb, 0x23, 0x5f, + 0x97, 0x79, 0x18, 0xf3, 0xe9, 0x28, 0x33, 0xc0, 0x9e, 0xf0, 0x65, 0x98, 0x34, 0xbd, 0x66, 0xb7, + 0x4d, 0xb7, 0xc6, 0x48, 0xb5, 0xb4, 0x51, 0x36, 0x7a, 0x2f, 0xf4, 0x0e, 0x2c, 0x09, 0xaa, 0x8b, + 0x1f, 0x18, 0x3d, 0x8b, 0x23, 0xf9, 0x16, 0x4b, 0xa2, 0xc5, 0xcf, 0x33, 0xce, 0x48, 0x96, 0x4b, + 0x5c, 0x14, 0x94, 0xdd, 0x37, 0xc3, 0x59, 0xff, 0x05, 0x82, 0xb7, 0x38, 0xf3, 0x49, 0xaa, 0xcc, + 0xc1, 0xb9, 0xa7, 0x66, 0xab, 0x4b, 0x98, 0x97, 0xd1, 0xc3, 0x50, 0xe9, 0x20, 0xdf, 0x9d, 0xa5, + 0x9c, 0xdd, 0xf9, 0x5f, 0x44, 0x93, 0x87, 0x96, 0x27, 0xff, 0xbe, 0xeb, 0xb1, 0x85, 0x30, 0x9d, + 0x26, 0x89, 0x57, 0x03, 0xc3, 0x68, 0x70, 0xd2, 0x89, 0x90, 0x4d, 0x1a, 0xf4, 0xef, 0x70, 0x85, + 0xfc, 0xc0, 0xf4, 0x02, 0x21, 0x6d, 0xe8, 0x3b, 0xb6, 0x42, 0x4b, 0x00, 0xc4, 0xb1, 0x62, 0x81, + 0xc8, 0xfe, 0x24, 0x71, 0x2c, 0x36, 0xfc, 0x1a, 0x2f, 0x83, 0x7f, 0x44, 0xf4, 0x36, 0x98, 0xf8, + 0xc4, 0x72, 0xca, 0x57, 0x39, 0xb4, 0x08, 0x93, 0x71, 0xa2, 0xc5, 0x79, 0x3a, 0xc1, 0x32, 0xcd, + 0x7f, 0x9d, 0xb7, 0xa6, 0x7f, 0x8e, 0xc0, 0x4c, 0x04, 0x34, 0x75, 0xb6, 0x8e, 0xf3, 0x77, 0x10, + 0x9d, 0xbb, 0x83, 0xf0, 0xd2, 0x35, 0x76, 0x0e, 0xc6, 0x53, 0x86, 0x4a, 0x19, 0xed, 0x6f, 0x08, + 0xc6, 0x22, 0x45, 0xaa, 0x1d, 0xd7, 0xbf, 0x56, 0xa4, 0x8e, 0xc1, 0x52, 0x81, 0x63, 0xf0, 0x1e, + 0x9c, 0x8f, 0x14, 0x26, 0xf4, 0x13, 0x0d, 0x7e, 0x78, 0x93, 0x88, 0x08, 0xaa, 0x5a, 0x4c, 0x50, + 0xd5, 0x1e, 0xc5, 0x12, 0xc6, 0x0c, 0x9d, 0x92, 0x3c, 0xeb, 0x4b, 0x34, 0xd8, 0x1f, 0x91, 0xe0, + 0x99, 0xeb, 0x3d, 0xd9, 0x37, 0x3d, 0xb3, 0x4d, 0x02, 0xe2, 0xc5, 0xc1, 0xd6, 0xef, 0xd2, 0x2b, + 0xb4, 0x64, 0x98, 0xad, 0xf6, 0x02, 0x4c, 0x34, 0x8e, 0x4d, 0xdb, 0x89, 0xfd, 0x9d, 0x34, 0xc6, + 0xe9, 0xf3, 0x9e, 0xa5, 0x5f, 0x85, 0xf5, 0x84, 0x16, 0xd9, 0x0f, 0x81, 0x34, 0xdc, 0x56, 0x78, + 0x79, 0x20, 0x75, 0xc7, 0xec, 0xf8, 0xc7, 0x6e, 0x5c, 0x2f, 0xf4, 0x1d, 0xd8, 0xd8, 0x25, 0x72, + 0x91, 0x01, 0xae, 0xc0, 0xfa, 0x03, 0xb8, 0x9a, 0xaf, 0x66, 0xd0, 0x0a, 0x15, 0x7e, 0x4c, 0x5f, + 0xca, 0x41, 0xcd, 0x5c, 0xaf, 0x01, 0xf6, 0x89, 0x67, 0x9b, 0x2d, 0xfb, 0x07, 0xc4, 0x8a, 0x47, + 0x19, 0x28, 0xc9, 0xc8, 0x70, 0x87, 0xd3, 0xb7, 0x60, 0x35, 0xdc, 0x8b, 0x31, 0xdb, 0x19, 0x65, + 0x59, 0x6f, 0x53, 0x16, 0x58, 0x96, 0x3f, 0xa0, 0xb8, 0x66, 0x4b, 0xe7, 0x33, 0x67, 0xf6, 0xe0, + 0x82, 0x48, 0xa9, 0xe6, 0x70, 0x8c, 0x82, 0x2e, 0xe3, 0x3c, 0xe1, 0x5f, 0x0c, 0xe7, 0xe7, 0x26, + 0xa5, 0x0e, 0x05, 0xdd, 0x2a, 0x1a, 0xe5, 0x77, 0x08, 0x16, 0xa5, 0xe2, 0x6f, 0x88, 0x43, 0xff, + 0x40, 0xf0, 0x76, 0xbd, 0x7b, 0x18, 0x9e, 0x6b, 0x87, 0x84, 0xae, 0xb6, 0x7f, 0xdf, 0x73, 0xdb, + 0xf5, 0xb0, 0xc4, 0x0b, 0xc1, 0x5b, 0x83, 0x99, 0xe8, 0x34, 0x10, 0x42, 0x18, 0x9d, 0x11, 0xdb, + 0xac, 0x7c, 0x9c, 0x92, 0x07, 0xcb, 0x21, 0xed, 0x4a, 0x79, 0xa4, 0xdd, 0xbf, 0x11, 0xac, 0xe7, + 0xe1, 0xe7, 0x37, 0xd3, 0x0d, 0xc0, 0x69, 0xf8, 0xdc, 0x96, 0xba, 0xd0, 0x73, 0x81, 0x95, 0xb8, + 0x2f, 0xd9, 0x8d, 0x5f, 0x21, 0xa8, 0x4a, 0xdc, 0x88, 0xaa, 0x52, 0xec, 0x81, 0x88, 0x09, 0xbd, + 0x12, 0x4c, 0xb9, 0x7c, 0xe8, 0x0e, 0x5c, 0x12, 0x20, 0x0d, 0x43, 0x8c, 0xea, 0xbf, 0x46, 0x70, + 0x83, 0xd7, 0x13, 0x51, 0xe1, 0x67, 0x9a, 0x67, 0xfa, 0x4b, 0x04, 0xd7, 0xd5, 0xa8, 0xce, 0x2e, + 0x7b, 0xf4, 0xa6, 0xb8, 0x27, 0x53, 0xd8, 0x5e, 0x65, 0x4a, 0xe8, 0x75, 0x58, 0x92, 0x1a, 0x4a, + 0xf5, 0x71, 0xc6, 0xa2, 0xa6, 0x59, 0x81, 0xd6, 0x06, 0x93, 0x94, 0x04, 0xfc, 0x03, 0xbb, 0x49, + 0xfc, 0xe0, 0x4d, 0x0b, 0xb8, 0x88, 0xea, 0x4d, 0x0a, 0x78, 0x0a, 0xdb, 0x2b, 0x0d, 0xf8, 0xef, + 0x91, 0x18, 0x71, 0x66, 0x29, 0x7d, 0x53, 0x3a, 0xc5, 0xcd, 0x50, 0x72, 0xd7, 0x2b, 0x0d, 0x7c, + 0xd7, 0xfb, 0x0f, 0x82, 0x6b, 0x75, 0xe2, 0x58, 0x5b, 0x8e, 0x95, 0x60, 0xcd, 0x30, 0x3b, 0xc4, + 0x7f, 0x25, 0xc4, 0xfb, 0xeb, 0x64, 0x24, 0xff, 0x1c, 0xa6, 0x5c, 0x11, 0x3f, 0xfa, 0x51, 0x94, + 0xe8, 0x94, 0x14, 0xe5, 0x2a, 0x4c, 0x33, 0x56, 0xeb, 0xa0, 0xc7, 0x16, 0x8f, 0x1a, 0x65, 0xf6, + 0x92, 0x92, 0xcd, 0xb7, 0xfe, 0xb7, 0x06, 0x93, 0x5b, 0x54, 0xfb, 0xd6, 0xfe, 0x1e, 0xfe, 0x1a, + 0x8c, 0xee, 0xdb, 0x4e, 0x13, 0x57, 0x38, 0xb3, 0xa9, 0x6e, 0xb1, 0xb6, 0x20, 0x19, 0x61, 0x8e, + 0x10, 0xca, 0xee, 0x08, 0x5d, 0x5e, 0xcc, 0x7b, 0x90, 0xdb, 0x59, 0xd6, 0xae, 0xf6, 0x95, 0x63, + 0x66, 0x0e, 0x61, 0x4e, 0xd6, 0x30, 0xc6, 0x1b, 0xa2, 0x82, 0xbc, 0x9e, 0xb2, 0x56, 0xe5, 0x24, + 0x65, 0xad, 0xdd, 0xcf, 0xa8, 0x2b, 0x42, 0x63, 0x39, 0xeb, 0x8a, 0xbc, 0xf3, 0x5c, 0x40, 0xff, + 0x11, 0xcc, 0xcb, 0x7b, 0xd1, 0xf8, 0x9a, 0xd2, 0x06, 0x57, 0xac, 0x0a, 0xd8, 0xd9, 0x87, 0x19, + 0x7e, 0x21, 0xb0, 0xae, 0x58, 0xa5, 0x58, 0xaf, 0x96, 0xd5, 0x9b, 0x68, 0x7c, 0x00, 0xe5, 0x74, + 0xa3, 0x17, 0x57, 0xa5, 0x78, 0xd3, 0xab, 0xa1, 0xd2, 0xf6, 0x08, 0x2e, 0x88, 0xfd, 0x5d, 0xbc, + 0x96, 0xa3, 0x91, 0xf7, 0x5d, 0xa5, 0xf5, 0xbb, 0x94, 0x95, 0xe4, 0x1b, 0x9e, 0x78, 0x5d, 0x54, + 0x2b, 0x6d, 0x88, 0x6a, 0x2b, 0x9c, 0x98, 0xa4, 0xff, 0xd8, 0xa4, 0x1d, 0xb5, 0x6c, 0x47, 0x15, + 0xbf, 0x23, 0x1a, 0xc8, 0xed, 0xba, 0x6a, 0xab, 0x9c, 0x68, 0x4e, 0xa3, 0xf3, 0x7b, 0x70, 0x5e, + 0xe8, 0x0d, 0x62, 0x7e, 0x9e, 0xbc, 0x23, 0xa9, 0xad, 0xa9, 0x85, 0x98, 0xf6, 0xc7, 0x34, 0x33, + 0xd2, 0xca, 0x33, 0x99, 0x21, 0xd1, 0x5d, 0x55, 0x94, 0xa3, 0xf4, 0xee, 0xcc, 0x14, 0xaa, 0x42, + 0xda, 0x0b, 0x16, 0x3b, 0xdc, 0xa1, 0xac, 0x40, 0x66, 0x9c, 0xf5, 0xcf, 0xb2, 0x81, 0xc8, 0xed, + 0xb1, 0x15, 0xb6, 0xf8, 0x8c, 0x12, 0x69, 0xd9, 0x3e, 0x53, 0xc2, 0x00, 0xe0, 0x1b, 0x0a, 0xa3, + 0x99, 0x5e, 0x99, 0x50, 0xec, 0x14, 0xfd, 0xab, 0x27, 0xb4, 0xd7, 0x2f, 0xd5, 0x35, 0xa0, 0xc9, + 0x2b, 0x79, 0x26, 0x7d, 0x21, 0x76, 0x99, 0x6e, 0x69, 0xb6, 0xb2, 0xe6, 0xf5, 0x62, 0x0b, 0xe4, + 0x47, 0x40, 0xbf, 0x40, 0x94, 0xd3, 0x91, 0xc5, 0xb5, 0x02, 0x96, 0x52, 0xad, 0xdb, 0xc2, 0xf1, + 0x7b, 0x08, 0xd0, 0x63, 0xd1, 0xf1, 0xb2, 0x68, 0x85, 0x6f, 0x60, 0x08, 0x35, 0x40, 0xd2, 0xb1, + 0xb0, 0xe8, 0xd7, 0x52, 0x64, 0xad, 0x04, 0x7c, 0x3d, 0x67, 0xae, 0x8c, 0x58, 0xd7, 0x2e, 0x73, + 0xc2, 0x7d, 0xac, 0xa4, 0x2f, 0x9e, 0xf9, 0x56, 0xb2, 0x8c, 0x77, 0x1f, 0x2b, 0x1d, 0xd0, 0xf2, + 0x3b, 0x00, 0x42, 0x40, 0xfa, 0xb6, 0x0a, 0x34, 0x3d, 0x5f, 0x3e, 0xb1, 0x78, 0x0c, 0xf3, 0xf2, + 0xc6, 0x80, 0x70, 0xf8, 0x29, 0xbb, 0x07, 0x85, 0x2c, 0x65, 0x7d, 0x4b, 0x2f, 0x62, 0xad, 0xaf, + 0x35, 0x7e, 0x1d, 0x8b, 0x58, 0x6c, 0xd0, 0x98, 0xc9, 0x18, 0xf7, 0x6c, 0xcc, 0x14, 0xbc, 0xbc, + 0xb6, 0xa8, 0xa0, 0x85, 0xf1, 0xa7, 0x74, 0x9f, 0x66, 0x28, 0xf0, 0xec, 0x3e, 0xcd, 0x63, 0xc9, + 0xd5, 0xea, 0x9f, 0x50, 0xf5, 0x19, 0x56, 0x35, 0xab, 0x3e, 0x8f, 0x97, 0xd5, 0xde, 0x29, 0x20, + 0xc9, 0x8c, 0x7d, 0x11, 0xf5, 0x28, 0x14, 0x44, 0x2c, 0xbe, 0x25, 0xbf, 0xb2, 0xa8, 0x58, 0x5b, + 0x8d, 0xcf, 0x24, 0x35, 0x55, 0xfa, 0xe3, 0xe8, 0x5b, 0x22, 0x6a, 0x8a, 0x17, 0x7f, 0x55, 0x44, + 0x51, 0x88, 0x12, 0x1e, 0x08, 0xc8, 0x0b, 0x04, 0xd5, 0x7e, 0x24, 0x31, 0xfe, 0x4a, 0x41, 0x1c, + 0x7c, 0xee, 0x0e, 0x02, 0xe3, 0x8b, 0xe8, 0x9b, 0x29, 0xb9, 0xb4, 0x2c, 0xbe, 0x99, 0xc9, 0xb3, + 0x3e, 0x0c, 0xb0, 0x26, 0xdb, 0x6a, 0x2a, 0xc2, 0xd7, 0xa1, 0xf7, 0x63, 0x09, 0x83, 0x9a, 0xbd, + 0x1f, 0xe7, 0xb3, 0xb2, 0xda, 0x86, 0xca, 0x2a, 0xc7, 0xc7, 0xfe, 0x08, 0x56, 0xfa, 0xd0, 0xa1, + 0xf8, 0x36, 0x7f, 0xad, 0x2a, 0x44, 0x9e, 0x8a, 0x77, 0x31, 0x39, 0xaf, 0x76, 0x13, 0xe1, 0xcf, + 0x61, 0x59, 0x4d, 0x67, 0x0a, 0x9b, 0xa0, 0x10, 0xf7, 0x59, 0xd8, 0xba, 0x07, 0x0b, 0xb9, 0x2c, + 0x24, 0x7e, 0xb7, 0x9f, 0x61, 0x8e, 0xa9, 0x28, 0x6c, 0xf3, 0x97, 0x19, 0x06, 0x37, 0x87, 0x1f, + 0xc4, 0x77, 0x15, 0x1a, 0xd5, 0x9c, 0xa2, 0x90, 0xf5, 0x4a, 0xce, 0xeb, 0x26, 0xc2, 0x3f, 0x47, + 0xb0, 0x56, 0x84, 0x1c, 0xc4, 0x77, 0x06, 0x40, 0xa4, 0xda, 0x86, 0xfd, 0x00, 0xbd, 0x40, 0x62, + 0x5a, 0x66, 0x18, 0x41, 0x65, 0x5a, 0xe6, 0xf1, 0x87, 0x03, 0xc2, 0xc8, 0x86, 0x2a, 0x87, 0xd9, + 0x53, 0x86, 0x4a, 0xcd, 0x06, 0x2a, 0x21, 0x09, 0x64, 0x95, 0x34, 0x54, 0x72, 0x5a, 0x4f, 0x19, + 0x2a, 0x25, 0x13, 0x38, 0x20, 0xa0, 0x6c, 0xa8, 0x32, 0x5c, 0x9e, 0x32, 0x54, 0x79, 0xcc, 0xdf, + 0x80, 0x30, 0x5e, 0x22, 0x58, 0x2d, 0xc0, 0x3d, 0xe1, 0xf7, 0x32, 0x9f, 0x11, 0x8b, 0xb1, 0x6e, + 0xda, 0x9d, 0xc1, 0x27, 0xc6, 0xe0, 0xb6, 0x1f, 0x80, 0xe6, 0x7a, 0xcd, 0x9a, 0xeb, 0x50, 0x15, + 0x09, 0x23, 0x18, 0xe9, 0xfa, 0x4e, 0xad, 0x69, 0x07, 0xc7, 0xdd, 0xc3, 0x5a, 0xc3, 0x6d, 0x6f, + 0x46, 0x22, 0x9b, 0xf4, 0x9f, 0xe4, 0x67, 0x0c, 0x4d, 0x77, 0x33, 0xf5, 0x0b, 0x91, 0xc3, 0x31, + 0x3a, 0x70, 0xfb, 0xff, 0x01, 0x00, 0x00, 0xff, 0xff, 0x79, 0x62, 0x3d, 0x77, 0x37, 0x32, 0x00, + 0x00, } diff --git a/protobuf/go/flow/access/access_grpc.pb.go b/protobuf/go/flow/access/access_grpc.pb.go index e1cad3888..5cd031599 100644 --- a/protobuf/go/flow/access/access_grpc.pb.go +++ b/protobuf/go/flow/access/access_grpc.pb.go @@ -28,6 +28,7 @@ const ( AccessAPI_GetBlockByID_FullMethodName = "/flow.access.AccessAPI/GetBlockByID" AccessAPI_GetBlockByHeight_FullMethodName = "/flow.access.AccessAPI/GetBlockByHeight" AccessAPI_GetCollectionByID_FullMethodName = "/flow.access.AccessAPI/GetCollectionByID" + AccessAPI_GetFullCollectionByID_FullMethodName = "/flow.access.AccessAPI/GetFullCollectionByID" AccessAPI_SendTransaction_FullMethodName = "/flow.access.AccessAPI/SendTransaction" AccessAPI_GetTransaction_FullMethodName = "/flow.access.AccessAPI/GetTransaction" AccessAPI_GetTransactionResult_FullMethodName = "/flow.access.AccessAPI/GetTransactionResult" @@ -86,6 +87,8 @@ type AccessAPIClient interface { GetBlockByHeight(ctx context.Context, in *GetBlockByHeightRequest, opts ...grpc.CallOption) (*BlockResponse, error) // GetCollectionByID gets a collection by ID. GetCollectionByID(ctx context.Context, in *GetCollectionByIDRequest, opts ...grpc.CallOption) (*CollectionResponse, error) + // GetFullCollectionByID gets a collection by ID. + GetFullCollectionByID(ctx context.Context, in *GetFullCollectionByIDRequest, opts ...grpc.CallOption) (*FullCollectionResponse, error) // SendTransaction submits a transaction to the network. SendTransaction(ctx context.Context, in *SendTransactionRequest, opts ...grpc.CallOption) (*SendTransactionResponse, error) // GetTransaction gets a transaction by ID. @@ -311,6 +314,15 @@ func (c *accessAPIClient) GetCollectionByID(ctx context.Context, in *GetCollecti return out, nil } +func (c *accessAPIClient) GetFullCollectionByID(ctx context.Context, in *GetFullCollectionByIDRequest, opts ...grpc.CallOption) (*FullCollectionResponse, error) { + out := new(FullCollectionResponse) + err := c.cc.Invoke(ctx, AccessAPI_GetFullCollectionByID_FullMethodName, in, out, opts...) + if err != nil { + return nil, err + } + return out, nil +} + func (c *accessAPIClient) SendTransaction(ctx context.Context, in *SendTransactionRequest, opts ...grpc.CallOption) (*SendTransactionResponse, error) { out := new(SendTransactionResponse) err := c.cc.Invoke(ctx, AccessAPI_SendTransaction_FullMethodName, in, out, opts...) @@ -853,6 +865,8 @@ type AccessAPIServer interface { GetBlockByHeight(context.Context, *GetBlockByHeightRequest) (*BlockResponse, error) // GetCollectionByID gets a collection by ID. GetCollectionByID(context.Context, *GetCollectionByIDRequest) (*CollectionResponse, error) + // GetFullCollectionByID gets a collection by ID. + GetFullCollectionByID(context.Context, *GetFullCollectionByIDRequest) (*FullCollectionResponse, error) // SendTransaction submits a transaction to the network. SendTransaction(context.Context, *SendTransactionRequest) (*SendTransactionResponse, error) // GetTransaction gets a transaction by ID. @@ -1020,6 +1034,9 @@ func (UnimplementedAccessAPIServer) GetBlockByHeight(context.Context, *GetBlockB func (UnimplementedAccessAPIServer) GetCollectionByID(context.Context, *GetCollectionByIDRequest) (*CollectionResponse, error) { return nil, status.Errorf(codes.Unimplemented, "method GetCollectionByID not implemented") } +func (UnimplementedAccessAPIServer) GetFullCollectionByID(context.Context, *GetFullCollectionByIDRequest) (*FullCollectionResponse, error) { + return nil, status.Errorf(codes.Unimplemented, "method GetFullCollectionByID not implemented") +} func (UnimplementedAccessAPIServer) SendTransaction(context.Context, *SendTransactionRequest) (*SendTransactionResponse, error) { return nil, status.Errorf(codes.Unimplemented, "method SendTransaction not implemented") } @@ -1290,6 +1307,24 @@ func _AccessAPI_GetCollectionByID_Handler(srv interface{}, ctx context.Context, return interceptor(ctx, in, info, handler) } +func _AccessAPI_GetFullCollectionByID_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) { + in := new(GetFullCollectionByIDRequest) + if err := dec(in); err != nil { + return nil, err + } + if interceptor == nil { + return srv.(AccessAPIServer).GetFullCollectionByID(ctx, in) + } + info := &grpc.UnaryServerInfo{ + Server: srv, + FullMethod: AccessAPI_GetFullCollectionByID_FullMethodName, + } + handler := func(ctx context.Context, req interface{}) (interface{}, error) { + return srv.(AccessAPIServer).GetFullCollectionByID(ctx, req.(*GetFullCollectionByIDRequest)) + } + return interceptor(ctx, in, info, handler) +} + func _AccessAPI_SendTransaction_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) { in := new(SendTransactionRequest) if err := dec(in); err != nil { @@ -1939,6 +1974,10 @@ var AccessAPI_ServiceDesc = grpc.ServiceDesc{ MethodName: "GetCollectionByID", Handler: _AccessAPI_GetCollectionByID_Handler, }, + { + MethodName: "GetFullCollectionByID", + Handler: _AccessAPI_GetFullCollectionByID_Handler, + }, { MethodName: "SendTransaction", Handler: _AccessAPI_SendTransaction_Handler,