ETH Price: $1,886.33 (-0.05%)
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Set Fee To Sette...130562862021-08-19 14:38:381301 days ago1629383918IN
0x35880872...B3b8865b0
0 ETH0.0013566150.28801257
Set Fee To130499782021-08-18 15:14:261302 days ago1629299666IN
0x35880872...B3b8865b0
0 ETH0.0013650247
Set Fee To130499702021-08-18 15:13:291302 days ago1629299609IN
0x35880872...B3b8865b0
0 ETH0.0021687247

Latest 1 internal transaction

Advanced mode:
Parent Transaction Hash Method Block
From
To
-129614582021-08-04 23:00:341316 days ago1628118034
0x35880872...B3b8865b0
 Contract Creation0 ETH
Loading...
Loading

Contract Source Code Verified (Exact Match)

Contract Name:
LessSwapFactory

Compiler Version
v0.6.12+commit.27d51765

Optimization Enabled:
Yes with 50 runs

Other Settings:
default evmVersion
File 1 of 9 : LessSwapFactory.sol
// SPDX-License-Identifier: GPL-3.0

pragma solidity ^0.6.12;

import "./interfaces/ILessSwapFactory.sol";
import "./LessSwapPair.sol";

contract LessSwapFactory is ILessSwapFactory {
    address public override feeTo;
    address public override feeToSetter;
    address public override migrator;

    mapping(address => mapping(address => address)) public override getPair;
    address[] public override allPairs;

    event PairCreated(
        address indexed token0,
        address indexed token1,
        address pair,
        uint256
    );

    constructor(address _feeToSetter) public {
        feeToSetter = _feeToSetter;
    }

    function allPairsLength() external view override returns (uint256) {
        return allPairs.length;
    }

    function pairCodeHash() external pure returns (bytes32) {
        return keccak256(type(LessSwapPair).creationCode);
    }

    function createPair(address tokenA, address tokenB)
        external
        override
        returns (address pair)
    {
        require(tokenA != tokenB, "LessSwap: IDENTICAL_ADDRESSES");
        (address token0, address token1) = tokenA < tokenB
            ? (tokenA, tokenB)
            : (tokenB, tokenA);
        require(token0 != address(0), "LessSwap: ZERO_ADDRESS");
        require(getPair[token0][token1] == address(0), "LessSwap: PAIR_EXISTS"); // single check is sufficient
        bytes memory bytecode = type(LessSwapPair).creationCode;
        bytes32 salt = keccak256(abi.encodePacked(token0, token1));
        assembly {
            pair := create2(0, add(bytecode, 32), mload(bytecode), salt)
        }
        LessSwapPair(pair).initialize(token0, token1);
        getPair[token0][token1] = pair;
        getPair[token1][token0] = pair; // populate mapping in the reverse direction
        allPairs.push(pair);
        emit PairCreated(token0, token1, pair, allPairs.length);
    }

    function setFeeTo(address _feeTo) external override {
        require(msg.sender == feeToSetter, "LessSwap: FORBIDDEN");
        feeTo = _feeTo;
    }

    function setMigrator(address _migrator) external override {
        require(msg.sender == feeToSetter, "LessSwap: FORBIDDEN");
        migrator = _migrator;
    }

    function setFeeToSetter(address _feeToSetter) external override {
        require(msg.sender == feeToSetter, "LessSwap: FORBIDDEN");
        feeToSetter = _feeToSetter;
    }
}

File 2 of 9 : LessSwapERC20.sol
// SPDX-License-Identifier: GPL-3.0

pragma solidity ^0.6.12;

import "./libraries/SafeMath.sol";

contract LessSwapERC20 {
    using SafeMath for uint256;

    string public constant name = "LessSwap LP Token";
    string public constant symbol = "LSP-V1";
    uint8 public constant decimals = 18;
    uint256 public totalSupply;
    mapping(address => uint256) public balanceOf;
    mapping(address => mapping(address => uint256)) public allowance;

    bytes32 public DOMAIN_SEPARATOR;
    // keccak256("Permit(address owner,address spender,uint256 value,uint256 nonce,uint256 deadline)");
    bytes32 public constant PERMIT_TYPEHASH =
        0x6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c9;
    mapping(address => uint256) public nonces;

    event Approval(
        address indexed owner,
        address indexed spender,
        uint256 value
    );
    event Transfer(address indexed from, address indexed to, uint256 value);

    constructor() public {
        uint256 chainId;
        assembly {
            chainId := chainid()
        }
        DOMAIN_SEPARATOR = keccak256(
            abi.encode(
                keccak256(
                    "EIP712Domain(string name,string version,uint256 chainId,address verifyingContract)"
                ),
                keccak256(bytes(name)),
                keccak256(bytes("1")),
                chainId,
                address(this)
            )
        );
    }

    function _mint(address to, uint256 value) internal {
        totalSupply = totalSupply.add(value);
        balanceOf[to] = balanceOf[to].add(value);
        emit Transfer(address(0), to, value);
    }

    function _burn(address from, uint256 value) internal {
        balanceOf[from] = balanceOf[from].sub(value);
        totalSupply = totalSupply.sub(value);
        emit Transfer(from, address(0), value);
    }

    function _approve(
        address owner,
        address spender,
        uint256 value
    ) private {
        allowance[owner][spender] = value;
        emit Approval(owner, spender, value);
    }

    function _transfer(
        address from,
        address to,
        uint256 value
    ) private {
        balanceOf[from] = balanceOf[from].sub(value);
        balanceOf[to] = balanceOf[to].add(value);
        emit Transfer(from, to, value);
    }

    function approve(address spender, uint256 value) external returns (bool) {
        _approve(msg.sender, spender, value);
        return true;
    }

    function transfer(address to, uint256 value) external returns (bool) {
        _transfer(msg.sender, to, value);
        return true;
    }

    function transferFrom(
        address from,
        address to,
        uint256 value
    ) external returns (bool) {
        if (allowance[from][msg.sender] != uint256(-1)) {
            allowance[from][msg.sender] = allowance[from][msg.sender].sub(
                value
            );
        }
        _transfer(from, to, value);
        return true;
    }

    function permit(
        address owner,
        address spender,
        uint256 value,
        uint256 deadline,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) external {
        require(deadline >= block.timestamp, "LessSwap: EXPIRED");
        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,
            "LessSwap: INVALID_SIGNATURE"
        );
        _approve(owner, spender, value);
    }
}

File 3 of 9 : LessSwapPair.sol
// SPDX-License-Identifier: GPL-3.0

pragma solidity ^0.6.12;

import "./LessSwapERC20.sol";
import "./libraries/Math.sol";
import "./libraries/UQ112x112.sol";
import "./interfaces/IERC20.sol";
import "./interfaces/ILessSwapFactory.sol";
import "./interfaces/ILessSwapCallee.sol";

interface IMigrator {
    // Return the desired amount of liquidity token that the migrator wants.
    function desiredLiquidity() external view returns (uint256);
}

contract LessSwapPair is LessSwapERC20 {
    using SafeMath for uint256;
    using UQ112x112 for uint224;

    uint256 public constant MINIMUM_LIQUIDITY = 10**3;
    bytes4 private constant SELECTOR =
        bytes4(keccak256(bytes("transfer(address,uint256)")));

    address public factory;
    address public token0;
    address public token1;

    uint112 private reserve0; // uses single storage slot, accessible via getReserves
    uint112 private reserve1; // uses single storage slot, accessible via getReserves
    uint32 private blockTimestampLast; // uses single storage slot, accessible via getReserves

    uint256 public price0CumulativeLast;
    uint256 public price1CumulativeLast;
    uint256 public kLast; // reserve0 * reserve1, as of immediately after the most recent liquidity event

    uint256 private unlocked = 1;
    modifier lock() {
        require(unlocked == 1, "LessSwap: LOCKED");
        unlocked = 0;
        _;
        unlocked = 1;
    }

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

    function _safeTransfer(
        address token,
        address to,
        uint256 value
    ) private {
        (bool success, bytes memory data) = token.call(
            abi.encodeWithSelector(SELECTOR, to, value)
        );
        require(
            success && (data.length == 0 || abi.decode(data, (bool))),
            "LessSwap: TRANSFER_FAILED"
        );
    }

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

    constructor() public {
        factory = msg.sender;
    }

    // called once by the factory at time of deployment
    function initialize(address _token0, address _token1) external {
        require(msg.sender == factory, "LessSwap: FORBIDDEN"); // sufficient check
        token0 = _token0;
        token1 = _token1;
    }

    // update reserves and, on the first call per block, price accumulators
    function _update(
        uint256 balance0,
        uint256 balance1,
        uint112 _reserve0,
        uint112 _reserve1
    ) private {
        require(
            balance0 <= uint112(-1) && balance1 <= uint112(-1),
            "LessSwap: OVERFLOW"
        );
        uint32 blockTimestamp = uint32(block.timestamp % 2**32);
        uint32 timeElapsed = blockTimestamp - blockTimestampLast; // overflow is desired
        if (timeElapsed > 0 && _reserve0 != 0 && _reserve1 != 0) {
            // * never overflows, and + overflow is desired
            price0CumulativeLast +=
                uint256(UQ112x112.encode(_reserve1).uqdiv(_reserve0)) *
                timeElapsed;
            price1CumulativeLast +=
                uint256(UQ112x112.encode(_reserve0).uqdiv(_reserve1)) *
                timeElapsed;
        }
        reserve0 = uint112(balance0);
        reserve1 = uint112(balance1);
        blockTimestampLast = blockTimestamp;
        emit Sync(reserve0, reserve1);
    }

    // if fee is on, mint liquidity equivalent to 1/6th of the growth in sqrt(k)
    function _mintFee(uint112 _reserve0, uint112 _reserve1)
        private
        returns (bool feeOn)
    {
        address feeTo = ILessSwapFactory(factory).feeTo();
        feeOn = feeTo != address(0);
        uint256 _kLast = kLast; // gas savings
        if (feeOn) {
            if (_kLast != 0) {
                uint256 rootK = Math.sqrt(uint256(_reserve0).mul(_reserve1));
                uint256 rootKLast = Math.sqrt(_kLast);
                if (rootK > rootKLast) {
                    uint256 numerator = totalSupply.mul(rootK.sub(rootKLast));
                    uint256 denominator = rootK.mul(5).add(rootKLast);
                    uint256 liquidity = numerator / denominator;
                    if (liquidity > 0) _mint(feeTo, liquidity);
                }
            }
        } else if (_kLast != 0) {
            kLast = 0;
        }
    }

    // this low-level function should be called from a contract which performs important safety checks
    function mint(address to) external lock returns (uint256 liquidity) {
        (uint112 _reserve0, uint112 _reserve1, ) = getReserves(); // gas savings
        uint256 balance0 = IERC20(token0).balanceOf(address(this));
        uint256 balance1 = IERC20(token1).balanceOf(address(this));
        uint256 amount0 = balance0.sub(_reserve0);
        uint256 amount1 = balance1.sub(_reserve1);

        bool feeOn = _mintFee(_reserve0, _reserve1);
        uint256 _totalSupply = totalSupply; // gas savings, must be defined here since totalSupply can update in _mintFee
        if (_totalSupply == 0) {
            address migrator = ILessSwapFactory(factory).migrator();
            if (msg.sender == migrator) {
                liquidity = IMigrator(migrator).desiredLiquidity();
                require(
                    liquidity > 0 && liquidity != uint256(-1),
                    "Bad desired liquidity"
                );
            } else {
                require(migrator == address(0), "Must not have migrator");
                liquidity = Math.sqrt(amount0.mul(amount1)).sub(
                    MINIMUM_LIQUIDITY
                );
                _mint(address(0), MINIMUM_LIQUIDITY); // permanently lock the first MINIMUM_LIQUIDITY tokens
            }
        } else {
            liquidity = Math.min(
                amount0.mul(_totalSupply) / _reserve0,
                amount1.mul(_totalSupply) / _reserve1
            );
        }
        require(liquidity > 0, "LessSwap: INSUFFICIENT_LIQUIDITY_MINTED");
        _mint(to, liquidity);

        _update(balance0, balance1, _reserve0, _reserve1);
        if (feeOn) kLast = uint256(reserve0).mul(reserve1); // reserve0 and reserve1 are up-to-date
        emit Mint(msg.sender, amount0, amount1);
    }

    // this low-level function should be called from a contract which performs important safety checks
    function burn(address to)
        external
        lock
        returns (uint256 amount0, uint256 amount1)
    {
        (uint112 _reserve0, uint112 _reserve1, ) = getReserves(); // gas savings
        address _token0 = token0; // gas savings
        address _token1 = token1; // gas savings
        uint256 balance0 = IERC20(_token0).balanceOf(address(this));
        uint256 balance1 = IERC20(_token1).balanceOf(address(this));
        uint256 liquidity = balanceOf[address(this)];

        bool feeOn = _mintFee(_reserve0, _reserve1);
        uint256 _totalSupply = totalSupply; // gas savings, must be defined here since totalSupply can update in _mintFee
        amount0 = liquidity.mul(balance0) / _totalSupply; // using balances ensures pro-rata distribution
        amount1 = liquidity.mul(balance1) / _totalSupply; // using balances ensures pro-rata distribution
        require(
            amount0 > 0 && amount1 > 0,
            "LessSwap: INSUFFICIENT_LIQUIDITY_BURNED"
        );
        _burn(address(this), liquidity);
        _safeTransfer(_token0, to, amount0);
        _safeTransfer(_token1, to, amount1);
        balance0 = IERC20(_token0).balanceOf(address(this));
        balance1 = IERC20(_token1).balanceOf(address(this));

        _update(balance0, balance1, _reserve0, _reserve1);
        if (feeOn) kLast = uint256(reserve0).mul(reserve1); // reserve0 and reserve1 are up-to-date
        emit Burn(msg.sender, amount0, amount1, to);
    }

    // this low-level function should be called from a contract which performs important safety checks
    function swap(
        uint256 amount0Out,
        uint256 amount1Out,
        address to,
        bytes calldata data
    ) external lock {
        require(
            amount0Out > 0 || amount1Out > 0,
            "LessSwap: INSUFFICIENT_OUTPUT_AMOUNT"
        );
        (uint112 _reserve0, uint112 _reserve1, ) = getReserves(); // gas savings
        require(
            amount0Out < _reserve0 && amount1Out < _reserve1,
            "LessSwap: INSUFFICIENT_LIQUIDITY"
        );

        uint256 balance0;
        uint256 balance1;
        {
            // scope for _token{0,1}, avoids stack too deep errors
            address _token0 = token0;
            address _token1 = token1;
            require(to != _token0 && to != _token1, "LessSwap: INVALID_TO");
            if (amount0Out > 0) _safeTransfer(_token0, to, amount0Out); // optimistically transfer tokens
            if (amount1Out > 0) _safeTransfer(_token1, to, amount1Out); // optimistically transfer tokens
            if (data.length > 0)
                ILessSwapCallee(to).uniswapV2Call(
                    msg.sender,
                    amount0Out,
                    amount1Out,
                    data
                );
            balance0 = IERC20(_token0).balanceOf(address(this));
            balance1 = IERC20(_token1).balanceOf(address(this));
        }
        uint256 amount0In = balance0 > _reserve0 - amount0Out
            ? balance0 - (_reserve0 - amount0Out)
            : 0;
        uint256 amount1In = balance1 > _reserve1 - amount1Out
            ? balance1 - (_reserve1 - amount1Out)
            : 0;
        require(
            amount0In > 0 || amount1In > 0,
            "LessSwap: INSUFFICIENT_INPUT_AMOUNT"
        );
        {
            // scope for reserve{0,1}Adjusted, avoids stack too deep errors
            uint256 balance0Adjusted = balance0.mul(1000).sub(amount0In.mul(3));
            uint256 balance1Adjusted = balance1.mul(1000).sub(amount1In.mul(3));
            require(
                balance0Adjusted.mul(balance1Adjusted) >=
                    uint256(_reserve0).mul(_reserve1).mul(1000**2),
                "LessSwap: K"
            );
        }

        _update(balance0, balance1, _reserve0, _reserve1);
        emit Swap(msg.sender, amount0In, amount1In, amount0Out, amount1Out, to);
    }

    // force balances to match reserves
    function skim(address to) external lock {
        address _token0 = token0; // gas savings
        address _token1 = token1; // gas savings
        _safeTransfer(
            _token0,
            to,
            IERC20(_token0).balanceOf(address(this)).sub(reserve0)
        );
        _safeTransfer(
            _token1,
            to,
            IERC20(_token1).balanceOf(address(this)).sub(reserve1)
        );
    }

    // force reserves to match balances
    function sync() external lock {
        _update(
            IERC20(token0).balanceOf(address(this)),
            IERC20(token1).balanceOf(address(this)),
            reserve0,
            reserve1
        );
    }
}

File 4 of 9 : IERC20.sol
// SPDX-License-Identifier: GPL-3.0

pragma solidity >=0.5.0;

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

    function name() external view returns (string memory);

    function symbol() external view returns (string memory);

    function decimals() external view returns (uint8);

    function totalSupply() external view returns (uint256);

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

    function allowance(address owner, address spender)
        external
        view
        returns (uint256);

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

    function transfer(address to, uint256 value) external returns (bool);

    function transferFrom(
        address from,
        address to,
        uint256 value
    ) external returns (bool);
}

File 5 of 9 : ILessSwapCallee.sol
// SPDX-License-Identifier: GPL-3.0

pragma solidity ^0.6.12;

interface ILessSwapCallee {
    function uniswapV2Call(
        address sender,
        uint256 amount0,
        uint256 amount1,
        bytes calldata data
    ) external;
}

File 6 of 9 : ILessSwapFactory.sol
// SPDX-License-Identifier: GPL-3.0

pragma solidity ^0.6.12;

interface ILessSwapFactory {
    event PairCreated(
        address indexed token0,
        address indexed token1,
        address pair,
        uint256
    );

    function feeTo() external view returns (address);

    function feeToSetter() external view returns (address);

    function migrator() external view returns (address);

    function getPair(address tokenA, address tokenB)
        external
        view
        returns (address pair);

    function allPairs(uint256) external view returns (address pair);

    function allPairsLength() external view returns (uint256);

    function createPair(address tokenA, address tokenB)
        external
        returns (address pair);

    function setFeeTo(address) external;

    function setFeeToSetter(address) external;

    function setMigrator(address) external;
}

File 7 of 9 : Math.sol
// SPDX-License-Identifier: GPL-3.0

pragma solidity ^0.6.12;

/**
 * @dev Standard math utilities missing in the Solidity language.
 */
library Math {
    /**
     * @dev Returns the largest of two numbers.
     */
    function max(uint256 a, uint256 b) internal pure returns (uint256) {
        return a >= b ? a : b;
    }

    /**
     * @dev Returns the smallest of two numbers.
     */
    function min(uint256 a, uint256 b) internal pure returns (uint256) {
        return a < b ? a : b;
    }

    /**
     * @dev Returns the average of two numbers. The result is rounded towards
     * zero.
     */
    function average(uint256 a, uint256 b) internal pure returns (uint256) {
        // (a + b) / 2 can overflow, so we distribute
        return (a / 2) + (b / 2) + (((a % 2) + (b % 2)) / 2);
    }

    function sqrt(uint256 y) internal pure returns (uint256 z) {
        if (y > 3) {
            z = y;
            uint256 x = y / 2 + 1;
            while (x < z) {
                z = x;
                x = (y / x + x) / 2;
            }
        } else if (y != 0) {
            z = 1;
        }
    }
}

File 8 of 9 : SafeMath.sol
// SPDX-License-Identifier: GPL-3.0

pragma solidity ^0.6.12;

// File: @openzeppelin/contracts/math/SafeMath.sol

/**
 * @dev Wrappers over Solidity's arithmetic operations with added overflow
 * checks.
 *
 * Arithmetic operations in Solidity wrap on overflow. This can easily result
 * in bugs, because programmers usually assume that an overflow raises an
 * error, which is the standard behavior in high level programming languages.
 * `SafeMath` restores this intuition by reverting the transaction when an
 * operation overflows.
 *
 * Using this library instead of the unchecked operations eliminates an entire
 * class of bugs, so it's recommended to use it always.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     *
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        uint256 c = a + b;
        require(c >= a, "SafeMath: addition overflow");

        return c;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return sub(a, b, "SafeMath: subtraction overflow");
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        require(b <= a, errorMessage);
        uint256 c = a - b;

        return c;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
        // benefit is lost if 'b' is also tested.
        // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
        if (a == 0) {
            return 0;
        }

        uint256 c = a * b;
        require(c / a == b, "SafeMath: multiplication overflow");

        return c;
    }

    /**
     * @dev Returns the integer division of two unsigned integers. Reverts on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return div(a, b, "SafeMath: division by zero");
    }

    /**
     * @dev Returns the integer division of two unsigned integers. Reverts with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        require(b > 0, errorMessage);
        uint256 c = a / b;
        // assert(a == b * c + a % b); // There is no case in which this doesn't hold

        return c;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * Reverts when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        return mod(a, b, "SafeMath: modulo by zero");
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * Reverts with custom message when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        require(b != 0, errorMessage);
        return a % b;
    }
}

File 9 of 9 : UQ112x112.sol
// SPDX-License-Identifier: GPL-3.0

pragma solidity ^0.6.12;

// a library for handling binary fixed point numbers (https://en.wikipedia.org/wiki/Q_(number_format))

// range: [0, 2**112 - 1]
// resolution: 1 / 2**112

library UQ112x112 {
    uint224 constant Q112 = 2**112;

    // encode a uint112 as a UQ112x112
    function encode(uint112 y) internal pure returns (uint224 z) {
        z = uint224(y) * Q112; // never overflows
    }

    // divide a UQ112x112 by a uint112, returning a UQ112x112
    function uqdiv(uint224 x, uint112 y) internal pure returns (uint224 z) {
        z = x / uint224(y);
    }
}

Settings
{
  "remappings": [],
  "optimizer": {
    "enabled": true,
    "runs": 50
  },
  "evmVersion": "istanbul",
  "libraries": {},
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "abi"
      ]
    }
  }
}

Contract Security Audit

Contract ABI

API
[{"inputs":[{"internalType":"address","name":"_feeToSetter","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"token0","type":"address"},{"indexed":true,"internalType":"address","name":"token1","type":"address"},{"indexed":false,"internalType":"address","name":"pair","type":"address"},{"indexed":false,"internalType":"uint256","name":"","type":"uint256"}],"name":"PairCreated","type":"event"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"allPairs","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"allPairsLength","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"tokenA","type":"address"},{"internalType":"address","name":"tokenB","type":"address"}],"name":"createPair","outputs":[{"internalType":"address","name":"pair","type":"address"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"feeTo","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"feeToSetter","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"address","name":"","type":"address"}],"name":"getPair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"migrator","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pairCodeHash","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"address","name":"_feeTo","type":"address"}],"name":"setFeeTo","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_feeToSetter","type":"address"}],"name":"setFeeToSetter","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_migrator","type":"address"}],"name":"setMigrator","outputs":[],"stateMutability":"nonpayable","type":"function"}]

608060405234801561001057600080fd5b50604051612c5e380380612c5e8339818101604052602081101561003357600080fd5b5051600180546001600160a01b0319166001600160a01b03909216919091179055612bfb806100636000396000f3fe608060405234801561001057600080fd5b50600436106100995760003560e01c8063017e7e581461009e578063094b7415146100c25780631e3dd18b146100ca57806323cf3118146100e7578063574f2ba31461010f5780637cd07e47146101295780639aab924814610131578063a2e74af614610139578063c9c653961461015f578063e6a439051461018d578063f46901ed146101bb575b600080fd5b6100a66101e1565b604080516001600160a01b039092168252519081900360200190f35b6100a66101f0565b6100a6600480360360208110156100e057600080fd5b50356101ff565b61010d600480360360208110156100fd57600080fd5b50356001600160a01b0316610226565b005b61011761029d565b60408051918252519081900360200190f35b6100a66102a3565b6101176102b2565b61010d6004803603602081101561014f57600080fd5b50356001600160a01b03166102e4565b6100a66004803603604081101561017557600080fd5b506001600160a01b038135811691602001351661035b565b6100a6600480360360408110156101a357600080fd5b506001600160a01b038135811691602001351661067e565b61010d600480360360208110156101d157600080fd5b50356001600160a01b03166106a4565b6000546001600160a01b031681565b6001546001600160a01b031681565b6004818154811061020c57fe5b6000918252602090912001546001600160a01b0316905081565b6001546001600160a01b0316331461027b576040805162461bcd60e51b81526020600482015260136024820152722632b9b9a9bbb0b81d102327a92124a22222a760691b604482015290519081900360640190fd5b600280546001600160a01b0319166001600160a01b0392909216919091179055565b60045490565b6002546001600160a01b031681565b6000604051806020016102c49061071b565b6020820181038252601f19601f8201166040525080519060200120905090565b6001546001600160a01b03163314610339576040805162461bcd60e51b81526020600482015260136024820152722632b9b9a9bbb0b81d102327a92124a22222a760691b604482015290519081900360640190fd5b600180546001600160a01b0319166001600160a01b0392909216919091179055565b6000816001600160a01b0316836001600160a01b031614156103c4576040805162461bcd60e51b815260206004820152601d60248201527f4c657373537761703a204944454e544943414c5f414444524553534553000000604482015290519081900360640190fd5b600080836001600160a01b0316856001600160a01b0316106103e75783856103ea565b84845b90925090506001600160a01b038216610443576040805162461bcd60e51b81526020600482015260166024820152754c657373537761703a205a45524f5f4144445245535360501b604482015290519081900360640190fd5b6001600160a01b038281166000908152600360209081526040808320858516845290915290205416156104b5576040805162461bcd60e51b81526020600482015260156024820152744c657373537761703a20504149525f45584953545360581b604482015290519081900360640190fd5b6060604051806020016104c79061071b565b6020820181038252601f19601f8201166040525090506000838360405160200180836001600160a01b031660601b8152601401826001600160a01b031660601b815260140192505050604051602081830303815290604052805190602001209050808251602084016000f59450846001600160a01b031663485cc95585856040518363ffffffff1660e01b815260040180836001600160a01b03168152602001826001600160a01b0316815260200192505050600060405180830381600087803b15801561059457600080fd5b505af11580156105a8573d6000803e3d6000fd5b505050506001600160a01b0384811660008181526003602081815260408084208987168086529083528185208054978d166001600160a01b031998891681179091559383528185208686528352818520805488168517905560048054600181018255958190527f8a35acfbc15ff81a39ae7d344fd709f28e8600b4aa8c65c6b64bfe7fe36bd19b90950180549097168417909655925483519283529082015281517f0d3648bd0f6ba80134a33ba9275ac585d9d315f0ad8355cddefde31afa28d0e9929181900390910190a35050505092915050565b60036020908152600092835260408084209091529082529020546001600160a01b031681565b6001546001600160a01b031633146106f9576040805162461bcd60e51b81526020600482015260136024820152722632b9b9a9bbb0b81d102327a92124a22222a760691b604482015290519081900360640190fd5b600080546001600160a01b0319166001600160a01b0392909216919091179055565b61249d806107298339019056fe60806040526001600c5534801561001557600080fd5b5060408051808201825260118152702632b9b9a9bbb0b8102628102a37b5b2b760791b6020918201528151808301835260018152603160f81b9082015281517f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f818301527fdd0da10e224499740cda2cf1d0281e8e7e42e547b50ea50adedd22aecd9f85ea818401527fc89efdaa54c0f20c7adf612882df0950f5a951637e0307cdcb4c672f298b8bc660608201524660808201523060a0808301919091528351808303909101815260c09091019092528151910120600355600580546001600160a01b0319163317905561238e8061010f6000396000f3fe608060405234801561001057600080fd5b50600436106101595760003560e01c80636a627842116100c95780636a627842146103bf57806370a08231146103e55780637464fc3d1461040b5780637ecebe001461041357806389afcb441461043957806395d89b4114610478578063a9059cbb14610480578063ba9a7a56146104ac578063bc25cf77146104b4578063c45a0155146104da578063d21220a7146104e2578063d505accf146104ea578063dd62ed3e1461053b578063fff6cae91461056957610159565b8063022c0d9f1461015e57806306fdde03146101ea5780630902f1ac14610267578063095ea7b31461029f5780630dfe1681146102df57806318160ddd1461030357806323b872dd1461031d57806330adf81f14610353578063313ce5671461035b5780633644e51514610379578063485cc955146103815780635909c0d5146103af5780635a3d5493146103b7575b600080fd5b6101e86004803603608081101561017457600080fd5b8135916020810135916001600160a01b036040830135169190810190608081016060820135600160201b8111156101aa57600080fd5b8201836020820111156101bc57600080fd5b803590602001918460018302840111600160201b831117156101dd57600080fd5b509092509050610571565b005b6101f2610a8c565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561022c578181015183820152602001610214565b50505050905090810190601f1680156102595780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b61026f610ab9565b604080516001600160701b03948516815292909316602083015263ffffffff168183015290519081900360600190f35b6102cb600480360360408110156102b557600080fd5b506001600160a01b038135169060200135610ae3565b604080519115158252519081900360200190f35b6102e7610afa565b604080516001600160a01b039092168252519081900360200190f35b61030b610b09565b60408051918252519081900360200190f35b6102cb6004803603606081101561033357600080fd5b506001600160a01b03813581169160208101359091169060400135610b0f565b61030b610ba3565b610363610bc7565b6040805160ff9092168252519081900360200190f35b61030b610bcc565b6101e86004803603604081101561039757600080fd5b506001600160a01b0381358116916020013516610bd2565b61030b610c55565b61030b610c5b565b61030b600480360360208110156103d557600080fd5b50356001600160a01b0316610c61565b61030b600480360360208110156103fb57600080fd5b50356001600160a01b03166110dc565b61030b6110ee565b61030b6004803603602081101561042957600080fd5b50356001600160a01b03166110f4565b61045f6004803603602081101561044f57600080fd5b50356001600160a01b0316611106565b6040805192835260208301919091528051918290030190f35b6101f2611499565b6102cb6004803603604081101561049657600080fd5b506001600160a01b0381351690602001356114bb565b61030b6114c8565b6101e8600480360360208110156104ca57600080fd5b50356001600160a01b03166114ce565b6102e761163f565b6102e761164e565b6101e8600480360360e081101561050057600080fd5b506001600160a01b03813581169160208101359091169060408101359060608101359060ff6080820135169060a08101359060c0013561165d565b61030b6004803603604081101561055157600080fd5b506001600160a01b038135811691602001351661185c565b6101e8611879565b600c546001146105bb576040805162461bcd60e51b815260206004820152601060248201526f13195cdcd4ddd85c0e881313d0d2d15160821b604482015290519081900360640190fd5b6000600c55841515806105ce5750600084115b6106095760405162461bcd60e51b815260040180806020018281038252602481526020018061230e6024913960400191505060405180910390fd5b600080610614610ab9565b5091509150816001600160701b0316871080156106395750806001600160701b031686105b61068a576040805162461bcd60e51b815260206004820181905260248201527f4c657373537761703a20494e53554646494349454e545f4c4951554944495459604482015290519081900360640190fd5b60065460075460009182916001600160a01b039182169190811690891682148015906106c85750806001600160a01b0316896001600160a01b031614155b610710576040805162461bcd60e51b81526020600482015260146024820152734c657373537761703a20494e56414c49445f544f60601b604482015290519081900360640190fd5b8a1561072157610721828a8d6119da565b891561073257610732818a8c6119da565b86156107e457886001600160a01b03166310d1e85c338d8d8c8c6040518663ffffffff1660e01b815260040180866001600160a01b03168152602001858152602001848152602001806020018281038252848482818152602001925080828437600081840152601f19601f8201169050808301925050509650505050505050600060405180830381600087803b1580156107cb57600080fd5b505af11580156107df573d6000803e3d6000fd5b505050505b604080516370a0823160e01b815230600482015290516001600160a01b038416916370a08231916024808301926020929190829003018186803b15801561082a57600080fd5b505afa15801561083e573d6000803e3d6000fd5b505050506040513d602081101561085457600080fd5b5051604080516370a0823160e01b815230600482015290519195506001600160a01b038316916370a0823191602480820192602092909190829003018186803b1580156108a057600080fd5b505afa1580156108b4573d6000803e3d6000fd5b505050506040513d60208110156108ca57600080fd5b5051925060009150506001600160701b0385168a900383116108ed5760006108fc565b89856001600160701b03160383035b9050600089856001600160701b0316038311610919576000610928565b89856001600160701b03160383035b905060008211806109395750600081115b6109745760405162461bcd60e51b81526004018080602001828103825260238152602001806122eb6023913960400191505060405180910390fd5b6000610996610984846003611b6c565b610990876103e8611b6c565b90611bcc565b905060006109a8610984846003611b6c565b90506109cd620f42406109c76001600160701b038b8116908b16611b6c565b90611b6c565b6109d78383611b6c565b1015610a18576040805162461bcd60e51b815260206004820152600b60248201526a4c657373537761703a204b60a81b604482015290519081900360640190fd5b5050610a2684848888611c0e565b60408051838152602081018390528082018d9052606081018c905290516001600160a01b038b169133917fd78ad95fa46c994b6551d0da85fc275fe613ce37657fb8d5e3d130840159d8229181900360800190a350506001600c55505050505050505050565b604051806040016040528060118152602001702632b9b9a9bbb0b8102628102a37b5b2b760791b81525081565b6008546001600160701b0380821692600160701b830490911691600160e01b900463ffffffff1690565b6000610af0338484611dbe565b5060015b92915050565b6006546001600160a01b031681565b60005481565b6001600160a01b038316600090815260026020908152604080832033845290915281205460001914610b8e576001600160a01b0384166000908152600260209081526040808320338452909152902054610b699083611bcc565b6001600160a01b03851660009081526002602090815260408083203384529091529020555b610b99848484611e20565b5060019392505050565b7f6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c981565b601281565b60035481565b6005546001600160a01b03163314610c27576040805162461bcd60e51b81526020600482015260136024820152722632b9b9a9bbb0b81d102327a92124a22222a760691b604482015290519081900360640190fd5b600680546001600160a01b039384166001600160a01b03199182161790915560078054929093169116179055565b60095481565b600a5481565b6000600c54600114610cad576040805162461bcd60e51b815260206004820152601060248201526f13195cdcd4ddd85c0e881313d0d2d15160821b604482015290519081900360640190fd5b6000600c81905580610cbd610ab9565b50600654604080516370a0823160e01b815230600482015290519395509193506000926001600160a01b03909116916370a08231916024808301926020929190829003018186803b158015610d1157600080fd5b505afa158015610d25573d6000803e3d6000fd5b505050506040513d6020811015610d3b57600080fd5b5051600754604080516370a0823160e01b815230600482015290519293506000926001600160a01b03909216916370a0823191602480820192602092909190829003018186803b158015610d8e57600080fd5b505afa158015610da2573d6000803e3d6000fd5b505050506040513d6020811015610db857600080fd5b505190506000610dd1836001600160701b038716611bcc565b90506000610de8836001600160701b038716611bcc565b90506000610df68787611ebc565b60005490915080610fcd5760055460408051637cd07e4760e01b815290516000926001600160a01b031691637cd07e47916004808301926020929190829003018186803b158015610e4657600080fd5b505afa158015610e5a573d6000803e3d6000fd5b505050506040513d6020811015610e7057600080fd5b50519050336001600160a01b0382161415610f4b57806001600160a01b03166340dc0e376040518163ffffffff1660e01b815260040160206040518083038186803b158015610ebe57600080fd5b505afa158015610ed2573d6000803e3d6000fd5b505050506040513d6020811015610ee857600080fd5b505199508915801590610efd57506000198a14155b610f46576040805162461bcd60e51b81526020600482015260156024820152744261642064657369726564206c697175696469747960581b604482015290519081900360640190fd5b610fc7565b6001600160a01b03811615610fa0576040805162461bcd60e51b815260206004820152601660248201527526bab9ba103737ba103430bb329036b4b3b930ba37b960511b604482015290519081900360640190fd5b610fb86103e8610990610fb38888611b6c565b611ffc565b9950610fc760006103e861204e565b50611010565b61100d6001600160701b038916610fe48684611b6c565b81610feb57fe5b046001600160701b0389166110008685611b6c565b8161100757fe5b046120c6565b98505b6000891161104f5760405162461bcd60e51b81526004018080602001828103825260278152602001806123326027913960400191505060405180910390fd5b6110598a8a61204e565b61106586868a8a611c0e565b811561108f5760085461108b906001600160701b0380821691600160701b900416611b6c565b600b555b6040805185815260208101859052815133927f4c209b5fc8ad50758f13e2e1088ba56a560dff690a1c6fef26394f4c03821c4f928290030190a250506001600c5550949695505050505050565b60016020526000908152604090205481565b600b5481565b60046020526000908152604090205481565b600080600c54600114611153576040805162461bcd60e51b815260206004820152601060248201526f13195cdcd4ddd85c0e881313d0d2d15160821b604482015290519081900360640190fd5b6000600c81905580611163610ab9565b50600654600754604080516370a0823160e01b815230600482015290519496509294506001600160a01b039182169391169160009184916370a08231916024808301926020929190829003018186803b1580156111bf57600080fd5b505afa1580156111d3573d6000803e3d6000fd5b505050506040513d60208110156111e957600080fd5b5051604080516370a0823160e01b815230600482015290519192506000916001600160a01b038516916370a08231916024808301926020929190829003018186803b15801561123757600080fd5b505afa15801561124b573d6000803e3d6000fd5b505050506040513d602081101561126157600080fd5b5051306000908152600160205260408120549192506112808888611ebc565b600054909150806112918487611b6c565b8161129857fe5b049a50806112a68486611b6c565b816112ad57fe5b04995060008b1180156112c0575060008a115b6112fb5760405162461bcd60e51b81526004018080602001828103825260278152602001806122a46027913960400191505060405180910390fd5b61130530846120dc565b611310878d8d6119da565b61131b868d8c6119da565b604080516370a0823160e01b815230600482015290516001600160a01b038916916370a08231916024808301926020929190829003018186803b15801561136157600080fd5b505afa158015611375573d6000803e3d6000fd5b505050506040513d602081101561138b57600080fd5b5051604080516370a0823160e01b815230600482015290519196506001600160a01b038816916370a0823191602480820192602092909190829003018186803b1580156113d757600080fd5b505afa1580156113eb573d6000803e3d6000fd5b505050506040513d602081101561140157600080fd5b5051935061141185858b8b611c0e565b811561143b57600854611437906001600160701b0380821691600160701b900416611b6c565b600b555b604080518c8152602081018c905281516001600160a01b038f169233927fdccd412f0b1252819cb1fd330b93224ca42612892bb3f4f789976e6d81936496929081900390910190a35050505050505050506001600c81905550915091565b604051806040016040528060068152602001654c53502d563160d01b81525081565b6000610af0338484611e20565b6103e881565b600c54600114611518576040805162461bcd60e51b815260206004820152601060248201526f13195cdcd4ddd85c0e881313d0d2d15160821b604482015290519081900360640190fd5b6000600c55600654600754600854604080516370a0823160e01b815230600482015290516001600160a01b0394851694909316926115c192859287926115bc926001600160701b03169185916370a0823191602480820192602092909190829003018186803b15801561158a57600080fd5b505afa15801561159e573d6000803e3d6000fd5b505050506040513d60208110156115b457600080fd5b505190611bcc565b6119da565b61163581846115bc6008600e9054906101000a90046001600160701b03166001600160701b0316856001600160a01b03166370a08231306040518263ffffffff1660e01b815260040180826001600160a01b0316815260200191505060206040518083038186803b15801561158a57600080fd5b50506001600c5550565b6005546001600160a01b031681565b6007546001600160a01b031681565b428410156116a6576040805162461bcd60e51b815260206004820152601160248201527013195cdcd4ddd85c0e8811561412549151607a1b604482015290519081900360640190fd5b6003546001600160a01b0380891660008181526004602090815260408083208054600180820190925582517f6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c98186015280840196909652958d166060860152608085018c905260a085019590955260c08085018b90528151808603909101815260e08501825280519083012061190160f01b6101008601526101028501969096526101228085019690965280518085039096018652610142840180825286519683019690962095839052610162840180825286905260ff89166101828501526101a284018890526101c28401879052519193926101e280820193601f1981019281900390910190855afa1580156117c1573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b038116158015906117f75750886001600160a01b0316816001600160a01b0316145b611846576040805162461bcd60e51b815260206004820152601b60248201527a4c657373537761703a20494e56414c49445f5349474e415455524560281b604482015290519081900360640190fd5b611851898989611dbe565b505050505050505050565b600260209081526000928352604080842090915290825290205481565b600c546001146118c3576040805162461bcd60e51b815260206004820152601060248201526f13195cdcd4ddd85c0e881313d0d2d15160821b604482015290519081900360640190fd5b6000600c55600654604080516370a0823160e01b815230600482015290516119d3926001600160a01b0316916370a08231916024808301926020929190829003018186803b15801561191457600080fd5b505afa158015611928573d6000803e3d6000fd5b505050506040513d602081101561193e57600080fd5b5051600754604080516370a0823160e01b815230600482015290516001600160a01b03909216916370a0823191602480820192602092909190829003018186803b15801561198b57600080fd5b505afa15801561199f573d6000803e3d6000fd5b505050506040513d60208110156119b557600080fd5b50516008546001600160701b0380821691600160701b900416611c0e565b6001600c55565b60408051808201825260198152787472616e7366657228616464726573732c75696e743235362960381b60209182015281516001600160a01b0385811660248301526044808301869052845180840390910181526064909201845291810180516001600160e01b031663a9059cbb60e01b1781529251815160009460609489169392918291908083835b60208310611a835780518252601f199092019160209182019101611a64565b6001836020036101000a0380198251168184511680821785525050505050509050019150506000604051808303816000865af19150503d8060008114611ae5576040519150601f19603f3d011682016040523d82523d6000602084013e611aea565b606091505b5091509150818015611b18575080511580611b185750808060200190516020811015611b1557600080fd5b50515b611b65576040805162461bcd60e51b815260206004820152601960248201527813195cdcd4ddd85c0e881514905394d1915497d19052531151603a1b604482015290519081900360640190fd5b5050505050565b600082611b7b57506000610af4565b82820282848281611b8857fe5b0414611bc55760405162461bcd60e51b81526004018080602001828103825260218152602001806122836021913960400191505060405180910390fd5b9392505050565b6000611bc583836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f77000081525061215c565b6001600160701b038411801590611c2c57506001600160701b038311155b611c72576040805162461bcd60e51b81526020600482015260126024820152714c657373537761703a204f564552464c4f5760701b604482015290519081900360640190fd5b60085463ffffffff42811691600160e01b90048116820390811615801590611ca257506001600160701b03841615155b8015611cb657506001600160701b03831615155b15611d21578063ffffffff16611cde85611ccf866121f3565b6001600160e01b031690612205565b600980546001600160e01b03929092169290920201905563ffffffff8116611d0984611ccf876121f3565b600a80546001600160e01b0392909216929092020190555b600880546001600160701b0319166001600160701b0388811691909117600160701b600160e01b031916600160701b8883168102919091176001600160e01b0316600160e01b63ffffffff871602179283905560408051848416815291909304909116602082015281517f1c411e9a96e071241c2f21f7726b17ae89e3cab4c78be50e062b03a9fffbbad1929181900390910190a1505050505050565b6001600160a01b03808416600081815260026020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b038316600090815260016020526040902054611e439082611bcc565b6001600160a01b038085166000908152600160205260408082209390935590841681522054611e72908261222a565b6001600160a01b0380841660008181526001602090815260409182902094909455805185815290519193928716926000805160206122cb83398151915292918290030190a3505050565b600080600560009054906101000a90046001600160a01b03166001600160a01b031663017e7e586040518163ffffffff1660e01b815260040160206040518083038186803b158015611f0d57600080fd5b505afa158015611f21573d6000803e3d6000fd5b505050506040513d6020811015611f3757600080fd5b5051600b546001600160a01b038216158015945091925090611fe8578015611fe3576000611f74610fb36001600160701b03888116908816611b6c565b90506000611f8183611ffc565b905080821115611fe0576000611fa3611f9a8484611bcc565b60005490611b6c565b90506000611fbc83611fb6866005611b6c565b9061222a565b90506000818381611fc957fe5b0490508015611fdc57611fdc878261204e565b5050505b50505b611ff4565b8015611ff4576000600b555b505092915050565b6000600382111561203f575080600160028204015b818110156120395780915060028182858161202857fe5b04018161203157fe5b049050612011565b50612049565b8115612049575060015b919050565b60005461205b908261222a565b60009081556001600160a01b038316815260016020526040902054612080908261222a565b6001600160a01b03831660008181526001602090815260408083209490945583518581529351929391926000805160206122cb8339815191529281900390910190a35050565b60008183106120d55781611bc5565b5090919050565b6001600160a01b0382166000908152600160205260409020546120ff9082611bcc565b6001600160a01b038316600090815260016020526040812091909155546121269082611bcc565b60009081556040805183815290516001600160a01b038516916000805160206122cb833981519152919081900360200190a35050565b600081848411156121eb5760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b838110156121b0578181015183820152602001612198565b50505050905090810190601f1680156121dd5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b6001600160701b0316600160701b0290565b60006001600160701b0382166001600160e01b0384168161222257fe5b049392505050565b600082820183811015611bc5576040805162461bcd60e51b815260206004820152601b60248201527a536166654d6174683a206164646974696f6e206f766572666c6f7760281b604482015290519081900360640190fdfe536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f774c657373537761703a20494e53554646494349454e545f4c49515549444954595f4255524e4544ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef4c657373537761703a20494e53554646494349454e545f494e5055545f414d4f554e544c657373537761703a20494e53554646494349454e545f4f55545055545f414d4f554e544c657373537761703a20494e53554646494349454e545f4c49515549444954595f4d494e544544a2646970667358221220c426aeeb472460a04bb8e3e8c623e996d5eba8858098f56c107a06fdaee7c93064736f6c634300060c0033a26469706673582212202e47a117b29eb918f7134e8351be4304e0e2a3fab7c5beafc26dfde2ac0bebde64736f6c634300060c003300000000000000000000000016bbf684be12653a0982dc05952977182031dde2

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106100995760003560e01c8063017e7e581461009e578063094b7415146100c25780631e3dd18b146100ca57806323cf3118146100e7578063574f2ba31461010f5780637cd07e47146101295780639aab924814610131578063a2e74af614610139578063c9c653961461015f578063e6a439051461018d578063f46901ed146101bb575b600080fd5b6100a66101e1565b604080516001600160a01b039092168252519081900360200190f35b6100a66101f0565b6100a6600480360360208110156100e057600080fd5b50356101ff565b61010d600480360360208110156100fd57600080fd5b50356001600160a01b0316610226565b005b61011761029d565b60408051918252519081900360200190f35b6100a66102a3565b6101176102b2565b61010d6004803603602081101561014f57600080fd5b50356001600160a01b03166102e4565b6100a66004803603604081101561017557600080fd5b506001600160a01b038135811691602001351661035b565b6100a6600480360360408110156101a357600080fd5b506001600160a01b038135811691602001351661067e565b61010d600480360360208110156101d157600080fd5b50356001600160a01b03166106a4565b6000546001600160a01b031681565b6001546001600160a01b031681565b6004818154811061020c57fe5b6000918252602090912001546001600160a01b0316905081565b6001546001600160a01b0316331461027b576040805162461bcd60e51b81526020600482015260136024820152722632b9b9a9bbb0b81d102327a92124a22222a760691b604482015290519081900360640190fd5b600280546001600160a01b0319166001600160a01b0392909216919091179055565b60045490565b6002546001600160a01b031681565b6000604051806020016102c49061071b565b6020820181038252601f19601f8201166040525080519060200120905090565b6001546001600160a01b03163314610339576040805162461bcd60e51b81526020600482015260136024820152722632b9b9a9bbb0b81d102327a92124a22222a760691b604482015290519081900360640190fd5b600180546001600160a01b0319166001600160a01b0392909216919091179055565b6000816001600160a01b0316836001600160a01b031614156103c4576040805162461bcd60e51b815260206004820152601d60248201527f4c657373537761703a204944454e544943414c5f414444524553534553000000604482015290519081900360640190fd5b600080836001600160a01b0316856001600160a01b0316106103e75783856103ea565b84845b90925090506001600160a01b038216610443576040805162461bcd60e51b81526020600482015260166024820152754c657373537761703a205a45524f5f4144445245535360501b604482015290519081900360640190fd5b6001600160a01b038281166000908152600360209081526040808320858516845290915290205416156104b5576040805162461bcd60e51b81526020600482015260156024820152744c657373537761703a20504149525f45584953545360581b604482015290519081900360640190fd5b6060604051806020016104c79061071b565b6020820181038252601f19601f8201166040525090506000838360405160200180836001600160a01b031660601b8152601401826001600160a01b031660601b815260140192505050604051602081830303815290604052805190602001209050808251602084016000f59450846001600160a01b031663485cc95585856040518363ffffffff1660e01b815260040180836001600160a01b03168152602001826001600160a01b0316815260200192505050600060405180830381600087803b15801561059457600080fd5b505af11580156105a8573d6000803e3d6000fd5b505050506001600160a01b0384811660008181526003602081815260408084208987168086529083528185208054978d166001600160a01b031998891681179091559383528185208686528352818520805488168517905560048054600181018255958190527f8a35acfbc15ff81a39ae7d344fd709f28e8600b4aa8c65c6b64bfe7fe36bd19b90950180549097168417909655925483519283529082015281517f0d3648bd0f6ba80134a33ba9275ac585d9d315f0ad8355cddefde31afa28d0e9929181900390910190a35050505092915050565b60036020908152600092835260408084209091529082529020546001600160a01b031681565b6001546001600160a01b031633146106f9576040805162461bcd60e51b81526020600482015260136024820152722632b9b9a9bbb0b81d102327a92124a22222a760691b604482015290519081900360640190fd5b600080546001600160a01b0319166001600160a01b0392909216919091179055565b61249d806107298339019056fe60806040526001600c5534801561001557600080fd5b5060408051808201825260118152702632b9b9a9bbb0b8102628102a37b5b2b760791b6020918201528151808301835260018152603160f81b9082015281517f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f818301527fdd0da10e224499740cda2cf1d0281e8e7e42e547b50ea50adedd22aecd9f85ea818401527fc89efdaa54c0f20c7adf612882df0950f5a951637e0307cdcb4c672f298b8bc660608201524660808201523060a0808301919091528351808303909101815260c09091019092528151910120600355600580546001600160a01b0319163317905561238e8061010f6000396000f3fe608060405234801561001057600080fd5b50600436106101595760003560e01c80636a627842116100c95780636a627842146103bf57806370a08231146103e55780637464fc3d1461040b5780637ecebe001461041357806389afcb441461043957806395d89b4114610478578063a9059cbb14610480578063ba9a7a56146104ac578063bc25cf77146104b4578063c45a0155146104da578063d21220a7146104e2578063d505accf146104ea578063dd62ed3e1461053b578063fff6cae91461056957610159565b8063022c0d9f1461015e57806306fdde03146101ea5780630902f1ac14610267578063095ea7b31461029f5780630dfe1681146102df57806318160ddd1461030357806323b872dd1461031d57806330adf81f14610353578063313ce5671461035b5780633644e51514610379578063485cc955146103815780635909c0d5146103af5780635a3d5493146103b7575b600080fd5b6101e86004803603608081101561017457600080fd5b8135916020810135916001600160a01b036040830135169190810190608081016060820135600160201b8111156101aa57600080fd5b8201836020820111156101bc57600080fd5b803590602001918460018302840111600160201b831117156101dd57600080fd5b509092509050610571565b005b6101f2610a8c565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561022c578181015183820152602001610214565b50505050905090810190601f1680156102595780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b61026f610ab9565b604080516001600160701b03948516815292909316602083015263ffffffff168183015290519081900360600190f35b6102cb600480360360408110156102b557600080fd5b506001600160a01b038135169060200135610ae3565b604080519115158252519081900360200190f35b6102e7610afa565b604080516001600160a01b039092168252519081900360200190f35b61030b610b09565b60408051918252519081900360200190f35b6102cb6004803603606081101561033357600080fd5b506001600160a01b03813581169160208101359091169060400135610b0f565b61030b610ba3565b610363610bc7565b6040805160ff9092168252519081900360200190f35b61030b610bcc565b6101e86004803603604081101561039757600080fd5b506001600160a01b0381358116916020013516610bd2565b61030b610c55565b61030b610c5b565b61030b600480360360208110156103d557600080fd5b50356001600160a01b0316610c61565b61030b600480360360208110156103fb57600080fd5b50356001600160a01b03166110dc565b61030b6110ee565b61030b6004803603602081101561042957600080fd5b50356001600160a01b03166110f4565b61045f6004803603602081101561044f57600080fd5b50356001600160a01b0316611106565b6040805192835260208301919091528051918290030190f35b6101f2611499565b6102cb6004803603604081101561049657600080fd5b506001600160a01b0381351690602001356114bb565b61030b6114c8565b6101e8600480360360208110156104ca57600080fd5b50356001600160a01b03166114ce565b6102e761163f565b6102e761164e565b6101e8600480360360e081101561050057600080fd5b506001600160a01b03813581169160208101359091169060408101359060608101359060ff6080820135169060a08101359060c0013561165d565b61030b6004803603604081101561055157600080fd5b506001600160a01b038135811691602001351661185c565b6101e8611879565b600c546001146105bb576040805162461bcd60e51b815260206004820152601060248201526f13195cdcd4ddd85c0e881313d0d2d15160821b604482015290519081900360640190fd5b6000600c55841515806105ce5750600084115b6106095760405162461bcd60e51b815260040180806020018281038252602481526020018061230e6024913960400191505060405180910390fd5b600080610614610ab9565b5091509150816001600160701b0316871080156106395750806001600160701b031686105b61068a576040805162461bcd60e51b815260206004820181905260248201527f4c657373537761703a20494e53554646494349454e545f4c4951554944495459604482015290519081900360640190fd5b60065460075460009182916001600160a01b039182169190811690891682148015906106c85750806001600160a01b0316896001600160a01b031614155b610710576040805162461bcd60e51b81526020600482015260146024820152734c657373537761703a20494e56414c49445f544f60601b604482015290519081900360640190fd5b8a1561072157610721828a8d6119da565b891561073257610732818a8c6119da565b86156107e457886001600160a01b03166310d1e85c338d8d8c8c6040518663ffffffff1660e01b815260040180866001600160a01b03168152602001858152602001848152602001806020018281038252848482818152602001925080828437600081840152601f19601f8201169050808301925050509650505050505050600060405180830381600087803b1580156107cb57600080fd5b505af11580156107df573d6000803e3d6000fd5b505050505b604080516370a0823160e01b815230600482015290516001600160a01b038416916370a08231916024808301926020929190829003018186803b15801561082a57600080fd5b505afa15801561083e573d6000803e3d6000fd5b505050506040513d602081101561085457600080fd5b5051604080516370a0823160e01b815230600482015290519195506001600160a01b038316916370a0823191602480820192602092909190829003018186803b1580156108a057600080fd5b505afa1580156108b4573d6000803e3d6000fd5b505050506040513d60208110156108ca57600080fd5b5051925060009150506001600160701b0385168a900383116108ed5760006108fc565b89856001600160701b03160383035b9050600089856001600160701b0316038311610919576000610928565b89856001600160701b03160383035b905060008211806109395750600081115b6109745760405162461bcd60e51b81526004018080602001828103825260238152602001806122eb6023913960400191505060405180910390fd5b6000610996610984846003611b6c565b610990876103e8611b6c565b90611bcc565b905060006109a8610984846003611b6c565b90506109cd620f42406109c76001600160701b038b8116908b16611b6c565b90611b6c565b6109d78383611b6c565b1015610a18576040805162461bcd60e51b815260206004820152600b60248201526a4c657373537761703a204b60a81b604482015290519081900360640190fd5b5050610a2684848888611c0e565b60408051838152602081018390528082018d9052606081018c905290516001600160a01b038b169133917fd78ad95fa46c994b6551d0da85fc275fe613ce37657fb8d5e3d130840159d8229181900360800190a350506001600c55505050505050505050565b604051806040016040528060118152602001702632b9b9a9bbb0b8102628102a37b5b2b760791b81525081565b6008546001600160701b0380821692600160701b830490911691600160e01b900463ffffffff1690565b6000610af0338484611dbe565b5060015b92915050565b6006546001600160a01b031681565b60005481565b6001600160a01b038316600090815260026020908152604080832033845290915281205460001914610b8e576001600160a01b0384166000908152600260209081526040808320338452909152902054610b699083611bcc565b6001600160a01b03851660009081526002602090815260408083203384529091529020555b610b99848484611e20565b5060019392505050565b7f6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c981565b601281565b60035481565b6005546001600160a01b03163314610c27576040805162461bcd60e51b81526020600482015260136024820152722632b9b9a9bbb0b81d102327a92124a22222a760691b604482015290519081900360640190fd5b600680546001600160a01b039384166001600160a01b03199182161790915560078054929093169116179055565b60095481565b600a5481565b6000600c54600114610cad576040805162461bcd60e51b815260206004820152601060248201526f13195cdcd4ddd85c0e881313d0d2d15160821b604482015290519081900360640190fd5b6000600c81905580610cbd610ab9565b50600654604080516370a0823160e01b815230600482015290519395509193506000926001600160a01b03909116916370a08231916024808301926020929190829003018186803b158015610d1157600080fd5b505afa158015610d25573d6000803e3d6000fd5b505050506040513d6020811015610d3b57600080fd5b5051600754604080516370a0823160e01b815230600482015290519293506000926001600160a01b03909216916370a0823191602480820192602092909190829003018186803b158015610d8e57600080fd5b505afa158015610da2573d6000803e3d6000fd5b505050506040513d6020811015610db857600080fd5b505190506000610dd1836001600160701b038716611bcc565b90506000610de8836001600160701b038716611bcc565b90506000610df68787611ebc565b60005490915080610fcd5760055460408051637cd07e4760e01b815290516000926001600160a01b031691637cd07e47916004808301926020929190829003018186803b158015610e4657600080fd5b505afa158015610e5a573d6000803e3d6000fd5b505050506040513d6020811015610e7057600080fd5b50519050336001600160a01b0382161415610f4b57806001600160a01b03166340dc0e376040518163ffffffff1660e01b815260040160206040518083038186803b158015610ebe57600080fd5b505afa158015610ed2573d6000803e3d6000fd5b505050506040513d6020811015610ee857600080fd5b505199508915801590610efd57506000198a14155b610f46576040805162461bcd60e51b81526020600482015260156024820152744261642064657369726564206c697175696469747960581b604482015290519081900360640190fd5b610fc7565b6001600160a01b03811615610fa0576040805162461bcd60e51b815260206004820152601660248201527526bab9ba103737ba103430bb329036b4b3b930ba37b960511b604482015290519081900360640190fd5b610fb86103e8610990610fb38888611b6c565b611ffc565b9950610fc760006103e861204e565b50611010565b61100d6001600160701b038916610fe48684611b6c565b81610feb57fe5b046001600160701b0389166110008685611b6c565b8161100757fe5b046120c6565b98505b6000891161104f5760405162461bcd60e51b81526004018080602001828103825260278152602001806123326027913960400191505060405180910390fd5b6110598a8a61204e565b61106586868a8a611c0e565b811561108f5760085461108b906001600160701b0380821691600160701b900416611b6c565b600b555b6040805185815260208101859052815133927f4c209b5fc8ad50758f13e2e1088ba56a560dff690a1c6fef26394f4c03821c4f928290030190a250506001600c5550949695505050505050565b60016020526000908152604090205481565b600b5481565b60046020526000908152604090205481565b600080600c54600114611153576040805162461bcd60e51b815260206004820152601060248201526f13195cdcd4ddd85c0e881313d0d2d15160821b604482015290519081900360640190fd5b6000600c81905580611163610ab9565b50600654600754604080516370a0823160e01b815230600482015290519496509294506001600160a01b039182169391169160009184916370a08231916024808301926020929190829003018186803b1580156111bf57600080fd5b505afa1580156111d3573d6000803e3d6000fd5b505050506040513d60208110156111e957600080fd5b5051604080516370a0823160e01b815230600482015290519192506000916001600160a01b038516916370a08231916024808301926020929190829003018186803b15801561123757600080fd5b505afa15801561124b573d6000803e3d6000fd5b505050506040513d602081101561126157600080fd5b5051306000908152600160205260408120549192506112808888611ebc565b600054909150806112918487611b6c565b8161129857fe5b049a50806112a68486611b6c565b816112ad57fe5b04995060008b1180156112c0575060008a115b6112fb5760405162461bcd60e51b81526004018080602001828103825260278152602001806122a46027913960400191505060405180910390fd5b61130530846120dc565b611310878d8d6119da565b61131b868d8c6119da565b604080516370a0823160e01b815230600482015290516001600160a01b038916916370a08231916024808301926020929190829003018186803b15801561136157600080fd5b505afa158015611375573d6000803e3d6000fd5b505050506040513d602081101561138b57600080fd5b5051604080516370a0823160e01b815230600482015290519196506001600160a01b038816916370a0823191602480820192602092909190829003018186803b1580156113d757600080fd5b505afa1580156113eb573d6000803e3d6000fd5b505050506040513d602081101561140157600080fd5b5051935061141185858b8b611c0e565b811561143b57600854611437906001600160701b0380821691600160701b900416611b6c565b600b555b604080518c8152602081018c905281516001600160a01b038f169233927fdccd412f0b1252819cb1fd330b93224ca42612892bb3f4f789976e6d81936496929081900390910190a35050505050505050506001600c81905550915091565b604051806040016040528060068152602001654c53502d563160d01b81525081565b6000610af0338484611e20565b6103e881565b600c54600114611518576040805162461bcd60e51b815260206004820152601060248201526f13195cdcd4ddd85c0e881313d0d2d15160821b604482015290519081900360640190fd5b6000600c55600654600754600854604080516370a0823160e01b815230600482015290516001600160a01b0394851694909316926115c192859287926115bc926001600160701b03169185916370a0823191602480820192602092909190829003018186803b15801561158a57600080fd5b505afa15801561159e573d6000803e3d6000fd5b505050506040513d60208110156115b457600080fd5b505190611bcc565b6119da565b61163581846115bc6008600e9054906101000a90046001600160701b03166001600160701b0316856001600160a01b03166370a08231306040518263ffffffff1660e01b815260040180826001600160a01b0316815260200191505060206040518083038186803b15801561158a57600080fd5b50506001600c5550565b6005546001600160a01b031681565b6007546001600160a01b031681565b428410156116a6576040805162461bcd60e51b815260206004820152601160248201527013195cdcd4ddd85c0e8811561412549151607a1b604482015290519081900360640190fd5b6003546001600160a01b0380891660008181526004602090815260408083208054600180820190925582517f6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c98186015280840196909652958d166060860152608085018c905260a085019590955260c08085018b90528151808603909101815260e08501825280519083012061190160f01b6101008601526101028501969096526101228085019690965280518085039096018652610142840180825286519683019690962095839052610162840180825286905260ff89166101828501526101a284018890526101c28401879052519193926101e280820193601f1981019281900390910190855afa1580156117c1573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b038116158015906117f75750886001600160a01b0316816001600160a01b0316145b611846576040805162461bcd60e51b815260206004820152601b60248201527a4c657373537761703a20494e56414c49445f5349474e415455524560281b604482015290519081900360640190fd5b611851898989611dbe565b505050505050505050565b600260209081526000928352604080842090915290825290205481565b600c546001146118c3576040805162461bcd60e51b815260206004820152601060248201526f13195cdcd4ddd85c0e881313d0d2d15160821b604482015290519081900360640190fd5b6000600c55600654604080516370a0823160e01b815230600482015290516119d3926001600160a01b0316916370a08231916024808301926020929190829003018186803b15801561191457600080fd5b505afa158015611928573d6000803e3d6000fd5b505050506040513d602081101561193e57600080fd5b5051600754604080516370a0823160e01b815230600482015290516001600160a01b03909216916370a0823191602480820192602092909190829003018186803b15801561198b57600080fd5b505afa15801561199f573d6000803e3d6000fd5b505050506040513d60208110156119b557600080fd5b50516008546001600160701b0380821691600160701b900416611c0e565b6001600c55565b60408051808201825260198152787472616e7366657228616464726573732c75696e743235362960381b60209182015281516001600160a01b0385811660248301526044808301869052845180840390910181526064909201845291810180516001600160e01b031663a9059cbb60e01b1781529251815160009460609489169392918291908083835b60208310611a835780518252601f199092019160209182019101611a64565b6001836020036101000a0380198251168184511680821785525050505050509050019150506000604051808303816000865af19150503d8060008114611ae5576040519150601f19603f3d011682016040523d82523d6000602084013e611aea565b606091505b5091509150818015611b18575080511580611b185750808060200190516020811015611b1557600080fd5b50515b611b65576040805162461bcd60e51b815260206004820152601960248201527813195cdcd4ddd85c0e881514905394d1915497d19052531151603a1b604482015290519081900360640190fd5b5050505050565b600082611b7b57506000610af4565b82820282848281611b8857fe5b0414611bc55760405162461bcd60e51b81526004018080602001828103825260218152602001806122836021913960400191505060405180910390fd5b9392505050565b6000611bc583836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f77000081525061215c565b6001600160701b038411801590611c2c57506001600160701b038311155b611c72576040805162461bcd60e51b81526020600482015260126024820152714c657373537761703a204f564552464c4f5760701b604482015290519081900360640190fd5b60085463ffffffff42811691600160e01b90048116820390811615801590611ca257506001600160701b03841615155b8015611cb657506001600160701b03831615155b15611d21578063ffffffff16611cde85611ccf866121f3565b6001600160e01b031690612205565b600980546001600160e01b03929092169290920201905563ffffffff8116611d0984611ccf876121f3565b600a80546001600160e01b0392909216929092020190555b600880546001600160701b0319166001600160701b0388811691909117600160701b600160e01b031916600160701b8883168102919091176001600160e01b0316600160e01b63ffffffff871602179283905560408051848416815291909304909116602082015281517f1c411e9a96e071241c2f21f7726b17ae89e3cab4c78be50e062b03a9fffbbad1929181900390910190a1505050505050565b6001600160a01b03808416600081815260026020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b038316600090815260016020526040902054611e439082611bcc565b6001600160a01b038085166000908152600160205260408082209390935590841681522054611e72908261222a565b6001600160a01b0380841660008181526001602090815260409182902094909455805185815290519193928716926000805160206122cb83398151915292918290030190a3505050565b600080600560009054906101000a90046001600160a01b03166001600160a01b031663017e7e586040518163ffffffff1660e01b815260040160206040518083038186803b158015611f0d57600080fd5b505afa158015611f21573d6000803e3d6000fd5b505050506040513d6020811015611f3757600080fd5b5051600b546001600160a01b038216158015945091925090611fe8578015611fe3576000611f74610fb36001600160701b03888116908816611b6c565b90506000611f8183611ffc565b905080821115611fe0576000611fa3611f9a8484611bcc565b60005490611b6c565b90506000611fbc83611fb6866005611b6c565b9061222a565b90506000818381611fc957fe5b0490508015611fdc57611fdc878261204e565b5050505b50505b611ff4565b8015611ff4576000600b555b505092915050565b6000600382111561203f575080600160028204015b818110156120395780915060028182858161202857fe5b04018161203157fe5b049050612011565b50612049565b8115612049575060015b919050565b60005461205b908261222a565b60009081556001600160a01b038316815260016020526040902054612080908261222a565b6001600160a01b03831660008181526001602090815260408083209490945583518581529351929391926000805160206122cb8339815191529281900390910190a35050565b60008183106120d55781611bc5565b5090919050565b6001600160a01b0382166000908152600160205260409020546120ff9082611bcc565b6001600160a01b038316600090815260016020526040812091909155546121269082611bcc565b60009081556040805183815290516001600160a01b038516916000805160206122cb833981519152919081900360200190a35050565b600081848411156121eb5760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b838110156121b0578181015183820152602001612198565b50505050905090810190601f1680156121dd5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b6001600160701b0316600160701b0290565b60006001600160701b0382166001600160e01b0384168161222257fe5b049392505050565b600082820183811015611bc5576040805162461bcd60e51b815260206004820152601b60248201527a536166654d6174683a206164646974696f6e206f766572666c6f7760281b604482015290519081900360640190fdfe536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f774c657373537761703a20494e53554646494349454e545f4c49515549444954595f4255524e4544ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef4c657373537761703a20494e53554646494349454e545f494e5055545f414d4f554e544c657373537761703a20494e53554646494349454e545f4f55545055545f414d4f554e544c657373537761703a20494e53554646494349454e545f4c49515549444954595f4d494e544544a2646970667358221220c426aeeb472460a04bb8e3e8c623e996d5eba8858098f56c107a06fdaee7c93064736f6c634300060c0033a26469706673582212202e47a117b29eb918f7134e8351be4304e0e2a3fab7c5beafc26dfde2ac0bebde64736f6c634300060c0033

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

00000000000000000000000016bbf684be12653a0982dc05952977182031dde2

-----Decoded View---------------
Arg [0] : _feeToSetter (address): 0x16BBF684be12653A0982dc05952977182031DDE2

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 00000000000000000000000016bbf684be12653a0982dc05952977182031dde2


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

Transaction Hash Block Value Eth2 PubKey Valid
View All Deposits
Loading...
Loading
[ Download: CSV Export  ]
[ 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.