diff --git a/proto/interchain_security/ccv/provider/v1/query.proto b/proto/interchain_security/ccv/provider/v1/query.proto index 0051d83dd2..9a8fbf7f42 100644 --- a/proto/interchain_security/ccv/provider/v1/query.proto +++ b/proto/interchain_security/ccv/provider/v1/query.proto @@ -292,6 +292,11 @@ message QueryConsumerValidatorsValidator { tendermint.crypto.PublicKey consumer_key = 2; // The power of the validator used on the consumer chain int64 power = 3; + // The rate to charge delegators on the consumer chain, as a fraction + string rate = 4 [ + (gogoproto.customtype) = "cosmossdk.io/math.LegacyDec", + (gogoproto.nullable) = false + ]; } message QueryConsumerValidatorsResponse { diff --git a/x/ccv/provider/keeper/grpc_query.go b/x/ccv/provider/keeper/grpc_query.go index 563d69bdd7..415a181096 100644 --- a/x/ccv/provider/keeper/grpc_query.go +++ b/x/ccv/provider/keeper/grpc_query.go @@ -8,6 +8,7 @@ import ( "google.golang.org/grpc/status" errorsmod "cosmossdk.io/errors" + "cosmossdk.io/math" sdk "github.com/cosmos/cosmos-sdk/types" @@ -330,14 +331,33 @@ func (k Keeper) QueryConsumerValidators(goCtx context.Context, req *types.QueryC if err != nil { return nil, status.Error(codes.Internal, err.Error()) } + for _, v := range consumerValSet { + + consAddr, err := sdk.ConsAddressFromBech32(sdk.ConsAddress(v.ProviderConsAddr).String()) + if err != nil { + return nil, status.Error(codes.InvalidArgument, "invalid provider address") + } + + var rate math.LegacyDec + consumerRate, found := k.GetConsumerCommissionRate(ctx, consumerChainID, types.NewProviderConsAddress(consAddr)) + if found { + rate = consumerRate + } else { + v, err := k.stakingKeeper.GetValidatorByConsAddr(ctx, consAddr) + if err != nil { + return nil, status.Error(codes.InvalidArgument, fmt.Sprintf("unknown validator: %s", consAddr.String())) + } + rate = v.Commission.Rate + } + validators = append(validators, &types.QueryConsumerValidatorsValidator{ ProviderAddress: sdk.ConsAddress(v.ProviderConsAddr).String(), ConsumerKey: v.PublicKey, Power: v.Power, + Rate: rate, }) } - return &types.QueryConsumerValidatorsResponse{ Validators: validators, }, nil diff --git a/x/ccv/provider/keeper/grpc_query_test.go b/x/ccv/provider/keeper/grpc_query_test.go index 2d50c8e1ce..1f45ee7f4d 100644 --- a/x/ccv/provider/keeper/grpc_query_test.go +++ b/x/ccv/provider/keeper/grpc_query_test.go @@ -99,7 +99,7 @@ func TestQueryConsumerChainOptedInValidators(t *testing.T) { func TestQueryConsumerValidators(t *testing.T) { chainID := "chainID" - pk, ctx, ctrl, _ := testkeeper.GetProviderKeeperAndCtx(t, testkeeper.NewInMemKeeperParams(t)) + pk, ctx, ctrl, mocks := testkeeper.GetProviderKeeperAndCtx(t, testkeeper.NewInMemKeeperParams(t)) defer ctrl.Finish() req := types.QueryConsumerValidatorsRequest{ @@ -113,15 +113,19 @@ func TestQueryConsumerValidators(t *testing.T) { providerAddr1 := types.NewProviderConsAddress([]byte("providerAddr1")) consumerKey1 := cryptotestutil.NewCryptoIdentityFromIntSeed(1).TMProtoCryptoPublicKey() consumerValidator1 := types.ConsensusValidator{ProviderConsAddr: providerAddr1.ToSdkConsAddr(), Power: 1, PublicKey: &consumerKey1} + expectedCommissionRate1 := math.LegacyMustNewDecFromStr("0.123") + pk.SetConsumerCommissionRate(ctx, chainID, providerAddr1, expectedCommissionRate1) providerAddr2 := types.NewProviderConsAddress([]byte("providerAddr2")) consumerKey2 := cryptotestutil.NewCryptoIdentityFromIntSeed(2).TMProtoCryptoPublicKey() consumerValidator2 := types.ConsensusValidator{ProviderConsAddr: providerAddr2.ToSdkConsAddr(), Power: 2, PublicKey: &consumerKey2} + expectedCommissionRate2 := math.LegacyMustNewDecFromStr("0.123") + pk.SetConsumerCommissionRate(ctx, chainID, providerAddr2, expectedCommissionRate2) expectedResponse := types.QueryConsumerValidatorsResponse{ Validators: []*types.QueryConsumerValidatorsValidator{ - {providerAddr1.String(), &consumerKey1, 1}, - {providerAddr2.String(), &consumerKey2, 2}, + {ProviderAddress: providerAddr1.String(), ConsumerKey: &consumerKey1, Power: 1, Rate: expectedCommissionRate1}, + {ProviderAddress: providerAddr2.String(), ConsumerKey: &consumerKey2, Power: 2, Rate: expectedCommissionRate2}, }, } @@ -132,6 +136,17 @@ func TestQueryConsumerValidators(t *testing.T) { res, err := pk.QueryConsumerValidators(ctx, &req) require.NoError(t, err) require.Equal(t, &expectedResponse, res) + + // validator with no set consumer commission rate + pk.DeleteConsumerCommissionRate(ctx, chainID, providerAddr1) + expectedCommissionRate := math.LegacyMustNewDecFromStr("0.456") + // because no consumer commission rate is set, the validator's set commission rate on the provider is used + val := stakingtypes.Validator{Commission: stakingtypes.Commission{CommissionRates: stakingtypes.CommissionRates{Rate: expectedCommissionRate}}} + mocks.MockStakingKeeper.EXPECT().GetValidatorByConsAddr( + ctx, providerAddr1.ToSdkConsAddr()).Return(val, nil).Times(1) + res, _ = pk.QueryConsumerValidators(ctx, &req) + require.Equal(t, expectedCommissionRate, res.Validators[0].Rate) + } func TestQueryConsumerChainsValidatorHasToValidate(t *testing.T) { diff --git a/x/ccv/provider/types/query.pb.go b/x/ccv/provider/types/query.pb.go index 34f334704a..bc7866140f 100644 --- a/x/ccv/provider/types/query.pb.go +++ b/x/ccv/provider/types/query.pb.go @@ -1360,6 +1360,8 @@ type QueryConsumerValidatorsValidator struct { ConsumerKey *crypto.PublicKey `protobuf:"bytes,2,opt,name=consumer_key,json=consumerKey,proto3" json:"consumer_key,omitempty"` // The power of the validator used on the consumer chain Power int64 `protobuf:"varint,3,opt,name=power,proto3" json:"power,omitempty"` + // The rate to charge delegators on the consumer chain, as a fraction + Rate cosmossdk_io_math.LegacyDec `protobuf:"bytes,4,opt,name=rate,proto3,customtype=cosmossdk.io/math.LegacyDec" json:"rate"` } func (m *QueryConsumerValidatorsValidator) Reset() { *m = QueryConsumerValidatorsValidator{} } @@ -1781,132 +1783,133 @@ func init() { } var fileDescriptor_422512d7b7586cd7 = []byte{ - // 1994 bytes of a gzipped FileDescriptorProto + // 2002 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xb4, 0x59, 0xcd, 0x6f, 0xdc, 0xc6, 0x15, 0x17, 0x57, 0xb2, 0x22, 0x8d, 0x62, 0x3b, 0x19, 0xab, 0xb1, 0x4c, 0x29, 0xbb, 0x0a, 0xdd, 0x0f, 0x59, 0x76, 0x49, 0x49, 0x86, 0x11, 0xc7, 0xae, 0x23, 0x6b, 0x25, 0xd9, 0x59, 0xd8, 0xb1, 0x15, 0x5a, 0x76, 0x0b, 0xb7, 0x28, 0x3d, 0x22, 0xa7, 0x2b, 0xc2, 0x5c, 0x0e, 0xc5, 0x19, 0xad, 0xbd, 0x30, 0x72, 0x48, 0x0f, 0x6d, 0x8e, 0x41, 0x3f, 0x80, 0x1e, 0x73, 0xe9, 0xb1, 0x3d, 0xf4, - 0x50, 0xf4, 0x4f, 0xc8, 0xad, 0x29, 0x72, 0x29, 0x7a, 0x70, 0x0b, 0xbb, 0x87, 0xa2, 0x40, 0x8b, - 0x22, 0xe8, 0xb5, 0x40, 0xc1, 0xe1, 0x90, 0x4b, 0xee, 0x72, 0x77, 0xc9, 0x5d, 0xe5, 0x26, 0xce, - 0xbc, 0xf7, 0x9b, 0xf7, 0xde, 0xbc, 0xf7, 0xe6, 0xfd, 0x56, 0x40, 0xb3, 0x5d, 0x86, 0x7d, 0x73, - 0x1f, 0xd9, 0xae, 0x41, 0xb1, 0x79, 0xe8, 0xdb, 0xac, 0xa5, 0x99, 0x66, 0x53, 0xf3, 0x7c, 0xd2, - 0xb4, 0x2d, 0xec, 0x6b, 0xcd, 0x55, 0xed, 0xe0, 0x10, 0xfb, 0x2d, 0xd5, 0xf3, 0x09, 0x23, 0xf0, - 0x6c, 0x86, 0x82, 0x6a, 0x9a, 0x4d, 0x35, 0x52, 0x50, 0x9b, 0xab, 0xf2, 0x42, 0x9d, 0x90, 0xba, - 0x83, 0x35, 0xe4, 0xd9, 0x1a, 0x72, 0x5d, 0xc2, 0x10, 0xb3, 0x89, 0x4b, 0x43, 0x08, 0x79, 0xb6, - 0x4e, 0xea, 0x84, 0xff, 0xa9, 0x05, 0x7f, 0x89, 0xd5, 0x8a, 0xd0, 0xe1, 0x5f, 0x7b, 0x87, 0x3f, - 0xd2, 0x98, 0xdd, 0xc0, 0x94, 0xa1, 0x86, 0x27, 0x04, 0xd6, 0xf2, 0x98, 0x1a, 0x5b, 0x11, 0xea, - 0xac, 0xf4, 0xd2, 0x69, 0xae, 0x6a, 0x74, 0x1f, 0xf9, 0xd8, 0x32, 0x4c, 0xe2, 0xd2, 0xc3, 0x46, - 0xac, 0xf1, 0x8d, 0x3e, 0x1a, 0x4f, 0x6c, 0x1f, 0x0b, 0xb1, 0x05, 0x86, 0x5d, 0x0b, 0xfb, 0x0d, - 0xdb, 0x65, 0x9a, 0xe9, 0xb7, 0x3c, 0x46, 0xb4, 0xc7, 0xb8, 0x15, 0x79, 0x78, 0xc6, 0x24, 0xb4, - 0x41, 0xa8, 0x11, 0x3a, 0x19, 0x7e, 0x84, 0x5b, 0xca, 0x65, 0x30, 0xff, 0x41, 0x10, 0xce, 0x4d, - 0x71, 0xec, 0x4d, 0xec, 0x62, 0x6a, 0x53, 0x1d, 0x1f, 0x1c, 0x62, 0xca, 0xe0, 0x19, 0x30, 0x15, - 0x9e, 0x6d, 0x5b, 0x73, 0xd2, 0xa2, 0xb4, 0x34, 0xad, 0xbf, 0xc2, 0xbf, 0x6b, 0x96, 0xf2, 0x0c, - 0x2c, 0x64, 0x6b, 0x52, 0x8f, 0xb8, 0x14, 0xc3, 0xef, 0x83, 0xe3, 0xf5, 0x70, 0xc9, 0xa0, 0x0c, - 0x31, 0xcc, 0xf5, 0x67, 0xd6, 0x56, 0xd4, 0x5e, 0x37, 0xd6, 0x5c, 0x55, 0x3b, 0xb0, 0xee, 0x05, - 0x7a, 0xd5, 0x89, 0xcf, 0x9e, 0x57, 0xc6, 0xf4, 0x57, 0xeb, 0x89, 0x35, 0x65, 0x01, 0xc8, 0xa9, - 0xc3, 0x37, 0x03, 0xb8, 0xc8, 0x6a, 0x05, 0x75, 0x38, 0x15, 0xed, 0x0a, 0xcb, 0xaa, 0x60, 0x92, - 0x1f, 0x4f, 0xe7, 0xa4, 0xc5, 0xf1, 0xa5, 0x99, 0xb5, 0x65, 0x35, 0x47, 0x12, 0xa9, 0x1c, 0x44, - 0x17, 0x9a, 0xca, 0x39, 0xf0, 0xad, 0xee, 0x23, 0xee, 0x31, 0xe4, 0xb3, 0x1d, 0x9f, 0x78, 0x84, - 0x22, 0x27, 0xb6, 0xe6, 0x63, 0x09, 0x2c, 0x0d, 0x96, 0x15, 0xb6, 0xfd, 0x00, 0x4c, 0x7b, 0xd1, - 0xa2, 0x88, 0xd8, 0xbb, 0xf9, 0xcc, 0x13, 0xe0, 0x1b, 0x96, 0x65, 0x07, 0xd9, 0xdd, 0x86, 0x6e, - 0x03, 0x2a, 0x4b, 0xe0, 0x9b, 0x59, 0x96, 0x10, 0xaf, 0xcb, 0xe8, 0x9f, 0x48, 0xd9, 0x0e, 0xa6, - 0x44, 0xe3, 0x9b, 0xee, 0xb2, 0xf9, 0x5a, 0x21, 0x9b, 0x75, 0xdc, 0x20, 0x4d, 0xe4, 0x64, 0x9a, - 0xfc, 0xab, 0x12, 0x38, 0xc6, 0xcf, 0xee, 0x93, 0x8b, 0x70, 0x1e, 0x4c, 0x9b, 0x8e, 0x8d, 0x5d, - 0x16, 0xec, 0x95, 0xf8, 0xde, 0x54, 0xb8, 0x50, 0xb3, 0xe0, 0x29, 0x70, 0x8c, 0x11, 0xcf, 0xb8, - 0x33, 0x37, 0xbe, 0x28, 0x2d, 0x1d, 0xd7, 0x27, 0x18, 0xf1, 0xee, 0xc0, 0x65, 0x00, 0x1b, 0xb6, - 0x6b, 0x78, 0xe4, 0x09, 0xf6, 0x0d, 0xdb, 0x35, 0x42, 0x89, 0x89, 0x45, 0x69, 0x69, 0x5c, 0x3f, - 0xd1, 0xb0, 0xdd, 0x9d, 0x60, 0xa3, 0xe6, 0xee, 0x06, 0xb2, 0x2b, 0x60, 0xb6, 0x89, 0x1c, 0xdb, - 0x42, 0x8c, 0xf8, 0x54, 0xa8, 0x98, 0xc8, 0x9b, 0x3b, 0xc6, 0xf1, 0x60, 0x7b, 0x8f, 0x2b, 0x6d, - 0x22, 0x0f, 0x2e, 0x83, 0xd7, 0xe3, 0x55, 0x83, 0x62, 0xc6, 0xc5, 0x27, 0xb9, 0xf8, 0xc9, 0x78, - 0xe3, 0x1e, 0x66, 0x81, 0xec, 0x02, 0x98, 0x46, 0x8e, 0x43, 0x9e, 0x38, 0x36, 0x65, 0x73, 0xaf, - 0x2c, 0x8e, 0x2f, 0x4d, 0xeb, 0xed, 0x05, 0x28, 0x83, 0x29, 0x0b, 0xbb, 0x2d, 0xbe, 0x39, 0xc5, - 0x37, 0xe3, 0x6f, 0xe5, 0xa7, 0x12, 0x78, 0x8b, 0xdf, 0xd1, 0x83, 0x08, 0x32, 0x91, 0x04, 0xfe, - 0xe0, 0x12, 0x86, 0xd7, 0xc0, 0x6b, 0xd1, 0x75, 0x18, 0xc8, 0xb2, 0x7c, 0x4c, 0x69, 0x18, 0xbd, - 0x2a, 0xfc, 0xf2, 0x79, 0xe5, 0x44, 0x0b, 0x35, 0x9c, 0x2b, 0x8a, 0xd8, 0x50, 0xf4, 0x93, 0x91, - 0xec, 0x46, 0xb8, 0x72, 0x65, 0xea, 0xe3, 0x4f, 0x2b, 0x63, 0xff, 0xf8, 0xb4, 0x32, 0xa6, 0xdc, - 0x05, 0x4a, 0x3f, 0x43, 0x44, 0x9e, 0x9c, 0x03, 0xaf, 0x45, 0xdd, 0x2d, 0x3e, 0x2e, 0xb4, 0xe8, - 0xa4, 0x99, 0x90, 0x0f, 0x0e, 0xeb, 0x76, 0x6d, 0x27, 0x71, 0x78, 0x3e, 0xd7, 0xba, 0xce, 0xea, - 0xe3, 0x5a, 0xc7, 0xf9, 0xfd, 0x5c, 0x4b, 0x1b, 0xd2, 0x76, 0xad, 0x2b, 0x92, 0xc2, 0xb5, 0x8e, - 0xa8, 0x29, 0xf3, 0xe0, 0x0c, 0x07, 0xdc, 0xdd, 0xf7, 0x09, 0x63, 0x0e, 0xe6, 0x0d, 0x2d, 0x2a, - 0xbb, 0x3f, 0x49, 0xa2, 0xb1, 0x75, 0xec, 0x8a, 0x63, 0x2a, 0x60, 0x86, 0x3a, 0x88, 0xee, 0x1b, - 0x0d, 0xcc, 0xb0, 0xcf, 0x4f, 0x18, 0xd7, 0x01, 0x5f, 0x7a, 0x3f, 0x58, 0x81, 0x6b, 0xe0, 0x6b, - 0x09, 0x01, 0x83, 0xe7, 0x11, 0x72, 0x4d, 0xcc, 0x7d, 0x1f, 0xd7, 0x4f, 0xb5, 0x45, 0x37, 0xa2, - 0x2d, 0xf8, 0x43, 0x30, 0xe7, 0xe2, 0xa7, 0xcc, 0xf0, 0xb1, 0xe7, 0x60, 0xd7, 0xa6, 0xfb, 0x86, - 0x89, 0x5c, 0x2b, 0x70, 0x16, 0xf3, 0x92, 0x99, 0x59, 0x93, 0xd5, 0xf0, 0x31, 0x54, 0xa3, 0xc7, - 0x50, 0xdd, 0x8d, 0x1e, 0xc3, 0xea, 0x54, 0xd0, 0x9d, 0x3f, 0xf9, 0x6b, 0x45, 0xd2, 0xdf, 0x08, - 0x50, 0xf4, 0x08, 0x64, 0x33, 0xc2, 0x50, 0x2e, 0x80, 0x65, 0xee, 0x92, 0x8e, 0xeb, 0x36, 0x65, - 0xd8, 0xc7, 0x56, 0xbb, 0xee, 0x9f, 0x20, 0xdf, 0xda, 0xc2, 0x2e, 0x69, 0xc4, 0x8d, 0x67, 0x1b, - 0x9c, 0xcf, 0x25, 0x2d, 0x22, 0xf2, 0x06, 0x98, 0xb4, 0xf8, 0x0a, 0xef, 0xe5, 0xd3, 0xba, 0xf8, - 0x52, 0xca, 0xe2, 0x75, 0x0a, 0x7b, 0x0a, 0xb6, 0x78, 0x0b, 0xa9, 0x6d, 0xc5, 0xc7, 0x7c, 0x24, - 0x81, 0x37, 0x7b, 0x08, 0x08, 0xe4, 0x47, 0xe0, 0x84, 0x97, 0xdc, 0x8b, 0x5e, 0x8b, 0xb5, 0x5c, - 0xad, 0x2d, 0x05, 0x2b, 0x9e, 0xb0, 0x0e, 0x3c, 0xa5, 0x06, 0x8e, 0xa7, 0xc4, 0xe0, 0x1c, 0x10, - 0xf9, 0xbb, 0x95, 0x4e, 0xe7, 0x2d, 0x58, 0x06, 0x20, 0x6a, 0x89, 0xb5, 0x2d, 0x7e, 0x99, 0x13, - 0x7a, 0x62, 0x45, 0xb9, 0x0d, 0x34, 0xee, 0xcd, 0x86, 0xe3, 0xec, 0x20, 0xdb, 0xa7, 0x0f, 0x90, - 0xb3, 0x49, 0xdc, 0x20, 0xe5, 0xaa, 0xe9, 0x0e, 0x5e, 0xdb, 0xca, 0xf1, 0xb4, 0xff, 0x5a, 0x02, - 0x2b, 0xf9, 0xe1, 0x44, 0xbc, 0x0e, 0xc0, 0xeb, 0x1e, 0xb2, 0x7d, 0xa3, 0x89, 0x9c, 0x60, 0x88, - 0xe1, 0x65, 0x20, 0x42, 0x76, 0x23, 0x5f, 0xc8, 0x90, 0xed, 0xb7, 0x0f, 0x8a, 0xcb, 0xcc, 0x6d, - 0x27, 0xc0, 0x09, 0x2f, 0x25, 0xa2, 0xfc, 0x57, 0x02, 0x6f, 0x0d, 0xd4, 0x82, 0x37, 0x7a, 0xd5, - 0x66, 0x75, 0xfe, 0xcb, 0xe7, 0x95, 0xd3, 0x61, 0x2b, 0xe8, 0x94, 0xe8, 0x6e, 0x77, 0x01, 0x4e, - 0x8f, 0x96, 0x92, 0xc0, 0xe9, 0x94, 0xe8, 0xee, 0x2d, 0x70, 0x1d, 0xbc, 0x1a, 0x4b, 0x3d, 0xc6, - 0x2d, 0x51, 0x63, 0x0b, 0x6a, 0x7b, 0x84, 0x53, 0xc3, 0x11, 0x4e, 0xdd, 0x39, 0xdc, 0x73, 0x6c, - 0xf3, 0x16, 0x6e, 0xe9, 0x33, 0x91, 0xc6, 0x2d, 0xdc, 0x52, 0x66, 0x01, 0x0c, 0x53, 0x17, 0xf9, - 0xa8, 0x5d, 0x38, 0x8f, 0xc0, 0xa9, 0xd4, 0xaa, 0xb8, 0x96, 0x1a, 0x98, 0xf4, 0xf8, 0x8a, 0x78, - 0x99, 0xcf, 0xe7, 0xbc, 0x8b, 0x40, 0x45, 0xe4, 0xad, 0x00, 0x50, 0x6e, 0x8a, 0x42, 0x4e, 0x65, - 0xc0, 0x5d, 0x8f, 0x61, 0xab, 0xe6, 0xc6, 0xed, 0x31, 0xcf, 0xe8, 0x78, 0x20, 0x6a, 0x7c, 0x10, - 0x50, 0x3c, 0xaf, 0xbd, 0x99, 0x7c, 0x7f, 0x3b, 0x6e, 0x0a, 0x47, 0xa5, 0x3f, 0x9f, 0x78, 0x88, - 0xd3, 0x57, 0x87, 0xa9, 0x72, 0x15, 0x94, 0x53, 0x47, 0x16, 0xb2, 0xf7, 0x0f, 0x12, 0x58, 0xec, - 0xa1, 0x1d, 0xff, 0x95, 0xf9, 0x98, 0x4a, 0xb9, 0x1f, 0xd3, 0xae, 0xac, 0x28, 0x15, 0xcc, 0x0a, - 0x38, 0x0b, 0x8e, 0xf1, 0xd1, 0x84, 0xe7, 0xd3, 0xb8, 0x1e, 0x7e, 0x04, 0xc3, 0x67, 0xa5, 0xa7, - 0xe3, 0x22, 0xbe, 0x18, 0x80, 0x76, 0xe8, 0x44, 0xc9, 0x6e, 0xe7, 0x4a, 0x93, 0x41, 0x41, 0xd1, - 0x13, 0xc0, 0xca, 0x81, 0x68, 0x2a, 0xe9, 0xa9, 0x3c, 0x96, 0x7d, 0x0f, 0xd1, 0x5d, 0x22, 0xbe, - 0xa2, 0xf7, 0x70, 0xc4, 0xa0, 0x2a, 0x08, 0xac, 0x16, 0x38, 0x52, 0x84, 0xe3, 0x02, 0x80, 0xf1, - 0x4d, 0x44, 0x19, 0x11, 0xe5, 0x58, 0xdc, 0x01, 0xc2, 0xee, 0x67, 0xf1, 0x49, 0xe5, 0x7c, 0xf6, - 0xec, 0xb3, 0x49, 0x1a, 0x0d, 0x9b, 0x52, 0x9b, 0xb8, 0x7a, 0xc2, 0xa3, 0xaf, 0x6c, 0x1c, 0x53, - 0xea, 0xe0, 0x42, 0x3e, 0x43, 0x84, 0x9f, 0x6f, 0x83, 0x09, 0x3f, 0xe2, 0x65, 0xd3, 0xd5, 0xb3, - 0x41, 0xa9, 0xff, 0xe5, 0x79, 0x65, 0x3e, 0xa4, 0x87, 0xd4, 0x7a, 0xac, 0xda, 0x44, 0x6b, 0x20, - 0xb6, 0xaf, 0xde, 0xc6, 0x75, 0x64, 0xb6, 0xb6, 0xb0, 0xa9, 0x73, 0x05, 0x45, 0x11, 0xd5, 0x50, - 0x75, 0x88, 0xf9, 0x98, 0xde, 0x77, 0x99, 0xed, 0xdc, 0xc1, 0x4f, 0xd9, 0xb6, 0x47, 0xcc, 0xfd, - 0xa8, 0x1b, 0x3d, 0x14, 0xf3, 0x5b, 0xb6, 0x8c, 0xb0, 0xe0, 0x12, 0x38, 0xbd, 0xc7, 0xf7, 0x8d, - 0xc3, 0x40, 0xc0, 0xe0, 0x63, 0x08, 0x0e, 0x44, 0xb8, 0x51, 0x13, 0xfa, 0xec, 0x5e, 0x86, 0xfa, - 0xda, 0x6f, 0x2b, 0xe0, 0x18, 0x07, 0x87, 0x2f, 0x24, 0x30, 0x9b, 0x45, 0x42, 0xe1, 0xf5, 0xe2, - 0xe9, 0x9b, 0x66, 0xbe, 0xf2, 0xc6, 0x08, 0x08, 0xa1, 0x7b, 0xca, 0xf6, 0x8f, 0xbf, 0xf8, 0xfb, - 0xcf, 0x4b, 0xeb, 0xf0, 0xda, 0xe0, 0x5f, 0x35, 0xe2, 0x84, 0x13, 0x2c, 0x57, 0x7b, 0x16, 0x25, - 0xc9, 0x87, 0xf0, 0x0b, 0x49, 0x74, 0xf6, 0x74, 0x16, 0xc3, 0xf5, 0xe2, 0x16, 0xa6, 0x68, 0xb2, - 0x7c, 0x7d, 0x78, 0x00, 0xe1, 0xe1, 0x3b, 0xdc, 0xc3, 0x8b, 0x70, 0xb5, 0x80, 0x87, 0x21, 0x81, - 0x86, 0x1f, 0x95, 0xc0, 0x5c, 0x0f, 0x56, 0x4c, 0xe1, 0xed, 0x21, 0x2d, 0xcb, 0x24, 0xe0, 0xf2, - 0xfb, 0x47, 0x84, 0x26, 0x9c, 0x7e, 0x8f, 0x3b, 0x5d, 0x85, 0xd7, 0x8b, 0x3a, 0x6d, 0xd0, 0x00, - 0xd0, 0x88, 0xb9, 0x2d, 0xfc, 0x9f, 0x04, 0x4e, 0x67, 0x93, 0x6c, 0x0a, 0x6f, 0x0d, 0x6d, 0x74, - 0x37, 0x9b, 0x97, 0x6f, 0x1f, 0x0d, 0x98, 0x08, 0xc0, 0x4d, 0x1e, 0x80, 0x0d, 0xb8, 0x3e, 0x44, - 0x00, 0x88, 0x97, 0xf0, 0xff, 0x3f, 0x11, 0xdb, 0xc9, 0xe4, 0x8d, 0xf0, 0x46, 0x7e, 0xab, 0xfb, - 0x31, 0x60, 0xf9, 0xe6, 0xc8, 0x38, 0xc2, 0xf1, 0x0d, 0xee, 0xf8, 0x55, 0xf8, 0x4e, 0x8e, 0x9f, - 0x29, 0x63, 0xfa, 0x9f, 0x9a, 0x08, 0x33, 0x5c, 0x4e, 0xce, 0x2a, 0x43, 0xb9, 0x9c, 0xc1, 0x8c, - 0x87, 0x72, 0x39, 0x8b, 0xd8, 0x0e, 0xe7, 0x72, 0xea, 0x15, 0x83, 0x7f, 0x94, 0xc4, 0xbc, 0x9a, - 0xe2, 0xb4, 0xf0, 0xdd, 0xfc, 0x26, 0x66, 0x51, 0x65, 0x79, 0x7d, 0x68, 0x7d, 0xe1, 0xda, 0x65, - 0xee, 0xda, 0x1a, 0x5c, 0x19, 0xec, 0x1a, 0x13, 0x00, 0xe1, 0x2f, 0x99, 0xf0, 0x97, 0x25, 0x70, - 0x36, 0x07, 0x49, 0x85, 0x77, 0xf3, 0x9b, 0x98, 0x8b, 0x1c, 0xcb, 0x3b, 0x47, 0x07, 0x28, 0x82, - 0x70, 0x8b, 0x07, 0x61, 0x1b, 0x6e, 0x0e, 0x0e, 0x82, 0x1f, 0x23, 0xb6, 0x73, 0xda, 0xe7, 0x98, - 0x46, 0x48, 0xba, 0xe1, 0x3f, 0xbb, 0x48, 0x75, 0x9a, 0x2b, 0x52, 0x58, 0xe0, 0x55, 0xed, 0xc1, - 0xdc, 0xe5, 0xea, 0x28, 0x10, 0xc2, 0xeb, 0x2a, 0xf7, 0xfa, 0x3b, 0xf0, 0xca, 0x60, 0xaf, 0x23, - 0xce, 0x6e, 0x74, 0x3e, 0x60, 0xbf, 0x28, 0x89, 0x9f, 0x75, 0x73, 0x90, 0x64, 0xb8, 0x9b, 0xdf, - 0xe8, 0xfc, 0x14, 0x5e, 0xbe, 0x7f, 0xc4, 0xa8, 0x22, 0x3a, 0x57, 0x79, 0x74, 0x2e, 0xc1, 0x8b, - 0x85, 0xfb, 0xbb, 0x6d, 0xc1, 0xdf, 0x49, 0x60, 0x26, 0xc1, 0x43, 0xe1, 0xdb, 0x05, 0xae, 0x2b, - 0xc9, 0x67, 0xe5, 0xcb, 0xc5, 0x15, 0x85, 0xfd, 0x2b, 0xdc, 0xfe, 0x65, 0xb8, 0x94, 0xe3, 0x76, - 0x43, 0x23, 0x7f, 0x16, 0x15, 0x74, 0x7f, 0x46, 0x5a, 0xa4, 0xa0, 0x73, 0x91, 0xe4, 0x22, 0x05, - 0x9d, 0x8f, 0x2c, 0x17, 0x99, 0x4e, 0x48, 0x00, 0x62, 0xd8, 0xae, 0xd1, 0x26, 0x69, 0xc9, 0xb9, - 0xf3, 0xf7, 0x25, 0x70, 0x2e, 0x37, 0x7b, 0x82, 0xf7, 0x87, 0x1d, 0x26, 0xfb, 0x12, 0x40, 0xf9, - 0xc1, 0x51, 0xc3, 0x8a, 0x30, 0x3d, 0xe4, 0x61, 0xda, 0x85, 0x7a, 0xe1, 0xc9, 0xd5, 0xf0, 0xb0, - 0xdf, 0x8e, 0x98, 0xf6, 0xac, 0x93, 0xb2, 0x7d, 0x08, 0x7f, 0x53, 0x02, 0x5f, 0xcf, 0xc3, 0xc4, - 0xe0, 0xce, 0x08, 0x83, 0x49, 0x26, 0xbb, 0x94, 0x3f, 0x38, 0x42, 0x44, 0x11, 0xa9, 0x47, 0x3c, - 0x52, 0x0f, 0xe1, 0xf7, 0x8a, 0x44, 0x2a, 0x86, 0x32, 0x02, 0xc6, 0x98, 0xc8, 0xaa, 0xac, 0x78, - 0xfd, 0xbb, 0x73, 0x0c, 0x4e, 0x54, 0xdc, 0xe6, 0x28, 0xbf, 0x43, 0x44, 0x51, 0xd9, 0x1a, 0x0d, - 0x64, 0x84, 0xb9, 0x3f, 0xbb, 0xb2, 0xfe, 0x25, 0x89, 0xff, 0x01, 0x64, 0xb1, 0x63, 0x58, 0xe0, - 0xa7, 0x97, 0x3e, 0x0c, 0x5c, 0xbe, 0x31, 0x2a, 0x4c, 0xf1, 0x09, 0xb0, 0x07, 0x99, 0xaf, 0x7e, - 0xf7, 0xb3, 0x17, 0x65, 0xe9, 0xf3, 0x17, 0x65, 0xe9, 0x6f, 0x2f, 0xca, 0xd2, 0x27, 0x2f, 0xcb, - 0x63, 0x9f, 0xbf, 0x2c, 0x8f, 0xfd, 0xf9, 0x65, 0x79, 0xec, 0xe1, 0xb5, 0xba, 0xcd, 0xf6, 0x0f, - 0xf7, 0x54, 0x93, 0x34, 0xc4, 0xff, 0xa5, 0x13, 0xa7, 0x7c, 0x3b, 0x3e, 0xa5, 0x79, 0x49, 0x7b, - 0xda, 0x31, 0x91, 0xb5, 0x3c, 0x4c, 0xf7, 0x26, 0xf9, 0x3f, 0x24, 0x2e, 0xfe, 0x3f, 0x00, 0x00, - 0xff, 0xff, 0xb5, 0x03, 0x23, 0x90, 0x37, 0x20, 0x00, 0x00, + 0xd0, 0xbf, 0x21, 0xb7, 0xa6, 0xc8, 0xa5, 0xe8, 0xc1, 0x2d, 0xec, 0x1e, 0x8a, 0x02, 0x2d, 0xda, + 0xa0, 0xd7, 0x02, 0x05, 0x87, 0x43, 0x2e, 0xb9, 0xcb, 0xdd, 0x25, 0x77, 0x95, 0xdb, 0x72, 0xe6, + 0xbd, 0xdf, 0xbc, 0xf7, 0xe6, 0xcd, 0x9b, 0xf7, 0x9b, 0x05, 0x9a, 0xed, 0x32, 0xec, 0x9b, 0xfb, + 0xc8, 0x76, 0x0d, 0x8a, 0xcd, 0x43, 0xdf, 0x66, 0x2d, 0xcd, 0x34, 0x9b, 0x9a, 0xe7, 0x93, 0xa6, + 0x6d, 0x61, 0x5f, 0x6b, 0xae, 0x6a, 0x07, 0x87, 0xd8, 0x6f, 0xa9, 0x9e, 0x4f, 0x18, 0x81, 0x67, + 0x33, 0x14, 0x54, 0xd3, 0x6c, 0xaa, 0x91, 0x82, 0xda, 0x5c, 0x95, 0x17, 0xea, 0x84, 0xd4, 0x1d, + 0xac, 0x21, 0xcf, 0xd6, 0x90, 0xeb, 0x12, 0x86, 0x98, 0x4d, 0x5c, 0x1a, 0x42, 0xc8, 0xb3, 0x75, + 0x52, 0x27, 0xfc, 0xa7, 0x16, 0xfc, 0x12, 0xa3, 0x15, 0xa1, 0xc3, 0xbf, 0xf6, 0x0e, 0x7f, 0xa4, + 0x31, 0xbb, 0x81, 0x29, 0x43, 0x0d, 0x4f, 0x08, 0xac, 0xe5, 0x31, 0x35, 0xb6, 0x22, 0xd4, 0x59, + 0xe9, 0xa5, 0xd3, 0x5c, 0xd5, 0xe8, 0x3e, 0xf2, 0xb1, 0x65, 0x98, 0xc4, 0xa5, 0x87, 0x8d, 0x58, + 0xe3, 0x1b, 0x7d, 0x34, 0x9e, 0xd8, 0x3e, 0x16, 0x62, 0x0b, 0x0c, 0xbb, 0x16, 0xf6, 0x1b, 0xb6, + 0xcb, 0x34, 0xd3, 0x6f, 0x79, 0x8c, 0x68, 0x8f, 0x71, 0x2b, 0xf2, 0xf0, 0x8c, 0x49, 0x68, 0x83, + 0x50, 0x23, 0x74, 0x32, 0xfc, 0x08, 0xa7, 0x94, 0xcb, 0x60, 0xfe, 0x83, 0x20, 0x9c, 0x9b, 0x62, + 0xd9, 0x9b, 0xd8, 0xc5, 0xd4, 0xa6, 0x3a, 0x3e, 0x38, 0xc4, 0x94, 0xc1, 0x33, 0x60, 0x2a, 0x5c, + 0xdb, 0xb6, 0xe6, 0xa4, 0x45, 0x69, 0x69, 0x5a, 0x7f, 0x85, 0x7f, 0xd7, 0x2c, 0xe5, 0x19, 0x58, + 0xc8, 0xd6, 0xa4, 0x1e, 0x71, 0x29, 0x86, 0xdf, 0x07, 0xc7, 0xeb, 0xe1, 0x90, 0x41, 0x19, 0x62, + 0x98, 0xeb, 0xcf, 0xac, 0xad, 0xa8, 0xbd, 0x76, 0xac, 0xb9, 0xaa, 0x76, 0x60, 0xdd, 0x0b, 0xf4, + 0xaa, 0x13, 0x9f, 0x3d, 0xaf, 0x8c, 0xe9, 0xaf, 0xd6, 0x13, 0x63, 0xca, 0x02, 0x90, 0x53, 0x8b, + 0x6f, 0x06, 0x70, 0x91, 0xd5, 0x0a, 0xea, 0x70, 0x2a, 0x9a, 0x15, 0x96, 0x55, 0xc1, 0x24, 0x5f, + 0x9e, 0xce, 0x49, 0x8b, 0xe3, 0x4b, 0x33, 0x6b, 0xcb, 0x6a, 0x8e, 0x24, 0x52, 0x39, 0x88, 0x2e, + 0x34, 0x95, 0x73, 0xe0, 0x5b, 0xdd, 0x4b, 0xdc, 0x63, 0xc8, 0x67, 0x3b, 0x3e, 0xf1, 0x08, 0x45, + 0x4e, 0x6c, 0xcd, 0xc7, 0x12, 0x58, 0x1a, 0x2c, 0x2b, 0x6c, 0xfb, 0x01, 0x98, 0xf6, 0xa2, 0x41, + 0x11, 0xb1, 0x77, 0xf3, 0x99, 0x27, 0xc0, 0x37, 0x2c, 0xcb, 0x0e, 0xb2, 0xbb, 0x0d, 0xdd, 0x06, + 0x54, 0x96, 0xc0, 0x37, 0xb3, 0x2c, 0x21, 0x5e, 0x97, 0xd1, 0x3f, 0x91, 0xb2, 0x1d, 0x4c, 0x89, + 0xc6, 0x3b, 0xdd, 0x65, 0xf3, 0xb5, 0x42, 0x36, 0xeb, 0xb8, 0x41, 0x9a, 0xc8, 0xc9, 0x34, 0xf9, + 0x57, 0x25, 0x70, 0x8c, 0xaf, 0xdd, 0x27, 0x17, 0xe1, 0x3c, 0x98, 0x36, 0x1d, 0x1b, 0xbb, 0x2c, + 0x98, 0x2b, 0xf1, 0xb9, 0xa9, 0x70, 0xa0, 0x66, 0xc1, 0x53, 0xe0, 0x18, 0x23, 0x9e, 0x71, 0x67, + 0x6e, 0x7c, 0x51, 0x5a, 0x3a, 0xae, 0x4f, 0x30, 0xe2, 0xdd, 0x81, 0xcb, 0x00, 0x36, 0x6c, 0xd7, + 0xf0, 0xc8, 0x13, 0xec, 0x1b, 0xb6, 0x6b, 0x84, 0x12, 0x13, 0x8b, 0xd2, 0xd2, 0xb8, 0x7e, 0xa2, + 0x61, 0xbb, 0x3b, 0xc1, 0x44, 0xcd, 0xdd, 0x0d, 0x64, 0x57, 0xc0, 0x6c, 0x13, 0x39, 0xb6, 0x85, + 0x18, 0xf1, 0xa9, 0x50, 0x31, 0x91, 0x37, 0x77, 0x8c, 0xe3, 0xc1, 0xf6, 0x1c, 0x57, 0xda, 0x44, + 0x1e, 0x5c, 0x06, 0xaf, 0xc7, 0xa3, 0x06, 0xc5, 0x8c, 0x8b, 0x4f, 0x72, 0xf1, 0x93, 0xf1, 0xc4, + 0x3d, 0xcc, 0x02, 0xd9, 0x05, 0x30, 0x8d, 0x1c, 0x87, 0x3c, 0x71, 0x6c, 0xca, 0xe6, 0x5e, 0x59, + 0x1c, 0x5f, 0x9a, 0xd6, 0xdb, 0x03, 0x50, 0x06, 0x53, 0x16, 0x76, 0x5b, 0x7c, 0x72, 0x8a, 0x4f, + 0xc6, 0xdf, 0xca, 0x4f, 0x25, 0xf0, 0x16, 0xdf, 0xa3, 0x07, 0x11, 0x64, 0x22, 0x09, 0xfc, 0xc1, + 0x47, 0x18, 0x5e, 0x03, 0xaf, 0x45, 0xdb, 0x61, 0x20, 0xcb, 0xf2, 0x31, 0xa5, 0x61, 0xf4, 0xaa, + 0xf0, 0xcb, 0xe7, 0x95, 0x13, 0x2d, 0xd4, 0x70, 0xae, 0x28, 0x62, 0x42, 0xd1, 0x4f, 0x46, 0xb2, + 0x1b, 0xe1, 0xc8, 0x95, 0xa9, 0x8f, 0x3f, 0xad, 0x8c, 0xfd, 0xfd, 0xd3, 0xca, 0x98, 0x72, 0x17, + 0x28, 0xfd, 0x0c, 0x11, 0x79, 0x72, 0x0e, 0xbc, 0x16, 0x55, 0xb7, 0x78, 0xb9, 0xd0, 0xa2, 0x93, + 0x66, 0x42, 0x3e, 0x58, 0xac, 0xdb, 0xb5, 0x9d, 0xc4, 0xe2, 0xf9, 0x5c, 0xeb, 0x5a, 0xab, 0x8f, + 0x6b, 0x1d, 0xeb, 0xf7, 0x73, 0x2d, 0x6d, 0x48, 0xdb, 0xb5, 0xae, 0x48, 0x0a, 0xd7, 0x3a, 0xa2, + 0xa6, 0xcc, 0x83, 0x33, 0x1c, 0x70, 0x77, 0xdf, 0x27, 0x8c, 0x39, 0x98, 0x17, 0xb4, 0xe8, 0xd8, + 0xfd, 0x51, 0x12, 0x85, 0xad, 0x63, 0x56, 0x2c, 0x53, 0x01, 0x33, 0xd4, 0x41, 0x74, 0xdf, 0x68, + 0x60, 0x86, 0x7d, 0xbe, 0xc2, 0xb8, 0x0e, 0xf8, 0xd0, 0xfb, 0xc1, 0x08, 0x5c, 0x03, 0x5f, 0x4b, + 0x08, 0x18, 0x3c, 0x8f, 0x90, 0x6b, 0x62, 0xee, 0xfb, 0xb8, 0x7e, 0xaa, 0x2d, 0xba, 0x11, 0x4d, + 0xc1, 0x1f, 0x82, 0x39, 0x17, 0x3f, 0x65, 0x86, 0x8f, 0x3d, 0x07, 0xbb, 0x36, 0xdd, 0x37, 0x4c, + 0xe4, 0x5a, 0x81, 0xb3, 0x98, 0x1f, 0x99, 0x99, 0x35, 0x59, 0x0d, 0x2f, 0x43, 0x35, 0xba, 0x0c, + 0xd5, 0xdd, 0xe8, 0x32, 0xac, 0x4e, 0x05, 0xd5, 0xf9, 0x93, 0xbf, 0x54, 0x24, 0xfd, 0x8d, 0x00, + 0x45, 0x8f, 0x40, 0x36, 0x23, 0x0c, 0xe5, 0x02, 0x58, 0xe6, 0x2e, 0xe9, 0xb8, 0x6e, 0x53, 0x86, + 0x7d, 0x6c, 0xb5, 0xcf, 0xfd, 0x13, 0xe4, 0x5b, 0x5b, 0xd8, 0x25, 0x8d, 0xb8, 0xf0, 0x6c, 0x83, + 0xf3, 0xb9, 0xa4, 0x45, 0x44, 0xde, 0x00, 0x93, 0x16, 0x1f, 0xe1, 0xb5, 0x7c, 0x5a, 0x17, 0x5f, + 0x4a, 0x59, 0xdc, 0x4e, 0x61, 0x4d, 0xc1, 0x16, 0x2f, 0x21, 0xb5, 0xad, 0x78, 0x99, 0x8f, 0x24, + 0xf0, 0x66, 0x0f, 0x01, 0x81, 0xfc, 0x08, 0x9c, 0xf0, 0x92, 0x73, 0xd1, 0x6d, 0xb1, 0x96, 0xab, + 0xb4, 0xa5, 0x60, 0xc5, 0x15, 0xd6, 0x81, 0xa7, 0xd4, 0xc0, 0xf1, 0x94, 0x18, 0x9c, 0x03, 0x22, + 0x7f, 0xb7, 0xd2, 0xe9, 0xbc, 0x05, 0xcb, 0x00, 0x44, 0x25, 0xb1, 0xb6, 0xc5, 0x37, 0x73, 0x42, + 0x4f, 0x8c, 0x28, 0xb7, 0x81, 0xc6, 0xbd, 0xd9, 0x70, 0x9c, 0x1d, 0x64, 0xfb, 0xf4, 0x01, 0x72, + 0x36, 0x89, 0x1b, 0xa4, 0x5c, 0x35, 0x5d, 0xc1, 0x6b, 0x5b, 0x39, 0xae, 0xf6, 0x5f, 0x4b, 0x60, + 0x25, 0x3f, 0x9c, 0x88, 0xd7, 0x01, 0x78, 0xdd, 0x43, 0xb6, 0x6f, 0x34, 0x91, 0x13, 0x34, 0x31, + 0xfc, 0x18, 0x88, 0x90, 0xdd, 0xc8, 0x17, 0x32, 0x64, 0xfb, 0xed, 0x85, 0xe2, 0x63, 0xe6, 0xb6, + 0x13, 0xe0, 0x84, 0x97, 0x12, 0x51, 0xfe, 0x2b, 0x81, 0xb7, 0x06, 0x6a, 0xc1, 0x1b, 0xbd, 0xce, + 0x66, 0x75, 0xfe, 0xcb, 0xe7, 0x95, 0xd3, 0x61, 0x29, 0xe8, 0x94, 0xe8, 0x2e, 0x77, 0x01, 0x4e, + 0x8f, 0x92, 0x92, 0xc0, 0xe9, 0x94, 0xe8, 0xae, 0x2d, 0x70, 0x1d, 0xbc, 0x1a, 0x4b, 0x3d, 0xc6, + 0x2d, 0x71, 0xc6, 0x16, 0xd4, 0x76, 0x0b, 0xa7, 0x86, 0x2d, 0x9c, 0xba, 0x73, 0xb8, 0xe7, 0xd8, + 0xe6, 0x2d, 0xdc, 0xd2, 0x67, 0x22, 0x8d, 0x5b, 0xb8, 0xa5, 0xcc, 0x02, 0x18, 0xa6, 0x2e, 0xf2, + 0x51, 0xfb, 0xe0, 0x3c, 0x02, 0xa7, 0x52, 0xa3, 0x62, 0x5b, 0x6a, 0x60, 0xd2, 0xe3, 0x23, 0xe2, + 0x66, 0x3e, 0x9f, 0x73, 0x2f, 0x02, 0x15, 0x91, 0xb7, 0x02, 0x40, 0xb9, 0x29, 0x0e, 0x72, 0x2a, + 0x03, 0xee, 0x7a, 0x0c, 0x5b, 0x35, 0x37, 0x2e, 0x8f, 0x79, 0x5a, 0xc7, 0x03, 0x71, 0xc6, 0x07, + 0x01, 0xc5, 0xfd, 0xda, 0x9b, 0xc9, 0xfb, 0xb7, 0x63, 0xa7, 0x70, 0x74, 0xf4, 0xe7, 0x13, 0x17, + 0x71, 0x7a, 0xeb, 0x30, 0x55, 0xae, 0x82, 0x72, 0x6a, 0xc9, 0x42, 0xf6, 0xfe, 0x47, 0x02, 0x8b, + 0x3d, 0xb4, 0xe3, 0x5f, 0x99, 0x97, 0xa9, 0x94, 0xfb, 0x32, 0xed, 0xca, 0x8a, 0x52, 0xc1, 0xac, + 0x80, 0xb3, 0xe0, 0x18, 0x6f, 0x4d, 0x78, 0x3e, 0x8d, 0xeb, 0xe1, 0x07, 0x7c, 0x1b, 0x4c, 0xf8, + 0x41, 0x21, 0x9f, 0xe0, 0x96, 0x9c, 0x0d, 0xf6, 0xf3, 0xcf, 0xcf, 0x2b, 0xf3, 0x21, 0x07, 0xa0, + 0xd6, 0x63, 0xd5, 0x26, 0x5a, 0x03, 0xb1, 0x7d, 0xf5, 0x36, 0xae, 0x23, 0xb3, 0xb5, 0x85, 0x4d, + 0x9d, 0x2b, 0x04, 0x5d, 0x6b, 0xa5, 0x67, 0xc4, 0xc4, 0xc6, 0x60, 0x00, 0xda, 0x31, 0x17, 0x67, + 0x7d, 0x3b, 0x57, 0x7e, 0x0d, 0x8a, 0xa6, 0x9e, 0x00, 0x56, 0x0e, 0x44, 0x35, 0x4a, 0xb7, 0xf3, + 0xb1, 0xec, 0x7b, 0x88, 0xee, 0x12, 0xf1, 0x15, 0x5d, 0xa4, 0x23, 0xee, 0x86, 0x82, 0xc0, 0x6a, + 0x81, 0x25, 0x45, 0x38, 0x2e, 0x00, 0x18, 0x6f, 0x61, 0x94, 0x4a, 0x51, 0x72, 0xc6, 0xa5, 0x23, + 0x2c, 0x9b, 0x16, 0x6f, 0x71, 0xce, 0x67, 0x37, 0x4d, 0x9b, 0xa4, 0xd1, 0xb0, 0x29, 0xb5, 0x89, + 0xab, 0x27, 0x3c, 0xfa, 0xca, 0xfa, 0x38, 0xa5, 0x0e, 0x2e, 0xe4, 0x33, 0x44, 0xf8, 0x19, 0xe5, + 0x94, 0x54, 0x34, 0xa7, 0x14, 0x71, 0x8c, 0xaa, 0x0e, 0x31, 0x1f, 0xd3, 0xfb, 0x2e, 0xb3, 0x9d, + 0x3b, 0xf8, 0x29, 0xdb, 0xf6, 0x88, 0xb9, 0x1f, 0x95, 0xb1, 0x87, 0xa2, 0xf1, 0xcb, 0x96, 0x11, + 0x16, 0x5c, 0x02, 0xa7, 0xf7, 0xf8, 0xbc, 0x71, 0x18, 0x08, 0x18, 0xbc, 0x7f, 0xc1, 0x81, 0x08, + 0x37, 0x6a, 0x42, 0x9f, 0xdd, 0xcb, 0x50, 0x5f, 0xfb, 0x6d, 0x05, 0x1c, 0xe3, 0xe0, 0xf0, 0x85, + 0x04, 0x66, 0xb3, 0xd8, 0x2b, 0xbc, 0x5e, 0x3c, 0x7d, 0xd3, 0x94, 0x59, 0xde, 0x18, 0x01, 0x21, + 0x74, 0x4f, 0xd9, 0xfe, 0xf1, 0x17, 0x7f, 0xfb, 0x79, 0x69, 0x1d, 0x5e, 0x1b, 0xfc, 0x1c, 0x12, + 0x27, 0x9c, 0xa0, 0xc7, 0xda, 0xb3, 0x28, 0x49, 0x3e, 0x84, 0x5f, 0x48, 0xe2, 0x4a, 0x48, 0x67, + 0x31, 0x5c, 0x2f, 0x6e, 0x61, 0x8a, 0x5f, 0xcb, 0xd7, 0x87, 0x07, 0x10, 0x1e, 0xbe, 0xc3, 0x3d, + 0xbc, 0x08, 0x57, 0x0b, 0x78, 0x18, 0x32, 0x6f, 0xf8, 0x51, 0x09, 0xcc, 0xf5, 0xa0, 0xd3, 0x14, + 0xde, 0x1e, 0xd2, 0xb2, 0x4c, 0xe6, 0x2e, 0xbf, 0x7f, 0x44, 0x68, 0xc2, 0xe9, 0xf7, 0xb8, 0xd3, + 0x55, 0x78, 0xbd, 0xa8, 0xd3, 0x06, 0x0d, 0x00, 0x8d, 0x98, 0x14, 0xc3, 0xff, 0x49, 0xe0, 0x74, + 0x36, 0x3b, 0xa7, 0xf0, 0xd6, 0xd0, 0x46, 0x77, 0x3f, 0x03, 0xc8, 0xb7, 0x8f, 0x06, 0x4c, 0x04, + 0xe0, 0x26, 0x0f, 0xc0, 0x06, 0x5c, 0x1f, 0x22, 0x00, 0xc4, 0x4b, 0xf8, 0xff, 0xef, 0x88, 0x26, + 0x65, 0x12, 0x4e, 0x78, 0x23, 0xbf, 0xd5, 0xfd, 0xa8, 0xb3, 0x7c, 0x73, 0x64, 0x1c, 0xe1, 0xf8, + 0x06, 0x77, 0xfc, 0x2a, 0x7c, 0x27, 0xc7, 0xfb, 0x66, 0xfc, 0x6e, 0x90, 0x6a, 0x25, 0x33, 0x5c, + 0x4e, 0x36, 0x39, 0x43, 0xb9, 0x9c, 0x41, 0xa9, 0x87, 0x72, 0x39, 0x8b, 0x11, 0x0f, 0xe7, 0x72, + 0xea, 0x16, 0x83, 0x7f, 0x90, 0x44, 0xa3, 0x9b, 0x22, 0xc3, 0xf0, 0xdd, 0xfc, 0x26, 0x66, 0x71, + 0x6c, 0x79, 0x7d, 0x68, 0x7d, 0xe1, 0xda, 0x65, 0xee, 0xda, 0x1a, 0x5c, 0x19, 0xec, 0x1a, 0x13, + 0x00, 0xe1, 0x13, 0x28, 0xfc, 0x65, 0x09, 0x9c, 0xcd, 0xc1, 0x6e, 0xe1, 0xdd, 0xfc, 0x26, 0xe6, + 0x62, 0xd5, 0xf2, 0xce, 0xd1, 0x01, 0x8a, 0x20, 0xdc, 0xe2, 0x41, 0xd8, 0x86, 0x9b, 0x83, 0x83, + 0xe0, 0xc7, 0x88, 0xed, 0x9c, 0xf6, 0x39, 0xa6, 0x11, 0xb2, 0x75, 0xf8, 0x8f, 0x2e, 0x36, 0x9e, + 0x26, 0x99, 0x14, 0x16, 0xb8, 0x55, 0x7b, 0x50, 0x7e, 0xb9, 0x3a, 0x0a, 0x84, 0xf0, 0xba, 0xca, + 0xbd, 0xfe, 0x0e, 0xbc, 0x32, 0xd8, 0xeb, 0x88, 0xec, 0x1b, 0x9d, 0x17, 0xd8, 0x2f, 0x4a, 0xe2, + 0x3d, 0x38, 0x07, 0xbb, 0x86, 0xbb, 0xf9, 0x8d, 0xce, 0xcf, 0xfd, 0xe5, 0xfb, 0x47, 0x8c, 0x2a, + 0xa2, 0x73, 0x95, 0x47, 0xe7, 0x12, 0xbc, 0x58, 0xb8, 0xbe, 0xdb, 0x16, 0xfc, 0x9d, 0x04, 0x66, + 0x12, 0x04, 0x16, 0xbe, 0x5d, 0x60, 0xbb, 0x92, 0x44, 0x58, 0xbe, 0x5c, 0x5c, 0x51, 0xd8, 0xbf, + 0xc2, 0xed, 0x5f, 0x86, 0x4b, 0x39, 0x76, 0x37, 0x34, 0xf2, 0x67, 0xd1, 0x81, 0xee, 0x4f, 0x65, + 0x8b, 0x1c, 0xe8, 0x5c, 0xec, 0xba, 0xc8, 0x81, 0xce, 0xc7, 0xb2, 0x8b, 0x74, 0x27, 0x24, 0x00, + 0x31, 0x6c, 0xd7, 0x68, 0x93, 0xb4, 0x64, 0xdf, 0xf9, 0xfb, 0x12, 0x38, 0x97, 0x9b, 0x3d, 0xc1, + 0xfb, 0xc3, 0x36, 0x93, 0x7d, 0x09, 0xa0, 0xfc, 0xe0, 0xa8, 0x61, 0x45, 0x98, 0x1e, 0xf2, 0x30, + 0xed, 0x42, 0xbd, 0x70, 0xe7, 0x6a, 0x78, 0xd8, 0x6f, 0x47, 0x4c, 0x7b, 0xd6, 0x49, 0xd9, 0x3e, + 0x84, 0xbf, 0x29, 0x81, 0xaf, 0xe7, 0x61, 0x62, 0x70, 0x67, 0x84, 0xc6, 0x24, 0x93, 0x5d, 0xca, + 0x1f, 0x1c, 0x21, 0xa2, 0x88, 0xd4, 0x23, 0x1e, 0xa9, 0x87, 0xf0, 0x7b, 0x45, 0x22, 0x15, 0x43, + 0x19, 0x01, 0x63, 0x4c, 0x64, 0x55, 0x56, 0xbc, 0xfe, 0xd5, 0xd9, 0x06, 0x27, 0x4e, 0xdc, 0xe6, + 0x28, 0xef, 0x10, 0x51, 0x54, 0xb6, 0x46, 0x03, 0x19, 0xa1, 0xef, 0xcf, 0x3e, 0x59, 0xff, 0x94, + 0xc4, 0x9f, 0x07, 0x59, 0xec, 0x18, 0x16, 0x78, 0x7a, 0xe9, 0xc3, 0xc0, 0xe5, 0x1b, 0xa3, 0xc2, + 0x14, 0xef, 0x00, 0x7b, 0x90, 0xf9, 0xea, 0x77, 0x3f, 0x7b, 0x51, 0x96, 0x3e, 0x7f, 0x51, 0x96, + 0xfe, 0xfa, 0xa2, 0x2c, 0x7d, 0xf2, 0xb2, 0x3c, 0xf6, 0xf9, 0xcb, 0xf2, 0xd8, 0x9f, 0x5e, 0x96, + 0xc7, 0x1e, 0x5e, 0xab, 0xdb, 0x6c, 0xff, 0x70, 0x4f, 0x35, 0x49, 0x43, 0xfc, 0xa1, 0x9d, 0x58, + 0xe5, 0xdb, 0xf1, 0x2a, 0xcd, 0x4b, 0xda, 0xd3, 0x8e, 0x8e, 0xac, 0xe5, 0x61, 0xba, 0x37, 0xc9, + 0xff, 0xc9, 0xb8, 0xf8, 0xff, 0x00, 0x00, 0x00, 0xff, 0xff, 0xe2, 0x36, 0xa0, 0x9e, 0x70, 0x20, + 0x00, 0x00, } // Reference imports to suppress errors if they are not otherwise used. @@ -3535,6 +3538,16 @@ func (m *QueryConsumerValidatorsValidator) MarshalToSizedBuffer(dAtA []byte) (in _ = i var l int _ = l + { + size := m.Rate.Size() + i -= size + if _, err := m.Rate.MarshalTo(dAtA[i:]); err != nil { + return 0, err + } + i = encodeVarintQuery(dAtA, i, uint64(size)) + } + i-- + dAtA[i] = 0x22 if m.Power != 0 { i = encodeVarintQuery(dAtA, i, uint64(m.Power)) i-- @@ -4203,6 +4216,8 @@ func (m *QueryConsumerValidatorsValidator) Size() (n int) { if m.Power != 0 { n += 1 + sovQuery(uint64(m.Power)) } + l = m.Rate.Size() + n += 1 + l + sovQuery(uint64(l)) return n } @@ -6870,6 +6885,40 @@ func (m *QueryConsumerValidatorsValidator) Unmarshal(dAtA []byte) error { break } } + case 4: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field Rate", 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 + } + if err := m.Rate.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { + return err + } + iNdEx = postIndex default: iNdEx = preIndex skippy, err := skipQuery(dAtA[iNdEx:])