diff --git a/deployment/localup/localup.sh b/deployment/localup/localup.sh index 1acf7890b..43c88d42e 100644 --- a/deployment/localup/localup.sh +++ b/deployment/localup/localup.sh @@ -173,6 +173,7 @@ function generate_genesis() { sed -i -e "s/log_level = \"info\"/\log_level= \"debug\"/g" ${workspace}/.local/validator${i}/config/config.toml echo -e '[[upgrade]]\nname = "Nagqu"\nheight = 20\ninfo = ""' >> ${workspace}/.local/validator${i}/config/app.toml echo -e '[[upgrade]]\nname = "Pampas"\nheight = 20\ninfo = ""' >> ${workspace}/.local/validator${i}/config/app.toml + echo -e '[[upgrade]]\nname = "Eddystone"\nheight = 20\ninfo = ""' >> ${workspace}/.local/validator${i}/config/app.toml done # enable swagger API for validator0 diff --git a/e2e/tests/storage_test.go b/e2e/tests/storage_test.go index 9e4bff8c8..4720241f0 100644 --- a/e2e/tests/storage_test.go +++ b/e2e/tests/storage_test.go @@ -27,6 +27,7 @@ import ( "github.com/bnb-chain/greenfield/sdk/keys" "github.com/bnb-chain/greenfield/sdk/types" storageutils "github.com/bnb-chain/greenfield/testutil/storage" + types2 "github.com/bnb-chain/greenfield/types" sptypes "github.com/bnb-chain/greenfield/x/sp/types" storagetypes "github.com/bnb-chain/greenfield/x/storage/types" ) @@ -2073,3 +2074,37 @@ func (s *StorageTestSuite) TestMaintenanceSPCreateBucketAndObject() { // s.Require().Error(err) // s.Require().Equal(queryHeadBucketResponse.BucketInfo.BucketStatus, storagetypes.BUCKET_STATUS_CREATED) //} + +func (s *StorageTestSuite) TestSetTag() { + var err error + user := s.GenAndChargeAccounts(1, 1000000) + + // CreateBucket + sp := s.BaseSuite.PickStorageProvider() + gvg, found := sp.GetFirstGlobalVirtualGroup() + s.Require().True(found) + + bucketName := storageutils.GenRandomBucketName() + msgCreateBucket := storagetypes.NewMsgCreateBucket( + user[0].GetAddr(), bucketName, storagetypes.VISIBILITY_TYPE_PUBLIC_READ, sp.OperatorKey.GetAddr(), + nil, math.MaxUint, nil, 0) + msgCreateBucket.PrimarySpApproval.GlobalVirtualGroupFamilyId = gvg.FamilyId + msgCreateBucket.PrimarySpApproval.Sig, err = sp.ApprovalKey.Sign(msgCreateBucket.GetApprovalBytes()) + s.Require().NoError(err) + s.SendTxBlock(user[0], msgCreateBucket) + + // Set tag + grn := types2.NewBucketGRN(bucketName) + var tags storagetypes.ResourceTags + tags.Tags = append(tags.Tags, &storagetypes.ResourceTags_Tag{Key: "key1", Value: "value1"}) + msgSetTag := storagetypes.NewMsgSetTag(user[0].GetAddr(), grn.String(), &tags) + s.SendTxBlock(user[0], msgSetTag) + + // Query + req := storagetypes.QueryResourceTagRequest{ + Resource: grn.String(), + } + resp, err := s.Client.QueryResourceTag(context.Background(), &req) + s.Require().NoError(err) + s.Require().Equal(tags, &resp.Tags) +} diff --git a/proto/greenfield/storage/query.proto b/proto/greenfield/storage/query.proto index c7fca7c2c..6d6ed096f 100644 --- a/proto/greenfield/storage/query.proto +++ b/proto/greenfield/storage/query.proto @@ -148,6 +148,11 @@ service Query { option (google.api.http).get = "/greenfield/storage/groups_exist_by_id/{group_ids}"; } + // Queries resource tags. + rpc QueryResourceTag(QueryResourceTagRequest) returns (QueryResourceTagResponse) { + option (google.api.http).get = "/greenfield/storage/resource_tag/{resource}"; + } + // this line is used by starport scaffolding # 2 } @@ -407,4 +412,14 @@ message QueryGroupsExistResponse { map exists = 1; } +message QueryResourceTagRequest { + // resource defines a greenfield standard resource name that can be generated by GRN structure + string resource = 1; +} + +message QueryResourceTagResponse { + // tags defines a list of tags the resource has + ResourceTags tags = 1; +} + // this line is used by starport scaffolding # 3 diff --git a/proto/greenfield/storage/tx.proto b/proto/greenfield/storage/tx.proto index 4df28d876..13e0b5d68 100644 --- a/proto/greenfield/storage/tx.proto +++ b/proto/greenfield/storage/tx.proto @@ -12,6 +12,7 @@ import "greenfield/common/wrapper.proto"; import "greenfield/permission/common.proto"; import "greenfield/storage/common.proto"; import "greenfield/storage/params.proto"; +import "greenfield/storage/types.proto"; option go_package = "github.com/bnb-chain/greenfield/x/storage/types"; @@ -641,7 +642,7 @@ message MsgSetTag { string resource = 2; // tags defines a list of tags which will be set to the resource - map tags = 3; + ResourceTags tags = 3; } message MsgSetTagResponse {} diff --git a/proto/greenfield/storage/types.proto b/proto/greenfield/storage/types.proto index a166e9a19..85a0d8b9c 100644 --- a/proto/greenfield/storage/types.proto +++ b/proto/greenfield/storage/types.proto @@ -173,3 +173,12 @@ message MigrationBucketInfo { (gogoproto.nullable) = false ]; } + +message ResourceTags { + message Tag { + string key = 1; + string value = 2; + } + // tags defines a list of tags the resource has + repeated Tag tags = 1; +} diff --git a/x/permission/keeper/keeper.go b/x/permission/keeper/keeper.go index 3c105514a..7dc41bbcc 100644 --- a/x/permission/keeper/keeper.go +++ b/x/permission/keeper/keeper.go @@ -540,8 +540,8 @@ func (k Keeper) RemoveExpiredPolicies(ctx sdk.Context) { ctx.EventManager().EmitTypedEvents(&types.EventDeletePolicy{PolicyId: policyId}) //nolint: errcheck count++ - //1. the policy is an account policy, delete policyKey -> policyId. - //2. the policy is group policy within a policy group, delete the index in the policy group + // 1. the policy is an account policy, delete policyKey -> policyId. + // 2. the policy is group policy within a policy group, delete the index in the policy group if ctx.IsUpgraded(upgradetypes.Pampas) { if policy.Principal.Type == types.PRINCIPAL_TYPE_GNFD_ACCOUNT { policyKey := types.GetPolicyForAccountKey(policy.ResourceId, policy.ResourceType, diff --git a/x/storage/client/cli/flags.go b/x/storage/client/cli/flags.go index 1fd4558c1..9b1bd772a 100644 --- a/x/storage/client/cli/flags.go +++ b/x/storage/client/cli/flags.go @@ -151,10 +151,10 @@ func FlagSetApproval() *flag.FlagSet { return fs } -func GetTags(str string) map[string]string { - tags := make(map[string]string) +func GetTags(str string) *storagetypes.ResourceTags { + var tags storagetypes.ResourceTags if str == "" { - return tags + return &tags } tagsStr := str @@ -170,8 +170,8 @@ func GetTags(str string) map[string]string { if len(kv) != 2 { continue } - tags[kv[0]] = kv[1] + tags.Tags = append(tags.Tags, &storagetypes.ResourceTags_Tag{Key: kv[0], Value: kv[1]}) } - return tags + return &tags } diff --git a/x/storage/client/cli/query.go b/x/storage/client/cli/query.go index 65d784838..b6b05de9c 100644 --- a/x/storage/client/cli/query.go +++ b/x/storage/client/cli/query.go @@ -39,6 +39,7 @@ func GetQueryCmd() *cobra.Command { CmdHeadGroupMember(), CmdQueryAccountPolicy(), CmdQueryGroupPolicy(), + CmdQueryResourceTag(), ) // this line is used by starport scaffolding # 1 @@ -417,3 +418,37 @@ Examples: return cmd } + +func CmdQueryResourceTag() *cobra.Command { + cmd := &cobra.Command{ + Use: "resource-tag [grn]", + Short: "Query resource tag", + Args: cobra.ExactArgs(1), + RunE: func(cmd *cobra.Command, args []string) (err error) { + grnStr := args[0] + var grn gnfd.GRN + err = grn.ParseFromString(grnStr, false) + if err != nil { + return err + } + + clientCtx, err := client.GetClientQueryContext(cmd) + if err != nil { + return err + } + queryClient := types.NewQueryClient(clientCtx) + req := &types.QueryResourceTagRequest{ + Resource: grn.String(), + } + res, err := queryClient.QueryResourceTag(cmd.Context(), req) + if err != nil { + return err + } + return clientCtx.PrintProto(res) + }, + } + + flags.AddQueryFlagsToCmd(cmd) + + return cmd +} diff --git a/x/storage/client/cli/tx.go b/x/storage/client/cli/tx.go index 4723226cf..c563272ee 100644 --- a/x/storage/client/cli/tx.go +++ b/x/storage/client/cli/tx.go @@ -1122,8 +1122,8 @@ func CmdMirrorGroup() *cobra.Command { func CmdSetTag() *cobra.Command { cmd := &cobra.Command{ - Use: "set-tag [resource] [tags]", - Short: "set a bucket/object/group's tag. The tags should be like: key1=value1,key2=value2", + Use: "set-tag [grn] [tags]", + Short: "set a bucket/object/group's tag. The tags should be like: `key1=value1,key2=value2`", Args: cobra.ExactArgs(2), RunE: func(cmd *cobra.Command, args []string) (err error) { argResource := args[0] diff --git a/x/storage/keeper/grpc_query.go b/x/storage/keeper/grpc_query.go index 90d920016..a2cb18275 100644 --- a/x/storage/keeper/grpc_query.go +++ b/x/storage/keeper/grpc_query.go @@ -15,6 +15,8 @@ import ( "github.com/bnb-chain/greenfield/internal/sequence" gnfd "github.com/bnb-chain/greenfield/types" "github.com/bnb-chain/greenfield/types/errors" + gnfderrors "github.com/bnb-chain/greenfield/types/errors" + gnfdresource "github.com/bnb-chain/greenfield/types/resource" permtypes "github.com/bnb-chain/greenfield/x/permission/types" sptypes "github.com/bnb-chain/greenfield/x/sp/types" "github.com/bnb-chain/greenfield/x/storage/types" @@ -659,3 +661,64 @@ func (k Keeper) QueryGroupsExistById(goCtx context.Context, req *types.QueryGrou } return &types.QueryGroupsExistResponse{Exists: exists}, nil } + +func (k Keeper) QueryResourceTag(goCtx context.Context, req *types.QueryResourceTagRequest) (*types.QueryResourceTagResponse, error) { + if req == nil { + return nil, status.Error(codes.InvalidArgument, "invalid request") + } + + ctx := sdk.UnwrapSDKContext(goCtx) + + var grn gnfd.GRN + err := grn.ParseFromString(req.Resource, false) + if err != nil { + return nil, status.Errorf(codes.InvalidArgument, "failed to parse GRN %s: %v", req.Resource, err) + } + + var resID math.Uint + switch grn.ResourceType() { + case gnfdresource.RESOURCE_TYPE_BUCKET: + bucketName, grnErr := grn.GetBucketName() + if grnErr != nil { + return nil, grnErr + } + bucketInfo, found := k.GetBucketInfo(ctx, bucketName) + if !found { + return nil, types.ErrNoSuchBucket.Wrapf("bucketName: %s", bucketName) + } + resID = bucketInfo.Id + case gnfdresource.RESOURCE_TYPE_OBJECT: + bucketName, objectName, grnErr := grn.GetBucketAndObjectName() + if grnErr != nil { + return nil, grnErr + } + objectInfo, found := k.GetObjectInfo(ctx, bucketName, objectName) + if !found { + return nil, types.ErrNoSuchObject.Wrapf("BucketName: %s, objectName: %s", bucketName, objectName) + } + resID = objectInfo.Id + case gnfdresource.RESOURCE_TYPE_GROUP: + groupOwner, groupName, grnErr := grn.GetGroupOwnerAndAccount() + if grnErr != nil { + return nil, grnErr + } + groupInfo, found := k.GetGroupInfo(ctx, groupOwner, groupName) + if !found { + return nil, types.ErrNoSuchBucket.Wrapf("groupOwner: %s, groupName: %s", groupOwner.String(), groupName) + } + resID = groupInfo.Id + default: + return nil, gnfderrors.ErrInvalidGRN.Wrap("Unknown resource type in greenfield resource name") + } + + store := ctx.KVStore(k.storeKey) + tagKey := types.GetResourceTagKey(string(grn.ResourceType()), resID) + bz := store.Get(tagKey) + if bz == nil { + return &types.QueryResourceTagResponse{Tags: nil}, nil + } + var tags types.ResourceTags + k.cdc.MustUnmarshal(bz, &tags) + + return &types.QueryResourceTagResponse{Tags: &tags}, nil +} diff --git a/x/storage/keeper/keeper.go b/x/storage/keeper/keeper.go index 6e7c4f2c2..8b67d35e3 100644 --- a/x/storage/keeper/keeper.go +++ b/x/storage/keeper/keeper.go @@ -15,8 +15,11 @@ import ( "github.com/bnb-chain/greenfield/internal/sequence" gnfdtypes "github.com/bnb-chain/greenfield/types" + types2 "github.com/bnb-chain/greenfield/types" "github.com/bnb-chain/greenfield/types/common" + gnfderrors "github.com/bnb-chain/greenfield/types/errors" "github.com/bnb-chain/greenfield/types/resource" + gnfdresource "github.com/bnb-chain/greenfield/types/resource" paymenttypes "github.com/bnb-chain/greenfield/x/payment/types" permtypes "github.com/bnb-chain/greenfield/x/permission/types" sptypes "github.com/bnb-chain/greenfield/x/sp/types" @@ -2199,3 +2202,72 @@ func (k Keeper) GetSourceTypeByChainId(ctx sdk.Context, chainId sdk.ChainID) (ty return 0, types.ErrChainNotSupported } + +func (k Keeper) SetTag(ctx sdk.Context, operator sdk.AccAddress, grn types2.GRN, tags *types.ResourceTags) error { + var resOwner sdk.AccAddress + var resID sdkmath.Uint + switch grn.ResourceType() { + case gnfdresource.RESOURCE_TYPE_BUCKET: + bucketName, grnErr := grn.GetBucketName() + if grnErr != nil { + return grnErr + } + bucketInfo, found := k.GetBucketInfo(ctx, bucketName) + if !found { + return types.ErrNoSuchBucket.Wrapf("bucketName: %s", bucketName) + } + resOwner = sdk.MustAccAddressFromHex(bucketInfo.Owner) + resID = bucketInfo.Id + case gnfdresource.RESOURCE_TYPE_OBJECT: + bucketName, objectName, grnErr := grn.GetBucketAndObjectName() + if grnErr != nil { + return grnErr + } + objectInfo, found := k.GetObjectInfo(ctx, bucketName, objectName) + if !found { + return types.ErrNoSuchObject.Wrapf("BucketName: %s, objectName: %s", bucketName, objectName) + } + resOwner = sdk.MustAccAddressFromHex(objectInfo.Owner) + resID = objectInfo.Id + case gnfdresource.RESOURCE_TYPE_GROUP: + groupOwner, groupName, grnErr := grn.GetGroupOwnerAndAccount() + if grnErr != nil { + return grnErr + } + groupInfo, found := k.GetGroupInfo(ctx, groupOwner, groupName) + if !found { + return types.ErrNoSuchBucket.Wrapf("groupOwner: %s, groupName: %s", groupOwner.String(), groupName) + } + resOwner = sdk.MustAccAddressFromHex(groupInfo.Owner) + resID = groupInfo.Id + default: + return gnfderrors.ErrInvalidGRN.Wrap("Unknown resource type in greenfield resource name") + } + + if !operator.Equals(resOwner) { + return types.ErrAccessDenied.Wrapf( + "Only resource owner can set tag, operator (%s), owner(%s)", + operator.String(), resOwner.String()) + } + + store := ctx.KVStore(k.storeKey) + tagKey := types.GetResourceTagKey(string(grn.ResourceType()), resID) + bz := k.cdc.MustMarshal(tags) + store.Set(tagKey, bz) + + tagMap := make(map[string]string) + for _, tag := range tags.GetTags() { + tagMap[tag.Key] = tag.Value + } + + // emit Event + if err := ctx.EventManager().EmitTypedEvents(&types.EventSetTag{ + ResourceType: grn.ResourceType(), + ResourceId: resID.String(), + Tags: tagMap, + }); err != nil { + return err + } + + return nil +} diff --git a/x/storage/keeper/permission.go b/x/storage/keeper/permission.go index a77aeb520..ee7cf6ab7 100644 --- a/x/storage/keeper/permission.go +++ b/x/storage/keeper/permission.go @@ -36,7 +36,8 @@ var ( // 1. If the policy is evaluated as "allow", return "allow" to the user. // 2. If it is evaluated as "deny" or "unspecified", return "deny". func (k Keeper) VerifyBucketPermission(ctx sdk.Context, bucketInfo *types.BucketInfo, operator sdk.AccAddress, - action permtypes.ActionType, options *permtypes.VerifyOptions) permtypes.Effect { + action permtypes.ActionType, options *permtypes.VerifyOptions, +) permtypes.Effect { // if bucket is public, anyone can read but can not write it. if bucketInfo.Visibility == storagetypes.VISIBILITY_TYPE_PUBLIC_READ && PublicReadBucketAllowedActions[action] { return permtypes.EFFECT_ALLOW @@ -70,7 +71,8 @@ func (k Keeper) VerifyBucketPermission(ctx sdk.Context, bucketInfo *types.Bucket // 3. If it is evaluated as "unspecified", then if the EffectBucket is "allow", return allow // 4. If it is evaluated as "unspecified", then if the EffectBucket is "unspecified", return deny func (k Keeper) VerifyObjectPermission(ctx sdk.Context, bucketInfo *types.BucketInfo, objectInfo *types.ObjectInfo, - operator sdk.AccAddress, action permtypes.ActionType) permtypes.Effect { + operator sdk.AccAddress, action permtypes.ActionType, +) permtypes.Effect { // anyone can read but can not write it when the following case: 1) object is public 2) object is inherit, only when bucket is public visibility := false if objectInfo.Visibility == storagetypes.VISIBILITY_TYPE_PUBLIC_READ || @@ -113,7 +115,8 @@ func (k Keeper) VerifyObjectPermission(ctx sdk.Context, bucketInfo *types.Bucket } func (k Keeper) VerifyGroupPermission(ctx sdk.Context, groupInfo *types.GroupInfo, operator sdk.AccAddress, - action permtypes.ActionType) permtypes.Effect { + action permtypes.ActionType, +) permtypes.Effect { // The owner has full permissions if strings.EqualFold(groupInfo.Owner, operator.String()) { return permtypes.EFFECT_ALLOW @@ -129,7 +132,8 @@ func (k Keeper) VerifyGroupPermission(ctx sdk.Context, groupInfo *types.GroupInf } func (k Keeper) VerifyPolicy(ctx sdk.Context, resourceID math.Uint, resourceType gnfdresource.ResourceType, - operator sdk.AccAddress, action permtypes.ActionType, opts *permtypes.VerifyOptions) permtypes.Effect { + operator sdk.AccAddress, action permtypes.ActionType, opts *permtypes.VerifyOptions, +) permtypes.Effect { // verify policy which grant permission to account policy, found := k.permKeeper.GetPolicyForAccount(ctx, resourceID, resourceType, operator) if found { @@ -241,8 +245,8 @@ func (k Keeper) GetPolicy(ctx sdk.Context, grn *types2.GRN, principal *permtypes } func (k Keeper) PutPolicy(ctx sdk.Context, operator sdk.AccAddress, grn types2.GRN, - policy *permtypes.Policy) (math.Uint, error) { - + policy *permtypes.Policy, +) (math.Uint, error) { var resOwner sdk.AccAddress var resID math.Uint switch grn.ResourceType() { @@ -304,7 +308,8 @@ func (k Keeper) PutPolicy(ctx sdk.Context, operator sdk.AccAddress, grn types2.G } func (k Keeper) DeletePolicy(ctx sdk.Context, operator sdk.AccAddress, principal *permtypes.Principal, - grn types2.GRN) (math.Uint, error) { + grn types2.GRN, +) (math.Uint, error) { var resOwner sdk.AccAddress var resID math.Uint @@ -354,71 +359,6 @@ func (k Keeper) DeletePolicy(ctx sdk.Context, operator sdk.AccAddress, principal return k.permKeeper.DeletePolicy(ctx, principal, grn.ResourceType(), resID) } -func (k Keeper) SetTag(ctx sdk.Context, operator sdk.AccAddress, grn types2.GRN, tags map[string]string) error { - var resOwner sdk.AccAddress - var resType gnfdresource.ResourceType - var resID math.Uint - switch grn.ResourceType() { - case gnfdresource.RESOURCE_TYPE_BUCKET: - resType = gnfdresource.RESOURCE_TYPE_BUCKET - bucketName, grnErr := grn.GetBucketName() - if grnErr != nil { - return grnErr - } - bucketInfo, found := k.GetBucketInfo(ctx, bucketName) - if !found { - return types.ErrNoSuchBucket.Wrapf("bucketName: %s", bucketName) - } - resOwner = sdk.MustAccAddressFromHex(bucketInfo.Owner) - resID = bucketInfo.Id - case gnfdresource.RESOURCE_TYPE_OBJECT: - resType = gnfdresource.RESOURCE_TYPE_OBJECT - bucketName, objectName, grnErr := grn.GetBucketAndObjectName() - if grnErr != nil { - return grnErr - } - objectInfo, found := k.GetObjectInfo(ctx, bucketName, objectName) - if !found { - return types.ErrNoSuchObject.Wrapf("BucketName: %s, objectName: %s", bucketName, objectName) - } - - resOwner = sdk.MustAccAddressFromHex(objectInfo.Owner) - resID = objectInfo.Id - case gnfdresource.RESOURCE_TYPE_GROUP: - resType = gnfdresource.RESOURCE_TYPE_GROUP - groupOwner, groupName, grnErr := grn.GetGroupOwnerAndAccount() - if grnErr != nil { - return grnErr - } - groupInfo, found := k.GetGroupInfo(ctx, groupOwner, groupName) - if !found { - return types.ErrNoSuchBucket.Wrapf("groupOwner: %s, groupName: %s", groupOwner.String(), groupName) - } - - resOwner = sdk.MustAccAddressFromHex(groupInfo.Owner) - resID = groupInfo.Id - default: - return gnfderrors.ErrInvalidGRN.Wrap("Unknown resource type in greenfield resource name") - } - - if !operator.Equals(resOwner) { - return types.ErrAccessDenied.Wrapf( - "Only resource owner can set tag, operator (%s), owner(%s)", - operator.String(), resOwner.String()) - } - - // emit Event - if err := ctx.EventManager().EmitTypedEvents(&types.EventSetTag{ - ResourceType: resType, - ResourceId: resID.String(), - Tags: tags, - }); err != nil { - return err - } - - return nil -} - func (k Keeper) normalizePrincipal(ctx sdk.Context, principal *permtypes.Principal) { if principal.Type == permtypes.PRINCIPAL_TYPE_GNFD_GROUP { if _, err := math.ParseUint(principal.Value); err == nil { diff --git a/x/storage/types/keys.go b/x/storage/types/keys.go index de9593a43..96001fb63 100644 --- a/x/storage/types/keys.go +++ b/x/storage/types/keys.go @@ -156,3 +156,7 @@ func GetInternalBucketInfoKey(bucketID math.Uint) []byte { var seq sequence.Sequence[math.Uint] return append(InternalBucketInfoPrefix, seq.EncodeSequence(bucketID)...) } + +func GetResourceTagKey(resourceType string, resourceID math.Uint) []byte { + return append([]byte(resourceType), resourceID.Bytes()...) +} diff --git a/x/storage/types/message.go b/x/storage/types/message.go index fb66d0c79..c8f0aae8c 100644 --- a/x/storage/types/message.go +++ b/x/storage/types/message.go @@ -56,6 +56,7 @@ const ( TypeMsgSetTag = "set_tag" MaxGroupMemberLimitOnce = 20 + MaxTagCount = 4 // For discontinue MaxDiscontinueReasonLen = 128 @@ -1535,7 +1536,7 @@ func (msg *MsgRenewGroupMember) ValidateBasic() error { return nil } -func NewMsgSetTag(operator sdk.AccAddress, resource string, tags map[string]string) *MsgSetTag { +func NewMsgSetTag(operator sdk.AccAddress, resource string, tags *ResourceTags) *MsgSetTag { return &MsgSetTag{ Operator: operator.String(), Resource: resource, @@ -1581,5 +1582,9 @@ func (msg *MsgSetTag) ValidateBasic() error { return errors.Wrapf(gnfderrors.ErrInvalidGRN, "invalid greenfield resource name (%s)", err) } + if len(msg.Tags.GetTags()) > MaxTagCount { + return gnfderrors.ErrInvalidParameter.Wrapf("Tags count limit exceeded") + } + return nil } diff --git a/x/storage/types/query.pb.go b/x/storage/types/query.pb.go index 1ade76fc7..ce66df355 100644 --- a/x/storage/types/query.pb.go +++ b/x/storage/types/query.pb.go @@ -2221,6 +2221,96 @@ func (m *QueryGroupsExistResponse) GetExists() map[string]bool { return nil } +type QueryResourceTagRequest struct { + // resource defines a greenfield standard resource name that can be generated by GRN structure + Resource string `protobuf:"bytes,1,opt,name=resource,proto3" json:"resource,omitempty"` +} + +func (m *QueryResourceTagRequest) Reset() { *m = QueryResourceTagRequest{} } +func (m *QueryResourceTagRequest) String() string { return proto.CompactTextString(m) } +func (*QueryResourceTagRequest) ProtoMessage() {} +func (*QueryResourceTagRequest) Descriptor() ([]byte, []int) { + return fileDescriptor_b1b80b580af04cb0, []int{46} +} +func (m *QueryResourceTagRequest) XXX_Unmarshal(b []byte) error { + return m.Unmarshal(b) +} +func (m *QueryResourceTagRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + if deterministic { + return xxx_messageInfo_QueryResourceTagRequest.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 *QueryResourceTagRequest) XXX_Merge(src proto.Message) { + xxx_messageInfo_QueryResourceTagRequest.Merge(m, src) +} +func (m *QueryResourceTagRequest) XXX_Size() int { + return m.Size() +} +func (m *QueryResourceTagRequest) XXX_DiscardUnknown() { + xxx_messageInfo_QueryResourceTagRequest.DiscardUnknown(m) +} + +var xxx_messageInfo_QueryResourceTagRequest proto.InternalMessageInfo + +func (m *QueryResourceTagRequest) GetResource() string { + if m != nil { + return m.Resource + } + return "" +} + +type QueryResourceTagResponse struct { + // tags defines a list of tags the resource has + Tags *ResourceTags `protobuf:"bytes,1,opt,name=tags,proto3" json:"tags,omitempty"` +} + +func (m *QueryResourceTagResponse) Reset() { *m = QueryResourceTagResponse{} } +func (m *QueryResourceTagResponse) String() string { return proto.CompactTextString(m) } +func (*QueryResourceTagResponse) ProtoMessage() {} +func (*QueryResourceTagResponse) Descriptor() ([]byte, []int) { + return fileDescriptor_b1b80b580af04cb0, []int{47} +} +func (m *QueryResourceTagResponse) XXX_Unmarshal(b []byte) error { + return m.Unmarshal(b) +} +func (m *QueryResourceTagResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + if deterministic { + return xxx_messageInfo_QueryResourceTagResponse.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 *QueryResourceTagResponse) XXX_Merge(src proto.Message) { + xxx_messageInfo_QueryResourceTagResponse.Merge(m, src) +} +func (m *QueryResourceTagResponse) XXX_Size() int { + return m.Size() +} +func (m *QueryResourceTagResponse) XXX_DiscardUnknown() { + xxx_messageInfo_QueryResourceTagResponse.DiscardUnknown(m) +} + +var xxx_messageInfo_QueryResourceTagResponse proto.InternalMessageInfo + +func (m *QueryResourceTagResponse) GetTags() *ResourceTags { + if m != nil { + return m.Tags + } + return nil +} + func init() { proto.RegisterType((*QueryParamsRequest)(nil), "greenfield.storage.QueryParamsRequest") proto.RegisterType((*QueryParamsResponse)(nil), "greenfield.storage.QueryParamsResponse") @@ -2270,176 +2360,183 @@ func init() { proto.RegisterType((*QueryGroupsExistByIdRequest)(nil), "greenfield.storage.QueryGroupsExistByIdRequest") proto.RegisterType((*QueryGroupsExistResponse)(nil), "greenfield.storage.QueryGroupsExistResponse") proto.RegisterMapType((map[string]bool)(nil), "greenfield.storage.QueryGroupsExistResponse.ExistsEntry") + proto.RegisterType((*QueryResourceTagRequest)(nil), "greenfield.storage.QueryResourceTagRequest") + proto.RegisterType((*QueryResourceTagResponse)(nil), "greenfield.storage.QueryResourceTagResponse") } func init() { proto.RegisterFile("greenfield/storage/query.proto", fileDescriptor_b1b80b580af04cb0) } var fileDescriptor_b1b80b580af04cb0 = []byte{ - // 2621 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xb4, 0x5a, 0xcd, 0x6f, 0x1c, 0x49, - 0x15, 0x4f, 0xdb, 0x89, 0x63, 0x97, 0x4d, 0x12, 0x6a, 0xbd, 0x1b, 0x67, 0x92, 0x38, 0x49, 0x2f, - 0x24, 0xd9, 0x24, 0x9e, 0x4e, 0x9c, 0x04, 0xc5, 0xf9, 0x42, 0xf6, 0xc6, 0x0e, 0x23, 0xe5, 0xc3, - 0xe9, 0x18, 0x23, 0x22, 0xa1, 0x56, 0x4d, 0x77, 0x79, 0xd2, 0xeb, 0x99, 0xee, 0x49, 0x77, 0x4f, - 0x9c, 0x59, 0x6b, 0x84, 0xd8, 0x0b, 0x1c, 0x11, 0x08, 0x09, 0x09, 0x90, 0x10, 0x88, 0xcf, 0x0b, - 0x82, 0x5d, 0x21, 0x71, 0xe2, 0x02, 0xd2, 0x4a, 0x08, 0x69, 0xb5, 0x5c, 0xd0, 0x1e, 0x56, 0x90, - 0xf0, 0x2f, 0x70, 0x47, 0x5d, 0xf5, 0xaa, 0xbb, 0xfa, 0x63, 0xba, 0xc7, 0xeb, 0xe1, 0xe4, 0xe9, - 0xea, 0x7a, 0xef, 0xfd, 0xde, 0x47, 0xbd, 0xaa, 0xfa, 0xb5, 0xd1, 0x6c, 0xc3, 0xa3, 0xd4, 0xd9, - 0xb0, 0x69, 0xd3, 0xd2, 0xfc, 0xc0, 0xf5, 0x48, 0x83, 0x6a, 0xcf, 0x3a, 0xd4, 0xeb, 0x56, 0xdb, - 0x9e, 0x1b, 0xb8, 0x18, 0xc7, 0xef, 0xab, 0xf0, 0xbe, 0x72, 0xce, 0x74, 0xfd, 0x96, 0xeb, 0x6b, - 0x75, 0xe2, 0xc3, 0x64, 0xed, 0xf9, 0xa5, 0x3a, 0x0d, 0xc8, 0x25, 0xad, 0x4d, 0x1a, 0xb6, 0x43, - 0x02, 0xdb, 0x75, 0xb8, 0x7c, 0xe5, 0x08, 0x9f, 0x6b, 0xb0, 0x27, 0x8d, 0x3f, 0xc0, 0xab, 0xe9, - 0x86, 0xdb, 0x70, 0xf9, 0x78, 0xf8, 0x0b, 0x46, 0x8f, 0x35, 0x5c, 0xb7, 0xd1, 0xa4, 0x1a, 0x69, - 0xdb, 0x1a, 0x71, 0x1c, 0x37, 0x60, 0xda, 0x84, 0x8c, 0x2a, 0xc1, 0x6d, 0x53, 0xaf, 0x65, 0xfb, - 0xbe, 0xed, 0x3a, 0x9a, 0xe9, 0xb6, 0x5a, 0x91, 0xc9, 0x53, 0xf9, 0x73, 0x82, 0x6e, 0x9b, 0x0a, - 0x35, 0x27, 0x72, 0xbc, 0x6e, 0x13, 0x8f, 0xb4, 0xc4, 0x84, 0xbc, 0xb0, 0xc8, 0x0a, 0xde, 0x94, - 0xde, 0x3f, 0xb7, 0xbd, 0xa0, 0x43, 0x9a, 0x0d, 0xcf, 0xed, 0xb4, 0xe5, 0x49, 0xea, 0x34, 0xc2, - 0x8f, 0xc2, 0xe8, 0xac, 0x32, 0xcd, 0x3a, 0x7d, 0xd6, 0xa1, 0x7e, 0xa0, 0x3e, 0x44, 0xaf, 0x25, - 0x46, 0xfd, 0xb6, 0xeb, 0xf8, 0x14, 0x5f, 0x43, 0x63, 0x1c, 0xc1, 0x8c, 0x72, 0x52, 0x39, 0x3b, - 0x39, 0x5f, 0xa9, 0x66, 0x23, 0x5f, 0xe5, 0x32, 0x4b, 0x7b, 0x3f, 0xfc, 0xf4, 0xc4, 0x1e, 0x1d, - 0xe6, 0xab, 0xb7, 0xd0, 0x71, 0x49, 0xe1, 0x52, 0x77, 0xcd, 0x6e, 0x51, 0x3f, 0x20, 0xad, 0x36, - 0x58, 0xc4, 0xc7, 0xd0, 0x44, 0x20, 0xc6, 0x98, 0xf6, 0x51, 0x3d, 0x1e, 0x50, 0x9f, 0xa0, 0xd9, - 0x7e, 0xe2, 0xbb, 0x86, 0xb6, 0x80, 0xde, 0x60, 0xba, 0xbf, 0x42, 0x89, 0xb5, 0xd4, 0x31, 0x37, - 0x69, 0x20, 0x30, 0x9d, 0x40, 0x93, 0x75, 0x36, 0x60, 0x38, 0xa4, 0x45, 0x99, 0xe2, 0x09, 0x1d, - 0xf1, 0xa1, 0x07, 0xa4, 0x45, 0xd5, 0x05, 0x54, 0x49, 0x89, 0x2e, 0x75, 0x6b, 0x96, 0x10, 0x3f, - 0x8a, 0x26, 0x40, 0xdc, 0xb6, 0x40, 0x78, 0x9c, 0x0f, 0xd4, 0x2c, 0xf5, 0x09, 0x3a, 0x9c, 0xb1, - 0x0a, 0xae, 0x7c, 0x39, 0x32, 0x6b, 0x3b, 0x1b, 0x2e, 0xf8, 0x33, 0x9b, 0xe7, 0x0f, 0x17, 0xac, - 0x39, 0x1b, 0xae, 0x80, 0x15, 0xfe, 0x56, 0x9f, 0x48, 0x1e, 0x3d, 0xac, 0xbf, 0x43, 0xcd, 0x81, - 0x3d, 0x0a, 0x27, 0xb8, 0x4c, 0x82, 0x4f, 0x18, 0xe1, 0x13, 0xf8, 0x50, 0xc6, 0x65, 0xae, 0x3b, - 0xe5, 0x32, 0x88, 0xc7, 0x2e, 0xf3, 0x81, 0x9a, 0xa5, 0xfe, 0x49, 0x91, 0x7c, 0x16, 0xb8, 0x62, - 0x9f, 0x85, 0x60, 0x89, 0xcf, 0x5c, 0x90, 0xfb, 0xec, 0x46, 0xbf, 0xf1, 0x37, 0xd0, 0x74, 0xa3, - 0xe9, 0xd6, 0x49, 0xd3, 0x80, 0x52, 0x37, 0x58, 0xad, 0x33, 0x0f, 0x26, 0xe7, 0xcf, 0xcb, 0x9a, - 0xe4, 0xb5, 0x50, 0xbd, 0xcb, 0x84, 0xd6, 0xf9, 0xd0, 0xdd, 0x70, 0x48, 0xc7, 0x8d, 0xcc, 0x98, - 0x4a, 0x00, 0xfa, 0x3d, 0xdb, 0x0f, 0x78, 0xd4, 0xc5, 0x5a, 0xc1, 0x2b, 0x08, 0xc5, 0x1d, 0x05, - 0x90, 0x9f, 0xae, 0x42, 0x17, 0x09, 0xdb, 0x4f, 0x95, 0xf7, 0x2a, 0x68, 0x3f, 0xd5, 0x55, 0xd2, - 0xa0, 0x20, 0xab, 0x4b, 0x92, 0xea, 0x2f, 0x15, 0x34, 0x93, 0xb5, 0x01, 0xf1, 0x59, 0x44, 0x53, - 0x52, 0x4d, 0x84, 0x45, 0x3e, 0x3a, 0x40, 0x51, 0x4c, 0xc6, 0x45, 0xe1, 0xe3, 0xbb, 0x09, 0x9c, - 0x3c, 0x2e, 0x67, 0x4a, 0x71, 0x72, 0xfb, 0x09, 0xa0, 0xef, 0x29, 0x52, 0x30, 0x78, 0x3a, 0x86, - 0x1d, 0x8c, 0x74, 0xa1, 0x8e, 0x64, 0x96, 0xde, 0x77, 0x14, 0x74, 0x2a, 0x0d, 0x62, 0xa9, 0x0b, - 0xbe, 0x5b, 0xc3, 0x86, 0x93, 0x58, 0xca, 0x23, 0xa9, 0xa5, 0x9c, 0x48, 0x5c, 0x14, 0x8f, 0x38, - 0x71, 0x52, 0x61, 0x17, 0x26, 0x4e, 0xaa, 0xec, 0xc9, 0xb8, 0xb2, 0x87, 0x98, 0xb8, 0x0b, 0xe8, - 0x20, 0xc3, 0xf9, 0x60, 0x65, 0x4d, 0x04, 0xe8, 0x08, 0x1a, 0x0f, 0xdc, 0x4d, 0xea, 0xc4, 0xeb, - 0x75, 0x3f, 0x7b, 0xae, 0x59, 0xea, 0xd7, 0xa1, 0x8b, 0xf0, 0x98, 0x32, 0x99, 0x68, 0xb1, 0x4e, - 0xb4, 0x68, 0x40, 0x0c, 0x8b, 0x04, 0x04, 0x82, 0xaa, 0xf6, 0xaf, 0xc4, 0xfb, 0x34, 0x20, 0x77, - 0x48, 0x40, 0xf4, 0xf1, 0x16, 0xfc, 0x8a, 0x54, 0x73, 0x8f, 0x3f, 0x8b, 0x6a, 0x2e, 0x99, 0xa3, - 0xfa, 0x6b, 0xe8, 0x75, 0xa6, 0x9a, 0x2d, 0x5b, 0x59, 0xf3, 0xed, 0xac, 0xe6, 0x53, 0x79, 0x9a, - 0x99, 0x60, 0x8e, 0xe2, 0x6f, 0x29, 0xe8, 0x18, 0xdf, 0x83, 0xdc, 0xa6, 0x6d, 0x76, 0x57, 0x5c, - 0x6f, 0xd1, 0x34, 0xdd, 0x8e, 0x13, 0xf5, 0xd6, 0x0a, 0x1a, 0xf7, 0xa8, 0xef, 0x76, 0x3c, 0x53, - 0x34, 0xd6, 0xe8, 0x19, 0x2f, 0xa3, 0xcf, 0xb7, 0x3d, 0xdb, 0x31, 0xed, 0x36, 0x69, 0x1a, 0xc4, - 0xb2, 0x3c, 0xea, 0xfb, 0xbc, 0x8e, 0x96, 0x66, 0x3e, 0xfe, 0x60, 0x6e, 0x1a, 0x92, 0xb9, 0xc8, - 0xdf, 0x3c, 0x0e, 0x3c, 0xdb, 0x69, 0xe8, 0x87, 0x22, 0x11, 0x18, 0x57, 0xd7, 0xc5, 0x2e, 0x9a, - 0x81, 0x00, 0x4e, 0x5e, 0x45, 0x63, 0x6d, 0xf6, 0x0e, 0x3c, 0x3c, 0x2e, 0x7b, 0x18, 0x9f, 0x33, - 0xaa, 0x5c, 0x81, 0x0e, 0x93, 0xd5, 0x4f, 0x84, 0x6f, 0xeb, 0xd4, 0xb3, 0x37, 0xba, 0xab, 0xd1, - 0x44, 0xe1, 0xdb, 0x15, 0x34, 0xee, 0xb6, 0xa9, 0x47, 0x02, 0xd7, 0xe3, 0xbe, 0x15, 0xc0, 0x8e, - 0x66, 0x96, 0x2e, 0xe2, 0xf4, 0x6e, 0x33, 0x9a, 0xde, 0x6d, 0xf0, 0x12, 0x9a, 0x24, 0x66, 0x58, - 0xbb, 0x46, 0x78, 0x66, 0x99, 0xd9, 0x7b, 0x52, 0x39, 0x7b, 0x20, 0x99, 0x36, 0xc9, 0xa9, 0x45, - 0x36, 0x73, 0xad, 0xdb, 0xa6, 0x3a, 0x22, 0xd1, 0xef, 0x28, 0x68, 0x59, 0xdf, 0xe2, 0xa0, 0xd1, - 0x8d, 0x0d, 0x6a, 0x06, 0xcc, 0xb5, 0x03, 0x7d, 0x83, 0xb6, 0xcc, 0x26, 0xe9, 0x30, 0x59, 0x7d, - 0x06, 0x95, 0x16, 0xee, 0x66, 0x7c, 0xe3, 0x80, 0x60, 0x2d, 0xa0, 0x49, 0xb6, 0xb7, 0x18, 0xee, - 0x96, 0x43, 0xcb, 0xe3, 0x85, 0xd8, 0xe4, 0x87, 0xe1, 0x5c, 0x7c, 0x1c, 0xf1, 0x27, 0x39, 0x60, - 0x13, 0x6c, 0x84, 0x35, 0xbd, 0x75, 0x69, 0x63, 0x07, 0x93, 0xe0, 0xc3, 0x4d, 0x21, 0x28, 0x6d, - 0x9f, 0xc7, 0xfb, 0x96, 0x37, 0xeb, 0x31, 0x5c, 0x2f, 0x3b, 0x30, 0xfc, 0x48, 0x01, 0xc5, 0x61, - 0x07, 0x63, 0x33, 0x86, 0xde, 0xd0, 0x53, 0x41, 0x19, 0x19, 0x3c, 0x28, 0xea, 0xcf, 0xe4, 0xfd, - 0x46, 0xa0, 0x03, 0xbf, 0xef, 0xe6, 0xc0, 0xfb, 0x2c, 0xbd, 0x11, 0xdf, 0x16, 0xf8, 0x78, 0x9b, - 0x1e, 0x61, 0x6d, 0xba, 0x24, 0x82, 0x28, 0x8a, 0xa0, 0xaf, 0xfe, 0x46, 0x41, 0x47, 0x93, 0xb9, - 0xb9, 0x4f, 0x5b, 0x75, 0xea, 0x89, 0x38, 0x5e, 0x44, 0x63, 0x2d, 0x36, 0x50, 0x5a, 0x0f, 0x30, - 0x6f, 0x17, 0x11, 0x4b, 0x95, 0xd1, 0x68, 0xba, 0x8c, 0x28, 0xac, 0xf6, 0x0c, 0x54, 0x08, 0xea, - 0x32, 0x9a, 0xe2, 0xe2, 0x12, 0xe2, 0x54, 0x1f, 0x96, 0x96, 0x85, 0xac, 0x81, 0x23, 0xe6, 0x0f, - 0xea, 0x06, 0x1c, 0x15, 0xa3, 0x6e, 0x95, 0x58, 0x25, 0x45, 0xed, 0xf2, 0x02, 0xc2, 0x71, 0xbb, - 0x84, 0xb4, 0x88, 0x7d, 0x37, 0xee, 0x8a, 0x3c, 0x11, 0x96, 0xba, 0x06, 0x91, 0x4f, 0xdb, 0xd9, - 0x5d, 0x4f, 0xbc, 0x0a, 0x4b, 0x82, 0x0f, 0xa7, 0x0e, 0xb9, 0x7c, 0x8e, 0x74, 0xc8, 0xe5, 0x03, - 0x35, 0x4b, 0x5d, 0x85, 0x5a, 0x95, 0xc5, 0x76, 0x07, 0xe4, 0x27, 0x0a, 0x5c, 0xc6, 0xee, 0xb9, - 0xe6, 0xe6, 0x0a, 0xa5, 0xf1, 0xca, 0x0c, 0x83, 0xd4, 0x22, 0x5e, 0xd7, 0xf0, 0xdb, 0xd1, 0xa6, - 0xa2, 0x0c, 0xb0, 0xa9, 0x84, 0x32, 0x8f, 0xdb, 0x30, 0x1e, 0xba, 0x63, 0x7a, 0x94, 0x04, 0xd4, - 0x20, 0x01, 0x8b, 0xf1, 0xa8, 0x3e, 0xce, 0x07, 0x16, 0x03, 0x7c, 0x0a, 0x4d, 0xb5, 0x49, 0xb7, - 0xe9, 0x12, 0xcb, 0xf0, 0xed, 0x77, 0x79, 0x2d, 0xed, 0xd5, 0x27, 0x61, 0xec, 0xb1, 0xfd, 0x2e, - 0x55, 0x9b, 0x68, 0x3a, 0x09, 0x0f, 0xdc, 0x5d, 0x43, 0x63, 0xa4, 0x15, 0xee, 0x4e, 0x80, 0xe9, - 0x66, 0x78, 0xeb, 0xfa, 0xe4, 0xd3, 0x13, 0xa7, 0x1b, 0x76, 0xf0, 0xb4, 0x53, 0xaf, 0x9a, 0x6e, - 0x0b, 0xee, 0xda, 0xf0, 0x67, 0xce, 0xb7, 0x36, 0xe1, 0x6e, 0x5a, 0x73, 0x82, 0x8f, 0x3f, 0x98, - 0x43, 0xe0, 0x41, 0xcd, 0x09, 0x74, 0xd0, 0xa5, 0xde, 0x96, 0x96, 0x19, 0x3f, 0x5f, 0x2c, 0xbf, - 0x08, 0x3c, 0x32, 0xf0, 0x95, 0x4d, 0xae, 0xfd, 0x84, 0x7c, 0x54, 0xfb, 0x88, 0x86, 0x03, 0x72, - 0x23, 0x3d, 0x9d, 0xd7, 0x06, 0x6a, 0x4e, 0x40, 0x3d, 0x87, 0x34, 0xa5, 0xe3, 0xf6, 0x04, 0x93, - 0x64, 0x1d, 0xf5, 0x16, 0xd4, 0x7e, 0xcd, 0x5f, 0xf5, 0x6c, 0x93, 0xbe, 0xfd, 0x94, 0x38, 0x0d, - 0x6a, 0x0d, 0x8c, 0xf2, 0xdf, 0xfb, 0xc1, 0xcd, 0xb4, 0x3c, 0xa0, 0x9c, 0x41, 0xfb, 0x4d, 0x3e, - 0xc4, 0x84, 0xc7, 0x75, 0xf1, 0x88, 0xdf, 0x41, 0xd8, 0xec, 0x78, 0x1e, 0x75, 0x02, 0xc3, 0xa3, - 0xc4, 0x32, 0xda, 0xa1, 0x38, 0x34, 0x8f, 0x9d, 0x64, 0xe0, 0x0e, 0x35, 0xa5, 0x0c, 0xdc, 0xa1, - 0xa6, 0x7e, 0x08, 0xf4, 0xea, 0x94, 0x58, 0x0c, 0x14, 0xde, 0x46, 0x47, 0x85, 0xad, 0xa8, 0x12, - 0x03, 0xd7, 0xa3, 0x60, 0x74, 0x74, 0x08, 0x46, 0x67, 0xc0, 0xc0, 0x2a, 0x54, 0x6d, 0xa8, 0x9e, - 0x1b, 0xff, 0x26, 0x3a, 0x2e, 0x8c, 0xfb, 0xd4, 0x74, 0x1d, 0x2b, 0x6d, 0x7e, 0xef, 0x10, 0xcc, - 0x57, 0xc0, 0xc4, 0x63, 0x61, 0x41, 0x02, 0xd0, 0x45, 0xe2, 0xad, 0xf1, 0x9c, 0x34, 0x6d, 0x2b, - 0x3c, 0xf2, 0x18, 0x01, 0x79, 0x61, 0x78, 0x24, 0xa0, 0x33, 0xfb, 0x86, 0x60, 0xfd, 0x30, 0xe8, - 0x5f, 0x17, 0xea, 0xd7, 0xc8, 0x0b, 0x9d, 0x04, 0x14, 0xd7, 0xd1, 0x01, 0x87, 0x6e, 0xc9, 0x09, - 0x1e, 0x1b, 0x82, 0xb9, 0x29, 0x87, 0x6e, 0xc5, 0xc9, 0xf5, 0xd1, 0xe1, 0xd0, 0x46, 0x5e, 0x62, - 0xf7, 0x0f, 0xc1, 0xd8, 0xb4, 0x43, 0xb7, 0xb2, 0x49, 0xdd, 0x42, 0x47, 0x42, 0xa3, 0xf9, 0x09, - 0x1d, 0x1f, 0x82, 0xd9, 0x37, 0x1c, 0xba, 0x95, 0x97, 0xcc, 0x67, 0x28, 0x7c, 0x93, 0x97, 0xc8, - 0x89, 0x21, 0x58, 0x7d, 0xcd, 0xa1, 0x5b, 0xe9, 0x24, 0x46, 0x9d, 0xec, 0x51, 0xc7, 0x0d, 0xe8, - 0x57, 0xdb, 0x16, 0x09, 0xe8, 0x9a, 0xdd, 0xa2, 0x03, 0xf7, 0x88, 0x1b, 0xd0, 0xc9, 0x32, 0xf2, - 0xd0, 0x23, 0x8e, 0xa2, 0x89, 0x0e, 0x1b, 0x0d, 0xfb, 0xfa, 0x18, 0xef, 0xeb, 0x7c, 0x60, 0x31, - 0x50, 0x1d, 0x38, 0x14, 0x4b, 0x9b, 0xb7, 0xbf, 0xfc, 0xc2, 0xf6, 0x03, 0xe9, 0x62, 0x18, 0x6d, - 0xbc, 0x70, 0x31, 0xe4, 0xa7, 0x1d, 0x0b, 0xcf, 0xa3, 0xfd, 0xfc, 0x60, 0xc0, 0x8f, 0x49, 0x45, - 0xbb, 0x8d, 0x98, 0xa8, 0xbe, 0xaf, 0x00, 0x83, 0x97, 0x63, 0x10, 0xf0, 0xae, 0xa3, 0x31, 0x1a, - 0x0e, 0x88, 0x3b, 0xf2, 0xed, 0xbc, 0xae, 0x5b, 0xac, 0xa3, 0xca, 0x9e, 0xfc, 0x65, 0x27, 0xf0, - 0xba, 0x3a, 0x68, 0xab, 0x2c, 0xa0, 0x49, 0x69, 0x18, 0x1f, 0x42, 0xa3, 0x9b, 0xb4, 0x0b, 0x3e, - 0x85, 0x3f, 0xf1, 0x34, 0xda, 0xf7, 0x9c, 0x34, 0x3b, 0xbc, 0x4b, 0x8e, 0xeb, 0xfc, 0xe1, 0xfa, - 0xc8, 0x35, 0x45, 0xed, 0xc0, 0x66, 0xce, 0x0f, 0x9d, 0x89, 0xf8, 0xec, 0xe2, 0x90, 0x7f, 0x42, - 0x88, 0x86, 0x89, 0x85, 0x18, 0xc2, 0x84, 0x30, 0xb1, 0xbe, 0x7a, 0x1d, 0x2a, 0x43, 0x32, 0x9b, - 0x3a, 0x7f, 0x88, 0xd4, 0xf0, 0x58, 0x4d, 0xe8, 0xe3, 0x90, 0x1b, 0x5f, 0xfd, 0x95, 0x20, 0x23, - 0x12, 0x98, 0x21, 0xc4, 0xab, 0xa9, 0x10, 0x5f, 0x2b, 0x0e, 0xf1, 0xff, 0x35, 0xb8, 0xf3, 0xff, - 0x55, 0xd1, 0x3e, 0x66, 0x0b, 0xf7, 0xd0, 0x18, 0x67, 0x66, 0xf1, 0xe9, 0xbe, 0x80, 0x12, 0xfc, - 0x74, 0xe5, 0x4c, 0xe9, 0x3c, 0x8e, 0x59, 0x55, 0xdf, 0xfb, 0xc7, 0x7f, 0xbe, 0x3f, 0x72, 0x0c, - 0x57, 0xb4, 0xbe, 0x6c, 0x3a, 0xfe, 0x9d, 0xb8, 0xfd, 0x64, 0xd8, 0x65, 0x7c, 0xa9, 0xc4, 0x4e, - 0x96, 0xc8, 0xae, 0xcc, 0xef, 0x44, 0x04, 0x50, 0x56, 0x19, 0xca, 0xb3, 0xf8, 0x74, 0x7f, 0x94, - 0xda, 0x76, 0xc4, 0x86, 0xf7, 0xf0, 0x8f, 0x15, 0x84, 0xe2, 0x03, 0x0c, 0x3e, 0xd7, 0xd7, 0x64, - 0x86, 0xd3, 0xae, 0x9c, 0x1f, 0x68, 0x2e, 0xe0, 0xba, 0xca, 0x70, 0x69, 0x78, 0x2e, 0x0f, 0xd7, - 0xd3, 0x70, 0xf7, 0xe1, 0xfd, 0x48, 0xdb, 0x96, 0x5a, 0x55, 0x0f, 0xff, 0x5a, 0x41, 0x07, 0x92, - 0x94, 0x38, 0xae, 0x0e, 0x60, 0x56, 0xaa, 0xf1, 0x9d, 0xc1, 0x5c, 0x60, 0x30, 0x2f, 0xe3, 0x4b, - 0x25, 0x30, 0x8d, 0x7a, 0x78, 0x64, 0x8f, 0xc0, 0xda, 0x56, 0x0f, 0xff, 0x50, 0x41, 0x9f, 0x8b, - 0x35, 0x3e, 0x58, 0x59, 0xc3, 0x6f, 0xf6, 0xb5, 0x1c, 0xd3, 0x66, 0x95, 0xfe, 0x11, 0xcf, 0xb0, - 0x65, 0xea, 0x97, 0x18, 0xba, 0x8b, 0xb8, 0x5a, 0x86, 0xce, 0xd9, 0x08, 0xb4, 0x6d, 0xc1, 0xc6, - 0xf5, 0xf0, 0x6f, 0x21, 0xc9, 0x9c, 0xea, 0x2a, 0x49, 0x72, 0x82, 0xe6, 0x2f, 0x89, 0x5e, 0x92, - 0x7a, 0x57, 0xdf, 0x66, 0xf8, 0x6e, 0xe1, 0x1b, 0x7d, 0xf1, 0x71, 0x42, 0x26, 0x99, 0x64, 0x6d, - 0x5b, 0x62, 0x6e, 0xe2, 0x94, 0xc7, 0x9f, 0x04, 0x4a, 0x52, 0x9e, 0xf9, 0x76, 0xb0, 0x33, 0xd0, - 0xe5, 0x29, 0x07, 0x78, 0x90, 0xf2, 0xe8, 0xab, 0x44, 0x9c, 0xf2, 0x88, 0x7c, 0xdc, 0x6d, 0xca, - 0x33, 0x2c, 0xe6, 0x00, 0x29, 0x17, 0xc1, 0x4b, 0xa6, 0xfc, 0x7b, 0x0a, 0x9a, 0x94, 0xd8, 0x7f, - 0xdc, 0x3f, 0x24, 0xd9, 0xef, 0x10, 0x95, 0x0b, 0x83, 0x4d, 0x06, 0x88, 0x67, 0x19, 0x44, 0x15, - 0x9f, 0xcc, 0x83, 0xd8, 0xb4, 0xfd, 0x00, 0xaa, 0xd2, 0xc7, 0x3f, 0x05, 0x50, 0xc0, 0x6c, 0x97, - 0x80, 0x4a, 0x7e, 0x0f, 0x28, 0x01, 0x95, 0x22, 0xcb, 0x8b, 0xe3, 0xc6, 0x40, 0xf1, 0xb8, 0xf9, - 0xa9, 0x86, 0xf3, 0x67, 0x05, 0xbd, 0x9e, 0xfb, 0x1d, 0x00, 0x5f, 0x1d, 0xc4, 0x7e, 0xe6, 0xbb, - 0xc1, 0x0e, 0x61, 0x2f, 0x32, 0xd8, 0x37, 0xf0, 0x42, 0x19, 0xec, 0xb0, 0x1a, 0xa3, 0xe6, 0x93, - 0xe8, 0x43, 0x3f, 0x50, 0xd0, 0x54, 0x44, 0xc7, 0x0c, 0x5c, 0x93, 0x6f, 0x15, 0xef, 0xdf, 0x72, - 0x49, 0x96, 0xb7, 0x72, 0x38, 0x93, 0x24, 0x2b, 0xf2, 0x6f, 0x0a, 0xb0, 0x9c, 0x69, 0xca, 0x19, - 0x5f, 0xec, 0xbf, 0xcf, 0xe5, 0x13, 0xe4, 0x95, 0x4b, 0x3b, 0x90, 0x00, 0xd4, 0xf7, 0x19, 0xea, - 0xbb, 0x78, 0x39, 0x77, 0x63, 0xe4, 0x24, 0xcc, 0x86, 0xeb, 0x19, 0x84, 0xcb, 0x69, 0xdb, 0x82, - 0x42, 0xea, 0x69, 0xdb, 0x19, 0xc2, 0xbd, 0x87, 0xff, 0xae, 0xa0, 0x43, 0x69, 0x1a, 0xb8, 0xc0, - 0x91, 0x3e, 0x6c, 0x78, 0x81, 0x23, 0xfd, 0x38, 0x66, 0x75, 0x8d, 0x39, 0xf2, 0x00, 0xdf, 0xcb, - 0x73, 0xe4, 0x39, 0x93, 0x32, 0xa4, 0xff, 0x03, 0xd8, 0x16, 0x1c, 0x7a, 0x2f, 0xdd, 0x75, 0x25, - 0x3a, 0xbc, 0x87, 0x7f, 0xa1, 0xa0, 0x89, 0xa8, 0x6a, 0xf0, 0x5b, 0x85, 0x0d, 0x54, 0x26, 0xdf, - 0x2a, 0xe7, 0x06, 0x99, 0x3a, 0x48, 0x75, 0xc7, 0x95, 0xa3, 0x6d, 0x4b, 0xe7, 0xe1, 0x9e, 0x78, - 0xe2, 0xeb, 0x33, 0x3c, 0xaf, 0xc4, 0xe4, 0x6d, 0xc1, 0x56, 0x96, 0xe1, 0x9f, 0x2b, 0xe7, 0x07, - 0x9a, 0x3b, 0x48, 0x91, 0xb3, 0x85, 0xc8, 0x50, 0xf9, 0x49, 0xac, 0xf8, 0xe7, 0x0a, 0x3a, 0x98, - 0xe2, 0x42, 0xb1, 0x56, 0x1e, 0xa1, 0x04, 0xc1, 0x5b, 0xb9, 0x38, 0xb8, 0x00, 0xa0, 0x9d, 0x63, - 0x68, 0xcf, 0xe0, 0x2f, 0x96, 0x2c, 0x49, 0xe0, 0x83, 0xff, 0x22, 0x78, 0xc0, 0x24, 0xcf, 0x59, - 0xb0, 0xcf, 0xe6, 0x12, 0xaf, 0x15, 0x6d, 0xe0, 0xf9, 0x80, 0xf3, 0x1e, 0xc3, 0xb9, 0x82, 0xef, - 0x94, 0x2c, 0x42, 0x28, 0x83, 0xdc, 0x25, 0x28, 0x2e, 0x2c, 0xbd, 0x70, 0x3b, 0x39, 0x98, 0x62, - 0x48, 0x0b, 0x0a, 0x22, 0xc3, 0xbe, 0x16, 0x14, 0x44, 0x96, 0x72, 0x55, 0xaf, 0x30, 0xe8, 0x55, - 0x7c, 0xa1, 0x00, 0x3a, 0x9c, 0x10, 0x22, 0x4a, 0xb7, 0x87, 0xbf, 0xad, 0xa0, 0x29, 0x99, 0xd2, - 0xc4, 0xfd, 0xaf, 0x1b, 0x49, 0x4e, 0xb6, 0x72, 0xb6, 0x7c, 0x22, 0x20, 0xfb, 0x02, 0x43, 0x36, - 0x8b, 0x8f, 0xe5, 0x96, 0xaa, 0x6b, 0x6e, 0x1a, 0x1b, 0x94, 0xe2, 0xdf, 0x43, 0x65, 0x4a, 0x4c, - 0x65, 0x49, 0x65, 0x66, 0x39, 0xd1, 0x92, 0xca, 0xcc, 0x21, 0x41, 0xd5, 0x1b, 0x0c, 0xdc, 0x55, - 0x7c, 0xb9, 0xec, 0xc8, 0xca, 0x08, 0xcf, 0xd4, 0x66, 0xfc, 0x07, 0x51, 0xa7, 0x49, 0xee, 0xb2, - 0xa0, 0x4e, 0x73, 0x49, 0xd2, 0x82, 0x3a, 0xcd, 0x27, 0x45, 0xd5, 0xeb, 0x0c, 0xf5, 0x15, 0x3c, - 0x9f, 0x87, 0xda, 0xf6, 0x39, 0x8b, 0x64, 0x00, 0x51, 0x9a, 0x02, 0xfd, 0x47, 0x05, 0x58, 0xec, - 0x47, 0x1d, 0x37, 0x20, 0x31, 0x9b, 0x52, 0x10, 0xed, 0x7c, 0xde, 0xa6, 0x20, 0xda, 0x7d, 0x88, - 0x9a, 0xe2, 0x68, 0x3f, 0x0b, 0xf1, 0x18, 0x40, 0xe4, 0x84, 0x57, 0xc0, 0x14, 0xf0, 0xbf, 0x8a, - 0xcb, 0x6b, 0x86, 0x14, 0x29, 0xb8, 0xbc, 0xf6, 0x63, 0x7d, 0x0a, 0x2e, 0xaf, 0x7d, 0x39, 0x17, - 0xf5, 0x0e, 0x83, 0x7f, 0x1b, 0xdf, 0xcc, 0x83, 0x2f, 0x77, 0x30, 0xdf, 0x60, 0xa4, 0x81, 0x68, - 0xbe, 0xb6, 0xd5, 0xd3, 0xb6, 0xe1, 0x4d, 0x0f, 0xbf, 0xaf, 0xa0, 0x43, 0x69, 0xe6, 0xa1, 0xe0, - 0xa8, 0x99, 0x65, 0x64, 0x0a, 0xce, 0x6c, 0x39, 0x64, 0xc6, 0x00, 0xa8, 0x53, 0x70, 0xb3, 0xfb, - 0x9a, 0xdf, 0x0b, 0xd7, 0xe7, 0x74, 0x1e, 0x55, 0x53, 0x50, 0x36, 0xf9, 0xa4, 0xce, 0x0e, 0xd1, - 0x17, 0x96, 0xba, 0x8c, 0x5e, 0x74, 0xb7, 0x88, 0x30, 0xea, 0x2d, 0xd5, 0x3e, 0x7c, 0x39, 0xab, - 0x7c, 0xf4, 0x72, 0x56, 0xf9, 0xd7, 0xcb, 0x59, 0xe5, 0xbb, 0xaf, 0x66, 0xf7, 0x7c, 0xf4, 0x6a, - 0x76, 0xcf, 0x3f, 0x5f, 0xcd, 0xee, 0x79, 0xa2, 0x49, 0xe4, 0x66, 0xdd, 0xa9, 0xcf, 0x99, 0x4f, - 0x89, 0xed, 0xc8, 0x16, 0x5e, 0x24, 0xff, 0xcf, 0xb0, 0x3e, 0xc6, 0xfe, 0x87, 0xf0, 0xf2, 0xff, - 0x02, 0x00, 0x00, 0xff, 0xff, 0x17, 0x56, 0x66, 0x4d, 0xa1, 0x29, 0x00, 0x00, + // 2690 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xb4, 0x5a, 0x5b, 0x6f, 0xdc, 0xc6, + 0x15, 0x36, 0x25, 0x47, 0x96, 0x46, 0xaa, 0xe3, 0x4e, 0x94, 0x44, 0x5e, 0xdb, 0xb2, 0xcd, 0xa4, + 0xb6, 0x63, 0x5b, 0x4b, 0x5b, 0xb6, 0x0a, 0xcb, 0xb7, 0x42, 0x8a, 0x25, 0x77, 0x01, 0x5f, 0x64, + 0x5a, 0x55, 0x51, 0x03, 0x05, 0x31, 0x4b, 0x8e, 0xd6, 0x8c, 0x76, 0xc9, 0x35, 0xc9, 0xb5, 0xbc, + 0x11, 0x16, 0x45, 0xf3, 0xd2, 0x3e, 0x16, 0x2d, 0x0a, 0x14, 0xbd, 0x00, 0x45, 0x8a, 0x5e, 0x5f, + 0x8a, 0x36, 0x41, 0x81, 0x3e, 0xf5, 0xa5, 0x05, 0x02, 0x14, 0x05, 0x82, 0xf4, 0xa5, 0xc8, 0x43, + 0xd0, 0xda, 0xfd, 0x21, 0x05, 0x67, 0xce, 0x90, 0xc3, 0xcb, 0x92, 0xab, 0x68, 0xfb, 0xa4, 0xe5, + 0x70, 0xce, 0x39, 0xdf, 0xb9, 0xcc, 0x99, 0x99, 0x8f, 0x42, 0xb3, 0x0d, 0x8f, 0x52, 0x67, 0xd3, + 0xa6, 0x4d, 0x4b, 0xf3, 0x03, 0xd7, 0x23, 0x0d, 0xaa, 0x3d, 0xe9, 0x50, 0xaf, 0x5b, 0x6d, 0x7b, + 0x6e, 0xe0, 0x62, 0x1c, 0xbf, 0xaf, 0xc2, 0xfb, 0xca, 0x59, 0xd3, 0xf5, 0x5b, 0xae, 0xaf, 0xd5, + 0x89, 0x0f, 0x93, 0xb5, 0xa7, 0x17, 0xeb, 0x34, 0x20, 0x17, 0xb5, 0x36, 0x69, 0xd8, 0x0e, 0x09, + 0x6c, 0xd7, 0xe1, 0xf2, 0x95, 0xc3, 0x7c, 0xae, 0xc1, 0x9e, 0x34, 0xfe, 0x00, 0xaf, 0xa6, 0x1b, + 0x6e, 0xc3, 0xe5, 0xe3, 0xe1, 0x2f, 0x18, 0x3d, 0xda, 0x70, 0xdd, 0x46, 0x93, 0x6a, 0xa4, 0x6d, + 0x6b, 0xc4, 0x71, 0xdc, 0x80, 0x69, 0x13, 0x32, 0xaa, 0x04, 0xb7, 0x4d, 0xbd, 0x96, 0xed, 0xfb, + 0xb6, 0xeb, 0x68, 0xa6, 0xdb, 0x6a, 0x45, 0x26, 0x4f, 0xe6, 0xcf, 0x09, 0xba, 0x6d, 0x2a, 0xd4, + 0x1c, 0xcf, 0xf1, 0xba, 0x4d, 0x3c, 0xd2, 0x12, 0x13, 0xf2, 0xc2, 0x22, 0x2b, 0x78, 0x43, 0x7a, + 0xff, 0xd4, 0xf6, 0x82, 0x0e, 0x69, 0x36, 0x3c, 0xb7, 0xd3, 0x96, 0x27, 0xa9, 0xd3, 0x08, 0x3f, + 0x08, 0xa3, 0xb3, 0xc6, 0x34, 0xeb, 0xf4, 0x49, 0x87, 0xfa, 0x81, 0x7a, 0x1f, 0xbd, 0x92, 0x18, + 0xf5, 0xdb, 0xae, 0xe3, 0x53, 0x7c, 0x05, 0x8d, 0x71, 0x04, 0x33, 0xca, 0x09, 0xe5, 0xcc, 0xe4, + 0x7c, 0xa5, 0x9a, 0x8d, 0x7c, 0x95, 0xcb, 0x2c, 0xef, 0xff, 0xe8, 0xb3, 0xe3, 0xfb, 0x74, 0x98, + 0xaf, 0xde, 0x40, 0xc7, 0x24, 0x85, 0xcb, 0xdd, 0x75, 0xbb, 0x45, 0xfd, 0x80, 0xb4, 0xda, 0x60, + 0x11, 0x1f, 0x45, 0x13, 0x81, 0x18, 0x63, 0xda, 0x47, 0xf5, 0x78, 0x40, 0x7d, 0x84, 0x66, 0xfb, + 0x89, 0xef, 0x19, 0xda, 0x22, 0x7a, 0x8d, 0xe9, 0xfe, 0x2a, 0x25, 0xd6, 0x72, 0xc7, 0xdc, 0xa2, + 0x81, 0xc0, 0x74, 0x1c, 0x4d, 0xd6, 0xd9, 0x80, 0xe1, 0x90, 0x16, 0x65, 0x8a, 0x27, 0x74, 0xc4, + 0x87, 0xee, 0x91, 0x16, 0x55, 0x17, 0x51, 0x25, 0x25, 0xba, 0xdc, 0xad, 0x59, 0x42, 0xfc, 0x08, + 0x9a, 0x00, 0x71, 0xdb, 0x02, 0xe1, 0x71, 0x3e, 0x50, 0xb3, 0xd4, 0x47, 0xe8, 0xf5, 0x8c, 0x55, + 0x70, 0xe5, 0x2b, 0x91, 0x59, 0xdb, 0xd9, 0x74, 0xc1, 0x9f, 0xd9, 0x3c, 0x7f, 0xb8, 0x60, 0xcd, + 0xd9, 0x74, 0x05, 0xac, 0xf0, 0xb7, 0xfa, 0x48, 0xf2, 0xe8, 0x7e, 0xfd, 0x1d, 0x6a, 0x0e, 0xec, + 0x51, 0x38, 0xc1, 0x65, 0x12, 0x7c, 0xc2, 0x08, 0x9f, 0xc0, 0x87, 0x32, 0x2e, 0x73, 0xdd, 0x29, + 0x97, 0x41, 0x3c, 0x76, 0x99, 0x0f, 0xd4, 0x2c, 0xf5, 0xcf, 0x8a, 0xe4, 0xb3, 0xc0, 0x15, 0xfb, + 0x2c, 0x04, 0x4b, 0x7c, 0xe6, 0x82, 0xdc, 0x67, 0x37, 0xfa, 0x8d, 0xbf, 0x89, 0xa6, 0x1b, 0x4d, + 0xb7, 0x4e, 0x9a, 0x06, 0x94, 0xba, 0xc1, 0x6a, 0x9d, 0x79, 0x30, 0x39, 0x7f, 0x4e, 0xd6, 0x24, + 0xaf, 0x85, 0xea, 0x6d, 0x26, 0xb4, 0xc1, 0x87, 0x6e, 0x87, 0x43, 0x3a, 0x6e, 0x64, 0xc6, 0x54, + 0x02, 0xd0, 0xef, 0xd8, 0x7e, 0xc0, 0xa3, 0x2e, 0xd6, 0x0a, 0x5e, 0x45, 0x28, 0xee, 0x28, 0x80, + 0xfc, 0x54, 0x15, 0xba, 0x48, 0xd8, 0x7e, 0xaa, 0xbc, 0x57, 0x41, 0xfb, 0xa9, 0xae, 0x91, 0x06, + 0x05, 0x59, 0x5d, 0x92, 0x54, 0x7f, 0xa5, 0xa0, 0x99, 0xac, 0x0d, 0x88, 0xcf, 0x12, 0x9a, 0x92, + 0x6a, 0x22, 0x2c, 0xf2, 0xd1, 0x01, 0x8a, 0x62, 0x32, 0x2e, 0x0a, 0x1f, 0xdf, 0x4e, 0xe0, 0xe4, + 0x71, 0x39, 0x5d, 0x8a, 0x93, 0xdb, 0x4f, 0x00, 0x7d, 0x4f, 0x91, 0x82, 0xc1, 0xd3, 0x31, 0xec, + 0x60, 0xa4, 0x0b, 0x75, 0x24, 0xb3, 0xf4, 0xbe, 0xab, 0xa0, 0x93, 0x69, 0x10, 0xcb, 0x5d, 0xf0, + 0xdd, 0x1a, 0x36, 0x9c, 0xc4, 0x52, 0x1e, 0x49, 0x2d, 0xe5, 0x44, 0xe2, 0xa2, 0x78, 0xc4, 0x89, + 0x93, 0x0a, 0xbb, 0x30, 0x71, 0x52, 0x65, 0x4f, 0xc6, 0x95, 0x3d, 0xc4, 0xc4, 0x9d, 0x47, 0x2f, + 0x33, 0x9c, 0xf7, 0x56, 0xd7, 0x45, 0x80, 0x0e, 0xa3, 0xf1, 0xc0, 0xdd, 0xa2, 0x4e, 0xbc, 0x5e, + 0x0f, 0xb0, 0xe7, 0x9a, 0xa5, 0x7e, 0x03, 0xba, 0x08, 0x8f, 0x29, 0x93, 0x89, 0x16, 0xeb, 0x44, + 0x8b, 0x06, 0xc4, 0xb0, 0x48, 0x40, 0x20, 0xa8, 0x6a, 0xff, 0x4a, 0xbc, 0x4b, 0x03, 0x72, 0x8b, + 0x04, 0x44, 0x1f, 0x6f, 0xc1, 0xaf, 0x48, 0x35, 0xf7, 0xf8, 0xf3, 0xa8, 0xe6, 0x92, 0x39, 0xaa, + 0xbf, 0x8e, 0x5e, 0x65, 0xaa, 0xd9, 0xb2, 0x95, 0x35, 0xdf, 0xcc, 0x6a, 0x3e, 0x99, 0xa7, 0x99, + 0x09, 0xe6, 0x28, 0xfe, 0xb6, 0x82, 0x8e, 0xf2, 0x3d, 0xc8, 0x6d, 0xda, 0x66, 0x77, 0xd5, 0xf5, + 0x96, 0x4c, 0xd3, 0xed, 0x38, 0x51, 0x6f, 0xad, 0xa0, 0x71, 0x8f, 0xfa, 0x6e, 0xc7, 0x33, 0x45, + 0x63, 0x8d, 0x9e, 0xf1, 0x0a, 0xfa, 0x62, 0xdb, 0xb3, 0x1d, 0xd3, 0x6e, 0x93, 0xa6, 0x41, 0x2c, + 0xcb, 0xa3, 0xbe, 0xcf, 0xeb, 0x68, 0x79, 0xe6, 0x93, 0x0f, 0xe7, 0xa6, 0x21, 0x99, 0x4b, 0xfc, + 0xcd, 0xc3, 0xc0, 0xb3, 0x9d, 0x86, 0x7e, 0x28, 0x12, 0x81, 0x71, 0x75, 0x43, 0xec, 0xa2, 0x19, + 0x08, 0xe0, 0xe4, 0x02, 0x1a, 0x6b, 0xb3, 0x77, 0xe0, 0xe1, 0x31, 0xd9, 0xc3, 0xf8, 0x9c, 0x51, + 0xe5, 0x0a, 0x74, 0x98, 0xac, 0x7e, 0x2a, 0x7c, 0xdb, 0xa0, 0x9e, 0xbd, 0xd9, 0x5d, 0x8b, 0x26, + 0x0a, 0xdf, 0x2e, 0xa3, 0x71, 0xb7, 0x4d, 0x3d, 0x12, 0xb8, 0x1e, 0xf7, 0xad, 0x00, 0x76, 0x34, + 0xb3, 0x74, 0x11, 0xa7, 0x77, 0x9b, 0xd1, 0xf4, 0x6e, 0x83, 0x97, 0xd1, 0x24, 0x31, 0xc3, 0xda, + 0x35, 0xc2, 0x33, 0xcb, 0xcc, 0xfe, 0x13, 0xca, 0x99, 0x83, 0xc9, 0xb4, 0x49, 0x4e, 0x2d, 0xb1, + 0x99, 0xeb, 0xdd, 0x36, 0xd5, 0x11, 0x89, 0x7e, 0x47, 0x41, 0xcb, 0xfa, 0x16, 0x07, 0x8d, 0x6e, + 0x6e, 0x52, 0x33, 0x60, 0xae, 0x1d, 0xec, 0x1b, 0xb4, 0x15, 0x36, 0x49, 0x87, 0xc9, 0xea, 0x13, + 0xa8, 0xb4, 0x70, 0x37, 0xe3, 0x1b, 0x07, 0x04, 0x6b, 0x11, 0x4d, 0xb2, 0xbd, 0xc5, 0x70, 0xb7, + 0x1d, 0x5a, 0x1e, 0x2f, 0xc4, 0x26, 0xdf, 0x0f, 0xe7, 0xe2, 0x63, 0x88, 0x3f, 0xc9, 0x01, 0x9b, + 0x60, 0x23, 0xac, 0xe9, 0x6d, 0x48, 0x1b, 0x3b, 0x98, 0x04, 0x1f, 0xae, 0x0b, 0x41, 0x69, 0xfb, + 0x3c, 0xd6, 0xb7, 0xbc, 0x59, 0x8f, 0xe1, 0x7a, 0xd9, 0x81, 0xe1, 0x27, 0x0a, 0x28, 0x0e, 0x3b, + 0x18, 0x9b, 0x31, 0xf4, 0x86, 0x9e, 0x0a, 0xca, 0xc8, 0xe0, 0x41, 0x51, 0xdf, 0x97, 0xf7, 0x1b, + 0x81, 0x0e, 0xfc, 0xbe, 0x9d, 0x03, 0xef, 0xf3, 0xf4, 0x46, 0x7c, 0x53, 0xe0, 0xe3, 0x6d, 0x7a, + 0x84, 0xb5, 0xe9, 0x92, 0x08, 0xa2, 0x28, 0x82, 0xbe, 0xfa, 0x5b, 0x05, 0x1d, 0x49, 0xe6, 0xe6, + 0x2e, 0x6d, 0xd5, 0xa9, 0x27, 0xe2, 0x78, 0x01, 0x8d, 0xb5, 0xd8, 0x40, 0x69, 0x3d, 0xc0, 0xbc, + 0x3d, 0x44, 0x2c, 0x55, 0x46, 0xa3, 0xe9, 0x32, 0xa2, 0xb0, 0xda, 0x33, 0x50, 0x21, 0xa8, 0x2b, + 0x68, 0x8a, 0x8b, 0x4b, 0x88, 0x53, 0x7d, 0x58, 0x5a, 0x16, 0xb2, 0x06, 0x8e, 0x98, 0x3f, 0xa8, + 0x9b, 0x70, 0x54, 0x8c, 0xba, 0x55, 0x62, 0x95, 0x14, 0xb5, 0xcb, 0xf3, 0x08, 0xc7, 0xed, 0x12, + 0xd2, 0x22, 0xf6, 0xdd, 0xb8, 0x2b, 0xf2, 0x44, 0x58, 0xea, 0x3a, 0x44, 0x3e, 0x6d, 0x67, 0x6f, + 0x3d, 0x71, 0x01, 0x96, 0x04, 0x1f, 0x4e, 0x1d, 0x72, 0xf9, 0x1c, 0xe9, 0x90, 0xcb, 0x07, 0x6a, + 0x96, 0xba, 0x06, 0xb5, 0x2a, 0x8b, 0xed, 0x0d, 0xc8, 0xcf, 0x14, 0xb8, 0x8c, 0xdd, 0x71, 0xcd, + 0xad, 0x55, 0x4a, 0xe3, 0x95, 0x19, 0x06, 0xa9, 0x45, 0xbc, 0xae, 0xe1, 0xb7, 0xa3, 0x4d, 0x45, + 0x19, 0x60, 0x53, 0x09, 0x65, 0x1e, 0xb6, 0x61, 0x3c, 0x74, 0xc7, 0xf4, 0x28, 0x09, 0xa8, 0x41, + 0x02, 0x16, 0xe3, 0x51, 0x7d, 0x9c, 0x0f, 0x2c, 0x05, 0xf8, 0x24, 0x9a, 0x6a, 0x93, 0x6e, 0xd3, + 0x25, 0x96, 0xe1, 0xdb, 0xef, 0xf2, 0x5a, 0xda, 0xaf, 0x4f, 0xc2, 0xd8, 0x43, 0xfb, 0x5d, 0xaa, + 0x36, 0xd1, 0x74, 0x12, 0x1e, 0xb8, 0xbb, 0x8e, 0xc6, 0x48, 0x2b, 0xdc, 0x9d, 0x00, 0xd3, 0xf5, + 0xf0, 0xd6, 0xf5, 0xe9, 0x67, 0xc7, 0x4f, 0x35, 0xec, 0xe0, 0x71, 0xa7, 0x5e, 0x35, 0xdd, 0x16, + 0xdc, 0xb5, 0xe1, 0xcf, 0x9c, 0x6f, 0x6d, 0xc1, 0xdd, 0xb4, 0xe6, 0x04, 0x9f, 0x7c, 0x38, 0x87, + 0xc0, 0x83, 0x9a, 0x13, 0xe8, 0xa0, 0x4b, 0xbd, 0x29, 0x2d, 0x33, 0x7e, 0xbe, 0x58, 0x79, 0x16, + 0x78, 0x64, 0xe0, 0x2b, 0x9b, 0x5c, 0xfb, 0x09, 0xf9, 0xa8, 0xf6, 0x11, 0x0d, 0x07, 0xe4, 0x46, + 0x7a, 0x2a, 0xaf, 0x0d, 0xd4, 0x9c, 0x80, 0x7a, 0x0e, 0x69, 0x4a, 0xc7, 0xed, 0x09, 0x26, 0xc9, + 0x3a, 0xea, 0x0d, 0xa8, 0xfd, 0x9a, 0xbf, 0xe6, 0xd9, 0x26, 0x7d, 0xfb, 0x31, 0x71, 0x1a, 0xd4, + 0x1a, 0x18, 0xe5, 0x7f, 0x0e, 0x80, 0x9b, 0x69, 0x79, 0x40, 0x39, 0x83, 0x0e, 0x98, 0x7c, 0x88, + 0x09, 0x8f, 0xeb, 0xe2, 0x11, 0xbf, 0x83, 0xb0, 0xd9, 0xf1, 0x3c, 0xea, 0x04, 0x86, 0x47, 0x89, + 0x65, 0xb4, 0x43, 0x71, 0x68, 0x1e, 0xbb, 0xc9, 0xc0, 0x2d, 0x6a, 0x4a, 0x19, 0xb8, 0x45, 0x4d, + 0xfd, 0x10, 0xe8, 0xd5, 0x29, 0xb1, 0x18, 0x28, 0xbc, 0x83, 0x8e, 0x08, 0x5b, 0x51, 0x25, 0x06, + 0xae, 0x47, 0xc1, 0xe8, 0xe8, 0x10, 0x8c, 0xce, 0x80, 0x81, 0x35, 0xa8, 0xda, 0x50, 0x3d, 0x37, + 0xfe, 0x2d, 0x74, 0x4c, 0x18, 0xf7, 0xa9, 0xe9, 0x3a, 0x56, 0xda, 0xfc, 0xfe, 0x21, 0x98, 0xaf, + 0x80, 0x89, 0x87, 0xc2, 0x82, 0x04, 0xa0, 0x8b, 0xc4, 0x5b, 0xe3, 0x29, 0x69, 0xda, 0x56, 0x78, + 0xe4, 0x31, 0x02, 0xf2, 0xcc, 0xf0, 0x48, 0x40, 0x67, 0x5e, 0x1a, 0x82, 0xf5, 0xd7, 0x41, 0xff, + 0x86, 0x50, 0xbf, 0x4e, 0x9e, 0xe9, 0x24, 0xa0, 0xb8, 0x8e, 0x0e, 0x3a, 0x74, 0x5b, 0x4e, 0xf0, + 0xd8, 0x10, 0xcc, 0x4d, 0x39, 0x74, 0x3b, 0x4e, 0xae, 0x8f, 0x5e, 0x0f, 0x6d, 0xe4, 0x25, 0xf6, + 0xc0, 0x10, 0x8c, 0x4d, 0x3b, 0x74, 0x3b, 0x9b, 0xd4, 0x6d, 0x74, 0x38, 0x34, 0x9a, 0x9f, 0xd0, + 0xf1, 0x21, 0x98, 0x7d, 0xcd, 0xa1, 0xdb, 0x79, 0xc9, 0x7c, 0x82, 0xc2, 0x37, 0x79, 0x89, 0x9c, + 0x18, 0x82, 0xd5, 0x57, 0x1c, 0xba, 0x9d, 0x4e, 0x62, 0xd4, 0xc9, 0x1e, 0x74, 0xdc, 0x80, 0x7e, + 0xad, 0x6d, 0x91, 0x80, 0xae, 0xdb, 0x2d, 0x3a, 0x70, 0x8f, 0xb8, 0x06, 0x9d, 0x2c, 0x23, 0x0f, + 0x3d, 0xe2, 0x08, 0x9a, 0xe8, 0xb0, 0xd1, 0xb0, 0xaf, 0x8f, 0xf1, 0xbe, 0xce, 0x07, 0x96, 0x02, + 0xd5, 0x81, 0x43, 0xb1, 0xb4, 0x79, 0xfb, 0x2b, 0xcf, 0x6c, 0x3f, 0x90, 0x2e, 0x86, 0xd1, 0xc6, + 0x0b, 0x17, 0x43, 0x7e, 0xda, 0xb1, 0xf0, 0x3c, 0x3a, 0xc0, 0x0f, 0x06, 0xfc, 0x98, 0x54, 0xb4, + 0xdb, 0x88, 0x89, 0xea, 0x07, 0x0a, 0x30, 0x78, 0x39, 0x06, 0x01, 0xef, 0x06, 0x1a, 0xa3, 0xe1, + 0x80, 0xb8, 0x23, 0xdf, 0xcc, 0xeb, 0xba, 0xc5, 0x3a, 0xaa, 0xec, 0xc9, 0x5f, 0x71, 0x02, 0xaf, + 0xab, 0x83, 0xb6, 0xca, 0x22, 0x9a, 0x94, 0x86, 0xf1, 0x21, 0x34, 0xba, 0x45, 0xbb, 0xe0, 0x53, + 0xf8, 0x13, 0x4f, 0xa3, 0x97, 0x9e, 0x92, 0x66, 0x87, 0x77, 0xc9, 0x71, 0x9d, 0x3f, 0x5c, 0x1d, + 0xb9, 0xa2, 0xa8, 0x1d, 0xd8, 0xcc, 0xf9, 0xa1, 0x33, 0x11, 0x9f, 0x3d, 0x1c, 0xf2, 0x8f, 0x0b, + 0xd1, 0x30, 0xb1, 0x10, 0x43, 0x98, 0x10, 0x26, 0xd6, 0x57, 0xaf, 0x42, 0x65, 0x48, 0x66, 0x53, + 0xe7, 0x0f, 0x91, 0x1a, 0x1e, 0xab, 0x09, 0x7d, 0x1c, 0x72, 0xe3, 0xab, 0xbf, 0x16, 0x64, 0x44, + 0x02, 0x33, 0x84, 0x78, 0x2d, 0x15, 0xe2, 0x2b, 0xc5, 0x21, 0xfe, 0xff, 0x06, 0x77, 0x01, 0x82, + 0xab, 0xc3, 0xa9, 0x6f, 0x9d, 0x34, 0x06, 0x38, 0x1b, 0xaa, 0x6b, 0xe0, 0x5f, 0x42, 0x0c, 0xfc, + 0xbb, 0x8c, 0xf6, 0x07, 0xa4, 0x21, 0x28, 0xe0, 0x13, 0x79, 0xde, 0x49, 0x62, 0xbe, 0xce, 0x66, + 0xcf, 0xff, 0xf8, 0x4d, 0xf4, 0x12, 0x53, 0x89, 0x7b, 0x68, 0x8c, 0x53, 0xc4, 0xf8, 0x54, 0xdf, + 0xc8, 0x24, 0x88, 0xf2, 0xca, 0xe9, 0xd2, 0x79, 0x1c, 0x9a, 0xaa, 0xbe, 0xf7, 0xcf, 0xff, 0xfe, + 0x60, 0xe4, 0x28, 0xae, 0x68, 0x7d, 0x69, 0x7d, 0xfc, 0x7b, 0x71, 0x0d, 0xcb, 0xd0, 0xdc, 0xf8, + 0x62, 0x89, 0x9d, 0x2c, 0xa3, 0x5e, 0x99, 0xdf, 0x8d, 0x08, 0xa0, 0xac, 0x32, 0x94, 0x67, 0xf0, + 0xa9, 0xfe, 0x28, 0xb5, 0x9d, 0x88, 0x96, 0xef, 0xe1, 0x9f, 0x2a, 0x08, 0xc5, 0x27, 0x29, 0x7c, + 0xb6, 0xaf, 0xc9, 0x0c, 0xb9, 0x5e, 0x39, 0x37, 0xd0, 0x5c, 0xc0, 0xb5, 0xc0, 0x70, 0x69, 0x78, + 0x2e, 0x0f, 0xd7, 0xe3, 0x70, 0x1b, 0xe4, 0x8d, 0x51, 0xdb, 0x91, 0x7a, 0x66, 0x0f, 0xff, 0x46, + 0x41, 0x07, 0x93, 0xdc, 0x3c, 0xae, 0x0e, 0x60, 0x56, 0x5a, 0x6c, 0xbb, 0x83, 0xb9, 0xc8, 0x60, + 0x5e, 0xc2, 0x17, 0x4b, 0x60, 0x1a, 0xf5, 0xf0, 0xee, 0x10, 0x81, 0xb5, 0xad, 0x1e, 0xfe, 0x91, + 0x82, 0xbe, 0x10, 0x6b, 0xbc, 0xb7, 0xba, 0x8e, 0xdf, 0xe8, 0x6b, 0x39, 0xe6, 0xef, 0x2a, 0xfd, + 0x23, 0x9e, 0xa1, 0xed, 0xd4, 0x2f, 0x33, 0x74, 0x17, 0x70, 0xb5, 0x0c, 0x9d, 0xb3, 0x19, 0x68, + 0x3b, 0x82, 0x16, 0xec, 0xe1, 0xdf, 0x41, 0x92, 0x39, 0xe7, 0x56, 0x92, 0xe4, 0xc4, 0xf7, 0x86, + 0x92, 0xe8, 0x25, 0xbf, 0x01, 0xa8, 0x6f, 0x33, 0x7c, 0x37, 0xf0, 0xb5, 0xbe, 0xf8, 0x38, 0x33, + 0x94, 0x4c, 0xb2, 0xb6, 0x23, 0x51, 0x48, 0x71, 0xca, 0xe3, 0x6f, 0x13, 0x25, 0x29, 0xcf, 0x7c, + 0xc4, 0xd8, 0x1d, 0xe8, 0xf2, 0x94, 0x03, 0x3c, 0x48, 0x79, 0xf4, 0x79, 0x24, 0x4e, 0x79, 0xc4, + 0x82, 0xee, 0x35, 0xe5, 0x19, 0x3a, 0x75, 0x80, 0x94, 0x8b, 0xe0, 0x25, 0x53, 0xfe, 0x7d, 0x05, + 0x4d, 0x4a, 0x9f, 0x21, 0x70, 0xff, 0x90, 0x64, 0x3f, 0x88, 0x54, 0xce, 0x0f, 0x36, 0x19, 0x20, + 0x9e, 0x61, 0x10, 0x55, 0x7c, 0x22, 0x0f, 0x62, 0xd3, 0xf6, 0x03, 0xa8, 0x4a, 0x1f, 0xff, 0x1c, + 0x40, 0x01, 0xc5, 0x5e, 0x02, 0x2a, 0xf9, 0x61, 0xa2, 0x04, 0x54, 0x8a, 0xb5, 0x2f, 0x8e, 0x1b, + 0x03, 0xc5, 0xe3, 0xe6, 0xa7, 0x1a, 0xce, 0x5f, 0x14, 0xf4, 0x6a, 0xee, 0x07, 0x09, 0xbc, 0x30, + 0x88, 0xfd, 0xcc, 0x07, 0x8c, 0x5d, 0xc2, 0x5e, 0x62, 0xb0, 0xaf, 0xe1, 0xc5, 0x32, 0xd8, 0x61, + 0x35, 0x46, 0xcd, 0x27, 0xd1, 0x87, 0x7e, 0xa8, 0xa0, 0xa9, 0x88, 0x17, 0x1a, 0xb8, 0x26, 0xdf, + 0x2a, 0x3e, 0x48, 0xc8, 0x25, 0x59, 0xde, 0xca, 0xe1, 0x70, 0x94, 0xac, 0xc8, 0xbf, 0x2b, 0x40, + 0xb7, 0xa6, 0xb9, 0x6f, 0x7c, 0xa1, 0xff, 0x3e, 0x97, 0xcf, 0xd4, 0x57, 0x2e, 0xee, 0x42, 0x02, + 0x50, 0xdf, 0x65, 0xa8, 0x6f, 0xe3, 0x95, 0xdc, 0x8d, 0x91, 0xb3, 0x41, 0x9b, 0xae, 0x67, 0x10, + 0x2e, 0xa7, 0xed, 0x88, 0xf3, 0x4a, 0x4f, 0xdb, 0xc9, 0x30, 0xff, 0x3d, 0xfc, 0x0f, 0x05, 0x1d, + 0x4a, 0xf3, 0xd1, 0x05, 0x8e, 0xf4, 0xa1, 0xe5, 0x0b, 0x1c, 0xe9, 0x47, 0x76, 0xab, 0xeb, 0xcc, + 0x91, 0x7b, 0xf8, 0x4e, 0x9e, 0x23, 0x4f, 0x99, 0x94, 0x21, 0xfd, 0x43, 0xc2, 0x8e, 0x20, 0xf3, + 0x7b, 0xe9, 0xae, 0x2b, 0xf1, 0xf2, 0x3d, 0xfc, 0x4b, 0x05, 0x4d, 0x44, 0x55, 0x83, 0xdf, 0x2a, + 0x6c, 0xa0, 0x32, 0x0b, 0x58, 0x39, 0x3b, 0xc8, 0xd4, 0x41, 0xaa, 0x3b, 0xae, 0x1c, 0x6d, 0x47, + 0x3a, 0x98, 0xf7, 0xc4, 0x13, 0x5f, 0x9f, 0xe1, 0x79, 0x25, 0x66, 0x91, 0x0b, 0xb6, 0xb2, 0x0c, + 0x11, 0x5e, 0x39, 0x37, 0xd0, 0xdc, 0x41, 0x8a, 0x9c, 0x2d, 0x44, 0x86, 0xca, 0x4f, 0x62, 0xc5, + 0xbf, 0x50, 0xd0, 0xcb, 0x29, 0x52, 0x16, 0x6b, 0xe5, 0x11, 0x4a, 0x30, 0xcd, 0x95, 0x0b, 0x83, + 0x0b, 0x00, 0xda, 0x39, 0x86, 0xf6, 0x34, 0xfe, 0x52, 0xc9, 0x92, 0x04, 0x62, 0xfa, 0xaf, 0x82, + 0x90, 0x4c, 0x12, 0xae, 0x05, 0xfb, 0x6c, 0x2e, 0x03, 0x5c, 0xd1, 0x06, 0x9e, 0x0f, 0x38, 0xef, + 0x30, 0x9c, 0xab, 0xf8, 0x56, 0xc9, 0x22, 0x84, 0x32, 0xc8, 0x5d, 0x82, 0xe2, 0xe6, 0xd4, 0x0b, + 0xb7, 0x93, 0x97, 0x53, 0x54, 0x6d, 0x41, 0x41, 0x64, 0x68, 0xe0, 0x82, 0x82, 0xc8, 0x72, 0xbf, + 0xea, 0x65, 0x06, 0xbd, 0x8a, 0xcf, 0x17, 0x40, 0x87, 0x13, 0x42, 0xc4, 0x2d, 0xf7, 0xf0, 0x77, + 0x14, 0x34, 0x25, 0x73, 0xab, 0xb8, 0xff, 0x75, 0x23, 0x49, 0x0e, 0x57, 0xce, 0x94, 0x4f, 0x04, + 0x64, 0x6f, 0x32, 0x64, 0xb3, 0xf8, 0x68, 0x6e, 0xa9, 0xba, 0xe6, 0x96, 0xb1, 0x49, 0x29, 0xfe, + 0x03, 0x54, 0xa6, 0x44, 0x99, 0x96, 0x54, 0x66, 0x96, 0x9c, 0x2d, 0xa9, 0xcc, 0x1c, 0x36, 0x56, + 0xbd, 0xc6, 0xc0, 0x2d, 0xe0, 0x4b, 0x65, 0x47, 0x56, 0xc6, 0xbc, 0xa6, 0x36, 0xe3, 0x3f, 0x8a, + 0x3a, 0x4d, 0x92, 0xa8, 0x05, 0x75, 0x9a, 0xcb, 0xd6, 0x16, 0xd4, 0x69, 0x3e, 0x3b, 0xab, 0x5e, + 0x65, 0xa8, 0x2f, 0xe3, 0xf9, 0x3c, 0xd4, 0xb6, 0xcf, 0xe9, 0x2c, 0x03, 0x18, 0xdb, 0x14, 0xe8, + 0x3f, 0x29, 0x40, 0xa7, 0x3f, 0xe8, 0xb8, 0x01, 0x89, 0x69, 0x9d, 0x82, 0x68, 0xe7, 0x13, 0x48, + 0x05, 0xd1, 0xee, 0xc3, 0x18, 0x15, 0x47, 0xfb, 0x49, 0x88, 0xc7, 0x00, 0x46, 0x29, 0xbc, 0x02, + 0xa6, 0x80, 0xff, 0x4d, 0x5c, 0x5e, 0x33, 0xec, 0x4c, 0xc1, 0xe5, 0xb5, 0x1f, 0xfd, 0x54, 0x70, + 0x79, 0xed, 0x4b, 0xfe, 0xa8, 0xb7, 0x18, 0xfc, 0x9b, 0xf8, 0x7a, 0x1e, 0x7c, 0xb9, 0x83, 0xf9, + 0x06, 0x63, 0x2f, 0x44, 0xf3, 0xb5, 0xad, 0x9e, 0xb6, 0x03, 0x6f, 0x7a, 0xf8, 0x03, 0x05, 0x1d, + 0x4a, 0x53, 0x20, 0x05, 0x47, 0xcd, 0x2c, 0x35, 0x54, 0x70, 0x66, 0xcb, 0x61, 0x55, 0x06, 0x40, + 0x9d, 0x82, 0x9b, 0xdd, 0xd7, 0xfc, 0x5e, 0xb8, 0x3e, 0xa7, 0xf3, 0x38, 0xa3, 0x82, 0xb2, 0xc9, + 0x67, 0x97, 0x76, 0x89, 0xbe, 0xb0, 0xd4, 0x65, 0xf4, 0xa2, 0xbb, 0x45, 0xcc, 0x55, 0x0f, 0xbf, + 0x2f, 0x22, 0x2d, 0x71, 0x32, 0x05, 0x91, 0xce, 0xf2, 0x44, 0x05, 0x58, 0x73, 0xd8, 0x21, 0xf5, + 0x12, 0xc3, 0x3a, 0x87, 0xcf, 0xe5, 0x61, 0x15, 0x9b, 0x85, 0x11, 0x90, 0x86, 0xb4, 0x75, 0x2c, + 0xd7, 0x3e, 0x7a, 0x3e, 0xab, 0x7c, 0xfc, 0x7c, 0x56, 0xf9, 0xf7, 0xf3, 0x59, 0xe5, 0x7b, 0x2f, + 0x66, 0xf7, 0x7d, 0xfc, 0x62, 0x76, 0xdf, 0xbf, 0x5e, 0xcc, 0xee, 0x7b, 0xa4, 0x49, 0x54, 0x70, + 0xdd, 0xa9, 0xcf, 0x99, 0x8f, 0x89, 0xed, 0xc8, 0xaa, 0x9f, 0x25, 0xff, 0x2b, 0xb3, 0x3e, 0xc6, + 0xfe, 0xe3, 0xf2, 0xd2, 0xff, 0x02, 0x00, 0x00, 0xff, 0xff, 0x1e, 0x15, 0xc0, 0xdb, 0xcf, 0x2a, + 0x00, 0x00, } // Reference imports to suppress errors if they are not otherwise used. @@ -2506,6 +2603,8 @@ type QueryClient interface { QueryGroupsExist(ctx context.Context, in *QueryGroupsExistRequest, opts ...grpc.CallOption) (*QueryGroupsExistResponse, error) // Queries whether some groups are exist by id. QueryGroupsExistById(ctx context.Context, in *QueryGroupsExistByIdRequest, opts ...grpc.CallOption) (*QueryGroupsExistResponse, error) + // Queries resource tags. + QueryResourceTag(ctx context.Context, in *QueryResourceTagRequest, opts ...grpc.CallOption) (*QueryResourceTagResponse, error) } type queryClient struct { @@ -2750,6 +2849,15 @@ func (c *queryClient) QueryGroupsExistById(ctx context.Context, in *QueryGroupsE return out, nil } +func (c *queryClient) QueryResourceTag(ctx context.Context, in *QueryResourceTagRequest, opts ...grpc.CallOption) (*QueryResourceTagResponse, error) { + out := new(QueryResourceTagResponse) + err := c.cc.Invoke(ctx, "/greenfield.storage.Query/QueryResourceTag", in, out, opts...) + if err != nil { + return nil, err + } + return out, nil +} + // QueryServer is the server API for Query service. type QueryServer interface { // Parameters queries the parameters of the module. @@ -2804,6 +2912,8 @@ type QueryServer interface { QueryGroupsExist(context.Context, *QueryGroupsExistRequest) (*QueryGroupsExistResponse, error) // Queries whether some groups are exist by id. QueryGroupsExistById(context.Context, *QueryGroupsExistByIdRequest) (*QueryGroupsExistResponse, error) + // Queries resource tags. + QueryResourceTag(context.Context, *QueryResourceTagRequest) (*QueryResourceTagResponse, error) } // UnimplementedQueryServer can be embedded to have forward compatible implementations. @@ -2888,6 +2998,9 @@ func (*UnimplementedQueryServer) QueryGroupsExist(ctx context.Context, req *Quer func (*UnimplementedQueryServer) QueryGroupsExistById(ctx context.Context, req *QueryGroupsExistByIdRequest) (*QueryGroupsExistResponse, error) { return nil, status.Errorf(codes.Unimplemented, "method QueryGroupsExistById not implemented") } +func (*UnimplementedQueryServer) QueryResourceTag(ctx context.Context, req *QueryResourceTagRequest) (*QueryResourceTagResponse, error) { + return nil, status.Errorf(codes.Unimplemented, "method QueryResourceTag not implemented") +} func RegisterQueryServer(s grpc1.Server, srv QueryServer) { s.RegisterService(&_Query_serviceDesc, srv) @@ -3361,6 +3474,24 @@ func _Query_QueryGroupsExistById_Handler(srv interface{}, ctx context.Context, d return interceptor(ctx, in, info, handler) } +func _Query_QueryResourceTag_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) { + in := new(QueryResourceTagRequest) + if err := dec(in); err != nil { + return nil, err + } + if interceptor == nil { + return srv.(QueryServer).QueryResourceTag(ctx, in) + } + info := &grpc.UnaryServerInfo{ + Server: srv, + FullMethod: "/greenfield.storage.Query/QueryResourceTag", + } + handler := func(ctx context.Context, req interface{}) (interface{}, error) { + return srv.(QueryServer).QueryResourceTag(ctx, req.(*QueryResourceTagRequest)) + } + return interceptor(ctx, in, info, handler) +} + var _Query_serviceDesc = grpc.ServiceDesc{ ServiceName: "greenfield.storage.Query", HandlerType: (*QueryServer)(nil), @@ -3469,6 +3600,10 @@ var _Query_serviceDesc = grpc.ServiceDesc{ MethodName: "QueryGroupsExistById", Handler: _Query_QueryGroupsExistById_Handler, }, + { + MethodName: "QueryResourceTag", + Handler: _Query_QueryResourceTag_Handler, + }, }, Streams: []grpc.StreamDesc{}, Metadata: "greenfield/storage/query.proto", @@ -5219,6 +5354,71 @@ func (m *QueryGroupsExistResponse) MarshalToSizedBuffer(dAtA []byte) (int, error return len(dAtA) - i, nil } +func (m *QueryResourceTagRequest) 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 *QueryResourceTagRequest) MarshalTo(dAtA []byte) (int, error) { + size := m.Size() + return m.MarshalToSizedBuffer(dAtA[:size]) +} + +func (m *QueryResourceTagRequest) MarshalToSizedBuffer(dAtA []byte) (int, error) { + i := len(dAtA) + _ = i + var l int + _ = l + if len(m.Resource) > 0 { + i -= len(m.Resource) + copy(dAtA[i:], m.Resource) + i = encodeVarintQuery(dAtA, i, uint64(len(m.Resource))) + i-- + dAtA[i] = 0xa + } + return len(dAtA) - i, nil +} + +func (m *QueryResourceTagResponse) 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 *QueryResourceTagResponse) MarshalTo(dAtA []byte) (int, error) { + size := m.Size() + return m.MarshalToSizedBuffer(dAtA[:size]) +} + +func (m *QueryResourceTagResponse) MarshalToSizedBuffer(dAtA []byte) (int, error) { + i := len(dAtA) + _ = i + var l int + _ = l + if m.Tags != nil { + { + size, err := m.Tags.MarshalToSizedBuffer(dAtA[:i]) + if err != nil { + return 0, err + } + i -= size + i = encodeVarintQuery(dAtA, i, uint64(size)) + } + i-- + dAtA[i] = 0xa + } + return len(dAtA) - i, nil +} + func encodeVarintQuery(dAtA []byte, offset int, v uint64) int { offset -= sovQuery(v) base := offset @@ -5927,6 +6127,32 @@ func (m *QueryGroupsExistResponse) Size() (n int) { return n } +func (m *QueryResourceTagRequest) Size() (n int) { + if m == nil { + return 0 + } + var l int + _ = l + l = len(m.Resource) + if l > 0 { + n += 1 + l + sovQuery(uint64(l)) + } + return n +} + +func (m *QueryResourceTagResponse) Size() (n int) { + if m == nil { + return 0 + } + var l int + _ = l + if m.Tags != nil { + l = m.Tags.Size() + n += 1 + l + sovQuery(uint64(l)) + } + return n +} + func sovQuery(x uint64) (n int) { return (math_bits.Len64(x|1) + 6) / 7 } @@ -10747,6 +10973,174 @@ func (m *QueryGroupsExistResponse) Unmarshal(dAtA []byte) error { } return nil } +func (m *QueryResourceTagRequest) 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: QueryResourceTagRequest: wiretype end group for non-group") + } + if fieldNum <= 0 { + return fmt.Errorf("proto: QueryResourceTagRequest: illegal tag %d (wire type %d)", fieldNum, wire) + } + switch fieldNum { + case 1: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field Resource", wireType) + } + var stringLen uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowQuery + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + stringLen |= uint64(b&0x7F) << shift + if b < 0x80 { + break + } + } + intStringLen := int(stringLen) + if intStringLen < 0 { + return ErrInvalidLengthQuery + } + postIndex := iNdEx + intStringLen + if postIndex < 0 { + return ErrInvalidLengthQuery + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + m.Resource = string(dAtA[iNdEx:postIndex]) + iNdEx = postIndex + 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 *QueryResourceTagResponse) 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: QueryResourceTagResponse: wiretype end group for non-group") + } + if fieldNum <= 0 { + return fmt.Errorf("proto: QueryResourceTagResponse: illegal tag %d (wire type %d)", fieldNum, wire) + } + switch fieldNum { + case 1: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field Tags", wireType) + } + var msglen int + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowQuery + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + msglen |= int(b&0x7F) << shift + if b < 0x80 { + break + } + } + if msglen < 0 { + return ErrInvalidLengthQuery + } + postIndex := iNdEx + msglen + if postIndex < 0 { + return ErrInvalidLengthQuery + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + if m.Tags == nil { + m.Tags = &ResourceTags{} + } + if err := m.Tags.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { + return err + } + iNdEx = postIndex + 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 01729c4be..6bc8459f1 100644 --- a/x/storage/types/query.pb.gw.go +++ b/x/storage/types/query.pb.gw.go @@ -1602,6 +1602,60 @@ func local_request_Query_QueryGroupsExistById_0(ctx context.Context, marshaler r } +func request_Query_QueryResourceTag_0(ctx context.Context, marshaler runtime.Marshaler, client QueryClient, req *http.Request, pathParams map[string]string) (proto.Message, runtime.ServerMetadata, error) { + var protoReq QueryResourceTagRequest + var metadata runtime.ServerMetadata + + var ( + val string + ok bool + err error + _ = err + ) + + val, ok = pathParams["resource"] + if !ok { + return nil, metadata, status.Errorf(codes.InvalidArgument, "missing parameter %s", "resource") + } + + protoReq.Resource, err = runtime.String(val) + + if err != nil { + return nil, metadata, status.Errorf(codes.InvalidArgument, "type mismatch, parameter: %s, error: %v", "resource", err) + } + + msg, err := client.QueryResourceTag(ctx, &protoReq, grpc.Header(&metadata.HeaderMD), grpc.Trailer(&metadata.TrailerMD)) + return msg, metadata, err + +} + +func local_request_Query_QueryResourceTag_0(ctx context.Context, marshaler runtime.Marshaler, server QueryServer, req *http.Request, pathParams map[string]string) (proto.Message, runtime.ServerMetadata, error) { + var protoReq QueryResourceTagRequest + var metadata runtime.ServerMetadata + + var ( + val string + ok bool + err error + _ = err + ) + + val, ok = pathParams["resource"] + if !ok { + return nil, metadata, status.Errorf(codes.InvalidArgument, "missing parameter %s", "resource") + } + + protoReq.Resource, err = runtime.String(val) + + if err != nil { + return nil, metadata, status.Errorf(codes.InvalidArgument, "type mismatch, parameter: %s, error: %v", "resource", err) + } + + msg, err := server.QueryResourceTag(ctx, &protoReq) + return msg, metadata, err + +} + // RegisterQueryHandlerServer registers the http handlers for service Query to "mux". // UnaryRPC :call QueryServer directly. // StreamingRPC :currently unsupported pending https://github.com/grpc/grpc-go/issues/906. @@ -2206,6 +2260,29 @@ func RegisterQueryHandlerServer(ctx context.Context, mux *runtime.ServeMux, serv }) + mux.Handle("GET", pattern_Query_QueryResourceTag_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_QueryResourceTag_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_QueryResourceTag_0(ctx, mux, outboundMarshaler, w, req, resp, mux.GetForwardResponseOptions()...) + + }) + return nil } @@ -2767,6 +2844,26 @@ func RegisterQueryHandlerClient(ctx context.Context, mux *runtime.ServeMux, clie }) + mux.Handle("GET", pattern_Query_QueryResourceTag_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_QueryResourceTag_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_QueryResourceTag_0(ctx, mux, outboundMarshaler, w, req, resp, mux.GetForwardResponseOptions()...) + + }) + return nil } @@ -2822,6 +2919,8 @@ var ( pattern_Query_QueryGroupsExist_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1, 2, 2, 1, 0, 4, 1, 5, 3, 1, 0, 4, 1, 5, 4}, []string{"greenfield", "storage", "groups_exist", "group_owner", "group_names"}, "", runtime.AssumeColonVerbOpt(false))) pattern_Query_QueryGroupsExistById_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1, 2, 2, 1, 0, 4, 1, 5, 3}, []string{"greenfield", "storage", "groups_exist_by_id", "group_ids"}, "", runtime.AssumeColonVerbOpt(false))) + + pattern_Query_QueryResourceTag_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1, 2, 2, 1, 0, 4, 1, 5, 3}, []string{"greenfield", "storage", "resource_tag", "resource"}, "", runtime.AssumeColonVerbOpt(false))) ) var ( @@ -2876,4 +2975,6 @@ var ( forward_Query_QueryGroupsExist_0 = runtime.ForwardResponseMessage forward_Query_QueryGroupsExistById_0 = runtime.ForwardResponseMessage + + forward_Query_QueryResourceTag_0 = runtime.ForwardResponseMessage ) diff --git a/x/storage/types/tx.pb.go b/x/storage/types/tx.pb.go index 1989c0dc9..4ce8732cf 100644 --- a/x/storage/types/tx.pb.go +++ b/x/storage/types/tx.pb.go @@ -3097,7 +3097,7 @@ type MsgSetTag struct { // resource defines a greenfield standard resource name that can be generated by GRN structure Resource string `protobuf:"bytes,2,opt,name=resource,proto3" json:"resource,omitempty"` // tags defines a list of tags which will be set to the resource - Tags map[string]string `protobuf:"bytes,3,rep,name=tags,proto3" json:"tags,omitempty" protobuf_key:"bytes,1,opt,name=key,proto3" protobuf_val:"bytes,2,opt,name=value,proto3"` + Tags *ResourceTags `protobuf:"bytes,3,opt,name=tags,proto3" json:"tags,omitempty"` } func (m *MsgSetTag) Reset() { *m = MsgSetTag{} } @@ -3147,7 +3147,7 @@ func (m *MsgSetTag) GetResource() string { return "" } -func (m *MsgSetTag) GetTags() map[string]string { +func (m *MsgSetTag) GetTags() *ResourceTags { if m != nil { return m.Tags } @@ -3249,162 +3249,160 @@ func init() { proto.RegisterType((*MsgRejectMigrateBucket)(nil), "greenfield.storage.MsgRejectMigrateBucket") proto.RegisterType((*MsgRejectMigrateBucketResponse)(nil), "greenfield.storage.MsgRejectMigrateBucketResponse") proto.RegisterType((*MsgSetTag)(nil), "greenfield.storage.MsgSetTag") - proto.RegisterMapType((map[string]string)(nil), "greenfield.storage.MsgSetTag.TagsEntry") proto.RegisterType((*MsgSetTagResponse)(nil), "greenfield.storage.MsgSetTagResponse") } func init() { proto.RegisterFile("greenfield/storage/tx.proto", fileDescriptor_ddb71b028305a3cc) } var fileDescriptor_ddb71b028305a3cc = []byte{ - // 2367 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xcc, 0x5a, 0x4b, 0x6c, 0x1b, 0xc7, - 0x19, 0x36, 0x1f, 0x92, 0xcc, 0x9f, 0xd4, 0xc3, 0x6b, 0x25, 0x62, 0xe8, 0x9a, 0x62, 0x98, 0x36, - 0x91, 0x5f, 0xa2, 0xa3, 0xba, 0xae, 0xab, 0x16, 0x45, 0x25, 0x27, 0x71, 0x89, 0x84, 0xb1, 0xb2, - 0xb2, 0x5d, 0x20, 0x40, 0xc1, 0x0c, 0xb9, 0xe3, 0xf5, 0xd6, 0xe4, 0xee, 0x76, 0x67, 0x29, 0x9b, - 0x29, 0xd0, 0x43, 0x2f, 0x3d, 0x15, 0x08, 0x90, 0x1e, 0x7a, 0x28, 0x7a, 0xee, 0xa1, 0x28, 0x8a, - 0x22, 0xe7, 0xa2, 0x97, 0x00, 0x46, 0x4f, 0x46, 0x4e, 0x45, 0x0f, 0x6e, 0x60, 0x17, 0x28, 0x7a, - 0xed, 0xa5, 0xd7, 0x62, 0x76, 0x66, 0x67, 0x87, 0xfb, 0xa4, 0x64, 0x29, 0xd6, 0x49, 0xdc, 0x99, - 0x6f, 0x66, 0xfe, 0xf7, 0xfc, 0xff, 0x3f, 0x82, 0x33, 0xba, 0x83, 0xb1, 0x79, 0xd7, 0xc0, 0x03, - 0xad, 0x45, 0x5c, 0xcb, 0x41, 0x3a, 0x6e, 0xb9, 0x0f, 0xd7, 0x6d, 0xc7, 0x72, 0x2d, 0x45, 0x09, - 0x26, 0xd7, 0xf9, 0x64, 0x6d, 0xa5, 0x6f, 0x91, 0xa1, 0x45, 0x5a, 0x43, 0xa2, 0xb7, 0xf6, 0xde, - 0xa4, 0x7f, 0x18, 0xb8, 0xf6, 0x0a, 0x9b, 0xe8, 0x7a, 0x5f, 0x2d, 0xf6, 0xc1, 0xa7, 0x96, 0x75, - 0x4b, 0xb7, 0xd8, 0x38, 0xfd, 0xc5, 0x47, 0x57, 0x75, 0xcb, 0xd2, 0x07, 0xb8, 0xe5, 0x7d, 0xf5, - 0x46, 0x77, 0x5b, 0xae, 0x31, 0xc4, 0xc4, 0x45, 0x43, 0x9b, 0x03, 0x1a, 0x12, 0x6d, 0x7d, 0x6b, - 0x38, 0xb4, 0xcc, 0x16, 0xb2, 0x6d, 0xc7, 0xda, 0x43, 0x03, 0xb1, 0x45, 0x04, 0xf1, 0xc0, 0x41, - 0xb6, 0x8d, 0x1d, 0x0e, 0x68, 0x4a, 0x00, 0x1b, 0x3b, 0x43, 0x83, 0x10, 0xc3, 0x32, 0x39, 0x36, - 0x66, 0x13, 0x5f, 0x04, 0x99, 0x00, 0x1b, 0x39, 0x68, 0xc8, 0xf9, 0x6b, 0xfe, 0xa5, 0x00, 0x8b, - 0x1d, 0xa2, 0x5f, 0x77, 0x30, 0x72, 0xf1, 0xf6, 0xa8, 0x7f, 0x1f, 0xbb, 0xca, 0x06, 0xcc, 0xf5, - 0xe9, 0xb7, 0xe5, 0x54, 0x73, 0x8d, 0xdc, 0x5a, 0x69, 0xbb, 0xfa, 0xc5, 0x67, 0x97, 0x96, 0xb9, - 0x58, 0xb6, 0x34, 0xcd, 0xc1, 0x84, 0xec, 0xba, 0x8e, 0x61, 0xea, 0xaa, 0x0f, 0x54, 0x56, 0xa1, - 0xdc, 0xf3, 0x56, 0x77, 0x4d, 0x34, 0xc4, 0xd5, 0x3c, 0x5d, 0xa7, 0x02, 0x1b, 0x7a, 0x1f, 0x0d, - 0xb1, 0xb2, 0x0d, 0xb0, 0x67, 0x10, 0xa3, 0x67, 0x0c, 0x0c, 0x77, 0x5c, 0x2d, 0x34, 0x72, 0x6b, - 0x0b, 0x1b, 0xcd, 0xf5, 0xa8, 0x96, 0xd6, 0xef, 0x08, 0xd4, 0xad, 0xb1, 0x8d, 0x55, 0x69, 0x95, - 0xb2, 0x05, 0x8b, 0x36, 0x1a, 0x0f, 0xb1, 0xe9, 0x76, 0x11, 0x23, 0xa3, 0x5a, 0xcc, 0x20, 0x70, - 0x81, 0x2f, 0xe0, 0xa3, 0xca, 0x3b, 0xa0, 0xd8, 0x8e, 0x31, 0x44, 0xce, 0xb8, 0x4b, 0x6c, 0xb1, - 0xcb, 0x4c, 0xc6, 0x2e, 0x4b, 0x7c, 0xcd, 0xae, 0xed, 0xef, 0xf3, 0x2e, 0x9c, 0x96, 0xf7, 0xe1, - 0xba, 0xad, 0xce, 0x36, 0x72, 0x6b, 0xe5, 0x8d, 0x33, 0x32, 0x5f, 0x5c, 0x1f, 0x5b, 0x1c, 0xa2, - 0x9e, 0x0a, 0xf6, 0xe2, 0x43, 0xca, 0x45, 0x50, 0xfa, 0xf7, 0x90, 0xa3, 0x63, 0xad, 0xeb, 0x60, - 0xa4, 0x75, 0x7f, 0x3a, 0xb2, 0x5c, 0x54, 0x9d, 0x6b, 0xe4, 0xd6, 0x8a, 0xea, 0x12, 0x9f, 0x51, - 0x31, 0xd2, 0x3e, 0xa0, 0xe3, 0x9b, 0x95, 0x5f, 0xfc, 0xfb, 0x4f, 0xe7, 0x7d, 0xc1, 0x37, 0x77, - 0x61, 0x25, 0xa4, 0x3f, 0x15, 0x13, 0xdb, 0x32, 0x09, 0x56, 0xae, 0x41, 0x89, 0xeb, 0xc4, 0xd0, - 0xb8, 0x26, 0xcf, 0x3c, 0x7a, 0xb2, 0x7a, 0xe2, 0x1f, 0x4f, 0x56, 0x8b, 0xb7, 0x0d, 0xd3, 0xfd, - 0xe2, 0xb3, 0x4b, 0x65, 0xce, 0x2e, 0xfd, 0x54, 0x4f, 0x32, 0x74, 0x5b, 0x6b, 0x3e, 0xf0, 0x8c, - 0xe2, 0x2d, 0x3c, 0xc0, 0xc2, 0x28, 0xae, 0xc0, 0x49, 0xcb, 0xc6, 0xce, 0x54, 0x56, 0x21, 0x90, - 0x99, 0x66, 0xb1, 0x39, 0x4f, 0x99, 0x11, 0xf8, 0xe6, 0x2b, 0x1e, 0x37, 0xf2, 0xc1, 0x3e, 0x37, - 0xcd, 0x5f, 0xe7, 0x60, 0x99, 0xce, 0x19, 0xa4, 0x6f, 0x99, 0xae, 0x61, 0x8e, 0x8e, 0x96, 0x32, - 0xe5, 0x65, 0x98, 0x75, 0x30, 0x22, 0x96, 0xe9, 0x19, 0x6b, 0x49, 0xe5, 0x5f, 0x61, 0x8a, 0xeb, - 0xf0, 0xb5, 0x38, 0xaa, 0x04, 0xd9, 0xff, 0x92, 0x1d, 0xec, 0x66, 0xef, 0x27, 0xb8, 0x7f, 0x44, - 0x0e, 0xb6, 0x0a, 0x65, 0xcb, 0xdb, 0x9e, 0x01, 0x18, 0xd1, 0xc0, 0x86, 0x3c, 0xc0, 0xab, 0x50, - 0xb1, 0xd1, 0x78, 0x60, 0x21, 0xad, 0x4b, 0x8c, 0x8f, 0xb1, 0xe7, 0x3a, 0x45, 0xb5, 0xcc, 0xc7, - 0x76, 0x8d, 0x8f, 0xc3, 0x4e, 0x3a, 0x73, 0x20, 0x27, 0x7d, 0x15, 0x2a, 0x54, 0x14, 0xd4, 0x49, - 0xdd, 0xb1, 0x8d, 0x3d, 0x97, 0x28, 0xa9, 0x65, 0x3e, 0x46, 0xe1, 0x49, 0xce, 0x33, 0x77, 0x20, - 0xe7, 0x39, 0x07, 0x4b, 0xf8, 0xa1, 0x4d, 0xf9, 0xee, 0xdf, 0xc3, 0xfd, 0xfb, 0x64, 0x34, 0x24, - 0xd5, 0x93, 0x8d, 0xc2, 0x5a, 0x45, 0x5d, 0x64, 0xe3, 0xd7, 0xfd, 0x61, 0xe5, 0x5d, 0x58, 0x74, - 0xb0, 0x36, 0x32, 0x35, 0x64, 0xf6, 0xc7, 0x8c, 0xba, 0x52, 0x32, 0x8f, 0xaa, 0x80, 0x7a, 0x3c, - 0x2e, 0x38, 0x13, 0xdf, 0x29, 0x6e, 0xc8, 0xb4, 0x2c, 0xbb, 0x21, 0x57, 0xcc, 0x94, 0x6e, 0xc8, - 0xd0, 0x6d, 0xad, 0xf9, 0x69, 0x1e, 0xe6, 0x3b, 0x44, 0xdf, 0xc5, 0x68, 0xc0, 0x2d, 0xe7, 0x88, - 0x6c, 0x3d, 0xd3, 0x76, 0xbe, 0x05, 0x2b, 0xfa, 0xc0, 0xea, 0xa1, 0x41, 0x77, 0xcf, 0x70, 0xdc, - 0x11, 0x1a, 0x74, 0x75, 0xc7, 0x1a, 0xd9, 0x94, 0x23, 0x6a, 0x46, 0xf3, 0xea, 0x32, 0x9b, 0xbe, - 0xc3, 0x66, 0x6f, 0xd0, 0xc9, 0xb6, 0xa6, 0xbc, 0x05, 0xab, 0x04, 0xf7, 0x2d, 0x53, 0xe3, 0xaa, - 0xee, 0x0d, 0x48, 0x17, 0xe9, 0x7a, 0x97, 0x18, 0xba, 0x89, 0xdc, 0x91, 0x83, 0x59, 0xe8, 0xad, - 0xa8, 0x67, 0x04, 0x6c, 0xd7, 0xde, 0x1e, 0x90, 0x2d, 0x5d, 0xdf, 0x15, 0x90, 0xb0, 0xc7, 0xad, - 0xc0, 0x4b, 0x13, 0x42, 0x11, 0xae, 0xf6, 0xdb, 0x1c, 0x9c, 0xee, 0x10, 0x5d, 0xc5, 0x74, 0xf4, - 0xc5, 0x0b, 0x2d, 0x4c, 0xf7, 0x59, 0x38, 0x13, 0x43, 0x9d, 0xa0, 0xfe, 0x8f, 0x4c, 0xd9, 0xd7, - 0x2d, 0x7b, 0xcc, 0xe9, 0xae, 0x85, 0xe9, 0x96, 0xa8, 0x7b, 0x1d, 0x16, 0x89, 0xd3, 0xef, 0x46, - 0x29, 0x9c, 0x27, 0x4e, 0x7f, 0x3b, 0x20, 0xf2, 0x75, 0x58, 0xd4, 0x88, 0x3b, 0x81, 0x63, 0x84, - 0xce, 0x6b, 0xc4, 0x9d, 0xc4, 0xd1, 0xfd, 0x64, 0x86, 0x8a, 0x62, 0xbf, 0x9b, 0x81, 0x21, 0xf0, - 0xfd, 0x64, 0xdc, 0x8c, 0xd8, 0x4f, 0xc2, 0xa9, 0xb0, 0x42, 0x71, 0x07, 0xbc, 0x23, 0x97, 0x35, - 0xe2, 0xee, 0x84, 0x3d, 0x3d, 0x2c, 0xcf, 0x0f, 0x3c, 0x3b, 0x08, 0xe4, 0x75, 0x08, 0x0e, 0xf7, - 0x9b, 0x9c, 0x74, 0xf1, 0x1d, 0x2f, 0xeb, 0x91, 0x6f, 0xc6, 0x90, 0xe5, 0x3c, 0x8e, 0xdc, 0x8c, - 0x47, 0x4b, 0xfa, 0x26, 0x80, 0x90, 0x2f, 0xa9, 0x16, 0x1a, 0x85, 0x2c, 0x01, 0x97, 0x7c, 0x01, - 0x13, 0xe9, 0x56, 0x2d, 0xee, 0xeb, 0x56, 0x0d, 0xb1, 0xfc, 0xcb, 0x1c, 0x2c, 0x88, 0x78, 0xeb, - 0x45, 0x9b, 0x03, 0x5d, 0xaa, 0x67, 0x01, 0x58, 0x1c, 0x93, 0x38, 0x2d, 0x79, 0x23, 0x1e, 0xa3, - 0xcb, 0x30, 0x83, 0x1f, 0xba, 0x0e, 0xe2, 0xda, 0x61, 0x1f, 0xa1, 0xc0, 0xbf, 0x03, 0x2f, 0x4f, - 0x12, 0x22, 0xcc, 0xf0, 0x2a, 0x9c, 0x14, 0x41, 0x72, 0x0a, 0x2b, 0x9c, 0xd3, 0x59, 0xd0, 0x6c, - 0xba, 0x1e, 0x6b, 0x4c, 0xd3, 0x8c, 0xb5, 0x83, 0xe9, 0x31, 0x9d, 0xb9, 0xb0, 0xc4, 0xab, 0x1e, - 0x1f, 0xd2, 0xa9, 0x42, 0xd6, 0x9f, 0xe7, 0x3d, 0xf3, 0xba, 0x6d, 0x6b, 0x3e, 0x8b, 0x1d, 0x3c, - 0xec, 0x61, 0xe7, 0x80, 0x64, 0x7d, 0x07, 0xca, 0x8c, 0x2c, 0xeb, 0x81, 0x89, 0x1d, 0x46, 0x57, - 0xca, 0x42, 0xc6, 0xc3, 0x4d, 0x8a, 0x0d, 0x71, 0x54, 0x08, 0xab, 0xeb, 0x87, 0xb0, 0x30, 0xf4, - 0x28, 0x23, 0x5d, 0xd7, 0xa2, 0xb9, 0x7d, 0xb5, 0xd8, 0x28, 0xac, 0x95, 0xe3, 0x6f, 0xf7, 0x0e, - 0xd1, 0x25, 0x5e, 0xd4, 0x0a, 0x5f, 0x79, 0xcb, 0xda, 0xd2, 0xe8, 0xbd, 0x75, 0x4a, 0xda, 0x49, - 0xf3, 0x84, 0x52, 0x9d, 0xf1, 0x0c, 0x3d, 0x99, 0xd2, 0x45, 0xb1, 0x05, 0x93, 0x62, 0xbc, 0x4d, - 0x47, 0xc4, 0x28, 0xe4, 0xfc, 0x5f, 0xff, 0xfa, 0x32, 0xf1, 0x83, 0xe3, 0x2c, 0xe6, 0xef, 0xc1, - 0x1c, 0xe7, 0x74, 0x1f, 0xf2, 0xf5, 0x97, 0x24, 0x5d, 0x8a, 0x93, 0x3c, 0x0b, 0x99, 0xfc, 0x8a, - 0xf9, 0xb9, 0x2c, 0x8e, 0xcb, 0x30, 0xcb, 0xf6, 0xca, 0x14, 0x06, 0xc7, 0x29, 0x6d, 0xa0, 0x99, - 0xa0, 0xe1, 0x20, 0xd7, 0xb0, 0xcc, 0x2e, 0x2d, 0xd5, 0x3d, 0x71, 0x94, 0x37, 0x6a, 0xeb, 0xac, - 0x8e, 0x5f, 0xf7, 0xeb, 0xf8, 0xf5, 0x5b, 0x7e, 0x1d, 0xbf, 0x5d, 0xfc, 0xe4, 0x9f, 0xab, 0x39, - 0x75, 0x21, 0x58, 0x48, 0xa7, 0x9a, 0x7f, 0x63, 0x3a, 0x92, 0x94, 0xf8, 0x36, 0x8d, 0x09, 0xc7, - 0x4e, 0x47, 0x22, 0x72, 0x15, 0xe5, 0xc8, 0x15, 0x2b, 0xfb, 0x30, 0x2f, 0x42, 0xf6, 0xbf, 0xcf, - 0x79, 0x09, 0xc9, 0x7b, 0x18, 0xed, 0xf1, 0x38, 0xb4, 0x7f, 0xd1, 0x1f, 0x19, 0x87, 0x9b, 0x65, - 0xca, 0x0b, 0x3f, 0x86, 0xa7, 0x84, 0x01, 0xa5, 0xc1, 0xd5, 0x98, 0x97, 0xf4, 0xc5, 0xd2, 0x9d, - 0xb6, 0x79, 0xd7, 0x3a, 0xaa, 0x9b, 0xf1, 0xbd, 0xd8, 0x42, 0xbe, 0xe0, 0x19, 0x5b, 0x3d, 0x26, - 0xe1, 0xb9, 0xdd, 0x36, 0xdd, 0xab, 0x57, 0xee, 0xa0, 0xc1, 0x08, 0x47, 0x0b, 0xfd, 0xc3, 0x68, - 0x77, 0x1c, 0x42, 0x41, 0x97, 0x66, 0x35, 0x81, 0x44, 0x85, 0xc4, 0x7f, 0x97, 0x63, 0x69, 0x19, - 0x32, 0xfb, 0x78, 0x30, 0x51, 0xf5, 0x1e, 0x93, 0x44, 0x6a, 0x15, 0xce, 0xc6, 0xd2, 0x27, 0x38, - 0xf8, 0x6b, 0x1e, 0x2a, 0x1d, 0xa2, 0xef, 0x8c, 0xdc, 0x1d, 0x6b, 0x60, 0xf4, 0xc7, 0x07, 0x24, - 0xfc, 0xfb, 0x50, 0xb2, 0x1d, 0xc3, 0xec, 0x1b, 0x36, 0x1a, 0xf0, 0x78, 0xd3, 0x90, 0x25, 0x1f, - 0xf4, 0xf4, 0xd6, 0x77, 0x7c, 0x9c, 0x1a, 0x2c, 0xa1, 0xd9, 0xbf, 0x83, 0x89, 0x35, 0x72, 0xfa, - 0x3e, 0x53, 0xe2, 0x5b, 0xf9, 0x01, 0x00, 0x71, 0x91, 0x8b, 0xa9, 0xaa, 0xfd, 0x28, 0x9c, 0xb4, - 0xf9, 0xae, 0x0f, 0x54, 0xa5, 0x35, 0x4a, 0x27, 0x1a, 0x13, 0xe7, 0x32, 0x63, 0xe2, 0xc9, 0x47, - 0x4f, 0x56, 0x73, 0x71, 0x71, 0x31, 0x2c, 0xe3, 0x1d, 0x2f, 0x63, 0x10, 0x12, 0x94, 0x33, 0x73, - 0xdb, 0x1b, 0xf1, 0x0b, 0xc7, 0xac, 0xcc, 0x9c, 0xa1, 0xdb, 0x5a, 0xf3, 0xcf, 0x72, 0x66, 0x7e, - 0x5c, 0xf5, 0x12, 0x16, 0xc3, 0xae, 0x94, 0xb3, 0x1f, 0x9a, 0x24, 0xfe, 0xc3, 0x24, 0xd1, 0x31, - 0x1c, 0xc7, 0x72, 0x9e, 0xcb, 0xb5, 0x2e, 0x40, 0xde, 0xd0, 0x78, 0x4c, 0x4e, 0x3d, 0x3c, 0x6f, - 0x68, 0x61, 0x3f, 0x2c, 0x64, 0xf9, 0x61, 0x31, 0xd2, 0x43, 0x68, 0xc2, 0xbc, 0x86, 0x89, 0xdb, - 0xed, 0xdf, 0x43, 0x86, 0x49, 0xd9, 0x9e, 0xf1, 0x3a, 0x07, 0x65, 0x3a, 0x78, 0x9d, 0x8e, 0xb5, - 0xb5, 0xf8, 0xa2, 0x47, 0x66, 0x55, 0x78, 0xe9, 0x23, 0x59, 0x0c, 0xcf, 0xd5, 0x09, 0x3c, 0x5c, - 0x31, 0x44, 0xb8, 0x2c, 0x66, 0x72, 0x29, 0x47, 0x54, 0xc6, 0xe5, 0x44, 0x44, 0xfd, 0x52, 0xce, - 0x39, 0x82, 0xf9, 0x17, 0xd6, 0x0b, 0x9a, 0xbc, 0x53, 0x8a, 0x87, 0x71, 0xa7, 0xc8, 0x7a, 0x0e, - 0xf5, 0x4f, 0x3f, 0x67, 0x19, 0x20, 0x9b, 0x7b, 0x9e, 0x72, 0x68, 0x5f, 0x6a, 0xce, 0x48, 0xaf, - 0x0e, 0xa0, 0x64, 0x56, 0x5f, 0x49, 0x6c, 0x08, 0x0e, 0x3f, 0x65, 0x96, 0xcc, 0xf4, 0xbb, 0xe3, - 0x3d, 0xce, 0x28, 0x57, 0xa1, 0x84, 0x46, 0xee, 0x3d, 0xcb, 0xa1, 0x22, 0xce, 0xe2, 0x31, 0x80, - 0x2a, 0xd7, 0x60, 0x96, 0x3d, 0xef, 0x04, 0x19, 0x6e, 0x54, 0x2f, 0xec, 0x8c, 0xed, 0x22, 0x15, - 0x82, 0xca, 0xf1, 0x9b, 0x0b, 0x94, 0xdc, 0x60, 0x27, 0xae, 0x12, 0x99, 0x28, 0x41, 0xf0, 0xff, - 0x72, 0xb0, 0xe4, 0xf1, 0xa2, 0x3b, 0xe8, 0x88, 0xdf, 0x07, 0x94, 0x73, 0x70, 0x2a, 0xd4, 0x47, - 0x32, 0x34, 0x4f, 0x1f, 0xf3, 0xea, 0x82, 0xdc, 0x24, 0x6a, 0x6b, 0x69, 0x2d, 0xa7, 0xe2, 0x21, - 0xb5, 0x9c, 0x6a, 0x50, 0x0d, 0x33, 0x1e, 0xb4, 0x24, 0xf2, 0xde, 0xe4, 0x75, 0x6b, 0x68, 0xd3, - 0x78, 0xff, 0x95, 0x48, 0x67, 0x1b, 0xea, 0xb1, 0x6d, 0xd9, 0xbb, 0x68, 0x68, 0x0c, 0xc6, 0x81, - 0xa8, 0x6a, 0xd1, 0xee, 0xec, 0x3b, 0x1e, 0xa4, 0xad, 0x29, 0x5b, 0x50, 0xd1, 0xf7, 0xf4, 0xee, - 0x10, 0xd9, 0xb6, 0x61, 0xea, 0x7e, 0x36, 0x51, 0x8f, 0x33, 0x9c, 0x1b, 0x77, 0x6e, 0x74, 0x18, - 0x4c, 0x2d, 0xeb, 0x7b, 0x3a, 0xff, 0x1d, 0xa9, 0xe9, 0x9a, 0xd0, 0x48, 0x12, 0x84, 0x90, 0xd6, - 0xcf, 0x59, 0xdb, 0xc4, 0xcb, 0xc2, 0xbe, 0x0a, 0x51, 0x85, 0x69, 0x6c, 0x40, 0x3d, 0xfe, 0xfc, - 0x10, 0x85, 0xac, 0x5d, 0xfb, 0xe2, 0x28, 0x8c, 0x39, 0x5f, 0x50, 0xf8, 0x34, 0x07, 0x25, 0xaf, - 0x13, 0xee, 0xde, 0x42, 0xfa, 0x01, 0xa9, 0x92, 0xb3, 0x99, 0x7c, 0x28, 0xcb, 0xfc, 0x2e, 0x14, - 0x5d, 0xa4, 0xb3, 0x0e, 0x5f, 0x79, 0xe3, 0x8d, 0x84, 0x2a, 0x9f, 0x1d, 0xbf, 0x7e, 0x0b, 0xe9, - 0xe4, 0x6d, 0xd3, 0x75, 0xc6, 0xaa, 0xb7, 0xa8, 0xf6, 0x6d, 0x28, 0x89, 0x21, 0x65, 0x09, 0x0a, - 0xf7, 0x31, 0x0f, 0x64, 0x2a, 0xfd, 0x49, 0x0b, 0xd4, 0x3d, 0x5a, 0xf6, 0xf0, 0x43, 0xd9, 0xc7, - 0x66, 0xfe, 0x5a, 0x2e, 0x2c, 0x86, 0xd3, 0x70, 0x4a, 0x1c, 0xe2, 0x73, 0xbe, 0xf1, 0x87, 0x15, - 0x28, 0x74, 0x88, 0xae, 0x7c, 0x04, 0x95, 0x89, 0x97, 0xeb, 0xd7, 0x12, 0x68, 0x94, 0x41, 0xb5, - 0x0b, 0x53, 0x80, 0x44, 0x9e, 0xf6, 0x11, 0x54, 0x26, 0x9e, 0x41, 0x93, 0x4e, 0x90, 0x41, 0x89, - 0x27, 0xc4, 0xbd, 0x6b, 0x2a, 0x03, 0x58, 0x8a, 0x94, 0xa7, 0x49, 0xb2, 0x0e, 0x03, 0x6b, 0xad, - 0x29, 0x81, 0x32, 0x3f, 0x13, 0x29, 0x53, 0x12, 0x3f, 0x32, 0x28, 0x91, 0x9f, 0xb8, 0x0b, 0x5b, - 0xb1, 0xe0, 0x54, 0xf4, 0x8d, 0x76, 0x2d, 0x49, 0x22, 0x61, 0x64, 0xed, 0xf2, 0xb4, 0x48, 0x99, - 0xa5, 0x89, 0x3a, 0x33, 0xdd, 0x08, 0x18, 0x28, 0xc3, 0x08, 0x42, 0x0f, 0x0a, 0x1f, 0x02, 0x48, - 0xcf, 0x49, 0xaf, 0x26, 0x3a, 0x82, 0x0f, 0xa9, 0x9d, 0xcb, 0x84, 0xc8, 0xea, 0x8f, 0x3c, 0x58, - 0x25, 0xa9, 0x3f, 0x0c, 0x4c, 0x54, 0x7f, 0xd2, 0x23, 0x13, 0xe5, 0x44, 0x7a, 0x60, 0x4a, 0xe2, - 0x24, 0x80, 0x24, 0x72, 0x12, 0xf3, 0xec, 0x22, 0x5c, 0x25, 0x43, 0x0f, 0x32, 0x28, 0xc3, 0x55, - 0x42, 0x27, 0x38, 0xa0, 0xc4, 0xf4, 0x15, 0x12, 0x49, 0x8c, 0x40, 0x6b, 0x6f, 0x4e, 0x0d, 0x8d, - 0x3a, 0x4c, 0x06, 0x57, 0x32, 0x28, 0xc3, 0x61, 0x42, 0x27, 0x4c, 0x3a, 0x0c, 0x3f, 0x66, 0x0a, - 0x87, 0xe1, 0x67, 0x5d, 0x9e, 0x16, 0x19, 0x8d, 0x38, 0x52, 0x31, 0x91, 0x1e, 0x71, 0x02, 0x60, - 0x46, 0xc4, 0x89, 0x96, 0x2f, 0xca, 0x8f, 0xa1, 0x2c, 0x3f, 0xd3, 0x34, 0x53, 0x1d, 0xcf, 0xc3, - 0xd4, 0xce, 0x67, 0x63, 0xe4, 0xed, 0xe5, 0xa7, 0x92, 0x66, 0xaa, 0x3d, 0xa5, 0x6f, 0x1f, 0xf3, - 0xf8, 0x41, 0x95, 0x13, 0x7d, 0xf8, 0x58, 0x4b, 0x95, 0x81, 0x84, 0x4c, 0x54, 0x4e, 0xe2, 0x2b, - 0x40, 0xa0, 0x1c, 0xa9, 0xbb, 0xfc, 0x46, 0xf6, 0x2e, 0x1e, 0x30, 0x43, 0x39, 0xd1, 0x1e, 0x2f, - 0x8d, 0x07, 0x52, 0x7f, 0x37, 0x29, 0x1e, 0x04, 0x90, 0xc4, 0x78, 0x10, 0xed, 0xbd, 0x52, 0xcd, - 0xc8, 0x55, 0x5b, 0x33, 0xd5, 0x27, 0xd2, 0x35, 0x13, 0x53, 0x36, 0xb1, 0xc0, 0x19, 0x7a, 0x2a, - 0x49, 0x0e, 0x9c, 0x93, 0xc0, 0x94, 0xc0, 0x19, 0xff, 0x10, 0xa1, 0xfc, 0x08, 0x4a, 0x41, 0x43, - 0xb0, 0x91, 0xb0, 0x5a, 0x20, 0x6a, 0x6b, 0x59, 0x88, 0x68, 0xd4, 0xe4, 0x7b, 0xa7, 0x47, 0x4d, - 0xbe, 0xfd, 0x85, 0x29, 0x40, 0xf2, 0x09, 0x13, 0xb5, 0xe5, 0x6b, 0xa9, 0x46, 0xc2, 0x40, 0x89, - 0x27, 0xc4, 0x15, 0x84, 0x4a, 0x1f, 0xe6, 0x27, 0x33, 0xe4, 0xaf, 0x27, 0xea, 0x51, 0x42, 0xd5, - 0x2e, 0x4e, 0x83, 0x12, 0x87, 0xfc, 0x0c, 0x5e, 0x8a, 0xaf, 0xad, 0x2e, 0x26, 0x5e, 0x51, 0x31, - 0xe8, 0xda, 0x95, 0xfd, 0xa0, 0xc5, 0xe1, 0x23, 0x38, 0x1d, 0x57, 0xab, 0x9c, 0x4f, 0xbd, 0x4f, - 0x26, 0x0f, 0xde, 0x98, 0x1e, 0x2b, 0x1f, 0x1b, 0x57, 0x80, 0x9c, 0x4f, 0xbd, 0xf6, 0xa7, 0x3b, - 0x36, 0xa5, 0xb0, 0x50, 0xde, 0x87, 0x59, 0x5e, 0x54, 0x9c, 0x4d, 0x4d, 0xfa, 0x6b, 0xdf, 0x48, - 0x9d, 0xf6, 0xf7, 0xdb, 0x6e, 0x3f, 0x7a, 0x5a, 0xcf, 0x3d, 0x7e, 0x5a, 0xcf, 0x7d, 0xf9, 0xb4, - 0x9e, 0xfb, 0xe4, 0x59, 0xfd, 0xc4, 0xe3, 0x67, 0xf5, 0x13, 0x7f, 0x7f, 0x56, 0x3f, 0xf1, 0x61, - 0x4b, 0x37, 0xdc, 0x7b, 0xa3, 0x1e, 0xad, 0xc6, 0x5b, 0x3d, 0xb3, 0x77, 0xc9, 0x6b, 0xa8, 0xb4, - 0xa4, 0x7f, 0x5a, 0x7d, 0x18, 0xfc, 0x6b, 0xef, 0xd8, 0xc6, 0xa4, 0x37, 0xeb, 0xb5, 0xa5, 0xbf, - 0xf9, 0xff, 0x00, 0x00, 0x00, 0xff, 0xff, 0x16, 0x7b, 0x82, 0x4d, 0xfd, 0x2b, 0x00, 0x00, + // 2339 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xcc, 0x5a, 0x4d, 0x6c, 0x1b, 0xc7, + 0x15, 0x36, 0x45, 0x4a, 0x32, 0x1f, 0x29, 0xc9, 0x5e, 0x2b, 0x11, 0x43, 0xd5, 0x14, 0xcd, 0xb4, + 0x89, 0xfc, 0x27, 0x3a, 0xaa, 0x6b, 0xa4, 0x42, 0x51, 0x54, 0x52, 0x1a, 0x97, 0x48, 0x18, 0x2b, + 0x2b, 0xd9, 0x05, 0x02, 0x14, 0xcc, 0x90, 0x3b, 0x5e, 0x6d, 0x43, 0xee, 0x6e, 0x77, 0x96, 0xb2, + 0x99, 0x02, 0x3d, 0xf4, 0xd2, 0x53, 0x81, 0x00, 0xe9, 0xa1, 0x87, 0xa2, 0x87, 0x9e, 0x7a, 0x28, + 0x8a, 0xa2, 0xc8, 0xb9, 0xe8, 0x25, 0x80, 0xd1, 0x93, 0x91, 0x53, 0xd1, 0x83, 0x1b, 0xd8, 0x05, + 0x8a, 0x5e, 0x7b, 0xe9, 0xb5, 0x98, 0x9d, 0xd9, 0xd9, 0xe1, 0xfe, 0x52, 0xb2, 0x14, 0xeb, 0x24, + 0xed, 0xcc, 0x37, 0x33, 0xef, 0x7f, 0xde, 0x7b, 0x43, 0x58, 0xd6, 0x1d, 0x8c, 0xcd, 0xfb, 0x06, + 0xee, 0x6b, 0x4d, 0xe2, 0x5a, 0x0e, 0xd2, 0x71, 0xd3, 0x7d, 0xb8, 0x66, 0x3b, 0x96, 0x6b, 0x29, + 0x4a, 0x30, 0xb9, 0xc6, 0x27, 0xab, 0x4b, 0x3d, 0x8b, 0x0c, 0x2c, 0xd2, 0x1c, 0x10, 0xbd, 0x79, + 0xf0, 0x06, 0xfd, 0xc3, 0xc0, 0xd5, 0x57, 0xd8, 0x44, 0xc7, 0xfb, 0x6a, 0xb2, 0x0f, 0x3e, 0xb5, + 0xa8, 0x5b, 0xba, 0xc5, 0xc6, 0xe9, 0x7f, 0x7c, 0x74, 0x45, 0xb7, 0x2c, 0xbd, 0x8f, 0x9b, 0xde, + 0x57, 0x77, 0x78, 0xbf, 0xe9, 0x1a, 0x03, 0x4c, 0x5c, 0x34, 0xb0, 0x39, 0xa0, 0x2e, 0xd1, 0xd6, + 0xb3, 0x06, 0x03, 0xcb, 0x6c, 0x22, 0xdb, 0x76, 0xac, 0x03, 0xd4, 0x17, 0x5b, 0x44, 0x10, 0x0f, + 0x1c, 0x64, 0xdb, 0xd8, 0xe1, 0x80, 0x86, 0x04, 0xb0, 0xb1, 0x33, 0x30, 0x08, 0x31, 0x2c, 0x93, + 0x63, 0x63, 0x36, 0xf1, 0x45, 0x90, 0x09, 0xb0, 0x91, 0x83, 0x06, 0x3e, 0x7f, 0xb5, 0x38, 0x21, + 0x8e, 0x6c, 0xcc, 0xe7, 0x1b, 0x7f, 0xc9, 0xc3, 0x42, 0x9b, 0xe8, 0xdb, 0x0e, 0x46, 0x2e, 0xde, + 0x1a, 0xf6, 0x3e, 0xc2, 0xae, 0xb2, 0x0e, 0xb3, 0x3d, 0xfa, 0x6d, 0x39, 0x95, 0x5c, 0x3d, 0xb7, + 0x5a, 0xdc, 0xaa, 0x7c, 0xf1, 0xd9, 0xf5, 0x45, 0x2e, 0xb6, 0x4d, 0x4d, 0x73, 0x30, 0x21, 0xbb, + 0xae, 0x63, 0x98, 0xba, 0xea, 0x03, 0x95, 0x15, 0x28, 0x75, 0xbd, 0xd5, 0x1d, 0x13, 0x0d, 0x70, + 0x65, 0x8a, 0xae, 0x53, 0x81, 0x0d, 0xbd, 0x87, 0x06, 0x58, 0xd9, 0x02, 0x38, 0x30, 0x88, 0xd1, + 0x35, 0xfa, 0x86, 0x3b, 0xaa, 0xe4, 0xeb, 0xb9, 0xd5, 0xf9, 0xf5, 0xc6, 0x5a, 0x54, 0x8b, 0x6b, + 0xf7, 0x04, 0x6a, 0x6f, 0x64, 0x63, 0x55, 0x5a, 0xa5, 0x6c, 0xc2, 0x82, 0x8d, 0x46, 0x03, 0x6c, + 0xba, 0x1d, 0xc4, 0xc8, 0xa8, 0x14, 0x32, 0x08, 0x9c, 0xe7, 0x0b, 0xf8, 0xa8, 0xf2, 0x36, 0x28, + 0xb6, 0x63, 0x0c, 0x90, 0x33, 0xea, 0x10, 0x5b, 0xec, 0x32, 0x9d, 0xb1, 0xcb, 0x39, 0xbe, 0x66, + 0xd7, 0xf6, 0xf7, 0x79, 0x07, 0x2e, 0xc8, 0xfb, 0x70, 0xdd, 0x57, 0x66, 0xea, 0xb9, 0xd5, 0xd2, + 0xfa, 0xb2, 0xcc, 0x17, 0xd7, 0xd7, 0x26, 0x87, 0xa8, 0xe7, 0x83, 0xbd, 0xf8, 0x90, 0x72, 0x0d, + 0x94, 0xde, 0x3e, 0x72, 0x74, 0xac, 0x75, 0x1c, 0x8c, 0xb4, 0xce, 0x4f, 0x86, 0x96, 0x8b, 0x2a, + 0xb3, 0xf5, 0xdc, 0x6a, 0x41, 0x3d, 0xc7, 0x67, 0x54, 0x8c, 0xb4, 0xf7, 0xe9, 0xf8, 0x46, 0xf9, + 0xe7, 0xff, 0xfe, 0xd3, 0x15, 0x5f, 0xf0, 0x8d, 0x5d, 0x58, 0x0a, 0xe9, 0x4f, 0xc5, 0xc4, 0xb6, + 0x4c, 0x82, 0x95, 0x37, 0xa1, 0xc8, 0x75, 0x62, 0x68, 0x5c, 0x93, 0xcb, 0x8f, 0x9e, 0xac, 0x9c, + 0xf9, 0xc7, 0x93, 0x95, 0xc2, 0x5d, 0xc3, 0x74, 0xbf, 0xf8, 0xec, 0x7a, 0x89, 0xb3, 0x4b, 0x3f, + 0xd5, 0xb3, 0x0c, 0xdd, 0xd2, 0x1a, 0x0f, 0x3c, 0xa3, 0x78, 0x0b, 0xf7, 0xb1, 0x30, 0x8a, 0x9b, + 0x70, 0xd6, 0xb2, 0xb1, 0x33, 0x91, 0x55, 0x08, 0x64, 0xa6, 0x59, 0x6c, 0xcc, 0x51, 0x66, 0x04, + 0xbe, 0xf1, 0x8a, 0xc7, 0x8d, 0x7c, 0xb0, 0xcf, 0x4d, 0xe3, 0x57, 0x39, 0x58, 0xa4, 0x73, 0x06, + 0xe9, 0x59, 0xa6, 0x6b, 0x98, 0xc3, 0x93, 0xa5, 0x4c, 0x79, 0x19, 0x66, 0x1c, 0x8c, 0x88, 0x65, + 0x7a, 0xc6, 0x5a, 0x54, 0xf9, 0x57, 0x98, 0xe2, 0x1a, 0x7c, 0x2d, 0x8e, 0x2a, 0x41, 0xf6, 0xbf, + 0x64, 0x07, 0xbb, 0xd3, 0xfd, 0x31, 0xee, 0x9d, 0x90, 0x83, 0xad, 0x40, 0xc9, 0xf2, 0xb6, 0x67, + 0x00, 0x46, 0x34, 0xb0, 0x21, 0x0f, 0x70, 0x09, 0xca, 0x36, 0x1a, 0xf5, 0x2d, 0xa4, 0x75, 0x88, + 0xf1, 0x31, 0xf6, 0x5c, 0xa7, 0xa0, 0x96, 0xf8, 0xd8, 0xae, 0xf1, 0x71, 0xd8, 0x49, 0xa7, 0x8f, + 0xe4, 0xa4, 0x97, 0xa0, 0x4c, 0x45, 0x41, 0x9d, 0x94, 0x06, 0x1a, 0xcf, 0x25, 0x8a, 0x6a, 0x89, + 0x8f, 0x51, 0x78, 0x92, 0xf3, 0xcc, 0x1e, 0xc9, 0x79, 0x2e, 0xc3, 0x39, 0xfc, 0xd0, 0xa6, 0x7c, + 0xf7, 0xf6, 0x71, 0xef, 0x23, 0x32, 0x1c, 0x90, 0xca, 0xd9, 0x7a, 0x7e, 0xb5, 0xac, 0x2e, 0xb0, + 0xf1, 0x6d, 0x7f, 0x58, 0x79, 0x07, 0x16, 0x1c, 0xac, 0x0d, 0x4d, 0x0d, 0x99, 0xbd, 0x11, 0xa3, + 0xae, 0x98, 0xcc, 0xa3, 0x2a, 0xa0, 0x1e, 0x8f, 0xf3, 0xce, 0xd8, 0x77, 0x8a, 0x1b, 0x32, 0x2d, + 0xcb, 0x6e, 0xc8, 0x15, 0x33, 0xa1, 0x1b, 0x32, 0x74, 0x4b, 0x6b, 0x7c, 0x3a, 0x05, 0x73, 0x6d, + 0xa2, 0xef, 0x62, 0xd4, 0xe7, 0x96, 0x73, 0x42, 0xb6, 0x9e, 0x69, 0x3b, 0xdf, 0x82, 0x25, 0xbd, + 0x6f, 0x75, 0x51, 0xbf, 0x73, 0x60, 0x38, 0xee, 0x10, 0xf5, 0x3b, 0xba, 0x63, 0x0d, 0x6d, 0xca, + 0x11, 0x35, 0xa3, 0x39, 0x75, 0x91, 0x4d, 0xdf, 0x63, 0xb3, 0xb7, 0xe9, 0x64, 0x4b, 0x53, 0xde, + 0x82, 0x15, 0x82, 0x7b, 0x96, 0xa9, 0x71, 0x55, 0x77, 0xfb, 0xa4, 0x83, 0x74, 0xbd, 0x43, 0x0c, + 0xdd, 0x44, 0xee, 0xd0, 0xc1, 0x2c, 0xf4, 0x96, 0xd5, 0x65, 0x01, 0xdb, 0xb5, 0xb7, 0xfa, 0x64, + 0x53, 0xd7, 0x77, 0x05, 0x24, 0xec, 0x71, 0x4b, 0xf0, 0xd2, 0x98, 0x50, 0x84, 0xab, 0xfd, 0x26, + 0x07, 0x17, 0xda, 0x44, 0x57, 0x31, 0x1d, 0x7d, 0xf1, 0x42, 0x0b, 0xd3, 0x7d, 0x11, 0x96, 0x63, + 0xa8, 0x13, 0xd4, 0xff, 0x91, 0x29, 0x7b, 0xdb, 0xb2, 0x47, 0x9c, 0xee, 0x6a, 0x98, 0x6e, 0x89, + 0xba, 0xd7, 0x60, 0x81, 0x38, 0xbd, 0x4e, 0x94, 0xc2, 0x39, 0xe2, 0xf4, 0xb6, 0x02, 0x22, 0x5f, + 0x83, 0x05, 0x8d, 0xb8, 0x63, 0x38, 0x46, 0xe8, 0x9c, 0x46, 0xdc, 0x71, 0x1c, 0xdd, 0x4f, 0x66, + 0xa8, 0x20, 0xf6, 0xbb, 0x13, 0x18, 0x02, 0xdf, 0x4f, 0xc6, 0x4d, 0x8b, 0xfd, 0x24, 0x9c, 0x0a, + 0x4b, 0x14, 0x77, 0xc4, 0x3b, 0x72, 0x51, 0x23, 0xee, 0x4e, 0xd8, 0xd3, 0xc3, 0xf2, 0x7c, 0xdf, + 0xb3, 0x83, 0x40, 0x5e, 0xc7, 0xe0, 0x70, 0xbf, 0xce, 0x49, 0x17, 0xdf, 0xe9, 0xb2, 0x1e, 0xf9, + 0x66, 0x0c, 0x59, 0xce, 0xe3, 0xc8, 0xcd, 0x78, 0xb2, 0xa4, 0x6f, 0x00, 0x08, 0xf9, 0x92, 0x4a, + 0xbe, 0x9e, 0xcf, 0x12, 0x70, 0xd1, 0x17, 0x30, 0x91, 0x6e, 0xd5, 0xc2, 0xa1, 0x6e, 0xd5, 0x10, + 0xcb, 0xbf, 0xc8, 0xc1, 0xbc, 0x88, 0xb7, 0x5e, 0xb4, 0x39, 0xd2, 0xa5, 0x7a, 0x11, 0x80, 0xc5, + 0x31, 0x89, 0xd3, 0xa2, 0x37, 0xe2, 0x31, 0xba, 0x08, 0xd3, 0xf8, 0xa1, 0xeb, 0x20, 0xae, 0x1d, + 0xf6, 0x11, 0x0a, 0xfc, 0x3b, 0xf0, 0xf2, 0x38, 0x21, 0xc2, 0x0c, 0x6f, 0xc1, 0x59, 0x11, 0x24, + 0x27, 0xb0, 0xc2, 0x59, 0x9d, 0x05, 0xcd, 0x86, 0xeb, 0xb1, 0xc6, 0x34, 0xcd, 0x58, 0x3b, 0x9a, + 0x1e, 0xd3, 0x99, 0x0b, 0x4b, 0xbc, 0xe2, 0xf1, 0x21, 0x9d, 0x2a, 0x64, 0xfd, 0xf9, 0x94, 0x67, + 0x5e, 0x77, 0x6d, 0xcd, 0x67, 0xb1, 0x8d, 0x07, 0x5d, 0xec, 0x1c, 0x91, 0xac, 0x6f, 0x43, 0x89, + 0x91, 0x65, 0x3d, 0x30, 0xb1, 0xc3, 0xe8, 0x4a, 0x59, 0xc8, 0x78, 0xb8, 0x43, 0xb1, 0x21, 0x8e, + 0xf2, 0x61, 0x75, 0xfd, 0x00, 0xe6, 0x07, 0x1e, 0x65, 0xa4, 0xe3, 0x5a, 0x34, 0xb7, 0xaf, 0x14, + 0xea, 0xf9, 0xd5, 0x52, 0xfc, 0xed, 0xde, 0x26, 0xba, 0xc4, 0x8b, 0x5a, 0xe6, 0x2b, 0xf7, 0xac, + 0x4d, 0x8d, 0xde, 0x5b, 0xe7, 0xa5, 0x9d, 0x34, 0x4f, 0x28, 0x95, 0x69, 0xcf, 0xd0, 0x93, 0x29, + 0x5d, 0x10, 0x5b, 0x30, 0x29, 0xc6, 0xdb, 0x74, 0x44, 0x8c, 0x42, 0xce, 0xff, 0xf5, 0xaf, 0x2f, + 0x13, 0x3f, 0x38, 0xcd, 0x62, 0xfe, 0x0e, 0xcc, 0x72, 0x4e, 0x0f, 0x21, 0x5f, 0x7f, 0x49, 0xd2, + 0xa5, 0x38, 0xce, 0xb3, 0x90, 0xc9, 0x2f, 0x99, 0x9f, 0xcb, 0xe2, 0xb8, 0x01, 0x33, 0x6c, 0xaf, + 0x4c, 0x61, 0x70, 0x9c, 0xd2, 0x02, 0x9a, 0x09, 0x1a, 0x0e, 0x72, 0x0d, 0xcb, 0xec, 0xd0, 0x52, + 0xde, 0x13, 0x47, 0x69, 0xbd, 0xba, 0xc6, 0xea, 0xfc, 0x35, 0xbf, 0xce, 0x5f, 0xdb, 0xf3, 0xeb, + 0xfc, 0xad, 0xc2, 0x27, 0xff, 0x5c, 0xc9, 0xa9, 0xf3, 0xc1, 0x42, 0x3a, 0xd5, 0xf8, 0x1b, 0xd3, + 0x91, 0xa4, 0xc4, 0xef, 0xd3, 0x98, 0x70, 0xea, 0x74, 0x24, 0x22, 0x57, 0x41, 0x8e, 0x5c, 0xb1, + 0xb2, 0x0f, 0xf3, 0x22, 0x64, 0xff, 0xfb, 0x9c, 0x97, 0x90, 0xbc, 0x8b, 0xd1, 0x01, 0x8f, 0x43, + 0x87, 0x17, 0xfd, 0x89, 0x71, 0xb8, 0x51, 0xa2, 0xbc, 0xf0, 0x63, 0x78, 0x4a, 0x18, 0x50, 0x1a, + 0x5c, 0x8d, 0x53, 0x92, 0xbe, 0x58, 0xba, 0xd3, 0x32, 0xef, 0x5b, 0x27, 0x75, 0x33, 0xbe, 0x1b, + 0x5b, 0xc8, 0xe7, 0x3d, 0x63, 0xab, 0xc5, 0x24, 0x3c, 0x77, 0x5b, 0xa6, 0x7b, 0xeb, 0xe6, 0x3d, + 0xd4, 0x1f, 0xe2, 0x68, 0xa1, 0x7f, 0x1c, 0xed, 0x8e, 0x63, 0x28, 0xe8, 0xd2, 0xac, 0x26, 0x90, + 0xa8, 0x90, 0xf8, 0x6f, 0x73, 0x2c, 0x2d, 0x43, 0x66, 0x0f, 0xf7, 0xc7, 0xaa, 0xde, 0x53, 0x92, + 0x48, 0xad, 0xc0, 0xc5, 0x58, 0xfa, 0x04, 0x07, 0x7f, 0x9d, 0x82, 0x72, 0x9b, 0xe8, 0x3b, 0x43, + 0x77, 0xc7, 0xea, 0x1b, 0xbd, 0xd1, 0x11, 0x09, 0xff, 0x2e, 0x14, 0x6d, 0xc7, 0x30, 0x7b, 0x86, + 0x8d, 0xfa, 0x3c, 0xde, 0xd4, 0x65, 0xc9, 0x07, 0x3d, 0xbf, 0xb5, 0x1d, 0x1f, 0xa7, 0x06, 0x4b, + 0x68, 0xf6, 0xef, 0x60, 0x62, 0x0d, 0x9d, 0x9e, 0xcf, 0x94, 0xf8, 0x56, 0xbe, 0x07, 0x40, 0x5c, + 0xe4, 0x62, 0xaa, 0x6a, 0x3f, 0x0a, 0x27, 0x6d, 0xbe, 0xeb, 0x03, 0x55, 0x69, 0x8d, 0xd2, 0x8e, + 0xc6, 0xc4, 0xd9, 0xcc, 0x98, 0x78, 0xf6, 0xd1, 0x93, 0x95, 0x5c, 0x5c, 0x5c, 0x0c, 0xcb, 0x78, + 0xc7, 0xcb, 0x18, 0x84, 0x04, 0xe5, 0xcc, 0xdc, 0xf6, 0x46, 0xfc, 0xc2, 0x31, 0x2b, 0x33, 0x67, + 0xe8, 0x96, 0xd6, 0xf8, 0xb3, 0x9c, 0x99, 0x9f, 0x56, 0xbd, 0x84, 0xc5, 0xb0, 0x2b, 0xe5, 0xec, + 0xc7, 0x26, 0x89, 0xff, 0x30, 0x49, 0xb4, 0x0d, 0xc7, 0xb1, 0x9c, 0xe7, 0x72, 0xad, 0xab, 0x30, + 0x65, 0x68, 0x3c, 0x26, 0xa7, 0x1e, 0x3e, 0x65, 0x68, 0x61, 0x3f, 0xcc, 0x67, 0xf9, 0x61, 0x21, + 0xd2, 0x43, 0x68, 0xc0, 0x9c, 0x86, 0x89, 0xdb, 0xe9, 0xed, 0x23, 0xc3, 0xa4, 0x6c, 0x4f, 0x7b, + 0x9d, 0x83, 0x12, 0x1d, 0xdc, 0xa6, 0x63, 0x2d, 0x2d, 0xbe, 0xe8, 0x91, 0x59, 0x15, 0x5e, 0xfa, + 0x48, 0x16, 0xc3, 0x73, 0x75, 0x02, 0x8f, 0x57, 0x0c, 0x11, 0x2e, 0x0b, 0x99, 0x5c, 0xca, 0x11, + 0x95, 0x71, 0x39, 0x16, 0x51, 0xbf, 0x94, 0x73, 0x8e, 0x60, 0xfe, 0x85, 0xf5, 0x82, 0xc6, 0xef, + 0x94, 0xc2, 0x71, 0xdc, 0x29, 0xb2, 0x9e, 0x43, 0xfd, 0xd3, 0xcf, 0x59, 0x06, 0xc8, 0xe6, 0x9e, + 0xa7, 0x1c, 0x3a, 0x94, 0x9a, 0x33, 0xd2, 0xab, 0x23, 0x28, 0x99, 0xd5, 0x57, 0x12, 0x1b, 0x82, + 0xc3, 0x4f, 0x99, 0x25, 0x33, 0xfd, 0xee, 0x78, 0x8f, 0x37, 0xca, 0x2d, 0x28, 0xa2, 0xa1, 0xbb, + 0x6f, 0x39, 0x54, 0xc4, 0x59, 0x3c, 0x06, 0x50, 0xe5, 0x4d, 0x98, 0x61, 0xcf, 0x3f, 0x41, 0x86, + 0x1b, 0xd5, 0x0b, 0x3b, 0x63, 0xab, 0x40, 0x85, 0xa0, 0x72, 0xfc, 0xc6, 0x3c, 0x25, 0x37, 0xd8, + 0x89, 0xab, 0x44, 0x26, 0x4a, 0x10, 0xfc, 0xbf, 0x1c, 0x9c, 0xf3, 0x78, 0xd1, 0x1d, 0x74, 0xc2, + 0xef, 0x03, 0xca, 0x65, 0x38, 0x1f, 0xea, 0x23, 0x19, 0x9a, 0xa7, 0x8f, 0x39, 0x75, 0x5e, 0x6e, + 0x12, 0xb5, 0xb4, 0xb4, 0x96, 0x53, 0xe1, 0x98, 0x5a, 0x4e, 0x55, 0xa8, 0x84, 0x19, 0x0f, 0x5a, + 0x12, 0x53, 0xde, 0xe4, 0xb6, 0x35, 0xb0, 0x69, 0xbc, 0xff, 0x4a, 0xa4, 0xb3, 0x05, 0xb5, 0xd8, + 0xb6, 0xec, 0x7d, 0x34, 0x30, 0xfa, 0xa3, 0x40, 0x54, 0xd5, 0x68, 0x77, 0xf6, 0x6d, 0x0f, 0xd2, + 0xd2, 0x94, 0x4d, 0x28, 0xeb, 0x07, 0x7a, 0x67, 0x80, 0x6c, 0xdb, 0x30, 0x75, 0x3f, 0x9b, 0xa8, + 0xc5, 0x19, 0xce, 0xed, 0x7b, 0xb7, 0xdb, 0x0c, 0xa6, 0x96, 0xf4, 0x03, 0x9d, 0xff, 0x1f, 0xa9, + 0xe9, 0x1a, 0x50, 0x4f, 0x12, 0x84, 0x90, 0xd6, 0xcf, 0x58, 0xdb, 0xc4, 0xcb, 0xc2, 0xbe, 0x0a, + 0x51, 0x85, 0x69, 0xac, 0x43, 0x2d, 0xfe, 0xfc, 0x10, 0x85, 0xac, 0x5d, 0xfb, 0xe2, 0x28, 0x8c, + 0x39, 0x5f, 0x50, 0xf8, 0xbb, 0x1c, 0x14, 0xbd, 0x4e, 0xb8, 0xbb, 0x87, 0xf4, 0x23, 0x52, 0x25, + 0x67, 0x33, 0x53, 0xa1, 0x2c, 0xf3, 0x26, 0x14, 0x5c, 0xa4, 0x13, 0x5e, 0xbf, 0xd4, 0xe3, 0xdf, + 0x48, 0x18, 0x76, 0x0f, 0xe9, 0x44, 0xf5, 0xd0, 0x61, 0x36, 0x2e, 0xc0, 0x79, 0x41, 0xa3, 0x4f, + 0xf9, 0xfa, 0x1f, 0x96, 0x20, 0xdf, 0x26, 0xba, 0xf2, 0x21, 0x94, 0xc7, 0x5e, 0x9e, 0x5f, 0x4d, + 0xe8, 0x24, 0xc8, 0xa0, 0xea, 0xd5, 0x09, 0x40, 0x22, 0xcf, 0xfa, 0x10, 0xca, 0x63, 0xcf, 0x98, + 0x49, 0x27, 0xc8, 0xa0, 0xc4, 0x13, 0xe2, 0xde, 0x25, 0x95, 0x3e, 0x9c, 0x8b, 0x94, 0x97, 0xaf, + 0x27, 0x6c, 0x10, 0x06, 0x56, 0x9b, 0x13, 0x02, 0x65, 0x7e, 0xc6, 0x52, 0x9e, 0x24, 0x7e, 0x64, + 0x50, 0x22, 0x3f, 0x71, 0x17, 0xae, 0x62, 0xc1, 0xf9, 0xe8, 0x1b, 0xeb, 0x6a, 0x92, 0x44, 0xc2, + 0xc8, 0xea, 0x8d, 0x49, 0x91, 0x32, 0x4b, 0x63, 0x75, 0x62, 0xba, 0x11, 0x30, 0x50, 0x86, 0x11, + 0x84, 0x1e, 0x04, 0x3e, 0x00, 0x90, 0x9e, 0x83, 0x2e, 0x25, 0x2c, 0x0d, 0x20, 0xd5, 0xcb, 0x99, + 0x10, 0x59, 0xfd, 0x91, 0x07, 0xa7, 0x24, 0xf5, 0x87, 0x81, 0x89, 0xea, 0x4f, 0x7a, 0x24, 0xa2, + 0x9c, 0x48, 0x0f, 0x44, 0x49, 0x9c, 0x04, 0x90, 0x44, 0x4e, 0x62, 0x9e, 0x4d, 0x84, 0xab, 0x64, + 0xe8, 0x41, 0x06, 0x65, 0xb8, 0x4a, 0xe8, 0x04, 0x07, 0x94, 0x98, 0xbe, 0x40, 0x22, 0x89, 0x11, + 0x68, 0xf5, 0x8d, 0x89, 0xa1, 0x51, 0x87, 0xc9, 0xe0, 0x4a, 0x06, 0x65, 0x38, 0x4c, 0xe8, 0x84, + 0x71, 0x87, 0xe1, 0xc7, 0x4c, 0xe0, 0x30, 0xfc, 0xac, 0x1b, 0x93, 0x22, 0xa3, 0x11, 0x47, 0x2a, + 0x06, 0xd2, 0x23, 0x4e, 0x00, 0xcc, 0x88, 0x38, 0xd1, 0xf2, 0x43, 0xf9, 0x11, 0x94, 0xe4, 0x67, + 0x96, 0x46, 0xaa, 0xe3, 0x79, 0x98, 0xea, 0x95, 0x6c, 0x8c, 0xbc, 0xbd, 0xfc, 0xd4, 0xd1, 0x48, + 0xb5, 0xa7, 0xf4, 0xed, 0x63, 0x1e, 0x2f, 0xa8, 0x72, 0xa2, 0x0f, 0x17, 0xab, 0xa9, 0x32, 0x90, + 0x90, 0x89, 0xca, 0x49, 0xec, 0xe2, 0x07, 0xca, 0x91, 0xba, 0xc3, 0xaf, 0x67, 0xef, 0xe2, 0x01, + 0x33, 0x94, 0x13, 0xed, 0xd1, 0xd2, 0x78, 0x20, 0xf5, 0x67, 0x93, 0xe2, 0x41, 0x00, 0x49, 0x8c, + 0x07, 0xd1, 0xde, 0x29, 0xd5, 0x8c, 0x5c, 0x75, 0x35, 0x52, 0x7d, 0x22, 0x5d, 0x33, 0x31, 0x65, + 0x0f, 0x0b, 0x9c, 0xa1, 0xa7, 0x8e, 0xe4, 0xc0, 0x39, 0x0e, 0x4c, 0x09, 0x9c, 0xf1, 0x0f, 0x09, + 0xca, 0x0f, 0xa1, 0x18, 0x34, 0xf4, 0xea, 0x09, 0xab, 0x05, 0xa2, 0xba, 0x9a, 0x85, 0x88, 0x46, + 0x4d, 0xbe, 0x77, 0x7a, 0xd4, 0xe4, 0xdb, 0x5f, 0x9d, 0x00, 0x24, 0x9f, 0x30, 0x56, 0x1b, 0xbe, + 0x9a, 0x6a, 0x24, 0x0c, 0x94, 0x78, 0x42, 0x5c, 0x41, 0xa7, 0xf4, 0x60, 0x6e, 0x3c, 0xc3, 0xfd, + 0x7a, 0xa2, 0x1e, 0x25, 0x54, 0xf5, 0xda, 0x24, 0x28, 0x71, 0xc8, 0x4f, 0xe1, 0xa5, 0xf8, 0xda, + 0xe8, 0x5a, 0xe2, 0x15, 0x15, 0x83, 0xae, 0xde, 0x3c, 0x0c, 0x5a, 0x1c, 0x3e, 0x84, 0x0b, 0x71, + 0xb5, 0xc6, 0x95, 0xd4, 0xfb, 0x64, 0xfc, 0xe0, 0xf5, 0xc9, 0xb1, 0xf2, 0xb1, 0x71, 0x05, 0xc4, + 0x95, 0xd4, 0x6b, 0x7f, 0xb2, 0x63, 0x53, 0x0a, 0x03, 0xe5, 0x3d, 0x98, 0xe1, 0x45, 0xc1, 0xc5, + 0xc4, 0x44, 0x86, 0x4e, 0x57, 0xbf, 0x91, 0x3a, 0xed, 0xef, 0xb7, 0xd5, 0x7a, 0xf4, 0xb4, 0x96, + 0x7b, 0xfc, 0xb4, 0x96, 0xfb, 0xf2, 0x69, 0x2d, 0xf7, 0xc9, 0xb3, 0xda, 0x99, 0xc7, 0xcf, 0x6a, + 0x67, 0xfe, 0xfe, 0xac, 0x76, 0xe6, 0x83, 0xa6, 0x6e, 0xb8, 0xfb, 0xc3, 0x2e, 0xad, 0xa6, 0x9b, + 0x5d, 0xb3, 0x7b, 0xdd, 0x6b, 0x88, 0x34, 0xa5, 0xdf, 0x9c, 0x3e, 0x1c, 0xff, 0xd5, 0x69, 0x77, + 0xc6, 0x6b, 0x2b, 0x7f, 0xf3, 0xff, 0x01, 0x00, 0x00, 0xff, 0xff, 0x12, 0xe3, 0x8e, 0x56, 0xdd, + 0x2b, 0x00, 0x00, } // Reference imports to suppress errors if they are not otherwise used. @@ -6748,24 +6746,17 @@ func (m *MsgSetTag) MarshalToSizedBuffer(dAtA []byte) (int, error) { _ = i var l int _ = l - if len(m.Tags) > 0 { - for k := range m.Tags { - v := m.Tags[k] - baseI := i - i -= len(v) - copy(dAtA[i:], v) - i = encodeVarintTx(dAtA, i, uint64(len(v))) - i-- - dAtA[i] = 0x12 - i -= len(k) - copy(dAtA[i:], k) - i = encodeVarintTx(dAtA, i, uint64(len(k))) - i-- - dAtA[i] = 0xa - i = encodeVarintTx(dAtA, i, uint64(baseI-i)) - i-- - dAtA[i] = 0x1a + if m.Tags != nil { + { + size, err := m.Tags.MarshalToSizedBuffer(dAtA[:i]) + if err != nil { + return 0, err + } + i -= size + i = encodeVarintTx(dAtA, i, uint64(size)) } + i-- + dAtA[i] = 0x1a } if len(m.Resource) > 0 { i -= len(m.Resource) @@ -7798,13 +7789,9 @@ func (m *MsgSetTag) Size() (n int) { if l > 0 { n += 1 + l + sovTx(uint64(l)) } - if len(m.Tags) > 0 { - for k, v := range m.Tags { - _ = k - _ = v - mapEntrySize := 1 + len(k) + sovTx(uint64(len(k))) + 1 + len(v) + sovTx(uint64(len(v))) - n += mapEntrySize + 1 + sovTx(uint64(mapEntrySize)) - } + if m.Tags != nil { + l = m.Tags.Size() + n += 1 + l + sovTx(uint64(l)) } return n } @@ -14473,102 +14460,11 @@ func (m *MsgSetTag) Unmarshal(dAtA []byte) error { return io.ErrUnexpectedEOF } if m.Tags == nil { - m.Tags = make(map[string]string) - } - var mapkey string - var mapvalue string - for iNdEx < postIndex { - entryPreIndex := iNdEx - var wire uint64 - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowTx - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := dAtA[iNdEx] - iNdEx++ - wire |= uint64(b&0x7F) << shift - if b < 0x80 { - break - } - } - fieldNum := int32(wire >> 3) - if fieldNum == 1 { - var stringLenmapkey uint64 - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowTx - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := dAtA[iNdEx] - iNdEx++ - stringLenmapkey |= uint64(b&0x7F) << shift - if b < 0x80 { - break - } - } - intStringLenmapkey := int(stringLenmapkey) - if intStringLenmapkey < 0 { - return ErrInvalidLengthTx - } - postStringIndexmapkey := iNdEx + intStringLenmapkey - if postStringIndexmapkey < 0 { - return ErrInvalidLengthTx - } - if postStringIndexmapkey > l { - return io.ErrUnexpectedEOF - } - mapkey = string(dAtA[iNdEx:postStringIndexmapkey]) - iNdEx = postStringIndexmapkey - } else if fieldNum == 2 { - var stringLenmapvalue uint64 - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowTx - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := dAtA[iNdEx] - iNdEx++ - stringLenmapvalue |= uint64(b&0x7F) << shift - if b < 0x80 { - break - } - } - intStringLenmapvalue := int(stringLenmapvalue) - if intStringLenmapvalue < 0 { - return ErrInvalidLengthTx - } - postStringIndexmapvalue := iNdEx + intStringLenmapvalue - if postStringIndexmapvalue < 0 { - return ErrInvalidLengthTx - } - if postStringIndexmapvalue > l { - return io.ErrUnexpectedEOF - } - mapvalue = string(dAtA[iNdEx:postStringIndexmapvalue]) - iNdEx = postStringIndexmapvalue - } else { - iNdEx = entryPreIndex - skippy, err := skipTx(dAtA[iNdEx:]) - if err != nil { - return err - } - if (skippy < 0) || (iNdEx+skippy) < 0 { - return ErrInvalidLengthTx - } - if (iNdEx + skippy) > postIndex { - return io.ErrUnexpectedEOF - } - iNdEx += skippy - } - } - m.Tags[mapkey] = mapvalue + m.Tags = &ResourceTags{} + } + if err := m.Tags.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { + return err + } iNdEx = postIndex default: iNdEx = preIndex diff --git a/x/storage/types/types.pb.go b/x/storage/types/types.pb.go index ab312aaf3..6a3d2f76f 100644 --- a/x/storage/types/types.pb.go +++ b/x/storage/types/types.pb.go @@ -903,6 +903,103 @@ func (m *MigrationBucketInfo) GetDstSpId() uint32 { return 0 } +type ResourceTags struct { + // tags defines a list of tags the resource has + Tags []*ResourceTags_Tag `protobuf:"bytes,1,rep,name=tags,proto3" json:"tags,omitempty"` +} + +func (m *ResourceTags) Reset() { *m = ResourceTags{} } +func (m *ResourceTags) String() string { return proto.CompactTextString(m) } +func (*ResourceTags) ProtoMessage() {} +func (*ResourceTags) Descriptor() ([]byte, []int) { + return fileDescriptor_bf95fa2efdc74d97, []int{11} +} +func (m *ResourceTags) XXX_Unmarshal(b []byte) error { + return m.Unmarshal(b) +} +func (m *ResourceTags) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + if deterministic { + return xxx_messageInfo_ResourceTags.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 *ResourceTags) XXX_Merge(src proto.Message) { + xxx_messageInfo_ResourceTags.Merge(m, src) +} +func (m *ResourceTags) XXX_Size() int { + return m.Size() +} +func (m *ResourceTags) XXX_DiscardUnknown() { + xxx_messageInfo_ResourceTags.DiscardUnknown(m) +} + +var xxx_messageInfo_ResourceTags proto.InternalMessageInfo + +func (m *ResourceTags) GetTags() []*ResourceTags_Tag { + if m != nil { + return m.Tags + } + return nil +} + +type ResourceTags_Tag struct { + Key string `protobuf:"bytes,1,opt,name=key,proto3" json:"key,omitempty"` + Value string `protobuf:"bytes,2,opt,name=value,proto3" json:"value,omitempty"` +} + +func (m *ResourceTags_Tag) Reset() { *m = ResourceTags_Tag{} } +func (m *ResourceTags_Tag) String() string { return proto.CompactTextString(m) } +func (*ResourceTags_Tag) ProtoMessage() {} +func (*ResourceTags_Tag) Descriptor() ([]byte, []int) { + return fileDescriptor_bf95fa2efdc74d97, []int{11, 0} +} +func (m *ResourceTags_Tag) XXX_Unmarshal(b []byte) error { + return m.Unmarshal(b) +} +func (m *ResourceTags_Tag) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + if deterministic { + return xxx_messageInfo_ResourceTags_Tag.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 *ResourceTags_Tag) XXX_Merge(src proto.Message) { + xxx_messageInfo_ResourceTags_Tag.Merge(m, src) +} +func (m *ResourceTags_Tag) XXX_Size() int { + return m.Size() +} +func (m *ResourceTags_Tag) XXX_DiscardUnknown() { + xxx_messageInfo_ResourceTags_Tag.DiscardUnknown(m) +} + +var xxx_messageInfo_ResourceTags_Tag proto.InternalMessageInfo + +func (m *ResourceTags_Tag) GetKey() string { + if m != nil { + return m.Key + } + return "" +} + +func (m *ResourceTags_Tag) GetValue() string { + if m != nil { + return m.Value + } + return "" +} + func init() { proto.RegisterType((*BucketInfo)(nil), "greenfield.storage.BucketInfo") proto.RegisterType((*InternalBucketInfo)(nil), "greenfield.storage.InternalBucketInfo") @@ -915,85 +1012,90 @@ func init() { proto.RegisterType((*Ids)(nil), "greenfield.storage.Ids") proto.RegisterType((*DeleteInfo)(nil), "greenfield.storage.DeleteInfo") proto.RegisterType((*MigrationBucketInfo)(nil), "greenfield.storage.MigrationBucketInfo") + proto.RegisterType((*ResourceTags)(nil), "greenfield.storage.ResourceTags") + proto.RegisterType((*ResourceTags_Tag)(nil), "greenfield.storage.ResourceTags.Tag") } func init() { proto.RegisterFile("greenfield/storage/types.proto", fileDescriptor_bf95fa2efdc74d97) } var fileDescriptor_bf95fa2efdc74d97 = []byte{ - // 1166 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xb4, 0x57, 0xcf, 0x6e, 0xdb, 0xc6, - 0x13, 0x36, 0x4d, 0x29, 0x36, 0x47, 0x96, 0xf3, 0x0b, 0x23, 0xfc, 0xc2, 0x38, 0x88, 0xa4, 0x10, - 0x68, 0x21, 0xb4, 0xb5, 0x84, 0x38, 0x45, 0x50, 0x14, 0x01, 0x02, 0xab, 0x49, 0x03, 0xa1, 0x4d, - 0x8b, 0xd2, 0x4e, 0x0a, 0xf4, 0x42, 0x2c, 0xc9, 0x35, 0xbd, 0x0d, 0xc9, 0x55, 0x77, 0x97, 0x8e, - 0x95, 0xa7, 0xe8, 0x63, 0xf4, 0x5c, 0xe4, 0x05, 0x7a, 0x0b, 0x0a, 0x14, 0x08, 0x7c, 0x2a, 0x7a, - 0x30, 0x0a, 0xfb, 0x0d, 0x7a, 0xe8, 0xb9, 0xe0, 0xee, 0xca, 0xa1, 0x25, 0x39, 0xfe, 0x83, 0xe4, - 0xa6, 0x9d, 0xfd, 0x86, 0x3b, 0xf3, 0xcd, 0x37, 0xb3, 0x2b, 0x68, 0xc6, 0x0c, 0xe3, 0x6c, 0x8b, - 0xe0, 0x24, 0xea, 0x71, 0x41, 0x19, 0x8a, 0x71, 0x4f, 0x8c, 0x86, 0x98, 0x77, 0x87, 0x8c, 0x0a, - 0x6a, 0xdb, 0x6f, 0xf6, 0xbb, 0x7a, 0x7f, 0xa5, 0x19, 0x52, 0x9e, 0x52, 0xde, 0x0b, 0x10, 0xc7, - 0xbd, 0x9d, 0xdb, 0x01, 0x16, 0xe8, 0x76, 0x2f, 0xa4, 0x24, 0x53, 0x3e, 0x2b, 0xd7, 0xd5, 0xbe, - 0x2f, 0x57, 0x3d, 0xb5, 0xd0, 0x5b, 0x8d, 0x98, 0xc6, 0x54, 0xd9, 0x8b, 0x5f, 0xda, 0x7a, 0xab, - 0x14, 0xc4, 0x10, 0x8d, 0x52, 0x9c, 0x89, 0x1e, 0xcd, 0x85, 0xbf, 0x95, 0xd0, 0xe7, 0x1a, 0xf2, - 0xe1, 0x0c, 0x08, 0x17, 0x0c, 0xa3, 0xd4, 0x67, 0x38, 0xa4, 0x2c, 0xd2, 0xb8, 0xd6, 0x8c, 0x7c, - 0x42, 0x9a, 0xa6, 0x54, 0x07, 0xe7, 0xfe, 0x52, 0x01, 0xe8, 0xe7, 0xe1, 0x33, 0x2c, 0x06, 0xd9, - 0x16, 0xb5, 0xbb, 0x50, 0xa5, 0xcf, 0x33, 0xcc, 0x1c, 0xa3, 0x6d, 0x74, 0xac, 0xbe, 0xb3, 0xf7, - 0x72, 0xb5, 0xa1, 0x23, 0x5e, 0x8f, 0x22, 0x86, 0x39, 0xdf, 0x10, 0x8c, 0x64, 0xb1, 0xa7, 0x60, - 0x76, 0x0b, 0x6a, 0x81, 0xf4, 0xf6, 0x33, 0x94, 0x62, 0x67, 0xbe, 0xf0, 0xf2, 0x40, 0x99, 0xbe, - 0x41, 0x29, 0xb6, 0xfb, 0x00, 0x3b, 0x84, 0x93, 0x80, 0x24, 0x44, 0x8c, 0x1c, 0xb3, 0x6d, 0x74, - 0x96, 0xd7, 0xdc, 0xee, 0x34, 0x8b, 0xdd, 0xa7, 0x47, 0xa8, 0xcd, 0xd1, 0x10, 0x7b, 0x25, 0x2f, - 0xfb, 0x63, 0x98, 0x27, 0x91, 0x53, 0x91, 0x11, 0xdd, 0x78, 0xb5, 0xdf, 0x9a, 0xfb, 0x6b, 0xbf, - 0x55, 0x79, 0x42, 0x32, 0xb1, 0xf7, 0x72, 0xb5, 0xa6, 0xa3, 0x2b, 0x96, 0xde, 0x3c, 0x89, 0xec, - 0xfb, 0x50, 0xe3, 0x34, 0x67, 0x21, 0xf6, 0x8b, 0xba, 0x39, 0x55, 0x79, 0x62, 0x73, 0xd6, 0x89, - 0x1b, 0x12, 0xa6, 0x4e, 0xe3, 0x47, 0xbf, 0xed, 0x1b, 0x60, 0x85, 0x0c, 0x23, 0x81, 0x7d, 0x24, - 0x9c, 0x4b, 0x6d, 0xa3, 0x63, 0x7a, 0x8b, 0xca, 0xb0, 0x2e, 0xec, 0x75, 0xb8, 0xac, 0xe9, 0xf6, - 0x91, 0xe2, 0xc3, 0x59, 0x38, 0x85, 0xa9, 0x65, 0xed, 0xa0, 0xad, 0x76, 0x1f, 0x9a, 0x71, 0x42, - 0x03, 0x94, 0xf8, 0x3b, 0x84, 0x89, 0x1c, 0x25, 0x7e, 0xcc, 0x68, 0x3e, 0xf4, 0xb7, 0x50, 0x4a, - 0x92, 0x91, 0x4f, 0x22, 0x67, 0xb1, 0x6d, 0x74, 0xea, 0xde, 0x8a, 0x42, 0x3d, 0x55, 0xa0, 0x47, - 0x05, 0xe6, 0x4b, 0x09, 0x19, 0x44, 0xf6, 0x27, 0x60, 0x87, 0xdb, 0x88, 0xc5, 0x38, 0xf2, 0x19, - 0x46, 0x91, 0xff, 0x53, 0x4e, 0x05, 0x72, 0xac, 0xb6, 0xd1, 0xa9, 0x78, 0xff, 0xd3, 0x3b, 0x1e, - 0x46, 0xd1, 0x77, 0x85, 0xdd, 0x7e, 0x08, 0x75, 0x5d, 0x24, 0x2e, 0x90, 0xc8, 0xb9, 0x03, 0x92, - 0x94, 0xf6, 0x2c, 0x52, 0x94, 0x16, 0x36, 0x24, 0xce, 0x5b, 0x0a, 0x4a, 0x2b, 0xf7, 0x5f, 0x03, - 0xec, 0x41, 0x26, 0x30, 0xcb, 0x50, 0x52, 0x92, 0xcc, 0x4d, 0x80, 0x21, 0x23, 0x05, 0xdf, 0x24, - 0xc5, 0x52, 0x37, 0xa6, 0x67, 0x49, 0xcb, 0x26, 0x49, 0xb1, 0xfd, 0x11, 0x5c, 0x11, 0x54, 0xa0, - 0xc4, 0x57, 0x61, 0xf9, 0x9c, 0xbc, 0x50, 0x3a, 0xa9, 0x78, 0x97, 0xe5, 0xc6, 0x17, 0xd2, 0xbe, - 0x41, 0x5e, 0x60, 0xfb, 0x7b, 0x68, 0x24, 0x34, 0x9c, 0x64, 0x86, 0x3b, 0x66, 0xdb, 0xec, 0xd4, - 0xd6, 0x3e, 0x98, 0x15, 0xef, 0xd7, 0x05, 0xbe, 0xcc, 0x91, 0x67, 0x27, 0x93, 0x26, 0x6e, 0xdf, - 0x83, 0x1b, 0x19, 0xde, 0x15, 0xfe, 0x8c, 0xaf, 0xfb, 0x5a, 0x5a, 0x75, 0xef, 0x5a, 0x01, 0x99, - 0xfa, 0xde, 0x20, 0x72, 0x7f, 0xab, 0x02, 0x7c, 0x1b, 0xfc, 0x88, 0xc3, 0x8b, 0xf5, 0xc8, 0x1a, - 0x2c, 0x48, 0xfd, 0x50, 0xa6, 0xfa, 0xe3, 0x2d, 0x1e, 0x63, 0xe0, 0x64, 0x5f, 0x99, 0x53, 0x7d, - 0xd5, 0x82, 0x1a, 0x95, 0x21, 0x29, 0x40, 0x45, 0x01, 0x94, 0x49, 0x02, 0x54, 0xd3, 0x54, 0xcf, - 0xd6, 0x34, 0x77, 0xe0, 0xff, 0x27, 0x50, 0x73, 0x49, 0x52, 0x73, 0x35, 0x99, 0xa6, 0xc5, 0xbe, - 0x05, 0x4b, 0x43, 0x34, 0x4a, 0x28, 0x8a, 0x54, 0x51, 0x17, 0x64, 0x51, 0x6b, 0xda, 0x26, 0x0b, - 0x7a, 0xbc, 0xfb, 0x17, 0x2f, 0xd4, 0xfd, 0xb7, 0x60, 0x29, 0xa4, 0x99, 0x28, 0x5a, 0x4e, 0x76, - 0xb4, 0x25, 0x53, 0xad, 0x69, 0xdb, 0x74, 0xcb, 0xc2, 0x44, 0xcb, 0x3e, 0x84, 0xba, 0x66, 0x4a, - 0xab, 0xbf, 0x76, 0xb2, 0xfa, 0x55, 0x95, 0xc7, 0xea, 0xa7, 0xa5, 0x95, 0xfd, 0x15, 0x5c, 0x66, - 0x38, 0xca, 0xb3, 0x08, 0x65, 0xe1, 0x48, 0x45, 0xb2, 0x74, 0x72, 0x3e, 0xde, 0x11, 0x54, 0xe6, - 0xb3, 0xcc, 0x8e, 0xad, 0x27, 0x87, 0x54, 0xfd, 0xdc, 0x43, 0xaa, 0x07, 0x56, 0xb8, 0x8d, 0xc3, - 0x67, 0x3c, 0x4f, 0xb9, 0xb3, 0xdc, 0x36, 0x3b, 0x4b, 0xfd, 0x2b, 0xff, 0xec, 0xb7, 0xea, 0x82, - 0x21, 0x22, 0xf8, 0xe7, 0x2e, 0x4d, 0x89, 0x70, 0xbd, 0x37, 0x18, 0x77, 0xdf, 0x00, 0x4b, 0x15, - 0xee, 0x22, 0x12, 0xbe, 0x09, 0xa0, 0x14, 0x51, 0x9a, 0xf2, 0x96, 0xb4, 0x48, 0xad, 0x4d, 0xa4, - 0x63, 0x9e, 0x3b, 0x9d, 0x73, 0x4d, 0xf8, 0x06, 0x54, 0xf1, 0xae, 0x60, 0x48, 0x89, 0xdb, 0x53, - 0x0b, 0xf7, 0x1e, 0x54, 0x37, 0x8b, 0xe4, 0x8b, 0x58, 0x25, 0x0b, 0x2a, 0x16, 0x43, 0xc5, 0x2a, - 0x2d, 0xf2, 0xa8, 0x06, 0x54, 0x77, 0x50, 0x92, 0x8f, 0xb3, 0x50, 0x0b, 0xf7, 0x0f, 0x03, 0x96, - 0xd5, 0x4c, 0x7b, 0x8c, 0x05, 0x7a, 0x80, 0x04, 0xb2, 0xdb, 0x50, 0x8b, 0x30, 0x0f, 0x19, 0x19, - 0x0a, 0x42, 0x33, 0xfd, 0xa1, 0xb2, 0xa9, 0x50, 0x26, 0xde, 0x55, 0xf3, 0xd0, 0xcf, 0x59, 0xa2, - 0xbf, 0x58, 0x1b, 0xdb, 0x9e, 0xb0, 0xe4, 0xf4, 0x3e, 0x6e, 0x40, 0x95, 0xa4, 0x28, 0x1e, 0x77, - 0xb0, 0x5a, 0xd8, 0xf7, 0x01, 0x90, 0x10, 0x8c, 0x04, 0xb9, 0xc0, 0xdc, 0xa9, 0xca, 0xf1, 0x77, - 0x7d, 0x16, 0x9f, 0x32, 0xe5, 0x7e, 0xa5, 0xa0, 0xcc, 0x2b, 0xb9, 0xc8, 0x7c, 0x94, 0x98, 0xdf, - 0x79, 0x3e, 0xe5, 0xb1, 0x63, 0x4e, 0x8d, 0x9d, 0xf7, 0x94, 0xcf, 0xef, 0x06, 0xd4, 0xa5, 0x7c, - 0xdf, 0x6d, 0x3a, 0xc7, 0x75, 0x6d, 0x4e, 0xea, 0xfa, 0x3d, 0x25, 0xb3, 0x06, 0xe6, 0x20, 0xe2, - 0x5a, 0xf4, 0x46, 0xdb, 0x3c, 0x83, 0xe8, 0xdd, 0x5f, 0x0d, 0x80, 0x07, 0x38, 0xc1, 0x02, 0xcb, - 0x06, 0xbe, 0x0b, 0x5a, 0x44, 0x3e, 0x89, 0xb8, 0x4c, 0xbe, 0xb6, 0x76, 0x6d, 0x56, 0x0c, 0x83, - 0x88, 0x7b, 0x96, 0x82, 0x16, 0x67, 0xde, 0x05, 0x5d, 0x2c, 0xe9, 0x37, 0x7f, 0x8a, 0x9f, 0x82, - 0x16, 0x7e, 0x9f, 0x82, 0x35, 0xbe, 0x12, 0xb8, 0xe4, 0xe9, 0x2d, 0x6e, 0x8b, 0xb1, 0xba, 0x20, - 0xb8, 0xbb, 0x67, 0xc0, 0xd5, 0xc7, 0x24, 0x66, 0xa8, 0xa8, 0x47, 0xe9, 0xc9, 0xb0, 0x02, 0x16, - 0x67, 0xa1, 0xcf, 0xe5, 0x0d, 0x63, 0xc8, 0x1b, 0x66, 0x81, 0xb3, 0x70, 0xa3, 0xb8, 0x55, 0x06, - 0xe0, 0x16, 0x7b, 0xa7, 0x3c, 0x91, 0xe6, 0xa5, 0xd3, 0x4d, 0xce, 0xc2, 0x47, 0x27, 0xbf, 0x92, - 0x56, 0xc0, 0x8a, 0xb8, 0xd0, 0xc7, 0x98, 0xea, 0x98, 0x88, 0x0b, 0x79, 0xcc, 0x67, 0x60, 0x1d, - 0x11, 0x78, 0x96, 0xc1, 0xb3, 0x38, 0xe6, 0xb0, 0x3f, 0x78, 0x75, 0xd0, 0x34, 0x5e, 0x1f, 0x34, - 0x8d, 0xbf, 0x0f, 0x9a, 0xc6, 0xcf, 0x87, 0xcd, 0xb9, 0xd7, 0x87, 0xcd, 0xb9, 0x3f, 0x0f, 0x9b, - 0x73, 0x3f, 0xf4, 0x62, 0x22, 0xb6, 0xf3, 0xa0, 0x1b, 0xd2, 0xb4, 0x17, 0x64, 0xc1, 0x6a, 0xb8, - 0x8d, 0x48, 0xd6, 0x2b, 0xbd, 0xc0, 0x77, 0x8f, 0xff, 0xa7, 0x08, 0x2e, 0xc9, 0x37, 0xf8, 0x9d, - 0xff, 0x02, 0x00, 0x00, 0xff, 0xff, 0x44, 0x17, 0xd2, 0x5c, 0x76, 0x0c, 0x00, 0x00, + // 1213 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xb4, 0x57, 0x41, 0x6f, 0x13, 0x47, + 0x14, 0xce, 0x66, 0x6d, 0x92, 0x7d, 0x8e, 0x03, 0x0c, 0x51, 0x59, 0x82, 0x70, 0xcc, 0xaa, 0xad, + 0xac, 0xb6, 0xb1, 0x45, 0xa8, 0x10, 0xaa, 0x90, 0x10, 0x2e, 0x14, 0x59, 0x2d, 0xad, 0xba, 0x09, + 0x54, 0xea, 0x65, 0x35, 0xbb, 0x3b, 0xd9, 0x4c, 0xd9, 0xdd, 0x71, 0x67, 0x66, 0x43, 0xcc, 0xaf, + 0xe8, 0xcf, 0xe8, 0xb9, 0xe2, 0x0f, 0xf4, 0x86, 0x2a, 0x55, 0x42, 0x9c, 0xaa, 0x1e, 0xa2, 0x0a, + 0xfe, 0x41, 0x0f, 0x3d, 0x57, 0x3b, 0x33, 0x0e, 0x1b, 0xdb, 0x21, 0x10, 0xc1, 0xcd, 0xf3, 0xe6, + 0x7b, 0x3b, 0xef, 0x7d, 0xef, 0x7b, 0x6f, 0xc6, 0xd0, 0x4a, 0x38, 0x21, 0xf9, 0x36, 0x25, 0x69, + 0xdc, 0x13, 0x92, 0x71, 0x9c, 0x90, 0x9e, 0x1c, 0x0d, 0x89, 0xe8, 0x0e, 0x39, 0x93, 0x0c, 0xa1, + 0x57, 0xfb, 0x5d, 0xb3, 0xbf, 0xda, 0x8a, 0x98, 0xc8, 0x98, 0xe8, 0x85, 0x58, 0x90, 0xde, 0xee, + 0x95, 0x90, 0x48, 0x7c, 0xa5, 0x17, 0x31, 0x9a, 0x6b, 0x9f, 0xd5, 0x0b, 0x7a, 0x3f, 0x50, 0xab, + 0x9e, 0x5e, 0x98, 0xad, 0x95, 0x84, 0x25, 0x4c, 0xdb, 0xcb, 0x5f, 0xc6, 0x7a, 0xb9, 0x12, 0xc4, + 0x10, 0x8f, 0x32, 0x92, 0xcb, 0x1e, 0x2b, 0x64, 0xb0, 0x9d, 0xb2, 0x47, 0x06, 0xf2, 0xf1, 0x0c, + 0x88, 0x90, 0x9c, 0xe0, 0x2c, 0xe0, 0x24, 0x62, 0x3c, 0x36, 0xb8, 0xb5, 0x19, 0xf9, 0x44, 0x2c, + 0xcb, 0x98, 0x09, 0xce, 0xfb, 0xb5, 0x06, 0xd0, 0x2f, 0xa2, 0x87, 0x44, 0x0e, 0xf2, 0x6d, 0x86, + 0xba, 0x50, 0x67, 0x8f, 0x72, 0xc2, 0x5d, 0xab, 0x6d, 0x75, 0x9c, 0xbe, 0xfb, 0xfc, 0xc9, 0xfa, + 0x8a, 0x89, 0xf8, 0x56, 0x1c, 0x73, 0x22, 0xc4, 0xa6, 0xe4, 0x34, 0x4f, 0x7c, 0x0d, 0x43, 0x6b, + 0xd0, 0x08, 0x95, 0x77, 0x90, 0xe3, 0x8c, 0xb8, 0xf3, 0xa5, 0x97, 0x0f, 0xda, 0xf4, 0x2d, 0xce, + 0x08, 0xea, 0x03, 0xec, 0x52, 0x41, 0x43, 0x9a, 0x52, 0x39, 0x72, 0xed, 0xb6, 0xd5, 0x59, 0xde, + 0xf0, 0xba, 0xd3, 0x2c, 0x76, 0x1f, 0x1c, 0xa0, 0xb6, 0x46, 0x43, 0xe2, 0x57, 0xbc, 0xd0, 0xa7, + 0x30, 0x4f, 0x63, 0xb7, 0xa6, 0x22, 0xba, 0xf8, 0x74, 0x7f, 0x6d, 0xee, 0xef, 0xfd, 0xb5, 0xda, + 0x7d, 0x9a, 0xcb, 0xe7, 0x4f, 0xd6, 0x1b, 0x26, 0xba, 0x72, 0xe9, 0xcf, 0xd3, 0x18, 0xdd, 0x84, + 0x86, 0x60, 0x05, 0x8f, 0x48, 0x50, 0xd6, 0xcd, 0xad, 0xab, 0x13, 0x5b, 0xb3, 0x4e, 0xdc, 0x54, + 0x30, 0x7d, 0x9a, 0x38, 0xf8, 0x8d, 0x2e, 0x82, 0x13, 0x71, 0x82, 0x25, 0x09, 0xb0, 0x74, 0x4f, + 0xb5, 0xad, 0x8e, 0xed, 0x2f, 0x6a, 0xc3, 0x2d, 0x89, 0x6e, 0xc1, 0x69, 0x43, 0x77, 0x80, 0x35, + 0x1f, 0xee, 0xc2, 0x31, 0x4c, 0x2d, 0x1b, 0x07, 0x63, 0x45, 0x7d, 0x68, 0x25, 0x29, 0x0b, 0x71, + 0x1a, 0xec, 0x52, 0x2e, 0x0b, 0x9c, 0x06, 0x09, 0x67, 0xc5, 0x30, 0xd8, 0xc6, 0x19, 0x4d, 0x47, + 0x01, 0x8d, 0xdd, 0xc5, 0xb6, 0xd5, 0x69, 0xfa, 0xab, 0x1a, 0xf5, 0x40, 0x83, 0xee, 0x96, 0x98, + 0xaf, 0x14, 0x64, 0x10, 0xa3, 0xcf, 0x00, 0x45, 0x3b, 0x98, 0x27, 0x24, 0x0e, 0x38, 0xc1, 0x71, + 0xf0, 0x73, 0xc1, 0x24, 0x76, 0x9d, 0xb6, 0xd5, 0xa9, 0xf9, 0x67, 0xcc, 0x8e, 0x4f, 0x70, 0xfc, + 0x7d, 0x69, 0x47, 0x77, 0xa0, 0x69, 0x8a, 0x24, 0x24, 0x96, 0x85, 0x70, 0x41, 0x91, 0xd2, 0x9e, + 0x45, 0x8a, 0xd6, 0xc2, 0xa6, 0xc2, 0xf9, 0x4b, 0x61, 0x65, 0xe5, 0xfd, 0x67, 0x01, 0x1a, 0xe4, + 0x92, 0xf0, 0x1c, 0xa7, 0x15, 0xc9, 0x5c, 0x02, 0x18, 0x72, 0x5a, 0xf2, 0x4d, 0x33, 0xa2, 0x74, + 0x63, 0xfb, 0x8e, 0xb2, 0x6c, 0xd1, 0x8c, 0xa0, 0x4f, 0xe0, 0xac, 0x64, 0x12, 0xa7, 0x81, 0x0e, + 0x2b, 0x10, 0xf4, 0xb1, 0xd6, 0x49, 0xcd, 0x3f, 0xad, 0x36, 0xbe, 0x54, 0xf6, 0x4d, 0xfa, 0x98, + 0xa0, 0x1f, 0x60, 0x25, 0x65, 0xd1, 0x24, 0x33, 0xc2, 0xb5, 0xdb, 0x76, 0xa7, 0xb1, 0xf1, 0xd1, + 0xac, 0x78, 0xbf, 0x29, 0xf1, 0x55, 0x8e, 0x7c, 0x94, 0x4e, 0x9a, 0x04, 0xba, 0x01, 0x17, 0x73, + 0xb2, 0x27, 0x83, 0x19, 0x5f, 0x0f, 0x8c, 0xb4, 0x9a, 0xfe, 0xf9, 0x12, 0x32, 0xf5, 0xbd, 0x41, + 0xec, 0xfd, 0x5e, 0x07, 0xf8, 0x2e, 0xfc, 0x89, 0x44, 0x27, 0xeb, 0x91, 0x0d, 0x58, 0x50, 0xfa, + 0x61, 0x5c, 0xf7, 0xc7, 0x6b, 0x3c, 0xc6, 0xc0, 0xc9, 0xbe, 0xb2, 0xa7, 0xfa, 0x6a, 0x0d, 0x1a, + 0x4c, 0x85, 0xa4, 0x01, 0x35, 0x0d, 0xd0, 0x26, 0x05, 0xd0, 0x4d, 0x53, 0x7f, 0xb3, 0xa6, 0xb9, + 0x0a, 0x1f, 0x1c, 0x41, 0xcd, 0x29, 0x45, 0xcd, 0xb9, 0x74, 0x9a, 0x16, 0x74, 0x19, 0x96, 0x86, + 0x78, 0x94, 0x32, 0x1c, 0xeb, 0xa2, 0x2e, 0xa8, 0xa2, 0x36, 0x8c, 0x4d, 0x15, 0xf4, 0x70, 0xf7, + 0x2f, 0x9e, 0xa8, 0xfb, 0x2f, 0xc3, 0x52, 0xc4, 0x72, 0x59, 0xb6, 0x9c, 0xea, 0x68, 0x47, 0xa5, + 0xda, 0x30, 0xb6, 0xe9, 0x96, 0x85, 0x89, 0x96, 0xbd, 0x03, 0x4d, 0xc3, 0x94, 0x51, 0x7f, 0xe3, + 0x68, 0xf5, 0xeb, 0x2a, 0x8f, 0xd5, 0xcf, 0x2a, 0x2b, 0xf4, 0x35, 0x9c, 0xe6, 0x24, 0x2e, 0xf2, + 0x18, 0xe7, 0xd1, 0x48, 0x47, 0xb2, 0x74, 0x74, 0x3e, 0xfe, 0x01, 0x54, 0xe5, 0xb3, 0xcc, 0x0f, + 0xad, 0x27, 0x87, 0x54, 0xf3, 0xad, 0x87, 0x54, 0x0f, 0x9c, 0x68, 0x87, 0x44, 0x0f, 0x45, 0x91, + 0x09, 0x77, 0xb9, 0x6d, 0x77, 0x96, 0xfa, 0x67, 0xff, 0xdd, 0x5f, 0x6b, 0x4a, 0x8e, 0xa9, 0x14, + 0x5f, 0x78, 0x2c, 0xa3, 0xd2, 0xf3, 0x5f, 0x61, 0xbc, 0x7d, 0x0b, 0x1c, 0x5d, 0xb8, 0x93, 0x48, + 0xf8, 0x12, 0x80, 0x56, 0x44, 0x65, 0xca, 0x3b, 0xca, 0xa2, 0xb4, 0x36, 0x91, 0x8e, 0xfd, 0xd6, + 0xe9, 0xbc, 0xd5, 0x84, 0x5f, 0x81, 0x3a, 0xd9, 0x93, 0x1c, 0x6b, 0x71, 0xfb, 0x7a, 0xe1, 0xdd, + 0x80, 0xfa, 0x56, 0x99, 0x7c, 0x19, 0xab, 0x62, 0x41, 0xc7, 0x62, 0xe9, 0x58, 0x95, 0x45, 0x1d, + 0xb5, 0x02, 0xf5, 0x5d, 0x9c, 0x16, 0xe3, 0x2c, 0xf4, 0xc2, 0xfb, 0xd3, 0x82, 0x65, 0x3d, 0xd3, + 0xee, 0x11, 0x89, 0x6f, 0x63, 0x89, 0x51, 0x1b, 0x1a, 0x31, 0x11, 0x11, 0xa7, 0x43, 0x49, 0x59, + 0x6e, 0x3e, 0x54, 0x35, 0x95, 0xca, 0x24, 0x7b, 0x7a, 0x1e, 0x06, 0x05, 0x4f, 0xcd, 0x17, 0x1b, + 0x63, 0xdb, 0x7d, 0x9e, 0x1e, 0xdf, 0xc7, 0x2b, 0x50, 0xa7, 0x19, 0x4e, 0xc6, 0x1d, 0xac, 0x17, + 0xe8, 0x26, 0x00, 0x96, 0x92, 0xd3, 0xb0, 0x90, 0x44, 0xb8, 0x75, 0x35, 0xfe, 0x2e, 0xcc, 0xe2, + 0x53, 0xa5, 0xdc, 0xaf, 0x95, 0x94, 0xf9, 0x15, 0x17, 0x95, 0x8f, 0x16, 0xf3, 0x3b, 0xcf, 0xa7, + 0x3a, 0x76, 0xec, 0xa9, 0xb1, 0xf3, 0x9e, 0xf2, 0xf9, 0xc3, 0x82, 0xa6, 0x92, 0xef, 0xbb, 0x4d, + 0xe7, 0xb0, 0xae, 0xed, 0x49, 0x5d, 0xbf, 0xa7, 0x64, 0x36, 0xc0, 0x1e, 0xc4, 0xc2, 0x88, 0xde, + 0x6a, 0xdb, 0x6f, 0x20, 0x7a, 0xef, 0x37, 0x0b, 0xe0, 0x36, 0x49, 0x89, 0x24, 0xaa, 0x81, 0xaf, + 0x81, 0x11, 0x51, 0x40, 0x63, 0xa1, 0x92, 0x6f, 0x6c, 0x9c, 0x9f, 0x15, 0xc3, 0x20, 0x16, 0xbe, + 0xa3, 0xa1, 0xe5, 0x99, 0xd7, 0xc0, 0x14, 0x4b, 0xf9, 0xcd, 0x1f, 0xe3, 0xa7, 0xa1, 0xa5, 0xdf, + 0xe7, 0xe0, 0x8c, 0xaf, 0x04, 0xa1, 0x78, 0x7a, 0x8d, 0xdb, 0x62, 0xa2, 0x2f, 0x08, 0xe1, 0x3d, + 0xb7, 0xe0, 0xdc, 0x3d, 0x9a, 0x70, 0x5c, 0xd6, 0xa3, 0xf2, 0x64, 0x58, 0x05, 0x47, 0xf0, 0x28, + 0x10, 0xea, 0x86, 0xb1, 0xd4, 0x0d, 0xb3, 0x20, 0x78, 0xb4, 0x59, 0xde, 0x2a, 0x03, 0xf0, 0xca, + 0xbd, 0x63, 0x9e, 0x48, 0xf3, 0xca, 0xe9, 0x92, 0xe0, 0xd1, 0xdd, 0xa3, 0x5f, 0x49, 0xab, 0xe0, + 0xc4, 0x42, 0x9a, 0x63, 0x6c, 0x7d, 0x4c, 0x2c, 0xa4, 0x3a, 0xe6, 0x3a, 0x38, 0x07, 0x04, 0xbe, + 0xc9, 0xe0, 0x59, 0x1c, 0x73, 0xe8, 0x3d, 0x82, 0x25, 0x9f, 0x98, 0xd9, 0x85, 0x13, 0x81, 0xae, + 0x43, 0x4d, 0xe2, 0x44, 0xa8, 0x42, 0x36, 0x36, 0x3e, 0x9c, 0x7d, 0x1b, 0xbc, 0xc2, 0x77, 0xb7, + 0x70, 0xe2, 0x2b, 0x8f, 0xd5, 0x75, 0xb0, 0xb7, 0x70, 0x82, 0xce, 0x80, 0xfd, 0x90, 0x8c, 0x8c, + 0x82, 0xcb, 0x9f, 0xb3, 0x67, 0x54, 0x7f, 0xf0, 0xf4, 0x45, 0xcb, 0x7a, 0xf6, 0xa2, 0x65, 0xfd, + 0xf3, 0xa2, 0x65, 0xfd, 0xf2, 0xb2, 0x35, 0xf7, 0xec, 0x65, 0x6b, 0xee, 0xaf, 0x97, 0xad, 0xb9, + 0x1f, 0x7b, 0x09, 0x95, 0x3b, 0x45, 0xd8, 0x8d, 0x58, 0xd6, 0x0b, 0xf3, 0x70, 0x3d, 0xda, 0xc1, + 0x34, 0xef, 0x55, 0x9e, 0xfe, 0x7b, 0x87, 0xff, 0xcc, 0x84, 0xa7, 0xd4, 0xe3, 0xff, 0xea, 0xff, + 0x01, 0x00, 0x00, 0xff, 0xff, 0x3b, 0x9d, 0xd3, 0x2f, 0xef, 0x0c, 0x00, 0x00, } func (m *BucketInfo) Marshal() (dAtA []byte, err error) { @@ -1679,6 +1781,80 @@ func (m *MigrationBucketInfo) MarshalToSizedBuffer(dAtA []byte) (int, error) { return len(dAtA) - i, nil } +func (m *ResourceTags) 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 *ResourceTags) MarshalTo(dAtA []byte) (int, error) { + size := m.Size() + return m.MarshalToSizedBuffer(dAtA[:size]) +} + +func (m *ResourceTags) MarshalToSizedBuffer(dAtA []byte) (int, error) { + i := len(dAtA) + _ = i + var l int + _ = l + if len(m.Tags) > 0 { + for iNdEx := len(m.Tags) - 1; iNdEx >= 0; iNdEx-- { + { + size, err := m.Tags[iNdEx].MarshalToSizedBuffer(dAtA[:i]) + if err != nil { + return 0, err + } + i -= size + i = encodeVarintTypes(dAtA, i, uint64(size)) + } + i-- + dAtA[i] = 0xa + } + } + return len(dAtA) - i, nil +} + +func (m *ResourceTags_Tag) 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 *ResourceTags_Tag) MarshalTo(dAtA []byte) (int, error) { + size := m.Size() + return m.MarshalToSizedBuffer(dAtA[:size]) +} + +func (m *ResourceTags_Tag) MarshalToSizedBuffer(dAtA []byte) (int, error) { + i := len(dAtA) + _ = i + var l int + _ = l + if len(m.Value) > 0 { + i -= len(m.Value) + copy(dAtA[i:], m.Value) + i = encodeVarintTypes(dAtA, i, uint64(len(m.Value))) + i-- + dAtA[i] = 0x12 + } + if len(m.Key) > 0 { + i -= len(m.Key) + copy(dAtA[i:], m.Key) + i = encodeVarintTypes(dAtA, i, uint64(len(m.Key))) + i-- + dAtA[i] = 0xa + } + return len(dAtA) - i, nil +} + func encodeVarintTypes(dAtA []byte, offset int, v uint64) int { offset -= sovTypes(v) base := offset @@ -2005,6 +2181,38 @@ func (m *MigrationBucketInfo) Size() (n int) { return n } +func (m *ResourceTags) Size() (n int) { + if m == nil { + return 0 + } + var l int + _ = l + if len(m.Tags) > 0 { + for _, e := range m.Tags { + l = e.Size() + n += 1 + l + sovTypes(uint64(l)) + } + } + return n +} + +func (m *ResourceTags_Tag) Size() (n int) { + if m == nil { + return 0 + } + var l int + _ = l + l = len(m.Key) + if l > 0 { + n += 1 + l + sovTypes(uint64(l)) + } + l = len(m.Value) + if l > 0 { + n += 1 + l + sovTypes(uint64(l)) + } + return n +} + func sovTypes(x uint64) (n int) { return (math_bits.Len64(x|1) + 6) / 7 } @@ -4189,6 +4397,204 @@ func (m *MigrationBucketInfo) Unmarshal(dAtA []byte) error { } return nil } +func (m *ResourceTags) Unmarshal(dAtA []byte) error { + l := len(dAtA) + iNdEx := 0 + for iNdEx < l { + preIndex := iNdEx + var wire uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowTypes + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + wire |= uint64(b&0x7F) << shift + if b < 0x80 { + break + } + } + fieldNum := int32(wire >> 3) + wireType := int(wire & 0x7) + if wireType == 4 { + return fmt.Errorf("proto: ResourceTags: wiretype end group for non-group") + } + if fieldNum <= 0 { + return fmt.Errorf("proto: ResourceTags: illegal tag %d (wire type %d)", fieldNum, wire) + } + switch fieldNum { + case 1: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field Tags", wireType) + } + var msglen int + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowTypes + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + msglen |= int(b&0x7F) << shift + if b < 0x80 { + break + } + } + if msglen < 0 { + return ErrInvalidLengthTypes + } + postIndex := iNdEx + msglen + if postIndex < 0 { + return ErrInvalidLengthTypes + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + m.Tags = append(m.Tags, &ResourceTags_Tag{}) + if err := m.Tags[len(m.Tags)-1].Unmarshal(dAtA[iNdEx:postIndex]); err != nil { + return err + } + iNdEx = postIndex + default: + iNdEx = preIndex + skippy, err := skipTypes(dAtA[iNdEx:]) + if err != nil { + return err + } + if (skippy < 0) || (iNdEx+skippy) < 0 { + return ErrInvalidLengthTypes + } + if (iNdEx + skippy) > l { + return io.ErrUnexpectedEOF + } + iNdEx += skippy + } + } + + if iNdEx > l { + return io.ErrUnexpectedEOF + } + return nil +} +func (m *ResourceTags_Tag) Unmarshal(dAtA []byte) error { + l := len(dAtA) + iNdEx := 0 + for iNdEx < l { + preIndex := iNdEx + var wire uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowTypes + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + wire |= uint64(b&0x7F) << shift + if b < 0x80 { + break + } + } + fieldNum := int32(wire >> 3) + wireType := int(wire & 0x7) + if wireType == 4 { + return fmt.Errorf("proto: Tag: wiretype end group for non-group") + } + if fieldNum <= 0 { + return fmt.Errorf("proto: Tag: illegal tag %d (wire type %d)", fieldNum, wire) + } + switch fieldNum { + case 1: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field Key", wireType) + } + var stringLen uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowTypes + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + stringLen |= uint64(b&0x7F) << shift + if b < 0x80 { + break + } + } + intStringLen := int(stringLen) + if intStringLen < 0 { + return ErrInvalidLengthTypes + } + postIndex := iNdEx + intStringLen + if postIndex < 0 { + return ErrInvalidLengthTypes + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + m.Key = string(dAtA[iNdEx:postIndex]) + iNdEx = postIndex + case 2: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field Value", wireType) + } + var stringLen uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowTypes + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + stringLen |= uint64(b&0x7F) << shift + if b < 0x80 { + break + } + } + intStringLen := int(stringLen) + if intStringLen < 0 { + return ErrInvalidLengthTypes + } + postIndex := iNdEx + intStringLen + if postIndex < 0 { + return ErrInvalidLengthTypes + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + m.Value = string(dAtA[iNdEx:postIndex]) + iNdEx = postIndex + default: + iNdEx = preIndex + skippy, err := skipTypes(dAtA[iNdEx:]) + if err != nil { + return err + } + if (skippy < 0) || (iNdEx+skippy) < 0 { + return ErrInvalidLengthTypes + } + if (iNdEx + skippy) > l { + return io.ErrUnexpectedEOF + } + iNdEx += skippy + } + } + + if iNdEx > l { + return io.ErrUnexpectedEOF + } + return nil +} func skipTypes(dAtA []byte) (n int, err error) { l := len(dAtA) iNdEx := 0