diff --git a/CHANGELOG.md b/CHANGELOG.md index c83fcdd31..0bde2e859 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -44,6 +44,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/) ### Bug fixes +* [#197](https://github.com/babylonlabs-io/babylon/pull/197) Fix `BTCDelgationResponse` missing `staking_time` * [#193](https://github.com/babylonlabs-io/babylon/pull/193) Fix witness construction of slashing tx * [#154](https://github.com/babylonlabs-io/babylon/pull/154) Fix "edit-finality-provider" cmd argument index * [#186](https://github.com/babylonlabs-io/babylon/pull/186) Do not panic on `nil` diff --git a/cmd/babylond/cmd/genhelpers/set_btc_delegations_test.go b/cmd/babylond/cmd/genhelpers/set_btc_delegations_test.go index 7e0a2c6e2..ef1da990d 100644 --- a/cmd/babylond/cmd/genhelpers/set_btc_delegations_test.go +++ b/cmd/babylond/cmd/genhelpers/set_btc_delegations_test.go @@ -9,18 +9,19 @@ import ( "testing" sdkmath "cosmossdk.io/math" - "github.com/babylonlabs-io/babylon/cmd/babylond/cmd/genhelpers" - "github.com/babylonlabs-io/babylon/testutil/datagen" - "github.com/babylonlabs-io/babylon/testutil/helper" - bbn "github.com/babylonlabs-io/babylon/types" - btcctypes "github.com/babylonlabs-io/babylon/x/btccheckpoint/types" - btcstktypes "github.com/babylonlabs-io/babylon/x/btcstaking/types" "github.com/btcsuite/btcd/chaincfg" "github.com/btcsuite/btcd/txscript" "github.com/cosmos/cosmos-sdk/client" genutiltest "github.com/cosmos/cosmos-sdk/x/genutil/client/testutil" genutiltypes "github.com/cosmos/cosmos-sdk/x/genutil/types" "github.com/stretchr/testify/require" + + "github.com/babylonlabs-io/babylon/cmd/babylond/cmd/genhelpers" + "github.com/babylonlabs-io/babylon/testutil/datagen" + "github.com/babylonlabs-io/babylon/testutil/helper" + bbn "github.com/babylonlabs-io/babylon/types" + btcctypes "github.com/babylonlabs-io/babylon/x/btccheckpoint/types" + btcstktypes "github.com/babylonlabs-io/babylon/x/btcstaking/types" ) func FuzzCmdSetBtcDels(f *testing.F) { @@ -69,6 +70,7 @@ func FuzzCmdSetBtcDels(f *testing.F) { startHeight := uint32(datagen.RandomInt(r, 100)) + 1 endHeight := uint32(datagen.RandomInt(r, 1000)) + startHeight + btcctypes.DefaultParams().CheckpointFinalizationTimeout + 1 + stakingTime := endHeight - startHeight slashingRate := sdkmath.LegacyNewDecWithPrec(int64(datagen.RandomInt(r, 41)+10), 2) slashingChangeLockTime := uint16(101) @@ -86,7 +88,7 @@ func FuzzCmdSetBtcDels(f *testing.F) { covenantPKs, covenantQuorum, slashingPkScript, - startHeight, endHeight, 10000, + stakingTime, startHeight, endHeight, 10000, slashingRate, slashingChangeLockTime, ) @@ -155,7 +157,7 @@ func FuzzCmdSetBtcDels(f *testing.F) { covenantPKs, covenantQuorum, slashingPkScript, - startHeight, endHeight, 10000, + stakingTime, startHeight, endHeight, 10000, slashingRate, slashingChangeLockTime, ) diff --git a/proto/babylon/btcstaking/v1/query.proto b/proto/babylon/btcstaking/v1/query.proto index 176c15b72..437f87a25 100644 --- a/proto/babylon/btcstaking/v1/query.proto +++ b/proto/babylon/btcstaking/v1/query.proto @@ -251,40 +251,42 @@ message BTCDelegationResponse { // fp_btc_pk_list is the list of BIP-340 PKs of the finality providers that // this BTC delegation delegates to repeated bytes fp_btc_pk_list = 3 [ (gogoproto.customtype) = "github.com/babylonlabs-io/babylon/types.BIP340PubKey" ]; + // staking_time is the number of blocks for which the delegation is locked on BTC chain + uint32 staking_time = 4; // start_height is the start BTC height of the BTC delegation // it is the start BTC height of the timelock - uint32 start_height = 4; + uint32 start_height = 5; // end_height is the end height of the BTC delegation // it is the end BTC height of the timelock - w - uint32 end_height = 5; + uint32 end_height = 6; // total_sat is the total amount of BTC stakes in this delegation // quantified in satoshi - uint64 total_sat = 6; + uint64 total_sat = 7; // staking_tx_hex is the hex string of staking tx - string staking_tx_hex = 7; + string staking_tx_hex = 8; // slashing_tx_hex is the hex string of slashing tx - string slashing_tx_hex = 8; + string slashing_tx_hex = 9; // delegator_slash_sig_hex is the signature on the slashing tx // by the delegator (i.e., SK corresponding to btc_pk) as string hex. // It will be a part of the witness for the staking tx output. - string delegator_slash_sig_hex = 9; + string delegator_slash_sig_hex = 10; // covenant_sigs is a list of adaptor signatures on the slashing tx // by each covenant member // It will be a part of the witness for the staking tx output. - repeated CovenantAdaptorSignatures covenant_sigs = 10; + repeated CovenantAdaptorSignatures covenant_sigs = 11; // staking_output_idx is the index of the staking output in the staking tx - uint32 staking_output_idx = 11; + uint32 staking_output_idx = 12; // whether this delegation is active - bool active = 12; + bool active = 13; // descriptive status of current delegation. - string status_desc = 13; + string status_desc = 14; // unbonding_time used in unbonding output timelock path and in slashing transactions // change outputs - uint32 unbonding_time = 14; + uint32 unbonding_time = 15; // undelegation_response is the undelegation info of this delegation. - BTCUndelegationResponse undelegation_response = 15; + BTCUndelegationResponse undelegation_response = 16; // params version used to validate delegation - uint32 params_version = 16; + uint32 params_version = 17; } // BTCUndelegationResponse provides all necessary info about the undeleagation diff --git a/testutil/datagen/btcstaking.go b/testutil/datagen/btcstaking.go index ca3bbe7a6..21efdc766 100644 --- a/testutil/datagen/btcstaking.go +++ b/testutil/datagen/btcstaking.go @@ -89,7 +89,7 @@ func GenRandomBTCDelegation( covenantPks []*btcec.PublicKey, covenantQuorum uint32, slashingPkScript []byte, - startHeight, endHeight uint32, + stakingTime, startHeight, endHeight uint32, totalSat uint64, slashingRate sdkmath.LegacyDec, slashingChangeLockTime uint16, @@ -104,8 +104,6 @@ func GenRandomBTCDelegation( } staker := GenRandomAccount() - stakingTime := uint16(endHeight - startHeight) - // staking/slashing tx stakingSlashingInfo := GenBTCStakingSlashingInfo( r, @@ -115,7 +113,7 @@ func GenRandomBTCDelegation( fpPKs, covenantPks, covenantQuorum, - stakingTime, + uint16(stakingTime), int64(totalSat), slashingPkScript, slashingRate, diff --git a/x/btcstaking/keeper/grpc_query_test.go b/x/btcstaking/keeper/grpc_query_test.go index 7d5a5df34..036cd3348 100644 --- a/x/btcstaking/keeper/grpc_query_test.go +++ b/x/btcstaking/keeper/grpc_query_test.go @@ -207,12 +207,17 @@ func FuzzPendingBTCDelegations(f *testing.F) { btclcKeeper.EXPECT().GetTipInfo(gomock.Any()).Return(&btclctypes.BTCHeaderInfo{Height: startHeight}).AnyTimes() endHeight := uint32(datagen.RandomInt(r, 1000)) + startHeight + btcctypes.DefaultParams().CheckpointFinalizationTimeout + 1 + stakingTime := endHeight - startHeight numBTCDels := datagen.RandomInt(r, 10) + 1 pendingBtcDelsMap := make(map[string]*types.BTCDelegation) for _, fp := range fps { for j := uint64(0); j < numBTCDels; j++ { delSK, _, err := datagen.GenRandomBTCKeyPair(r) require.NoError(t, err) + // 0.5 chance that the delegation is created via pre-approval flow + if r.Intn(2) == 0 { + startHeight, endHeight = 0, 0 + } btcDel, err := datagen.GenRandomBTCDelegation( r, t, @@ -223,7 +228,7 @@ func FuzzPendingBTCDelegations(f *testing.F) { covenantPKs, covenantQuorum, slashingPkScript, - startHeight, endHeight, 10000, + stakingTime, startHeight, endHeight, 10000, slashingRate, slashingChangeLockTime, ) @@ -266,6 +271,7 @@ func FuzzPendingBTCDelegations(f *testing.F) { for _, btcDel := range resp.BtcDelegations { _, ok := pendingBtcDelsMap[btcDel.BtcPk.MarshalHex()] require.True(t, ok) + require.Equal(t, stakingTime, btcDel.StakingTime) } // Construct the next page request pagination.Key = resp.Pagination.NextKey @@ -420,6 +426,8 @@ func FuzzActiveFinalityProvidersAtHeight(f *testing.F) { for j := uint64(0); j < numBTCDels; j++ { delSK, _, err := datagen.GenRandomBTCKeyPair(r) require.NoError(t, err) + startHeight, endHeight := uint32(1), uint32(1000) + stakingTime := endHeight - startHeight btcDel, err := datagen.GenRandomBTCDelegation( r, t, @@ -430,7 +438,7 @@ func FuzzActiveFinalityProvidersAtHeight(f *testing.F) { covenantPKs, covenantQuorum, slashingPkScript, - 1, 1000, 10000, + stakingTime, 1, 1000, 10000, slashingRate, slashingChangeLockTime, ) @@ -524,6 +532,7 @@ func FuzzFinalityProviderDelegations(f *testing.F) { startHeight := uint32(datagen.RandomInt(r, 100)) + 1 endHeight := uint32(datagen.RandomInt(r, 1000)) + startHeight + btcctypes.DefaultParams().CheckpointFinalizationTimeout + 1 + stakingTime := endHeight - startHeight btclcKeeper.EXPECT().GetTipInfo(gomock.Any()).Return(&btclctypes.BTCHeaderInfo{Height: startHeight}).AnyTimes() // Generate a random number of BTC delegations under this finality provider numBTCDels := datagen.RandomInt(r, 10) + 1 @@ -541,7 +550,7 @@ func FuzzFinalityProviderDelegations(f *testing.F) { covenantPKs, covenantQuorum, slashingPkScript, - startHeight, endHeight, 10000, + stakingTime, startHeight, endHeight, 10000, slashingRate, slashingChangeLockTime, ) diff --git a/x/btcstaking/keeper/msg_server_test.go b/x/btcstaking/keeper/msg_server_test.go index 1c327e733..d193e99b1 100644 --- a/x/btcstaking/keeper/msg_server_test.go +++ b/x/btcstaking/keeper/msg_server_test.go @@ -916,6 +916,8 @@ func createNDelegationsForFinalityProvider( slashingRate := sdkmath.LegacyNewDecWithPrec(int64(datagen.RandomInt(r, 41)+10), 2) + startHeight, endHeight := 1, math.MaxUint16 + stakingTime := uint32(endHeight) - uint32(startHeight) del, err := datagen.GenRandomBTCDelegation( r, t, @@ -926,6 +928,7 @@ func createNDelegationsForFinalityProvider( covenantPks, quorum, slashingPkScript, + stakingTime, 1, 1+(math.MaxUint16-1), uint64(stakingValue), diff --git a/x/btcstaking/types/btc_delegation_test.go b/x/btcstaking/types/btc_delegation_test.go index 5018a4fde..b15788dfa 100644 --- a/x/btcstaking/types/btc_delegation_test.go +++ b/x/btcstaking/types/btc_delegation_test.go @@ -5,12 +5,13 @@ import ( "testing" sdkmath "cosmossdk.io/math" - bbn "github.com/babylonlabs-io/babylon/types" "github.com/btcsuite/btcd/btcec/v2" "github.com/btcsuite/btcd/chaincfg" "github.com/btcsuite/btcd/txscript" "github.com/stretchr/testify/require" + bbn "github.com/babylonlabs-io/babylon/types" + asig "github.com/babylonlabs-io/babylon/crypto/schnorr-adaptor-signature" btctest "github.com/babylonlabs-io/babylon/testutil/bitcoin" "github.com/babylonlabs-io/babylon/testutil/datagen" @@ -97,7 +98,7 @@ func FuzzBTCDelegation_SlashingTx(f *testing.F) { CovenantQuorum: covenantQuorum, } - stakingTimeBlocks := uint16(5) + stakingTimeBlocks := uint32(5) stakingValue := int64(2 * 10e8) slashingAddress, err := datagen.GenRandomBTCAddress(r, &chaincfg.SimNetParams) require.NoError(t, err) @@ -121,8 +122,9 @@ func FuzzBTCDelegation_SlashingTx(f *testing.F) { covenantPKs, covenantQuorum, slashingPkScript, + stakingTimeBlocks, 1000, - uint32(1000+stakingTimeBlocks), + 1000+stakingTimeBlocks, uint64(stakingValue), slashingRate, slashingChangeLockTime, diff --git a/x/btcstaking/types/btc_undelegation_test.go b/x/btcstaking/types/btc_undelegation_test.go index 5013392d4..7cfaecdba 100644 --- a/x/btcstaking/types/btc_undelegation_test.go +++ b/x/btcstaking/types/btc_undelegation_test.go @@ -5,14 +5,15 @@ import ( "testing" sdkmath "cosmossdk.io/math" + "github.com/btcsuite/btcd/chaincfg" + "github.com/btcsuite/btcd/txscript" + "github.com/stretchr/testify/require" + asig "github.com/babylonlabs-io/babylon/crypto/schnorr-adaptor-signature" btctest "github.com/babylonlabs-io/babylon/testutil/bitcoin" "github.com/babylonlabs-io/babylon/testutil/datagen" bbn "github.com/babylonlabs-io/babylon/types" "github.com/babylonlabs-io/babylon/x/btcstaking/types" - "github.com/btcsuite/btcd/chaincfg" - "github.com/btcsuite/btcd/txscript" - "github.com/stretchr/testify/require" ) func FuzzBTCUndelegation_SlashingTx(f *testing.F) { @@ -49,7 +50,7 @@ func FuzzBTCUndelegation_SlashingTx(f *testing.F) { } covenantSigners := covenantSKs - stakingTimeBlocks := uint16(5) + stakingTimeBlocks := uint32(5) stakingValue := int64(2 * 10e8) slashingAddress, err := datagen.GenRandomBTCAddress(r, &chaincfg.SimNetParams) require.NoError(t, err) @@ -72,6 +73,7 @@ func FuzzBTCUndelegation_SlashingTx(f *testing.F) { covenantPKs, covenantQuorum, slashingPkScript, + stakingTimeBlocks, 1000, uint32(stakingTimeBlocks)+1000, uint64(stakingValue), diff --git a/x/btcstaking/types/query.go b/x/btcstaking/types/query.go index 9f10dd209..c237d2138 100644 --- a/x/btcstaking/types/query.go +++ b/x/btcstaking/types/query.go @@ -10,6 +10,7 @@ func NewBTCDelegationResponse(btcDel *BTCDelegation, status BTCDelegationStatus) StakerAddr: btcDel.StakerAddr, BtcPk: btcDel.BtcPk, FpBtcPkList: btcDel.FpBtcPkList, + StakingTime: btcDel.StakingTime, StartHeight: btcDel.StartHeight, EndHeight: btcDel.EndHeight, TotalSat: btcDel.TotalSat, diff --git a/x/btcstaking/types/query.pb.go b/x/btcstaking/types/query.pb.go index 95d2cc2bf..7658416dd 100644 --- a/x/btcstaking/types/query.pb.go +++ b/x/btcstaking/types/query.pb.go @@ -1163,40 +1163,42 @@ type BTCDelegationResponse struct { // fp_btc_pk_list is the list of BIP-340 PKs of the finality providers that // this BTC delegation delegates to FpBtcPkList []github_com_babylonlabs_io_babylon_types.BIP340PubKey `protobuf:"bytes,3,rep,name=fp_btc_pk_list,json=fpBtcPkList,proto3,customtype=github.com/babylonlabs-io/babylon/types.BIP340PubKey" json:"fp_btc_pk_list,omitempty"` + // staking_time is the number of blocks for which the delegation is locked on BTC chain + StakingTime uint32 `protobuf:"varint,4,opt,name=staking_time,json=stakingTime,proto3" json:"staking_time,omitempty"` // start_height is the start BTC height of the BTC delegation // it is the start BTC height of the timelock - StartHeight uint32 `protobuf:"varint,4,opt,name=start_height,json=startHeight,proto3" json:"start_height,omitempty"` + StartHeight uint32 `protobuf:"varint,5,opt,name=start_height,json=startHeight,proto3" json:"start_height,omitempty"` // end_height is the end height of the BTC delegation // it is the end BTC height of the timelock - w - EndHeight uint32 `protobuf:"varint,5,opt,name=end_height,json=endHeight,proto3" json:"end_height,omitempty"` + EndHeight uint32 `protobuf:"varint,6,opt,name=end_height,json=endHeight,proto3" json:"end_height,omitempty"` // total_sat is the total amount of BTC stakes in this delegation // quantified in satoshi - TotalSat uint64 `protobuf:"varint,6,opt,name=total_sat,json=totalSat,proto3" json:"total_sat,omitempty"` + TotalSat uint64 `protobuf:"varint,7,opt,name=total_sat,json=totalSat,proto3" json:"total_sat,omitempty"` // staking_tx_hex is the hex string of staking tx - StakingTxHex string `protobuf:"bytes,7,opt,name=staking_tx_hex,json=stakingTxHex,proto3" json:"staking_tx_hex,omitempty"` + StakingTxHex string `protobuf:"bytes,8,opt,name=staking_tx_hex,json=stakingTxHex,proto3" json:"staking_tx_hex,omitempty"` // slashing_tx_hex is the hex string of slashing tx - SlashingTxHex string `protobuf:"bytes,8,opt,name=slashing_tx_hex,json=slashingTxHex,proto3" json:"slashing_tx_hex,omitempty"` + SlashingTxHex string `protobuf:"bytes,9,opt,name=slashing_tx_hex,json=slashingTxHex,proto3" json:"slashing_tx_hex,omitempty"` // delegator_slash_sig_hex is the signature on the slashing tx // by the delegator (i.e., SK corresponding to btc_pk) as string hex. // It will be a part of the witness for the staking tx output. - DelegatorSlashSigHex string `protobuf:"bytes,9,opt,name=delegator_slash_sig_hex,json=delegatorSlashSigHex,proto3" json:"delegator_slash_sig_hex,omitempty"` + DelegatorSlashSigHex string `protobuf:"bytes,10,opt,name=delegator_slash_sig_hex,json=delegatorSlashSigHex,proto3" json:"delegator_slash_sig_hex,omitempty"` // covenant_sigs is a list of adaptor signatures on the slashing tx // by each covenant member // It will be a part of the witness for the staking tx output. - CovenantSigs []*CovenantAdaptorSignatures `protobuf:"bytes,10,rep,name=covenant_sigs,json=covenantSigs,proto3" json:"covenant_sigs,omitempty"` + CovenantSigs []*CovenantAdaptorSignatures `protobuf:"bytes,11,rep,name=covenant_sigs,json=covenantSigs,proto3" json:"covenant_sigs,omitempty"` // staking_output_idx is the index of the staking output in the staking tx - StakingOutputIdx uint32 `protobuf:"varint,11,opt,name=staking_output_idx,json=stakingOutputIdx,proto3" json:"staking_output_idx,omitempty"` + StakingOutputIdx uint32 `protobuf:"varint,12,opt,name=staking_output_idx,json=stakingOutputIdx,proto3" json:"staking_output_idx,omitempty"` // whether this delegation is active - Active bool `protobuf:"varint,12,opt,name=active,proto3" json:"active,omitempty"` + Active bool `protobuf:"varint,13,opt,name=active,proto3" json:"active,omitempty"` // descriptive status of current delegation. - StatusDesc string `protobuf:"bytes,13,opt,name=status_desc,json=statusDesc,proto3" json:"status_desc,omitempty"` + StatusDesc string `protobuf:"bytes,14,opt,name=status_desc,json=statusDesc,proto3" json:"status_desc,omitempty"` // unbonding_time used in unbonding output timelock path and in slashing transactions // change outputs - UnbondingTime uint32 `protobuf:"varint,14,opt,name=unbonding_time,json=unbondingTime,proto3" json:"unbonding_time,omitempty"` + UnbondingTime uint32 `protobuf:"varint,15,opt,name=unbonding_time,json=unbondingTime,proto3" json:"unbonding_time,omitempty"` // undelegation_response is the undelegation info of this delegation. - UndelegationResponse *BTCUndelegationResponse `protobuf:"bytes,15,opt,name=undelegation_response,json=undelegationResponse,proto3" json:"undelegation_response,omitempty"` + UndelegationResponse *BTCUndelegationResponse `protobuf:"bytes,16,opt,name=undelegation_response,json=undelegationResponse,proto3" json:"undelegation_response,omitempty"` // params version used to validate delegation - ParamsVersion uint32 `protobuf:"varint,16,opt,name=params_version,json=paramsVersion,proto3" json:"params_version,omitempty"` + ParamsVersion uint32 `protobuf:"varint,17,opt,name=params_version,json=paramsVersion,proto3" json:"params_version,omitempty"` } func (m *BTCDelegationResponse) Reset() { *m = BTCDelegationResponse{} } @@ -1239,6 +1241,13 @@ func (m *BTCDelegationResponse) GetStakerAddr() string { return "" } +func (m *BTCDelegationResponse) GetStakingTime() uint32 { + if m != nil { + return m.StakingTime + } + return 0 +} + func (m *BTCDelegationResponse) GetStartHeight() uint32 { if m != nil { return m.StartHeight @@ -1629,126 +1638,126 @@ func init() { func init() { proto.RegisterFile("babylon/btcstaking/v1/query.proto", fileDescriptor_74d49d26f7429697) } var fileDescriptor_74d49d26f7429697 = []byte{ - // 1894 bytes of a gzipped FileDescriptorProto + // 1902 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xb4, 0x59, 0xcb, 0x6f, 0xdb, 0xc8, - 0x19, 0x0f, 0x6d, 0x45, 0x89, 0x3f, 0xd9, 0x8e, 0x33, 0xeb, 0x24, 0x8c, 0x1c, 0xdb, 0x09, 0x9b, + 0x19, 0x0f, 0x6d, 0x45, 0xb1, 0x3f, 0xd9, 0x8e, 0x3d, 0xeb, 0x24, 0x8c, 0x1c, 0xdb, 0x09, 0x9b, 0x4d, 0x9c, 0x87, 0xc5, 0x58, 0xf1, 0xee, 0xb6, 0x0d, 0xd2, 0xc4, 0xb2, 0x77, 0x93, 0xec, 0xae, - 0x1b, 0x95, 0x4e, 0x5a, 0xa0, 0x2f, 0x81, 0x22, 0x47, 0x14, 0x1b, 0x99, 0xa3, 0x70, 0x46, 0xae, - 0x8c, 0xc0, 0x97, 0x1e, 0x7a, 0x2b, 0x50, 0xa0, 0xfd, 0x17, 0x16, 0x28, 0xd0, 0x4b, 0x81, 0xe6, - 0xd2, 0x43, 0xef, 0xdb, 0xdb, 0x22, 0x3d, 0x6c, 0x91, 0x43, 0x50, 0x24, 0x45, 0x0b, 0x14, 0xe8, - 0xb5, 0xe7, 0x82, 0x33, 0x43, 0x91, 0x92, 0x48, 0x59, 0xb2, 0xdd, 0x9b, 0x38, 0xf3, 0xbd, 0xe7, - 0xf7, 0xfd, 0xe6, 0x21, 0xb8, 0x54, 0x35, 0xab, 0xbb, 0x0d, 0xe2, 0xe9, 0x55, 0x66, 0x51, 0x66, - 0x3e, 0x73, 0x3d, 0x47, 0xdf, 0x59, 0xd1, 0x9f, 0xb7, 0xb0, 0xbf, 0x5b, 0x68, 0xfa, 0x84, 0x11, - 0x74, 0x46, 0x8a, 0x14, 0x22, 0x91, 0xc2, 0xce, 0x4a, 0x7e, 0xd6, 0x21, 0x0e, 0xe1, 0x12, 0x7a, - 0xf0, 0x4b, 0x08, 0xe7, 0x2f, 0x38, 0x84, 0x38, 0x0d, 0xac, 0x9b, 0x4d, 0x57, 0x37, 0x3d, 0x8f, - 0x30, 0x93, 0xb9, 0xc4, 0xa3, 0x72, 0xf6, 0xbc, 0x45, 0xe8, 0x36, 0xa1, 0x15, 0xa1, 0x26, 0x3e, - 0xe4, 0xd4, 0x65, 0xf1, 0xa5, 0x47, 0x41, 0x54, 0x31, 0x33, 0x57, 0xc2, 0x6f, 0x29, 0x75, 0x5d, - 0x4a, 0x55, 0x4d, 0x8a, 0x45, 0x90, 0x1d, 0xc1, 0xa6, 0xe9, 0xb8, 0x1e, 0xf7, 0x26, 0x65, 0xb5, - 0xe4, 0xd4, 0x9a, 0xa6, 0x6f, 0x6e, 0x87, 0x5e, 0xaf, 0x24, 0xcb, 0xc4, 0x32, 0x15, 0x72, 0x8b, - 0x29, 0xb6, 0x48, 0x53, 0x08, 0x68, 0xb3, 0x80, 0xbe, 0x17, 0x84, 0x53, 0xe6, 0xd6, 0x0d, 0xfc, - 0xbc, 0x85, 0x29, 0xd3, 0x0c, 0x78, 0xaf, 0x6b, 0x94, 0x36, 0x89, 0x47, 0x31, 0xba, 0x03, 0x59, - 0x11, 0x85, 0xaa, 0x5c, 0x54, 0x96, 0x72, 0xc5, 0xf9, 0x42, 0x62, 0x89, 0x0b, 0x42, 0xad, 0x94, - 0xf9, 0xf2, 0xcd, 0xe2, 0x31, 0x43, 0xaa, 0x68, 0x1f, 0xc1, 0x5c, 0xcc, 0x66, 0x69, 0xf7, 0xfb, - 0xd8, 0xa7, 0x2e, 0xf1, 0xa4, 0x4b, 0xa4, 0xc2, 0x89, 0x1d, 0x31, 0xc2, 0x8d, 0x4f, 0x19, 0xe1, - 0xa7, 0xf6, 0x23, 0xb8, 0x90, 0xac, 0x78, 0x14, 0x51, 0x39, 0x30, 0xcf, 0x8d, 0x7f, 0xe2, 0x7a, - 0x66, 0xc3, 0x65, 0xbb, 0x65, 0x9f, 0xec, 0xb8, 0x36, 0xf6, 0xc3, 0x52, 0xa0, 0x4f, 0x00, 0xa2, - 0x15, 0x92, 0x1e, 0xae, 0x14, 0x24, 0x04, 0x82, 0xe5, 0x2c, 0x08, 0xcc, 0xc9, 0xe5, 0x2c, 0x94, - 0x4d, 0x07, 0x4b, 0x5d, 0x23, 0xa6, 0xa9, 0xfd, 0x45, 0x81, 0x85, 0x34, 0x4f, 0x32, 0x91, 0x9f, - 0x02, 0xaa, 0xc9, 0xc9, 0x00, 0x69, 0x62, 0x56, 0x55, 0x2e, 0x8e, 0x2f, 0xe5, 0x8a, 0x7a, 0x4a, - 0x52, 0xbd, 0xd6, 0x42, 0x63, 0xc6, 0xe9, 0x5a, 0xaf, 0x1f, 0xf4, 0xa0, 0x2b, 0x95, 0x31, 0x9e, - 0xca, 0xd5, 0x7d, 0x53, 0x91, 0xf6, 0xe2, 0xb9, 0xac, 0xc9, 0x15, 0xe9, 0x77, 0x2e, 0x6a, 0x76, - 0x09, 0xa6, 0x6a, 0xcd, 0x4a, 0x95, 0x59, 0x95, 0xe6, 0xb3, 0x4a, 0x1d, 0xb7, 0x79, 0xd9, 0x26, - 0x0c, 0xa8, 0x35, 0x4b, 0xcc, 0x2a, 0x3f, 0x7b, 0x88, 0xdb, 0xda, 0x5e, 0x4a, 0xdd, 0x3b, 0xc5, - 0xf8, 0x31, 0x9c, 0xee, 0x2b, 0x86, 0x2c, 0xff, 0xc8, 0xb5, 0x98, 0xe9, 0xad, 0x85, 0xf6, 0x3b, - 0x05, 0xf2, 0xdc, 0x7f, 0xe9, 0xc9, 0xfa, 0x06, 0x6e, 0x60, 0x47, 0xb4, 0x7b, 0x98, 0x40, 0x09, - 0xb2, 0x94, 0x99, 0xac, 0x25, 0x20, 0x35, 0x5d, 0xbc, 0x9e, 0xe2, 0xb1, 0x4b, 0x7b, 0x8b, 0x6b, - 0x18, 0x52, 0xb3, 0x07, 0x38, 0x63, 0x07, 0x06, 0xce, 0x9f, 0x15, 0xd9, 0x38, 0xbd, 0xa1, 0xca, - 0x42, 0x3d, 0x85, 0x53, 0x41, 0xa5, 0xed, 0x68, 0x4a, 0x42, 0xe6, 0xe6, 0x30, 0x41, 0x77, 0x6a, - 0x34, 0x5d, 0x65, 0x56, 0xcc, 0xfc, 0xd1, 0x81, 0xa5, 0x06, 0xd7, 0x12, 0x57, 0xba, 0x4c, 0x7e, - 0x8e, 0xfd, 0x35, 0xf6, 0x10, 0xbb, 0x4e, 0x9d, 0x0d, 0x8f, 0x1c, 0x74, 0x16, 0xb2, 0x75, 0xae, - 0xc3, 0x83, 0xca, 0x18, 0xf2, 0x4b, 0x7b, 0x0c, 0xd7, 0x87, 0xf1, 0x23, 0xab, 0x76, 0x09, 0x26, - 0x77, 0x08, 0x73, 0x3d, 0xa7, 0xd2, 0x0c, 0xe6, 0xb9, 0x9f, 0x8c, 0x91, 0x13, 0x63, 0x5c, 0x45, - 0xdb, 0x84, 0xa5, 0x44, 0x83, 0xeb, 0x2d, 0xdf, 0xc7, 0x1e, 0xe3, 0x42, 0x23, 0x20, 0x3e, 0xad, - 0x0e, 0xdd, 0xe6, 0x64, 0x78, 0x51, 0x92, 0x4a, 0x3c, 0xc9, 0xbe, 0xb0, 0xc7, 0xfa, 0xc3, 0xfe, - 0x95, 0x02, 0x37, 0xb8, 0xa3, 0x35, 0x8b, 0xb9, 0x3b, 0xb8, 0x8f, 0x6e, 0x7a, 0x4b, 0x9e, 0xe6, - 0xea, 0xa8, 0xf0, 0xfb, 0xb5, 0x02, 0x37, 0x87, 0x8b, 0xe7, 0x08, 0x69, 0xf0, 0x07, 0x2e, 0xab, - 0x6f, 0x62, 0x66, 0xfe, 0x5f, 0x69, 0x70, 0x5e, 0x36, 0x26, 0x4f, 0xcc, 0x64, 0xd8, 0xee, 0x2a, - 0xac, 0xf6, 0xa1, 0x64, 0xc9, 0xbe, 0xe9, 0xc1, 0x6b, 0xac, 0xfd, 0x56, 0x81, 0xab, 0x89, 0x48, - 0x49, 0x20, 0xaa, 0x21, 0xfa, 0xe5, 0xa8, 0xd6, 0xf1, 0x5f, 0x4a, 0x4a, 0x3f, 0x24, 0x91, 0x92, - 0x0f, 0xe7, 0x63, 0xa4, 0x44, 0xfc, 0x04, 0x7a, 0xfa, 0x70, 0x5f, 0x7a, 0x22, 0x49, 0xa6, 0x8d, - 0x73, 0x11, 0x51, 0x75, 0x09, 0x1c, 0xdd, 0xba, 0x7e, 0x0a, 0xe7, 0xfb, 0x09, 0x37, 0xac, 0xf8, - 0x32, 0xbc, 0x27, 0x83, 0xad, 0xb0, 0x76, 0xa5, 0x6e, 0xd2, 0x7a, 0xac, 0xee, 0x33, 0x72, 0xea, - 0x49, 0xfb, 0xa1, 0x49, 0xeb, 0x41, 0xd7, 0x3f, 0x4f, 0xda, 0x67, 0x3a, 0x65, 0xda, 0x82, 0xe9, - 0x6e, 0xee, 0x96, 0x3b, 0xdc, 0x68, 0xd4, 0x3d, 0xd5, 0x45, 0xdd, 0xda, 0xd7, 0x59, 0x38, 0x93, - 0xec, 0xee, 0x5b, 0x90, 0x0b, 0x8c, 0x61, 0xbf, 0x62, 0xda, 0xb6, 0xe0, 0xbc, 0x89, 0x92, 0xfa, - 0xea, 0xe5, 0xf2, 0xac, 0xac, 0xd2, 0x9a, 0x6d, 0xfb, 0x98, 0xd2, 0x2d, 0xe6, 0xbb, 0x9e, 0x63, - 0x80, 0x10, 0x0e, 0x06, 0xd1, 0x63, 0xc8, 0x0a, 0x94, 0xf1, 0xc2, 0x4e, 0x96, 0xbe, 0xf9, 0xfa, - 0xcd, 0xe2, 0xaa, 0xe3, 0xb2, 0x7a, 0xab, 0x5a, 0xb0, 0xc8, 0xb6, 0x2e, 0xe3, 0x6d, 0x98, 0x55, - 0xba, 0xec, 0x92, 0xf0, 0x53, 0x67, 0xbb, 0x4d, 0x4c, 0x0b, 0xa5, 0x47, 0xe5, 0xdb, 0xab, 0xb7, - 0xca, 0xad, 0xea, 0x67, 0x78, 0xd7, 0x38, 0x5e, 0x0d, 0x90, 0x89, 0x7e, 0x02, 0xd3, 0x11, 0x72, - 0x1b, 0x2e, 0x65, 0xea, 0xf8, 0xc5, 0xf1, 0x43, 0x19, 0xce, 0x49, 0xd0, 0x7f, 0xee, 0xf2, 0xc6, - 0x98, 0xa4, 0xcc, 0xf4, 0x59, 0x45, 0xb6, 0x58, 0x86, 0x9f, 0x29, 0x73, 0x7c, 0x4c, 0xf4, 0x21, - 0x9a, 0x07, 0xc0, 0x9e, 0x1d, 0x0a, 0x1c, 0xe7, 0x02, 0x13, 0xd8, 0x93, 0x6d, 0x8a, 0xe6, 0x60, - 0x82, 0x11, 0x66, 0x36, 0x2a, 0xd4, 0x64, 0x6a, 0x96, 0x77, 0xe8, 0x49, 0x3e, 0xb0, 0x65, 0x32, - 0x74, 0x19, 0xa6, 0xe3, 0x28, 0xc0, 0x6d, 0xf5, 0x04, 0x07, 0xc0, 0x64, 0x04, 0x00, 0xdc, 0x46, - 0x57, 0xe0, 0x14, 0x6d, 0x98, 0xb4, 0x1e, 0x13, 0x3b, 0xc9, 0xc5, 0xa6, 0xc2, 0x61, 0x21, 0xf7, - 0x01, 0x9c, 0x8b, 0x3a, 0x85, 0x4f, 0x55, 0xa8, 0xeb, 0x70, 0xf9, 0x09, 0x2e, 0x3f, 0xdb, 0x99, - 0xde, 0x0a, 0x66, 0xb7, 0x5c, 0x27, 0x50, 0x7b, 0x0a, 0x53, 0x16, 0xd9, 0xc1, 0x9e, 0xe9, 0xb1, - 0x40, 0x9e, 0xaa, 0xc0, 0x1b, 0xeb, 0x56, 0x0a, 0x78, 0xd6, 0xa5, 0xec, 0x9a, 0x6d, 0x36, 0x03, - 0x4b, 0xae, 0xe3, 0x99, 0xac, 0xe5, 0x63, 0x6a, 0x4c, 0x86, 0x66, 0xb6, 0x5c, 0x87, 0xa2, 0x9b, - 0x80, 0xc2, 0xdc, 0x48, 0x8b, 0x35, 0x5b, 0xac, 0xe2, 0xda, 0x6d, 0x35, 0xc7, 0xeb, 0x13, 0x02, - 0xfc, 0x31, 0x9f, 0x78, 0x64, 0xf3, 0xed, 0xd8, 0xe4, 0xc4, 0xae, 0x4e, 0x5e, 0x54, 0x96, 0x4e, - 0x1a, 0xf2, 0x0b, 0x2d, 0x72, 0xac, 0xb1, 0x16, 0xad, 0xd8, 0x98, 0x5a, 0xea, 0x94, 0xe0, 0x25, - 0x31, 0xb4, 0x81, 0xa9, 0x85, 0xde, 0x87, 0xe9, 0x96, 0x57, 0x25, 0x9e, 0xcd, 0xab, 0xe3, 0x6e, - 0x63, 0x75, 0x9a, 0xbb, 0x98, 0xea, 0x8c, 0x3e, 0x71, 0xb7, 0x31, 0xb2, 0xe0, 0x4c, 0xcb, 0x8b, - 0x1a, 0xa4, 0xe2, 0x4b, 0x30, 0xab, 0xa7, 0x78, 0xa7, 0x14, 0xd2, 0x3b, 0xe5, 0x69, 0x4c, 0xad, - 0xd3, 0x2b, 0xb3, 0xad, 0x84, 0xd1, 0x20, 0x16, 0x71, 0x1f, 0xa8, 0x84, 0x77, 0x90, 0x19, 0x11, - 0x8b, 0x18, 0x95, 0x37, 0x0e, 0xed, 0xe5, 0x38, 0x9c, 0x4b, 0x31, 0x8c, 0x96, 0x60, 0x26, 0x96, - 0x4e, 0x3b, 0x46, 0x0a, 0x51, 0x9a, 0x62, 0xb5, 0xef, 0xc2, 0x5c, 0xb4, 0xda, 0x91, 0x4e, 0xb8, - 0xe2, 0x63, 0x5c, 0x49, 0xed, 0x88, 0x3c, 0x0d, 0x25, 0xe4, 0xaa, 0x5b, 0x30, 0xd7, 0x59, 0xf5, - 0x6e, 0xed, 0x4e, 0x17, 0xe5, 0x8a, 0x97, 0x53, 0xca, 0xd2, 0x59, 0xf4, 0x47, 0x5e, 0x8d, 0x18, - 0x6a, 0x68, 0x28, 0xee, 0x83, 0xb7, 0x4f, 0x02, 0x72, 0x33, 0x49, 0xc8, 0xbd, 0x03, 0xf9, 0x1e, - 0xe4, 0xc6, 0x53, 0x39, 0xce, 0x55, 0xce, 0x75, 0x83, 0x37, 0xca, 0xa4, 0x06, 0x67, 0x23, 0xfc, - 0xc6, 0x74, 0xa9, 0x9a, 0x3d, 0x20, 0x90, 0x67, 0x3b, 0x40, 0x8e, 0x3c, 0x51, 0xcd, 0x82, 0xc5, - 0x7d, 0x36, 0x15, 0x74, 0x1f, 0x32, 0x36, 0x6e, 0x1c, 0xec, 0xe4, 0xcc, 0x35, 0xb5, 0x2f, 0x32, - 0xa0, 0xa6, 0x5e, 0x66, 0x3e, 0x86, 0x5c, 0xd0, 0x05, 0xbe, 0xdb, 0x8c, 0x91, 0xfc, 0x37, 0xc2, - 0xbd, 0x29, 0xf2, 0x20, 0x36, 0xa6, 0x8d, 0x48, 0xd4, 0x88, 0xeb, 0xa1, 0x4d, 0x00, 0x8b, 0x6c, - 0x6f, 0xbb, 0x94, 0x86, 0x3b, 0xdc, 0x44, 0x69, 0xf9, 0xf5, 0x9b, 0xc5, 0x39, 0x61, 0x88, 0xda, - 0xcf, 0x0a, 0x2e, 0xd1, 0xb7, 0x4d, 0x56, 0x2f, 0x7c, 0x8e, 0x1d, 0xd3, 0xda, 0xdd, 0xc0, 0xd6, - 0xab, 0x97, 0xcb, 0x20, 0xfd, 0x6c, 0x60, 0xcb, 0x88, 0x19, 0x40, 0x37, 0x21, 0xc3, 0xf7, 0x81, - 0xf1, 0x7d, 0xf6, 0x01, 0x2e, 0x15, 0xdb, 0x01, 0x32, 0x47, 0xb3, 0x03, 0xdc, 0x85, 0xf1, 0x26, - 0x69, 0x72, 0x90, 0xe4, 0x8a, 0x37, 0xd2, 0x2e, 0xed, 0x3e, 0x21, 0xb5, 0xc7, 0xb5, 0x32, 0xa1, - 0x14, 0xf3, 0xa8, 0x4b, 0x4f, 0xd6, 0x8d, 0x40, 0x0f, 0xad, 0xc2, 0x59, 0x0e, 0x1a, 0x6c, 0x57, - 0xa4, 0x6a, 0x48, 0xe5, 0x82, 0xac, 0x67, 0xe5, 0x6c, 0x49, 0x4c, 0x4a, 0x56, 0x0f, 0xc8, 0x2d, - 0xd4, 0x62, 0x56, 0xa8, 0x71, 0x42, 0x92, 0x9b, 0xd4, 0x60, 0x96, 0x94, 0x8e, 0x8e, 0x68, 0x27, - 0x07, 0x1e, 0xc3, 0x27, 0xfa, 0x8e, 0xe1, 0x81, 0xea, 0xcf, 0x4c, 0xb7, 0x81, 0x6d, 0x15, 0x04, - 0x2f, 0x8a, 0xaf, 0xe2, 0x17, 0xa7, 0xe1, 0x38, 0x3f, 0x11, 0xa0, 0x5f, 0x2a, 0x90, 0x15, 0x6f, - 0x12, 0xe8, 0x5a, 0x4a, 0xf6, 0xfd, 0x4f, 0x33, 0xf9, 0xeb, 0xc3, 0x88, 0x0a, 0xd8, 0x69, 0xef, - 0xff, 0xe2, 0xaf, 0xff, 0xf8, 0xcd, 0xd8, 0x22, 0x9a, 0xd7, 0x07, 0x3d, 0x29, 0xa1, 0xdf, 0x2b, - 0x70, 0xaa, 0xe7, 0x71, 0x05, 0x15, 0xf7, 0x77, 0xd3, 0xfb, 0x84, 0x93, 0xbf, 0x3d, 0x92, 0x8e, - 0x8c, 0x51, 0xe7, 0x31, 0x5e, 0x43, 0x57, 0x07, 0xc6, 0xa8, 0xbf, 0x90, 0xc4, 0xbc, 0x87, 0xfe, - 0xa8, 0xc0, 0xe9, 0xbe, 0x4b, 0x04, 0x5a, 0x1d, 0xe4, 0x3b, 0xed, 0x71, 0x27, 0xff, 0xc1, 0x88, - 0x5a, 0x32, 0xe6, 0x15, 0x1e, 0xf3, 0x0d, 0x74, 0x2d, 0x25, 0xe6, 0xfe, 0xeb, 0x0b, 0x7a, 0xa5, - 0xc0, 0x4c, 0xaf, 0x41, 0x74, 0x7b, 0x14, 0xf7, 0x61, 0xcc, 0xab, 0xa3, 0x29, 0xc9, 0x90, 0xb7, - 0x78, 0xc8, 0x9b, 0xe8, 0xb3, 0xa1, 0x43, 0xd6, 0x5f, 0x74, 0xdd, 0x2c, 0xf6, 0xfa, 0x45, 0xd0, - 0x1f, 0x14, 0x98, 0xee, 0x7e, 0x95, 0x40, 0x2b, 0x83, 0xa2, 0x4b, 0x7c, 0x6c, 0xc9, 0x17, 0x47, - 0x51, 0x91, 0xe9, 0x7c, 0xc4, 0xd3, 0x59, 0x41, 0xba, 0x9e, 0xfa, 0x10, 0x1a, 0xbf, 0x72, 0xe8, - 0x2f, 0xc4, 0xc1, 0x63, 0x0f, 0xfd, 0x53, 0x81, 0xc5, 0x7d, 0x2e, 0xa2, 0xa8, 0x34, 0x28, 0xa0, - 0xe1, 0x6e, 0xd5, 0xf9, 0xf5, 0x43, 0xd9, 0x90, 0x59, 0x7e, 0x9b, 0x67, 0xb9, 0x8a, 0x8a, 0x23, - 0x2c, 0x9a, 0x60, 0xa8, 0x3d, 0xf4, 0x5f, 0x05, 0xe6, 0x07, 0x3e, 0x85, 0xa0, 0xfb, 0xa3, 0x00, - 0x29, 0xe9, 0xb5, 0x26, 0xbf, 0x76, 0x08, 0x0b, 0x32, 0xc5, 0x32, 0x4f, 0xf1, 0x53, 0xf4, 0xf0, - 0xe0, 0xb8, 0xe4, 0x14, 0x1c, 0x25, 0xfe, 0x6f, 0x05, 0x2e, 0x0c, 0x7a, 0x63, 0x41, 0xf7, 0x46, - 0x89, 0x3a, 0xe1, 0xb1, 0x27, 0x7f, 0xff, 0xe0, 0x06, 0x64, 0xd6, 0x0f, 0x78, 0xd6, 0x6b, 0xe8, - 0xde, 0x21, 0xb3, 0xe6, 0xd4, 0xdd, 0xf3, 0xbe, 0x30, 0x98, 0xba, 0x93, 0xdf, 0x2a, 0x06, 0x53, - 0x77, 0xca, 0x03, 0xc6, 0xbe, 0xd4, 0x6d, 0x86, 0x7a, 0x72, 0x9b, 0x45, 0xff, 0x51, 0x60, 0x6e, - 0xc0, 0xeb, 0x01, 0xfa, 0xce, 0x28, 0x85, 0x4d, 0x60, 0x92, 0x7b, 0x07, 0xd6, 0x97, 0x19, 0x6d, - 0xf2, 0x8c, 0x1e, 0xa0, 0x8f, 0x0f, 0xbe, 0x2e, 0x31, 0xd6, 0x41, 0x7f, 0x52, 0x60, 0xaa, 0x8b, - 0xc0, 0xd0, 0xad, 0xa1, 0xb9, 0x2e, 0xcc, 0x69, 0x65, 0x04, 0x0d, 0x99, 0xc5, 0x3a, 0xcf, 0xe2, - 0x2e, 0xba, 0x33, 0x14, 0x39, 0x72, 0x6e, 0xec, 0x7d, 0xcf, 0xd8, 0x2b, 0x7d, 0xf7, 0xcb, 0xb7, - 0x0b, 0xca, 0x57, 0x6f, 0x17, 0x94, 0xbf, 0xbf, 0x5d, 0x50, 0x7e, 0xfd, 0x6e, 0xe1, 0xd8, 0x57, - 0xef, 0x16, 0x8e, 0xfd, 0xed, 0xdd, 0xc2, 0xb1, 0x1f, 0x0e, 0x71, 0xe8, 0x6b, 0xc7, 0x3d, 0xf2, - 0x13, 0x60, 0x35, 0xcb, 0xff, 0x6f, 0xba, 0xfd, 0xbf, 0x00, 0x00, 0x00, 0xff, 0xff, 0x71, 0x38, - 0x32, 0x57, 0xb9, 0x1b, 0x00, 0x00, + 0x1b, 0x95, 0x4e, 0x5a, 0xa0, 0x2f, 0x81, 0x22, 0x47, 0x14, 0x1b, 0x89, 0x64, 0x38, 0x23, 0x57, + 0x46, 0xe0, 0x4b, 0x0f, 0xbd, 0x15, 0x28, 0xd0, 0xfe, 0x0b, 0x0b, 0x14, 0xe8, 0xa5, 0x40, 0x73, + 0xe9, 0xa1, 0xf7, 0xed, 0x6d, 0x91, 0x1e, 0x5a, 0xe4, 0x10, 0x14, 0x49, 0xd1, 0x02, 0x05, 0x7a, + 0xed, 0xa1, 0xa7, 0x82, 0x33, 0x43, 0x91, 0x92, 0x48, 0x59, 0xb2, 0xdd, 0x9b, 0x38, 0xf3, 0xbd, + 0x1f, 0xbf, 0x99, 0xf9, 0x04, 0x97, 0xaa, 0x7a, 0x75, 0xaf, 0xe1, 0x3a, 0x6a, 0x95, 0x1a, 0x84, + 0xea, 0xcf, 0x6c, 0xc7, 0x52, 0x77, 0xd7, 0xd4, 0xe7, 0x2d, 0xec, 0xef, 0x15, 0x3c, 0xdf, 0xa5, + 0x2e, 0x3a, 0x23, 0x48, 0x0a, 0x11, 0x49, 0x61, 0x77, 0x2d, 0x3f, 0x6f, 0xb9, 0x96, 0xcb, 0x28, + 0xd4, 0xe0, 0x17, 0x27, 0xce, 0x5f, 0xb0, 0x5c, 0xd7, 0x6a, 0x60, 0x55, 0xf7, 0x6c, 0x55, 0x77, + 0x1c, 0x97, 0xea, 0xd4, 0x76, 0x1d, 0x22, 0x76, 0xcf, 0x1b, 0x2e, 0x69, 0xba, 0xa4, 0xc2, 0xd9, + 0xf8, 0x87, 0xd8, 0xba, 0xcc, 0xbf, 0xd4, 0xc8, 0x88, 0x2a, 0xa6, 0xfa, 0x5a, 0xf8, 0x2d, 0xa8, + 0xae, 0x0b, 0xaa, 0xaa, 0x4e, 0x30, 0x37, 0xb2, 0x43, 0xe8, 0xe9, 0x96, 0xed, 0x30, 0x6d, 0x82, + 0x56, 0x49, 0x76, 0xcd, 0xd3, 0x7d, 0xbd, 0x19, 0x6a, 0xbd, 0x92, 0x4c, 0x13, 0xf3, 0x94, 0xd3, + 0x2d, 0xa7, 0xc8, 0x72, 0x3d, 0x4e, 0xa0, 0xcc, 0x03, 0xfa, 0x4e, 0x60, 0x4e, 0x99, 0x49, 0xd7, + 0xf0, 0xf3, 0x16, 0x26, 0x54, 0xd1, 0xe0, 0xbd, 0xae, 0x55, 0xe2, 0xb9, 0x0e, 0xc1, 0xe8, 0x0e, + 0x64, 0xb9, 0x15, 0xb2, 0x74, 0x51, 0x5a, 0xc9, 0x15, 0x17, 0x0b, 0x89, 0x21, 0x2e, 0x70, 0xb6, + 0x52, 0xe6, 0xcb, 0x37, 0xcb, 0x27, 0x34, 0xc1, 0xa2, 0x7c, 0x04, 0x0b, 0x31, 0x99, 0xa5, 0xbd, + 0xef, 0x62, 0x9f, 0xd8, 0xae, 0x23, 0x54, 0x22, 0x19, 0x4e, 0xed, 0xf2, 0x15, 0x26, 0x7c, 0x5a, + 0x0b, 0x3f, 0x95, 0x1f, 0xc0, 0x85, 0x64, 0xc6, 0xe3, 0xb0, 0xca, 0x82, 0x45, 0x26, 0xfc, 0x13, + 0xdb, 0xd1, 0x1b, 0x36, 0xdd, 0x2b, 0xfb, 0xee, 0xae, 0x6d, 0x62, 0x3f, 0x0c, 0x05, 0xfa, 0x04, + 0x20, 0xca, 0x90, 0xd0, 0x70, 0xa5, 0x20, 0x4a, 0x20, 0x48, 0x67, 0x81, 0xd7, 0x9c, 0x48, 0x67, + 0xa1, 0xac, 0x5b, 0x58, 0xf0, 0x6a, 0x31, 0x4e, 0xe5, 0x4f, 0x12, 0x2c, 0xa5, 0x69, 0x12, 0x8e, + 0xfc, 0x18, 0x50, 0x4d, 0x6c, 0x06, 0x95, 0xc6, 0x77, 0x65, 0xe9, 0xe2, 0xf8, 0x4a, 0xae, 0xa8, + 0xa6, 0x38, 0xd5, 0x2b, 0x2d, 0x14, 0xa6, 0xcd, 0xd5, 0x7a, 0xf5, 0xa0, 0x07, 0x5d, 0xae, 0x8c, + 0x31, 0x57, 0xae, 0x1e, 0xe8, 0x8a, 0x90, 0x17, 0xf7, 0x65, 0x43, 0x64, 0xa4, 0x5f, 0x39, 0x8f, + 0xd9, 0x25, 0x98, 0xae, 0x79, 0x95, 0x2a, 0x35, 0x2a, 0xde, 0xb3, 0x4a, 0x1d, 0xb7, 0x59, 0xd8, + 0x26, 0x35, 0xa8, 0x79, 0x25, 0x6a, 0x94, 0x9f, 0x3d, 0xc4, 0x6d, 0x65, 0x3f, 0x25, 0xee, 0x9d, + 0x60, 0xfc, 0x10, 0xe6, 0xfa, 0x82, 0x21, 0xc2, 0x3f, 0x72, 0x2c, 0x66, 0x7b, 0x63, 0xa1, 0xfc, + 0x46, 0x82, 0x3c, 0xd3, 0x5f, 0x7a, 0xb2, 0xb9, 0x85, 0x1b, 0xd8, 0xe2, 0xed, 0x1e, 0x3a, 0x50, + 0x82, 0x2c, 0xa1, 0x3a, 0x6d, 0xf1, 0x92, 0x9a, 0x29, 0x5e, 0x4f, 0xd1, 0xd8, 0xc5, 0xbd, 0xc3, + 0x38, 0x34, 0xc1, 0xd9, 0x53, 0x38, 0x63, 0x87, 0x2e, 0x9c, 0x3f, 0x4a, 0xa2, 0x71, 0x7a, 0x4d, + 0x15, 0x81, 0x7a, 0x0a, 0xa7, 0x83, 0x48, 0x9b, 0xd1, 0x96, 0x28, 0x99, 0x9b, 0xc3, 0x18, 0xdd, + 0x89, 0xd1, 0x4c, 0x95, 0x1a, 0x31, 0xf1, 0xc7, 0x57, 0x2c, 0x35, 0xb8, 0x96, 0x98, 0xe9, 0xb2, + 0xfb, 0x53, 0xec, 0x6f, 0xd0, 0x87, 0xd8, 0xb6, 0xea, 0x74, 0xf8, 0xca, 0x41, 0x67, 0x21, 0x5b, + 0x67, 0x3c, 0xcc, 0xa8, 0x8c, 0x26, 0xbe, 0x94, 0xc7, 0x70, 0x7d, 0x18, 0x3d, 0x22, 0x6a, 0x97, + 0x60, 0x6a, 0xd7, 0xa5, 0xb6, 0x63, 0x55, 0xbc, 0x60, 0x9f, 0xe9, 0xc9, 0x68, 0x39, 0xbe, 0xc6, + 0x58, 0x94, 0x6d, 0x58, 0x49, 0x14, 0xb8, 0xd9, 0xf2, 0x7d, 0xec, 0x50, 0x46, 0x34, 0x42, 0xc5, + 0xa7, 0xc5, 0xa1, 0x5b, 0x9c, 0x30, 0x2f, 0x72, 0x52, 0x8a, 0x3b, 0xd9, 0x67, 0xf6, 0x58, 0xbf, + 0xd9, 0xbf, 0x90, 0xe0, 0x06, 0x53, 0xb4, 0x61, 0x50, 0x7b, 0x17, 0xf7, 0xc1, 0x4d, 0x6f, 0xc8, + 0xd3, 0x54, 0x1d, 0x57, 0xfd, 0xfe, 0x45, 0x82, 0x9b, 0xc3, 0xd9, 0x73, 0x8c, 0x30, 0xf8, 0x3d, + 0x9b, 0xd6, 0xb7, 0x31, 0xd5, 0xff, 0xaf, 0x30, 0xb8, 0x28, 0x1a, 0x93, 0x39, 0xa6, 0x53, 0x6c, + 0x76, 0x05, 0x56, 0xf9, 0x50, 0xa0, 0x64, 0xdf, 0xf6, 0xe0, 0x1c, 0x2b, 0xbf, 0x96, 0xe0, 0x6a, + 0x62, 0xa5, 0x24, 0x00, 0xd5, 0x10, 0xfd, 0x72, 0x5c, 0x79, 0xfc, 0xa7, 0x94, 0xd2, 0x0f, 0x49, + 0xa0, 0xe4, 0xc3, 0xf9, 0x18, 0x28, 0xb9, 0x7e, 0x02, 0x3c, 0x7d, 0x78, 0x20, 0x3c, 0xb9, 0x49, + 0xa2, 0xb5, 0x73, 0x11, 0x50, 0x75, 0x11, 0x1c, 0x5f, 0x5e, 0x3f, 0x85, 0xf3, 0xfd, 0x80, 0x1b, + 0x46, 0x7c, 0x15, 0xde, 0x13, 0xc6, 0x56, 0x68, 0xbb, 0x52, 0xd7, 0x49, 0x3d, 0x16, 0xf7, 0x59, + 0xb1, 0xf5, 0xa4, 0xfd, 0x50, 0x27, 0xf5, 0xa0, 0xeb, 0x9f, 0x27, 0x9d, 0x33, 0x9d, 0x30, 0xed, + 0xc0, 0x4c, 0x37, 0x76, 0x8b, 0x13, 0x6e, 0x34, 0xe8, 0x9e, 0xee, 0x82, 0x6e, 0xe5, 0xbf, 0x59, + 0x38, 0x93, 0xac, 0xee, 0x1b, 0x90, 0x0b, 0x84, 0x61, 0xbf, 0xa2, 0x9b, 0x26, 0xc7, 0xbc, 0xc9, + 0x92, 0xfc, 0xea, 0xe5, 0xea, 0xbc, 0x88, 0xd2, 0x86, 0x69, 0xfa, 0x98, 0x90, 0x1d, 0xea, 0xdb, + 0x8e, 0xa5, 0x01, 0x27, 0x0e, 0x16, 0xd1, 0x63, 0xc8, 0xf2, 0x2a, 0x63, 0x81, 0x9d, 0x2a, 0x7d, + 0xfd, 0xf5, 0x9b, 0xe5, 0x75, 0xcb, 0xa6, 0xf5, 0x56, 0xb5, 0x60, 0xb8, 0x4d, 0x55, 0xd8, 0xdb, + 0xd0, 0xab, 0x64, 0xd5, 0x76, 0xc3, 0x4f, 0x95, 0xee, 0x79, 0x98, 0x14, 0x4a, 0x8f, 0xca, 0xb7, + 0xd7, 0x6f, 0x95, 0x5b, 0xd5, 0xcf, 0xf0, 0x9e, 0x76, 0xb2, 0x1a, 0x54, 0x26, 0xfa, 0x11, 0xcc, + 0x44, 0x95, 0xdb, 0xb0, 0x09, 0x95, 0xc7, 0x2f, 0x8e, 0x1f, 0x49, 0x70, 0x4e, 0x14, 0xfd, 0xe7, + 0x36, 0x6b, 0x8c, 0xa9, 0x4e, 0x9a, 0xec, 0x26, 0x96, 0x33, 0xec, 0x4e, 0x99, 0x0b, 0xf3, 0x63, + 0x37, 0xb1, 0x20, 0xf1, 0x69, 0x45, 0x74, 0xe1, 0xc9, 0x0e, 0x89, 0x2f, 0x20, 0x09, 0x2d, 0x02, + 0x60, 0xc7, 0x0c, 0x09, 0xb2, 0x8c, 0x60, 0x12, 0x3b, 0xa2, 0x93, 0xd1, 0x02, 0x4c, 0x52, 0x97, + 0xea, 0x8d, 0x0a, 0xd1, 0xa9, 0x7c, 0x8a, 0x35, 0xf1, 0x04, 0x5b, 0xd8, 0xd1, 0x29, 0xba, 0x0c, + 0x33, 0xf1, 0x42, 0xc1, 0x6d, 0x79, 0x82, 0xd5, 0xc8, 0x54, 0x54, 0x23, 0xb8, 0x8d, 0xae, 0xc0, + 0x69, 0xd2, 0xd0, 0x49, 0x3d, 0x46, 0x36, 0xc9, 0xc8, 0xa6, 0xc3, 0x65, 0x4e, 0xf7, 0x01, 0x9c, + 0x8b, 0x9a, 0x89, 0x6d, 0x55, 0x88, 0x6d, 0x31, 0x7a, 0x60, 0xf4, 0xf3, 0x9d, 0xed, 0x9d, 0x60, + 0x77, 0xc7, 0xb6, 0x02, 0xb6, 0xa7, 0x30, 0x6d, 0xb8, 0xbb, 0xd8, 0xd1, 0x1d, 0x1a, 0xd0, 0x13, + 0x39, 0xc7, 0x7a, 0xef, 0x56, 0x4a, 0x7d, 0x6d, 0x0a, 0xda, 0x0d, 0x53, 0xf7, 0x02, 0x49, 0xb6, + 0xe5, 0xe8, 0xb4, 0xe5, 0x63, 0xa2, 0x4d, 0x85, 0x62, 0x76, 0x6c, 0x8b, 0xa0, 0x9b, 0x80, 0x42, + 0xdf, 0xdc, 0x16, 0xf5, 0x5a, 0xb4, 0x62, 0x9b, 0x6d, 0x79, 0x8a, 0xc5, 0x27, 0xec, 0x81, 0xc7, + 0x6c, 0xe3, 0x91, 0xc9, 0x4e, 0x6c, 0x9d, 0x61, 0xbf, 0x3c, 0x7d, 0x51, 0x5a, 0x99, 0xd0, 0xc4, + 0x17, 0x5a, 0x66, 0xe5, 0x48, 0x5b, 0xa4, 0x62, 0x62, 0x62, 0xc8, 0x33, 0x1c, 0xba, 0xf8, 0xd2, + 0x16, 0x26, 0x06, 0x7a, 0x1f, 0x66, 0x5a, 0x4e, 0xd5, 0x75, 0xcc, 0x4e, 0x1a, 0x4f, 0x33, 0x15, + 0xd3, 0x9d, 0x55, 0x96, 0x48, 0x03, 0xce, 0xb4, 0x9c, 0xa8, 0x87, 0x2a, 0xbe, 0xa8, 0x77, 0x79, + 0x96, 0x35, 0x53, 0x21, 0xbd, 0x99, 0x9e, 0xc6, 0xd8, 0x3a, 0xed, 0x34, 0xdf, 0x4a, 0x58, 0x0d, + 0x6c, 0xe1, 0x4f, 0x86, 0x4a, 0xf8, 0x4c, 0x99, 0xe3, 0xb6, 0xf0, 0x55, 0xf1, 0x28, 0x51, 0x5e, + 0x8e, 0xc3, 0xb9, 0x14, 0xc1, 0x68, 0x05, 0x66, 0x63, 0xee, 0xb4, 0x63, 0xb8, 0x11, 0xb9, 0xc9, + 0xb3, 0x7d, 0x17, 0x16, 0xa2, 0x6c, 0x47, 0x3c, 0x61, 0xc6, 0xc7, 0x18, 0x93, 0xdc, 0x21, 0x79, + 0x1a, 0x52, 0x88, 0xac, 0x1b, 0xb0, 0xd0, 0xc9, 0x7a, 0x37, 0x77, 0xa7, 0xd1, 0x72, 0xc5, 0xcb, + 0x29, 0x61, 0xe9, 0x24, 0xfd, 0x91, 0x53, 0x73, 0x35, 0x39, 0x14, 0x14, 0xd7, 0xc1, 0x3a, 0x2c, + 0xa1, 0x72, 0x33, 0x49, 0x95, 0x7b, 0x07, 0xf2, 0x3d, 0x95, 0x1b, 0x77, 0xe5, 0x24, 0x63, 0x39, + 0xd7, 0x5d, 0xbc, 0x91, 0x27, 0x35, 0x38, 0x1b, 0xd5, 0x6f, 0x8c, 0x97, 0xc8, 0xd9, 0x43, 0x16, + 0xf2, 0x7c, 0xa7, 0x90, 0x23, 0x4d, 0x44, 0x31, 0x60, 0xf9, 0x80, 0x73, 0x07, 0xdd, 0x87, 0x8c, + 0x89, 0x1b, 0x87, 0xbb, 0x5c, 0x33, 0x4e, 0xe5, 0x8b, 0x0c, 0xc8, 0xa9, 0xef, 0x9d, 0x8f, 0x21, + 0x17, 0x74, 0x81, 0x6f, 0x7b, 0xb1, 0x73, 0xe0, 0x6b, 0xe1, 0xf1, 0x15, 0x69, 0xe0, 0x67, 0xd7, + 0x56, 0x44, 0xaa, 0xc5, 0xf9, 0xd0, 0x36, 0x80, 0xe1, 0x36, 0x9b, 0x36, 0x21, 0xe1, 0x21, 0x38, + 0x59, 0x5a, 0x7d, 0xfd, 0x66, 0x79, 0x81, 0x0b, 0x22, 0xe6, 0xb3, 0x82, 0xed, 0xaa, 0x4d, 0x9d, + 0xd6, 0x0b, 0x9f, 0x63, 0x4b, 0x37, 0xf6, 0xb6, 0xb0, 0xf1, 0xea, 0xe5, 0x2a, 0x08, 0x3d, 0x5b, + 0xd8, 0xd0, 0x62, 0x02, 0xd0, 0x4d, 0xc8, 0xb0, 0xa3, 0x62, 0xfc, 0x80, 0xa3, 0x82, 0x51, 0xc5, + 0x0e, 0x89, 0xcc, 0xf1, 0x1c, 0x12, 0x77, 0x61, 0xdc, 0x73, 0x3d, 0x56, 0x24, 0xb9, 0xe2, 0x8d, + 0xb4, 0x77, 0xbd, 0xef, 0xba, 0xb5, 0xc7, 0xb5, 0xb2, 0x4b, 0x08, 0x66, 0x56, 0x97, 0x9e, 0x6c, + 0x6a, 0x01, 0x1f, 0x5a, 0x87, 0xb3, 0xac, 0x68, 0xb0, 0x59, 0x11, 0xac, 0x71, 0x28, 0xcf, 0x68, + 0xf3, 0x62, 0xb7, 0xc4, 0x37, 0x05, 0xaa, 0x07, 0xe0, 0x16, 0x72, 0x51, 0x23, 0xe4, 0x38, 0x25, + 0xc0, 0x4d, 0x70, 0x50, 0x43, 0x50, 0x47, 0xb7, 0xb8, 0x89, 0x81, 0x37, 0xf5, 0xc9, 0xbe, 0x9b, + 0x7a, 0xc0, 0xfa, 0x13, 0xdd, 0x6e, 0x60, 0x93, 0x41, 0xf8, 0x84, 0x26, 0xbe, 0x8a, 0x5f, 0xcc, + 0xc1, 0x49, 0x76, 0x69, 0x40, 0x3f, 0x97, 0x20, 0xcb, 0xc7, 0x16, 0xe8, 0x5a, 0x8a, 0xf7, 0xfd, + 0xd3, 0x9b, 0xfc, 0xf5, 0x61, 0x48, 0x79, 0xd9, 0x29, 0xef, 0xff, 0xec, 0xcf, 0x7f, 0xff, 0xd5, + 0xd8, 0x32, 0x5a, 0x54, 0x07, 0x4d, 0x9d, 0xd0, 0x6f, 0x25, 0x38, 0xdd, 0x33, 0x7f, 0x41, 0xc5, + 0x83, 0xd5, 0xf4, 0x4e, 0x79, 0xf2, 0xb7, 0x47, 0xe2, 0x11, 0x36, 0xaa, 0xcc, 0xc6, 0x6b, 0xe8, + 0xea, 0x40, 0x1b, 0xd5, 0x17, 0x02, 0x98, 0xf7, 0xd1, 0xef, 0x25, 0x98, 0xeb, 0x7b, 0x67, 0xa0, + 0xf5, 0x41, 0xba, 0xd3, 0xe6, 0x3f, 0xf9, 0x0f, 0x46, 0xe4, 0x12, 0x36, 0xaf, 0x31, 0x9b, 0x6f, + 0xa0, 0x6b, 0x29, 0x36, 0xf7, 0xbf, 0x70, 0xd0, 0x2b, 0x09, 0x66, 0x7b, 0x05, 0xa2, 0xdb, 0xa3, + 0xa8, 0x0f, 0x6d, 0x5e, 0x1f, 0x8d, 0x49, 0x98, 0xbc, 0xc3, 0x4c, 0xde, 0x46, 0x9f, 0x0d, 0x6d, + 0xb2, 0xfa, 0xa2, 0xeb, 0xf1, 0xb1, 0xdf, 0x4f, 0x82, 0x7e, 0x27, 0xc1, 0x4c, 0xf7, 0xe0, 0x02, + 0xad, 0x0d, 0xb2, 0x2e, 0x71, 0x1e, 0x93, 0x2f, 0x8e, 0xc2, 0x22, 0xdc, 0xf9, 0x88, 0xb9, 0xb3, + 0x86, 0x54, 0x35, 0x75, 0x56, 0x1a, 0x7f, 0x95, 0xa8, 0x2f, 0xf8, 0xc5, 0x63, 0x1f, 0xfd, 0x43, + 0x82, 0xe5, 0x03, 0xde, 0xaa, 0xa8, 0x34, 0xc8, 0xa0, 0xe1, 0x1e, 0xde, 0xf9, 0xcd, 0x23, 0xc9, + 0x10, 0x5e, 0x7e, 0x93, 0x79, 0xb9, 0x8e, 0x8a, 0x23, 0x24, 0x8d, 0x23, 0xd4, 0x3e, 0xfa, 0x8f, + 0x04, 0x8b, 0x03, 0xa7, 0x25, 0xe8, 0xfe, 0x28, 0x85, 0x94, 0x34, 0xd0, 0xc9, 0x6f, 0x1c, 0x41, + 0x82, 0x70, 0xb1, 0xcc, 0x5c, 0xfc, 0x14, 0x3d, 0x3c, 0x7c, 0x5d, 0x32, 0x08, 0x8e, 0x1c, 0xff, + 0x97, 0x04, 0x17, 0x06, 0x8d, 0x61, 0xd0, 0xbd, 0x51, 0xac, 0x4e, 0x98, 0x07, 0xe5, 0xef, 0x1f, + 0x5e, 0x80, 0xf0, 0xfa, 0x01, 0xf3, 0x7a, 0x03, 0xdd, 0x3b, 0xa2, 0xd7, 0x0c, 0xba, 0x7b, 0x46, + 0x10, 0x83, 0xa1, 0x3b, 0x79, 0x9c, 0x31, 0x18, 0xba, 0x53, 0x66, 0x1c, 0x07, 0x42, 0xb7, 0x1e, + 0xf2, 0x89, 0x63, 0x16, 0xfd, 0x5b, 0x82, 0x85, 0x01, 0x03, 0x06, 0xf4, 0xad, 0x51, 0x02, 0x9b, + 0x80, 0x24, 0xf7, 0x0e, 0xcd, 0x2f, 0x3c, 0xda, 0x66, 0x1e, 0x3d, 0x40, 0x1f, 0x1f, 0x3e, 0x2f, + 0x31, 0xd4, 0x41, 0x7f, 0x90, 0x60, 0xba, 0x0b, 0xc0, 0xd0, 0xad, 0xa1, 0xb1, 0x2e, 0xf4, 0x69, + 0x6d, 0x04, 0x0e, 0xe1, 0xc5, 0x26, 0xf3, 0xe2, 0x2e, 0xba, 0x33, 0x14, 0x38, 0x32, 0x6c, 0xec, + 0x1d, 0x79, 0xec, 0x97, 0xbe, 0xfd, 0xe5, 0xdb, 0x25, 0xe9, 0xab, 0xb7, 0x4b, 0xd2, 0xdf, 0xde, + 0x2e, 0x49, 0xbf, 0x7c, 0xb7, 0x74, 0xe2, 0xab, 0x77, 0x4b, 0x27, 0xfe, 0xfa, 0x6e, 0xe9, 0xc4, + 0xf7, 0x87, 0xb8, 0xf4, 0xb5, 0xe3, 0x1a, 0xd9, 0x0d, 0xb0, 0x9a, 0x65, 0x7f, 0x49, 0xdd, 0xfe, + 0x5f, 0x00, 0x00, 0x00, 0xff, 0xff, 0x95, 0x54, 0x9e, 0x1b, 0xdc, 0x1b, 0x00, 0x00, } // Reference imports to suppress errors if they are not otherwise used. @@ -3017,7 +3026,7 @@ func (m *BTCDelegationResponse) MarshalToSizedBuffer(dAtA []byte) (int, error) { i-- dAtA[i] = 0x1 i-- - dAtA[i] = 0x80 + dAtA[i] = 0x88 } if m.UndelegationResponse != nil { { @@ -3029,19 +3038,21 @@ func (m *BTCDelegationResponse) MarshalToSizedBuffer(dAtA []byte) (int, error) { i = encodeVarintQuery(dAtA, i, uint64(size)) } i-- - dAtA[i] = 0x7a + dAtA[i] = 0x1 + i-- + dAtA[i] = 0x82 } if m.UnbondingTime != 0 { i = encodeVarintQuery(dAtA, i, uint64(m.UnbondingTime)) i-- - dAtA[i] = 0x70 + dAtA[i] = 0x78 } if len(m.StatusDesc) > 0 { i -= len(m.StatusDesc) copy(dAtA[i:], m.StatusDesc) i = encodeVarintQuery(dAtA, i, uint64(len(m.StatusDesc))) i-- - dAtA[i] = 0x6a + dAtA[i] = 0x72 } if m.Active { i-- @@ -3051,12 +3062,12 @@ func (m *BTCDelegationResponse) MarshalToSizedBuffer(dAtA []byte) (int, error) { dAtA[i] = 0 } i-- - dAtA[i] = 0x60 + dAtA[i] = 0x68 } if m.StakingOutputIdx != 0 { i = encodeVarintQuery(dAtA, i, uint64(m.StakingOutputIdx)) i-- - dAtA[i] = 0x58 + dAtA[i] = 0x60 } if len(m.CovenantSigs) > 0 { for iNdEx := len(m.CovenantSigs) - 1; iNdEx >= 0; iNdEx-- { @@ -3069,7 +3080,7 @@ func (m *BTCDelegationResponse) MarshalToSizedBuffer(dAtA []byte) (int, error) { i = encodeVarintQuery(dAtA, i, uint64(size)) } i-- - dAtA[i] = 0x52 + dAtA[i] = 0x5a } } if len(m.DelegatorSlashSigHex) > 0 { @@ -3077,35 +3088,40 @@ func (m *BTCDelegationResponse) MarshalToSizedBuffer(dAtA []byte) (int, error) { copy(dAtA[i:], m.DelegatorSlashSigHex) i = encodeVarintQuery(dAtA, i, uint64(len(m.DelegatorSlashSigHex))) i-- - dAtA[i] = 0x4a + dAtA[i] = 0x52 } if len(m.SlashingTxHex) > 0 { i -= len(m.SlashingTxHex) copy(dAtA[i:], m.SlashingTxHex) i = encodeVarintQuery(dAtA, i, uint64(len(m.SlashingTxHex))) i-- - dAtA[i] = 0x42 + dAtA[i] = 0x4a } if len(m.StakingTxHex) > 0 { i -= len(m.StakingTxHex) copy(dAtA[i:], m.StakingTxHex) i = encodeVarintQuery(dAtA, i, uint64(len(m.StakingTxHex))) i-- - dAtA[i] = 0x3a + dAtA[i] = 0x42 } if m.TotalSat != 0 { i = encodeVarintQuery(dAtA, i, uint64(m.TotalSat)) i-- - dAtA[i] = 0x30 + dAtA[i] = 0x38 } if m.EndHeight != 0 { i = encodeVarintQuery(dAtA, i, uint64(m.EndHeight)) i-- - dAtA[i] = 0x28 + dAtA[i] = 0x30 } if m.StartHeight != 0 { i = encodeVarintQuery(dAtA, i, uint64(m.StartHeight)) i-- + dAtA[i] = 0x28 + } + if m.StakingTime != 0 { + i = encodeVarintQuery(dAtA, i, uint64(m.StakingTime)) + i-- dAtA[i] = 0x20 } if len(m.FpBtcPkList) > 0 { @@ -3709,6 +3725,9 @@ func (m *BTCDelegationResponse) Size() (n int) { n += 1 + l + sovQuery(uint64(l)) } } + if m.StakingTime != 0 { + n += 1 + sovQuery(uint64(m.StakingTime)) + } if m.StartHeight != 0 { n += 1 + sovQuery(uint64(m.StartHeight)) } @@ -3751,7 +3770,7 @@ func (m *BTCDelegationResponse) Size() (n int) { } if m.UndelegationResponse != nil { l = m.UndelegationResponse.Size() - n += 1 + l + sovQuery(uint64(l)) + n += 2 + l + sovQuery(uint64(l)) } if m.ParamsVersion != 0 { n += 2 + sovQuery(uint64(m.ParamsVersion)) @@ -5967,6 +5986,25 @@ func (m *BTCDelegationResponse) Unmarshal(dAtA []byte) error { } iNdEx = postIndex case 4: + if wireType != 0 { + return fmt.Errorf("proto: wrong wireType = %d for field StakingTime", wireType) + } + m.StakingTime = 0 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowQuery + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + m.StakingTime |= uint32(b&0x7F) << shift + if b < 0x80 { + break + } + } + case 5: if wireType != 0 { return fmt.Errorf("proto: wrong wireType = %d for field StartHeight", wireType) } @@ -5985,7 +6023,7 @@ func (m *BTCDelegationResponse) Unmarshal(dAtA []byte) error { break } } - case 5: + case 6: if wireType != 0 { return fmt.Errorf("proto: wrong wireType = %d for field EndHeight", wireType) } @@ -6004,7 +6042,7 @@ func (m *BTCDelegationResponse) Unmarshal(dAtA []byte) error { break } } - case 6: + case 7: if wireType != 0 { return fmt.Errorf("proto: wrong wireType = %d for field TotalSat", wireType) } @@ -6023,7 +6061,7 @@ func (m *BTCDelegationResponse) Unmarshal(dAtA []byte) error { break } } - case 7: + case 8: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field StakingTxHex", wireType) } @@ -6055,7 +6093,7 @@ func (m *BTCDelegationResponse) Unmarshal(dAtA []byte) error { } m.StakingTxHex = string(dAtA[iNdEx:postIndex]) iNdEx = postIndex - case 8: + case 9: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field SlashingTxHex", wireType) } @@ -6087,7 +6125,7 @@ func (m *BTCDelegationResponse) Unmarshal(dAtA []byte) error { } m.SlashingTxHex = string(dAtA[iNdEx:postIndex]) iNdEx = postIndex - case 9: + case 10: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field DelegatorSlashSigHex", wireType) } @@ -6119,7 +6157,7 @@ func (m *BTCDelegationResponse) Unmarshal(dAtA []byte) error { } m.DelegatorSlashSigHex = string(dAtA[iNdEx:postIndex]) iNdEx = postIndex - case 10: + case 11: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field CovenantSigs", wireType) } @@ -6153,7 +6191,7 @@ func (m *BTCDelegationResponse) Unmarshal(dAtA []byte) error { return err } iNdEx = postIndex - case 11: + case 12: if wireType != 0 { return fmt.Errorf("proto: wrong wireType = %d for field StakingOutputIdx", wireType) } @@ -6172,7 +6210,7 @@ func (m *BTCDelegationResponse) Unmarshal(dAtA []byte) error { break } } - case 12: + case 13: if wireType != 0 { return fmt.Errorf("proto: wrong wireType = %d for field Active", wireType) } @@ -6192,7 +6230,7 @@ func (m *BTCDelegationResponse) Unmarshal(dAtA []byte) error { } } m.Active = bool(v != 0) - case 13: + case 14: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field StatusDesc", wireType) } @@ -6224,7 +6262,7 @@ func (m *BTCDelegationResponse) Unmarshal(dAtA []byte) error { } m.StatusDesc = string(dAtA[iNdEx:postIndex]) iNdEx = postIndex - case 14: + case 15: if wireType != 0 { return fmt.Errorf("proto: wrong wireType = %d for field UnbondingTime", wireType) } @@ -6243,7 +6281,7 @@ func (m *BTCDelegationResponse) Unmarshal(dAtA []byte) error { break } } - case 15: + case 16: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field UndelegationResponse", wireType) } @@ -6279,7 +6317,7 @@ func (m *BTCDelegationResponse) Unmarshal(dAtA []byte) error { return err } iNdEx = postIndex - case 16: + case 17: if wireType != 0 { return fmt.Errorf("proto: wrong wireType = %d for field ParamsVersion", wireType) }