Contract 0x7a3b799e929c9bef403976405d8908fa92080449 2

 
Txn Hash Method
Block
From
To
Value [Txn Fee]
0x684889aedf807b66ce43dc0aceceb33952fb754d86ab35048a1a3a2404532864Withdraw312506832022-02-17 17:24:16405 days 4 hrs ago0xfddfe525054efaad204600d00ca86adb1cc2ea8a IN  0x7a3b799e929c9bef403976405d8908fa920804490 FTM0.076170760393
0x256eb215f829f92b2f921de82218e695b033fca376b5e21e7c87d8dfd3dd8c6bAdd Pool312506612022-02-17 17:23:58405 days 4 hrs ago0xfddfe525054efaad204600d00ca86adb1cc2ea8a IN  0x7a3b799e929c9bef403976405d8908fa920804490 FTM0.015648638505
0xf664f5c164548ece894e0dd3287cd96998b46b8eabe4bad80092d344bafda368Withdraw291813972022-01-27 10:07:53426 days 11 hrs ago0xfddfe525054efaad204600d00ca86adb1cc2ea8a IN  0x7a3b799e929c9bef403976405d8908fa920804490 FTM0.1746966
0x71c955478f941aaff2eb81615852aa535939b19edfa5ad6b7bce2eba6dcb6ba9Withdraw242943842021-12-07 22:14:18476 days 23 hrs ago0xfddfe525054efaad204600d00ca86adb1cc2ea8a IN  0x7a3b799e929c9bef403976405d8908fa920804490 FTM0.062500649356
0x8fcf3ec1a6bc8980c1e6303c07bf1eba1e8825a00d05a12dfeb622856008c73fWithdraw240826192021-12-05 18:18:47479 days 3 hrs ago0xfddfe525054efaad204600d00ca86adb1cc2ea8a IN  0x7a3b799e929c9bef403976405d8908fa920804490 FTM0.3632532
0x7cc5c5666e7ebf6985f8619c96bedf0782030358fe5b0a7c1ae74da4c31e00c3Transfer Ownersh...239281982021-12-04 2:41:59480 days 19 hrs ago0xfb3485c2e209a5cfbdc1447674256578f1a80ee3 IN  0x7a3b799e929c9bef403976405d8908fa920804490 FTM0.00910936355
0x46a0927276ecfe7d60aca959abff16316c0f5f9bd4eb61ca834ece24d3edb3770x61014060239281882021-12-04 2:41:48480 days 19 hrs ago0xfb3485c2e209a5cfbdc1447674256578f1a80ee3 IN  Create: MultichainWithdrawer0 FTM0.993268703605
[ Download CSV Export 
Latest 1 internal transaction
Parent Txn Hash Block From To Value
0x46a0927276ecfe7d60aca959abff16316c0f5f9bd4eb61ca834ece24d3edb377239281882021-12-04 2:41:48480 days 19 hrs ago 0xfb3485c2e209a5cfbdc1447674256578f1a80ee3  Contract Creation0 FTM
[ Download CSV Export 
Loading

Contract Source Code Verified (Exact Match)

Contract Name:
MultichainWithdrawer

Compiler Version
v0.8.10+commit.fc410830

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, GNU GPLv3 license

Contract Source Code (Solidity Standard Json-Input format)

File 1 of 11 : IUniswapV2Pair.sol
// SPDX-License-Identifier: GPL-3.0

pragma solidity >=0.5.0;

interface IUniswapV2Pair {
    event Approval(address indexed owner, address indexed spender, uint value);
    event Transfer(address indexed from, address indexed to, uint value);

    function name() external pure returns (string memory);
    function symbol() external pure returns (string memory);
    function decimals() external pure returns (uint8);
    function totalSupply() external view returns (uint);
    function balanceOf(address owner) external view returns (uint);
    function allowance(address owner, address spender) external view returns (uint);

    function approve(address spender, uint value) external returns (bool);
    function transfer(address to, uint value) external returns (bool);
    function transferFrom(address from, address to, uint value) external returns (bool);

    function DOMAIN_SEPARATOR() external view returns (bytes32);
    function PERMIT_TYPEHASH() external pure returns (bytes32);
    function nonces(address owner) external view returns (uint);

    function permit(address owner, address spender, uint value, uint deadline, uint8 v, bytes32 r, bytes32 s) external;

    event Mint(address indexed sender, uint amount0, uint amount1);
    event Burn(address indexed sender, uint amount0, uint amount1, address indexed to);
    event Swap(
        address indexed sender,
        uint amount0In,
        uint amount1In,
        uint amount0Out,
        uint amount1Out,
        address indexed to
    );
    event Sync(uint112 reserve0, uint112 reserve1);

    function MINIMUM_LIQUIDITY() external pure returns (uint);
    function factory() external view returns (address);
    function token0() external view returns (address);
    function token1() external view returns (address);
    function getReserves() external view returns (uint112 reserve0, uint112 reserve1, uint32 blockTimestampLast);
    function price0CumulativeLast() external view returns (uint);
    function price1CumulativeLast() external view returns (uint);
    function kLast() external view returns (uint);

    function mint(address to) external returns (uint liquidity);
    function burn(address to) external returns (uint amount0, uint amount1);
    function swap(uint amount0Out, uint amount1Out, address to, bytes calldata data) external;
    function skim(address to) external;
    function sync() external;

    function initialize(address, address) external;
}

File 2 of 11 : IUniswapV3Pool.sol
// SPDX-License-Identifier: GPL-2.0-or-later
pragma solidity >=0.5.0;

import './pool/IUniswapV3PoolImmutables.sol';
import './pool/IUniswapV3PoolState.sol';
import './pool/IUniswapV3PoolDerivedState.sol';
import './pool/IUniswapV3PoolActions.sol';
import './pool/IUniswapV3PoolOwnerActions.sol';
import './pool/IUniswapV3PoolEvents.sol';

/// @title The interface for a Uniswap V3 Pool
/// @notice A Uniswap pool facilitates swapping and automated market making between any two assets that strictly conform
/// to the ERC20 specification
/// @dev The pool interface is broken up into many smaller pieces
interface IUniswapV3Pool is
    IUniswapV3PoolImmutables,
    IUniswapV3PoolState,
    IUniswapV3PoolDerivedState,
    IUniswapV3PoolActions,
    IUniswapV3PoolOwnerActions,
    IUniswapV3PoolEvents
{

}

File 3 of 11 : IUniswapV3SwapCallback.sol
// SPDX-License-Identifier: GPL-2.0-or-later
pragma solidity >=0.5.0;

/// @title Callback for IUniswapV3PoolActions#swap
/// @notice Any contract that calls IUniswapV3PoolActions#swap must implement this interface
interface IUniswapV3SwapCallback {
    /// @notice Called to `msg.sender` after executing a swap via IUniswapV3Pool#swap.
    /// @dev In the implementation you must pay the pool tokens owed for the swap.
    /// The caller of this method must be checked to be a UniswapV3Pool deployed by the canonical UniswapV3Factory.
    /// amount0Delta and amount1Delta can both be 0 if no tokens were swapped.
    /// @param amount0Delta The amount of token0 that was sent (negative) or must be received (positive) by the pool by
    /// the end of the swap. If positive, the callback must send that amount of token0 to the pool.
    /// @param amount1Delta The amount of token1 that was sent (negative) or must be received (positive) by the pool by
    /// the end of the swap. If positive, the callback must send that amount of token1 to the pool.
    /// @param data Any data passed through by the caller via the IUniswapV3PoolActions#swap call
    function uniswapV3SwapCallback(
        int256 amount0Delta,
        int256 amount1Delta,
        bytes calldata data
    ) external;
}

File 4 of 11 : IUniswapV3PoolActions.sol
// SPDX-License-Identifier: GPL-2.0-or-later
pragma solidity >=0.5.0;

/// @title Permissionless pool actions
/// @notice Contains pool methods that can be called by anyone
interface IUniswapV3PoolActions {
    /// @notice Sets the initial price for the pool
    /// @dev Price is represented as a sqrt(amountToken1/amountToken0) Q64.96 value
    /// @param sqrtPriceX96 the initial sqrt price of the pool as a Q64.96
    function initialize(uint160 sqrtPriceX96) external;

    /// @notice Adds liquidity for the given recipient/tickLower/tickUpper position
    /// @dev The caller of this method receives a callback in the form of IUniswapV3MintCallback#uniswapV3MintCallback
    /// in which they must pay any token0 or token1 owed for the liquidity. The amount of token0/token1 due depends
    /// on tickLower, tickUpper, the amount of liquidity, and the current price.
    /// @param recipient The address for which the liquidity will be created
    /// @param tickLower The lower tick of the position in which to add liquidity
    /// @param tickUpper The upper tick of the position in which to add liquidity
    /// @param amount The amount of liquidity to mint
    /// @param data Any data that should be passed through to the callback
    /// @return amount0 The amount of token0 that was paid to mint the given amount of liquidity. Matches the value in the callback
    /// @return amount1 The amount of token1 that was paid to mint the given amount of liquidity. Matches the value in the callback
    function mint(
        address recipient,
        int24 tickLower,
        int24 tickUpper,
        uint128 amount,
        bytes calldata data
    ) external returns (uint256 amount0, uint256 amount1);

    /// @notice Collects tokens owed to a position
    /// @dev Does not recompute fees earned, which must be done either via mint or burn of any amount of liquidity.
    /// Collect must be called by the position owner. To withdraw only token0 or only token1, amount0Requested or
    /// amount1Requested may be set to zero. To withdraw all tokens owed, caller may pass any value greater than the
    /// actual tokens owed, e.g. type(uint128).max. Tokens owed may be from accumulated swap fees or burned liquidity.
    /// @param recipient The address which should receive the fees collected
    /// @param tickLower The lower tick of the position for which to collect fees
    /// @param tickUpper The upper tick of the position for which to collect fees
    /// @param amount0Requested How much token0 should be withdrawn from the fees owed
    /// @param amount1Requested How much token1 should be withdrawn from the fees owed
    /// @return amount0 The amount of fees collected in token0
    /// @return amount1 The amount of fees collected in token1
    function collect(
        address recipient,
        int24 tickLower,
        int24 tickUpper,
        uint128 amount0Requested,
        uint128 amount1Requested
    ) external returns (uint128 amount0, uint128 amount1);

    /// @notice Burn liquidity from the sender and account tokens owed for the liquidity to the position
    /// @dev Can be used to trigger a recalculation of fees owed to a position by calling with an amount of 0
    /// @dev Fees must be collected separately via a call to #collect
    /// @param tickLower The lower tick of the position for which to burn liquidity
    /// @param tickUpper The upper tick of the position for which to burn liquidity
    /// @param amount How much liquidity to burn
    /// @return amount0 The amount of token0 sent to the recipient
    /// @return amount1 The amount of token1 sent to the recipient
    function burn(
        int24 tickLower,
        int24 tickUpper,
        uint128 amount
    ) external returns (uint256 amount0, uint256 amount1);

    /// @notice Swap token0 for token1, or token1 for token0
    /// @dev The caller of this method receives a callback in the form of IUniswapV3SwapCallback#uniswapV3SwapCallback
    /// @param recipient The address to receive the output of the swap
    /// @param zeroForOne The direction of the swap, true for token0 to token1, false for token1 to token0
    /// @param amountSpecified The amount of the swap, which implicitly configures the swap as exact input (positive), or exact output (negative)
    /// @param sqrtPriceLimitX96 The Q64.96 sqrt price limit. If zero for one, the price cannot be less than this
    /// value after the swap. If one for zero, the price cannot be greater than this value after the swap
    /// @param data Any data to be passed through to the callback
    /// @return amount0 The delta of the balance of token0 of the pool, exact when negative, minimum when positive
    /// @return amount1 The delta of the balance of token1 of the pool, exact when negative, minimum when positive
    function swap(
        address recipient,
        bool zeroForOne,
        int256 amountSpecified,
        uint160 sqrtPriceLimitX96,
        bytes calldata data
    ) external returns (int256 amount0, int256 amount1);

    /// @notice Receive token0 and/or token1 and pay it back, plus a fee, in the callback
    /// @dev The caller of this method receives a callback in the form of IUniswapV3FlashCallback#uniswapV3FlashCallback
    /// @dev Can be used to donate underlying tokens pro-rata to currently in-range liquidity providers by calling
    /// with 0 amount{0,1} and sending the donation amount(s) from the callback
    /// @param recipient The address which will receive the token0 and token1 amounts
    /// @param amount0 The amount of token0 to send
    /// @param amount1 The amount of token1 to send
    /// @param data Any data to be passed through to the callback
    function flash(
        address recipient,
        uint256 amount0,
        uint256 amount1,
        bytes calldata data
    ) external;

    /// @notice Increase the maximum number of price and liquidity observations that this pool will store
    /// @dev This method is no-op if the pool already has an observationCardinalityNext greater than or equal to
    /// the input observationCardinalityNext.
    /// @param observationCardinalityNext The desired minimum number of observations for the pool to store
    function increaseObservationCardinalityNext(uint16 observationCardinalityNext) external;
}

File 5 of 11 : IUniswapV3PoolDerivedState.sol
// SPDX-License-Identifier: GPL-2.0-or-later
pragma solidity >=0.5.0;

/// @title Pool state that is not stored
/// @notice Contains view functions to provide information about the pool that is computed rather than stored on the
/// blockchain. The functions here may have variable gas costs.
interface IUniswapV3PoolDerivedState {
    /// @notice Returns the cumulative tick and liquidity as of each timestamp `secondsAgo` from the current block timestamp
    /// @dev To get a time weighted average tick or liquidity-in-range, you must call this with two values, one representing
    /// the beginning of the period and another for the end of the period. E.g., to get the last hour time-weighted average tick,
    /// you must call it with secondsAgos = [3600, 0].
    /// @dev The time weighted average tick represents the geometric time weighted average price of the pool, in
    /// log base sqrt(1.0001) of token1 / token0. The TickMath library can be used to go from a tick value to a ratio.
    /// @param secondsAgos From how long ago each cumulative tick and liquidity value should be returned
    /// @return tickCumulatives Cumulative tick values as of each `secondsAgos` from the current block timestamp
    /// @return secondsPerLiquidityCumulativeX128s Cumulative seconds per liquidity-in-range value as of each `secondsAgos` from the current block
    /// timestamp
    function observe(uint32[] calldata secondsAgos)
        external
        view
        returns (int56[] memory tickCumulatives, uint160[] memory secondsPerLiquidityCumulativeX128s);

    /// @notice Returns a snapshot of the tick cumulative, seconds per liquidity and seconds inside a tick range
    /// @dev Snapshots must only be compared to other snapshots, taken over a period for which a position existed.
    /// I.e., snapshots cannot be compared if a position is not held for the entire period between when the first
    /// snapshot is taken and the second snapshot is taken.
    /// @param tickLower The lower tick of the range
    /// @param tickUpper The upper tick of the range
    /// @return tickCumulativeInside The snapshot of the tick accumulator for the range
    /// @return secondsPerLiquidityInsideX128 The snapshot of seconds per liquidity for the range
    /// @return secondsInside The snapshot of seconds per liquidity for the range
    function snapshotCumulativesInside(int24 tickLower, int24 tickUpper)
        external
        view
        returns (
            int56 tickCumulativeInside,
            uint160 secondsPerLiquidityInsideX128,
            uint32 secondsInside
        );
}

File 6 of 11 : IUniswapV3PoolEvents.sol
// SPDX-License-Identifier: GPL-2.0-or-later
pragma solidity >=0.5.0;

/// @title Events emitted by a pool
/// @notice Contains all events emitted by the pool
interface IUniswapV3PoolEvents {
    /// @notice Emitted exactly once by a pool when #initialize is first called on the pool
    /// @dev Mint/Burn/Swap cannot be emitted by the pool before Initialize
    /// @param sqrtPriceX96 The initial sqrt price of the pool, as a Q64.96
    /// @param tick The initial tick of the pool, i.e. log base 1.0001 of the starting price of the pool
    event Initialize(uint160 sqrtPriceX96, int24 tick);

    /// @notice Emitted when liquidity is minted for a given position
    /// @param sender The address that minted the liquidity
    /// @param owner The owner of the position and recipient of any minted liquidity
    /// @param tickLower The lower tick of the position
    /// @param tickUpper The upper tick of the position
    /// @param amount The amount of liquidity minted to the position range
    /// @param amount0 How much token0 was required for the minted liquidity
    /// @param amount1 How much token1 was required for the minted liquidity
    event Mint(
        address sender,
        address indexed owner,
        int24 indexed tickLower,
        int24 indexed tickUpper,
        uint128 amount,
        uint256 amount0,
        uint256 amount1
    );

    /// @notice Emitted when fees are collected by the owner of a position
    /// @dev Collect events may be emitted with zero amount0 and amount1 when the caller chooses not to collect fees
    /// @param owner The owner of the position for which fees are collected
    /// @param tickLower The lower tick of the position
    /// @param tickUpper The upper tick of the position
    /// @param amount0 The amount of token0 fees collected
    /// @param amount1 The amount of token1 fees collected
    event Collect(
        address indexed owner,
        address recipient,
        int24 indexed tickLower,
        int24 indexed tickUpper,
        uint128 amount0,
        uint128 amount1
    );

    /// @notice Emitted when a position's liquidity is removed
    /// @dev Does not withdraw any fees earned by the liquidity position, which must be withdrawn via #collect
    /// @param owner The owner of the position for which liquidity is removed
    /// @param tickLower The lower tick of the position
    /// @param tickUpper The upper tick of the position
    /// @param amount The amount of liquidity to remove
    /// @param amount0 The amount of token0 withdrawn
    /// @param amount1 The amount of token1 withdrawn
    event Burn(
        address indexed owner,
        int24 indexed tickLower,
        int24 indexed tickUpper,
        uint128 amount,
        uint256 amount0,
        uint256 amount1
    );

    /// @notice Emitted by the pool for any swaps between token0 and token1
    /// @param sender The address that initiated the swap call, and that received the callback
    /// @param recipient The address that received the output of the swap
    /// @param amount0 The delta of the token0 balance of the pool
    /// @param amount1 The delta of the token1 balance of the pool
    /// @param sqrtPriceX96 The sqrt(price) of the pool after the swap, as a Q64.96
    /// @param liquidity The liquidity of the pool after the swap
    /// @param tick The log base 1.0001 of price of the pool after the swap
    event Swap(
        address indexed sender,
        address indexed recipient,
        int256 amount0,
        int256 amount1,
        uint160 sqrtPriceX96,
        uint128 liquidity,
        int24 tick
    );

    /// @notice Emitted by the pool for any flashes of token0/token1
    /// @param sender The address that initiated the swap call, and that received the callback
    /// @param recipient The address that received the tokens from flash
    /// @param amount0 The amount of token0 that was flashed
    /// @param amount1 The amount of token1 that was flashed
    /// @param paid0 The amount of token0 paid for the flash, which can exceed the amount0 plus the fee
    /// @param paid1 The amount of token1 paid for the flash, which can exceed the amount1 plus the fee
    event Flash(
        address indexed sender,
        address indexed recipient,
        uint256 amount0,
        uint256 amount1,
        uint256 paid0,
        uint256 paid1
    );

    /// @notice Emitted by the pool for increases to the number of observations that can be stored
    /// @dev observationCardinalityNext is not the observation cardinality until an observation is written at the index
    /// just before a mint/swap/burn.
    /// @param observationCardinalityNextOld The previous value of the next observation cardinality
    /// @param observationCardinalityNextNew The updated value of the next observation cardinality
    event IncreaseObservationCardinalityNext(
        uint16 observationCardinalityNextOld,
        uint16 observationCardinalityNextNew
    );

    /// @notice Emitted when the protocol fee is changed by the pool
    /// @param feeProtocol0Old The previous value of the token0 protocol fee
    /// @param feeProtocol1Old The previous value of the token1 protocol fee
    /// @param feeProtocol0New The updated value of the token0 protocol fee
    /// @param feeProtocol1New The updated value of the token1 protocol fee
    event SetFeeProtocol(uint8 feeProtocol0Old, uint8 feeProtocol1Old, uint8 feeProtocol0New, uint8 feeProtocol1New);

    /// @notice Emitted when the collected protocol fees are withdrawn by the factory owner
    /// @param sender The address that collects the protocol fees
    /// @param recipient The address that receives the collected protocol fees
    /// @param amount0 The amount of token0 protocol fees that is withdrawn
    /// @param amount0 The amount of token1 protocol fees that is withdrawn
    event CollectProtocol(address indexed sender, address indexed recipient, uint128 amount0, uint128 amount1);
}

File 7 of 11 : IUniswapV3PoolImmutables.sol
// SPDX-License-Identifier: GPL-2.0-or-later
pragma solidity >=0.5.0;

/// @title Pool state that never changes
/// @notice These parameters are fixed for a pool forever, i.e., the methods will always return the same values
interface IUniswapV3PoolImmutables {
    /// @notice The contract that deployed the pool, which must adhere to the IUniswapV3Factory interface
    /// @return The contract address
    function factory() external view returns (address);

    /// @notice The first of the two tokens of the pool, sorted by address
    /// @return The token contract address
    function token0() external view returns (address);

    /// @notice The second of the two tokens of the pool, sorted by address
    /// @return The token contract address
    function token1() external view returns (address);

    /// @notice The pool's fee in hundredths of a bip, i.e. 1e-6
    /// @return The fee
    function fee() external view returns (uint24);

    /// @notice The pool tick spacing
    /// @dev Ticks can only be used at multiples of this value, minimum of 1 and always positive
    /// e.g.: a tickSpacing of 3 means ticks can be initialized every 3rd tick, i.e., ..., -6, -3, 0, 3, 6, ...
    /// This value is an int24 to avoid casting even though it is always positive.
    /// @return The tick spacing
    function tickSpacing() external view returns (int24);

    /// @notice The maximum amount of position liquidity that can use any tick in the range
    /// @dev This parameter is enforced per tick to prevent liquidity from overflowing a uint128 at any point, and
    /// also prevents out-of-range liquidity from being used to prevent adding in-range liquidity to a pool
    /// @return The max amount of liquidity per tick
    function maxLiquidityPerTick() external view returns (uint128);
}

File 8 of 11 : IUniswapV3PoolOwnerActions.sol
// SPDX-License-Identifier: GPL-2.0-or-later
pragma solidity >=0.5.0;

/// @title Permissioned pool actions
/// @notice Contains pool methods that may only be called by the factory owner
interface IUniswapV3PoolOwnerActions {
    /// @notice Set the denominator of the protocol's % share of the fees
    /// @param feeProtocol0 new protocol fee for token0 of the pool
    /// @param feeProtocol1 new protocol fee for token1 of the pool
    function setFeeProtocol(uint8 feeProtocol0, uint8 feeProtocol1) external;

    /// @notice Collect the protocol fee accrued to the pool
    /// @param recipient The address to which collected protocol fees should be sent
    /// @param amount0Requested The maximum amount of token0 to send, can be 0 to collect fees in only token1
    /// @param amount1Requested The maximum amount of token1 to send, can be 0 to collect fees in only token0
    /// @return amount0 The protocol fee collected in token0
    /// @return amount1 The protocol fee collected in token1
    function collectProtocol(
        address recipient,
        uint128 amount0Requested,
        uint128 amount1Requested
    ) external returns (uint128 amount0, uint128 amount1);
}

File 9 of 11 : IUniswapV3PoolState.sol
// SPDX-License-Identifier: GPL-2.0-or-later
pragma solidity >=0.5.0;

/// @title Pool state that can change
/// @notice These methods compose the pool's state, and can change with any frequency including multiple times
/// per transaction
interface IUniswapV3PoolState {
    /// @notice The 0th storage slot in the pool stores many values, and is exposed as a single method to save gas
    /// when accessed externally.
    /// @return sqrtPriceX96 The current price of the pool as a sqrt(token1/token0) Q64.96 value
    /// tick The current tick of the pool, i.e. according to the last tick transition that was run.
    /// This value may not always be equal to SqrtTickMath.getTickAtSqrtRatio(sqrtPriceX96) if the price is on a tick
    /// boundary.
    /// observationIndex The index of the last oracle observation that was written,
    /// observationCardinality The current maximum number of observations stored in the pool,
    /// observationCardinalityNext The next maximum number of observations, to be updated when the observation.
    /// feeProtocol The protocol fee for both tokens of the pool.
    /// Encoded as two 4 bit values, where the protocol fee of token1 is shifted 4 bits and the protocol fee of token0
    /// is the lower 4 bits. Used as the denominator of a fraction of the swap fee, e.g. 4 means 1/4th of the swap fee.
    /// unlocked Whether the pool is currently locked to reentrancy
    function slot0()
        external
        view
        returns (
            uint160 sqrtPriceX96,
            int24 tick,
            uint16 observationIndex,
            uint16 observationCardinality,
            uint16 observationCardinalityNext,
            uint8 feeProtocol,
            bool unlocked
        );

    /// @notice The fee growth as a Q128.128 fees of token0 collected per unit of liquidity for the entire life of the pool
    /// @dev This value can overflow the uint256
    function feeGrowthGlobal0X128() external view returns (uint256);

    /// @notice The fee growth as a Q128.128 fees of token1 collected per unit of liquidity for the entire life of the pool
    /// @dev This value can overflow the uint256
    function feeGrowthGlobal1X128() external view returns (uint256);

    /// @notice The amounts of token0 and token1 that are owed to the protocol
    /// @dev Protocol fees will never exceed uint128 max in either token
    function protocolFees() external view returns (uint128 token0, uint128 token1);

    /// @notice The currently in range liquidity available to the pool
    /// @dev This value has no relationship to the total liquidity across all ticks
    function liquidity() external view returns (uint128);

    /// @notice Look up information about a specific tick in the pool
    /// @param tick The tick to look up
    /// @return liquidityGross the total amount of position liquidity that uses the pool either as tick lower or
    /// tick upper,
    /// liquidityNet how much liquidity changes when the pool price crosses the tick,
    /// feeGrowthOutside0X128 the fee growth on the other side of the tick from the current tick in token0,
    /// feeGrowthOutside1X128 the fee growth on the other side of the tick from the current tick in token1,
    /// tickCumulativeOutside the cumulative tick value on the other side of the tick from the current tick
    /// secondsPerLiquidityOutsideX128 the seconds spent per liquidity on the other side of the tick from the current tick,
    /// secondsOutside the seconds spent on the other side of the tick from the current tick,
    /// initialized Set to true if the tick is initialized, i.e. liquidityGross is greater than 0, otherwise equal to false.
    /// Outside values can only be used if the tick is initialized, i.e. if liquidityGross is greater than 0.
    /// In addition, these values are only relative and must be used only in comparison to previous snapshots for
    /// a specific position.
    function ticks(int24 tick)
        external
        view
        returns (
            uint128 liquidityGross,
            int128 liquidityNet,
            uint256 feeGrowthOutside0X128,
            uint256 feeGrowthOutside1X128,
            int56 tickCumulativeOutside,
            uint160 secondsPerLiquidityOutsideX128,
            uint32 secondsOutside,
            bool initialized
        );

    /// @notice Returns 256 packed tick initialized boolean values. See TickBitmap for more information
    function tickBitmap(int16 wordPosition) external view returns (uint256);

    /// @notice Returns the information about a position by the position's key
    /// @param key The position's key is a hash of a preimage composed by the owner, tickLower and tickUpper
    /// @return _liquidity The amount of liquidity in the position,
    /// Returns feeGrowthInside0LastX128 fee growth of token0 inside the tick range as of the last mint/burn/poke,
    /// Returns feeGrowthInside1LastX128 fee growth of token1 inside the tick range as of the last mint/burn/poke,
    /// Returns tokensOwed0 the computed amount of token0 owed to the position as of the last mint/burn/poke,
    /// Returns tokensOwed1 the computed amount of token1 owed to the position as of the last mint/burn/poke
    function positions(bytes32 key)
        external
        view
        returns (
            uint128 _liquidity,
            uint256 feeGrowthInside0LastX128,
            uint256 feeGrowthInside1LastX128,
            uint128 tokensOwed0,
            uint128 tokensOwed1
        );

    /// @notice Returns data about a specific observation index
    /// @param index The element of the observations array to fetch
    /// @dev You most likely want to use #observe() instead of this method to get an observation as of some amount of time
    /// ago, rather than at a specific index in the array.
    /// @return blockTimestamp The timestamp of the observation,
    /// Returns tickCumulative the tick multiplied by seconds elapsed for the life of the pool as of the observation timestamp,
    /// Returns secondsPerLiquidityCumulativeX128 the seconds per in range liquidity for the life of the pool as of the observation timestamp,
    /// Returns initialized whether the observation has been initialized and the values are safe to use
    function observations(uint256 index)
        external
        view
        returns (
            uint32 blockTimestamp,
            int56 tickCumulative,
            uint160 secondsPerLiquidityCumulativeX128,
            bool initialized
        );
}

File 10 of 11 : ISwapRouter.sol
// SPDX-License-Identifier: GPL-2.0-or-later
pragma solidity >=0.7.5;
pragma abicoder v2;

import '@uniswap/v3-core/contracts/interfaces/callback/IUniswapV3SwapCallback.sol';

/// @title Router token swapping functionality
/// @notice Functions for swapping tokens via Uniswap V3
interface ISwapRouter is IUniswapV3SwapCallback {
    struct ExactInputSingleParams {
        address tokenIn;
        address tokenOut;
        uint24 fee;
        address recipient;
        uint256 deadline;
        uint256 amountIn;
        uint256 amountOutMinimum;
        uint160 sqrtPriceLimitX96;
    }

    /// @notice Swaps `amountIn` of one token for as much as possible of another token
    /// @param params The parameters necessary for the swap, encoded as `ExactInputSingleParams` in calldata
    /// @return amountOut The amount of the received token
    function exactInputSingle(ExactInputSingleParams calldata params) external payable returns (uint256 amountOut);

    struct ExactInputParams {
        bytes path;
        address recipient;
        uint256 deadline;
        uint256 amountIn;
        uint256 amountOutMinimum;
    }

    /// @notice Swaps `amountIn` of one token for as much as possible of another along the specified path
    /// @param params The parameters necessary for the multi-hop swap, encoded as `ExactInputParams` in calldata
    /// @return amountOut The amount of the received token
    function exactInput(ExactInputParams calldata params) external payable returns (uint256 amountOut);

    struct ExactOutputSingleParams {
        address tokenIn;
        address tokenOut;
        uint24 fee;
        address recipient;
        uint256 deadline;
        uint256 amountOut;
        uint256 amountInMaximum;
        uint160 sqrtPriceLimitX96;
    }

    /// @notice Swaps as little as possible of one token for `amountOut` of another token
    /// @param params The parameters necessary for the swap, encoded as `ExactOutputSingleParams` in calldata
    /// @return amountIn The amount of the input token
    function exactOutputSingle(ExactOutputSingleParams calldata params) external payable returns (uint256 amountIn);

    struct ExactOutputParams {
        bytes path;
        address recipient;
        uint256 deadline;
        uint256 amountOut;
        uint256 amountInMaximum;
    }

    /// @notice Swaps as little as possible of one token for `amountOut` of another along the specified path (reversed)
    /// @param params The parameters necessary for the multi-hop swap, encoded as `ExactOutputParams` in calldata
    /// @return amountIn The amount of the input token
    function exactOutput(ExactOutputParams calldata params) external payable returns (uint256 amountIn);
}

File 11 of 11 : MultichainWithdrawer.sol
// SPDX-License-Identifier: MIXED
pragma solidity 0.8.10;

import "@uniswap/v3-core/contracts/interfaces/IUniswapV3Pool.sol";
import "@uniswap/v3-periphery/contracts/interfaces/ISwapRouter.sol";
import "@sushiswap/core/contracts/uniswapv2/interfaces/IUniswapV2Pair.sol";

// Audit on 5-Jan-2021 by Keno and BoringCrypto
// Source: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/access/Ownable.sol + Claimable.sol
// Edited by BoringCrypto

contract BoringOwnableData {
    address public owner;
    address public pendingOwner;
}

contract BoringOwnable is BoringOwnableData {
    event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);

    /// @notice `owner` defaults to msg.sender on construction.
    constructor() {
        owner = msg.sender;
        emit OwnershipTransferred(address(0), msg.sender);
    }

    /// @notice Transfers ownership to `newOwner`. Either directly or claimable by the new pending owner.
    /// Can only be invoked by the current `owner`.
    /// @param newOwner Address of the new owner.
    /// @param direct True if `newOwner` should be set immediately. False if `newOwner` needs to use `claimOwnership`.
    /// @param renounce Allows the `newOwner` to be `address(0)` if `direct` and `renounce` is True. Has no effect otherwise.
    function transferOwnership(
        address newOwner,
        bool direct,
        bool renounce
    ) public onlyOwner {
        if (direct) {
            // Checks
            require(newOwner != address(0) || renounce, "Ownable: zero address");

            // Effects
            emit OwnershipTransferred(owner, newOwner);
            owner = newOwner;
            pendingOwner = address(0);
        } else {
            // Effects
            pendingOwner = newOwner;
        }
    }

    /// @notice Needs to be called by `pendingOwner` to claim ownership.
    function claimOwnership() public {
        address _pendingOwner = pendingOwner;

        // Checks
        require(msg.sender == _pendingOwner, "Ownable: caller != pending owner");

        // Effects
        emit OwnershipTransferred(owner, _pendingOwner);
        owner = _pendingOwner;
        pendingOwner = address(0);
    }

    /// @notice Only allows the `owner` to execute the function.
    modifier onlyOwner() {
        require(msg.sender == owner, "Ownable: caller is not the owner");
        _;
    }
}

interface IERC20 {
    function transferFrom(
        address from,
        address to,
        uint256 amount
    ) external returns (bool);

    function transfer(address recipient, uint256 amount) external returns (bool);

    function balanceOf(address account) external view returns (uint256);

    function approve(address spender, uint256 amount) external returns (bool);
}

interface IBentoBoxV1 {
    function balanceOf(IERC20 token, address user) external view returns (uint256 share);

    function deposit(
        IERC20 token_,
        address from,
        address to,
        uint256 amount,
        uint256 share
    ) external payable returns (uint256 amountOut, uint256 shareOut);

    function toAmount(
        IERC20 token,
        uint256 share,
        bool roundUp
    ) external view returns (uint256 amount);

    function toShare(
        IERC20 token,
        uint256 amount,
        bool roundUp
    ) external view returns (uint256 share);

    function transfer(
        IERC20 token,
        address from,
        address to,
        uint256 share
    ) external;

    function withdraw(
        IERC20 token_,
        address from,
        address to,
        uint256 amount,
        uint256 share
    ) external returns (uint256 amountOut, uint256 shareOut);
}

// License-Identifier: MIT

interface Cauldron {
    function accrue() external;

    function withdrawFees() external;

    function accrueInfo()
        external
        view
        returns (
            uint64,
            uint128,
            uint64
        );

    function bentoBox() external returns (address);

    function setFeeTo(address newFeeTo) external;

    function feeTo() external returns (address);

    function masterContract() external returns (CauldronV1);
}

interface CauldronV1 {
    function accrue() external;

    function withdrawFees() external;

    function accrueInfo() external view returns (uint64, uint128);

    function setFeeTo(address newFeeTo) external;

    function feeTo() external returns (address);

    function masterContract() external returns (CauldronV1);
}

interface AnyswapRouter {
    function anySwapOut(
        address token,
        address to,
        uint256 amount,
        uint256 toChainID
    ) external;
}

contract MultichainWithdrawer is BoringOwnable {
    event MimWithdrawn(uint256 amount);

    bytes4 private constant SIG_TRANSFER = 0xa9059cbb; // transfer(address,uint256)

    IBentoBoxV1 public immutable bentoBox;
    IBentoBoxV1 public immutable degenBox;
    IERC20 public immutable MIM;

    AnyswapRouter public immutable anyswapRouter;

    address public immutable mimProvider;
    address public immutable ethereumRecipient;

    CauldronV1[] public bentoBoxCauldronsV1;
    Cauldron[] public bentoBoxCauldronsV2;
    Cauldron[] public degenBoxCauldrons;

    constructor(
        IBentoBoxV1 bentoBox_,
        IBentoBoxV1 degenBox_,
        IERC20 mim,
        AnyswapRouter anyswapRouter_,
        address mimProvider_,
        address ethereumRecipient_,
        Cauldron[] memory bentoBoxCauldronsV2_,
        CauldronV1[] memory bentoBoxCauldronsV1_,
        Cauldron[] memory degenBoxCauldrons_
    ) {
        bentoBox = bentoBox_;
        degenBox = degenBox_;
        MIM = mim;
        anyswapRouter = anyswapRouter_;
        mimProvider = mimProvider_;
        ethereumRecipient = ethereumRecipient_;

        bentoBoxCauldronsV2 = bentoBoxCauldronsV2_;
        bentoBoxCauldronsV1 = bentoBoxCauldronsV1_;
        degenBoxCauldrons = degenBoxCauldrons_;

        MIM.approve(address(anyswapRouter), type(uint256).max);
    }

    function withdraw() public {
        uint256 length = bentoBoxCauldronsV2.length;
        for (uint256 i = 0; i < length; i++) {
            require(bentoBoxCauldronsV2[i].masterContract().feeTo() == address(this), "wrong feeTo");

            bentoBoxCauldronsV2[i].accrue();
            (, uint256 feesEarned, ) = bentoBoxCauldronsV2[i].accrueInfo();
            if (feesEarned > (bentoBox.toAmount(MIM, bentoBox.balanceOf(MIM, address(bentoBoxCauldronsV2[i])), false))) {
                MIM.transferFrom(mimProvider, address(bentoBox), feesEarned);
                bentoBox.deposit(MIM, address(bentoBox), address(bentoBoxCauldronsV2[i]), feesEarned, 0);
            }

            bentoBoxCauldronsV2[i].withdrawFees();
        }

        length = bentoBoxCauldronsV1.length;
        for (uint256 i = 0; i < length; i++) {
            require(bentoBoxCauldronsV1[i].masterContract().feeTo() == address(this), "wrong feeTo");

            bentoBoxCauldronsV1[i].accrue();
            (, uint256 feesEarned) = bentoBoxCauldronsV1[i].accrueInfo();
            if (feesEarned > (bentoBox.toAmount(MIM, bentoBox.balanceOf(MIM, address(bentoBoxCauldronsV1[i])), false))) {
                MIM.transferFrom(mimProvider, address(bentoBox), feesEarned);
                bentoBox.deposit(MIM, address(bentoBox), address(bentoBoxCauldronsV1[i]), feesEarned, 0);
            }
            bentoBoxCauldronsV1[i].withdrawFees();
        }

        length = degenBoxCauldrons.length;
        for (uint256 i = 0; i < length; i++) {
            require(degenBoxCauldrons[i].masterContract().feeTo() == address(this), "wrong feeTo");

            degenBoxCauldrons[i].accrue();
            (, uint256 feesEarned, ) = degenBoxCauldrons[i].accrueInfo();
            if (feesEarned > (degenBox.toAmount(MIM, degenBox.balanceOf(MIM, address(degenBoxCauldrons[i])), false))) {
                MIM.transferFrom(mimProvider, address(degenBox), feesEarned);
                degenBox.deposit(MIM, address(degenBox), address(degenBoxCauldrons[i]), feesEarned, 0);
            }
            degenBoxCauldrons[i].withdrawFees();
        }

        uint256 mimFromBentoBoxShare = address(bentoBox) != address(0) ? bentoBox.balanceOf(MIM, address(this)) : 0;
        uint256 mimFromDegenBoxShare = address(degenBox) != address(0) ? degenBox.balanceOf(MIM, address(this)) : 0;

        withdrawFromBentoBoxes(mimFromBentoBoxShare, mimFromDegenBoxShare);

        uint256 amountWithdrawn = MIM.balanceOf(address(this));
        bridgeMimToEthereum(amountWithdrawn);

        emit MimWithdrawn(amountWithdrawn);
    }

    function withdrawFromBentoBoxes(uint256 amountBentoboxShare, uint256 amountDegenBoxShare) public {
        if (amountBentoboxShare > 0) {
            bentoBox.withdraw(MIM, address(this), address(this), 0, amountBentoboxShare);
        }
        if (amountDegenBoxShare > 0) {
            degenBox.withdraw(MIM, address(this), address(this), 0, amountDegenBoxShare);
        }
    }

    function bridgeMimToEthereum(uint256 amount) public {
        // bridge all MIM to Ethereum, chainId 1
        anyswapRouter.anySwapOut(address(MIM), ethereumRecipient, amount, 1);
    }

    function rescueTokens(
        IERC20 token,
        address to,
        uint256 amount
    ) external onlyOwner {
        _safeTransfer(token, to, amount);
    }

    function addPool(Cauldron pool) external onlyOwner {
        _addPool(pool);
    }

    function addPoolV1(CauldronV1 pool) external onlyOwner {
        bentoBoxCauldronsV1.push(pool);
    }

    function addPools(Cauldron[] memory pools) external onlyOwner {
        for (uint256 i = 0; i < pools.length; i++) {
            _addPool(pools[i]);
        }
    }

    function _addPool(Cauldron pool) internal onlyOwner {
        require(address(pool) != address(0), "invalid cauldron");

        if (pool.bentoBox() == address(bentoBox)) {
            //do not allow doubles
            for (uint256 i = 0; i < bentoBoxCauldronsV2.length; i++) {
                require(bentoBoxCauldronsV2[i] != pool, "already added");
            }
            bentoBoxCauldronsV2.push(pool);
        } else if (pool.bentoBox() == address(degenBox)) {
            for (uint256 i = 0; i < degenBoxCauldrons.length; i++) {
                require(degenBoxCauldrons[i] != pool, "already added");
            }
            degenBoxCauldrons.push(pool);
        }
    }

    function _safeTransfer(
        IERC20 token,
        address to,
        uint256 amount
    ) internal {
        (bool success, bytes memory data) = address(token).call(abi.encodeWithSelector(SIG_TRANSFER, to, amount));
        require(success && (data.length == 0 || abi.decode(data, (bool))), "transfer failed");
    }
}

Settings
{
  "evmVersion": "london",
  "libraries": {},
  "metadata": {
    "bytecodeHash": "ipfs",
    "useLiteralContent": true
  },
  "optimizer": {
    "enabled": false,
    "runs": 200
  },
  "remappings": [],
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "devdoc",
        "userdoc",
        "metadata",
        "abi"
      ]
    }
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"contract IBentoBoxV1","name":"bentoBox_","type":"address"},{"internalType":"contract IBentoBoxV1","name":"degenBox_","type":"address"},{"internalType":"contract IERC20","name":"mim","type":"address"},{"internalType":"contract AnyswapRouter","name":"anyswapRouter_","type":"address"},{"internalType":"address","name":"mimProvider_","type":"address"},{"internalType":"address","name":"ethereumRecipient_","type":"address"},{"internalType":"contract Cauldron[]","name":"bentoBoxCauldronsV2_","type":"address[]"},{"internalType":"contract CauldronV1[]","name":"bentoBoxCauldronsV1_","type":"address[]"},{"internalType":"contract Cauldron[]","name":"degenBoxCauldrons_","type":"address[]"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"MimWithdrawn","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"inputs":[],"name":"MIM","outputs":[{"internalType":"contract IERC20","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"contract Cauldron","name":"pool","type":"address"}],"name":"addPool","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"contract CauldronV1","name":"pool","type":"address"}],"name":"addPoolV1","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"contract Cauldron[]","name":"pools","type":"address[]"}],"name":"addPools","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"anyswapRouter","outputs":[{"internalType":"contract AnyswapRouter","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"bentoBox","outputs":[{"internalType":"contract IBentoBoxV1","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"bentoBoxCauldronsV1","outputs":[{"internalType":"contract CauldronV1","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"bentoBoxCauldronsV2","outputs":[{"internalType":"contract Cauldron","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"bridgeMimToEthereum","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"claimOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"degenBox","outputs":[{"internalType":"contract IBentoBoxV1","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"degenBoxCauldrons","outputs":[{"internalType":"contract Cauldron","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"ethereumRecipient","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mimProvider","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pendingOwner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"contract IERC20","name":"token","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"rescueTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"},{"internalType":"bool","name":"direct","type":"bool"},{"internalType":"bool","name":"renounce","type":"bool"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amountBentoboxShare","type":"uint256"},{"internalType":"uint256","name":"amountDegenBoxShare","type":"uint256"}],"name":"withdrawFromBentoBoxes","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6101406040523480156200001257600080fd5b5060405162004a1638038062004a16833981810160405281019062000038919062000869565b336000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055503373ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a38873ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff16815250508773ffffffffffffffffffffffffffffffffffffffff1660a08173ffffffffffffffffffffffffffffffffffffffff16815250508673ffffffffffffffffffffffffffffffffffffffff1660c08173ffffffffffffffffffffffffffffffffffffffff16815250508573ffffffffffffffffffffffffffffffffffffffff1660e08173ffffffffffffffffffffffffffffffffffffffff16815250508473ffffffffffffffffffffffffffffffffffffffff166101008173ffffffffffffffffffffffffffffffffffffffff16815250508373ffffffffffffffffffffffffffffffffffffffff166101208173ffffffffffffffffffffffffffffffffffffffff16815250508260039080519060200190620002259291906200030f565b5081600290805190602001906200023e9291906200039e565b508060049080519060200190620002579291906200030f565b5060c05173ffffffffffffffffffffffffffffffffffffffff1663095ea7b360e0517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff6040518363ffffffff1660e01b8152600401620002b9929190620009d1565b6020604051808303816000875af1158015620002d9573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002ff919062000a3b565b5050505050505050505062000a6d565b8280548282559060005260206000209081019282156200038b579160200282015b828111156200038a5782518260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055509160200191906001019062000330565b5b5090506200039a91906200042d565b5090565b8280548282559060005260206000209081019282156200041a579160200282015b82811115620004195782518260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555091602001919060010190620003bf565b5b5090506200042991906200042d565b5090565b5b80821115620004485760008160009055506001016200042e565b5090565b6000604051905090565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006200048d8262000460565b9050919050565b6000620004a18262000480565b9050919050565b620004b38162000494565b8114620004bf57600080fd5b50565b600081519050620004d381620004a8565b92915050565b6000620004e68262000480565b9050919050565b620004f881620004d9565b81146200050457600080fd5b50565b6000815190506200051881620004ed565b92915050565b60006200052b8262000480565b9050919050565b6200053d816200051e565b81146200054957600080fd5b50565b6000815190506200055d8162000532565b92915050565b6200056e8162000480565b81146200057a57600080fd5b50565b6000815190506200058e8162000563565b92915050565b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b620005e48262000599565b810181811067ffffffffffffffff82111715620006065762000605620005aa565b5b80604052505050565b60006200061b6200044c565b9050620006298282620005d9565b919050565b600067ffffffffffffffff8211156200064c576200064b620005aa565b5b602082029050602081019050919050565b600080fd5b60006200066f8262000480565b9050919050565b620006818162000662565b81146200068d57600080fd5b50565b600081519050620006a18162000676565b92915050565b6000620006be620006b8846200062e565b6200060f565b90508083825260208201905060208402830185811115620006e457620006e36200065d565b5b835b81811015620007115780620006fc888262000690565b845260208401935050602081019050620006e6565b5050509392505050565b600082601f83011262000733576200073262000594565b5b815162000745848260208601620006a7565b91505092915050565b600067ffffffffffffffff8211156200076c576200076b620005aa565b5b602082029050602081019050919050565b60006200078a8262000480565b9050919050565b6200079c816200077d565b8114620007a857600080fd5b50565b600081519050620007bc8162000791565b92915050565b6000620007d9620007d3846200074e565b6200060f565b90508083825260208201905060208402830185811115620007ff57620007fe6200065d565b5b835b818110156200082c5780620008178882620007ab565b84526020840193505060208101905062000801565b5050509392505050565b600082601f8301126200084e576200084d62000594565b5b815162000860848260208601620007c2565b91505092915050565b60008060008060008060008060006101208a8c0312156200088f576200088e62000456565b5b60006200089f8c828d01620004c2565b9950506020620008b28c828d01620004c2565b9850506040620008c58c828d0162000507565b9750506060620008d88c828d016200054c565b9650506080620008eb8c828d016200057d565b95505060a0620008fe8c828d016200057d565b94505060c08a015167ffffffffffffffff8111156200092257620009216200045b565b5b620009308c828d016200071b565b93505060e08a015167ffffffffffffffff8111156200095457620009536200045b565b5b620009628c828d0162000836565b9250506101008a015167ffffffffffffffff8111156200098757620009866200045b565b5b620009958c828d016200071b565b9150509295985092959850929598565b620009b08162000480565b82525050565b6000819050919050565b620009cb81620009b6565b82525050565b6000604082019050620009e86000830185620009a5565b620009f76020830184620009c0565b9392505050565b60008115159050919050565b62000a1581620009fe565b811462000a2157600080fd5b50565b60008151905062000a358162000a0a565b92915050565b60006020828403121562000a545762000a5362000456565b5b600062000a648482850162000a24565b91505092915050565b60805160a05160c05160e0516101005161012051613e1762000bff6000396000818161212b015261231e015260008181610ade01528181611256015281816119d0015261283b0152600081816122c101526123ba01526000818161091f0152818161097c01528181610aa201528181610bbf01528181611097015281816110f40152818161121a01528181611337015281816118110152818161186e0152818161199401528181611ab101528181611ce601528181611e0201528181611e91015281816122fd0152818161264d015281816126b601526127860152600081816117d501528181611832015281816119f101528181611a7501528181611ad201528181611d8201528181611dc6015281816123de0152818161274a0152612b5a0152600081816108e30152818161094001528181610aff01528181610b8301528181610be00152818161105b015281816110b801528181611277015281816112fb0152818161135801528181611c6601528181611caa015281816121070152818161267a015261295d0152613e176000f3fe608060405234801561001057600080fd5b506004361061012c5760003560e01c80639a3eb6e9116100ad578063d914cd4b11610071578063d914cd4b146102f7578063daec383d14610313578063dbf6005014610331578063e30c39781461034d578063f3523b341461036b5761012c565b80639a3eb6e9146102535780639f495c1514610271578063ab93539d1461028f578063b36a4ab1146102bf578063cea9d26f146102db5761012c565b80636d18d05c116100f45780636d18d05c1461019d5780637dd47080146101cd57806384b1fc10146101e95780638739be16146102195780638da5cb5b146102355761012c565b8063078dfbe7146101315780633ccfd60b1461014d5780634e71e0c8146101575780636b2ace87146101615780636c243aab1461017f575b600080fd5b61014b60048036038101906101469190612f54565b610389565b005b6101556105dd565b005b61015f611f71565b005b610169612105565b6040516101769190613006565b60405180910390f35b610187612129565b6040516101949190613030565b60405180910390f35b6101b760048036038101906101b29190613081565b61214d565b6040516101c491906130cf565b60405180910390f35b6101e760048036038101906101e29190613128565b61218c565b005b61020360048036038101906101fe9190613081565b612280565b60405161021091906130cf565b60405180910390f35b610233600480360381019061022e9190613081565b6122bf565b005b61023d612394565b60405161024a9190613030565b60405180910390f35b61025b6123b8565b6040516102689190613176565b60405180910390f35b6102796123dc565b6040516102869190613006565b60405180910390f35b6102a960048036038101906102a49190613081565b612400565b6040516102b691906131b2565b60405180910390f35b6102d960048036038101906102d49190613364565b61243f565b005b6102f560048036038101906102f091906133eb565b612513565b005b610311600480360381019061030c919061343e565b6125b1565b005b61031b61264b565b604051610328919061348c565b60405180910390f35b61034b600480360381019061034691906134a7565b61266f565b005b610355612813565b6040516103629190613030565b60405180910390f35b610373612839565b6040516103809190613030565b60405180910390f35b60008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610417576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161040e90613544565b60405180910390fd5b811561059657600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415806104565750805b610495576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161048c906135b0565b60405180910390fd5b8273ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3826000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506000600160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506105d8565b82600160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505b505050565b6000600380549050905060005b81811015610d58573073ffffffffffffffffffffffffffffffffffffffff166003828154811061061d5761061c6135d0565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663cd446e226040518163ffffffff1660e01b81526004016020604051808303816000875af1158015610694573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906106b89190613614565b73ffffffffffffffffffffffffffffffffffffffff1663017e7e586040518163ffffffff1660e01b81526004016020604051808303816000875af1158015610704573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906107289190613656565b73ffffffffffffffffffffffffffffffffffffffff161461077e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610775906136cf565b60405180910390fd5b60038181548110610792576107916135d0565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663f8ba4cff6040518163ffffffff1660e01b8152600401600060405180830381600087803b15801561080457600080fd5b505af1158015610818573d6000803e3d6000fd5b50505050600060038281548110610832576108316135d0565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663b27c0e746040518163ffffffff1660e01b8152600401606060405180830381865afa1580156108a7573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906108cb9190613777565b506fffffffffffffffffffffffffffffffff169150507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663566231187f00000000000000000000000000000000000000000000000000000000000000007f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663f7888aec7f0000000000000000000000000000000000000000000000000000000000000000600388815481106109af576109ae6135d0565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166040518363ffffffff1660e01b81526004016109f79291906137ca565b602060405180830381865afa158015610a14573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a389190613808565b60006040518463ffffffff1660e01b8152600401610a5893929190613853565b602060405180830381865afa158015610a75573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a999190613808565b811115610ca6577f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff166323b872dd7f00000000000000000000000000000000000000000000000000000000000000007f0000000000000000000000000000000000000000000000000000000000000000846040518463ffffffff1660e01b8152600401610b3d9392919061388a565b6020604051808303816000875af1158015610b5c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b8091906138d6565b507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff166302b9446c7f00000000000000000000000000000000000000000000000000000000000000007f000000000000000000000000000000000000000000000000000000000000000060038681548110610c1357610c126135d0565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff168560006040518663ffffffff1660e01b8152600401610c6195949392919061393e565b60408051808303816000875af1158015610c7f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ca39190613991565b50505b60038281548110610cba57610cb96135d0565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663476343ee6040518163ffffffff1660e01b8152600401600060405180830381600087803b158015610d2c57600080fd5b505af1158015610d40573d6000803e3d6000fd5b50505050508080610d5090613a00565b9150506105ea565b50600280549050905060005b818110156114d0573073ffffffffffffffffffffffffffffffffffffffff1660028281548110610d9757610d966135d0565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663cd446e226040518163ffffffff1660e01b81526004016020604051808303816000875af1158015610e0e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e329190613614565b73ffffffffffffffffffffffffffffffffffffffff1663017e7e586040518163ffffffff1660e01b81526004016020604051808303816000875af1158015610e7e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ea29190613656565b73ffffffffffffffffffffffffffffffffffffffff1614610ef8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eef906136cf565b60405180910390fd5b60028181548110610f0c57610f0b6135d0565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663f8ba4cff6040518163ffffffff1660e01b8152600401600060405180830381600087803b158015610f7e57600080fd5b505af1158015610f92573d6000803e3d6000fd5b50505050600060028281548110610fac57610fab6135d0565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663b27c0e746040518163ffffffff1660e01b81526004016040805180830381865afa158015611020573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110449190613a49565b6fffffffffffffffffffffffffffffffff169150507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663566231187f00000000000000000000000000000000000000000000000000000000000000007f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663f7888aec7f000000000000000000000000000000000000000000000000000000000000000060028881548110611127576111266135d0565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166040518363ffffffff1660e01b815260040161116f9291906137ca565b602060405180830381865afa15801561118c573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111b09190613808565b60006040518463ffffffff1660e01b81526004016111d093929190613853565b602060405180830381865afa1580156111ed573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112119190613808565b81111561141e577f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff166323b872dd7f00000000000000000000000000000000000000000000000000000000000000007f0000000000000000000000000000000000000000000000000000000000000000846040518463ffffffff1660e01b81526004016112b59392919061388a565b6020604051808303816000875af11580156112d4573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112f891906138d6565b507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff166302b9446c7f00000000000000000000000000000000000000000000000000000000000000007f00000000000000000000000000000000000000000000000000000000000000006002868154811061138b5761138a6135d0565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff168560006040518663ffffffff1660e01b81526004016113d995949392919061393e565b60408051808303816000875af11580156113f7573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061141b9190613991565b50505b60028281548110611432576114316135d0565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663476343ee6040518163ffffffff1660e01b8152600401600060405180830381600087803b1580156114a457600080fd5b505af11580156114b8573d6000803e3d6000fd5b505050505080806114c890613a00565b915050610d64565b50600480549050905060005b81811015611c4a573073ffffffffffffffffffffffffffffffffffffffff166004828154811061150f5761150e6135d0565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663cd446e226040518163ffffffff1660e01b81526004016020604051808303816000875af1158015611586573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906115aa9190613614565b73ffffffffffffffffffffffffffffffffffffffff1663017e7e586040518163ffffffff1660e01b81526004016020604051808303816000875af11580156115f6573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061161a9190613656565b73ffffffffffffffffffffffffffffffffffffffff1614611670576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611667906136cf565b60405180910390fd5b60048181548110611684576116836135d0565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663f8ba4cff6040518163ffffffff1660e01b8152600401600060405180830381600087803b1580156116f657600080fd5b505af115801561170a573d6000803e3d6000fd5b50505050600060048281548110611724576117236135d0565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663b27c0e746040518163ffffffff1660e01b8152600401606060405180830381865afa158015611799573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906117bd9190613777565b506fffffffffffffffffffffffffffffffff169150507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663566231187f00000000000000000000000000000000000000000000000000000000000000007f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663f7888aec7f0000000000000000000000000000000000000000000000000000000000000000600488815481106118a1576118a06135d0565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166040518363ffffffff1660e01b81526004016118e99291906137ca565b602060405180830381865afa158015611906573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061192a9190613808565b60006040518463ffffffff1660e01b815260040161194a93929190613853565b602060405180830381865afa158015611967573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061198b9190613808565b811115611b98577f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff166323b872dd7f00000000000000000000000000000000000000000000000000000000000000007f0000000000000000000000000000000000000000000000000000000000000000846040518463ffffffff1660e01b8152600401611a2f9392919061388a565b6020604051808303816000875af1158015611a4e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611a7291906138d6565b507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff166302b9446c7f00000000000000000000000000000000000000000000000000000000000000007f000000000000000000000000000000000000000000000000000000000000000060048681548110611b0557611b046135d0565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff168560006040518663ffffffff1660e01b8152600401611b5395949392919061393e565b60408051808303816000875af1158015611b71573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611b959190613991565b50505b60048281548110611bac57611bab6135d0565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663476343ee6040518163ffffffff1660e01b8152600401600060405180830381600087803b158015611c1e57600080fd5b505af1158015611c32573d6000803e3d6000fd5b50505050508080611c4290613a00565b9150506114dc565b5060008073ffffffffffffffffffffffffffffffffffffffff167f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff161415611ca8576000611d65565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663f7888aec7f0000000000000000000000000000000000000000000000000000000000000000306040518363ffffffff1660e01b8152600401611d239291906137ca565b602060405180830381865afa158015611d40573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611d649190613808565b5b905060008073ffffffffffffffffffffffffffffffffffffffff167f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff161415611dc4576000611e81565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663f7888aec7f0000000000000000000000000000000000000000000000000000000000000000306040518363ffffffff1660e01b8152600401611e3f9291906137ca565b602060405180830381865afa158015611e5c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611e809190613808565b5b9050611e8d828261266f565b60007f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401611ee89190613030565b602060405180830381865afa158015611f05573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611f299190613808565b9050611f34816122bf565b7fc74347d34e4ef5415fa47a23b47ad93ecd10c105e63fa663eef31bbe73899c2c81604051611f639190613a89565b60405180910390a150505050565b6000600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508073ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614612006576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ffd90613af0565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506000600160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b7f000000000000000000000000000000000000000000000000000000000000000081565b7f000000000000000000000000000000000000000000000000000000000000000081565b6004818154811061215d57600080fd5b906000526020600020016000915054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461221a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161221190613544565b60405180910390fd5b6002819080600181540180825580915050600190039060005260206000200160009091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6003818154811061229057600080fd5b906000526020600020016000915054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663241dc2df7f00000000000000000000000000000000000000000000000000000000000000007f00000000000000000000000000000000000000000000000000000000000000008460016040518563ffffffff1660e01b815260040161235f9493929190613b4b565b600060405180830381600087803b15801561237957600080fd5b505af115801561238d573d6000803e3d6000fd5b5050505050565b60008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b7f000000000000000000000000000000000000000000000000000000000000000081565b7f000000000000000000000000000000000000000000000000000000000000000081565b6002818154811061241057600080fd5b906000526020600020016000915054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146124cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124c490613544565b60405180910390fd5b60005b815181101561250f576124fc8282815181106124ef576124ee6135d0565b5b602002602001015161285d565b808061250790613a00565b9150506124d0565b5050565b60008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146125a1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161259890613544565b60405180910390fd5b6125ac838383612d55565b505050565b60008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461263f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161263690613544565b60405180910390fd5b6126488161285d565b50565b7f000000000000000000000000000000000000000000000000000000000000000081565b600082111561273f577f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff166397da6d307f000000000000000000000000000000000000000000000000000000000000000030306000876040518663ffffffff1660e01b81526004016126fa959493929190613b90565b60408051808303816000875af1158015612718573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061273c9190613991565b50505b600081111561280f577f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff166397da6d307f000000000000000000000000000000000000000000000000000000000000000030306000866040518663ffffffff1660e01b81526004016127ca959493929190613b90565b60408051808303816000875af11580156127e8573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061280c9190613991565b50505b5050565b600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b7f000000000000000000000000000000000000000000000000000000000000000081565b60008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146128eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128e290613544565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561295b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161295290613c2f565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16636b2ace876040518163ffffffff1660e01b81526004016020604051808303816000875af11580156129df573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612a039190613656565b73ffffffffffffffffffffffffffffffffffffffff161415612b585760005b600380549050811015612aef578173ffffffffffffffffffffffffffffffffffffffff1660038281548110612a5a57612a596135d0565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415612adc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ad390613c9b565b60405180910390fd5b8080612ae790613a00565b915050612a22565b506003819080600181540180825580915050600190039060005260206000200160009091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550612d52565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16636b2ace876040518163ffffffff1660e01b81526004016020604051808303816000875af1158015612bdc573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612c009190613656565b73ffffffffffffffffffffffffffffffffffffffff161415612d515760005b600480549050811015612cec578173ffffffffffffffffffffffffffffffffffffffff1660048281548110612c5757612c566135d0565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415612cd9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612cd090613c9b565b60405180910390fd5b8080612ce490613a00565b915050612c1f565b506004819080600181540180825580915050600190039060005260206000200160009091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505b5b50565b6000808473ffffffffffffffffffffffffffffffffffffffff1663a9059cbb60e01b8585604051602401612d8a929190613cbb565b604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff8381831617835250505050604051612df49190613d5e565b6000604051808303816000865af19150503d8060008114612e31576040519150601f19603f3d011682016040523d82523d6000602084013e612e36565b606091505b5091509150818015612e645750600081511480612e63575080806020019051810190612e6291906138d6565b5b5b612ea3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e9a90613dc1565b60405180910390fd5b5050505050565b6000604051905090565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612ee982612ebe565b9050919050565b612ef981612ede565b8114612f0457600080fd5b50565b600081359050612f1681612ef0565b92915050565b60008115159050919050565b612f3181612f1c565b8114612f3c57600080fd5b50565b600081359050612f4e81612f28565b92915050565b600080600060608486031215612f6d57612f6c612eb4565b5b6000612f7b86828701612f07565b9350506020612f8c86828701612f3f565b9250506040612f9d86828701612f3f565b9150509250925092565b6000819050919050565b6000612fcc612fc7612fc284612ebe565b612fa7565b612ebe565b9050919050565b6000612fde82612fb1565b9050919050565b6000612ff082612fd3565b9050919050565b61300081612fe5565b82525050565b600060208201905061301b6000830184612ff7565b92915050565b61302a81612ede565b82525050565b60006020820190506130456000830184613021565b92915050565b6000819050919050565b61305e8161304b565b811461306957600080fd5b50565b60008135905061307b81613055565b92915050565b60006020828403121561309757613096612eb4565b5b60006130a58482850161306c565b91505092915050565b60006130b982612fd3565b9050919050565b6130c9816130ae565b82525050565b60006020820190506130e460008301846130c0565b92915050565b60006130f582612ede565b9050919050565b613105816130ea565b811461311057600080fd5b50565b600081359050613122816130fc565b92915050565b60006020828403121561313e5761313d612eb4565b5b600061314c84828501613113565b91505092915050565b600061316082612fd3565b9050919050565b61317081613155565b82525050565b600060208201905061318b6000830184613167565b92915050565b600061319c82612fd3565b9050919050565b6131ac81613191565b82525050565b60006020820190506131c760008301846131a3565b92915050565b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61321b826131d2565b810181811067ffffffffffffffff8211171561323a576132396131e3565b5b80604052505050565b600061324d612eaa565b90506132598282613212565b919050565b600067ffffffffffffffff821115613279576132786131e3565b5b602082029050602081019050919050565b600080fd5b600061329a82612ede565b9050919050565b6132aa8161328f565b81146132b557600080fd5b50565b6000813590506132c7816132a1565b92915050565b60006132e06132db8461325e565b613243565b905080838252602082019050602084028301858111156133035761330261328a565b5b835b8181101561332c578061331888826132b8565b845260208401935050602081019050613305565b5050509392505050565b600082601f83011261334b5761334a6131cd565b5b813561335b8482602086016132cd565b91505092915050565b60006020828403121561337a57613379612eb4565b5b600082013567ffffffffffffffff81111561339857613397612eb9565b5b6133a484828501613336565b91505092915050565b60006133b882612ede565b9050919050565b6133c8816133ad565b81146133d357600080fd5b50565b6000813590506133e5816133bf565b92915050565b60008060006060848603121561340457613403612eb4565b5b6000613412868287016133d6565b935050602061342386828701612f07565b92505060406134348682870161306c565b9150509250925092565b60006020828403121561345457613453612eb4565b5b6000613462848285016132b8565b91505092915050565b600061347682612fd3565b9050919050565b6134868161346b565b82525050565b60006020820190506134a1600083018461347d565b92915050565b600080604083850312156134be576134bd612eb4565b5b60006134cc8582860161306c565b92505060206134dd8582860161306c565b9150509250929050565b600082825260208201905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061352e6020836134e7565b9150613539826134f8565b602082019050919050565b6000602082019050818103600083015261355d81613521565b9050919050565b7f4f776e61626c653a207a65726f20616464726573730000000000000000000000600082015250565b600061359a6015836134e7565b91506135a582613564565b602082019050919050565b600060208201905081810360008301526135c98161358d565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60008151905061360e816130fc565b92915050565b60006020828403121561362a57613629612eb4565b5b6000613638848285016135ff565b91505092915050565b60008151905061365081612ef0565b92915050565b60006020828403121561366c5761366b612eb4565b5b600061367a84828501613641565b91505092915050565b7f77726f6e6720666565546f000000000000000000000000000000000000000000600082015250565b60006136b9600b836134e7565b91506136c482613683565b602082019050919050565b600060208201905081810360008301526136e8816136ac565b9050919050565b600067ffffffffffffffff82169050919050565b61370c816136ef565b811461371757600080fd5b50565b60008151905061372981613703565b92915050565b60006fffffffffffffffffffffffffffffffff82169050919050565b6137548161372f565b811461375f57600080fd5b50565b6000815190506137718161374b565b92915050565b6000806000606084860312156137905761378f612eb4565b5b600061379e8682870161371a565b93505060206137af86828701613762565b92505060406137c08682870161371a565b9150509250925092565b60006040820190506137df600083018561347d565b6137ec6020830184613021565b9392505050565b60008151905061380281613055565b92915050565b60006020828403121561381e5761381d612eb4565b5b600061382c848285016137f3565b91505092915050565b61383e8161304b565b82525050565b61384d81612f1c565b82525050565b6000606082019050613868600083018661347d565b6138756020830185613835565b6138826040830184613844565b949350505050565b600060608201905061389f6000830186613021565b6138ac6020830185613021565b6138b96040830184613835565b949350505050565b6000815190506138d081612f28565b92915050565b6000602082840312156138ec576138eb612eb4565b5b60006138fa848285016138c1565b91505092915050565b6000819050919050565b600061392861392361391e84613903565b612fa7565b61304b565b9050919050565b6139388161390d565b82525050565b600060a082019050613953600083018861347d565b6139606020830187613021565b61396d6040830186613021565b61397a6060830185613835565b613987608083018461392f565b9695505050505050565b600080604083850312156139a8576139a7612eb4565b5b60006139b6858286016137f3565b92505060206139c7858286016137f3565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000613a0b8261304b565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613a3e57613a3d6139d1565b5b600182019050919050565b60008060408385031215613a6057613a5f612eb4565b5b6000613a6e8582860161371a565b9250506020613a7f85828601613762565b9150509250929050565b6000602082019050613a9e6000830184613835565b92915050565b7f4f776e61626c653a2063616c6c657220213d2070656e64696e67206f776e6572600082015250565b6000613ada6020836134e7565b9150613ae582613aa4565b602082019050919050565b60006020820190508181036000830152613b0981613acd565b9050919050565b6000819050919050565b6000613b35613b30613b2b84613b10565b612fa7565b61304b565b9050919050565b613b4581613b1a565b82525050565b6000608082019050613b606000830187613021565b613b6d6020830186613021565b613b7a6040830185613835565b613b876060830184613b3c565b95945050505050565b600060a082019050613ba5600083018861347d565b613bb26020830187613021565b613bbf6040830186613021565b613bcc606083018561392f565b613bd96080830184613835565b9695505050505050565b7f696e76616c6964206361756c64726f6e00000000000000000000000000000000600082015250565b6000613c196010836134e7565b9150613c2482613be3565b602082019050919050565b60006020820190508181036000830152613c4881613c0c565b9050919050565b7f616c726561647920616464656400000000000000000000000000000000000000600082015250565b6000613c85600d836134e7565b9150613c9082613c4f565b602082019050919050565b60006020820190508181036000830152613cb481613c78565b9050919050565b6000604082019050613cd06000830185613021565b613cdd6020830184613835565b9392505050565b600081519050919050565b600081905092915050565b60005b83811015613d18578082015181840152602081019050613cfd565b83811115613d27576000848401525b50505050565b6000613d3882613ce4565b613d428185613cef565b9350613d52818560208601613cfa565b80840191505092915050565b6000613d6a8284613d2d565b915081905092915050565b7f7472616e73666572206661696c65640000000000000000000000000000000000600082015250565b6000613dab600f836134e7565b9150613db682613d75565b602082019050919050565b60006020820190508181036000830152613dda81613d9e565b905091905056fea2646970667358221220924cd1fd3f1b3eefd4f17d1dfa7bb4c5eeeed50faae8cb74133f071836a38b3764736f6c634300080a0033000000000000000000000000f5bce5077908a1b7370b9ae04adc565ebd64396600000000000000000000000074a0bca2eeedf8883cb91e37e9ff49430f20a61600000000000000000000000082f0b8b456c1a451378467398982d4834b6829c10000000000000000000000001ccca1ce62c62f7be95d4a67722a8fdbed6eecb4000000000000000000000000b4ad8b57bd6963912c80fcbb6baea99988543c1c000000000000000000000000b2c3a9c577068479b1e5119f6b7da98d25ba48f4000000000000000000000000000000000000000000000000000000000000012000000000000000000000000000000000000000000000000000000000000001a000000000000000000000000000000000000000000000000000000000000001c000000000000000000000000000000000000000000000000000000000000000030000000000000000000000008e45af6743422e488afacdad842ce75a09eaed34000000000000000000000000d4357d43545f793101b592bacab89943dc89d11b000000000000000000000000ed745b045f9495b8bfc7b58eea8e0d0597884e1200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000

Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)

000000000000000000000000f5bce5077908a1b7370b9ae04adc565ebd64396600000000000000000000000074a0bca2eeedf8883cb91e37e9ff49430f20a61600000000000000000000000082f0b8b456c1a451378467398982d4834b6829c10000000000000000000000001ccca1ce62c62f7be95d4a67722a8fdbed6eecb4000000000000000000000000b4ad8b57bd6963912c80fcbb6baea99988543c1c000000000000000000000000b2c3a9c577068479b1e5119f6b7da98d25ba48f4000000000000000000000000000000000000000000000000000000000000012000000000000000000000000000000000000000000000000000000000000001a000000000000000000000000000000000000000000000000000000000000001c000000000000000000000000000000000000000000000000000000000000000030000000000000000000000008e45af6743422e488afacdad842ce75a09eaed34000000000000000000000000d4357d43545f793101b592bacab89943dc89d11b000000000000000000000000ed745b045f9495b8bfc7b58eea8e0d0597884e1200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : bentoBox_ (address): 0xf5bce5077908a1b7370b9ae04adc565ebd643966
Arg [1] : degenBox_ (address): 0x74a0bca2eeedf8883cb91e37e9ff49430f20a616
Arg [2] : mim (address): 0x82f0b8b456c1a451378467398982d4834b6829c1
Arg [3] : anyswapRouter_ (address): 0x1ccca1ce62c62f7be95d4a67722a8fdbed6eecb4
Arg [4] : mimProvider_ (address): 0xb4ad8b57bd6963912c80fcbb6baea99988543c1c
Arg [5] : ethereumRecipient_ (address): 0xb2c3a9c577068479b1e5119f6b7da98d25ba48f4
Arg [6] : bentoBoxCauldronsV2_ (address[]): 0x8e45af6743422e488afacdad842ce75a09eaed34,0xd4357d43545f793101b592bacab89943dc89d11b,0xed745b045f9495b8bfc7b58eea8e0d0597884e12

-----Encoded View---------------
15 Constructor Arguments found :
Arg [0] : 000000000000000000000000f5bce5077908a1b7370b9ae04adc565ebd643966
Arg [1] : 00000000000000000000000074a0bca2eeedf8883cb91e37e9ff49430f20a616
Arg [2] : 00000000000000000000000082f0b8b456c1a451378467398982d4834b6829c1
Arg [3] : 0000000000000000000000001ccca1ce62c62f7be95d4a67722a8fdbed6eecb4
Arg [4] : 000000000000000000000000b4ad8b57bd6963912c80fcbb6baea99988543c1c
Arg [5] : 000000000000000000000000b2c3a9c577068479b1e5119f6b7da98d25ba48f4
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000120
Arg [7] : 00000000000000000000000000000000000000000000000000000000000001a0
Arg [8] : 00000000000000000000000000000000000000000000000000000000000001c0
Arg [9] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [10] : 0000000000000000000000008e45af6743422e488afacdad842ce75a09eaed34
Arg [11] : 000000000000000000000000d4357d43545f793101b592bacab89943dc89d11b
Arg [12] : 000000000000000000000000ed745b045f9495b8bfc7b58eea8e0d0597884e12
Arg [13] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [14] : 0000000000000000000000000000000000000000000000000000000000000000


Block Transaction Gas Used Reward
Age Block Fee Address BC Fee Address Voting Power Jailed Incoming
Validator ID :
0 FTM

Amount Staked
0

Amount Delegated
0

Staking Total
0

Staking Start Epoch
0

Staking Start Time
0

Proof of Importance
0

Origination Score
0

Validation Score
0

Active
0

Online
0

Downtime
0 s
Address Amount claimed Rewards Created On Epoch Created On
Block Uncle Number Difficulty Gas Used Reward
Loading
Loading
Make sure to use the "Vote Down" button for any spammy posts, and the "Vote Up" for interesting conversations.