MATIC Price: $0.99 (-3.12%)
Gas: 116 GWei
 

Overview

MATIC Balance

Polygon PoS Chain LogoPolygon PoS Chain LogoPolygon PoS Chain Logo0 MATIC

MATIC Value

$0.00

Sponsored

Transaction Hash
Method
Block
From
To
Value

There are no matching entries

Please try again later

Latest 1 internal transaction

Parent Txn Hash Block From To Value
357173472022-11-17 11:15:14497 days ago1668683714  Contract Creation0 MATIC
Loading...
Loading

Similar Match Source Code
This contract matches the deployed Bytecode of the Source Code for Contract 0x251cA6A7...9683c266C
The constructor portion of the code might be different and could alter the actual behaviour of the contract

Contract Name:
ConstantProductPool

Compiler Version
v0.8.10+commit.fc410830

Optimization Enabled:
Yes with 999999 runs

Other Settings:
default evmVersion, GNU GPLv3 license

Contract Source Code (Solidity)

/**
 *Submitted for verification at polygonscan.com on 2022-04-15
*/

// Sources flattened with hardhat v2.9.1 https://hardhat.org
// SPDX-License-Identifier: AGPL-3.0-only

// File @rari-capital/solmate/src/tokens/[email protected]
pragma solidity >=0.8.0;

/// @notice Modern and gas efficient ERC20 + EIP-2612 implementation.
/// @author Solmate (https://github.com/Rari-Capital/solmate/blob/main/src/tokens/ERC20.sol)
/// @author Modified from Uniswap (https://github.com/Uniswap/uniswap-v2-core/blob/master/contracts/UniswapV2ERC20.sol)
/// @dev Do not manually set balances without updating totalSupply, as the sum of all user balances must not exceed it.
abstract contract ERC20 {
    /*///////////////////////////////////////////////////////////////
                                  EVENTS
    //////////////////////////////////////////////////////////////*/

    event Transfer(address indexed from, address indexed to, uint256 amount);

    event Approval(address indexed owner, address indexed spender, uint256 amount);

    /*///////////////////////////////////////////////////////////////
                             METADATA STORAGE
    //////////////////////////////////////////////////////////////*/

    string public name;

    string public symbol;

    uint8 public immutable decimals;

    /*///////////////////////////////////////////////////////////////
                              ERC20 STORAGE
    //////////////////////////////////////////////////////////////*/

    uint256 public totalSupply;

    mapping(address => uint256) public balanceOf;

    mapping(address => mapping(address => uint256)) public allowance;

    /*///////////////////////////////////////////////////////////////
                             EIP-2612 STORAGE
    //////////////////////////////////////////////////////////////*/

    bytes32 public constant PERMIT_TYPEHASH =
        keccak256("Permit(address owner,address spender,uint256 value,uint256 nonce,uint256 deadline)");

    uint256 internal immutable INITIAL_CHAIN_ID;

    bytes32 internal immutable INITIAL_DOMAIN_SEPARATOR;

    mapping(address => uint256) public nonces;

    /*///////////////////////////////////////////////////////////////
                               CONSTRUCTOR
    //////////////////////////////////////////////////////////////*/

    constructor(
        string memory _name,
        string memory _symbol,
        uint8 _decimals
    ) {
        name = _name;
        symbol = _symbol;
        decimals = _decimals;

        INITIAL_CHAIN_ID = block.chainid;
        INITIAL_DOMAIN_SEPARATOR = computeDomainSeparator();
    }

    /*///////////////////////////////////////////////////////////////
                              ERC20 LOGIC
    //////////////////////////////////////////////////////////////*/

    function approve(address spender, uint256 amount) public virtual returns (bool) {
        allowance[msg.sender][spender] = amount;

        emit Approval(msg.sender, spender, amount);

        return true;
    }

    function transfer(address to, uint256 amount) public virtual returns (bool) {
        balanceOf[msg.sender] -= amount;

        // Cannot overflow because the sum of all user
        // balances can't exceed the max uint256 value.
        unchecked {
            balanceOf[to] += amount;
        }

        emit Transfer(msg.sender, to, amount);

        return true;
    }

    function transferFrom(
        address from,
        address to,
        uint256 amount
    ) public virtual returns (bool) {
        uint256 allowed = allowance[from][msg.sender]; // Saves gas for limited approvals.

        if (allowed != type(uint256).max) allowance[from][msg.sender] = allowed - amount;

        balanceOf[from] -= amount;

        // Cannot overflow because the sum of all user
        // balances can't exceed the max uint256 value.
        unchecked {
            balanceOf[to] += amount;
        }

        emit Transfer(from, to, amount);

        return true;
    }

    /*///////////////////////////////////////////////////////////////
                              EIP-2612 LOGIC
    //////////////////////////////////////////////////////////////*/

    function permit(
        address owner,
        address spender,
        uint256 value,
        uint256 deadline,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) public virtual {
        require(deadline >= block.timestamp, "PERMIT_DEADLINE_EXPIRED");

        // Unchecked because the only math done is incrementing
        // the owner's nonce which cannot realistically overflow.
        unchecked {
            bytes32 digest = keccak256(
                abi.encodePacked(
                    "\x19\x01",
                    DOMAIN_SEPARATOR(),
                    keccak256(abi.encode(PERMIT_TYPEHASH, owner, spender, value, nonces[owner]++, deadline))
                )
            );

            address recoveredAddress = ecrecover(digest, v, r, s);

            require(recoveredAddress != address(0) && recoveredAddress == owner, "INVALID_SIGNER");

            allowance[recoveredAddress][spender] = value;
        }

        emit Approval(owner, spender, value);
    }

    function DOMAIN_SEPARATOR() public view virtual returns (bytes32) {
        return block.chainid == INITIAL_CHAIN_ID ? INITIAL_DOMAIN_SEPARATOR : computeDomainSeparator();
    }

    function computeDomainSeparator() internal view virtual returns (bytes32) {
        return
            keccak256(
                abi.encode(
                    keccak256("EIP712Domain(string name,string version,uint256 chainId,address verifyingContract)"),
                    keccak256(bytes(name)),
                    keccak256("1"),
                    block.chainid,
                    address(this)
                )
            );
    }

    /*///////////////////////////////////////////////////////////////
                       INTERNAL MINT/BURN LOGIC
    //////////////////////////////////////////////////////////////*/

    function _mint(address to, uint256 amount) internal virtual {
        totalSupply += amount;

        // Cannot overflow because the sum of all user
        // balances can't exceed the max uint256 value.
        unchecked {
            balanceOf[to] += amount;
        }

        emit Transfer(address(0), to, amount);
    }

    function _burn(address from, uint256 amount) internal virtual {
        balanceOf[from] -= amount;

        // Cannot underflow because a user's balance
        // will never be larger than the total supply.
        unchecked {
            totalSupply -= amount;
        }

        emit Transfer(from, address(0), amount);
    }
}


// File @rari-capital/solmate/src/utils/[email protected]
pragma solidity >=0.8.0;

/// @notice Gas optimized reentrancy protection for smart contracts.
/// @author Solmate (https://github.com/Rari-Capital/solmate/blob/main/src/utils/ReentrancyGuard.sol)
/// @author Modified from OpenZeppelin (https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/security/ReentrancyGuard.sol)
abstract contract ReentrancyGuard {
    uint256 private reentrancyStatus = 1;

    modifier nonReentrant() {
        require(reentrancyStatus == 1, "REENTRANCY");

        reentrancyStatus = 2;

        _;

        reentrancyStatus = 1;
    }
}


// File contracts/libraries/RebaseLibrary.sol

pragma solidity ^0.8;

struct Rebase {
    uint128 elastic;
    uint128 base;
}

/// @notice A rebasing library
library RebaseLibrary {
    /// @notice Calculates the base value in relationship to `elastic` and `total`.
    function toBase(Rebase memory total, uint256 elastic) internal pure returns (uint256 base) {
        if (total.elastic == 0) {
            base = elastic;
        } else {
            base = (elastic * total.base) / total.elastic;
        }
    }

    /// @notice Calculates the elastic value in relationship to `base` and `total`.
    function toElastic(Rebase memory total, uint256 base) internal pure returns (uint256 elastic) {
        if (total.base == 0) {
            elastic = base;
        } else {
            elastic = (base * total.elastic) / total.base;
        }
    }
}


// File contracts/interfaces/IBentoBoxMinimal.sol

pragma solidity >=0.8.0;

/// @notice Minimal BentoBox vault interface.
/// @dev `token` is aliased as `address` from `IERC20` for simplicity.
interface IBentoBoxMinimal {
    /// @notice Balance per ERC-20 token per account in shares.
    function balanceOf(address, address) external view returns (uint256);

    /// @dev Helper function to represent an `amount` of `token` in shares.
    /// @param token The ERC-20 token.
    /// @param amount The `token` amount.
    /// @param roundUp If the result `share` should be rounded up.
    /// @return share The token amount represented in shares.
    function toShare(
        address token,
        uint256 amount,
        bool roundUp
    ) external view returns (uint256 share);

    /// @dev Helper function to represent shares back into the `token` amount.
    /// @param token The ERC-20 token.
    /// @param share The amount of shares.
    /// @param roundUp If the result should be rounded up.
    /// @return amount The share amount back into native representation.
    function toAmount(
        address token,
        uint256 share,
        bool roundUp
    ) external view returns (uint256 amount);

    /// @notice Registers this contract so that users can approve it for BentoBox.
    function registerProtocol() external;

    /// @notice Deposit an amount of `token` represented in either `amount` or `share`.
    /// @param token The ERC-20 token to deposit.
    /// @param from which account to pull the tokens.
    /// @param to which account to push the tokens.
    /// @param amount Token amount in native representation to deposit.
    /// @param share Token amount represented in shares to deposit. Takes precedence over `amount`.
    /// @return amountOut The amount deposited.
    /// @return shareOut The deposited amount represented in shares.
    function deposit(
        address token,
        address from,
        address to,
        uint256 amount,
        uint256 share
    ) external payable returns (uint256 amountOut, uint256 shareOut);

    /// @notice Withdraws an amount of `token` from a user account.
    /// @param token_ The ERC-20 token to withdraw.
    /// @param from which user to pull the tokens.
    /// @param to which user to push the tokens.
    /// @param amount of tokens. Either one of `amount` or `share` needs to be supplied.
    /// @param share Like above, but `share` takes precedence over `amount`.
    function withdraw(
        address token_,
        address from,
        address to,
        uint256 amount,
        uint256 share
    ) external returns (uint256 amountOut, uint256 shareOut);

    /// @notice Transfer shares from a user account to another one.
    /// @param token The ERC-20 token to transfer.
    /// @param from which user to pull the tokens.
    /// @param to which user to push the tokens.
    /// @param share The amount of `token` in shares.
    function transfer(
        address token,
        address from,
        address to,
        uint256 share
    ) external;

    /// @dev Reads the Rebase `totals`from storage for a given token
    function totals(address token) external view returns (Rebase memory total);

    /// @dev Approves users' BentoBox assets to a "master" contract.
    function setMasterContractApproval(
        address user,
        address masterContract,
        bool approved,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) external;
}


// File contracts/interfaces/IMasterDeployer.sol

pragma solidity >=0.8.0;

/// @notice Trident pool deployer interface.
interface IMasterDeployer {
    function barFee() external view returns (uint256);

    function barFeeTo() external view returns (address);

    function bento() external view returns (address);

    function migrator() external view returns (address);

    function pools(address pool) external view returns (bool);

    function deployPool(address factory, bytes calldata deployData) external returns (address);
}


// File contracts/interfaces/IPool.sol

pragma solidity >=0.5.0;
pragma experimental ABIEncoderV2;

/// @notice Trident pool interface.
interface IPool {
    /// @notice Executes a swap from one token to another.
    /// @dev The input tokens must've already been sent to the pool.
    /// @param data ABI-encoded params that the pool requires.
    /// @return finalAmountOut The amount of output tokens that were sent to the user.
    function swap(bytes calldata data) external returns (uint256 finalAmountOut);

    /// @notice Executes a swap from one token to another with a callback.
    /// @dev This function allows borrowing the output tokens and sending the input tokens in the callback.
    /// @param data ABI-encoded params that the pool requires.
    /// @return finalAmountOut The amount of output tokens that were sent to the user.
    function flashSwap(bytes calldata data) external returns (uint256 finalAmountOut);

    /// @notice Mints liquidity tokens.
    /// @param data ABI-encoded params that the pool requires.
    /// @return liquidity The amount of liquidity tokens that were minted for the user.
    function mint(bytes calldata data) external returns (uint256 liquidity);

    /// @notice Burns liquidity tokens.
    /// @dev The input LP tokens must've already been sent to the pool.
    /// @param data ABI-encoded params that the pool requires.
    /// @return withdrawnAmounts The amount of various output tokens that were sent to the user.
    function burn(bytes calldata data) external returns (TokenAmount[] memory withdrawnAmounts);

    /// @notice Burns liquidity tokens for a single output token.
    /// @dev The input LP tokens must've already been sent to the pool.
    /// @param data ABI-encoded params that the pool requires.
    /// @return amountOut The amount of output tokens that were sent to the user.
    function burnSingle(bytes calldata data) external returns (uint256 amountOut);

    /// @return A unique identifier for the pool type.
    function poolIdentifier() external pure returns (bytes32);

    /// @return An array of tokens supported by the pool.
    function getAssets() external view returns (address[] memory);

    /// @notice Simulates a trade and returns the expected output.
    /// @dev The pool does not need to include a trade simulator directly in itself - it can use a library.
    /// @param data ABI-encoded params that the pool requires.
    /// @return finalAmountOut The amount of output tokens that will be sent to the user if the trade is executed.
    function getAmountOut(bytes calldata data) external view returns (uint256 finalAmountOut);

    /// @notice Simulates a trade and returns the expected output.
    /// @dev The pool does not need to include a trade simulator directly in itself - it can use a library.
    /// @param data ABI-encoded params that the pool requires.
    /// @return finalAmountIn The amount of input tokens that are required from the user if the trade is executed.
    function getAmountIn(bytes calldata data) external view returns (uint256 finalAmountIn);

    /// @dev This event must be emitted on all swaps.
    event Swap(address indexed recipient, address indexed tokenIn, address indexed tokenOut, uint256 amountIn, uint256 amountOut);

    /// @dev This struct frames output tokens for burns.
    struct TokenAmount {
        address token;
        uint256 amount;
    }
}


// File contracts/interfaces/ITridentCallee.sol

pragma solidity >=0.8.0;

/// @notice Trident pool callback interface.
interface ITridentCallee {
    function tridentSwapCallback(bytes calldata data) external;

    function tridentMintCallback(bytes calldata data) external;
}


// File contracts/libraries/TridentMath.sol

pragma solidity >=0.8.0;

/// @notice Trident sqrt helper library.
library TridentMath {
    /// @dev Modified from Solmate (https://github.com/Rari-Capital/solmate/blob/main/src/utils/FixedPointMathLib.sol)
    function sqrt(uint256 x) internal pure returns (uint256 z) {
        assembly {
            // Start off with z at 1.
            z := 1

            // Used below to help find a nearby power of 2.
            let y := x

            // Find the lowest power of 2 that is at least sqrt(x).
            if iszero(lt(y, 0x100000000000000000000000000000000)) {
                y := shr(128, y) // Like dividing by 2 ** 128.
                z := shl(64, z) // Like multiplying by 2 ** 64.
            }
            if iszero(lt(y, 0x10000000000000000)) {
                y := shr(64, y) // Like dividing by 2 ** 64.
                z := shl(32, z) // Like multiplying by 2 ** 32.
            }
            if iszero(lt(y, 0x100000000)) {
                y := shr(32, y) // Like dividing by 2 ** 32.
                z := shl(16, z) // Like multiplying by 2 ** 16.
            }
            if iszero(lt(y, 0x10000)) {
                y := shr(16, y) // Like dividing by 2 ** 16.
                z := shl(8, z) // Like multiplying by 2 ** 8.
            }
            if iszero(lt(y, 0x100)) {
                y := shr(8, y) // Like dividing by 2 ** 8.
                z := shl(4, z) // Like multiplying by 2 ** 4.
            }
            if iszero(lt(y, 0x10)) {
                y := shr(4, y) // Like dividing by 2 ** 4.
                z := shl(2, z) // Like multiplying by 2 ** 2.
            }
            if iszero(lt(y, 0x8)) {
                // Equivalent to 2 ** z.
                z := shl(1, z)
            }

            // Shifting right by 1 is like dividing by 2.
            z := shr(1, add(z, div(x, z)))
            z := shr(1, add(z, div(x, z)))
            z := shr(1, add(z, div(x, z)))
            z := shr(1, add(z, div(x, z)))
            z := shr(1, add(z, div(x, z)))
            z := shr(1, add(z, div(x, z)))
            z := shr(1, add(z, div(x, z)))

            // Compute a rounded down version of z.
            let zRoundDown := div(x, z)

            // If zRoundDown is smaller, use it.
            if lt(zRoundDown, z) {
                z := zRoundDown
            }
        }
    }
}


// File contracts/pool/constant-product/ConstantProductPool.sol

pragma solidity >=0.8.0;





/// @dev Custom Errors
error ZeroAddress();
error IdenticalAddress();
error InvalidSwapFee();
error InvalidAmounts();
error InsufficientLiquidityMinted();
error InvalidOutputToken();
error InvalidInputToken();
error PoolUninitialized();
error InsufficientAmountIn();
error Overflow();

/// @notice Trident exchange pool template with constant product formula for swapping between an ERC-20 token pair.
/// @dev The reserves are stored as bento shares.
///      The curve is applied to shares as well. This pool does not care about the underlying amounts.
contract ConstantProductPool is IPool, ERC20, ReentrancyGuard {
    event Mint(address indexed sender, uint256 amount0, uint256 amount1, address indexed recipient);
    event Burn(address indexed sender, uint256 amount0, uint256 amount1, address indexed recipient);
    event Sync(uint256 reserve0, uint256 reserve1);

    uint256 internal constant MINIMUM_LIQUIDITY = 1000;

    uint8 internal constant PRECISION = 112;
    uint256 internal constant MAX_FEE = 10000; // @dev 100%.
    uint256 internal constant MAX_FEE_SQUARE = 100000000;
    uint256 public immutable swapFee;
    uint256 internal immutable MAX_FEE_MINUS_SWAP_FEE;

    address public immutable barFeeTo;
    IBentoBoxMinimal public immutable bento;
    IMasterDeployer public immutable masterDeployer;
    address public immutable token0;
    address public immutable token1;

    uint256 public barFee;
    uint256 public price0CumulativeLast;
    uint256 public price1CumulativeLast;
    uint256 public kLast;

    uint112 internal reserve0;
    uint112 internal reserve1;
    uint32 internal blockTimestampLast;

    bytes32 public constant override poolIdentifier = "Trident:ConstantProduct";

    constructor(bytes memory _deployData, IMasterDeployer _masterDeployer) ERC20("Sushi LP Token", "SLP", 18) {
        (address _token0, address _token1, uint256 _swapFee, bool _twapSupport) = abi.decode(
            _deployData,
            (address, address, uint256, bool)
        );

        // Factory ensures that the tokens are sorted.
        if (_token0 == address(0)) revert ZeroAddress();
        if (_token0 == _token1) revert IdenticalAddress();
        if (_swapFee > MAX_FEE) revert InvalidSwapFee();

        token0 = _token0;
        token1 = _token1;
        swapFee = _swapFee;
        // This is safe from underflow - `swapFee` cannot exceed `MAX_FEE` per previous check.
        unchecked {
            MAX_FEE_MINUS_SWAP_FEE = MAX_FEE - _swapFee;
        }
        barFee = _masterDeployer.barFee();
        barFeeTo = _masterDeployer.barFeeTo();
        bento = IBentoBoxMinimal(_masterDeployer.bento());
        masterDeployer = _masterDeployer;
        if (_twapSupport) blockTimestampLast = uint32(block.timestamp);
    }

    /// @dev Mints LP tokens - should be called via the router after transferring `bento` tokens.
    /// The router must ensure that sufficient LP tokens are minted by using the return value.
    function mint(bytes calldata data) public override nonReentrant returns (uint256 liquidity) {
        address recipient = abi.decode(data, (address));
        (uint112 _reserve0, uint112 _reserve1, uint32 _blockTimestampLast) = _getReserves();
        (uint256 balance0, uint256 balance1) = _balance();

        uint256 computed = TridentMath.sqrt(balance0 * balance1);
        uint256 amount0 = balance0 - _reserve0;
        uint256 amount1 = balance1 - _reserve1;

        (uint256 fee0, uint256 fee1) = _nonOptimalMintFee(amount0, amount1, _reserve0, _reserve1);
        _reserve0 += uint112(fee0);
        _reserve1 += uint112(fee1);

        (uint256 _totalSupply, uint256 k) = _mintFee(_reserve0, _reserve1);

        if (_totalSupply == 0) {
            if (amount0 == 0 || amount1 == 0) revert InvalidAmounts();
            liquidity = computed - MINIMUM_LIQUIDITY;
            _mint(address(0), MINIMUM_LIQUIDITY);
        } else {
            uint256 kIncrease;
            unchecked {
                kIncrease = computed - k;
            }
            liquidity = (kIncrease * _totalSupply) / k;
        }
        if (liquidity == 0) revert InsufficientLiquidityMinted();
        _mint(recipient, liquidity);
        _update(balance0, balance1, _reserve0, _reserve1, _blockTimestampLast);
        kLast = computed;
        emit Mint(msg.sender, amount0, amount1, recipient);
    }

    /// @dev Burns LP tokens sent to this contract. The router must ensure that the user gets sufficient output tokens.
    function burn(bytes calldata data) public override nonReentrant returns (IPool.TokenAmount[] memory withdrawnAmounts) {
        (address recipient, bool unwrapBento) = abi.decode(data, (address, bool));
        (uint112 _reserve0, uint112 _reserve1, uint32 _blockTimestampLast) = _getReserves();
        (uint256 balance0, uint256 balance1) = _balance();
        uint256 liquidity = balanceOf[address(this)];

        (uint256 _totalSupply, ) = _mintFee(_reserve0, _reserve1);

        uint256 amount0 = (liquidity * balance0) / _totalSupply;
        uint256 amount1 = (liquidity * balance1) / _totalSupply;

        _burn(address(this), liquidity);
        _transfer(token0, amount0, recipient, unwrapBento);
        _transfer(token1, amount1, recipient, unwrapBento);
        // This is safe from underflow - amounts are lesser figures derived from balances.
        unchecked {
            balance0 -= amount0;
            balance1 -= amount1;
        }
        _update(balance0, balance1, _reserve0, _reserve1, _blockTimestampLast);
        kLast = TridentMath.sqrt(balance0 * balance1);

        withdrawnAmounts = new TokenAmount[](2);
        withdrawnAmounts[0] = TokenAmount({token: address(token0), amount: amount0});
        withdrawnAmounts[1] = TokenAmount({token: address(token1), amount: amount1});
        emit Burn(msg.sender, amount0, amount1, recipient);
    }

    /// @dev Burns LP tokens sent to this contract and swaps one of the output tokens for another
    /// - i.e., the user gets a single token out by burning LP tokens.
    function burnSingle(bytes calldata data) public override nonReentrant returns (uint256 amountOut) {
        (address tokenOut, address recipient, bool unwrapBento) = abi.decode(data, (address, address, bool));
        (uint112 _reserve0, uint112 _reserve1, uint32 _blockTimestampLast) = _getReserves();
        uint256 liquidity = balanceOf[address(this)];

        (uint256 _totalSupply, ) = _mintFee(_reserve0, _reserve1);

        uint256 amount0 = (liquidity * _reserve0) / _totalSupply;
        uint256 amount1 = (liquidity * _reserve1) / _totalSupply;

        kLast = TridentMath.sqrt((_reserve0 - amount0) * (_reserve1 - amount1));

        _burn(address(this), liquidity);

        // Swap one token for another
        unchecked {
            if (tokenOut == token1) {
                // Swap `token0` for `token1`
                // - calculate `amountOut` as if the user first withdrew balanced liquidity and then swapped `token0` for `token1`.
                amount1 += _getAmountOut(amount0, _reserve0 - amount0, _reserve1 - amount1);
                _transfer(token1, amount1, recipient, unwrapBento);
                amountOut = amount1;
                amount0 = 0;
            } else {
                // Swap `token1` for `token0`.
                if (tokenOut != token0) revert InvalidOutputToken();
                amount0 += _getAmountOut(amount1, _reserve1 - amount1, _reserve0 - amount0);
                _transfer(token0, amount0, recipient, unwrapBento);
                amountOut = amount0;
                amount1 = 0;
            }
        }

        (uint256 balance0, uint256 balance1) = _balance();
        _update(balance0, balance1, _reserve0, _reserve1, _blockTimestampLast);

        emit Burn(msg.sender, amount0, amount1, recipient);
    }

    /// @dev Swaps one token for another. The router must prefund this contract and ensure there isn't too much slippage.
    function swap(bytes calldata data) public override nonReentrant returns (uint256 amountOut) {
        (address tokenIn, address recipient, bool unwrapBento) = abi.decode(data, (address, address, bool));
        (uint112 _reserve0, uint112 _reserve1, uint32 _blockTimestampLast) = _getReserves();
        if (_reserve0 == 0) revert PoolUninitialized();
        (uint256 balance0, uint256 balance1) = _balance();
        uint256 amountIn;
        address tokenOut;
        unchecked {
            if (tokenIn == token0) {
                tokenOut = token1;
                amountIn = balance0 - _reserve0;
                amountOut = _getAmountOut(amountIn, _reserve0, _reserve1);
                balance1 -= amountOut;
            } else {
                if (tokenIn != token1) revert InvalidInputToken();
                tokenOut = token0;
                amountIn = balance1 - reserve1;
                amountOut = _getAmountOut(amountIn, _reserve1, _reserve0);
                balance0 -= amountOut;
            }
        }
        _transfer(tokenOut, amountOut, recipient, unwrapBento);
        _update(balance0, balance1, _reserve0, _reserve1, _blockTimestampLast);
        emit Swap(recipient, tokenIn, tokenOut, amountIn, amountOut);
    }

    /// @dev Swaps one token for another. The router must support swap callbacks and ensure there isn't too much slippage.
    function flashSwap(bytes calldata data) public override nonReentrant returns (uint256 amountOut) {
        (address tokenIn, address recipient, bool unwrapBento, uint256 amountIn, bytes memory context) = abi.decode(
            data,
            (address, address, bool, uint256, bytes)
        );
        (uint112 _reserve0, uint112 _reserve1, uint32 _blockTimestampLast) = _getReserves();
        if (_reserve0 == 0) revert PoolUninitialized();
        unchecked {
            if (tokenIn == token0) {
                amountOut = _getAmountOut(amountIn, _reserve0, _reserve1);
                _transfer(token1, amountOut, recipient, unwrapBento);
                ITridentCallee(msg.sender).tridentSwapCallback(context);
                (uint256 balance0, uint256 balance1) = _balance();
                if (balance0 - _reserve0 < amountIn) revert InsufficientAmountIn();
                _update(balance0, balance1, _reserve0, _reserve1, _blockTimestampLast);
                emit Swap(recipient, tokenIn, token1, amountIn, amountOut);
            } else {
                if (tokenIn != token1) revert InvalidInputToken();
                amountOut = _getAmountOut(amountIn, _reserve1, _reserve0);
                _transfer(token0, amountOut, recipient, unwrapBento);
                ITridentCallee(msg.sender).tridentSwapCallback(context);
                (uint256 balance0, uint256 balance1) = _balance();
                if (balance1 - _reserve1 < amountIn) revert InsufficientAmountIn();
                _update(balance0, balance1, _reserve0, _reserve1, _blockTimestampLast);
                emit Swap(recipient, tokenIn, token0, amountIn, amountOut);
            }
        }
    }

    /// @dev Updates `barFee` for Trident protocol.
    function updateBarFee() public {
        barFee = masterDeployer.barFee();
    }

    function _getReserves()
        internal
        view
        returns (
            uint112 _reserve0,
            uint112 _reserve1,
            uint32 _blockTimestampLast
        )
    {
        _reserve0 = reserve0;
        _reserve1 = reserve1;
        _blockTimestampLast = blockTimestampLast;
    }

    function _balance() internal view returns (uint256 balance0, uint256 balance1) {
        balance0 = bento.balanceOf(token0, address(this));
        balance1 = bento.balanceOf(token1, address(this));
    }

    function _update(
        uint256 balance0,
        uint256 balance1,
        uint112 _reserve0,
        uint112 _reserve1,
        uint32 _blockTimestampLast
    ) internal {
        if (balance0 > type(uint112).max || balance1 > type(uint112).max) revert Overflow();
        if (_blockTimestampLast == 0) {
            // TWAP support is disabled for gas efficiency.
            reserve0 = uint112(balance0);
            reserve1 = uint112(balance1);
        } else {
            uint32 blockTimestamp = uint32(block.timestamp);
            if (blockTimestamp != _blockTimestampLast && _reserve0 != 0 && _reserve1 != 0) {
                unchecked {
                    uint32 timeElapsed = blockTimestamp - _blockTimestampLast;
                    uint256 price0 = (uint256(_reserve1) << PRECISION) / _reserve0;
                    price0CumulativeLast += price0 * timeElapsed;
                    uint256 price1 = (uint256(_reserve0) << PRECISION) / _reserve1;
                    price1CumulativeLast += price1 * timeElapsed;
                }
            }
            reserve0 = uint112(balance0);
            reserve1 = uint112(balance1);
            blockTimestampLast = blockTimestamp;
        }
        emit Sync(balance0, balance1);
    }

    function _mintFee(uint112 _reserve0, uint112 _reserve1) internal returns (uint256 _totalSupply, uint256 computed) {
        _totalSupply = totalSupply;
        uint256 _kLast = kLast;
        if (_kLast != 0) {
            computed = TridentMath.sqrt(uint256(_reserve0) * _reserve1);
            if (computed > _kLast) {
                // `barFee` % of increase in liquidity.
                uint256 _barFee = barFee;
                uint256 numerator = _totalSupply * (computed - _kLast) * _barFee;
                uint256 denominator = (MAX_FEE - _barFee) * computed + _barFee * _kLast;
                uint256 liquidity = numerator / denominator;

                if (liquidity != 0) {
                    _mint(barFeeTo, liquidity);
                    _totalSupply += liquidity;
                }
            }
        }
    }

    function _getAmountOut(
        uint256 amountIn,
        uint256 reserveAmountIn,
        uint256 reserveAmountOut
    ) internal view returns (uint256 amountOut) {
        uint256 amountInWithFee = amountIn * MAX_FEE_MINUS_SWAP_FEE;
        amountOut = (amountInWithFee * reserveAmountOut) / (reserveAmountIn * MAX_FEE + amountInWithFee);
    }

    function _getAmountIn(
        uint256 amountOut,
        uint256 reserveAmountIn,
        uint256 reserveAmountOut
    ) internal view returns (uint256 amountIn) {
        amountIn = (reserveAmountIn * amountOut * MAX_FEE) / ((reserveAmountOut - amountOut) * MAX_FEE_MINUS_SWAP_FEE) + 1;
    }

    function _transfer(
        address token,
        uint256 shares,
        address to,
        bool unwrapBento
    ) internal {
        if (unwrapBento) {
            bento.withdraw(token, address(this), to, 0, shares);
        } else {
            bento.transfer(token, address(this), to, shares);
        }
    }

    /// @dev This fee is charged to cover for `swapFee` when users add unbalanced liquidity.
    function _nonOptimalMintFee(
        uint256 _amount0,
        uint256 _amount1,
        uint256 _reserve0,
        uint256 _reserve1
    ) internal view returns (uint256 token0Fee, uint256 token1Fee) {
        if (_reserve0 == 0 || _reserve1 == 0) return (0, 0);
        uint256 amount1Optimal = (_amount0 * _reserve1) / _reserve0;
        if (amount1Optimal <= _amount1) {
            token1Fee = (swapFee * (_amount1 - amount1Optimal)) / (2 * MAX_FEE);
        } else {
            uint256 amount0Optimal = (_amount1 * _reserve0) / _reserve1;
            token0Fee = (swapFee * (_amount0 - amount0Optimal)) / (2 * MAX_FEE);
        }
    }

    function getAssets() public view override returns (address[] memory assets) {
        assets = new address[](2);
        assets[0] = token0;
        assets[1] = token1;
    }

    function getAmountOut(bytes calldata data) public view override returns (uint256 finalAmountOut) {
        (address tokenIn, uint256 amountIn) = abi.decode(data, (address, uint256));
        (uint112 _reserve0, uint112 _reserve1, ) = _getReserves();
        if (tokenIn == token0) {
            finalAmountOut = _getAmountOut(amountIn, _reserve0, _reserve1);
        } else {
            if (tokenIn != token1) revert InvalidInputToken();
            finalAmountOut = _getAmountOut(amountIn, _reserve1, _reserve0);
        }
    }

    function getAmountIn(bytes calldata data) public view override returns (uint256 finalAmountIn) {
        (address tokenOut, uint256 amountOut) = abi.decode(data, (address, uint256));
        (uint112 _reserve0, uint112 _reserve1, ) = _getReserves();
        if (tokenOut == token1) {
            finalAmountIn = _getAmountIn(amountOut, _reserve0, _reserve1);
        } else {
            if (tokenOut != token0) revert InvalidOutputToken();
            finalAmountIn = _getAmountIn(amountOut, _reserve1, _reserve0);
        }
    }

    /// @dev Returned values are in terms of BentoBox "shares".
    function getReserves()
        public
        view
        returns (
            uint112 _reserve0,
            uint112 _reserve1,
            uint32 _blockTimestampLast
        )
    {
        return _getReserves();
    }

    /// @dev Returned values are the native ERC20 token amounts.
    function getNativeReserves()
        public
        view
        returns (
            uint256 _nativeReserve0,
            uint256 _nativeReserve1,
            uint32 _blockTimestampLast
        )
    {
        (uint112 _reserve0, uint112 _reserve1, uint32 __blockTimestampLast) = _getReserves();
        _nativeReserve0 = bento.toAmount(token0, _reserve0, false);
        _nativeReserve1 = bento.toAmount(token1, _reserve1, false);
        _blockTimestampLast = __blockTimestampLast;
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"bytes","name":"_deployData","type":"bytes"},{"internalType":"contract IMasterDeployer","name":"_masterDeployer","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"IdenticalAddress","type":"error"},{"inputs":[],"name":"InsufficientAmountIn","type":"error"},{"inputs":[],"name":"InsufficientLiquidityMinted","type":"error"},{"inputs":[],"name":"InvalidAmounts","type":"error"},{"inputs":[],"name":"InvalidInputToken","type":"error"},{"inputs":[],"name":"InvalidOutputToken","type":"error"},{"inputs":[],"name":"InvalidSwapFee","type":"error"},{"inputs":[],"name":"Overflow","type":"error"},{"inputs":[],"name":"PoolUninitialized","type":"error"},{"inputs":[],"name":"ZeroAddress","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"sender","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount0","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amount1","type":"uint256"},{"indexed":true,"internalType":"address","name":"recipient","type":"address"}],"name":"Burn","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"sender","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount0","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amount1","type":"uint256"},{"indexed":true,"internalType":"address","name":"recipient","type":"address"}],"name":"Mint","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"recipient","type":"address"},{"indexed":true,"internalType":"address","name":"tokenIn","type":"address"},{"indexed":true,"internalType":"address","name":"tokenOut","type":"address"},{"indexed":false,"internalType":"uint256","name":"amountIn","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amountOut","type":"uint256"}],"name":"Swap","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"reserve0","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"reserve1","type":"uint256"}],"name":"Sync","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"DOMAIN_SEPARATOR","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PERMIT_TYPEHASH","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"address","name":"","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"barFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"barFeeTo","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"bento","outputs":[{"internalType":"contract IBentoBoxMinimal","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes","name":"data","type":"bytes"}],"name":"burn","outputs":[{"components":[{"internalType":"address","name":"token","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"internalType":"struct IPool.TokenAmount[]","name":"withdrawnAmounts","type":"tuple[]"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes","name":"data","type":"bytes"}],"name":"burnSingle","outputs":[{"internalType":"uint256","name":"amountOut","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes","name":"data","type":"bytes"}],"name":"flashSwap","outputs":[{"internalType":"uint256","name":"amountOut","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes","name":"data","type":"bytes"}],"name":"getAmountIn","outputs":[{"internalType":"uint256","name":"finalAmountIn","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes","name":"data","type":"bytes"}],"name":"getAmountOut","outputs":[{"internalType":"uint256","name":"finalAmountOut","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getAssets","outputs":[{"internalType":"address[]","name":"assets","type":"address[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getNativeReserves","outputs":[{"internalType":"uint256","name":"_nativeReserve0","type":"uint256"},{"internalType":"uint256","name":"_nativeReserve1","type":"uint256"},{"internalType":"uint32","name":"_blockTimestampLast","type":"uint32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getReserves","outputs":[{"internalType":"uint112","name":"_reserve0","type":"uint112"},{"internalType":"uint112","name":"_reserve1","type":"uint112"},{"internalType":"uint32","name":"_blockTimestampLast","type":"uint32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"kLast","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"masterDeployer","outputs":[{"internalType":"contract IMasterDeployer","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes","name":"data","type":"bytes"}],"name":"mint","outputs":[{"internalType":"uint256","name":"liquidity","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"nonces","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"},{"internalType":"uint256","name":"deadline","type":"uint256"},{"internalType":"uint8","name":"v","type":"uint8"},{"internalType":"bytes32","name":"r","type":"bytes32"},{"internalType":"bytes32","name":"s","type":"bytes32"}],"name":"permit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"poolIdentifier","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price0CumulativeLast","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price1CumulativeLast","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes","name":"data","type":"bytes"}],"name":"swap","outputs":[{"internalType":"uint256","name":"amountOut","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"token0","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"token1","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"updateBarFee","outputs":[],"stateMutability":"nonpayable","type":"function"}]

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106102415760003560e01c8063627dd56a11610145578063a69840a8116100bd578063c14ad8021161008c578063d21220a711610071578063d21220a7146105b8578063d505accf146105df578063dd62ed3e146105f257600080fd5b8063c14ad80214610588578063cf58879a1461059157600080fd5b8063a69840a814610528578063a8f1f52e1461054f578063a9059cbb14610562578063af8c09bf1461057557600080fd5b80637464fc3d116101145780637ecebe00116100f95780637ecebe00146104f657806392bc32191461051657806395d89b411461052057600080fd5b80637464fc3d146104da5780637ba0e2e7146104e357600080fd5b8063627dd56a1461046957806365dfc7671461047c57806367e4ac2c146104a557806370a08231146104ba57600080fd5b80632a07b6c7116101d8578063499a3c50116101a757806354cf2aeb1161018c57806354cf2aeb146104305780635909c0d5146104575780635a3d54931461046057600080fd5b8063499a3c50146103f65780634da318271461040957600080fd5b80632a07b6c71461036e57806330adf81f1461038e578063313ce567146103b55780633644e515146103ee57600080fd5b80630c0a0cd2116102145780630c0a0cd2146102df5780630dfe16811461032b57806318160ddd1461035257806323b872dd1461035b57600080fd5b8063053da1c81461024657806306fdde031461026c5780630902f1ac14610281578063095ea7b3146102bc575b600080fd5b610259610254366004613315565b61061d565b6040519081526020015b60405180910390f35b610274610c03565b60405161026391906133f2565b610289610c91565b604080516dffffffffffffffffffffffffffff948516815293909216602084015263ffffffff1690820152606001610263565b6102cf6102ca366004613431565b610cfa565b6040519015158152602001610263565b6103067f0000000000000000000000001136c70afdd5dad9508c58a8a0d91c574ad0e1b181565b60405173ffffffffffffffffffffffffffffffffffffffff9091168152602001610263565b6103067f0000000000000000000000003c015aecb2993896a52a62047ae8618935b8ac6581565b61025960025481565b6102cf61036936600461345d565b610d73565b61038161037c366004613315565b610eb7565b604051610263919061349e565b6102597f6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c981565b6103dc7f000000000000000000000000000000000000000000000000000000000000001281565b60405160ff9091168152602001610263565b610259611227565b610259610404366004613315565b611282565b6103067f0000000000000000000000000319000133d3ada02600f0875d2cf03d442c336781565b6102597f000000000000000000000000000000000000000000000000000000000000001e81565b61025960085481565b61025960095481565b610259610477366004613315565b61143a565b6104846117cb565b60408051938452602084019290925263ffffffff1690820152606001610263565b6104ad611a21565b6040516102639190613503565b6102596104c836600461355d565b60036020526000908152604090205481565b610259600a5481565b6102596104f1366004613315565b611b20565b61025961050436600461355d565b60056020526000908152604090205481565b61051e611e07565b005b610274611e9b565b6102597f54726964656e743a436f6e7374616e7450726f6475637400000000000000000081565b61025961055d366004613315565b611ea8565b6102cf610570366004613431565b61204c565b610259610583366004613315565b6120d1565b61025960075481565b6103067f000000000000000000000000351447fc9bd20a917783e159e61e86edda0b018781565b6103067f00000000000000000000000056300043988037d6f59ad34494f92d8732dd583981565b61051e6105ed36600461357a565b6124ab565b6102596106003660046135f1565b600460209081526000928352604080842090915290825290205481565b6000600654600114610690576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600a60248201527f5245454e5452414e43590000000000000000000000000000000000000000000060448201526064015b60405180910390fd5b60026006556000808080806106a78789018961366e565b94509450945094509450600080600061070f600b546dffffffffffffffffffffffffffff808216926e01000000000000000000000000000083049091169163ffffffff7c01000000000000000000000000000000000000000000000000000000009091041690565b925092509250826dffffffffffffffffffffffffffff1660001415610760576040517fd886367700000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b7f0000000000000000000000003c015aecb2993896a52a62047ae8618935b8ac6573ffffffffffffffffffffffffffffffffffffffff168873ffffffffffffffffffffffffffffffffffffffff161415610991576107df85846dffffffffffffffffffffffffffff16846dffffffffffffffffffffffffffff166127d7565b985061080d7f00000000000000000000000056300043988037d6f59ad34494f92d8732dd58398a898961283a565b6040517fbd50c7b1000000000000000000000000000000000000000000000000000000008152339063bd50c7b1906108499087906004016133f2565b600060405180830381600087803b15801561086357600080fd5b505af1158015610877573d6000803e3d6000fd5b505050506000806108866129d1565b9150915086856dffffffffffffffffffffffffffff16830310156108d6576040517fdf5b2ee600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6108e38282878787612b8d565b7f00000000000000000000000056300043988037d6f59ad34494f92d8732dd583973ffffffffffffffffffffffffffffffffffffffff168a73ffffffffffffffffffffffffffffffffffffffff168a73ffffffffffffffffffffffffffffffffffffffff167fcd3829a3813dc3cdd188fd3d01dcf3268c16be2fdd2dd21d0665418816e460628a8f604051610982929190918252602082015260400190565b60405180910390a45050610bef565b7f00000000000000000000000056300043988037d6f59ad34494f92d8732dd583973ffffffffffffffffffffffffffffffffffffffff168873ffffffffffffffffffffffffffffffffffffffff1614610a16576040517f2df9739b00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610a4185836dffffffffffffffffffffffffffff16856dffffffffffffffffffffffffffff166127d7565b9850610a6f7f0000000000000000000000003c015aecb2993896a52a62047ae8618935b8ac658a898961283a565b6040517fbd50c7b1000000000000000000000000000000000000000000000000000000008152339063bd50c7b190610aab9087906004016133f2565b600060405180830381600087803b158015610ac557600080fd5b505af1158015610ad9573d6000803e3d6000fd5b50505050600080610ae86129d1565b9150915086846dffffffffffffffffffffffffffff1682031015610b38576040517fdf5b2ee600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610b458282878787612b8d565b7f0000000000000000000000003c015aecb2993896a52a62047ae8618935b8ac6573ffffffffffffffffffffffffffffffffffffffff168a73ffffffffffffffffffffffffffffffffffffffff168a73ffffffffffffffffffffffffffffffffffffffff167fcd3829a3813dc3cdd188fd3d01dcf3268c16be2fdd2dd21d0665418816e460628a8f604051610be4929190918252602082015260400190565b60405180910390a450505b505060016006555094979650505050505050565b60008054610c109061377d565b80601f0160208091040260200160405190810160405280929190818152602001828054610c3c9061377d565b8015610c895780601f10610c5e57610100808354040283529160200191610c89565b820191906000526020600020905b815481529060010190602001808311610c6c57829003601f168201915b505050505081565b6000806000610cef600b546dffffffffffffffffffffffffffff808216926e01000000000000000000000000000083049091169163ffffffff7c01000000000000000000000000000000000000000000000000000000009091041690565b925092509250909192565b33600081815260046020908152604080832073ffffffffffffffffffffffffffffffffffffffff8716808552925280832085905551919290917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92590610d629086815260200190565b60405180910390a350600192915050565b73ffffffffffffffffffffffffffffffffffffffff831660009081526004602090815260408083203384529091528120547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610e0757610dd583826137fa565b73ffffffffffffffffffffffffffffffffffffffff861660009081526004602090815260408083203384529091529020555b73ffffffffffffffffffffffffffffffffffffffff851660009081526003602052604081208054859290610e3c9084906137fa565b909155505073ffffffffffffffffffffffffffffffffffffffff808516600081815260036020526040908190208054870190555190918716907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90610ea49087815260200190565b60405180910390a3506001949350505050565b6060600654600114610f25576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600a60248201527f5245454e5452414e4359000000000000000000000000000000000000000000006044820152606401610687565b6002600655600080610f3984860186613811565b915091506000806000610f9b600b546dffffffffffffffffffffffffffff808216926e01000000000000000000000000000083049091169163ffffffff7c01000000000000000000000000000000000000000000000000000000009091041690565b925092509250600080610fac6129d1565b30600090815260036020526040812054929450909250610fcc8787612e3a565b509050600081610fdc8685613846565b610fe691906138b2565b9050600082610ff58686613846565b610fff91906138b2565b905061100b3085612f20565b6110377f0000000000000000000000003c015aecb2993896a52a62047ae8618935b8ac65838d8d61283a565b6110637f00000000000000000000000056300043988037d6f59ad34494f92d8732dd5839828d8d61283a565b8186039550808503945061107a86868b8b8b612b8d565b61108c6110878688613846565b612fb6565b600a556040805160028082526060820190925290816020015b60408051808201909152600080825260208201528152602001906001900390816110a5579050509b5060405180604001604052807f0000000000000000000000003c015aecb2993896a52a62047ae8618935b8ac6573ffffffffffffffffffffffffffffffffffffffff168152602001838152508c60008151811061112c5761112c6138ed565b602002602001018190525060405180604001604052807f00000000000000000000000056300043988037d6f59ad34494f92d8732dd583973ffffffffffffffffffffffffffffffffffffffff168152602001828152508c600181518110611195576111956138ed565b60200260200101819052508a73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167fdccd412f0b1252819cb1fd330b93224ca42612892bb3f4f789976e6d819364968484604051611208929190918252602082015260400190565b60405180910390a35050600160065550979a9950505050505050505050565b60007f0000000000000000000000000000000000000000000000000000000000000089461461125d5761125861309c565b905090565b507fcc82697d38b9812b8ac60b7ad2a258508ce2c9310ee4763cf59150467aa5bb2690565b6000808061129284860186613431565b915091506000806112f2600b546dffffffffffffffffffffffffffff808216926e01000000000000000000000000000083049091169163ffffffff7c01000000000000000000000000000000000000000000000000000000009091041690565b50915091507f00000000000000000000000056300043988037d6f59ad34494f92d8732dd583973ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16141561137d5761137683836dffffffffffffffffffffffffffff16836dffffffffffffffffffffffffffff16613136565b9450611430565b7f0000000000000000000000003c015aecb2993896a52a62047ae8618935b8ac6573ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614611402576040517f0620202000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61142d83826dffffffffffffffffffffffffffff16846dffffffffffffffffffffffffffff16613136565b94505b5050505092915050565b60006006546001146114a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600a60248201527f5245454e5452414e4359000000000000000000000000000000000000000000006044820152606401610687565b6002600655600080806114bd8587018761391c565b9250925092506000806000611521600b546dffffffffffffffffffffffffffff808216926e01000000000000000000000000000083049091169163ffffffff7c01000000000000000000000000000000000000000000000000000000009091041690565b925092509250826dffffffffffffffffffffffffffff1660001415611572576040517fd886367700000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008061157d6129d1565b915091506000807f0000000000000000000000003c015aecb2993896a52a62047ae8618935b8ac6573ffffffffffffffffffffffffffffffffffffffff168a73ffffffffffffffffffffffffffffffffffffffff161415611647577f00000000000000000000000056300043988037d6f59ad34494f92d8732dd58399050866dffffffffffffffffffffffffffff168403915061163b82886dffffffffffffffffffffffffffff16886dffffffffffffffffffffffffffff166127d7565b9a508a83039250611733565b7f00000000000000000000000056300043988037d6f59ad34494f92d8732dd583973ffffffffffffffffffffffffffffffffffffffff168a73ffffffffffffffffffffffffffffffffffffffff16146116cc576040517f2df9739b00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5050600b546dffffffffffffffffffffffffffff6e01000000000000000000000000000090910481168203907f0000000000000000000000003c015aecb2993896a52a62047ae8618935b8ac659061172b908390888116908a166127d7565b9a508a840393505b61173f818c8b8b61283a565b61174c8484898989612b8d565b8073ffffffffffffffffffffffffffffffffffffffff168a73ffffffffffffffffffffffffffffffffffffffff168a73ffffffffffffffffffffffffffffffffffffffff167fcd3829a3813dc3cdd188fd3d01dcf3268c16be2fdd2dd21d0665418816e46062858f604051610be4929190918252602082015260400190565b60008060008060008061182d600b546dffffffffffffffffffffffffffff808216926e01000000000000000000000000000083049091169163ffffffff7c01000000000000000000000000000000000000000000000000000000009091041690565b6040517f5662311800000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff7f0000000000000000000000003c015aecb2993896a52a62047ae8618935b8ac65811660048301526dffffffffffffffffffffffffffff851660248301526000604483015293965091945092507f0000000000000000000000000319000133d3ada02600f0875d2cf03d442c336790911690635662311890606401602060405180830381865afa158015611900573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906119249190613963565b6040517f5662311800000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff7f00000000000000000000000056300043988037d6f59ad34494f92d8732dd5839811660048301526dffffffffffffffffffffffffffff85166024830152600060448301529197507f0000000000000000000000000319000133d3ada02600f0875d2cf03d442c336790911690635662311890606401602060405180830381865afa1580156119f2573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611a169190613963565b959690945092505050565b60408051600280825260608083018452926020830190803683370190505090507f0000000000000000000000003c015aecb2993896a52a62047ae8618935b8ac6581600081518110611a7557611a756138ed565b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f00000000000000000000000056300043988037d6f59ad34494f92d8732dd583981600181518110611ae357611ae36138ed565b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505090565b6000600654600114611b8e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600a60248201527f5245454e5452414e4359000000000000000000000000000000000000000000006044820152606401610687565b60026006556000611ba18385018561355d565b90506000806000611c01600b546dffffffffffffffffffffffffffff808216926e01000000000000000000000000000083049091169163ffffffff7c01000000000000000000000000000000000000000000000000000000009091041690565b925092509250600080611c126129d1565b90925090506000611c266110878385613846565b90506000611c446dffffffffffffffffffffffffffff8816856137fa565b90506000611c626dffffffffffffffffffffffffffff8816856137fa565b9050600080611c9384848c6dffffffffffffffffffffffffffff168c6dffffffffffffffffffffffffffff166131a1565b9092509050611ca2828b61397c565b9950611cae818a61397c565b9850600080611cbd8c8c612e3a565b915091508160001415611d2c57851580611cd5575084155b15611d0c576040517fd856fc5a00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611d186103e8886137fa565b9d50611d2760006103e86132a4565b611d48565b80870381611d3a8483613846565b611d4491906138b2565b9e50505b8d611d7f576040517fd226f9d400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611d898d8f6132a4565b611d9689898e8e8e612b8d565b600a879055604080518781526020810187905273ffffffffffffffffffffffffffffffffffffffff8f169133917fdbba30eb0402b389513e87f51f4db2db80bed454384ec6925a24097c3548a02a910160405180910390a35050600160065550999c9b505050505050505050505050565b7f000000000000000000000000351447fc9bd20a917783e159e61e86edda0b018773ffffffffffffffffffffffffffffffffffffffff1663c14ad8026040518163ffffffff1660e01b8152600401602060405180830381865afa158015611e72573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611e969190613963565b600755565b60018054610c109061377d565b60008080611eb884860186613431565b91509150600080611f18600b546dffffffffffffffffffffffffffff808216926e01000000000000000000000000000083049091169163ffffffff7c01000000000000000000000000000000000000000000000000000000009091041690565b50915091507f0000000000000000000000003c015aecb2993896a52a62047ae8618935b8ac6573ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611f9c5761137683836dffffffffffffffffffffffffffff16836dffffffffffffffffffffffffffff166127d7565b7f00000000000000000000000056300043988037d6f59ad34494f92d8732dd583973ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614612021576040517f2df9739b00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61142d83826dffffffffffffffffffffffffffff16846dffffffffffffffffffffffffffff166127d7565b3360009081526003602052604081208054839190839061206d9084906137fa565b909155505073ffffffffffffffffffffffffffffffffffffffff8316600081815260036020526040908190208054850190555133907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90610d629086815260200190565b600060065460011461213f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600a60248201527f5245454e5452414e4359000000000000000000000000000000000000000000006044820152606401610687565b6002600655600080806121548587018761391c565b92509250925060008060006121b8600b546dffffffffffffffffffffffffffff808216926e01000000000000000000000000000083049091169163ffffffff7c01000000000000000000000000000000000000000000000000000000009091041690565b3060009081526003602052604081205493965091945092506121da8585612e3a565b5090506000816121fa6dffffffffffffffffffffffffffff881685613846565b61220491906138b2565b90506000826122236dffffffffffffffffffffffffffff881686613846565b61222d91906138b2565b905061227061224c826dffffffffffffffffffffffffffff89166137fa565b612266846dffffffffffffffffffffffffffff8b166137fa565b6110879190613846565b600a5561227d3085612f20565b7f00000000000000000000000056300043988037d6f59ad34494f92d8732dd583973ffffffffffffffffffffffffffffffffffffffff168a73ffffffffffffffffffffffffffffffffffffffff161415612339576123008283896dffffffffffffffffffffffffffff160383896dffffffffffffffffffffffffffff16036127d7565b0161232d7f00000000000000000000000056300043988037d6f59ad34494f92d8732dd5839828b8b61283a565b809a5060009150612424565b7f0000000000000000000000003c015aecb2993896a52a62047ae8618935b8ac6573ffffffffffffffffffffffffffffffffffffffff168a73ffffffffffffffffffffffffffffffffffffffff16146123be576040517f0620202000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6123ed8182886dffffffffffffffffffffffffffff1603848a6dffffffffffffffffffffffffffff16036127d7565b8201915061241d7f0000000000000000000000003c015aecb2993896a52a62047ae8618935b8ac65838b8b61283a565b5098508860005b60008061242f6129d1565b9150915061244082828b8b8b612b8d565b604080518581526020810185905273ffffffffffffffffffffffffffffffffffffffff8d169133917fdccd412f0b1252819cb1fd330b93224ca42612892bb3f4f789976e6d81936496910160405180910390a35050600160065550989b9a5050505050505050505050565b42841015612515576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601760248201527f5045524d49545f444541444c494e455f455850495245440000000000000000006044820152606401610687565b600061251f611227565b73ffffffffffffffffffffffffffffffffffffffff89811660008181526005602090815260409182902080546001810190915582517f6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c98184015280840194909452938c166060840152608083018b905260a083019390935260c08083018a90528151808403909101815260e0830190915280519201919091207f190100000000000000000000000000000000000000000000000000000000000061010083015261010282019290925261012281019190915261014201604080517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe08184030181528282528051602091820120600080855291840180845281905260ff88169284019290925260608301869052608083018590529092509060019060a0016020604051602081039080840390855afa15801561267e573d6000803e3d6000fd5b50506040517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0015191505073ffffffffffffffffffffffffffffffffffffffff8116158015906126f957508873ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16145b61275f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600e60248201527f494e56414c49445f5349474e45520000000000000000000000000000000000006044820152606401610687565b73ffffffffffffffffffffffffffffffffffffffff90811660009081526004602090815260408083208b8516808552908352928190208a905551898152919350918a16917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a350505050505050565b6000806128047f00000000000000000000000000000000000000000000000000000000000026f286613846565b90508061281361271086613846565b61281d91906139ae565b6128278483613846565b61283191906138b2565b95945050505050565b8015612914576040517f97da6d3000000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff8581166004830152306024830152838116604483015260006064830152608482018590527f0000000000000000000000000319000133d3ada02600f0875d2cf03d442c336716906397da6d309060a40160408051808303816000875af11580156128e9573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061290d91906139c6565b50506129cb565b6040517ff18d03cc00000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff85811660048301523060248301528381166044830152606482018590527f0000000000000000000000000319000133d3ada02600f0875d2cf03d442c3367169063f18d03cc90608401600060405180830381600087803b1580156129b257600080fd5b505af11580156129c6573d6000803e3d6000fd5b505050505b50505050565b6040517ff7888aec00000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff7f0000000000000000000000003c015aecb2993896a52a62047ae8618935b8ac658116600483015230602483015260009182917f0000000000000000000000000319000133d3ada02600f0875d2cf03d442c3367169063f7888aec90604401602060405180830381865afa158015612a88573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612aac9190613963565b6040517ff7888aec00000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff7f00000000000000000000000056300043988037d6f59ad34494f92d8732dd5839811660048301523060248301529193507f0000000000000000000000000319000133d3ada02600f0875d2cf03d442c33679091169063f7888aec90604401602060405180830381865afa158015612b63573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612b879190613963565b90509091565b6dffffffffffffffffffffffffffff851180612bb657506dffffffffffffffffffffffffffff84115b15612bed576040517f35278d1200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b63ffffffff8116612c4f57600b80546dffffffffffffffffffffffffffff8681166e010000000000000000000000000000027fffffffff0000000000000000000000000000000000000000000000000000000090921690881617179055612dfa565b4263ffffffff80821690831614801590612c7857506dffffffffffffffffffffffffffff841615155b8015612c9357506dffffffffffffffffffffffffffff831615155b15612d585781810360006dffffffffffffffffffffffffffff86167bffffffffffffffffffffffffffff0000000000000000000000000000607087901b1681612cde57612cde613883565b600880549290910463ffffffff851681029092019055905060006dffffffffffffffffffffffffffff8616607088901b7bffffffffffffffffffffffffffff00000000000000000000000000001681612d3957612d39613883565b0490508263ffffffff1681026009600082825401925050819055505050505b600b805463ffffffff9092167c0100000000000000000000000000000000000000000000000000000000027bffffffffffffffffffffffffffffffffffffffffffffffffffffffff6dffffffffffffffffffffffffffff8881166e010000000000000000000000000000027fffffffff00000000000000000000000000000000000000000000000000000000909516908a161793909317929092169190911790555b60408051868152602081018690527fcf2aa50876cdfbb541206f89af0ee78d44a2abf8d328e37fa4917f982149848a910160405180910390a15050505050565b600254600a546000908015612f1857612e696110876dffffffffffffffffffffffffffff808716908816613846565b915080821115612f1857600754600081612e8384866137fa565b612e8d9087613846565b612e979190613846565b90506000612ea58484613846565b85612eb2856127106137fa565b612ebc9190613846565b612ec691906139ae565b90506000612ed482846138b2565b90508015612f1357612f067f0000000000000000000000001136c70afdd5dad9508c58a8a0d91c574ad0e1b1826132a4565b612f1081886139ae565b96505b505050505b509250929050565b73ffffffffffffffffffffffffffffffffffffffff821660009081526003602052604081208054839290612f559084906137fa565b909155505060028054829003905560405181815260009073ffffffffffffffffffffffffffffffffffffffff8416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906020015b60405180910390a35050565b6001817001000000000000000000000000000000008110612fdc5760409190911b9060801c5b680100000000000000008110612ff75760209190911b9060401c5b640100000000811061300e5760109190911b9060201c5b6201000081106130235760089190911b9060101c5b61010081106130375760049190911b9060081c5b6010811061304a5760029190911b9060041c5b60088110613059578160011b91505b5080820401600190811c80830401811c80830401811c80830401811c80830401811c80830401811c80830401901c80820481811015613096578091505b50919050565b60007f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f60006040516130ce91906139ea565b6040805191829003822060208301939093528101919091527fc89efdaa54c0f20c7adf612882df0950f5a951637e0307cdcb4c672f298b8bc660608201524660808201523060a082015260c00160405160208183030381529060405280519060200120905090565b60007f00000000000000000000000000000000000000000000000000000000000026f261316385846137fa565b61316d9190613846565b61271061317a8686613846565b6131849190613846565b61318e91906138b2565b6131999060016139ae565b949350505050565b6000808315806131af575082155b156131bf5750600090508061329b565b6000846131cc8589613846565b6131d691906138b2565b9050858111613231576131ec6127106002613846565b6131f682886137fa565b613220907f000000000000000000000000000000000000000000000000000000000000001e613846565b61322a91906138b2565b9150613299565b60008461323e8789613846565b61324891906138b2565b90506132576127106002613846565b613261828a6137fa565b61328b907f000000000000000000000000000000000000000000000000000000000000001e613846565b61329591906138b2565b9350505b505b94509492505050565b80600260008282546132b691906139ae565b909155505073ffffffffffffffffffffffffffffffffffffffff82166000818152600360209081526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9101612faa565b6000806020838503121561332857600080fd5b823567ffffffffffffffff8082111561334057600080fd5b818501915085601f83011261335457600080fd5b81358181111561336357600080fd5b86602082850101111561337557600080fd5b60209290920196919550909350505050565b6000815180845260005b818110156133ad57602081850181015186830182015201613391565b818111156133bf576000602083870101525b50601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0169290920160200192915050565b6020815260006134056020830184613387565b9392505050565b73ffffffffffffffffffffffffffffffffffffffff8116811461342e57600080fd5b50565b6000806040838503121561344457600080fd5b823561344f8161340c565b946020939093013593505050565b60008060006060848603121561347257600080fd5b833561347d8161340c565b9250602084013561348d8161340c565b929592945050506040919091013590565b602080825282518282018190526000919060409081850190868401855b828110156134f6578151805173ffffffffffffffffffffffffffffffffffffffff1685528601518685015292840192908501906001016134bb565b5091979650505050505050565b6020808252825182820181905260009190848201906040850190845b8181101561355157835173ffffffffffffffffffffffffffffffffffffffff168352928401929184019160010161351f565b50909695505050505050565b60006020828403121561356f57600080fd5b81356134058161340c565b600080600080600080600060e0888a03121561359557600080fd5b87356135a08161340c565b965060208801356135b08161340c565b95506040880135945060608801359350608088013560ff811681146135d457600080fd5b9699959850939692959460a0840135945060c09093013592915050565b6000806040838503121561360457600080fd5b823561360f8161340c565b9150602083013561361f8161340c565b809150509250929050565b8035801515811461363a57600080fd5b919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080600080600060a0868803121561368657600080fd5b85356136918161340c565b945060208601356136a18161340c565b93506136af6040870161362a565b925060608601359150608086013567ffffffffffffffff808211156136d357600080fd5b818801915088601f8301126136e757600080fd5b8135818111156136f9576136f961363f565b604051601f82017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0908116603f0116810190838211818310171561373f5761373f61363f565b816040528281528b602084870101111561375857600080fd5b8260208601602083013760006020848301015280955050505050509295509295909350565b600181811c9082168061379157607f821691505b60208210811415613096577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60008282101561380c5761380c6137cb565b500390565b6000806040838503121561382457600080fd5b823561382f8161340c565b915061383d6020840161362a565b90509250929050565b6000817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561387e5761387e6137cb565b500290565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000826138e8577f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b500490565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60008060006060848603121561393157600080fd5b833561393c8161340c565b9250602084013561394c8161340c565b915061395a6040850161362a565b90509250925092565b60006020828403121561397557600080fd5b5051919050565b60006dffffffffffffffffffffffffffff8083168185168083038211156139a5576139a56137cb565b01949350505050565b600082198211156139c1576139c16137cb565b500190565b600080604083850312156139d957600080fd5b505080516020909101519092909150565b600080835481600182811c915080831680613a0657607f831692505b6020808410821415613a3f577f4e487b710000000000000000000000000000000000000000000000000000000086526022600452602486fd5b818015613a535760018114613a8257613aaf565b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00861689528489019650613aaf565b60008a81526020902060005b86811015613aa75781548b820152908501908301613a8e565b505084890196505b50949897505050505050505056fea264697066735822122023b1b16732d5efbbde4fe9c09ad57bc5e282ee9d8115186daf2a0c35f79fae8264736f6c634300080a0033

Deployed Bytecode Sourcemap

19376:17423:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28331:1714;;;;;;:::i;:::-;;:::i;:::-;;;756:25:1;;;744:2;729:18;28331:1714:0;;;;;;;;1175:18;;;:::i;:::-;;;;;;;:::i;35986:232::-;;;:::i;:::-;;;;1763:30:1;1820:15;;;1802:34;;1872:15;;;;1867:2;1852:18;;1845:43;1936:10;1924:23;1904:18;;;1897:51;1741:2;1726:18;35986:232:0;1553:401:1;2811:217:0;;;;;;:::i;:::-;;:::i;:::-;;;2603:14:1;;2596:22;2578:41;;2566:2;2551:18;2811:217:0;2438:187:1;20027:33:0;;;;;;;;2806:42:1;2794:55;;;2776:74;;2764:2;2749:18;20027:33:0;2630:226:1;20167:31:0;;;;;1459:26;;;;;;3429:612;;;;;;:::i;:::-;;:::i;23399:1405::-;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;1810:146::-;;1861:95;1810:146;;1231:31;;;;;;;;4524:4:1;4512:17;;;4494:36;;4482:2;4467:18;1231:31:0;4352:184:1;5269:179:0;;;:::i;35373:540::-;;;;;;:::i;:::-;;:::i;20067:39::-;;;;;19930:32;;;;;20273:35;;;;;;20315;;;;;;26929:1270;;;;;;:::i;:::-;;:::i;36292:504::-;;;:::i;:::-;;;;4996:25:1;;;5052:2;5037:18;;5030:34;;;;5112:10;5100:23;5080:18;;;5073:51;4984:2;4969:18;36292:504:0;4796:334:1;34640:178:0;;;:::i;:::-;;;;;;;:::i;1494:44::-;;;;;;:::i;:::-;;;;;;;;;;;;;;20357:20;;;;;;21847:1423;;;;;;:::i;:::-;;:::i;2077:41::-;;;;;;:::i;:::-;;;;;;;;;;;;;;30106:82;;;:::i;:::-;;1202:20;;;:::i;20493:75::-;;;;;34826:539;;;;;;:::i;:::-;;:::i;3036:385::-;;;;;;:::i;:::-;;:::i;24983:1815::-;;;;;;:::i;:::-;;:::i;20245:21::-;;;;;;20113:47;;;;;20205:31;;;;;4238:1023;;;;;;:::i;:::-;;:::i;1547:64::-;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;28331:1714;28409:17;7349:16;;7369:1;7349:21;7341:44;;;;;;;7756:2:1;7341:44:0;;;7738:21:1;7795:2;7775:18;;;7768:30;7834:12;7814:18;;;7807:40;7864:18;;7341:44:0;;;;;;;;;7417:1;7398:16;:20;28440:15:::1;::::0;;;;28536:95:::1;::::0;;::::1;28561:4:::0;28536:95:::1;:::i;:::-;28439:192;;;;;;;;;;28643:17;28662::::0;28681:26:::1;28711:14;30414:8:::0;;;;;;;30445;;;;;;;30486:18;;;;;;;30196:316;28711:14:::1;28642:83;;;;;;28740:9;:14;;28753:1;28740:14;28736:46;;;28763:19;;;;;;;;;;;;;;28736:46;28833:6;28822:17;;:7;:17;;;28818:1209;;;28872:45;28886:8;28896:9;28872:45;;28907:9;28872:45;;:13;:45::i;:::-;28860:57;;28936:52;28946:6;28954:9;28965;28976:11;28936:9;:52::i;:::-;29007:55;::::0;;;;29022:10:::1;::::0;29007:46:::1;::::0;:55:::1;::::0;29054:7;;29007:55:::1;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;29082:16;29100::::0;29120:10:::1;:8;:10::i;:::-;29081:49;;;;29176:8;29164:9;29153:20;;:8;:20;:31;29149:66;;;29193:22;;;;;;;;;;;;;;29149:66;29234:70;29242:8;29252;29262:9;29273;29284:19;29234:7;:70::i;:::-;29353:6;29328:53;;29344:7;29328:53;;29333:9;29328:53;;;29361:8;29371:9;29328:53;;;;;;10059:25:1::0;;;10115:2;10100:18;;10093:34;10047:2;10032:18;;9885:248;29328:53:0::1;;;;;;;;28841:556;;28818:1209;;;29437:6;29426:17;;:7;:17;;;29422:49;;29452:19;;;;;;;;;;;;;;29422:49;29502:45;29516:8;29526:9;29502:45;;29537:9;29502:45;;:13;:45::i;:::-;29490:57;;29566:52;29576:6;29584:9;29595;29606:11;29566:9;:52::i;:::-;29637:55;::::0;;;;29652:10:::1;::::0;29637:46:::1;::::0;:55:::1;::::0;29684:7;;29637:55:::1;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;29712:16;29730::::0;29750:10:::1;:8;:10::i;:::-;29711:49;;;;29806:8;29794:9;29783:20;;:8;:20;:31;29779:66;;;29823:22;;;;;;;;;;;;;;29779:66;29864:70;29872:8;29882;29892:9;29903;29914:19;29864:7;:70::i;:::-;29983:6;29958:53;;29974:7;29958:53;;29963:9;29958:53;;;29991:8;30001:9;29958:53;;;;;;10059:25:1::0;;;10115:2;10100:18;;10093:34;10047:2;10032:18;;9885:248;29958:53:0::1;;;;;;;;29403:624;;28818:1209;-1:-1:-1::0;;7464:1:0;7445:16;:20;-1:-1:-1;28331:1714:0;;;-1:-1:-1;;;;;;;28331:1714:0:o;1175:18::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;35986:232::-;36071:17;36103;36135:26;36196:14;30414:8;;;;;;;30445;;;;;;;30486:18;;;;;;;30196:316;36196:14;36189:21;;;;;;35986:232;;;:::o;2811:217::-;2912:10;2885:4;2902:21;;;:9;:21;;;;;;;;;:30;;;;;;;;;;:39;;;2959:37;2885:4;;2902:30;;2959:37;;;;2935:6;756:25:1;;744:2;729:18;;610:177;2959:37:0;;;;;;;;-1:-1:-1;3016:4:0;2811:217;;;;:::o;3429:612::-;3586:15;;;3551:4;3586:15;;;:9;:15;;;;;;;;3602:10;3586:27;;;;;;;;3677:17;3666:28;;3662:80;;3726:16;3736:6;3726:7;:16;:::i;:::-;3696:15;;;;;;;:9;:15;;;;;;;;3712:10;3696:27;;;;;;;:46;3662:80;3755:15;;;;;;;:9;:15;;;;;:25;;3774:6;;3755:15;:25;;3774:6;;3755:25;:::i;:::-;;;;-1:-1:-1;;3931:13:0;;;;;;;;:9;:13;;;;;;;:23;;;;;;3983:26;3931:13;;3983:26;;;;;;;3948:6;756:25:1;;744:2;729:18;;610:177;3983:26:0;;;;;;;;-1:-1:-1;4029:4:0;;3429:612;-1:-1:-1;;;;3429:612:0:o;23399:1405::-;23472:43;7349:16;;7369:1;7349:21;7341:44;;;;;;;7756:2:1;7341:44:0;;;7738:21:1;7795:2;7775:18;;;7768:30;7834:12;7814:18;;;7807:40;7864:18;;7341:44:0;7554:334:1;7341:44:0;7417:1;7398:16;:20;23529:17:::1;::::0;23568:33:::1;::::0;;::::1;23579:4:::0;23568:33:::1;:::i;:::-;23528:73;;;;23613:17;23632::::0;23651:26:::1;23681:14;30414:8:::0;;;;;;;30445;;;;;;;30486:18;;;;;;;30196:316;23681:14:::1;23612:83;;;;;;23707:16;23725::::0;23745:10:::1;:8;:10::i;:::-;23804:4;23766:17;23786:24:::0;;;:9:::1;:24;::::0;;;;;23706:49;;-1:-1:-1;23706:49:0;;-1:-1:-1;23850:30:0::1;23859:9:::0;23870;23850:8:::1;:30::i;:::-;-1:-1:-1::0;23823:57:0;-1:-1:-1;23893:15:0::1;23823:57:::0;23912:20:::1;23924:8:::0;23912:9;:20:::1;:::i;:::-;23911:37;;;;:::i;:::-;23893:55:::0;-1:-1:-1;23959:15:0::1;24002:12:::0;23978:20:::1;23990:8:::0;23978:9;:20:::1;:::i;:::-;23977:37;;;;:::i;:::-;23959:55;;24027:31;24041:4;24048:9;24027:5;:31::i;:::-;24069:50;24079:6;24087:7;24096:9;24107:11;24069:9;:50::i;:::-;24130;24140:6;24148:7;24157:9;24168:11;24130:9;:50::i;:::-;24320:7;24308:19;;;;24354:7;24342:19;;;;24383:70;24391:8;24401;24411:9;24422;24433:19;24383:7;:70::i;:::-;24472:37;24489:19;24500:8:::0;24489;:19:::1;:::i;:::-;24472:16;:37::i;:::-;24464:5;:45:::0;24541:20:::1;::::0;;24559:1:::1;24541:20:::0;;;;;::::1;::::0;;;;::::1;;;;-1:-1:-1::0;;;;;;;;;;;;;;;;;24541:20:0::1;;;;;;;;;;;;;;;24522:39;;24594:54;;;;;;;;24622:6;24594:54;;;;;;24639:7;24594:54;;::::0;24572:16:::1;24589:1;24572:19;;;;;;;;:::i;:::-;;;;;;:76;;;;24681:54;;;;;;;;24709:6;24681:54;;;;;;24726:7;24681:54;;::::0;24659:16:::1;24676:1;24659:19;;;;;;;;:::i;:::-;;;;;;:76;;;;24786:9;24751:45;;24756:10;24751:45;;;24768:7;24777;24751:45;;;;;;10059:25:1::0;;;10115:2;10100:18;;10093:34;10047:2;10032:18;;9885:248;24751:45:0::1;;;;;;;;-1:-1:-1::0;;7464:1:0;7445:16;:20;-1:-1:-1;23399:1405:0;;;-1:-1:-1;;;;;;;;;;23399:1405:0:o;5269:179::-;5326:7;5370:16;5353:13;:33;:87;;5416:24;:22;:24::i;:::-;5346:94;;5269:179;:::o;5353:87::-;-1:-1:-1;5389:24:0;;5269:179::o;35373:540::-;35445:21;;;35519:36;;;;35530:4;35519:36;:::i;:::-;35479:76;;;;35567:17;35586;35609:14;30414:8;;;;;;;30445;;;;;;;30486:18;;;;;;;30196:316;35609:14;35566:57;;;;;35650:6;35638:18;;:8;:18;;;35634:272;;;35689:45;35702:9;35713;35689:45;;35724:9;35689:45;;:12;:45::i;:::-;35673:61;;35634:272;;;35783:6;35771:18;;:8;:18;;;35767:51;;35798:20;;;;;;;;;;;;;;35767:51;35849:45;35862:9;35873;35849:45;;35884:9;35849:45;;:12;:45::i;:::-;35833:61;;35634:272;35468:445;;;;35373:540;;;;:::o;26929:1270::-;27002:17;7349:16;;7369:1;7349:21;7341:44;;;;;;;7756:2:1;7341:44:0;;;7738:21:1;7795:2;7775:18;;;7768:30;7834:12;7814:18;;;7807:40;7864:18;;7341:44:0;7554:334:1;7341:44:0;7417:1;7398:16;:20;27033:15:::1;::::0;;27089:42:::1;::::0;;::::1;27100:4:::0;27089:42:::1;:::i;:::-;27032:99;;;;;;27143:17;27162::::0;27181:26:::1;27211:14;30414:8:::0;;;;;;;30445;;;;;;;30486:18;;;;;;;30196:316;27211:14:::1;27142:83;;;;;;27240:9;:14;;27253:1;27240:14;27236:46;;;27263:19;;;;;;;;;;;;;;27236:46;27294:16;27312::::0;27332:10:::1;:8;:10::i;:::-;27293:49;;;;27353:16;27380::::0;27447:6:::1;27436:17;;:7;:17;;;27432:532;;;27485:6;27474:17;;27532:9;27521:20;;:8;:20;27510:31;;27572:45;27586:8;27596:9;27572:45;;27607:9;27572:45;;:13;:45::i;:::-;27560:57;;27648:9;27636:21;;;;27432:532;;;27713:6;27702:17;;:7;:17;;;27698:49;;27728:19;;;;;;;;;;;;;;27698:49;-1:-1:-1::0;;27824:8:0::1;::::0;::::1;::::0;;;::::1;::::0;::::1;27813:19:::0;::::1;::::0;27777:6:::1;::::0;27863:45:::1;::::0;27813:19;;27863:45;;::::1;::::0;;::::1;:13;:45::i;:::-;27851:57;;27939:9;27927:21;;;;27432:532;27985:54;27995:8;28005:9;28016;28027:11;27985:9;:54::i;:::-;28050:70;28058:8;28068;28078:9;28089;28100:19;28050:7;:70::i;:::-;28161:8;28136:55;;28152:7;28136:55;;28141:9;28136:55;;;28171:8;28181:9;28136:55;;;;;;10059:25:1::0;;;10115:2;10100:18;;10093:34;10047:2;10032:18;;9885:248;36292:504:0;36383:23;36421;36459:26;36514:17;36533;36552:27;36583:14;30414:8;;;;;;;30445;;;;;;;30486:18;;;;;;;30196:316;36583:14;36626:40;;;;;:14;36641:6;13136:55:1;;36626:40:0;;;13118:74:1;13240:30;13228:43;;13208:18;;;13201:71;-1:-1:-1;13288:18:1;;;13281:50;13228:43;;-1:-1:-1;36513:84:0;;-1:-1:-1;36513:84:0;-1:-1:-1;36626:5:0;:14;;;;;;13091:18:1;;36626:40:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;36695;;;;;:14;36710:6;13136:55:1;;36695:40:0;;;13118:74:1;13240:30;13228:43;;13208:18;;;13201:71;-1:-1:-1;13288:18:1;;;13281:50;36608:58:0;;-1:-1:-1;36695:5:0;:14;;;;;;13091:18:1;;36695:40:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;36292:504;;36768:20;;-1:-1:-1;36292:504:0;-1:-1:-1;;;36292:504:0:o;34640:178::-;34736:16;;;34750:1;34736:16;;;34691:23;34736:16;;;;;34691:23;34736:16;;;;;;;;;;-1:-1:-1;34736:16:0;34727:25;;34775:6;34763;34770:1;34763:9;;;;;;;;:::i;:::-;;;;;;:18;;;;;;;;;;;34804:6;34792;34799:1;34792:9;;;;;;;;:::i;:::-;;;;;;:18;;;;;;;;;;;34640:178;:::o;21847:1423::-;21920:17;7349:16;;7369:1;7349:21;7341:44;;;;;;;7756:2:1;7341:44:0;;;7738:21:1;7795:2;7775:18;;;7768:30;7834:12;7814:18;;;7807:40;7864:18;;7341:44:0;7554:334:1;7341:44:0;7417:1;7398:16;:20;21950:17:::1;21970:27;::::0;;::::1;21981:4:::0;21970:27:::1;:::i;:::-;21950:47;;22009:17;22028::::0;22047:26:::1;22077:14;30414:8:::0;;;;;;;30445;;;;;;;30486:18;;;;;;;30196:316;22077:14:::1;22008:83;;;;;;22103:16;22121::::0;22141:10:::1;:8;:10::i;:::-;22102:49:::0;;-1:-1:-1;22102:49:0;-1:-1:-1;22164:16:0::1;22183:37;22200:19;22102:49:::0;;22200:19:::1;:::i;22183:37::-;22164:56:::0;-1:-1:-1;22231:15:0::1;22249:20;;::::0;::::1;:8:::0;:20:::1;:::i;:::-;22231:38:::0;-1:-1:-1;22280:15:0::1;22298:20;;::::0;::::1;:8:::0;:20:::1;:::i;:::-;22280:38;;22332:12;22346::::0;22362:58:::1;22381:7;22390;22399:9;22362:58;;22410:9;22362:58;;:18;:58::i;:::-;22331:89:::0;;-1:-1:-1;22331:89:0;-1:-1:-1;22431:26:0::1;22331:89:::0;22431:26;::::1;:::i;:::-;::::0;-1:-1:-1;22468:26:0::1;22489:4:::0;22468:26;::::1;:::i;:::-;;;22508:20;22530:9:::0;22543:30:::1;22552:9;22563;22543:8;:30::i;:::-;22507:66;;;;22590:12;22606:1;22590:17;22586:403;;;22628:12:::0;;;:28:::1;;-1:-1:-1::0;22644:12:0;;22628:28:::1;22624:57;;;22665:16;;;;;;;;;;;;;;22624:57;22708:28;19750:4;22708:8:::0;:28:::1;:::i;:::-;22696:40;;22751:36;22765:1;19750:4;22751:5;:36::i;:::-;22586:403;;;22893:12:::0;;::::1;22904:1:::0;22948:24:::1;22960:12:::0;22893;22948:24:::1;:::i;:::-;22947:30;;;;:::i;:::-;22935:42;;22805:184;22586:403;23003:14:::0;22999:56:::1;;23026:29;;;;;;;;;;;;;;22999:56;23066:27;23072:9;23083;23066:5;:27::i;:::-;23104:70;23112:8;23122;23132:9;23143;23154:19;23104:7;:70::i;:::-;23185:5;:16:::0;;;23217:45:::1;::::0;;10059:25:1;;;10115:2;10100:18;;10093:34;;;23217:45:0::1;::::0;::::1;::::0;23222:10:::1;::::0;23217:45:::1;::::0;10032:18:1;23217:45:0::1;;;;;;;-1:-1:-1::0;;7464:1:0;7445:16;:20;-1:-1:-1;21847:1423:0;;;-1:-1:-1;;;;;;;;;;;;21847:1423:0:o;30106:82::-;30157:14;:21;;;:23;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;30148:6;:32;30106:82::o;1202:20::-;;;;;;;:::i;34826:539::-;34899:22;;;34972:36;;;;34983:4;34972:36;:::i;:::-;34934:74;;;;35020:17;35039;35062:14;30414:8;;;;;;;30445;;;;;;;30486:18;;;;;;;30196:316;35062:14;35019:57;;;;;35102:6;35091:17;;:7;:17;;;35087:271;;;35142:45;35156:8;35166:9;35142:45;;35177:9;35142:45;;:13;:45::i;35087:271::-;35235:6;35224:17;;:7;:17;;;35220:49;;35250:19;;;;;;;;;;;;;;35220:49;35301:45;35315:8;35325:9;35301:45;;35336:9;35301:45;;:13;:45::i;3036:385::-;3133:10;3106:4;3123:21;;;:9;:21;;;;;:31;;3148:6;;3123:21;3106:4;;3123:31;;3148:6;;3123:31;:::i;:::-;;;;-1:-1:-1;;3305:13:0;;;;;;;:9;:13;;;;;;;:23;;;;;;3357:32;3366:10;;3357:32;;;;3322:6;756:25:1;;744:2;729:18;;610:177;24983:1815:0;25062:17;7349:16;;7369:1;7349:21;7341:44;;;;;;;7756:2:1;7341:44:0;;;7738:21:1;7795:2;7775:18;;;7768:30;7834:12;7814:18;;;7807:40;7864:18;;7341:44:0;7554:334:1;7341:44:0;7417:1;7398:16;:20;25093:16:::1;::::0;;25150:42:::1;::::0;;::::1;25161:4:::0;25150:42:::1;:::i;:::-;25092:100;;;;;;25204:17;25223::::0;25242:26:::1;25272:14;30414:8:::0;;;;;;;30445;;;;;;;30486:18;;;;;;;30196:316;25272:14:::1;25335:4;25297:17;25317:24:::0;;;:9:::1;:24;::::0;;;;;25203:83;;-1:-1:-1;25203:83:0;;-1:-1:-1;25203:83:0;-1:-1:-1;25381:30:0::1;25203:83:::0;;25381:8:::1;:30::i;:::-;-1:-1:-1::0;25354:57:0;-1:-1:-1;25424:15:0::1;25354:57:::0;25443:21:::1;;::::0;::::1;:9:::0;:21:::1;:::i;:::-;25442:38;;;;:::i;:::-;25424:56:::0;-1:-1:-1;25491:15:0::1;25535:12:::0;25510:21:::1;;::::0;::::1;:9:::0;:21:::1;:::i;:::-;25509:38;;;;:::i;:::-;25491:56:::0;-1:-1:-1;25568:63:0::1;25610:19;25491:56:::0;25610:19:::1;::::0;::::1;;:::i;:::-;25586;25598:7:::0;25586:19:::1;::::0;::::1;;:::i;:::-;25585:45;;;;:::i;25568:63::-;25560:5;:71:::0;25644:31:::1;25658:4;25665:9:::0;25644:5:::1;:31::i;:::-;25768:6;25756:18;;:8;:18;;;25752:822;;;25986:64;26000:7;26021;26009:9;:19;;;26042:7;26030:9;:19;;;25986:13;:64::i;:::-;25975:75;26069:50;26079:6;25975:75:::0;26096:9;26107:11;26069:9:::1;:50::i;:::-;26150:7;26138:19;;26186:1;26176:11;;25752:822;;;26292:6;26280:18;;:8;:18;;;26276:51;;26307:20;;;;;;;;;;;;;;26276:51;26357:64;26371:7;26392;26380:9;:19;;;26413:7;26401:9;:19;;;26357:13;:64::i;:::-;26346:75;;;;26440:50;26450:6;26458:7;26467:9;26478:11;26440:9;:50::i;:::-;-1:-1:-1::0;26521:7:0;-1:-1:-1;26521:7:0;26557:1:::1;25752:822;26598:16;26616::::0;26636:10:::1;:8;:10::i;:::-;26597:49;;;;26657:70;26665:8;26675;26685:9;26696;26707:19;26657:7;:70::i;:::-;26745:45;::::0;;10059:25:1;;;10115:2;10100:18;;10093:34;;;26745:45:0::1;::::0;::::1;::::0;26750:10:::1;::::0;26745:45:::1;::::0;10032:18:1;26745:45:0::1;;;;;;;-1:-1:-1::0;;7464:1:0;7445:16;:20;-1:-1:-1;24983:1815:0;;;-1:-1:-1;;;;;;;;;;;24983:1815:0:o;4238:1023::-;4466:15;4454:8;:27;;4446:63;;;;;;;14247:2:1;4446:63:0;;;14229:21:1;14286:2;14266:18;;;14259:30;14325:25;14305:18;;;14298:53;14368:18;;4446:63:0;14045:347:1;4446:63:0;4679:14;4796:18;:16;:18::i;:::-;4898:13;;;;;;;;:6;:13;;;;;;;;;:15;;;;;;;;4847:77;;1861:95;4847:77;;;14684:25:1;14786:18;;;14779:43;;;;14858:15;;;14838:18;;;14831:43;14890:18;;;14883:34;;;14933:19;;;14926:35;;;;14977:19;;;;14970:35;;;4847:77:0;;;;;;;;;;14656:19:1;;;4847:77:0;;;4837:88;;;;;;;;15286:66:1;4724:220:0;;;15274:79:1;15369:11;;;15362:27;;;;15405:12;;;15398:28;;;;15442:12;;4724:220:0;;;;;;;;;;;;;4696:263;;4724:220;4696:263;;;;4976:24;5003:26;;;;;;;;;15692:25:1;;;15765:4;15753:17;;15733:18;;;15726:45;;;;15787:18;;;15780:34;;;15830:18;;;15823:34;;;4696:263:0;;-1:-1:-1;4976:24:0;5003:26;;15664:19:1;;5003:26:0;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;5003:26:0;;;;;;-1:-1:-1;;5054:30:0;;;;;;;:59;;;5108:5;5088:25;;:16;:25;;;5054:59;5046:86;;;;;;;16070:2:1;5046:86:0;;;16052:21:1;16109:2;16089:18;;;16082:30;16148:16;16128:18;;;16121:44;16182:18;;5046:86:0;15868:338:1;5046:86:0;5149:27;;;;;;;;:9;:27;;;;;;;;:36;;;;;;;;;;;;;:44;;;5222:31;756:25:1;;;5149:36:0;;-1:-1:-1;5222:31:0;;;;;;729:18:1;5222:31:0;;;;;;;4238:1023;;;;;;;:::o;32879:353::-;33028:17;;33084:33;33095:22;33084:8;:33;:::i;:::-;33058:59;-1:-1:-1;33058:59:0;33180:25;19845:5;33180:15;:25;:::i;:::-;:43;;;;:::i;:::-;33141:34;33159:16;33141:15;:34;:::i;:::-;33140:84;;;;:::i;:::-;33128:96;32879:353;-1:-1:-1;;;;;32879:353:0:o;33548:326::-;33695:11;33691:176;;;33723:51;;;;;:14;16690:15:1;;;33723:51:0;;;16672:34:1;33753:4:0;16722:18:1;;;16715:43;16794:15;;;16774:18;;;16767:43;33764:1:0;16826:18:1;;;16819:34;16869:19;;;16862:35;;;33723:5:0;:14;;;;16583:19:1;;33723:51:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;33691:176;;;33807:48;;;;;:14;17468:15:1;;;33807:48:0;;;17450:34:1;33837:4:0;17500:18:1;;;17493:43;17572:15;;;17552:18;;;17545:43;17604:18;;;17597:34;;;33807:5:0;:14;;;;17361:19:1;;33807:48:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33691:176;33548:326;;;;:::o;30520:207::-;30621:38;;;;;:15;30637:6;17895:15:1;;30621:38:0;;;17877:34:1;30653:4:0;17927:18:1;;;17920:43;-1:-1:-1;;;;30621:5:0;:15;;;;17789:18:1;;30621:38:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;30681;;;;;:15;30697:6;17895:15:1;;30681:38:0;;;17877:34:1;30713:4:0;17927:18:1;;;17920:43;30610:49:0;;-1:-1:-1;30681:5:0;:15;;;;;;17789:18:1;;30681:38:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;30670:49;;30520:207;;:::o;30735:1278::-;30941:17;30930:28;;;:60;;-1:-1:-1;30973:17:0;30962:28;;30930:60;30926:83;;;30999:10;;;;;;;;;;;;;;30926:83;31024:24;;;31020:946;;31126:8;:28;;;31169;;;;;;;;;31126;;;31169;;;;31020:946;;;31261:15;31296:37;;;;;;;;;;;:55;;-1:-1:-1;31337:14:0;;;;;31296:55;:73;;;;-1:-1:-1;31355:14:0;;;;;31296:73;31292:527;;;31444:36;;;31423:18;31520:45;;;31521:31;19799:3;31521:31;;;;31520:45;;;;;:::i;:::-;31588:20;:44;;31520:45;;;;31612:20;;;;;31588:44;;;;;31520:45;-1:-1:-1;;31672:45:0;;;19799:3;31673:31;;;;;31672:45;;;;;:::i;:::-;;31655:62;;31773:11;31764:20;;:6;:20;31740;;:44;;;;;;;;;;;31390:414;;;31292:527;31833:8;:28;;31919:35;;;;;;;31833:28;31876;;;;;;;;;31833;;;31876;;;;;31919:35;;;;;;;;;;31020:946;31981:24;;;10059:25:1;;;10115:2;10100:18;;10093:34;;;31981:24:0;;10032:18:1;31981:24:0;;;;;;;30735:1278;;;;;:::o;32021:850::-;32161:11;;32200:5;;32095:20;;32220:11;;32216:648;;32259:48;32276:30;;;;;;:18;;:30;:::i;32259:48::-;32248:59;;32337:6;32326:8;:17;32322:531;;;32439:6;;32421:15;32439:6;32500:17;32511:6;32500:8;:17;:::i;:::-;32484:34;;:12;:34;:::i;:::-;:44;;;;:::i;:::-;32464:64;-1:-1:-1;32547:19:0;32602:16;32612:6;32602:7;:16;:::i;:::-;32591:8;32570:17;32580:7;19845:5;32570:17;:::i;:::-;32569:30;;;;:::i;:::-;:49;;;;:::i;:::-;32547:71;-1:-1:-1;32637:17:0;32657:23;32547:71;32657:9;:23;:::i;:::-;32637:43;-1:-1:-1;32705:14:0;;32701:137;;32744:26;32750:8;32760:9;32744:5;:26::i;:::-;32793:25;32809:9;32793:25;;:::i;:::-;;;32701:137;32345:508;;;;32322:531;32135:736;32021:850;;;;;:::o;6456:338::-;6529:15;;;;;;;:9;:15;;;;;:25;;6548:6;;6529:15;:25;;6548:6;;6529:25;:::i;:::-;;;;-1:-1:-1;;6702:11:0;:21;;;;;;;6752:34;;756:25:1;;;-1:-1:-1;;6752:34:0;;;;;;744:2:1;729:18;6752:34:0;;;;;;;;6456:338;;:::o;16523:2171::-;16661:1;16748;16850:35;16844:42;;16834:199;;16980:2;16976:10;;;;;16916:3;16912:11;16834:199;17063:19;17060:1;17057:26;17047:181;;17175:2;17171:10;;;;;17113:2;17109:10;17047:181;17258:11;17255:1;17252:18;17242:173;;17362:2;17358:10;;;;;17300:2;17296:10;17242:173;17445:7;17442:1;17439:14;17429:167;;17545:1;17541:9;;;;;17483:2;17479:10;17429:167;17626:5;17623:1;17620:12;17610:163;;17722:1;17718:9;;;;;17662:1;17658:9;17610:163;17803:4;17800:1;17797:11;17787:162;;17898:1;17894:9;;;;;17838:1;17834:9;17787:162;17979:3;17976:1;17973:10;17963:112;;18058:1;18055;18051:9;18046:14;;17963:112;-1:-1:-1;18169:9:0;;;18162:17;18159:1;18155:25;;;18213:9;;;18206:17;18199:25;;18257:9;;;18250:17;18243:25;;18301:9;;;18294:17;18287:25;;18345:9;;;18338:17;18331:25;;18389:9;;;18382:17;18375:25;;18433:9;;;18426:17;18419:25;;18531:9;;;18609:17;;;18606:70;;;18651:10;18646:15;;18606:70;;16523:2171;;;:::o;5456:457::-;5521:7;5622:95;5756:4;5740:22;;;;;;:::i;:::-;;;;;;;;;;5589:301;;;19586:25:1;;;;19627:18;;19620:34;;;;5785:14:0;19670:18:1;;;19663:34;5822:13:0;19713:18:1;;;19706:34;5866:4:0;19756:19:1;;;19749:84;19558:19;;5589:301:0;;;;;;;;;;;;5561:344;;;;;;5541:364;;5456:457;:::o;33240:300::-;33389:16;33505:22;33473:28;33492:9;33473:16;:28;:::i;:::-;33472:55;;;;:::i;:::-;19845:5;33430:27;33448:9;33430:15;:27;:::i;:::-;:37;;;;:::i;:::-;33429:99;;;;:::i;:::-;:103;;33531:1;33429:103;:::i;:::-;33418:114;33240:300;-1:-1:-1;;;;33240:300:0:o;33976:656::-;34144:17;;34197:14;;;:32;;-1:-1:-1;34215:14:0;;34197:32;34193:51;;;-1:-1:-1;34239:1:0;;-1:-1:-1;34239:1:0;34231:13;;34193:51;34255:22;34305:9;34281:20;34292:9;34281:8;:20;:::i;:::-;34280:34;;;;:::i;:::-;34255:59;;34347:8;34329:14;:26;34325:300;;34427:11;19845:5;34427:1;:11;:::i;:::-;34396:25;34407:14;34396:8;:25;:::i;:::-;34385:37;;:7;:37;:::i;:::-;34384:55;;;;:::i;:::-;34372:67;;34325:300;;;34472:22;34522:9;34498:20;34509:9;34498:8;:20;:::i;:::-;34497:34;;;;:::i;:::-;34472:59;-1:-1:-1;34601:11:0;19845:5;34601:1;:11;:::i;:::-;34570:25;34581:14;34570:8;:25;:::i;:::-;34559:37;;:7;:37;:::i;:::-;34558:55;;;;:::i;:::-;34546:67;;34457:168;34325:300;34182:450;33976:656;;;;;;;;:::o;6113:335::-;6199:6;6184:11;;:21;;;;;;;:::i;:::-;;;;-1:-1:-1;;6356:13:0;;;;;;;:9;:13;;;;;;;;:23;;;;;;6408:32;756:25:1;;;6408:32:0;;729:18:1;6408:32:0;610:177:1;14:591;84:6;92;145:2;133:9;124:7;120:23;116:32;113:52;;;161:1;158;151:12;113:52;201:9;188:23;230:18;271:2;263:6;260:14;257:34;;;287:1;284;277:12;257:34;325:6;314:9;310:22;300:32;;370:7;363:4;359:2;355:13;351:27;341:55;;392:1;389;382:12;341:55;432:2;419:16;458:2;450:6;447:14;444:34;;;474:1;471;464:12;444:34;519:7;514:2;505:6;501:2;497:15;493:24;490:37;487:57;;;540:1;537;530:12;487:57;571:2;563:11;;;;;593:6;;-1:-1:-1;14:591:1;;-1:-1:-1;;;;14:591:1:o;792:531::-;834:3;872:5;866:12;899:6;894:3;887:19;924:1;934:162;948:6;945:1;942:13;934:162;;;1010:4;1066:13;;;1062:22;;1056:29;1038:11;;;1034:20;;1027:59;963:12;934:162;;;1114:6;1111:1;1108:13;1105:87;;;1180:1;1173:4;1164:6;1159:3;1155:16;1151:27;1144:38;1105:87;-1:-1:-1;1237:2:1;1225:15;1242:66;1221:88;1212:98;;;;1312:4;1208:109;;792:531;-1:-1:-1;;792:531:1:o;1328:220::-;1477:2;1466:9;1459:21;1440:4;1497:45;1538:2;1527:9;1523:18;1515:6;1497:45;:::i;:::-;1489:53;1328:220;-1:-1:-1;;;1328:220:1:o;1959:154::-;2045:42;2038:5;2034:54;2027:5;2024:65;2014:93;;2103:1;2100;2093:12;2014:93;1959:154;:::o;2118:315::-;2186:6;2194;2247:2;2235:9;2226:7;2222:23;2218:32;2215:52;;;2263:1;2260;2253:12;2215:52;2302:9;2289:23;2321:31;2346:5;2321:31;:::i;:::-;2371:5;2423:2;2408:18;;;;2395:32;;-1:-1:-1;;;2118:315:1:o;2861:456::-;2938:6;2946;2954;3007:2;2995:9;2986:7;2982:23;2978:32;2975:52;;;3023:1;3020;3013:12;2975:52;3062:9;3049:23;3081:31;3106:5;3081:31;:::i;:::-;3131:5;-1:-1:-1;3188:2:1;3173:18;;3160:32;3201:33;3160:32;3201:33;:::i;:::-;2861:456;;3253:7;;-1:-1:-1;;;3307:2:1;3292:18;;;;3279:32;;2861:456::o;3322:843::-;3549:2;3601:21;;;3671:13;;3574:18;;;3693:22;;;3520:4;;3549:2;3734;;3752:18;;;;3793:15;;;3520:4;3836:303;3850:6;3847:1;3844:13;3836:303;;;3909:13;;3951:9;;3962:42;3947:58;3935:71;;4046:11;;4040:18;4026:12;;;4019:40;4079:12;;;;4114:15;;;;3872:1;3865:9;3836:303;;;-1:-1:-1;4156:3:1;;3322:843;-1:-1:-1;;;;;;;3322:843:1:o;5135:681::-;5306:2;5358:21;;;5428:13;;5331:18;;;5450:22;;;5277:4;;5306:2;5529:15;;;;5503:2;5488:18;;;5277:4;5572:218;5586:6;5583:1;5580:13;5572:218;;;5651:13;;5666:42;5647:62;5635:75;;5765:15;;;;5730:12;;;;5608:1;5601:9;5572:218;;;-1:-1:-1;5807:3:1;;5135:681;-1:-1:-1;;;;;;5135:681:1:o;5821:247::-;5880:6;5933:2;5921:9;5912:7;5908:23;5904:32;5901:52;;;5949:1;5946;5939:12;5901:52;5988:9;5975:23;6007:31;6032:5;6007:31;:::i;6327:829::-;6438:6;6446;6454;6462;6470;6478;6486;6539:3;6527:9;6518:7;6514:23;6510:33;6507:53;;;6556:1;6553;6546:12;6507:53;6595:9;6582:23;6614:31;6639:5;6614:31;:::i;:::-;6664:5;-1:-1:-1;6721:2:1;6706:18;;6693:32;6734:33;6693:32;6734:33;:::i;:::-;6786:7;-1:-1:-1;6840:2:1;6825:18;;6812:32;;-1:-1:-1;6891:2:1;6876:18;;6863:32;;-1:-1:-1;6947:3:1;6932:19;;6919:33;6996:4;6983:18;;6971:31;;6961:59;;7016:1;7013;7006:12;6961:59;6327:829;;;;-1:-1:-1;6327:829:1;;;;7039:7;7093:3;7078:19;;7065:33;;-1:-1:-1;7145:3:1;7130:19;;;7117:33;;6327:829;-1:-1:-1;;6327:829:1:o;7161:388::-;7229:6;7237;7290:2;7278:9;7269:7;7265:23;7261:32;7258:52;;;7306:1;7303;7296:12;7258:52;7345:9;7332:23;7364:31;7389:5;7364:31;:::i;:::-;7414:5;-1:-1:-1;7471:2:1;7456:18;;7443:32;7484:33;7443:32;7484:33;:::i;:::-;7536:7;7526:17;;;7161:388;;;;;:::o;7893:160::-;7958:20;;8014:13;;8007:21;7997:32;;7987:60;;8043:1;8040;8033:12;7987:60;7893:160;;;:::o;8058:184::-;8110:77;8107:1;8100:88;8207:4;8204:1;8197:15;8231:4;8228:1;8221:15;8247:1410;8364:6;8372;8380;8388;8396;8449:3;8437:9;8428:7;8424:23;8420:33;8417:53;;;8466:1;8463;8456:12;8417:53;8505:9;8492:23;8524:31;8549:5;8524:31;:::i;:::-;8574:5;-1:-1:-1;8631:2:1;8616:18;;8603:32;8644:33;8603:32;8644:33;:::i;:::-;8696:7;-1:-1:-1;8722:35:1;8753:2;8738:18;;8722:35;:::i;:::-;8712:45;;8804:2;8793:9;8789:18;8776:32;8766:42;;8859:3;8848:9;8844:19;8831:33;8883:18;8924:2;8916:6;8913:14;8910:34;;;8940:1;8937;8930:12;8910:34;8978:6;8967:9;8963:22;8953:32;;9023:7;9016:4;9012:2;9008:13;9004:27;8994:55;;9045:1;9042;9035:12;8994:55;9081:2;9068:16;9103:2;9099;9096:10;9093:36;;;9109:18;;:::i;:::-;9243:2;9237:9;9305:4;9297:13;;9148:66;9293:22;;;9317:2;9289:31;9285:40;9273:53;;;9341:18;;;9361:22;;;9338:46;9335:72;;;9387:18;;:::i;:::-;9427:10;9423:2;9416:22;9462:2;9454:6;9447:18;9502:7;9497:2;9492;9488;9484:11;9480:20;9477:33;9474:53;;;9523:1;9520;9513:12;9474:53;9579:2;9574;9570;9566:11;9561:2;9553:6;9549:15;9536:46;9624:1;9619:2;9614;9606:6;9602:15;9598:24;9591:35;9645:6;9635:16;;;;;;;8247:1410;;;;;;;;:::o;10138:437::-;10217:1;10213:12;;;;10260;;;10281:61;;10335:4;10327:6;10323:17;10313:27;;10281:61;10388:2;10380:6;10377:14;10357:18;10354:38;10351:218;;;10425:77;10422:1;10415:88;10526:4;10523:1;10516:15;10554:4;10551:1;10544:15;10580:184;10632:77;10629:1;10622:88;10729:4;10726:1;10719:15;10753:4;10750:1;10743:15;10769:125;10809:4;10837:1;10834;10831:8;10828:34;;;10842:18;;:::i;:::-;-1:-1:-1;10879:9:1;;10769:125::o;10899:323::-;10972:6;10980;11033:2;11021:9;11012:7;11008:23;11004:32;11001:52;;;11049:1;11046;11039:12;11001:52;11088:9;11075:23;11107:31;11132:5;11107:31;:::i;:::-;11157:5;-1:-1:-1;11181:35:1;11212:2;11197:18;;11181:35;:::i;:::-;11171:45;;10899:323;;;;;:::o;11227:228::-;11267:7;11393:1;11325:66;11321:74;11318:1;11315:81;11310:1;11303:9;11296:17;11292:105;11289:131;;;11400:18;;:::i;:::-;-1:-1:-1;11440:9:1;;11227:228::o;11460:184::-;11512:77;11509:1;11502:88;11609:4;11606:1;11599:15;11633:4;11630:1;11623:15;11649:274;11689:1;11715;11705:189;;11750:77;11747:1;11740:88;11851:4;11848:1;11841:15;11879:4;11876:1;11869:15;11705:189;-1:-1:-1;11908:9:1;;11649:274::o;11928:184::-;11980:77;11977:1;11970:88;12077:4;12074:1;12067:15;12101:4;12098:1;12091:15;12445:472;12535:6;12543;12551;12604:2;12592:9;12583:7;12579:23;12575:32;12572:52;;;12620:1;12617;12610:12;12572:52;12659:9;12646:23;12678:31;12703:5;12678:31;:::i;:::-;12728:5;-1:-1:-1;12785:2:1;12770:18;;12757:32;12798:33;12757:32;12798:33;:::i;:::-;12850:7;-1:-1:-1;12876:35:1;12907:2;12892:18;;12876:35;:::i;:::-;12866:45;;12445:472;;;;;:::o;13342:184::-;13412:6;13465:2;13453:9;13444:7;13440:23;13436:32;13433:52;;;13481:1;13478;13471:12;13433:52;-1:-1:-1;13504:16:1;;13342:184;-1:-1:-1;13342:184:1:o;13791:249::-;13831:3;13859:30;13916:2;13913:1;13909:10;13946:2;13943:1;13939:10;13977:3;13973:2;13969:12;13964:3;13961:21;13958:47;;;13985:18;;:::i;:::-;14021:13;;13791:249;-1:-1:-1;;;;13791:249:1:o;16211:128::-;16251:3;16282:1;16278:6;16275:1;16272:13;16269:39;;;16288:18;;:::i;:::-;-1:-1:-1;16324:9:1;;16211:128::o;16908:245::-;16987:6;16995;17048:2;17036:9;17027:7;17023:23;17019:32;17016:52;;;17064:1;17061;17054:12;17016:52;-1:-1:-1;;17087:16:1;;17143:2;17128:18;;;17122:25;17087:16;;17122:25;;-1:-1:-1;16908:245:1:o;18103:1219::-;18233:3;18262:1;18295:6;18289:13;18325:3;18347:1;18375:9;18371:2;18367:18;18357:28;;18435:2;18424:9;18420:18;18457;18447:61;;18501:4;18493:6;18489:17;18479:27;;18447:61;18527:2;18575;18567:6;18564:14;18544:18;18541:38;18538:222;;;18614:77;18609:3;18602:90;18715:4;18712:1;18705:15;18745:4;18740:3;18733:17;18538:222;18776:18;18803:162;;;;18979:1;18974:323;;;;18769:528;;18803:162;18851:66;18840:9;18836:82;18831:3;18824:95;18948:6;18943:3;18939:16;18932:23;;18803:162;;18974:323;18050:1;18043:14;;;18087:4;18074:18;;19072:1;19086:165;19100:6;19097:1;19094:13;19086:165;;;19178:14;;19165:11;;;19158:35;19221:16;;;;19115:10;;19086:165;;;19090:3;;19280:6;19275:3;19271:16;19264:23;;18769:528;-1:-1:-1;19313:3:1;;18103:1219;-1:-1:-1;;;;;;;;18103:1219:1:o

Swarm Source

ipfs://23b1b16732d5efbbde4fe9c09ad57bc5e282ee9d8115186daf2a0c35f79fae82

Block Transaction Difficulty Gas Used Reward
View All Blocks Produced

Block Uncle Number Difficulty Gas Used Reward
View All Uncles
Loading...
Loading
Loading...
Loading

Validator Index Block Amount
View All Withdrawals

Txn Hash Block Value Eth2 PubKey Valid
View All Deposits
[ Download: CSV Export  ]

A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.