diff --git a/app/genesis_test.go b/app/genesis_test.go index 0472a34e1..c21048dea 100644 --- a/app/genesis_test.go +++ b/app/genesis_test.go @@ -29,7 +29,7 @@ func TestNewDefaultGenesisByDenom(t *testing.T) { "amount": "10000000000000000000000" }, "delegate_multiple": "10", - "bridge_call_refund_timeout": "604800000000000" + "bridge_call_refund_timeout": "604800000" }, "last_observed_event_nonce": "0", "last_observed_block_height": { @@ -84,7 +84,7 @@ func TestNewDefaultGenesisByDenom(t *testing.T) { "amount": "10000000000000000000000" }, "delegate_multiple": "10", - "bridge_call_refund_timeout": "604800000000000" + "bridge_call_refund_timeout": "604800000" }, "last_observed_event_nonce": "0", "last_observed_block_height": { @@ -167,7 +167,7 @@ func TestNewDefaultGenesisByDenom(t *testing.T) { "amount": "10000000000000000000000" }, "delegate_multiple": "10", - "bridge_call_refund_timeout": "604800000000000" + "bridge_call_refund_timeout": "604800000" }, "last_observed_event_nonce": "0", "last_observed_block_height": { @@ -246,7 +246,7 @@ func TestNewDefaultGenesisByDenom(t *testing.T) { "amount": "10000000000000000000000" }, "delegate_multiple": "10", - "bridge_call_refund_timeout": "604800000000000" + "bridge_call_refund_timeout": "604800000" }, "last_observed_event_nonce": "0", "last_observed_block_height": { @@ -396,7 +396,7 @@ func TestNewDefaultGenesisByDenom(t *testing.T) { "amount": "10000000000000000000000" }, "delegate_multiple": "10", - "bridge_call_refund_timeout": "604800000000000" + "bridge_call_refund_timeout": "604800000" }, "last_observed_event_nonce": "0", "last_observed_block_height": { @@ -453,7 +453,7 @@ func TestNewDefaultGenesisByDenom(t *testing.T) { "amount": "10000000000000000000000" }, "delegate_multiple": "10", - "bridge_call_refund_timeout": "604800000000000" + "bridge_call_refund_timeout": "604800000" }, "last_observed_event_nonce": "0", "last_observed_block_height": { @@ -496,7 +496,7 @@ func TestNewDefaultGenesisByDenom(t *testing.T) { "amount": "10000000000000000000000" }, "delegate_multiple": "10", - "bridge_call_refund_timeout": "604800000000000" + "bridge_call_refund_timeout": "604800000" }, "last_observed_event_nonce": "0", "last_observed_block_height": { @@ -575,7 +575,7 @@ func TestNewDefaultGenesisByDenom(t *testing.T) { "amount": "10000000000000000000000" }, "delegate_multiple": "10", - "bridge_call_refund_timeout": "604800000000000" + "bridge_call_refund_timeout": "604800000" }, "last_observed_event_nonce": "0", "last_observed_block_height": { diff --git a/proto/fx/crosschain/v1/types.proto b/proto/fx/crosschain/v1/types.proto index a2c2791cc..49ae74026 100644 --- a/proto/fx/crosschain/v1/types.proto +++ b/proto/fx/crosschain/v1/types.proto @@ -120,6 +120,7 @@ message RefundRecord { uint64 timeout = 3; repeated ERC20Token tokens = 4 [(gogoproto.nullable) = false]; uint64 oracle_set_nonce = 5; + uint64 block = 6; } message SnapshotOracle { diff --git a/solidity/contracts/bridge/FxBridgeLogic.sol b/solidity/contracts/bridge/FxBridgeLogic.sol index 34dbe41a1..a41e29731 100644 --- a/solidity/contracts/bridge/FxBridgeLogic.sol +++ b/solidity/contracts/bridge/FxBridgeLogic.sol @@ -454,8 +454,8 @@ contract FxBridgeLogic is ); require( - block.timestamp < _timeout, - "timeout must be greater than the current block timestamp." + block.number < _timeout, + "refund timeout must be greater than the current block height." ); require( diff --git a/x/crosschain/keeper/attestation.go b/x/crosschain/keeper/attestation.go index c80389a5c..f283c0103 100644 --- a/x/crosschain/keeper/attestation.go +++ b/x/crosschain/keeper/attestation.go @@ -270,3 +270,22 @@ func (k Keeper) SetLastEventNonceByOracle(ctx sdk.Context, oracleAddr sdk.AccAdd store := ctx.KVStore(k.storeKey) store.Set(types.GetLastEventNonceByOracleKey(oracleAddr), sdk.Uint64ToBigEndian(eventNonce)) } + +// CalExternalTimeoutHeight This gets the timeout height in External blocks. +func (k Keeper) CalExternalTimeoutHeight(ctx sdk.Context, params types.Params, timeout uint64) uint64 { + currentFxHeight := ctx.BlockHeight() + // we store the last observed Cosmos and Ethereum heights, we do not concern ourselves if these values + // are zero because no batch can be produced if the last Ethereum block height is not first populated by a deposit event. + heights := k.GetLastObservedBlockHeight(ctx) + if heights.ExternalBlockHeight == 0 { + return 0 + } + // we project how long it has been in milliseconds since the last Ethereum block height was observed + projectedMillis := (uint64(currentFxHeight) - heights.BlockHeight) * params.AverageBlockTime + // we convert that projection into the current Ethereum height using the average Ethereum block time in millis + projectedCurrentEthereumHeight := (projectedMillis / params.AverageExternalBlockTime) + heights.ExternalBlockHeight + // we convert our target time for block timeouts (lets say 12 hours) into a number of blocks to + // place on top of our projection of the current Ethereum block height. + blocksToAdd := timeout / params.AverageExternalBlockTime + return projectedCurrentEthereumHeight + blocksToAdd +} diff --git a/x/crosschain/keeper/batch.go b/x/crosschain/keeper/batch.go index c6f4312f9..8a5e9d37b 100644 --- a/x/crosschain/keeper/batch.go +++ b/x/crosschain/keeper/batch.go @@ -40,7 +40,8 @@ func (k Keeper) BuildOutgoingTxBatch(ctx sdk.Context, tokenContract, feeReceive if types.OutgoingTransferTxs(selectedTx).TotalFee().LT(minimumFee) { return nil, errorsmod.Wrap(types.ErrInvalid, "total fee less than minimum fee") } - batchTimeout := k.GetBatchTimeoutHeight(ctx) + params := k.GetParams(ctx) + batchTimeout := k.CalExternalTimeoutHeight(ctx, params, params.ExternalBatchTimeout) if batchTimeout <= 0 { return nil, errorsmod.Wrap(types.ErrInvalid, "batch timeout height") } @@ -79,26 +80,6 @@ func (k Keeper) BuildOutgoingTxBatch(ctx sdk.Context, tokenContract, feeReceive return batch, nil } -// GetBatchTimeoutHeight This gets the batch timeout height in External blocks. -func (k Keeper) GetBatchTimeoutHeight(ctx sdk.Context) uint64 { - currentFxHeight := ctx.BlockHeight() - params := k.GetParams(ctx) - // we store the last observed Cosmos and Ethereum heights, we do not concern ourselves if these values - // are zero because no batch can be produced if the last Ethereum block height is not first populated by a deposit event. - heights := k.GetLastObservedBlockHeight(ctx) - if heights.ExternalBlockHeight == 0 { - return 0 - } - // we project how long it has been in milliseconds since the last Ethereum block height was observed - projectedMillis := (uint64(currentFxHeight) - heights.BlockHeight) * params.AverageBlockTime - // we convert that projection into the current Ethereum height using the average Ethereum block time in millis - projectedCurrentEthereumHeight := (projectedMillis / params.AverageExternalBlockTime) + heights.ExternalBlockHeight - // we convert our target time for block timeouts (lets say 12 hours) into a number of blocks to - // place on top of our projection of the current Ethereum block height. - blocksToAdd := params.ExternalBatchTimeout / params.AverageExternalBlockTime - return projectedCurrentEthereumHeight + blocksToAdd -} - // OutgoingTxBatchExecuted is run when the Cosmos chain detects that a batch has been executed on Ethereum // It frees all the transactions in the batch, then cancels all earlier batches func (k Keeper) OutgoingTxBatchExecuted(ctx sdk.Context, tokenContract string, batchNonce uint64) { diff --git a/x/crosschain/keeper/bridge_call_refund.go b/x/crosschain/keeper/bridge_call_refund.go index 6aec421cd..d49c6bbb1 100644 --- a/x/crosschain/keeper/bridge_call_refund.go +++ b/x/crosschain/keeper/bridge_call_refund.go @@ -39,12 +39,15 @@ func (k Keeper) AddRefundRecord(ctx sdk.Context, receiver string, eventNonce uin snapshotOracle.EventNonces = append(snapshotOracle.EventNonces, eventNonce) k.SetSnapshotOracle(ctx, snapshotOracle) + params := k.GetParams(ctx) + refundTimeout := k.CalExternalTimeoutHeight(ctx, params, params.BridgeCallRefundTimeout) k.SetRefundRecord(ctx, &types.RefundRecord{ EventNonce: eventNonce, Receiver: receiver, - Timeout: k.GetBridgeCallRefundTimeout(ctx), + Timeout: refundTimeout, OracleSetNonce: oracleSet.Nonce, Tokens: tokens, + Block: uint64(ctx.BlockHeight()), }) return nil } diff --git a/x/crosschain/keeper/grpc_query.go b/x/crosschain/keeper/grpc_query.go index a919595e8..9257974bd 100644 --- a/x/crosschain/keeper/grpc_query.go +++ b/x/crosschain/keeper/grpc_query.go @@ -365,7 +365,9 @@ func (k Keeper) Oracles(c context.Context, _ *types.QueryOraclesRequest) (*types } func (k Keeper) ProjectedBatchTimeoutHeight(c context.Context, _ *types.QueryProjectedBatchTimeoutHeightRequest) (*types.QueryProjectedBatchTimeoutHeightResponse, error) { - timeout := k.GetBatchTimeoutHeight(sdk.UnwrapSDKContext(c)) + ctx := sdk.UnwrapSDKContext(c) + params := k.GetParams(ctx) + timeout := k.CalExternalTimeoutHeight(ctx, params, params.ExternalBatchTimeout) return &types.QueryProjectedBatchTimeoutHeightResponse{TimeoutHeight: timeout}, nil } diff --git a/x/crosschain/keeper/grpc_query_test.go b/x/crosschain/keeper/grpc_query_test.go index 5c4b96e73..6b3852c34 100644 --- a/x/crosschain/keeper/grpc_query_test.go +++ b/x/crosschain/keeper/grpc_query_test.go @@ -2444,6 +2444,7 @@ func (suite *CrossChainGrpcTestSuite) TestKeeper_RefundRecordByNonce() { Timeout: tmrand.Uint64(), Tokens: nil, OracleSetNonce: uint64(tmrand.Int63n(10000)), + Block: tmrand.Uint64(), } suite.Keeper().SetRefundRecord(suite.ctx, refundRecord) request = &types.QueryRefundRecordByNonceRequest{ @@ -2494,6 +2495,7 @@ func (suite *CrossChainGrpcTestSuite) TestKeeper_RefundRecordByReceiver() { Timeout: tmrand.Uint64(), Tokens: nil, OracleSetNonce: uint64(tmrand.Int63n(10000)), + Block: tmrand.Uint64(), } suite.Keeper().SetRefundRecord(suite.ctx, refundRecord) request = &types.QueryRefundRecordByReceiverRequest{ @@ -2573,6 +2575,7 @@ func (suite *CrossChainGrpcTestSuite) TestKeeper_RefundConfirmByNonce() { Timeout: tmrand.Uint64(), Tokens: nil, OracleSetNonce: oracleNonce, + Block: tmrand.Uint64(), } suite.Keeper().SetRefundRecord(suite.ctx, refundRecord) @@ -2646,6 +2649,7 @@ func (suite *CrossChainGrpcTestSuite) TestKeeper_LastPendingRefundRecordByAddr() Timeout: tmrand.Uint64(), Tokens: nil, OracleSetNonce: oracleNonce, + Block: tmrand.Uint64(), } suite.Keeper().SetRefundRecord(suite.ctx, refundRecord) @@ -2696,6 +2700,7 @@ func (suite *CrossChainGrpcTestSuite) TestKeeper_LastPendingRefundRecordByAddr() Timeout: tmrand.Uint64(), Tokens: nil, OracleSetNonce: oracleNonce, + Block: tmrand.Uint64(), } suite.Keeper().SetRefundRecord(suite.ctx, refundRecordNew) request = &types.QueryLastPendingRefundRecordByAddrRequest{ diff --git a/x/crosschain/keeper/msg_server_test.go b/x/crosschain/keeper/msg_server_test.go index ee1361c38..09d93293f 100644 --- a/x/crosschain/keeper/msg_server_test.go +++ b/x/crosschain/keeper/msg_server_test.go @@ -1239,6 +1239,7 @@ func (suite *KeeperTestSuite) TestConfirmRefund() { Timeout: tmrand.Uint64(), Tokens: tokens, OracleSetNonce: oracleSetNonce, + Block: tmrand.Uint64(), } suite.Keeper().SetRefundRecord(suite.ctx, refundRecord) diff --git a/x/crosschain/types/params.go b/x/crosschain/types/params.go index 86812eec3..906cafbc9 100644 --- a/x/crosschain/types/params.go +++ b/x/crosschain/types/params.go @@ -3,7 +3,6 @@ package types import ( "errors" "fmt" - "time" sdkmath "cosmossdk.io/math" sdk "github.com/cosmos/cosmos-sdk/types" @@ -18,7 +17,7 @@ const ( MaxResults = 100 MaxOracleSetRequestsResults = 5 MaxKeepEventSize = 100 - DefaultBridgeCallRefundTimeout = uint64(7 * 24 * time.Hour) + DefaultBridgeCallRefundTimeout = 604_800_000 // 7 * 24 * 3600 * 1000 ) var ( @@ -98,7 +97,7 @@ func (m *Params) ValidateBasic() error { if len(m.Oracles) > 0 { return errors.New("deprecated oracles") } - if m.BridgeCallRefundTimeout <= uint64(1*time.Hour) { + if m.BridgeCallRefundTimeout <= 3_600_000 { return fmt.Errorf("invalid bridge call refund timeout") } return nil diff --git a/x/crosschain/types/types.pb.go b/x/crosschain/types/types.pb.go index a7174e501..d95744476 100644 --- a/x/crosschain/types/types.pb.go +++ b/x/crosschain/types/types.pb.go @@ -692,6 +692,7 @@ type RefundRecord struct { Timeout uint64 `protobuf:"varint,3,opt,name=timeout,proto3" json:"timeout,omitempty"` Tokens []ERC20Token `protobuf:"bytes,4,rep,name=tokens,proto3" json:"tokens"` OracleSetNonce uint64 `protobuf:"varint,5,opt,name=oracle_set_nonce,json=oracleSetNonce,proto3" json:"oracle_set_nonce,omitempty"` + Block uint64 `protobuf:"varint,6,opt,name=block,proto3" json:"block,omitempty"` } func (m *RefundRecord) Reset() { *m = RefundRecord{} } @@ -762,6 +763,13 @@ func (m *RefundRecord) GetOracleSetNonce() uint64 { return 0 } +func (m *RefundRecord) GetBlock() uint64 { + if m != nil { + return m.Block + } + return 0 +} + type SnapshotOracle struct { OracleSetNonce uint64 `protobuf:"varint,1,opt,name=oracle_set_nonce,json=oracleSetNonce,proto3" json:"oracle_set_nonce,omitempty"` Members []BridgeValidator `protobuf:"bytes,2,rep,name=members,proto3" json:"members"` @@ -1245,110 +1253,111 @@ func init() { func init() { proto.RegisterFile("fx/crosschain/v1/types.proto", fileDescriptor_77fbd2eeeb010d9d) } var fileDescriptor_77fbd2eeeb010d9d = []byte{ - // 1646 bytes of a gzipped FileDescriptorProto + // 1652 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xac, 0x57, 0xcf, 0x6f, 0x1b, 0xc5, 0x17, 0xf7, 0xda, 0x8e, 0x13, 0x3f, 0x3b, 0x89, 0xbf, 0xf3, 0x4d, 0x5b, 0x27, 0x69, 0x9d, 0x64, 0x0b, 0x25, 0x2d, 0xad, 0x4d, 0x02, 0x07, 0x54, 0x40, 0xc2, 0x76, 0x1c, 0x6a, 0x91, 0x1f, 0x66, 0xe3, 0xd0, 0xd2, 0xcb, 0x6a, 0xbc, 0x3b, 0xb6, 0x57, 0x5d, 0xef, 0x58, 0xbb, 0x63, 0xd7, 0xb9, - 0x20, 0x10, 0x08, 0xf5, 0xc8, 0x11, 0x89, 0x4b, 0x25, 0x2e, 0xfc, 0x13, 0xdc, 0x7b, 0xac, 0xc4, - 0x05, 0x21, 0x54, 0x50, 0x7a, 0x00, 0x8e, 0xfc, 0x07, 0x68, 0x7e, 0xec, 0xc6, 0x09, 0x89, 0x44, - 0x5a, 0x4e, 0xde, 0xf7, 0x99, 0xf7, 0xde, 0xbc, 0x79, 0xbf, 0x0d, 0x97, 0xdb, 0xa3, 0x92, 0xe5, - 0xd3, 0x20, 0xb0, 0xba, 0xd8, 0xf1, 0x4a, 0xc3, 0xb5, 0x12, 0x3b, 0xe8, 0x93, 0xa0, 0xd8, 0xf7, - 0x29, 0xa3, 0x28, 0xdf, 0x1e, 0x15, 0x3b, 0x3e, 0x1e, 0x3a, 0xec, 0xa0, 0x78, 0xc4, 0x55, 0x1c, - 0xae, 0x2d, 0x14, 0x2c, 0x1a, 0xf4, 0x68, 0x50, 0x6a, 0xe1, 0x80, 0x94, 0x86, 0x6b, 0x2d, 0xc2, - 0xf0, 0x5a, 0xc9, 0xa2, 0x8e, 0x27, 0x25, 0x17, 0xe6, 0x3a, 0xb4, 0x43, 0xc5, 0x67, 0x89, 0x7f, - 0x29, 0x74, 0xbe, 0x43, 0x69, 0xc7, 0x25, 0x25, 0x41, 0xb5, 0x06, 0xed, 0x12, 0xf6, 0x0e, 0xe4, - 0x91, 0x7e, 0x03, 0x66, 0x1a, 0x3e, 0xed, 0xd3, 0x00, 0xbb, 0xbb, 0x3e, 0xb6, 0x5c, 0x82, 0xf2, - 0x30, 0x49, 0xc5, 0x57, 0x90, 0xd7, 0x96, 0x13, 0xab, 0x69, 0x23, 0x24, 0xf5, 0xdf, 0xe3, 0x90, - 0x52, 0x4c, 0xaf, 0xc2, 0x8c, 0x44, 0x4d, 0x6c, 0xdb, 0x3e, 0x09, 0x38, 0xaf, 0xb6, 0x9a, 0x36, - 0xa6, 0x25, 0x5a, 0x96, 0x20, 0x7a, 0x0d, 0x66, 0x5b, 0xbe, 0x63, 0x77, 0x88, 0x1f, 0xf1, 0xc5, - 0x05, 0xdf, 0x8c, 0x82, 0x43, 0xc6, 0xeb, 0x90, 0x23, 0x23, 0x46, 0x7c, 0x0f, 0xbb, 0x11, 0x67, - 0x42, 0x70, 0xce, 0x86, 0x78, 0xc8, 0x7a, 0x17, 0x66, 0x6d, 0xe2, 0x92, 0x0e, 0x66, 0xc4, 0xc4, - 0x3d, 0x3a, 0xf0, 0x58, 0x3e, 0xc9, 0x39, 0x2b, 0xc5, 0x27, 0xcf, 0x96, 0x62, 0x3f, 0x3f, 0x5b, - 0xba, 0xd6, 0x71, 0x58, 0x77, 0xd0, 0x2a, 0x5a, 0xb4, 0x57, 0x52, 0xee, 0x92, 0x3f, 0xb7, 0x02, - 0xfb, 0x81, 0xf2, 0x73, 0xdd, 0x63, 0xc6, 0x4c, 0xa8, 0xa6, 0x2c, 0xb4, 0xa0, 0x15, 0xc8, 0x06, - 0x0c, 0xfb, 0xcc, 0xec, 0x12, 0xa7, 0xd3, 0x65, 0xf9, 0x89, 0x65, 0x6d, 0x35, 0x61, 0x64, 0x04, - 0x76, 0x47, 0x40, 0xe8, 0x22, 0xa4, 0xa8, 0xe7, 0x3a, 0x1e, 0xc9, 0xa7, 0x96, 0xb5, 0xd5, 0x29, - 0x43, 0x51, 0xe8, 0x16, 0xa0, 0xc8, 0xa6, 0x21, 0x76, 0x1d, 0x1b, 0x33, 0xea, 0xe7, 0x27, 0xc5, - 0x03, 0xfe, 0x17, 0x9e, 0x7c, 0x1c, 0x1e, 0xa0, 0x25, 0xc8, 0x04, 0x2e, 0x0e, 0xba, 0x26, 0x73, - 0x7a, 0x24, 0xc8, 0x4f, 0x89, 0x8b, 0x40, 0x40, 0x4d, 0x8e, 0xe8, 0x06, 0xcc, 0x56, 0x84, 0x83, - 0x8e, 0x64, 0xe6, 0x60, 0xa2, 0x4f, 0x1f, 0x12, 0x5f, 0x38, 0x3a, 0x69, 0x48, 0xe2, 0x54, 0xbf, - 0xc5, 0x4f, 0xf5, 0x9b, 0xfe, 0xa5, 0x06, 0x69, 0x19, 0xbd, 0x3d, 0xc2, 0xb8, 0x3a, 0x8f, 0x7a, - 0x16, 0x09, 0xd5, 0x09, 0x02, 0xd5, 0x61, 0xb2, 0x47, 0x7a, 0x2d, 0xe2, 0x73, 0x2d, 0x89, 0xd5, - 0xcc, 0xfa, 0xf5, 0xe2, 0x59, 0xa9, 0x58, 0x3c, 0x61, 0x60, 0x25, 0xc9, 0xdd, 0x6f, 0x84, 0xf2, - 0xdc, 0x55, 0xca, 0x8f, 0x09, 0x71, 0x83, 0xa2, 0xf4, 0x3e, 0x5c, 0xda, 0xc2, 0x01, 0xdb, 0x6d, - 0x05, 0xc4, 0x1f, 0x12, 0xbb, 0xe2, 0x52, 0xeb, 0x81, 0xf2, 0xee, 0x3a, 0x5c, 0x88, 0x1e, 0xd3, - 0xe2, 0x78, 0x18, 0x09, 0x69, 0xe3, 0xff, 0xc3, 0xc3, 0x71, 0x99, 0x15, 0xc8, 0x1e, 0x63, 0x8d, - 0x0b, 0xd6, 0x4c, 0xeb, 0x88, 0x45, 0xbf, 0x0f, 0x19, 0x69, 0x6b, 0x93, 0x3e, 0x20, 0x1e, 0x7f, - 0x39, 0xe3, 0x1f, 0x2a, 0x63, 0x25, 0xc1, 0x51, 0x9b, 0x78, 0xb4, 0xa7, 0xbc, 0x27, 0x09, 0x1e, - 0x28, 0xab, 0x8b, 0x3d, 0x8f, 0xb8, 0xa6, 0xd3, 0xb2, 0x54, 0x46, 0x82, 0x82, 0xea, 0x2d, 0x4b, - 0xff, 0x42, 0x83, 0x4c, 0x99, 0x31, 0x12, 0x30, 0xcc, 0x1c, 0xea, 0xa1, 0x05, 0x98, 0xa2, 0xea, - 0x65, 0x42, 0xff, 0x94, 0x11, 0xd1, 0xfc, 0x8a, 0x21, 0x65, 0x44, 0xba, 0x36, 0x6d, 0x48, 0xe2, - 0x2c, 0x3f, 0xa1, 0x1b, 0x30, 0x61, 0xb9, 0xd8, 0xe9, 0x89, 0xe4, 0xce, 0xac, 0xcf, 0x15, 0x65, - 0x0d, 0x17, 0xc3, 0x1a, 0x2e, 0x96, 0xbd, 0x03, 0x43, 0xb2, 0xe8, 0x5f, 0xc5, 0x61, 0x76, 0x77, - 0xc0, 0x3a, 0xd4, 0xf1, 0x3a, 0xcd, 0x51, 0x05, 0x33, 0xab, 0xcb, 0x4d, 0x6f, 0xf1, 0x0f, 0x73, - 0x3c, 0xcc, 0x20, 0xa0, 0x1d, 0x11, 0xeb, 0xab, 0x30, 0x2d, 0x19, 0x78, 0x12, 0xd2, 0x41, 0xe8, - 0xba, 0xac, 0x00, 0x9b, 0x12, 0x43, 0x0d, 0xc8, 0x32, 0x1f, 0x7b, 0x01, 0xb6, 0xf8, 0xf3, 0x78, - 0x4d, 0xf2, 0xac, 0xb8, 0x79, 0x76, 0x56, 0x44, 0x66, 0x70, 0xa9, 0x36, 0xf1, 0x9b, 0x23, 0xe3, - 0x98, 0x06, 0xde, 0x39, 0x84, 0xc7, 0x4d, 0x8b, 0x7a, 0xcc, 0xc7, 0x96, 0xaa, 0x5e, 0x63, 0x5a, - 0xa0, 0x55, 0x05, 0x72, 0x67, 0x89, 0x18, 0x8a, 0x2a, 0x4c, 0x1a, 0x92, 0x40, 0x05, 0x80, 0x36, - 0x21, 0x06, 0xb1, 0x88, 0x33, 0x94, 0x35, 0x98, 0x36, 0xc6, 0x10, 0xfd, 0x57, 0x0d, 0xd0, 0x3f, - 0x2d, 0x40, 0x33, 0x10, 0x77, 0x6c, 0xe5, 0x82, 0xb8, 0x63, 0x73, 0x9f, 0x07, 0xc4, 0xb3, 0x89, - 0xaf, 0xa2, 0xad, 0x28, 0x9e, 0x4c, 0x36, 0x09, 0xd8, 0x89, 0x0e, 0x94, 0xe1, 0x58, 0xd8, 0x7d, - 0xde, 0x0f, 0xb3, 0x47, 0x86, 0xe5, 0x95, 0xb3, 0x3d, 0x51, 0x33, 0xaa, 0xeb, 0x6f, 0x88, 0x94, - 0x53, 0xa5, 0xa1, 0x32, 0xed, 0x5d, 0x48, 0xb4, 0x09, 0x11, 0xef, 0x3a, 0x9f, 0x3c, 0x17, 0xd3, - 0x7f, 0xd4, 0x20, 0x6b, 0x90, 0xf6, 0xc0, 0xb3, 0x0d, 0x62, 0x51, 0xdf, 0xe6, 0x71, 0x26, 0x43, - 0xe2, 0xb1, 0xe3, 0x71, 0x16, 0x90, 0x8c, 0xf3, 0x02, 0x4c, 0xf9, 0xd2, 0x3d, 0xe1, 0x73, 0x23, - 0x9a, 0xf7, 0xfa, 0x30, 0xfa, 0x32, 0xfb, 0x42, 0x12, 0x55, 0x20, 0x25, 0xcc, 0x0d, 0xf2, 0x49, - 0x11, 0xf2, 0xf3, 0x18, 0xaa, 0x24, 0xd1, 0x2a, 0xe4, 0xd4, 0x90, 0x08, 0x48, 0x68, 0x9f, 0x0c, - 0xa7, 0x1a, 0x1e, 0x7b, 0x44, 0xda, 0xa8, 0x7f, 0xaf, 0xc1, 0xcc, 0x9e, 0x87, 0xfb, 0x41, 0x97, - 0x32, 0x35, 0x61, 0x4e, 0x13, 0xd6, 0x4e, 0x13, 0xfe, 0x2f, 0x9b, 0xd6, 0x0a, 0x64, 0xc7, 0x9c, - 0x29, 0xd3, 0x3d, 0x69, 0x64, 0x8e, 0xbc, 0x19, 0xe8, 0x7d, 0x80, 0xa3, 0x07, 0x73, 0xe7, 0x46, - 0x79, 0x2c, 0xfb, 0x49, 0x44, 0xa3, 0x4d, 0x48, 0xa9, 0xf9, 0x14, 0x7f, 0xa1, 0xf9, 0xa4, 0xa4, - 0xf5, 0x79, 0x98, 0xa8, 0x6f, 0xf0, 0x9e, 0x9d, 0x83, 0x84, 0x63, 0xcb, 0xa9, 0x9c, 0x34, 0xf8, - 0xa7, 0xfe, 0x97, 0x06, 0x69, 0x51, 0xee, 0x9b, 0x84, 0x9c, 0x56, 0x5a, 0xda, 0x69, 0xa5, 0xb5, - 0x0d, 0xc0, 0x28, 0xc3, 0xae, 0xd9, 0x26, 0x24, 0x78, 0x41, 0xdb, 0xd2, 0x42, 0x83, 0xb8, 0x75, - 0x11, 0x24, 0x61, 0xb2, 0x51, 0xa0, 0xb2, 0x68, 0x4a, 0x00, 0xcd, 0x51, 0x80, 0x3e, 0x82, 0xac, - 0x3c, 0x7c, 0xa9, 0x49, 0x9d, 0x11, 0x3a, 0xe4, 0x98, 0xd6, 0x3f, 0x85, 0xcc, 0xb6, 0xe3, 0x85, - 0xaf, 0xfe, 0xb7, 0x8f, 0xbe, 0x03, 0x93, 0x7c, 0x67, 0xda, 0x24, 0xe4, 0x05, 0x5f, 0x1c, 0x8a, - 0xeb, 0x7f, 0x4e, 0x40, 0xaa, 0x81, 0x7d, 0xdc, 0x0b, 0xd0, 0x15, 0x00, 0x95, 0x66, 0xa6, 0xea, - 0x2f, 0x69, 0x23, 0xad, 0x90, 0xba, 0x8d, 0x6e, 0x02, 0xc2, 0x43, 0xe2, 0xe3, 0x0e, 0x51, 0xe3, - 0x8c, 0x17, 0x97, 0x6a, 0xb3, 0x39, 0x75, 0x22, 0x66, 0x19, 0xef, 0xb6, 0xe8, 0x2d, 0xb8, 0x78, - 0x34, 0xfd, 0x8e, 0x35, 0x66, 0xe9, 0xd4, 0xb9, 0x68, 0xfc, 0x8d, 0x37, 0xe8, 0xf7, 0x60, 0x31, - 0xbc, 0xe3, 0xc4, 0xec, 0x14, 0x97, 0x25, 0x85, 0x68, 0x5e, 0xb1, 0xd4, 0xc6, 0x07, 0xa8, 0xb8, - 0xf4, 0x2a, 0x4c, 0x07, 0x4e, 0xc7, 0x23, 0xb6, 0xf9, 0xd0, 0xf1, 0x6c, 0xfa, 0x50, 0xd5, 0x67, - 0x56, 0x82, 0x77, 0x05, 0x86, 0xf6, 0x61, 0x46, 0xae, 0x2b, 0x6d, 0x5f, 0x76, 0x71, 0xd1, 0x79, - 0xb3, 0xe7, 0x72, 0xe1, 0x06, 0xb1, 0x8c, 0x69, 0xa1, 0x65, 0x53, 0x29, 0x41, 0x9f, 0x6b, 0x70, - 0x6d, 0xac, 0xc4, 0x07, 0x7d, 0x9b, 0xaf, 0x4f, 0x62, 0xaf, 0x31, 0xf9, 0x88, 0xed, 0x10, 0xb3, - 0x4f, 0x7c, 0x8b, 0x78, 0x4c, 0x6c, 0x52, 0xe7, 0xbf, 0x6f, 0x25, 0x6a, 0x14, 0xfb, 0x42, 0x77, - 0x83, 0xab, 0xae, 0x0a, 0xcd, 0x0d, 0xa9, 0x98, 0xbb, 0xcf, 0x69, 0x59, 0x26, 0x53, 0xb3, 0x22, - 0x74, 0x79, 0xb8, 0x4d, 0x4c, 0x49, 0xf7, 0x39, 0x2d, 0x2b, 0x9a, 0x26, 0x92, 0x41, 0x6d, 0x1f, - 0x85, 0xa3, 0x5d, 0x39, 0xcd, 0x87, 0xba, 0xe8, 0x27, 0x5a, 0xb4, 0x31, 0xa3, 0x9d, 0xb1, 0xbd, - 0x90, 0x75, 0x7d, 0x12, 0x74, 0xa9, 0x6b, 0xe7, 0x41, 0xb4, 0xfe, 0xf9, 0xa2, 0x34, 0xba, 0xc8, - 0x13, 0xab, 0xa8, 0x76, 0xf9, 0x62, 0x95, 0x3a, 0x61, 0x1b, 0x8d, 0x16, 0xc7, 0x66, 0x28, 0x89, - 0x5e, 0x87, 0x08, 0x34, 0x7b, 0x03, 0x97, 0x39, 0x7d, 0x97, 0xe4, 0x33, 0x62, 0x7d, 0xcc, 0x85, - 0x07, 0xdb, 0x0a, 0x47, 0xef, 0xc0, 0x82, 0xdc, 0xb2, 0x4d, 0x0b, 0xbb, 0xae, 0xe9, 0x8b, 0xa9, - 0x11, 0x25, 0x55, 0x56, 0x3c, 0xed, 0x92, 0xe4, 0xa8, 0x62, 0xd7, 0x95, 0x53, 0x45, 0xbd, 0xef, - 0x76, 0xf2, 0xb3, 0x5f, 0x96, 0x63, 0xfa, 0x0f, 0x1a, 0x5c, 0xae, 0x7b, 0x0e, 0xab, 0xf2, 0x26, - 0x5a, 0xe5, 0x4d, 0x54, 0x66, 0x7e, 0xf8, 0x97, 0x41, 0x2c, 0x53, 0x0e, 0x73, 0x49, 0xb4, 0x4c, - 0x71, 0x02, 0x2d, 0x03, 0x9f, 0x99, 0x96, 0xef, 0xf4, 0x45, 0xb6, 0xc4, 0xa3, 0x31, 0x1a, 0x42, - 0xe8, 0x6d, 0x48, 0xf5, 0x85, 0x26, 0x91, 0xdc, 0x99, 0xf5, 0xe5, 0xb3, 0x5b, 0xb6, 0xbc, 0xd1, - 0x50, 0xfc, 0xbc, 0xe6, 0xc4, 0x91, 0xe9, 0x61, 0x95, 0xdf, 0x69, 0x23, 0x2d, 0x90, 0x1d, 0xdc, - 0x23, 0xb7, 0xb3, 0x8f, 0x1e, 0x2f, 0xc5, 0xbe, 0x79, 0xbc, 0x14, 0xfb, 0xe3, 0xf1, 0x52, 0x4c, - 0xff, 0x56, 0x83, 0x05, 0x19, 0x7b, 0x61, 0xbc, 0x1c, 0x2d, 0x2f, 0x6f, 0xfd, 0xd8, 0x5f, 0xa4, - 0xc4, 0xb1, 0xbf, 0x48, 0xe7, 0xb2, 0xee, 0xc6, 0xa1, 0x06, 0xe9, 0x2a, 0x5f, 0xe0, 0x9a, 0x07, - 0x7d, 0x3e, 0xa7, 0x2f, 0x56, 0xb7, 0xca, 0xf5, 0x6d, 0xb3, 0xf9, 0x49, 0xa3, 0x66, 0xee, 0xef, - 0xec, 0x35, 0x6a, 0xd5, 0xfa, 0x66, 0xbd, 0xb6, 0x91, 0x8b, 0xa1, 0x79, 0xb8, 0x30, 0x76, 0xb6, - 0x57, 0xdb, 0xd9, 0x30, 0x9b, 0xbb, 0xe6, 0xe6, 0xbd, 0x9c, 0x86, 0x96, 0x60, 0xf1, 0x94, 0xa3, - 0xda, 0xbd, 0x66, 0xcd, 0xd8, 0x29, 0x6f, 0xe5, 0xe2, 0x68, 0x11, 0x2e, 0x8d, 0x31, 0x54, 0x8c, - 0xfa, 0xc6, 0x07, 0x35, 0xb3, 0xb9, 0xfb, 0x61, 0x6d, 0x27, 0x97, 0x40, 0x2b, 0x70, 0x65, 0xec, - 0x70, 0xd7, 0x28, 0x57, 0xb7, 0xb8, 0x92, 0xa6, 0xb9, 0xdf, 0xd8, 0x28, 0x37, 0x6b, 0x1b, 0xb9, - 0xe4, 0x09, 0xbb, 0x94, 0x7c, 0xb5, 0xbc, 0xb5, 0x95, 0x9b, 0x38, 0xa1, 0xdb, 0xa8, 0x6d, 0xee, - 0x8b, 0xeb, 0xb9, 0xee, 0xd4, 0x42, 0xf2, 0xd1, 0x77, 0x85, 0x58, 0xa5, 0xfe, 0xe4, 0xb0, 0xa0, - 0x3d, 0x3d, 0x2c, 0x68, 0xbf, 0x1d, 0x16, 0xb4, 0xaf, 0x9f, 0x17, 0x62, 0x4f, 0x9f, 0x17, 0x62, - 0x3f, 0x3d, 0x2f, 0xc4, 0xee, 0x97, 0xc6, 0xca, 0xb8, 0x3d, 0xf0, 0x44, 0x53, 0x18, 0x95, 0xda, - 0xa3, 0x5b, 0x16, 0xf5, 0x49, 0xe9, 0xd8, 0xff, 0x63, 0x51, 0xd3, 0xad, 0x94, 0xd8, 0x7d, 0xdf, - 0xfc, 0x3b, 0x00, 0x00, 0xff, 0xff, 0x70, 0xd6, 0x41, 0xe6, 0x3d, 0x0f, 0x00, 0x00, + 0x20, 0x10, 0x08, 0xf5, 0xc8, 0x11, 0x89, 0x4b, 0x25, 0x2e, 0xfc, 0x13, 0xdc, 0x7b, 0xec, 0x11, + 0x21, 0x54, 0x50, 0x7a, 0x80, 0x1e, 0xf9, 0x0f, 0xd0, 0xfc, 0xd8, 0x8d, 0x13, 0x12, 0x89, 0xb4, + 0x9c, 0xbc, 0xef, 0xcd, 0x7b, 0x6f, 0xde, 0x7c, 0xde, 0x4f, 0xc3, 0xe5, 0xf6, 0xa8, 0x64, 0xf9, + 0x34, 0x08, 0xac, 0x2e, 0x76, 0xbc, 0xd2, 0x70, 0xad, 0xc4, 0x0e, 0xfa, 0x24, 0x28, 0xf6, 0x7d, + 0xca, 0x28, 0xca, 0xb7, 0x47, 0xc5, 0x8e, 0x8f, 0x87, 0x0e, 0x3b, 0x28, 0x1e, 0x49, 0x15, 0x87, + 0x6b, 0x0b, 0x05, 0x8b, 0x06, 0x3d, 0x1a, 0x94, 0x5a, 0x38, 0x20, 0xa5, 0xe1, 0x5a, 0x8b, 0x30, + 0xbc, 0x56, 0xb2, 0xa8, 0xe3, 0x49, 0xcd, 0x85, 0xb9, 0x0e, 0xed, 0x50, 0xf1, 0x59, 0xe2, 0x5f, + 0x8a, 0x3b, 0xdf, 0xa1, 0xb4, 0xe3, 0x92, 0x92, 0xa0, 0x5a, 0x83, 0x76, 0x09, 0x7b, 0x07, 0xf2, + 0x48, 0xbf, 0x01, 0x33, 0x0d, 0x9f, 0xf6, 0x69, 0x80, 0xdd, 0x5d, 0x1f, 0x5b, 0x2e, 0x41, 0x79, + 0x98, 0xa4, 0xe2, 0x2b, 0xc8, 0x6b, 0xcb, 0x89, 0xd5, 0xb4, 0x11, 0x92, 0xfa, 0x1f, 0x71, 0x48, + 0x29, 0xa1, 0xd7, 0x61, 0x46, 0x72, 0x4d, 0x6c, 0xdb, 0x3e, 0x09, 0xb8, 0xac, 0xb6, 0x9a, 0x36, + 0xa6, 0x25, 0xb7, 0x2c, 0x99, 0xe8, 0x0d, 0x98, 0x6d, 0xf9, 0x8e, 0xdd, 0x21, 0x7e, 0x24, 0x17, + 0x17, 0x72, 0x33, 0x8a, 0x1d, 0x0a, 0x5e, 0x87, 0x1c, 0x19, 0x31, 0xe2, 0x7b, 0xd8, 0x8d, 0x24, + 0x13, 0x42, 0x72, 0x36, 0xe4, 0x87, 0xa2, 0x77, 0x61, 0xd6, 0x26, 0x2e, 0xe9, 0x60, 0x46, 0x4c, + 0xdc, 0xa3, 0x03, 0x8f, 0xe5, 0x93, 0x5c, 0xb2, 0x52, 0x7c, 0xf2, 0x6c, 0x29, 0xf6, 0xcb, 0xb3, + 0xa5, 0x6b, 0x1d, 0x87, 0x75, 0x07, 0xad, 0xa2, 0x45, 0x7b, 0x25, 0x05, 0x97, 0xfc, 0xb9, 0x15, + 0xd8, 0x0f, 0x14, 0xce, 0x75, 0x8f, 0x19, 0x33, 0xa1, 0x99, 0xb2, 0xb0, 0x82, 0x56, 0x20, 0x1b, + 0x30, 0xec, 0x33, 0xb3, 0x4b, 0x9c, 0x4e, 0x97, 0xe5, 0x27, 0x96, 0xb5, 0xd5, 0x84, 0x91, 0x11, + 0xbc, 0x3b, 0x82, 0x85, 0x2e, 0x42, 0x8a, 0x7a, 0xae, 0xe3, 0x91, 0x7c, 0x6a, 0x59, 0x5b, 0x9d, + 0x32, 0x14, 0x85, 0x6e, 0x01, 0x8a, 0x7c, 0x1a, 0x62, 0xd7, 0xb1, 0x31, 0xa3, 0x7e, 0x7e, 0x52, + 0x3c, 0xe0, 0x7f, 0xe1, 0xc9, 0xa7, 0xe1, 0x01, 0x5a, 0x82, 0x4c, 0xe0, 0xe2, 0xa0, 0x6b, 0x32, + 0xa7, 0x47, 0x82, 0xfc, 0x94, 0xb8, 0x08, 0x04, 0xab, 0xc9, 0x39, 0xba, 0x01, 0xb3, 0x15, 0x01, + 0xd0, 0x91, 0xce, 0x1c, 0x4c, 0xf4, 0xe9, 0x43, 0xe2, 0x0b, 0xa0, 0x93, 0x86, 0x24, 0x4e, 0xc5, + 0x2d, 0x7e, 0x2a, 0x6e, 0xfa, 0xd7, 0x1a, 0xa4, 0x65, 0xf4, 0xf6, 0x08, 0xe3, 0xe6, 0x3c, 0xea, + 0x59, 0x24, 0x34, 0x27, 0x08, 0x54, 0x87, 0xc9, 0x1e, 0xe9, 0xb5, 0x88, 0xcf, 0xad, 0x24, 0x56, + 0x33, 0xeb, 0xd7, 0x8b, 0x67, 0xa5, 0x62, 0xf1, 0x84, 0x83, 0x95, 0x24, 0x87, 0xdf, 0x08, 0xf5, + 0x39, 0x54, 0x0a, 0xc7, 0x84, 0xb8, 0x41, 0x51, 0x7a, 0x1f, 0x2e, 0x6d, 0xe1, 0x80, 0xed, 0xb6, + 0x02, 0xe2, 0x0f, 0x89, 0x5d, 0x71, 0xa9, 0xf5, 0x40, 0xa1, 0xbb, 0x0e, 0x17, 0xa2, 0xc7, 0xb4, + 0x38, 0x3f, 0x8c, 0x84, 0xf4, 0xf1, 0xff, 0xe1, 0xe1, 0xb8, 0xce, 0x0a, 0x64, 0x8f, 0x89, 0xc6, + 0x85, 0x68, 0xa6, 0x75, 0x24, 0xa2, 0xdf, 0x87, 0x8c, 0xf4, 0xb5, 0x49, 0x1f, 0x10, 0x8f, 0xbf, + 0x9c, 0xf1, 0x0f, 0x95, 0xb1, 0x92, 0xe0, 0x5c, 0x9b, 0x78, 0xb4, 0xa7, 0xd0, 0x93, 0x04, 0x0f, + 0x94, 0xd5, 0xc5, 0x9e, 0x47, 0x5c, 0xd3, 0x69, 0x59, 0x2a, 0x23, 0x41, 0xb1, 0xea, 0x2d, 0x4b, + 0xff, 0x4a, 0x83, 0x4c, 0x99, 0x31, 0x12, 0x30, 0xcc, 0x1c, 0xea, 0xa1, 0x05, 0x98, 0xa2, 0xea, + 0x65, 0xc2, 0xfe, 0x94, 0x11, 0xd1, 0xfc, 0x8a, 0x21, 0x65, 0x44, 0x42, 0x9b, 0x36, 0x24, 0x71, + 0x16, 0x4e, 0xe8, 0x06, 0x4c, 0x58, 0x2e, 0x76, 0x7a, 0x22, 0xb9, 0x33, 0xeb, 0x73, 0x45, 0x59, + 0xc3, 0xc5, 0xb0, 0x86, 0x8b, 0x65, 0xef, 0xc0, 0x90, 0x22, 0xfa, 0x37, 0x71, 0x98, 0xdd, 0x1d, + 0xb0, 0x0e, 0x75, 0xbc, 0x4e, 0x73, 0x54, 0xc1, 0xcc, 0xea, 0x72, 0xd7, 0x5b, 0xfc, 0xc3, 0x1c, + 0x0f, 0x33, 0x08, 0xd6, 0x8e, 0x88, 0xf5, 0x55, 0x98, 0x96, 0x02, 0x3c, 0x09, 0xe9, 0x20, 0x84, + 0x2e, 0x2b, 0x98, 0x4d, 0xc9, 0x43, 0x0d, 0xc8, 0x32, 0x1f, 0x7b, 0x01, 0xb6, 0xf8, 0xf3, 0x78, + 0x4d, 0xf2, 0xac, 0xb8, 0x79, 0x76, 0x56, 0x44, 0x6e, 0x70, 0xad, 0x36, 0xf1, 0x9b, 0x23, 0xe3, + 0x98, 0x05, 0xde, 0x39, 0x04, 0xe2, 0xa6, 0x45, 0x3d, 0xe6, 0x63, 0x4b, 0x55, 0xaf, 0x31, 0x2d, + 0xb8, 0x55, 0xc5, 0xe4, 0x60, 0x89, 0x18, 0x8a, 0x2a, 0x4c, 0x1a, 0x92, 0x40, 0x05, 0x80, 0x36, + 0x21, 0x06, 0xb1, 0x88, 0x33, 0x94, 0x35, 0x98, 0x36, 0xc6, 0x38, 0xfa, 0x6f, 0x1a, 0xa0, 0x7f, + 0x7a, 0x80, 0x66, 0x20, 0xee, 0xd8, 0x0a, 0x82, 0xb8, 0x63, 0x73, 0xcc, 0x03, 0xe2, 0xd9, 0xc4, + 0x57, 0xd1, 0x56, 0x14, 0x4f, 0x26, 0x9b, 0x04, 0xec, 0x44, 0x07, 0xca, 0x70, 0x5e, 0xd8, 0x7d, + 0x3e, 0x0c, 0xb3, 0x47, 0x86, 0xe5, 0xb5, 0xb3, 0x91, 0xa8, 0x19, 0xd5, 0xf5, 0xb7, 0x44, 0xca, + 0xa9, 0xd2, 0x50, 0x99, 0xf6, 0x3e, 0x24, 0xda, 0x84, 0x88, 0x77, 0x9d, 0x4f, 0x9f, 0xab, 0xe9, + 0x2f, 0x34, 0xc8, 0x1a, 0xa4, 0x3d, 0xf0, 0x6c, 0x83, 0x58, 0xd4, 0xb7, 0x79, 0x9c, 0xc9, 0x90, + 0x78, 0xec, 0x78, 0x9c, 0x05, 0x4b, 0xc6, 0x79, 0x01, 0xa6, 0x7c, 0x09, 0x4f, 0xf8, 0xdc, 0x88, + 0xe6, 0xbd, 0x3e, 0x8c, 0xbe, 0xcc, 0xbe, 0x90, 0x44, 0x15, 0x48, 0x09, 0x77, 0x83, 0x7c, 0x52, + 0x84, 0xfc, 0x3c, 0x8e, 0x2a, 0x4d, 0xb4, 0x0a, 0x39, 0x35, 0x24, 0x02, 0x12, 0xfa, 0x27, 0xc3, + 0xa9, 0x86, 0xc7, 0x1e, 0x51, 0x3e, 0x46, 0xd1, 0x4e, 0x8d, 0x45, 0x5b, 0xff, 0x51, 0x83, 0x99, + 0x3d, 0x0f, 0xf7, 0x83, 0x2e, 0x65, 0x6a, 0xee, 0x9c, 0x66, 0x52, 0x3b, 0xd5, 0xe4, 0x7f, 0xd8, + 0xca, 0x56, 0x20, 0x3b, 0x06, 0xb1, 0x2c, 0x82, 0xa4, 0x91, 0x39, 0xc2, 0x38, 0xd0, 0xfb, 0x00, + 0x47, 0x30, 0x70, 0xc8, 0xa3, 0xec, 0x96, 0x5d, 0x26, 0xa2, 0xd1, 0x26, 0xa4, 0xd4, 0xd4, 0x8a, + 0xbf, 0xd4, 0xd4, 0x52, 0xda, 0xfa, 0x3c, 0x4c, 0xd4, 0x37, 0x78, 0x27, 0xcf, 0x41, 0xc2, 0xb1, + 0xe5, 0xac, 0x4e, 0x1a, 0xfc, 0x53, 0xff, 0x4b, 0x83, 0xb4, 0x68, 0x02, 0x9b, 0x84, 0x9c, 0x56, + 0x70, 0xda, 0x69, 0x05, 0xb7, 0x0d, 0xc0, 0x28, 0xc3, 0xae, 0xd9, 0x26, 0x24, 0x78, 0x49, 0xdf, + 0xd2, 0xc2, 0x82, 0xb8, 0x75, 0x11, 0x24, 0x61, 0xb2, 0x51, 0xa0, 0x72, 0x6b, 0x4a, 0x30, 0x9a, + 0xa3, 0x00, 0x7d, 0x02, 0x59, 0x79, 0xf8, 0x4a, 0xf3, 0x3b, 0x23, 0x6c, 0xc8, 0xe1, 0xad, 0x7f, + 0x0e, 0x99, 0x6d, 0xc7, 0x0b, 0x5f, 0xfd, 0x6f, 0x1f, 0x7d, 0x07, 0x26, 0xf9, 0x26, 0xb5, 0x49, + 0xc8, 0x4b, 0xbe, 0x38, 0x54, 0xd7, 0x5f, 0x4c, 0x40, 0xaa, 0x81, 0x7d, 0xdc, 0x0b, 0xd0, 0x15, + 0x00, 0x95, 0x66, 0xa6, 0xea, 0x3a, 0x69, 0x23, 0xad, 0x38, 0x75, 0x1b, 0xdd, 0x04, 0x84, 0x87, + 0xc4, 0xc7, 0x1d, 0xa2, 0x86, 0x1c, 0x2f, 0x39, 0xd5, 0x7c, 0x73, 0xea, 0x44, 0x4c, 0x38, 0xde, + 0x83, 0xd1, 0x3b, 0x70, 0xf1, 0x68, 0x26, 0x1e, 0x6b, 0xd7, 0x12, 0xd4, 0xb9, 0x68, 0x28, 0x8e, + 0xb7, 0xed, 0x0f, 0x60, 0x31, 0xbc, 0xe3, 0xc4, 0x44, 0x15, 0x97, 0x25, 0x85, 0x6a, 0x5e, 0x89, + 0xd4, 0xc6, 0xc7, 0xaa, 0xb8, 0xf4, 0x2a, 0x4c, 0x07, 0x4e, 0xc7, 0x23, 0xb6, 0xf9, 0xd0, 0xf1, + 0x6c, 0xfa, 0x50, 0x55, 0x6d, 0x56, 0x32, 0xef, 0x0a, 0x1e, 0xda, 0x87, 0x19, 0xb9, 0xc4, 0xb4, + 0x7d, 0xd9, 0xdb, 0x45, 0xf1, 0x66, 0xcf, 0x05, 0xe1, 0x06, 0xb1, 0x8c, 0x69, 0x61, 0x65, 0x53, + 0x19, 0x41, 0x5f, 0x6a, 0x70, 0x6d, 0xac, 0xc4, 0x07, 0x7d, 0x9b, 0x2f, 0x55, 0x62, 0xdb, 0x31, + 0xf9, 0xe0, 0xed, 0x10, 0xb3, 0x4f, 0x7c, 0x8b, 0x78, 0x4c, 0xec, 0x57, 0xe7, 0xbf, 0x6f, 0x25, + 0x6a, 0x14, 0xfb, 0xc2, 0x76, 0x83, 0x9b, 0xae, 0x0a, 0xcb, 0x0d, 0x69, 0x98, 0xc3, 0xe7, 0xb4, + 0x2c, 0x93, 0xa9, 0x09, 0x12, 0x42, 0x1e, 0xee, 0x18, 0x53, 0x12, 0x3e, 0xa7, 0x65, 0x45, 0x33, + 0x46, 0x0a, 0xa8, 0x9d, 0xa4, 0x70, 0xb4, 0x41, 0xa7, 0xf9, 0xa8, 0x17, 0xfd, 0x44, 0x8b, 0xf6, + 0x68, 0xb4, 0x33, 0xb6, 0x2d, 0xb2, 0xae, 0x4f, 0x82, 0x2e, 0x75, 0xed, 0x3c, 0x88, 0x81, 0x30, + 0x5f, 0x94, 0x4e, 0x17, 0x79, 0x62, 0x15, 0xd5, 0x86, 0x5f, 0xac, 0x52, 0x27, 0x6c, 0xae, 0xd1, + 0x3a, 0xd9, 0x0c, 0x35, 0xd1, 0x9b, 0x10, 0x31, 0xcd, 0xde, 0xc0, 0x65, 0x4e, 0xdf, 0x25, 0xf9, + 0x8c, 0x58, 0x2a, 0x73, 0xe1, 0xc1, 0xb6, 0xe2, 0xa3, 0xf7, 0x60, 0x41, 0xee, 0xde, 0xa6, 0x85, + 0x5d, 0xd7, 0xf4, 0xc5, 0x2c, 0x89, 0x92, 0x2a, 0x2b, 0x9e, 0x76, 0x49, 0x4a, 0x54, 0xb1, 0xeb, + 0xca, 0x59, 0xa3, 0xde, 0x77, 0x3b, 0xf9, 0xc5, 0xaf, 0xcb, 0x31, 0xfd, 0x27, 0x0d, 0x2e, 0xd7, + 0x3d, 0x87, 0x55, 0x79, 0x13, 0xad, 0xf2, 0x26, 0x2a, 0x33, 0x3f, 0xfc, 0x23, 0x21, 0x56, 0x2c, + 0x87, 0xb9, 0x24, 0x5a, 0xb1, 0x38, 0x81, 0x96, 0x81, 0x4f, 0x52, 0xcb, 0x77, 0xfa, 0x22, 0x5b, + 0xe2, 0xd1, 0x70, 0x0d, 0x59, 0xe8, 0x5d, 0x48, 0xf5, 0x85, 0x25, 0x91, 0xdc, 0x99, 0xf5, 0xe5, + 0xb3, 0x5b, 0xb6, 0xbc, 0xd1, 0x50, 0xf2, 0xbc, 0xe6, 0xc4, 0x91, 0xe9, 0x61, 0x95, 0xdf, 0x69, + 0x23, 0x2d, 0x38, 0x3b, 0xb8, 0x47, 0x6e, 0x67, 0x1f, 0x3d, 0x5e, 0x8a, 0x7d, 0xf7, 0x78, 0x29, + 0xf6, 0xe7, 0xe3, 0xa5, 0x98, 0xfe, 0xbd, 0x06, 0x0b, 0x32, 0xf6, 0xc2, 0x79, 0x39, 0x5a, 0x5e, + 0xdd, 0xfb, 0xb1, 0x3f, 0x4e, 0x89, 0x63, 0x7f, 0x9c, 0xce, 0xe5, 0xdd, 0x8d, 0x43, 0x0d, 0xd2, + 0x55, 0xbe, 0xd6, 0x35, 0x0f, 0xfa, 0x7c, 0x7a, 0x5f, 0xac, 0x6e, 0x95, 0xeb, 0xdb, 0x66, 0xf3, + 0xb3, 0x46, 0xcd, 0xdc, 0xdf, 0xd9, 0x6b, 0xd4, 0xaa, 0xf5, 0xcd, 0x7a, 0x6d, 0x23, 0x17, 0x43, + 0xf3, 0x70, 0x61, 0xec, 0x6c, 0xaf, 0xb6, 0xb3, 0x61, 0x36, 0x77, 0xcd, 0xcd, 0x7b, 0x39, 0x0d, + 0x2d, 0xc1, 0xe2, 0x29, 0x47, 0xb5, 0x7b, 0xcd, 0x9a, 0xb1, 0x53, 0xde, 0xca, 0xc5, 0xd1, 0x22, + 0x5c, 0x1a, 0x13, 0xa8, 0x18, 0xf5, 0x8d, 0x8f, 0x6a, 0x66, 0x73, 0xf7, 0xe3, 0xda, 0x4e, 0x2e, + 0x81, 0x56, 0xe0, 0xca, 0xd8, 0xe1, 0xae, 0x51, 0xae, 0x6e, 0x71, 0x23, 0x4d, 0x73, 0xbf, 0xb1, + 0x51, 0x6e, 0xd6, 0x36, 0x72, 0xc9, 0x13, 0x7e, 0x29, 0xfd, 0x6a, 0x79, 0x6b, 0x2b, 0x37, 0x71, + 0xc2, 0xb6, 0x51, 0xdb, 0xdc, 0x17, 0xd7, 0x73, 0xdb, 0xa9, 0x85, 0xe4, 0xa3, 0x1f, 0x0a, 0xb1, + 0x4a, 0xfd, 0xc9, 0x61, 0x41, 0x7b, 0x7a, 0x58, 0xd0, 0x7e, 0x3f, 0x2c, 0x68, 0xdf, 0x3e, 0x2f, + 0xc4, 0x9e, 0x3e, 0x2f, 0xc4, 0x7e, 0x7e, 0x5e, 0x88, 0xdd, 0x2f, 0x8d, 0x95, 0x71, 0x7b, 0xe0, + 0x89, 0xa6, 0x30, 0x2a, 0xb5, 0x47, 0xb7, 0x2c, 0xea, 0x93, 0xd2, 0xb1, 0x7f, 0xcd, 0xa2, 0xa6, + 0x5b, 0x29, 0xb1, 0x11, 0xbf, 0xfd, 0x77, 0x00, 0x00, 0x00, 0xff, 0xff, 0xc6, 0x7a, 0xf2, 0x91, + 0x53, 0x0f, 0x00, 0x00, } func (m *ProposalOracle) Marshal() (dAtA []byte, err error) { @@ -1830,6 +1839,11 @@ func (m *RefundRecord) MarshalToSizedBuffer(dAtA []byte) (int, error) { _ = i var l int _ = l + if m.Block != 0 { + i = encodeVarintTypes(dAtA, i, uint64(m.Block)) + i-- + dAtA[i] = 0x30 + } if m.OracleSetNonce != 0 { i = encodeVarintTypes(dAtA, i, uint64(m.OracleSetNonce)) i-- @@ -2559,6 +2573,9 @@ func (m *RefundRecord) Size() (n int) { if m.OracleSetNonce != 0 { n += 1 + sovTypes(uint64(m.OracleSetNonce)) } + if m.Block != 0 { + n += 1 + sovTypes(uint64(m.Block)) + } return n } @@ -4279,6 +4296,25 @@ func (m *RefundRecord) Unmarshal(dAtA []byte) error { break } } + case 6: + if wireType != 0 { + return fmt.Errorf("proto: wrong wireType = %d for field Block", wireType) + } + m.Block = 0 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowTypes + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + m.Block |= uint64(b&0x7F) << shift + if b < 0x80 { + break + } + } default: iNdEx = preIndex skippy, err := skipTypes(dAtA[iNdEx:])