diff --git a/proto/canine_chain/storage/query.proto b/proto/canine_chain/storage/query.proto index e863749b..f1cf6126 100644 --- a/proto/canine_chain/storage/query.proto +++ b/proto/canine_chain/storage/query.proto @@ -181,6 +181,12 @@ service Query { "/jackal/canine-chain/storage/storage_stats"; } + // Queries protocol storage space used and purchased. + rpc NetworkSize(QueryNetworkSize) returns (QueryNetworkSizeResponse) { + option (google.api.http).get = + "/jackal/canine-chain/storage/network_size"; + } + // Queries protocol storage space used and purchased. rpc Gauges(QueryAllGauges) returns (QueryAllGaugesResponse) { option (google.api.http).get = @@ -440,3 +446,9 @@ message QueryStorageStatsResponse { uint64 uniqueUsers = 5; map users_by_plan= 6; } + +message QueryNetworkSize {} + +message QueryNetworkSizeResponse { + uint64 size = 1; +} \ No newline at end of file diff --git a/x/storage/keeper/files.go b/x/storage/keeper/files.go index 845b71ac..7bc2a2e6 100644 --- a/x/storage/keeper/files.go +++ b/x/storage/keeper/files.go @@ -138,6 +138,33 @@ func (k Keeper) IterateFilesByMerkle(ctx sdk.Context, reverse bool, fn func(key } } +// IterateAndParseFilesByMerkle iterates through every file and parses them for you +func (k Keeper) IterateAndParseFilesByMerkle(ctx sdk.Context, reverse bool, fn func(key []byte, val types.UnifiedFile) bool) { + store := prefix.NewStore(ctx.KVStore(k.storeKey), types.KeyPrefix(types.FilePrimaryKeyPrefix)) + + var iterator storetypes.Iterator + if reverse { + iterator = sdk.KVStoreReversePrefixIterator(store, []byte{}) + } else { + iterator = sdk.KVStorePrefixIterator(store, []byte{}) + } + + defer iterator.Close() + + for ; iterator.Valid(); iterator.Next() { + val := iterator.Value() + var file types.UnifiedFile + if err := k.cdc.Unmarshal(val, &file); err != nil { + return + } + + b := fn(iterator.Key(), file) + if b { + return + } + } +} + // GetAllFilesWithMerkle returns all Files that start with a specific merkle func (k Keeper) GetAllFilesWithMerkle(ctx sdk.Context, merkle []byte) (list []types.UnifiedFile) { store := prefix.NewStore(ctx.KVStore(k.storeKey), types.FilesMerklePrefix(merkle)) diff --git a/x/storage/keeper/grpc_query_storage_stats.go b/x/storage/keeper/grpc_query_storage_stats.go index 53cbfe05..33e0a778 100644 --- a/x/storage/keeper/grpc_query_storage_stats.go +++ b/x/storage/keeper/grpc_query_storage_stats.go @@ -9,6 +9,24 @@ import ( "google.golang.org/grpc/status" ) +func (k Keeper) NetworkSize(c context.Context, req *types.QueryNetworkSize) (*types.QueryNetworkSizeResponse, error) { + if req == nil { + return nil, status.Error(codes.InvalidArgument, "invalid request") + } + + ctx := sdk.UnwrapSDKContext(c) + + var s uint64 + + k.IterateAndParseFilesByMerkle(ctx, false, func(_ []byte, val types.UnifiedFile) bool { + s += uint64(val.FileSize * val.MaxProofs) + + return false + }) + + return &types.QueryNetworkSizeResponse{Size_: s}, nil +} + func (k Keeper) StorageStats(c context.Context, req *types.QueryStorageStats) (*types.QueryStorageStatsResponse, error) { if req == nil { return nil, status.Error(codes.InvalidArgument, "invalid request") diff --git a/x/storage/types/query.pb.go b/x/storage/types/query.pb.go index 2f891591..8cab23d1 100644 --- a/x/storage/types/query.pb.go +++ b/x/storage/types/query.pb.go @@ -2708,6 +2708,86 @@ func (m *QueryStorageStatsResponse) GetUsersByPlan() map[int64]int64 { return nil } +type QueryNetworkSize struct { +} + +func (m *QueryNetworkSize) Reset() { *m = QueryNetworkSize{} } +func (m *QueryNetworkSize) String() string { return proto.CompactTextString(m) } +func (*QueryNetworkSize) ProtoMessage() {} +func (*QueryNetworkSize) Descriptor() ([]byte, []int) { + return fileDescriptor_9fe03bff51a37284, []int{55} +} +func (m *QueryNetworkSize) XXX_Unmarshal(b []byte) error { + return m.Unmarshal(b) +} +func (m *QueryNetworkSize) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + if deterministic { + return xxx_messageInfo_QueryNetworkSize.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 *QueryNetworkSize) XXX_Merge(src proto.Message) { + xxx_messageInfo_QueryNetworkSize.Merge(m, src) +} +func (m *QueryNetworkSize) XXX_Size() int { + return m.Size() +} +func (m *QueryNetworkSize) XXX_DiscardUnknown() { + xxx_messageInfo_QueryNetworkSize.DiscardUnknown(m) +} + +var xxx_messageInfo_QueryNetworkSize proto.InternalMessageInfo + +type QueryNetworkSizeResponse struct { + Size_ uint64 `protobuf:"varint,1,opt,name=size,proto3" json:"size,omitempty"` +} + +func (m *QueryNetworkSizeResponse) Reset() { *m = QueryNetworkSizeResponse{} } +func (m *QueryNetworkSizeResponse) String() string { return proto.CompactTextString(m) } +func (*QueryNetworkSizeResponse) ProtoMessage() {} +func (*QueryNetworkSizeResponse) Descriptor() ([]byte, []int) { + return fileDescriptor_9fe03bff51a37284, []int{56} +} +func (m *QueryNetworkSizeResponse) XXX_Unmarshal(b []byte) error { + return m.Unmarshal(b) +} +func (m *QueryNetworkSizeResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + if deterministic { + return xxx_messageInfo_QueryNetworkSizeResponse.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 *QueryNetworkSizeResponse) XXX_Merge(src proto.Message) { + xxx_messageInfo_QueryNetworkSizeResponse.Merge(m, src) +} +func (m *QueryNetworkSizeResponse) XXX_Size() int { + return m.Size() +} +func (m *QueryNetworkSizeResponse) XXX_DiscardUnknown() { + xxx_messageInfo_QueryNetworkSizeResponse.DiscardUnknown(m) +} + +var xxx_messageInfo_QueryNetworkSizeResponse proto.InternalMessageInfo + +func (m *QueryNetworkSizeResponse) GetSize_() uint64 { + if m != nil { + return m.Size_ + } + return 0 +} + func init() { proto.RegisterType((*QueryParams)(nil), "canine_chain.storage.QueryParams") proto.RegisterType((*QueryParamsResponse)(nil), "canine_chain.storage.QueryParamsResponse") @@ -2765,160 +2845,165 @@ func init() { proto.RegisterType((*QueryStorageStats)(nil), "canine_chain.storage.QueryStorageStats") proto.RegisterType((*QueryStorageStatsResponse)(nil), "canine_chain.storage.QueryStorageStatsResponse") proto.RegisterMapType((map[int64]int64)(nil), "canine_chain.storage.QueryStorageStatsResponse.UsersByPlanEntry") + proto.RegisterType((*QueryNetworkSize)(nil), "canine_chain.storage.QueryNetworkSize") + proto.RegisterType((*QueryNetworkSizeResponse)(nil), "canine_chain.storage.QueryNetworkSizeResponse") } func init() { proto.RegisterFile("canine_chain/storage/query.proto", fileDescriptor_9fe03bff51a37284) } var fileDescriptor_9fe03bff51a37284 = []byte{ - // 2358 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xcc, 0x5a, 0x5f, 0x6f, 0x5c, 0x47, - 0x15, 0xcf, 0xf8, 0xcf, 0xd6, 0x7b, 0x6c, 0xd7, 0x66, 0xea, 0x06, 0xb3, 0x4a, 0x6d, 0x67, 0xfc, - 0x37, 0x4e, 0xbc, 0xd7, 0x7f, 0x9a, 0x36, 0x38, 0x4d, 0xd4, 0xd8, 0xc1, 0x21, 0xa2, 0xa9, 0x9d, - 0xb5, 0xa2, 0x42, 0x91, 0x58, 0xae, 0x77, 0xc7, 0x9b, 0x8b, 0xd7, 0xf7, 0x6e, 0xee, 0xbd, 0xeb, - 0xb2, 0xb2, 0xfc, 0x42, 0x10, 0xa2, 0x12, 0x0f, 0x95, 0x50, 0x11, 0x54, 0x48, 0x20, 0x88, 0x5a, - 0x0a, 0x3c, 0xc0, 0x0b, 0xa0, 0x7e, 0x82, 0xbe, 0x51, 0x89, 0x17, 0xc4, 0x43, 0x85, 0x12, 0xbe, - 0x01, 0x5f, 0x00, 0xdd, 0x99, 0xb9, 0x73, 0x67, 0x77, 0xef, 0xce, 0xbd, 0x8e, 0x16, 0x35, 0x4f, - 0xf6, 0xcc, 0xfe, 0xe6, 0x9c, 0xdf, 0x39, 0x67, 0xce, 0xcc, 0x99, 0xb3, 0x0b, 0x53, 0x25, 0xd3, - 0xb6, 0x6c, 0x5a, 0x2c, 0xdd, 0x37, 0x2d, 0xdb, 0xf0, 0x7c, 0xc7, 0x35, 0x2b, 0xd4, 0x78, 0x50, - 0xa7, 0x6e, 0x23, 0x5f, 0x73, 0x1d, 0xdf, 0xc1, 0x63, 0x2a, 0x22, 0x2f, 0x10, 0xb9, 0xb1, 0x8a, - 0x53, 0x71, 0x18, 0xc0, 0x08, 0xfe, 0xe3, 0xd8, 0xdc, 0xb9, 0x8a, 0xe3, 0x54, 0xaa, 0xd4, 0x30, - 0x6b, 0x96, 0x61, 0xda, 0xb6, 0xe3, 0x9b, 0xbe, 0xe5, 0xd8, 0x9e, 0xf8, 0x74, 0xb1, 0xe4, 0x78, - 0x87, 0x8e, 0x67, 0xec, 0x99, 0x9e, 0x50, 0x61, 0x1c, 0xad, 0xec, 0x51, 0xdf, 0x5c, 0x31, 0x6a, - 0x66, 0xc5, 0xb2, 0x19, 0x58, 0x60, 0xcf, 0xc7, 0xf2, 0xaa, 0x99, 0xae, 0x79, 0x18, 0x8a, 0x9b, - 0x8f, 0x85, 0x98, 0x25, 0xdf, 0x3a, 0xa2, 0xc5, 0x32, 0x35, 0xab, 0x21, 0x70, 0x26, 0x5e, 0x96, - 0xeb, 0x1c, 0x59, 0x65, 0xea, 0xea, 0xc5, 0xd5, 0xcc, 0xc6, 0x21, 0xb5, 0xfd, 0xa2, 0x65, 0xef, - 0x0b, 0x23, 0xc9, 0x30, 0x0c, 0xde, 0x0d, 0xc8, 0xef, 0x30, 0x32, 0xe4, 0x2e, 0xbc, 0xa0, 0x0c, - 0x0b, 0xd4, 0xab, 0x39, 0xb6, 0x47, 0xf1, 0x3a, 0x64, 0x38, 0xdb, 0x71, 0x34, 0x85, 0x16, 0x06, - 0x57, 0xcf, 0xe5, 0xe3, 0xfc, 0x98, 0xe7, 0xab, 0x36, 0xfa, 0x3e, 0xfd, 0x7c, 0xf2, 0x4c, 0x41, - 0xac, 0x20, 0xc7, 0x00, 0x5c, 0xa4, 0xeb, 0x38, 0xfb, 0xf8, 0x02, 0x8c, 0x86, 0x5c, 0x8b, 0x66, - 0xb9, 0xec, 0x52, 0x8f, 0xcb, 0xcc, 0x16, 0x46, 0xc2, 0xf9, 0x1b, 0x7c, 0x1a, 0x9f, 0x85, 0xcc, - 0x21, 0x75, 0x0f, 0xaa, 0x74, 0xbc, 0x67, 0x0a, 0x2d, 0x0c, 0x15, 0xc4, 0x08, 0x8f, 0x41, 0xbf, - 0xf3, 0x8e, 0x4d, 0xdd, 0xf1, 0x5e, 0xb6, 0x8e, 0x0f, 0x82, 0x59, 0xcf, 0x37, 0x5d, 0x7f, 0xbc, - 0x6f, 0x0a, 0x2d, 0xf4, 0x16, 0xf8, 0x80, 0xdc, 0x05, 0x1c, 0x29, 0x97, 0xe6, 0x5c, 0x85, 0xfe, - 0x5a, 0x30, 0x21, 0xac, 0x99, 0x8c, 0xb7, 0x66, 0xcb, 0xaa, 0x52, 0xb6, 0x4e, 0x18, 0xc4, 0xd7, - 0x90, 0x77, 0x11, 0x8c, 0x45, 0x32, 0xbd, 0x8d, 0x46, 0xc8, 0xf7, 0x14, 0xa6, 0x6d, 0x01, 0x44, - 0x9b, 0x84, 0x99, 0x37, 0xb8, 0x3a, 0x97, 0xe7, 0x3b, 0x2a, 0x1f, 0xec, 0xa8, 0x3c, 0xdf, 0xb4, - 0x62, 0x47, 0xe5, 0x77, 0xcc, 0x0a, 0x2d, 0xd0, 0x07, 0x75, 0xea, 0xf9, 0x05, 0x65, 0x25, 0xf9, - 0x10, 0xc1, 0xb9, 0x38, 0x2e, 0xd2, 0xd2, 0x6b, 0x90, 0x61, 0xac, 0x03, 0x26, 0xbd, 0xe9, 0x4d, - 0x15, 0x8b, 0xf0, 0xad, 0x18, 0x9e, 0xf3, 0x89, 0x3c, 0xb9, 0xee, 0x26, 0xa2, 0xdf, 0x84, 0xe7, - 0x19, 0xcf, 0x1b, 0xd5, 0x2a, 0xa7, 0xda, 0xe2, 0x02, 0xf4, 0xd4, 0x2e, 0xf8, 0x35, 0x82, 0xb3, - 0xcd, 0xa2, 0x9f, 0x65, 0xe3, 0x6f, 0x99, 0xf5, 0x0a, 0xed, 0x9e, 0xf1, 0xbf, 0x55, 0x8c, 0xe7, - 0xa2, 0xa5, 0xf1, 0xaf, 0x43, 0xa6, 0xc2, 0x66, 0x84, 0xf1, 0xa4, 0x53, 0xca, 0xb2, 0x23, 0x81, - 0x2d, 0x0e, 0xed, 0xe7, 0xeb, 0xba, 0x67, 0xff, 0x36, 0x64, 0x19, 0xc9, 0xc0, 0xd1, 0x4a, 0x56, - 0xa3, 0xf8, 0xac, 0xee, 0x89, 0xcd, 0xea, 0x5e, 0x35, 0xab, 0x77, 0xe0, 0x4b, 0x52, 0xa0, 0x92, - 0xd4, 0x7d, 0xfb, 0x96, 0x10, 0x3b, 0xb8, 0x7a, 0x3e, 0xde, 0xdc, 0x7b, 0xb6, 0xb5, 0x6f, 0xd1, - 0x72, 0xb0, 0x50, 0x58, 0xcb, 0x16, 0x91, 0x1f, 0x22, 0x71, 0x50, 0x04, 0x9f, 0x78, 0x5b, 0xae, - 0x73, 0xf8, 0xa6, 0xe3, 0xd3, 0x6e, 0xc5, 0x09, 0x8f, 0x42, 0xef, 0x01, 0x6d, 0x08, 0xd3, 0x82, - 0x7f, 0x03, 0xc3, 0x8e, 0xcc, 0x6a, 0x9d, 0x86, 0x87, 0x18, 0x1b, 0x90, 0x47, 0x08, 0x72, 0xed, - 0x34, 0x94, 0x0d, 0xdd, 0x1f, 0xb0, 0x0d, 0x43, 0x9a, 0xda, 0x46, 0xbe, 0xaa, 0x7b, 0x01, 0x7d, - 0x88, 0xc4, 0x8e, 0xde, 0xae, 0x51, 0x9b, 0x51, 0xfd, 0x22, 0x0e, 0xbf, 0xb7, 0x60, 0x38, 0xdc, - 0xfb, 0x9c, 0x43, 0xb7, 0xb2, 0xea, 0x57, 0x08, 0x5e, 0x6c, 0x92, 0xfc, 0xcc, 0x05, 0xe0, 0x9d, - 0x16, 0x82, 0x1b, 0x8d, 0x3b, 0x3c, 0x8b, 0xba, 0xb5, 0x61, 0x3b, 0xdc, 0xbd, 0xe4, 0x23, 0x04, - 0x2f, 0xc5, 0x6a, 0x7e, 0xe6, 0x5c, 0xe4, 0x8b, 0x5b, 0x3a, 0x22, 0xba, 0xcd, 0x4e, 0x94, 0x6e, - 0x79, 0x28, 0xf6, 0xbc, 0x8a, 0x2e, 0xe4, 0x16, 0xb5, 0xcf, 0x9c, 0x7b, 0x2e, 0x88, 0xe4, 0xd9, - 0x11, 0xc9, 0x89, 0xc7, 0xe1, 0xb9, 0xe6, 0xbc, 0x0d, 0x87, 0xe4, 0x6d, 0xb1, 0xd9, 0x42, 0xa8, - 0xb4, 0xe5, 0x06, 0x0c, 0x84, 0xb9, 0xad, 0xaf, 0xa4, 0xc2, 0x95, 0x61, 0x69, 0x28, 0x97, 0x91, - 0x6f, 0x8b, 0x93, 0x9c, 0x5f, 0xde, 0x1c, 0xd4, 0xb5, 0x3c, 0xfe, 0x18, 0xc1, 0x57, 0xda, 0xa4, - 0x4b, 0xf6, 0x9b, 0x90, 0x95, 0x55, 0xb3, 0xbe, 0x40, 0x68, 0xa5, 0x1f, 0xad, 0xeb, 0x5e, 0x3c, - 0x6c, 0x18, 0xe5, 0x54, 0x7d, 0x9f, 0x7a, 0xbe, 0x4c, 0xc2, 0x40, 0x93, 0xf0, 0x6e, 0xb6, 0x20, - 0x46, 0x5d, 0x29, 0x8c, 0x2d, 0x18, 0x6f, 0xd5, 0x27, 0x3d, 0x73, 0x07, 0x06, 0xcd, 0x68, 0x5a, - 0x04, 0x60, 0x36, 0xde, 0x37, 0xca, 0xfa, 0x2d, 0xc7, 0x3d, 0x14, 0x1e, 0x52, 0xd7, 0x93, 0xef, - 0x44, 0x99, 0xa8, 0xa0, 0xbb, 0x17, 0xe6, 0xbf, 0x29, 0x39, 0xa7, 0x2a, 0x90, 0xf6, 0x6c, 0xc3, - 0x90, 0xc2, 0x27, 0x0c, 0xf6, 0xa9, 0x0c, 0x6a, 0x12, 0xd0, 0xbd, 0xa8, 0x5b, 0xe2, 0xf5, 0x55, - 0xa0, 0x35, 0xc7, 0xf5, 0xff, 0xaf, 0x01, 0xbf, 0x27, 0x5e, 0x76, 0x5c, 0x95, 0xf4, 0xcd, 0x75, - 0xc8, 0xb8, 0x6c, 0x46, 0x04, 0x60, 0x2a, 0xde, 0x2b, 0x7c, 0x95, 0xe2, 0x10, 0xb1, 0x8a, 0x7c, - 0x0b, 0x46, 0x42, 0xdf, 0x73, 0x4c, 0xf7, 0xe2, 0xfa, 0x08, 0xc1, 0x97, 0x5b, 0x64, 0x2b, 0xd5, - 0xed, 0x73, 0x9c, 0x40, 0x18, 0xcd, 0xb4, 0xbc, 0xc3, 0x65, 0xdd, 0x8b, 0xe1, 0xa2, 0xa8, 0x85, - 0xb6, 0x5c, 0x4a, 0x77, 0x6b, 0x66, 0x89, 0x6a, 0x8e, 0xd2, 0xbc, 0x28, 0xd7, 0x25, 0x56, 0x1a, - 0x14, 0x04, 0x2d, 0x98, 0x60, 0x2b, 0x82, 0xa0, 0x05, 0x03, 0x72, 0x51, 0x78, 0x77, 0xd7, 0x77, - 0x5c, 0xba, 0xe9, 0xd4, 0x6d, 0x5f, 0x23, 0xdc, 0x10, 0xee, 0x8a, 0xc0, 0xaa, 0xf4, 0x52, 0x30, - 0x11, 0x4a, 0x67, 0x03, 0x32, 0x2f, 0xee, 0x80, 0x2d, 0xcb, 0x2e, 0xeb, 0x6a, 0x73, 0xb2, 0x2e, - 0x6e, 0x80, 0x10, 0x28, 0xe5, 0x9e, 0x87, 0x21, 0x59, 0xf5, 0x59, 0x35, 0x1e, 0x8b, 0x6c, 0x61, - 0x30, 0x9c, 0xbb, 0x5d, 0xf3, 0xc8, 0xb2, 0xc8, 0xfe, 0xcd, 0xaa, 0x45, 0x6d, 0x3f, 0x8d, 0x93, - 0xae, 0x89, 0x74, 0x6e, 0x59, 0x21, 0x95, 0xbe, 0x04, 0xb0, 0xd7, 0xf0, 0xa9, 0x57, 0xdc, 0x77, - 0x69, 0xe8, 0xaf, 0x2c, 0x9b, 0x09, 0xb0, 0x64, 0x01, 0x86, 0x44, 0x0b, 0xa3, 0x71, 0xd3, 0xf4, - 0x4d, 0x8d, 0xa2, 0xdd, 0xf0, 0x21, 0xcf, 0x91, 0x52, 0xc1, 0x2c, 0x3c, 0xef, 0x5b, 0x87, 0xb4, - 0xe8, 0xd2, 0x43, 0xd3, 0xb2, 0x2d, 0xbb, 0x22, 0x94, 0x0c, 0x07, 0xb3, 0x85, 0x70, 0x32, 0x70, - 0x2a, 0xd3, 0xca, 0x36, 0x4f, 0x6f, 0x81, 0x0f, 0xc8, 0x9a, 0x12, 0x05, 0xb3, 0x42, 0xc5, 0xfb, - 0xea, 0xb6, 0xbd, 0xef, 0x68, 0x98, 0x3c, 0x44, 0x30, 0xd9, 0x61, 0x95, 0x64, 0xf5, 0x5d, 0x18, - 0x13, 0xbb, 0xba, 0xa8, 0xf6, 0x71, 0x44, 0x82, 0x2d, 0xc4, 0xef, 0xff, 0x76, 0x79, 0x22, 0x0f, - 0xb0, 0xd7, 0xf6, 0x09, 0x29, 0x8b, 0xc7, 0xc7, 0x8d, 0x6a, 0x35, 0x86, 0x7d, 0xb7, 0xd2, 0xfa, - 0xef, 0x08, 0x48, 0x67, 0x35, 0x29, 0xcc, 0xed, 0xed, 0x8e, 0xb9, 0xdd, 0x3b, 0x01, 0xb6, 0xc4, - 0x3e, 0x0a, 0x52, 0xe3, 0x5e, 0xad, 0xea, 0x98, 0xe5, 0xcd, 0xfb, 0xb4, 0x74, 0xd0, 0x39, 0xde, - 0x1d, 0xb6, 0xce, 0xcb, 0x62, 0xe3, 0xb7, 0xc8, 0x51, 0xb3, 0xf8, 0xc8, 0xac, 0x5a, 0x65, 0x26, - 0x6d, 0xa0, 0xc0, 0x07, 0x64, 0x53, 0x9c, 0x11, 0x3b, 0xae, 0x55, 0xa2, 0x5c, 0x71, 0x0e, 0x06, - 0xca, 0x75, 0x37, 0x0a, 0x54, 0x6f, 0x41, 0x8e, 0x3b, 0xa8, 0x0e, 0xcf, 0x8e, 0x48, 0x88, 0xaa, - 0xb5, 0x16, 0xcc, 0x86, 0x67, 0x07, 0x1b, 0x90, 0xb3, 0xe1, 0xa5, 0xce, 0x3a, 0x94, 0xb2, 0x42, - 0x22, 0x56, 0x78, 0x17, 0x37, 0xcf, 0x4b, 0x69, 0xb7, 0xdb, 0xab, 0xae, 0x4e, 0x17, 0x71, 0xb3, - 0x84, 0xb6, 0xda, 0x8b, 0xbc, 0x20, 0x6a, 0x47, 0x11, 0xf4, 0x5d, 0xdf, 0xf4, 0x3d, 0xf2, 0xa3, - 0x5e, 0x51, 0xf3, 0xa9, 0xb3, 0x52, 0xfb, 0x39, 0xc8, 0xd6, 0xea, 0x6e, 0xe9, 0xbe, 0xe9, 0x51, - 0xee, 0xc5, 0xbe, 0x42, 0x34, 0x81, 0x31, 0xf4, 0xd5, 0x83, 0x0f, 0x7a, 0xd8, 0x07, 0xec, 0x7f, - 0x7c, 0x07, 0x20, 0xf8, 0x5b, 0x64, 0xde, 0x63, 0xf7, 0xec, 0xd0, 0x46, 0x3e, 0x60, 0xf2, 0xaf, - 0xcf, 0x27, 0xe7, 0x2a, 0x96, 0x7f, 0xbf, 0xbe, 0x97, 0x2f, 0x39, 0x87, 0x86, 0xe8, 0x06, 0xf3, - 0x3f, 0x4b, 0x5e, 0xf9, 0xc0, 0xf0, 0x1b, 0x35, 0xea, 0xe5, 0x6f, 0xd2, 0x52, 0x21, 0x1b, 0x48, - 0x28, 0x04, 0x02, 0xf0, 0x14, 0x0c, 0xf2, 0x9e, 0xee, 0x3d, 0x2f, 0x70, 0x40, 0x1f, 0xd3, 0xa4, - 0x4e, 0x05, 0x88, 0xba, 0x6d, 0x3d, 0xa8, 0x0b, 0x44, 0x3f, 0x47, 0x28, 0x53, 0xb8, 0x0c, 0xc3, - 0xf5, 0xe0, 0x9f, 0xe2, 0x5e, 0xa3, 0x58, 0xab, 0x9a, 0xf6, 0x78, 0x86, 0xb9, 0xf1, 0xf5, 0x78, - 0x37, 0x76, 0x74, 0x46, 0x9e, 0x49, 0xdb, 0x68, 0xec, 0x54, 0x4d, 0xfb, 0x6b, 0xb6, 0xef, 0x36, - 0x0a, 0x83, 0xf5, 0x68, 0x26, 0x77, 0x1d, 0x46, 0x5b, 0x01, 0x61, 0x1b, 0x83, 0x6f, 0x84, 0xe6, - 0x36, 0x86, 0xd8, 0x4d, 0x6c, 0xb0, 0xde, 0x73, 0x05, 0xad, 0xfe, 0x77, 0x1a, 0xfa, 0x99, 0x6e, - 0xfc, 0x10, 0x41, 0x86, 0x77, 0x86, 0xf1, 0x79, 0x0d, 0x47, 0x0e, 0xc9, 0x5d, 0x48, 0x84, 0x84, - 0x06, 0x90, 0x8b, 0x3f, 0xf8, 0xc7, 0x7f, 0x7e, 0xda, 0x33, 0x8b, 0xa7, 0x8d, 0xef, 0x99, 0xa5, - 0x03, 0xb3, 0x6a, 0xf0, 0x95, 0x4b, 0x71, 0x6d, 0x76, 0xfc, 0x3e, 0x82, 0x3e, 0x76, 0xc9, 0x4d, - 0x6a, 0x14, 0x04, 0x80, 0xdc, 0x7c, 0x02, 0x40, 0xea, 0xdf, 0x64, 0xfa, 0xaf, 0xe1, 0xab, 0x5a, - 0xfd, 0xec, 0xe1, 0x66, 0x1c, 0xf3, 0xab, 0xf4, 0xc4, 0x38, 0x66, 0x45, 0xda, 0x89, 0x71, 0xcc, - 0xca, 0xb2, 0x13, 0xfc, 0x7b, 0x04, 0xc3, 0xcd, 0x4d, 0xa7, 0x85, 0x04, 0xfd, 0x12, 0x99, 0x5b, - 0x4e, 0x8b, 0x94, 0x94, 0xaf, 0x31, 0xca, 0xaf, 0xe2, 0xcb, 0x29, 0x28, 0xdb, 0x8e, 0x4f, 0x8d, - 0xe3, 0x03, 0xda, 0x38, 0x31, 0x8e, 0x59, 0x5c, 0x4f, 0xf0, 0x6f, 0x10, 0x64, 0xa3, 0x9e, 0xcf, - 0x8c, 0x46, 0xbd, 0x44, 0xe5, 0x2e, 0x6a, 0x50, 0xad, 0x0d, 0x16, 0xb2, 0xc1, 0xf8, 0xbd, 0x86, - 0xd7, 0xb5, 0xfc, 0x9c, 0x1a, 0xb5, 0x8b, 0xc2, 0xaf, 0xad, 0x5d, 0xa7, 0x13, 0xfc, 0x63, 0x04, - 0x03, 0xb2, 0x27, 0x34, 0x9d, 0x42, 0xfb, 0xe9, 0x28, 0x2e, 0x32, 0x8a, 0x33, 0x98, 0x24, 0xbb, - 0x10, 0xff, 0x09, 0xc1, 0x68, 0x5b, 0x8f, 0x26, 0x8d, 0xb6, 0x10, 0x9c, 0x5b, 0x3b, 0x05, 0x58, - 0x52, 0x5c, 0x67, 0x14, 0x5f, 0xc6, 0xab, 0x29, 0xa2, 0xcc, 0xf7, 0xa5, 0xdc, 0x9f, 0xf8, 0x0f, - 0x08, 0x46, 0x5a, 0x7b, 0x26, 0x8b, 0xa9, 0x48, 0x30, 0x6c, 0x6e, 0x35, 0x3d, 0x56, 0xf2, 0xbd, - 0xc2, 0xf8, 0xae, 0xe2, 0xe5, 0x14, 0x7c, 0x59, 0xfa, 0x84, 0x59, 0x84, 0xff, 0x88, 0xa0, 0x9f, - 0x7f, 0xb1, 0x34, 0xa5, 0x3b, 0x37, 0x02, 0x44, 0x6e, 0x21, 0x09, 0x21, 0xf9, 0xbc, 0xc5, 0xf8, - 0xdc, 0xc5, 0xdb, 0xfa, 0x83, 0x85, 0x7d, 0x4d, 0x10, 0xb3, 0x03, 0x3b, 0x27, 0xfb, 0x4f, 0x10, - 0x64, 0xa3, 0xaf, 0x40, 0x66, 0xf4, 0xae, 0xe2, 0xa8, 0xdc, 0xa5, 0x34, 0xa8, 0xd3, 0x9e, 0x89, - 0x9c, 0xc0, 0x9f, 0x11, 0x8c, 0xb4, 0x7e, 0x8b, 0xb5, 0x98, 0xe4, 0xa5, 0x08, 0xab, 0x8d, 0x75, - 0x87, 0x6f, 0xa4, 0xc8, 0x75, 0x46, 0xf0, 0x0a, 0x7e, 0xe5, 0xe9, 0x7c, 0x8b, 0x7f, 0x86, 0x60, - 0x40, 0x36, 0xad, 0xa6, 0xf5, 0x04, 0x18, 0x48, 0x9b, 0xdd, 0xad, 0x3d, 0xad, 0x94, 0x5b, 0x51, - 0x16, 0x21, 0xc6, 0xb1, 0x24, 0xf6, 0x73, 0x04, 0x43, 0x4d, 0x6d, 0xac, 0xf9, 0xc4, 0xc0, 0x71, - 0x60, 0xce, 0x48, 0x09, 0x94, 0x24, 0xf3, 0x8c, 0xe4, 0x02, 0x9e, 0x4b, 0x47, 0x12, 0x7f, 0x82, - 0x60, 0x50, 0x6d, 0x2c, 0xcd, 0xe9, 0x14, 0x46, 0xb8, 0x5c, 0x3e, 0x1d, 0x4e, 0xf2, 0xda, 0x65, - 0xbc, 0xee, 0xe0, 0x6f, 0x68, 0x79, 0xa9, 0xad, 0x14, 0x1e, 0x61, 0x96, 0x22, 0x9d, 0x72, 0xe6, - 0x11, 0x3f, 0x90, 0x9a, 0x5a, 0x47, 0x09, 0x07, 0x92, 0x8a, 0x4d, 0x3a, 0x90, 0xe2, 0x3a, 0x46, - 0x64, 0x85, 0x19, 0x72, 0x11, 0x5f, 0x48, 0x6d, 0x08, 0xfe, 0x10, 0x41, 0x46, 0xb4, 0x71, 0x74, - 0x55, 0x0e, 0x87, 0x68, 0xab, 0x9c, 0xe6, 0x0e, 0x0d, 0x79, 0x93, 0x71, 0xf9, 0x3a, 0xde, 0xd2, - 0x72, 0x11, 0x6d, 0x8d, 0x14, 0xfe, 0x7c, 0x0f, 0x01, 0x28, 0xdd, 0x9a, 0x59, 0xbd, 0x7b, 0x04, - 0x2c, 0xb7, 0x94, 0x0a, 0x26, 0x49, 0x5f, 0x62, 0xa4, 0xe7, 0xf0, 0x4c, 0x1a, 0xd2, 0xf8, 0x03, - 0x04, 0xd9, 0xa8, 0x33, 0xa0, 0x3b, 0x16, 0x25, 0x4a, 0x7b, 0x2c, 0xb6, 0xf5, 0x0c, 0xc8, 0x57, - 0x19, 0x9f, 0x35, 0xbc, 0xa2, 0xbf, 0x61, 0x5c, 0x4a, 0x8b, 0xac, 0xf3, 0xa2, 0xe4, 0xf5, 0x07, - 0x08, 0x40, 0xe9, 0xbf, 0xcc, 0x26, 0x94, 0xd9, 0x1c, 0xa6, 0xf5, 0x57, 0x7b, 0x83, 0x86, 0xbc, - 0xc2, 0xf8, 0x2d, 0xe3, 0xbc, 0x96, 0x5f, 0xf0, 0xd7, 0xb2, 0x2b, 0x0a, 0xb9, 0xf7, 0x11, 0x0c, - 0xc8, 0xf6, 0xcd, 0xb4, 0xb6, 0x1c, 0xe4, 0x20, 0xed, 0x69, 0xd8, 0xda, 0xdf, 0x21, 0xaf, 0x32, - 0x5a, 0x2b, 0xd8, 0x48, 0xb8, 0x98, 0xed, 0x32, 0x2b, 0xc7, 0xa2, 0x2a, 0xe2, 0x13, 0x04, 0xf8, - 0x16, 0xf5, 0x5b, 0x9b, 0x3e, 0xba, 0xbc, 0x6d, 0xc1, 0x6a, 0xf3, 0xb6, 0x43, 0x6b, 0x88, 0xdc, - 0x64, 0x7c, 0xaf, 0xe3, 0xd7, 0xb4, 0x7c, 0x2b, 0xd4, 0x2f, 0x96, 0x98, 0x84, 0x62, 0x6c, 0xc4, - 0x7f, 0x81, 0x00, 0x6e, 0x51, 0x3f, 0x6c, 0x20, 0x11, 0xed, 0x8b, 0x84, 0x61, 0x72, 0x8b, 0xc9, - 0x18, 0x49, 0xf2, 0x2a, 0x23, 0x79, 0x19, 0xaf, 0x25, 0x92, 0xac, 0x99, 0x8d, 0x62, 0xd9, 0xf4, - 0x4d, 0x85, 0xdb, 0x5f, 0x11, 0xe0, 0x98, 0xe6, 0xcc, 0x52, 0xf2, 0xe3, 0x4f, 0x81, 0xe7, 0x2e, - 0x9f, 0x0a, 0x7e, 0x4a, 0xe6, 0x6a, 0xbb, 0x46, 0x61, 0xfe, 0x17, 0x04, 0x2f, 0xc6, 0x77, 0x96, - 0x96, 0xf5, 0x67, 0x4b, 0x0c, 0xff, 0x2b, 0xa7, 0x5d, 0x71, 0xca, 0x93, 0x5d, 0x35, 0x01, 0x7f, - 0x8c, 0x60, 0xa4, 0xb5, 0xb5, 0xb3, 0x98, 0xf0, 0xf2, 0x52, 0xb0, 0xda, 0x8d, 0xdc, 0xa1, 0xd5, - 0x93, 0xf2, 0x3c, 0x08, 0x72, 0xae, 0x58, 0x67, 0xcb, 0x8b, 0x25, 0xc6, 0xeb, 0x23, 0x04, 0xa0, - 0x34, 0x82, 0x66, 0xb5, 0xa5, 0x4f, 0x08, 0xd3, 0x1e, 0x56, 0xed, 0x1d, 0xa1, 0x94, 0xef, 0x5e, - 0xd6, 0x27, 0xe2, 0xb4, 0x8c, 0xe3, 0xb0, 0xfd, 0x74, 0x62, 0x1c, 0xb3, 0x86, 0xd3, 0x09, 0xfe, - 0x5d, 0x70, 0xad, 0x37, 0xb7, 0x78, 0xf4, 0xd7, 0x7a, 0x33, 0x56, 0x7f, 0xad, 0xc7, 0x37, 0x9f, - 0xc8, 0x65, 0x46, 0xdc, 0xc0, 0x4b, 0xfa, 0x6b, 0x9d, 0xff, 0xe8, 0x2e, 0x2a, 0x9f, 0x7e, 0x89, - 0x60, 0x48, 0xed, 0xa0, 0x68, 0x2b, 0x3b, 0x15, 0xa8, 0xad, 0xec, 0xe2, 0x7a, 0x32, 0x64, 0x95, - 0x31, 0xbc, 0x84, 0x17, 0x13, 0xef, 0x01, 0xb3, 0x42, 0x8b, 0x1e, 0x63, 0xf3, 0x2e, 0x82, 0x8c, - 0xf8, 0x5d, 0x51, 0xc2, 0x8b, 0x82, 0xa3, 0x92, 0x5e, 0x14, 0xcd, 0x3f, 0x24, 0x4a, 0xf9, 0xa2, - 0xe0, 0xbf, 0x19, 0xda, 0x78, 0xe3, 0xd3, 0xc7, 0x13, 0xe8, 0xb3, 0xc7, 0x13, 0xe8, 0xdf, 0x8f, - 0x27, 0xd0, 0x7b, 0x4f, 0x26, 0xce, 0x7c, 0xf6, 0x64, 0xe2, 0xcc, 0x3f, 0x9f, 0x4c, 0x9c, 0x79, - 0x7b, 0x55, 0x69, 0x96, 0x71, 0x41, 0x6f, 0x98, 0x7b, 0x5e, 0xb3, 0xb0, 0xef, 0x4b, 0x71, 0xac, - 0x79, 0xb6, 0x97, 0x61, 0xbf, 0x51, 0x5c, 0xfb, 0x5f, 0x00, 0x00, 0x00, 0xff, 0xff, 0x66, 0xa2, - 0xd0, 0x9c, 0xd8, 0x29, 0x00, 0x00, + // 2411 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xcc, 0x5a, 0x5f, 0x6f, 0x1c, 0x57, + 0x15, 0xcf, 0x8d, 0xed, 0xad, 0xf7, 0xac, 0x53, 0x9b, 0x5b, 0x37, 0x98, 0x55, 0x6a, 0x3b, 0x37, + 0xfe, 0x17, 0x27, 0xde, 0xf1, 0x9f, 0xa6, 0x0d, 0x4e, 0x13, 0x35, 0x76, 0x70, 0x88, 0x68, 0x62, + 0x67, 0xad, 0xa8, 0x50, 0x24, 0x96, 0xf1, 0xee, 0xf5, 0x66, 0xf0, 0x7a, 0x66, 0x33, 0x33, 0xeb, + 0xb0, 0xb5, 0xfc, 0x42, 0x10, 0xa2, 0x12, 0x42, 0x95, 0x50, 0x51, 0xa9, 0x90, 0x40, 0x10, 0xb5, + 0x14, 0x78, 0x80, 0x17, 0x40, 0xfd, 0x04, 0x7d, 0xa3, 0x12, 0x2f, 0x88, 0x87, 0x0a, 0x25, 0x7c, + 0x10, 0x34, 0xf7, 0xde, 0xb9, 0x73, 0x77, 0x77, 0xf6, 0xce, 0xb8, 0x5a, 0x44, 0x9e, 0xec, 0xb9, + 0xfb, 0x3b, 0xe7, 0xfc, 0xce, 0x39, 0xf7, 0xdc, 0x7b, 0xe6, 0xec, 0xc2, 0x64, 0xd9, 0xb4, 0x2d, + 0x9b, 0x96, 0xca, 0xf7, 0x4d, 0xcb, 0x36, 0x3c, 0xdf, 0x71, 0xcd, 0x2a, 0x35, 0x1e, 0x34, 0xa8, + 0xdb, 0x2c, 0xd4, 0x5d, 0xc7, 0x77, 0xf0, 0xa8, 0x8a, 0x28, 0x08, 0x44, 0x7e, 0xb4, 0xea, 0x54, + 0x1d, 0x06, 0x30, 0x82, 0xff, 0x38, 0x36, 0x7f, 0xa6, 0xea, 0x38, 0xd5, 0x1a, 0x35, 0xcc, 0xba, + 0x65, 0x98, 0xb6, 0xed, 0xf8, 0xa6, 0x6f, 0x39, 0xb6, 0x27, 0x3e, 0x9d, 0x2f, 0x3b, 0xde, 0xbe, + 0xe3, 0x19, 0x3b, 0xa6, 0x27, 0x4c, 0x18, 0x07, 0x4b, 0x3b, 0xd4, 0x37, 0x97, 0x8c, 0xba, 0x59, + 0xb5, 0x6c, 0x06, 0x16, 0xd8, 0xb3, 0xb1, 0xbc, 0xea, 0xa6, 0x6b, 0xee, 0x87, 0xea, 0x66, 0x63, + 0x21, 0x66, 0xd9, 0xb7, 0x0e, 0x68, 0xa9, 0x42, 0xcd, 0x5a, 0x08, 0x9c, 0x8a, 0xd7, 0xe5, 0x3a, + 0x07, 0x56, 0x85, 0xba, 0x7a, 0x75, 0x75, 0xb3, 0xb9, 0x4f, 0x6d, 0xbf, 0x64, 0xd9, 0xbb, 0xc2, + 0x49, 0x72, 0x0a, 0x72, 0x77, 0x03, 0xf2, 0x5b, 0x8c, 0x0c, 0xb9, 0x0b, 0x2f, 0x28, 0x8f, 0x45, + 0xea, 0xd5, 0x1d, 0xdb, 0xa3, 0x78, 0x15, 0x32, 0x9c, 0xed, 0x18, 0x9a, 0x44, 0x73, 0xb9, 0xe5, + 0x33, 0x85, 0xb8, 0x38, 0x16, 0xb8, 0xd4, 0x5a, 0xff, 0xa7, 0x9f, 0x4f, 0x9c, 0x28, 0x0a, 0x09, + 0x72, 0x08, 0xc0, 0x55, 0xba, 0x8e, 0xb3, 0x8b, 0xcf, 0xc3, 0x48, 0xc8, 0xb5, 0x64, 0x56, 0x2a, + 0x2e, 0xf5, 0xb8, 0xce, 0x6c, 0x71, 0x38, 0x5c, 0xbf, 0xce, 0x97, 0xf1, 0x69, 0xc8, 0xec, 0x53, + 0x77, 0xaf, 0x46, 0xc7, 0x4e, 0x4e, 0xa2, 0xb9, 0xa1, 0xa2, 0x78, 0xc2, 0xa3, 0x30, 0xe0, 0x3c, + 0xb4, 0xa9, 0x3b, 0xd6, 0xc7, 0xe4, 0xf8, 0x43, 0xb0, 0xea, 0xf9, 0xa6, 0xeb, 0x8f, 0xf5, 0x4f, + 0xa2, 0xb9, 0xbe, 0x22, 0x7f, 0x20, 0x77, 0x01, 0x47, 0xc6, 0xa5, 0x3b, 0x57, 0x60, 0xa0, 0x1e, + 0x2c, 0x08, 0x6f, 0x26, 0xe2, 0xbd, 0xd9, 0xb0, 0x6a, 0x94, 0xc9, 0x09, 0x87, 0xb8, 0x0c, 0x79, + 0x07, 0xc1, 0x68, 0xa4, 0xd3, 0x5b, 0x6b, 0x86, 0x7c, 0x8f, 0xe1, 0xda, 0x06, 0x40, 0xb4, 0x49, + 0x98, 0x7b, 0xb9, 0xe5, 0x99, 0x02, 0xdf, 0x51, 0x85, 0x60, 0x47, 0x15, 0xf8, 0xa6, 0x15, 0x3b, + 0xaa, 0xb0, 0x65, 0x56, 0x69, 0x91, 0x3e, 0x68, 0x50, 0xcf, 0x2f, 0x2a, 0x92, 0xe4, 0x43, 0x04, + 0x67, 0xe2, 0xb8, 0x48, 0x4f, 0xaf, 0x42, 0x86, 0xb1, 0x0e, 0x98, 0xf4, 0xa5, 0x77, 0x55, 0x08, + 0xe1, 0x9b, 0x31, 0x3c, 0x67, 0x13, 0x79, 0x72, 0xdb, 0x2d, 0x44, 0xbf, 0x09, 0xcf, 0x33, 0x9e, + 0xd7, 0x6b, 0x35, 0x4e, 0xb5, 0x2d, 0x04, 0xe8, 0x0b, 0x87, 0xe0, 0xd7, 0x08, 0x4e, 0xb7, 0xaa, + 0x7e, 0x96, 0x9d, 0xbf, 0x69, 0x36, 0xaa, 0xb4, 0x77, 0xce, 0xff, 0x56, 0x71, 0x9e, 0xab, 0x96, + 0xce, 0xbf, 0x0e, 0x99, 0x2a, 0x5b, 0x11, 0xce, 0x93, 0x6e, 0x25, 0xcb, 0x8e, 0x04, 0x26, 0x1c, + 0xfa, 0xcf, 0xe5, 0x7a, 0xe7, 0xff, 0x26, 0x64, 0x19, 0xc9, 0x20, 0xd0, 0x4a, 0x55, 0xa3, 0xf8, + 0xaa, 0x3e, 0x19, 0x5b, 0xd5, 0x7d, 0x6a, 0x55, 0x6f, 0xc1, 0x97, 0xa4, 0x42, 0xa5, 0xa8, 0xfb, + 0x77, 0x2d, 0xa1, 0x36, 0xb7, 0x7c, 0x36, 0xde, 0xdd, 0x7b, 0xb6, 0xb5, 0x6b, 0xd1, 0x4a, 0x20, + 0x28, 0xbc, 0x65, 0x42, 0xe4, 0x87, 0x48, 0x1c, 0x14, 0xc1, 0x27, 0xde, 0x86, 0xeb, 0xec, 0xdf, + 0x71, 0x7c, 0xda, 0xab, 0x3c, 0xe1, 0x11, 0xe8, 0xdb, 0xa3, 0x4d, 0xe1, 0x5a, 0xf0, 0x6f, 0xe0, + 0xd8, 0x81, 0x59, 0x6b, 0xd0, 0xf0, 0x10, 0x63, 0x0f, 0xe4, 0x31, 0x82, 0x7c, 0x27, 0x0d, 0x65, + 0x43, 0x0f, 0x04, 0x6c, 0xc3, 0x94, 0xa6, 0xf6, 0x91, 0x4b, 0xf5, 0x2e, 0xa1, 0x8f, 0x90, 0xd8, + 0xd1, 0x9b, 0x75, 0x6a, 0x33, 0xaa, 0xff, 0x8f, 0xc3, 0xef, 0x4d, 0x38, 0x15, 0xee, 0x7d, 0xce, + 0xa1, 0x57, 0x55, 0xf5, 0x2b, 0x04, 0x2f, 0xb6, 0x68, 0x7e, 0xe6, 0x12, 0xf0, 0xb0, 0x8d, 0xe0, + 0x5a, 0xf3, 0x36, 0xaf, 0xa2, 0x5e, 0x6d, 0xd8, 0x2e, 0x77, 0x2f, 0xf9, 0x08, 0xc1, 0x4b, 0xb1, + 0x96, 0x9f, 0xb9, 0x10, 0xf9, 0xe2, 0x96, 0x8e, 0x88, 0x6e, 0xb2, 0x13, 0xa5, 0x57, 0x11, 0x8a, + 0x3d, 0xaf, 0xa2, 0x0b, 0xb9, 0xcd, 0xec, 0x33, 0x17, 0x9e, 0xf3, 0xa2, 0x78, 0xb6, 0x44, 0x71, + 0xe2, 0x31, 0x78, 0xae, 0xb5, 0x6e, 0xc3, 0x47, 0xf2, 0x96, 0xd8, 0x6c, 0x21, 0x54, 0xfa, 0x72, + 0x1d, 0x06, 0xc3, 0xda, 0xd6, 0x77, 0x52, 0xa1, 0x64, 0xd8, 0x1a, 0x4a, 0x31, 0xf2, 0x6d, 0x71, + 0x92, 0xf3, 0xcb, 0x9b, 0x83, 0x7a, 0x56, 0xc7, 0x1f, 0x23, 0xf8, 0x4a, 0x87, 0x76, 0xc9, 0x7e, + 0x1d, 0xb2, 0xb2, 0x6b, 0xd6, 0x37, 0x08, 0xed, 0xf4, 0x23, 0xb9, 0xde, 0xe5, 0xc3, 0x86, 0x11, + 0x4e, 0xd5, 0xf7, 0xa9, 0xe7, 0xcb, 0x22, 0x0c, 0x2c, 0x89, 0xe8, 0x66, 0x8b, 0xe2, 0xa9, 0x27, + 0x8d, 0xb1, 0x05, 0x63, 0xed, 0xf6, 0x64, 0x64, 0x6e, 0x43, 0xce, 0x8c, 0x96, 0x45, 0x02, 0xa6, + 0xe3, 0x63, 0xa3, 0xc8, 0x6f, 0x38, 0xee, 0xbe, 0x88, 0x90, 0x2a, 0x4f, 0xbe, 0x13, 0x55, 0xa2, + 0x82, 0xee, 0x5d, 0x9a, 0xff, 0xa6, 0xd4, 0x9c, 0x6a, 0x40, 0xfa, 0xb3, 0x09, 0x43, 0x0a, 0x9f, + 0x30, 0xd9, 0xc7, 0x72, 0xa8, 0x45, 0x41, 0xef, 0xb2, 0x6e, 0x89, 0xb7, 0xaf, 0x22, 0xad, 0x3b, + 0xae, 0xff, 0x3f, 0x4d, 0xf8, 0x3d, 0xf1, 0x66, 0xc7, 0x4d, 0xc9, 0xd8, 0x5c, 0x83, 0x8c, 0xcb, + 0x56, 0x44, 0x02, 0x26, 0xe3, 0xa3, 0xc2, 0xa5, 0x94, 0x80, 0x08, 0x29, 0xf2, 0x2d, 0x18, 0x0e, + 0x63, 0xcf, 0x31, 0xbd, 0xcb, 0xeb, 0x63, 0x04, 0x5f, 0x6e, 0xd3, 0xad, 0x74, 0xb7, 0xcf, 0x71, + 0x02, 0x61, 0x36, 0xd3, 0xf2, 0x0e, 0xc5, 0x7a, 0x97, 0xc3, 0x79, 0xd1, 0x0b, 0x6d, 0xb8, 0x94, + 0x6e, 0xd7, 0xcd, 0x32, 0xd5, 0x1c, 0xa5, 0x05, 0xd1, 0xae, 0x4b, 0xac, 0x74, 0x28, 0x48, 0x5a, + 0xb0, 0xc0, 0x24, 0x82, 0xa4, 0x05, 0x0f, 0xe4, 0x82, 0x88, 0xee, 0xb6, 0xef, 0xb8, 0x74, 0xdd, + 0x69, 0xd8, 0xbe, 0x46, 0xb9, 0x21, 0xc2, 0x15, 0x81, 0x55, 0xed, 0xe5, 0x60, 0x21, 0xd4, 0xce, + 0x1e, 0xc8, 0xac, 0xb8, 0x03, 0x36, 0x2c, 0xbb, 0xa2, 0xeb, 0xcd, 0xc9, 0xaa, 0xb8, 0x01, 0x42, + 0xa0, 0xd4, 0x7b, 0x16, 0x86, 0x64, 0xd7, 0x67, 0xd5, 0x79, 0x2e, 0xb2, 0xc5, 0x5c, 0xb8, 0x76, + 0xab, 0xee, 0x91, 0x45, 0x51, 0xfd, 0xeb, 0x35, 0x8b, 0xda, 0x7e, 0x9a, 0x20, 0x5d, 0x15, 0xe5, + 0xdc, 0x26, 0x21, 0x8d, 0xbe, 0x04, 0xb0, 0xd3, 0xf4, 0xa9, 0x57, 0xda, 0x75, 0x69, 0x18, 0xaf, + 0x2c, 0x5b, 0x09, 0xb0, 0x64, 0x0e, 0x86, 0xc4, 0x08, 0xa3, 0x79, 0xc3, 0xf4, 0x4d, 0x8d, 0xa1, + 0xed, 0xf0, 0x45, 0x9e, 0x23, 0xa5, 0x81, 0x69, 0x78, 0xde, 0xb7, 0xf6, 0x69, 0xc9, 0xa5, 0xfb, + 0xa6, 0x65, 0x5b, 0x76, 0x55, 0x18, 0x39, 0x15, 0xac, 0x16, 0xc3, 0xc5, 0x20, 0xa8, 0xcc, 0x2a, + 0xdb, 0x3c, 0x7d, 0x45, 0xfe, 0x40, 0x56, 0x94, 0x2c, 0x98, 0x55, 0x2a, 0xde, 0xaf, 0x6e, 0xd9, + 0xbb, 0x8e, 0x86, 0xc9, 0x23, 0x04, 0x13, 0x5d, 0xa4, 0x24, 0xab, 0xef, 0xc2, 0xa8, 0xd8, 0xd5, + 0x25, 0x75, 0x8e, 0x23, 0x0a, 0x6c, 0x2e, 0x7e, 0xff, 0x77, 0xea, 0x13, 0x75, 0x80, 0xbd, 0x8e, + 0x4f, 0x48, 0x45, 0xbc, 0x7c, 0x5c, 0xaf, 0xd5, 0x62, 0xd8, 0xf7, 0xaa, 0xac, 0xff, 0x8e, 0x80, + 0x74, 0x37, 0x93, 0xc2, 0xdd, 0xbe, 0xde, 0xb8, 0xdb, 0xbb, 0x13, 0x60, 0x43, 0xec, 0xa3, 0xa0, + 0x34, 0xee, 0xd5, 0x6b, 0x8e, 0x59, 0x59, 0xbf, 0x4f, 0xcb, 0x7b, 0xdd, 0xf3, 0xdd, 0x65, 0xeb, + 0xbc, 0x2c, 0x36, 0x7e, 0x9b, 0x1e, 0xb5, 0x8a, 0x0f, 0xcc, 0x9a, 0x55, 0x61, 0xda, 0x06, 0x8b, + 0xfc, 0x81, 0xac, 0x8b, 0x33, 0x62, 0xcb, 0xb5, 0xca, 0x94, 0x1b, 0xce, 0xc3, 0x60, 0xa5, 0xe1, + 0x46, 0x89, 0xea, 0x2b, 0xca, 0xe7, 0x2e, 0xa6, 0xc3, 0xb3, 0x23, 0x52, 0xa2, 0x5a, 0xad, 0x07, + 0xab, 0xe1, 0xd9, 0xc1, 0x1e, 0xc8, 0xe9, 0xf0, 0x52, 0x67, 0x13, 0x4a, 0xd9, 0x21, 0x11, 0x2b, + 0xbc, 0x8b, 0x5b, 0xd7, 0xa5, 0xb6, 0x5b, 0x9d, 0x5d, 0x57, 0xb7, 0x8b, 0xb8, 0x55, 0x43, 0x47, + 0xef, 0x45, 0x5e, 0x10, 0xbd, 0xa3, 0x48, 0xfa, 0xb6, 0x6f, 0xfa, 0x1e, 0xf9, 0x51, 0x9f, 0xe8, + 0xf9, 0xd4, 0x55, 0x69, 0xfd, 0x0c, 0x64, 0xeb, 0x0d, 0xb7, 0x7c, 0xdf, 0xf4, 0x28, 0x8f, 0x62, + 0x7f, 0x31, 0x5a, 0xc0, 0x18, 0xfa, 0x1b, 0xc1, 0x07, 0x27, 0xd9, 0x07, 0xec, 0x7f, 0x7c, 0x1b, + 0x20, 0xf8, 0x5b, 0x62, 0xd1, 0x63, 0xf7, 0xec, 0xd0, 0x5a, 0x21, 0x60, 0xf2, 0xaf, 0xcf, 0x27, + 0x66, 0xaa, 0x96, 0x7f, 0xbf, 0xb1, 0x53, 0x28, 0x3b, 0xfb, 0x86, 0x98, 0x06, 0xf3, 0x3f, 0x0b, + 0x5e, 0x65, 0xcf, 0xf0, 0x9b, 0x75, 0xea, 0x15, 0x6e, 0xd0, 0x72, 0x31, 0x1b, 0x68, 0x28, 0x06, + 0x0a, 0xf0, 0x24, 0xe4, 0xf8, 0x4c, 0xf7, 0x9e, 0x17, 0x04, 0xa0, 0x9f, 0x59, 0x52, 0x97, 0x02, + 0x44, 0xc3, 0xb6, 0x1e, 0x34, 0x04, 0x62, 0x80, 0x23, 0x94, 0x25, 0x5c, 0x81, 0x53, 0x8d, 0xe0, + 0x9f, 0xd2, 0x4e, 0xb3, 0x54, 0xaf, 0x99, 0xf6, 0x58, 0x86, 0x85, 0xf1, 0xf5, 0xf8, 0x30, 0x76, + 0x0d, 0x46, 0x81, 0x69, 0x5b, 0x6b, 0x6e, 0xd5, 0x4c, 0xfb, 0x6b, 0xb6, 0xef, 0x36, 0x8b, 0xb9, + 0x46, 0xb4, 0x92, 0xbf, 0x06, 0x23, 0xed, 0x80, 0x70, 0x8c, 0xc1, 0x37, 0x42, 0xeb, 0x18, 0x43, + 0xec, 0x26, 0xf6, 0xb0, 0x7a, 0xf2, 0x32, 0x22, 0x58, 0x34, 0xb4, 0x77, 0xa8, 0xff, 0xd0, 0x71, + 0xf7, 0xb6, 0xad, 0xb7, 0x29, 0x29, 0x88, 0xa6, 0x53, 0x59, 0x93, 0xa9, 0xc1, 0xd0, 0xef, 0x59, + 0x6f, 0x53, 0x91, 0x15, 0xf6, 0xff, 0xf2, 0x4f, 0xa7, 0x61, 0x80, 0x09, 0xe0, 0x47, 0x08, 0x32, + 0x7c, 0xba, 0x8c, 0xcf, 0x6a, 0xfc, 0xe4, 0x90, 0xfc, 0xf9, 0x44, 0x48, 0x68, 0x96, 0x5c, 0xf8, + 0xc1, 0x3f, 0xfe, 0xf3, 0xb3, 0x93, 0xd3, 0xf8, 0x9c, 0xf1, 0x3d, 0xb3, 0xbc, 0x67, 0xd6, 0x0c, + 0x2e, 0xb9, 0x10, 0x37, 0xaa, 0xc7, 0xef, 0x21, 0xe8, 0x67, 0x17, 0xe5, 0x84, 0xc6, 0x40, 0x00, + 0xc8, 0xcf, 0x26, 0x00, 0xa4, 0xfd, 0x75, 0x66, 0xff, 0x2a, 0xbe, 0xa2, 0xb5, 0xcf, 0x5e, 0xfe, + 0x8c, 0x43, 0x7e, 0x1d, 0x1f, 0x19, 0x87, 0xac, 0xd1, 0x3b, 0x32, 0x0e, 0x59, 0x6b, 0x77, 0x84, + 0x7f, 0x8f, 0xe0, 0x54, 0xeb, 0xe0, 0x6a, 0x2e, 0xc1, 0xbe, 0x44, 0xe6, 0x17, 0xd3, 0x22, 0x25, + 0xe5, 0xab, 0x8c, 0xf2, 0xab, 0xf8, 0x52, 0x0a, 0xca, 0xb6, 0xe3, 0x53, 0xe3, 0x70, 0x8f, 0x36, + 0x8f, 0x8c, 0x43, 0xb6, 0x37, 0x8e, 0xf0, 0x6f, 0x10, 0x64, 0xa3, 0xb9, 0xd1, 0x94, 0xc6, 0xbc, + 0x44, 0xe5, 0x2f, 0x68, 0x50, 0xed, 0x43, 0x1a, 0xb2, 0xc6, 0xf8, 0xbd, 0x86, 0x57, 0xb5, 0xfc, + 0x9c, 0x3a, 0xb5, 0x4b, 0x22, 0xae, 0xed, 0x93, 0xab, 0x23, 0xfc, 0x63, 0x04, 0x83, 0x72, 0xae, + 0x74, 0x2e, 0x85, 0xf5, 0xe3, 0x51, 0x9c, 0x67, 0x14, 0xa7, 0x30, 0x49, 0x0e, 0x21, 0xfe, 0x13, + 0x82, 0x91, 0x8e, 0x39, 0x4f, 0x1a, 0x6b, 0x21, 0x38, 0xbf, 0x72, 0x0c, 0xb0, 0xa4, 0xb8, 0xca, + 0x28, 0xbe, 0x8c, 0x97, 0x53, 0x64, 0x99, 0xef, 0x4b, 0xb9, 0x3f, 0xf1, 0x1f, 0x10, 0x0c, 0xb7, + 0xcf, 0x5d, 0xe6, 0x53, 0x91, 0x60, 0xd8, 0xfc, 0x72, 0x7a, 0xac, 0xe4, 0x7b, 0x99, 0xf1, 0x5d, + 0xc6, 0x8b, 0x29, 0xf8, 0xb2, 0xf2, 0x09, 0xab, 0x08, 0xff, 0x11, 0xc1, 0x00, 0xff, 0x72, 0x6a, + 0x52, 0x77, 0x6e, 0x04, 0x88, 0xfc, 0x5c, 0x12, 0x42, 0xf2, 0x79, 0x93, 0xf1, 0xb9, 0x8b, 0x37, + 0xf5, 0x07, 0x0b, 0xfb, 0xaa, 0x21, 0x66, 0x07, 0x76, 0x2f, 0xf6, 0x9f, 0x20, 0xc8, 0x46, 0x5f, + 0xa3, 0x4c, 0xe9, 0x43, 0xc5, 0x51, 0xf9, 0x8b, 0x69, 0x50, 0xc7, 0x3d, 0x13, 0x39, 0x81, 0x3f, + 0x23, 0x18, 0x6e, 0xff, 0x26, 0x6c, 0x3e, 0x29, 0x4a, 0x11, 0x56, 0x9b, 0xeb, 0x2e, 0xdf, 0x6a, + 0x91, 0x6b, 0x8c, 0xe0, 0x65, 0xfc, 0xca, 0x17, 0x8b, 0x2d, 0xfe, 0x39, 0x82, 0x41, 0x39, 0xf8, + 0x3a, 0xa7, 0x27, 0xc0, 0x40, 0xda, 0xea, 0x6e, 0x9f, 0x8b, 0xa5, 0xdc, 0x8a, 0xb2, 0x91, 0x31, + 0x0e, 0x25, 0xb1, 0xf7, 0x11, 0x0c, 0xb5, 0x8c, 0xc2, 0x66, 0x13, 0x13, 0xc7, 0x81, 0x79, 0x23, + 0x25, 0x50, 0x92, 0x2c, 0x30, 0x92, 0x73, 0x78, 0x26, 0x1d, 0x49, 0xfc, 0x09, 0x82, 0x9c, 0x3a, + 0x9c, 0x9a, 0xd1, 0x19, 0x8c, 0x70, 0xf9, 0x42, 0x3a, 0x9c, 0xe4, 0xb5, 0xcd, 0x78, 0xdd, 0xc6, + 0xdf, 0xd0, 0xf2, 0x52, 0xc7, 0x31, 0x3c, 0xc3, 0xac, 0x44, 0xba, 0xd5, 0xcc, 0x63, 0x7e, 0x20, + 0xb5, 0x8c, 0x9f, 0x12, 0x0e, 0x24, 0x15, 0x9b, 0x74, 0x20, 0xc5, 0x4d, 0x9d, 0xc8, 0x12, 0x73, + 0xe4, 0x02, 0x3e, 0x9f, 0xda, 0x11, 0xfc, 0x21, 0x82, 0x8c, 0x18, 0x05, 0xe9, 0xba, 0x1c, 0x0e, + 0xd1, 0x76, 0x39, 0xad, 0x53, 0x1e, 0x72, 0x87, 0x71, 0xf9, 0x3a, 0xde, 0xd0, 0x72, 0x11, 0xa3, + 0x91, 0x14, 0xf1, 0x7c, 0x17, 0x01, 0x28, 0x13, 0x9f, 0x69, 0x7d, 0x78, 0x04, 0x2c, 0xbf, 0x90, + 0x0a, 0x26, 0x49, 0x5f, 0x64, 0xa4, 0x67, 0xf0, 0x54, 0x1a, 0xd2, 0xf8, 0x03, 0x04, 0xd9, 0x68, + 0xba, 0xa0, 0x3b, 0x16, 0x25, 0x4a, 0x7b, 0x2c, 0x76, 0xcc, 0x1d, 0xc8, 0x57, 0x19, 0x9f, 0x15, + 0xbc, 0xa4, 0xbf, 0x61, 0x5c, 0x4a, 0x4b, 0x6c, 0x7a, 0xa3, 0xd4, 0xf5, 0x07, 0x08, 0x40, 0x99, + 0xe1, 0x4c, 0x27, 0xb4, 0xea, 0x1c, 0xa6, 0x8d, 0x57, 0xe7, 0x90, 0x87, 0xbc, 0xc2, 0xf8, 0x2d, + 0xe2, 0x82, 0x96, 0x5f, 0xf0, 0xd7, 0xb2, 0xab, 0x0a, 0xb9, 0xf7, 0x10, 0x0c, 0xca, 0x11, 0xd0, + 0x39, 0x6d, 0x3b, 0xc8, 0x41, 0xda, 0xd3, 0xb0, 0x7d, 0x46, 0x44, 0x5e, 0x65, 0xb4, 0x96, 0xb0, + 0x91, 0x70, 0x31, 0xdb, 0x15, 0xd6, 0x8e, 0x45, 0x5d, 0xc4, 0x27, 0x08, 0xf0, 0x4d, 0xea, 0xb7, + 0x0f, 0x8e, 0x74, 0x75, 0xdb, 0x86, 0xd5, 0xd6, 0x6d, 0x97, 0xf1, 0x12, 0xb9, 0xc1, 0xf8, 0x5e, + 0xc3, 0xaf, 0x69, 0xf9, 0x56, 0xa9, 0x5f, 0x2a, 0x33, 0x0d, 0xa5, 0xd8, 0x8c, 0xff, 0x02, 0x01, + 0xdc, 0xa4, 0x7e, 0x38, 0x84, 0x22, 0xda, 0x37, 0x12, 0x86, 0xc9, 0xcf, 0x27, 0x63, 0x24, 0xc9, + 0x2b, 0x8c, 0xe4, 0x25, 0xbc, 0x92, 0x48, 0xb2, 0x6e, 0x36, 0x4b, 0x15, 0xd3, 0x37, 0x15, 0x6e, + 0x7f, 0x45, 0x80, 0x63, 0x06, 0x3c, 0x0b, 0xc9, 0x2f, 0x90, 0x0a, 0x3c, 0x7f, 0xe9, 0x58, 0xf0, + 0x63, 0x32, 0x57, 0x47, 0x3e, 0x0a, 0xf3, 0xbf, 0x20, 0x78, 0x31, 0x7e, 0x3a, 0xb5, 0xa8, 0x3f, + 0x5b, 0x62, 0xf8, 0x5f, 0x3e, 0xae, 0xc4, 0x31, 0x4f, 0x76, 0xd5, 0x05, 0xfc, 0x31, 0x82, 0xe1, + 0xf6, 0xf1, 0xd0, 0x7c, 0xc2, 0x9b, 0x97, 0x82, 0xd5, 0x6e, 0xe4, 0x2e, 0xe3, 0xa2, 0x94, 0xe7, + 0x41, 0x50, 0x73, 0xa5, 0x06, 0x13, 0x2f, 0x95, 0x19, 0xaf, 0x8f, 0x10, 0x80, 0x32, 0x4c, 0x9a, + 0xd6, 0xb6, 0x3e, 0x21, 0x4c, 0x7b, 0x58, 0x75, 0x4e, 0x95, 0x52, 0xbe, 0xf7, 0xb2, 0x59, 0x13, + 0xa7, 0x65, 0x1c, 0x86, 0x23, 0xac, 0x23, 0xe3, 0x90, 0x0d, 0xad, 0x8e, 0xf0, 0xef, 0x82, 0x6b, + 0xbd, 0x75, 0x4c, 0xa4, 0xbf, 0xd6, 0x5b, 0xb1, 0xfa, 0x6b, 0x3d, 0x7e, 0x80, 0x45, 0x2e, 0x31, + 0xe2, 0x06, 0x5e, 0xd0, 0x5f, 0xeb, 0xfc, 0x87, 0x7b, 0x51, 0xfb, 0xf4, 0x4b, 0x04, 0x43, 0xea, + 0x14, 0x46, 0xdb, 0xd9, 0xa9, 0x40, 0x6d, 0x67, 0x17, 0x37, 0xd7, 0x21, 0xcb, 0x8c, 0xe1, 0x45, + 0x3c, 0x9f, 0x78, 0x0f, 0x98, 0x55, 0x5a, 0xf2, 0x18, 0x9b, 0xf7, 0x11, 0xe4, 0x94, 0xa9, 0x8c, + 0xb6, 0xbb, 0x53, 0x70, 0xda, 0xee, 0x2e, 0x66, 0xca, 0x93, 0xb2, 0x74, 0x6c, 0x2e, 0x59, 0xf2, + 0x02, 0x2a, 0xef, 0x20, 0xc8, 0x88, 0x9f, 0x4d, 0x25, 0xbc, 0xec, 0x70, 0x54, 0xd2, 0xcb, 0x4e, + 0xeb, 0xef, 0xa4, 0x52, 0xbe, 0xec, 0xf0, 0x9f, 0x44, 0xad, 0xbd, 0xf1, 0xe9, 0x93, 0x71, 0xf4, + 0xd9, 0x93, 0x71, 0xf4, 0xef, 0x27, 0xe3, 0xe8, 0xdd, 0xa7, 0xe3, 0x27, 0x3e, 0x7b, 0x3a, 0x7e, + 0xe2, 0x9f, 0x4f, 0xc7, 0x4f, 0xbc, 0xb5, 0xac, 0xcc, 0x02, 0xb9, 0xa2, 0x37, 0xcc, 0x1d, 0xaf, + 0x55, 0xd9, 0xf7, 0xa5, 0x3a, 0x36, 0x1b, 0xdc, 0xc9, 0xb0, 0x9f, 0x60, 0xae, 0xfc, 0x37, 0x00, + 0x00, 0xff, 0xff, 0x69, 0x08, 0x7c, 0x9d, 0xb7, 0x2a, 0x00, 0x00, } // Reference imports to suppress errors if they are not otherwise used. @@ -2987,6 +3072,8 @@ type QueryClient interface { // Queries protocol storage space used and purchased. StorageStats(ctx context.Context, in *QueryStorageStats, opts ...grpc.CallOption) (*QueryStorageStatsResponse, error) // Queries protocol storage space used and purchased. + NetworkSize(ctx context.Context, in *QueryNetworkSize, opts ...grpc.CallOption) (*QueryNetworkSizeResponse, error) + // Queries protocol storage space used and purchased. Gauges(ctx context.Context, in *QueryAllGauges, opts ...grpc.CallOption) (*QueryAllGaugesResponse, error) } @@ -3241,6 +3328,15 @@ func (c *queryClient) StorageStats(ctx context.Context, in *QueryStorageStats, o return out, nil } +func (c *queryClient) NetworkSize(ctx context.Context, in *QueryNetworkSize, opts ...grpc.CallOption) (*QueryNetworkSizeResponse, error) { + out := new(QueryNetworkSizeResponse) + err := c.cc.Invoke(ctx, "/canine_chain.storage.Query/NetworkSize", in, out, opts...) + if err != nil { + return nil, err + } + return out, nil +} + func (c *queryClient) Gauges(ctx context.Context, in *QueryAllGauges, opts ...grpc.CallOption) (*QueryAllGaugesResponse, error) { out := new(QueryAllGaugesResponse) err := c.cc.Invoke(ctx, "/canine_chain.storage.Query/Gauges", in, out, opts...) @@ -3306,6 +3402,8 @@ type QueryServer interface { // Queries protocol storage space used and purchased. StorageStats(context.Context, *QueryStorageStats) (*QueryStorageStatsResponse, error) // Queries protocol storage space used and purchased. + NetworkSize(context.Context, *QueryNetworkSize) (*QueryNetworkSizeResponse, error) + // Queries protocol storage space used and purchased. Gauges(context.Context, *QueryAllGauges) (*QueryAllGaugesResponse, error) } @@ -3394,6 +3492,9 @@ func (*UnimplementedQueryServer) ActiveProviders(ctx context.Context, req *Query func (*UnimplementedQueryServer) StorageStats(ctx context.Context, req *QueryStorageStats) (*QueryStorageStatsResponse, error) { return nil, status.Errorf(codes.Unimplemented, "method StorageStats not implemented") } +func (*UnimplementedQueryServer) NetworkSize(ctx context.Context, req *QueryNetworkSize) (*QueryNetworkSizeResponse, error) { + return nil, status.Errorf(codes.Unimplemented, "method NetworkSize not implemented") +} func (*UnimplementedQueryServer) Gauges(ctx context.Context, req *QueryAllGauges) (*QueryAllGaugesResponse, error) { return nil, status.Errorf(codes.Unimplemented, "method Gauges not implemented") } @@ -3888,6 +3989,24 @@ func _Query_StorageStats_Handler(srv interface{}, ctx context.Context, dec func( return interceptor(ctx, in, info, handler) } +func _Query_NetworkSize_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) { + in := new(QueryNetworkSize) + if err := dec(in); err != nil { + return nil, err + } + if interceptor == nil { + return srv.(QueryServer).NetworkSize(ctx, in) + } + info := &grpc.UnaryServerInfo{ + Server: srv, + FullMethod: "/canine_chain.storage.Query/NetworkSize", + } + handler := func(ctx context.Context, req interface{}) (interface{}, error) { + return srv.(QueryServer).NetworkSize(ctx, req.(*QueryNetworkSize)) + } + return interceptor(ctx, in, info, handler) +} + func _Query_Gauges_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) { in := new(QueryAllGauges) if err := dec(in); err != nil { @@ -4018,6 +4137,10 @@ var _Query_serviceDesc = grpc.ServiceDesc{ MethodName: "StorageStats", Handler: _Query_StorageStats_Handler, }, + { + MethodName: "NetworkSize", + Handler: _Query_NetworkSize_Handler, + }, { MethodName: "Gauges", Handler: _Query_Gauges_Handler, @@ -6110,6 +6233,57 @@ func (m *QueryStorageStatsResponse) MarshalToSizedBuffer(dAtA []byte) (int, erro return len(dAtA) - i, nil } +func (m *QueryNetworkSize) 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 *QueryNetworkSize) MarshalTo(dAtA []byte) (int, error) { + size := m.Size() + return m.MarshalToSizedBuffer(dAtA[:size]) +} + +func (m *QueryNetworkSize) MarshalToSizedBuffer(dAtA []byte) (int, error) { + i := len(dAtA) + _ = i + var l int + _ = l + return len(dAtA) - i, nil +} + +func (m *QueryNetworkSizeResponse) 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 *QueryNetworkSizeResponse) MarshalTo(dAtA []byte) (int, error) { + size := m.Size() + return m.MarshalToSizedBuffer(dAtA[:size]) +} + +func (m *QueryNetworkSizeResponse) MarshalToSizedBuffer(dAtA []byte) (int, error) { + i := len(dAtA) + _ = i + var l int + _ = l + if m.Size_ != 0 { + i = encodeVarintQuery(dAtA, i, uint64(m.Size_)) + i-- + dAtA[i] = 0x8 + } + return len(dAtA) - i, nil +} + func encodeVarintQuery(dAtA []byte, offset int, v uint64) int { offset -= sovQuery(v) base := offset @@ -6964,6 +7138,27 @@ func (m *QueryStorageStatsResponse) Size() (n int) { return n } +func (m *QueryNetworkSize) Size() (n int) { + if m == nil { + return 0 + } + var l int + _ = l + return n +} + +func (m *QueryNetworkSizeResponse) Size() (n int) { + if m == nil { + return 0 + } + var l int + _ = l + if m.Size_ != 0 { + n += 1 + sovQuery(uint64(m.Size_)) + } + return n +} + func sovQuery(x uint64) (n int) { return (math_bits.Len64(x|1) + 6) / 7 } @@ -12506,6 +12701,125 @@ func (m *QueryStorageStatsResponse) Unmarshal(dAtA []byte) error { } return nil } +func (m *QueryNetworkSize) 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: QueryNetworkSize: wiretype end group for non-group") + } + if fieldNum <= 0 { + return fmt.Errorf("proto: QueryNetworkSize: illegal tag %d (wire type %d)", fieldNum, wire) + } + switch fieldNum { + 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 *QueryNetworkSizeResponse) 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: QueryNetworkSizeResponse: wiretype end group for non-group") + } + if fieldNum <= 0 { + return fmt.Errorf("proto: QueryNetworkSizeResponse: illegal tag %d (wire type %d)", fieldNum, wire) + } + switch fieldNum { + case 1: + if wireType != 0 { + return fmt.Errorf("proto: wrong wireType = %d for field Size_", wireType) + } + m.Size_ = 0 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowQuery + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + m.Size_ |= uint64(b&0x7F) << shift + if b < 0x80 { + break + } + } + 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 skipQuery(dAtA []byte) (n int, err error) { l := len(dAtA) iNdEx := 0 diff --git a/x/storage/types/query.pb.gw.go b/x/storage/types/query.pb.gw.go index 2dc68c7a..2022c007 100644 --- a/x/storage/types/query.pb.gw.go +++ b/x/storage/types/query.pb.gw.go @@ -1633,6 +1633,24 @@ func local_request_Query_StorageStats_0(ctx context.Context, marshaler runtime.M } +func request_Query_NetworkSize_0(ctx context.Context, marshaler runtime.Marshaler, client QueryClient, req *http.Request, pathParams map[string]string) (proto.Message, runtime.ServerMetadata, error) { + var protoReq QueryNetworkSize + var metadata runtime.ServerMetadata + + msg, err := client.NetworkSize(ctx, &protoReq, grpc.Header(&metadata.HeaderMD), grpc.Trailer(&metadata.TrailerMD)) + return msg, metadata, err + +} + +func local_request_Query_NetworkSize_0(ctx context.Context, marshaler runtime.Marshaler, server QueryServer, req *http.Request, pathParams map[string]string) (proto.Message, runtime.ServerMetadata, error) { + var protoReq QueryNetworkSize + var metadata runtime.ServerMetadata + + msg, err := server.NetworkSize(ctx, &protoReq) + return msg, metadata, err + +} + var ( filter_Query_Gauges_0 = &utilities.DoubleArray{Encoding: map[string]int{}, Base: []int(nil), Check: []int(nil)} ) @@ -2296,6 +2314,29 @@ func RegisterQueryHandlerServer(ctx context.Context, mux *runtime.ServeMux, serv }) + mux.Handle("GET", pattern_Query_NetworkSize_0, func(w http.ResponseWriter, req *http.Request, pathParams map[string]string) { + ctx, cancel := context.WithCancel(req.Context()) + defer cancel() + var stream runtime.ServerTransportStream + ctx = grpc.NewContextWithServerTransportStream(ctx, &stream) + inboundMarshaler, outboundMarshaler := runtime.MarshalerForRequest(mux, req) + rctx, err := runtime.AnnotateIncomingContext(ctx, mux, req) + if err != nil { + runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err) + return + } + resp, md, err := local_request_Query_NetworkSize_0(rctx, inboundMarshaler, server, req, pathParams) + md.HeaderMD, md.TrailerMD = metadata.Join(md.HeaderMD, stream.Header()), metadata.Join(md.TrailerMD, stream.Trailer()) + ctx = runtime.NewServerMetadataContext(ctx, md) + if err != nil { + runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err) + return + } + + forward_Query_NetworkSize_0(ctx, mux, outboundMarshaler, w, req, resp, mux.GetForwardResponseOptions()...) + + }) + mux.Handle("GET", pattern_Query_Gauges_0, func(w http.ResponseWriter, req *http.Request, pathParams map[string]string) { ctx, cancel := context.WithCancel(req.Context()) defer cancel() @@ -2900,6 +2941,26 @@ func RegisterQueryHandlerClient(ctx context.Context, mux *runtime.ServeMux, clie }) + mux.Handle("GET", pattern_Query_NetworkSize_0, func(w http.ResponseWriter, req *http.Request, pathParams map[string]string) { + ctx, cancel := context.WithCancel(req.Context()) + defer cancel() + inboundMarshaler, outboundMarshaler := runtime.MarshalerForRequest(mux, req) + rctx, err := runtime.AnnotateContext(ctx, mux, req) + if err != nil { + runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err) + return + } + resp, md, err := request_Query_NetworkSize_0(rctx, inboundMarshaler, client, req, pathParams) + ctx = runtime.NewServerMetadataContext(ctx, md) + if err != nil { + runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err) + return + } + + forward_Query_NetworkSize_0(ctx, mux, outboundMarshaler, w, req, resp, mux.GetForwardResponseOptions()...) + + }) + mux.Handle("GET", pattern_Query_Gauges_0, func(w http.ResponseWriter, req *http.Request, pathParams map[string]string) { ctx, cancel := context.WithCancel(req.Context()) defer cancel() @@ -2978,6 +3039,8 @@ var ( pattern_Query_StorageStats_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1, 2, 2, 2, 3}, []string{"jackal", "canine-chain", "storage", "storage_stats"}, "", runtime.AssumeColonVerbOpt(false))) + pattern_Query_NetworkSize_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1, 2, 2, 2, 3}, []string{"jackal", "canine-chain", "storage", "network_size"}, "", runtime.AssumeColonVerbOpt(false))) + pattern_Query_Gauges_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1, 2, 2, 2, 3}, []string{"jackal", "canine-chain", "storage", "gauges"}, "", runtime.AssumeColonVerbOpt(false))) ) @@ -3036,5 +3099,7 @@ var ( forward_Query_StorageStats_0 = runtime.ForwardResponseMessage + forward_Query_NetworkSize_0 = runtime.ForwardResponseMessage + forward_Query_Gauges_0 = runtime.ForwardResponseMessage )