ETH Price: $2,639.46 (-0.43%)

Contract

0x3A4FF19554b0F997A4cEF14A8860DcF813b738a4
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Set Router104699772020-07-16 10:23:161536 days ago1594894996IN
0x3A4FF195...813b738a4
0 ETH0.0018140864
0x60806040104699222020-07-16 10:07:261536 days ago1594894046IN
 Create: UniswapYieldV2Factory
0 ETH0.1573552562

Latest 9 internal transactions

Advanced mode:
Parent Transaction Hash Block From To
104715242020-07-16 16:13:051536 days ago1594915985
0x3A4FF195...813b738a4
 Contract Creation0 ETH
104713082020-07-16 15:21:141536 days ago1594912874
0x3A4FF195...813b738a4
 Contract Creation0 ETH
104706102020-07-16 12:43:041536 days ago1594903384
0x3A4FF195...813b738a4
 Contract Creation0 ETH
104705992020-07-16 12:39:561536 days ago1594903196
0x3A4FF195...813b738a4
 Contract Creation0 ETH
104705922020-07-16 12:37:201536 days ago1594903040
0x3A4FF195...813b738a4
 Contract Creation0 ETH
104705842020-07-16 12:36:011536 days ago1594902961
0x3A4FF195...813b738a4
 Contract Creation0 ETH
104700342020-07-16 10:35:521536 days ago1594895752
0x3A4FF195...813b738a4
 Contract Creation0 ETH
104700232020-07-16 10:33:491536 days ago1594895629
0x3A4FF195...813b738a4
 Contract Creation0 ETH
104700012020-07-16 10:29:231536 days ago1594895363
0x3A4FF195...813b738a4
 Contract Creation0 ETH
Loading...
Loading

Contract Source Code Verified (Exact Match)

Contract Name:
UniswapYieldV2Factory

Compiler Version
v0.5.16+commit.9c3226ce

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, GNU LGPLv3 license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2020-07-16
*/

pragma solidity =0.5.16;

interface IUniswapV2Factory {
    event PairCreated(address indexed token0, address indexed token1, address pair, uint);
    function getPair(address tokenA, address tokenB) external view returns (address pair);
    function allPairs(uint) external view returns (address pair);
    function allPairsLength() external view returns (uint);
    function createPair(address tokenA, address tokenB) external returns (address pair);
    function setRouter(address) external;
    function claim(address, address, address) external;
    function redirectInterestStream(address, address, address) external;
}

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

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

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

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

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

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

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

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

    function initialize(address, address) external;
    function redirectInterestStream(address, address) external;
    function claim(address, address) external;
}

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

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

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

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

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

interface IERC20 {
    event Approval(address indexed owner, address indexed spender, uint value);
    event Transfer(address indexed from, address indexed to, uint 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 (uint);
    function balanceOf(address owner) external view returns (uint);
    function allowance(address owner, address spender) external view returns (uint);

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

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

contract UniswapV2ERC20 is IUniswapV2ERC20 {
    using SafeMath for uint;

    string public constant name = 'Uniswap V2';
    string public constant symbol = 'UNI-V2';
    uint8 public constant decimals = 18;
    uint  public totalSupply;
    mapping(address => uint) public balanceOf;
    mapping(address => mapping(address => uint)) 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 => uint) public nonces;

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

    constructor() public {
        uint 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, uint value) internal {
        totalSupply = totalSupply.add(value);
        balanceOf[to] = balanceOf[to].add(value);
        emit Transfer(address(0), to, value);
    }

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

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

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

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

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

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

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

interface aToken {
    function redirectInterestStream(address _to) external;
}


contract UniswapV2Pair is IUniswapV2Pair, UniswapV2ERC20 {
    using SafeMath  for uint;
    using UQ112x112 for uint224;

    uint 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

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

    uint private unlocked = 1;
    modifier lock() {
        require(unlocked == 1, 'UniswapV2: 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, uint value) private {
        (bool success, bytes memory data) = token.call(abi.encodeWithSelector(SELECTOR, to, value));
        require(success && (data.length == 0 || abi.decode(data, (bool))), 'UniswapV2: TRANSFER_FAILED');
    }

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

    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, 'UniswapV2: FORBIDDEN'); // sufficient check
        token0 = _token0;
        token1 = _token1;
    }
    
    // called by factory to set interest rate redirection for Aave tokens
    function redirectInterestStream(address _token, address _to) external {
        require(msg.sender == factory, 'UniswapV2: FORBIDDEN'); // sufficient check
        aToken(_token).redirectInterestStream(_to);
    }
    
    // called by factory to set interest rate redirection for Aave tokens
    function claim(address _token, address _to) external {
        require(msg.sender == factory, 'UniswapV2: FORBIDDEN'); // sufficient check
        require(_token != token0 && _token != token1, 'UniswapV2: FORBIDDEN'); // sufficient check
        _safeTransfer(_token, _to, IERC20(_token).balanceOf(address(this)));
    }
    
    // update reserves and, on the first call per block, price accumulators
    function _update(uint balance0, uint balance1, uint112 _reserve0, uint112 _reserve1) private {
        require(balance0 <= uint112(-1) && balance1 <= uint112(-1), 'UniswapV2: 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 += uint(UQ112x112.encode(_reserve1).uqdiv(_reserve0)) * timeElapsed;
            price1CumulativeLast += uint(UQ112x112.encode(_reserve0).uqdiv(_reserve1)) * timeElapsed;
        }
        reserve0 = uint112(balance0);
        reserve1 = uint112(balance1);
        blockTimestampLast = blockTimestamp;
        emit Sync(reserve0, reserve1);
    }

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

        uint _totalSupply = totalSupply; // gas savings, must be defined here since totalSupply can update in _mintFee
        if (_totalSupply == 0) {
            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, 'UniswapV2: INSUFFICIENT_LIQUIDITY_MINTED');
        _mint(to, liquidity);

        _update(balance0, balance1, _reserve0, _reserve1);
        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 (uint amount0, uint amount1) {
        (uint112 _reserve0, uint112 _reserve1,) = getReserves(); // gas savings
        address _token0 = token0;                                // gas savings
        address _token1 = token1;                                // gas savings
        uint balance0 = IERC20(_token0).balanceOf(address(this));
        uint balance1 = IERC20(_token1).balanceOf(address(this));
        uint liquidity = balanceOf[address(this)];

        uint _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, 'UniswapV2: 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);
        emit Burn(msg.sender, amount0, amount1, to);
    }

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

        uint balance0;
        uint balance1;
        { // scope for _token{0,1}, avoids stack too deep errors
        address _token0 = token0;
        address _token1 = token1;
        require(to != _token0 && to != _token1, 'UniswapV2: 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) IUniswapV2Callee(to).uniswapV2Call(msg.sender, amount0Out, amount1Out, data);
        balance0 = IERC20(_token0).balanceOf(address(this));
        balance1 = IERC20(_token1).balanceOf(address(this));
        }
        uint amount0In = balance0 > _reserve0 - amount0Out ? balance0 - (_reserve0 - amount0Out) : 0;
        uint amount1In = balance1 > _reserve1 - amount1Out ? balance1 - (_reserve1 - amount1Out) : 0;
        require(amount0In > 0 || amount1In > 0, 'UniswapV2: INSUFFICIENT_INPUT_AMOUNT');
        { // scope for reserve{0,1}Adjusted, avoids stack too deep errors
        uint balance0Adjusted = balance0.mul(1000).sub(amount0In.mul(3));
        uint balance1Adjusted = balance1.mul(1000).sub(amount1In.mul(3));
        require(balance0Adjusted.mul(balance1Adjusted) >= uint(_reserve0).mul(_reserve1).mul(1000**2), 'UniswapV2: 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);
    }
}

contract UniswapYieldV2Factory is IUniswapV2Factory {
    address public router;

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

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

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

    function allPairsLength() external view returns (uint) {
        return allPairs.length;
    }
    
    function claim(address pair, address token, address to) external {
        require(msg.sender == router, 'UniswapV2: FORBIDDEN');
        IUniswapV2Pair(pair).claim(token, to);
    }
    
    function redirectInterestStream(address pair, address token, address to) external {
        require(msg.sender == router, 'UniswapV2: FORBIDDEN');
        IUniswapV2Pair(pair).redirectInterestStream(token, to);
    }

    function createPair(address tokenA, address tokenB) public returns (address pair) {
        require(msg.sender == router, 'UniswapV2: FORBIDDEN');
        require(tokenA != tokenB, 'UniswapV2: IDENTICAL_ADDRESSES');
        (address token0, address token1) = tokenA < tokenB ? (tokenA, tokenB) : (tokenB, tokenA);
        require(token0 != address(0), 'UniswapV2: ZERO_ADDRESS');
        require(getPair[token0][token1] == address(0), 'UniswapV2: PAIR_EXISTS'); // single check is sufficient
        bytes memory bytecode = type(UniswapV2Pair).creationCode;
        bytes32 salt = keccak256(abi.encodePacked(token0, token1));
        assembly {
            pair := create2(0, add(bytecode, 32), mload(bytecode), salt)
        }
        IUniswapV2Pair(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 setRouter(address _router) external {
        require(msg.sender == router, 'UniswapV2: FORBIDDEN');
        router = _router;
    }
}

// a library for performing overflow-safe math, courtesy of DappHub (https://github.com/dapphub/ds-math)

library SafeMath {
    function add(uint x, uint y) internal pure returns (uint z) {
        require((z = x + y) >= x, 'ds-math-add-overflow');
    }

    function sub(uint x, uint y) internal pure returns (uint z) {
        require((z = x - y) <= x, 'ds-math-sub-underflow');
    }

    function mul(uint x, uint y) internal pure returns (uint z) {
        require(y == 0 || (z = x * y) / y == x, 'ds-math-mul-overflow');
    }
}

// a library for performing various math operations

library Math {
    function min(uint x, uint y) internal pure returns (uint z) {
        z = x < y ? x : y;
    }

    // babylonian method (https://en.wikipedia.org/wiki/Methods_of_computing_square_roots#Babylonian_method)
    function sqrt(uint y) internal pure returns (uint z) {
        if (y > 3) {
            z = y;
            uint x = y / 2 + 1;
            while (x < z) {
                z = x;
                x = (y / x + x) / 2;
            }
        } else if (y != 0) {
            z = 1;
        }
    }
}

// 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);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"payable":false,"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"},{"constant":true,"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"allPairs","outputs":[{"internalType":"address","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"allPairsLength","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"pair","type":"address"},{"internalType":"address","name":"token","type":"address"},{"internalType":"address","name":"to","type":"address"}],"name":"claim","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"tokenA","type":"address"},{"internalType":"address","name":"tokenB","type":"address"}],"name":"createPair","outputs":[{"internalType":"address","name":"pair","type":"address"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"address","name":"","type":"address"}],"name":"getPair","outputs":[{"internalType":"address","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"pair","type":"address"},{"internalType":"address","name":"token","type":"address"},{"internalType":"address","name":"to","type":"address"}],"name":"redirectInterestStream","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"router","outputs":[{"internalType":"address","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"_router","type":"address"}],"name":"setRouter","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"}]

608060405234801561001057600080fd5b50600080546001600160a01b03191633179055612c8f806100326000396000f3fe608060405234801561001057600080fd5b50600436106100885760003560e01c8063c0d786551161005b578063c0d7865514610152578063c9c6539614610178578063e6a43905146101a6578063f887ea40146101d457610088565b80631e3dd18b1461008d578063574f2ba3146100c65780635e1c75e1146100e0578063abd7c1861461011a575b600080fd5b6100aa600480360360208110156100a357600080fd5b50356101dc565b604080516001600160a01b039092168252519081900360200190f35b6100ce610203565b60408051918252519081900360200190f35b610118600480360360608110156100f657600080fd5b506001600160a01b038135811691602081013582169160409091013516610209565b005b6101186004803603606081101561013057600080fd5b506001600160a01b0381358116916020810135821691604090910135166102cf565b6101186004803603602081101561016857600080fd5b50356001600160a01b0316610378565b6100aa6004803603604081101561018e57600080fd5b506001600160a01b03813581169160200135166103f0565b6100aa600480360360408110156101bc57600080fd5b506001600160a01b0381358116916020013516610775565b6100aa61079b565b600281815481106101e957fe5b6000918252602090912001546001600160a01b0316905081565b60025490565b6000546001600160a01b0316331461025f576040805162461bcd60e51b81526020600482015260146024820152732ab734b9bbb0b82b191d102327a92124a22222a760611b604482015290519081900360640190fd5b604080516310e059a160e11b81526001600160a01b03848116600483015283811660248301529151918516916321c0b3429160448082019260009290919082900301818387803b1580156102b257600080fd5b505af11580156102c6573d6000803e3d6000fd5b50505050505050565b6000546001600160a01b03163314610325576040805162461bcd60e51b81526020600482015260146024820152732ab734b9bbb0b82b191d102327a92124a22222a760611b604482015290519081900360640190fd5b60408051630926bb4560e31b81526001600160a01b0384811660048301528381166024830152915191851691634935da289160448082019260009290919082900301818387803b1580156102b257600080fd5b6000546001600160a01b031633146103ce576040805162461bcd60e51b81526020600482015260146024820152732ab734b9bbb0b82b191d102327a92124a22222a760611b604482015290519081900360640190fd5b600080546001600160a01b0319166001600160a01b0392909216919091179055565b600080546001600160a01b03163314610447576040805162461bcd60e51b81526020600482015260146024820152732ab734b9bbb0b82b191d102327a92124a22222a760611b604482015290519081900360640190fd5b816001600160a01b0316836001600160a01b031614156104ae576040805162461bcd60e51b815260206004820152601e60248201527f556e697377617056323a204944454e544943414c5f4144445245535345530000604482015290519081900360640190fd5b600080836001600160a01b0316856001600160a01b0316106104d15783856104d4565b84845b90925090506001600160a01b038216610534576040805162461bcd60e51b815260206004820152601760248201527f556e697377617056323a205a45524f5f41444452455353000000000000000000604482015290519081900360640190fd5b6001600160a01b038281166000908152600160209081526040808320858516845290915290205416156105a7576040805162461bcd60e51b8152602060048201526016602482015275556e697377617056323a20504149525f45584953545360501b604482015290519081900360640190fd5b6060604051806020016105b9906107aa565b6020820181038252601f19601f8201166040525090506000838360405160200180836001600160a01b03166001600160a01b031660601b8152601401826001600160a01b03166001600160a01b031660601b815260140192505050604051602081830303815290604052805190602001209050808251602084016000f56040805163485cc95560e01b81526001600160a01b038781166004830152868116602483015291519297509087169163485cc9559160448082019260009290919082900301818387803b15801561068c57600080fd5b505af11580156106a0573d6000803e3d6000fd5b505050506001600160a01b0384811660008181526001602081815260408084208987168086529083528185208054978d166001600160a01b0319988916811790915584845282862087875284528286208054891682179055600280549586018155958690527f405787fa12a823e0f2b7631cc41b3ba8828b3321ca811111fa75cd3aa3bb5ace90940180549097168417909655925483519283529082015281517f0d3648bd0f6ba80134a33ba9275ac585d9d315f0ad8355cddefde31afa28d0e9929181900390910190a35050505092915050565b60016020908152600092835260408084209091529082529020546001600160a01b031681565b6000546001600160a01b031681565b6124a3806107b88339019056fe60806040526001600c5534801561001557600080fd5b5060405146908060526124518239604080519182900360520182208282018252600a8352692ab734b9bbb0b8102b1960b11b6020938401528151808301835260018152603160f81b908401528151808401919091527fbfcc8ef98ffbf7b6c3fec7bf5185b566b9863e35a9d83acd49ad6824b5969738818301527fc89efdaa54c0f20c7adf612882df0950f5a951637e0307cdcb4c672f298b8bc6606082015260808101949094523060a0808601919091528151808603909101815260c09094019052825192019190912060035550600580546001600160a01b0319163317905561234c806101056000396000f3fe608060405234801561001057600080fd5b50600436106101cf5760003560e01c80635a3d549311610104578063a9059cbb116100a2578063d21220a711610071578063d21220a7146105b6578063d505accf146105be578063dd62ed3e1461060f578063fff6cae91461063d576101cf565b8063a9059cbb14610554578063ba9a7a5614610580578063bc25cf7714610588578063c45a0155146105ae576101cf565b80637464fc3d116100de5780637464fc3d146104df5780637ecebe00146104e757806389afcb441461050d57806395d89b411461054c576101cf565b80635a3d54931461048b5780636a6278421461049357806370a08231146104b9576101cf565b806323b872dd116101715780633644e5151161014b5780633644e5151461041f578063485cc955146104275780634935da28146104555780635909c0d514610483576101cf565b806323b872dd146103c357806330adf81f146103f9578063313ce56714610401576101cf565b8063095ea7b3116101ad578063095ea7b3146103175780630dfe16811461035757806318160ddd1461037b57806321c0b34214610395576101cf565b8063022c0d9f146101d457806306fdde03146102625780630902f1ac146102df575b600080fd5b610260600480360360808110156101ea57600080fd5b8135916020810135916001600160a01b03604083013516919081019060808101606082013564010000000081111561022157600080fd5b82018360208201111561023357600080fd5b8035906020019184600183028401116401000000008311171561025557600080fd5b509092509050610645565b005b61026a610b80565b6040805160208082528351818301528351919283929083019185019080838360005b838110156102a457818101518382015260200161028c565b50505050905090810190601f1680156102d15780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6102e7610ba6565b604080516001600160701b03948516815292909316602083015263ffffffff168183015290519081900360600190f35b6103436004803603604081101561032d57600080fd5b506001600160a01b038135169060200135610bd0565b604080519115158252519081900360200190f35b61035f610be7565b604080516001600160a01b039092168252519081900360200190f35b610383610bf6565b60408051918252519081900360200190f35b610260600480360360408110156103ab57600080fd5b506001600160a01b0381358116916020013516610bfc565b610343600480360360608110156103d957600080fd5b506001600160a01b03813581169160208101359091169060400135610d56565b610383610df0565b610409610e14565b6040805160ff9092168252519081900360200190f35b610383610e19565b6102606004803603604081101561043d57600080fd5b506001600160a01b0381358116916020013516610e1f565b6102606004803603604081101561046b57600080fd5b506001600160a01b0381358116916020013516610ea3565b610383610f6d565b610383610f73565b610383600480360360208110156104a957600080fd5b50356001600160a01b0316610f79565b610383600480360360208110156104cf57600080fd5b50356001600160a01b031661123a565b61038361124c565b610383600480360360208110156104fd57600080fd5b50356001600160a01b0316611252565b6105336004803603602081101561052357600080fd5b50356001600160a01b0316611264565b6040805192835260208301919091528051918290030190f35b61026a6115cc565b6103436004803603604081101561056a57600080fd5b506001600160a01b0381351690602001356115ee565b6103836115fb565b6102606004803603602081101561059e57600080fd5b50356001600160a01b0316611601565b61035f61176c565b61035f61177b565b610260600480360360e08110156105d457600080fd5b506001600160a01b03813581169160208101359091169060408101359060608101359060ff6080820135169060a08101359060c0013561178a565b6103836004803603604081101561062557600080fd5b506001600160a01b038135811691602001351661198c565b6102606119a9565b600c54600114610690576040805162461bcd60e51b8152602060048201526011602482015270155b9a5cddd85c158c8e881313d0d2d151607a1b604482015290519081900360640190fd5b6000600c55841515806106a35750600084115b6106de5760405162461bcd60e51b815260040180806020018281038252602581526020018061225e6025913960400191505060405180910390fd5b6000806106e9610ba6565b5091509150816001600160701b03168710801561070e5750806001600160701b031686105b6107495760405162461bcd60e51b81526004018080602001828103825260218152602001806122a76021913960400191505060405180910390fd5b60065460075460009182916001600160a01b039182169190811690891682148015906107875750806001600160a01b0316896001600160a01b031614155b6107d0576040805162461bcd60e51b8152602060048201526015602482015274556e697377617056323a20494e56414c49445f544f60581b604482015290519081900360640190fd5b8a156107e1576107e1828a8d611b0b565b89156107f2576107f2818a8c611b0b565b86156108ad57886001600160a01b03166310d1e85c338d8d8c8c6040518663ffffffff1660e01b815260040180866001600160a01b03166001600160a01b03168152602001858152602001848152602001806020018281038252848482818152602001925080828437600081840152601f19601f8201169050808301925050509650505050505050600060405180830381600087803b15801561089457600080fd5b505af11580156108a8573d6000803e3d6000fd5b505050505b604080516370a0823160e01b815230600482015290516001600160a01b038416916370a08231916024808301926020929190829003018186803b1580156108f357600080fd5b505afa158015610907573d6000803e3d6000fd5b505050506040513d602081101561091d57600080fd5b5051604080516370a0823160e01b815230600482015290519195506001600160a01b038316916370a0823191602480820192602092909190829003018186803b15801561096957600080fd5b505afa15801561097d573d6000803e3d6000fd5b505050506040513d602081101561099357600080fd5b5051925060009150506001600160701b0385168a900383116109b65760006109c5565b89856001600160701b03160383035b9050600089856001600160701b03160383116109e25760006109f1565b89856001600160701b03160383035b90506000821180610a025750600081115b610a3d5760405162461bcd60e51b81526004018080602001828103825260248152602001806122836024913960400191505060405180910390fd5b6000610a71610a5384600363ffffffff611ca516565b610a65876103e863ffffffff611ca516565b9063ffffffff611d0816565b90506000610a89610a5384600363ffffffff611ca516565b9050610aba620f4240610aae6001600160701b038b8116908b1663ffffffff611ca516565b9063ffffffff611ca516565b610aca838363ffffffff611ca516565b1015610b0c576040805162461bcd60e51b815260206004820152600c60248201526b556e697377617056323a204b60a01b604482015290519081900360640190fd5b5050610b1a84848888611d58565b60408051838152602081018390528082018d9052606081018c905290516001600160a01b038b169133917fd78ad95fa46c994b6551d0da85fc275fe613ce37657fb8d5e3d130840159d8229181900360800190a350506001600c55505050505050505050565b6040518060400160405280600a8152602001692ab734b9bbb0b8102b1960b11b81525081565b6008546001600160701b0380821692600160701b830490911691600160e01b900463ffffffff1690565b6000610bdd338484611f1d565b5060015b92915050565b6006546001600160a01b031681565b60005481565b6005546001600160a01b03163314610c52576040805162461bcd60e51b81526020600482015260146024820152732ab734b9bbb0b82b191d102327a92124a22222a760611b604482015290519081900360640190fd5b6006546001600160a01b03838116911614801590610c7e57506007546001600160a01b03838116911614155b610cc6576040805162461bcd60e51b81526020600482015260146024820152732ab734b9bbb0b82b191d102327a92124a22222a760611b604482015290519081900360640190fd5b610d528282846001600160a01b03166370a08231306040518263ffffffff1660e01b815260040180826001600160a01b03166001600160a01b0316815260200191505060206040518083038186803b158015610d2157600080fd5b505afa158015610d35573d6000803e3d6000fd5b505050506040513d6020811015610d4b57600080fd5b5051611b0b565b5050565b6001600160a01b038316600090815260026020908152604080832033845290915281205460001914610ddb576001600160a01b0384166000908152600260209081526040808320338452909152902054610db6908363ffffffff611d0816565b6001600160a01b03851660009081526002602090815260408083203384529091529020555b610de6848484611f7f565b5060019392505050565b7f6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c981565b601281565b60035481565b6005546001600160a01b03163314610e75576040805162461bcd60e51b81526020600482015260146024820152732ab734b9bbb0b82b191d102327a92124a22222a760611b604482015290519081900360640190fd5b600680546001600160a01b039384166001600160a01b03199182161790915560078054929093169116179055565b6005546001600160a01b03163314610ef9576040805162461bcd60e51b81526020600482015260146024820152732ab734b9bbb0b82b191d102327a92124a22222a760611b604482015290519081900360640190fd5b816001600160a01b0316630e49072d826040518263ffffffff1660e01b815260040180826001600160a01b03166001600160a01b03168152602001915050600060405180830381600087803b158015610f5157600080fd5b505af1158015610f65573d6000803e3d6000fd5b505050505050565b60095481565b600a5481565b6000600c54600114610fc6576040805162461bcd60e51b8152602060048201526011602482015270155b9a5cddd85c158c8e881313d0d2d151607a1b604482015290519081900360640190fd5b6000600c81905580610fd6610ba6565b50600654604080516370a0823160e01b815230600482015290519395509193506000926001600160a01b03909116916370a08231916024808301926020929190829003018186803b15801561102a57600080fd5b505afa15801561103e573d6000803e3d6000fd5b505050506040513d602081101561105457600080fd5b5051600754604080516370a0823160e01b815230600482015290519293506000926001600160a01b03909216916370a0823191602480820192602092909190829003018186803b1580156110a757600080fd5b505afa1580156110bb573d6000803e3d6000fd5b505050506040513d60208110156110d157600080fd5b5051905060006110f0836001600160701b03871663ffffffff611d0816565b9050600061110d836001600160701b03871663ffffffff611d0816565b6000549091508061114a576111366103e8610a65611131868663ffffffff611ca516565b612039565b975061114560006103e861208b565b611199565b6111966001600160701b038816611167858463ffffffff611ca516565b8161116e57fe5b046001600160701b038816611189858563ffffffff611ca516565b8161119057fe5b04612121565b97505b600088116111d85760405162461bcd60e51b81526004018080602001828103825260288152602001806122f06028913960400191505060405180910390fd5b6111e2898961208b565b6111ee85858989611d58565b6040805184815260208101849052815133927f4c209b5fc8ad50758f13e2e1088ba56a560dff690a1c6fef26394f4c03821c4f928290030190a250506001600c55509395945050505050565b60016020526000908152604090205481565b600b5481565b60046020526000908152604090205481565b600080600c546001146112b2576040805162461bcd60e51b8152602060048201526011602482015270155b9a5cddd85c158c8e881313d0d2d151607a1b604482015290519081900360640190fd5b6000600c819055806112c2610ba6565b50600654600754604080516370a0823160e01b815230600482015290519496509294506001600160a01b039182169391169160009184916370a08231916024808301926020929190829003018186803b15801561131e57600080fd5b505afa158015611332573d6000803e3d6000fd5b505050506040513d602081101561134857600080fd5b5051604080516370a0823160e01b815230600482015290519192506000916001600160a01b038516916370a08231916024808301926020929190829003018186803b15801561139657600080fd5b505afa1580156113aa573d6000803e3d6000fd5b505050506040513d60208110156113c057600080fd5b505130600090815260016020526040812054905491925090806113e9838663ffffffff611ca516565b816113f057fe5b04995080611404838563ffffffff611ca516565b8161140b57fe5b04985060008a11801561141e5750600089115b6114595760405162461bcd60e51b81526004018080602001828103825260288152602001806122c86028913960400191505060405180910390fd5b6114633083612139565b61146e868c8c611b0b565b611479858c8b611b0b565b604080516370a0823160e01b815230600482015290516001600160a01b038816916370a08231916024808301926020929190829003018186803b1580156114bf57600080fd5b505afa1580156114d3573d6000803e3d6000fd5b505050506040513d60208110156114e957600080fd5b5051604080516370a0823160e01b815230600482015290519195506001600160a01b038716916370a0823191602480820192602092909190829003018186803b15801561153557600080fd5b505afa158015611549573d6000803e3d6000fd5b505050506040513d602081101561155f57600080fd5b5051925061156f84848a8a611d58565b604080518b8152602081018b905281516001600160a01b038e169233927fdccd412f0b1252819cb1fd330b93224ca42612892bb3f4f789976e6d81936496929081900390910190a350505050505050506001600c81905550915091565b604051806040016040528060068152602001652aa72496ab1960d11b81525081565b6000610bdd338484611f7f565b6103e881565b600c5460011461164c576040805162461bcd60e51b8152602060048201526011602482015270155b9a5cddd85c158c8e881313d0d2d151607a1b604482015290519081900360640190fd5b6000600c55600654600754600854604080516370a0823160e01b815230600482015290516001600160a01b0394851694909316926116fb92859287926116f6926001600160701b03169185916370a0823191602480820192602092909190829003018186803b1580156116be57600080fd5b505afa1580156116d2573d6000803e3d6000fd5b505050506040513d60208110156116e857600080fd5b50519063ffffffff611d0816565b611b0b565b600854604080516370a0823160e01b8152306004820152905161176292849287926116f692600160701b90046001600160701b0316916001600160a01b038616916370a0823191602480820192602092909190829003018186803b1580156116be57600080fd5b50506001600c5550565b6005546001600160a01b031681565b6007546001600160a01b031681565b428410156117d4576040805162461bcd60e51b8152602060048201526012602482015271155b9a5cddd85c158c8e881156141254915160721b604482015290519081900360640190fd5b6003546001600160a01b0380891660008181526004602090815260408083208054600180820190925582517f6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c98186015280840196909652958d166060860152608085018c905260a085019590955260c08085018b90528151808603909101815260e08501825280519083012061190160f01b6101008601526101028501969096526101228085019690965280518085039096018652610142840180825286519683019690962095839052610162840180825286905260ff89166101828501526101a284018890526101c28401879052519193926101e280820193601f1981019281900390910190855afa1580156118ef573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b038116158015906119255750886001600160a01b0316816001600160a01b0316145b611976576040805162461bcd60e51b815260206004820152601c60248201527f556e697377617056323a20494e56414c49445f5349474e415455524500000000604482015290519081900360640190fd5b611981898989611f1d565b505050505050505050565b600260209081526000928352604080842090915290825290205481565b600c546001146119f4576040805162461bcd60e51b8152602060048201526011602482015270155b9a5cddd85c158c8e881313d0d2d151607a1b604482015290519081900360640190fd5b6000600c55600654604080516370a0823160e01b81523060048201529051611b04926001600160a01b0316916370a08231916024808301926020929190829003018186803b158015611a4557600080fd5b505afa158015611a59573d6000803e3d6000fd5b505050506040513d6020811015611a6f57600080fd5b5051600754604080516370a0823160e01b815230600482015290516001600160a01b03909216916370a0823191602480820192602092909190829003018186803b158015611abc57600080fd5b505afa158015611ad0573d6000803e3d6000fd5b505050506040513d6020811015611ae657600080fd5b50516008546001600160701b0380821691600160701b900416611d58565b6001600c55565b604080518082018252601981527f7472616e7366657228616464726573732c75696e74323536290000000000000060209182015281516001600160a01b0385811660248301526044808301869052845180840390910181526064909201845291810180516001600160e01b031663a9059cbb60e01b1781529251815160009460609489169392918291908083835b60208310611bb85780518252601f199092019160209182019101611b99565b6001836020036101000a0380198251168184511680821785525050505050509050019150506000604051808303816000865af19150503d8060008114611c1a576040519150601f19603f3d011682016040523d82523d6000602084013e611c1f565b606091505b5091509150818015611c4d575080511580611c4d5750808060200190516020811015611c4a57600080fd5b50515b611c9e576040805162461bcd60e51b815260206004820152601a60248201527f556e697377617056323a205452414e534645525f4641494c4544000000000000604482015290519081900360640190fd5b5050505050565b6000811580611cc057505080820282828281611cbd57fe5b04145b610be1576040805162461bcd60e51b815260206004820152601460248201527364732d6d6174682d6d756c2d6f766572666c6f7760601b604482015290519081900360640190fd5b80820382811115610be1576040805162461bcd60e51b815260206004820152601560248201527464732d6d6174682d7375622d756e646572666c6f7760581b604482015290519081900360640190fd5b6001600160701b038411801590611d7657506001600160701b038311155b611dbd576040805162461bcd60e51b8152602060048201526013602482015272556e697377617056323a204f564552464c4f5760681b604482015290519081900360640190fd5b60085463ffffffff42811691600160e01b90048116820390811615801590611ded57506001600160701b03841615155b8015611e0157506001600160701b03831615155b15611e72578063ffffffff16611e2f85611e1a866121d7565b6001600160e01b03169063ffffffff6121e916565b600980546001600160e01b03929092169290920201905563ffffffff8116611e5a84611e1a876121d7565b600a80546001600160e01b0392909216929092020190555b600880546dffffffffffffffffffffffffffff19166001600160701b03888116919091176dffffffffffffffffffffffffffff60701b1916600160701b8883168102919091176001600160e01b0316600160e01b63ffffffff871602179283905560408051848416815291909304909116602082015281517f1c411e9a96e071241c2f21f7726b17ae89e3cab4c78be50e062b03a9fffbbad1929181900390910190a1505050505050565b6001600160a01b03808416600081815260026020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b038316600090815260016020526040902054611fa8908263ffffffff611d0816565b6001600160a01b038085166000908152600160205260408082209390935590841681522054611fdd908263ffffffff61220e16565b6001600160a01b0380841660008181526001602090815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b6000600382111561207c575080600160028204015b818110156120765780915060028182858161206557fe5b04018161206e57fe5b04905061204e565b50612086565b8115612086575060015b919050565b60005461209e908263ffffffff61220e16565b60009081556001600160a01b0383168152600160205260409020546120c9908263ffffffff61220e16565b6001600160a01b03831660008181526001602090815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b60008183106121305781612132565b825b9392505050565b6001600160a01b038216600090815260016020526040902054612162908263ffffffff611d0816565b6001600160a01b0383166000908152600160205260408120919091555461218f908263ffffffff611d0816565b60009081556040805183815290516001600160a01b038516917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef919081900360200190a35050565b6001600160701b0316600160701b0290565b60006001600160701b0382166001600160e01b0384168161220657fe5b049392505050565b80820182811015610be1576040805162461bcd60e51b815260206004820152601460248201527364732d6d6174682d6164642d6f766572666c6f7760601b604482015290519081900360640190fdfe556e697377617056323a20494e53554646494349454e545f4f55545055545f414d4f554e54556e697377617056323a20494e53554646494349454e545f494e5055545f414d4f554e54556e697377617056323a20494e53554646494349454e545f4c4951554944495459556e697377617056323a20494e53554646494349454e545f4c49515549444954595f4255524e4544556e697377617056323a20494e53554646494349454e545f4c49515549444954595f4d494e544544a265627a7a72315820139498b59ec2ffcb0d817b1a81a14ddafc52983bd0b0d457fa8864310b91cb5964736f6c63430005100032454950373132446f6d61696e28737472696e67206e616d652c737472696e672076657273696f6e2c75696e7432353620636861696e49642c6164647265737320766572696679696e67436f6e747261637429a265627a7a72315820037874f46bb25196070c2ee0573739214164438bb09018782fde75022e6223cc64736f6c63430005100032

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106100885760003560e01c8063c0d786551161005b578063c0d7865514610152578063c9c6539614610178578063e6a43905146101a6578063f887ea40146101d457610088565b80631e3dd18b1461008d578063574f2ba3146100c65780635e1c75e1146100e0578063abd7c1861461011a575b600080fd5b6100aa600480360360208110156100a357600080fd5b50356101dc565b604080516001600160a01b039092168252519081900360200190f35b6100ce610203565b60408051918252519081900360200190f35b610118600480360360608110156100f657600080fd5b506001600160a01b038135811691602081013582169160409091013516610209565b005b6101186004803603606081101561013057600080fd5b506001600160a01b0381358116916020810135821691604090910135166102cf565b6101186004803603602081101561016857600080fd5b50356001600160a01b0316610378565b6100aa6004803603604081101561018e57600080fd5b506001600160a01b03813581169160200135166103f0565b6100aa600480360360408110156101bc57600080fd5b506001600160a01b0381358116916020013516610775565b6100aa61079b565b600281815481106101e957fe5b6000918252602090912001546001600160a01b0316905081565b60025490565b6000546001600160a01b0316331461025f576040805162461bcd60e51b81526020600482015260146024820152732ab734b9bbb0b82b191d102327a92124a22222a760611b604482015290519081900360640190fd5b604080516310e059a160e11b81526001600160a01b03848116600483015283811660248301529151918516916321c0b3429160448082019260009290919082900301818387803b1580156102b257600080fd5b505af11580156102c6573d6000803e3d6000fd5b50505050505050565b6000546001600160a01b03163314610325576040805162461bcd60e51b81526020600482015260146024820152732ab734b9bbb0b82b191d102327a92124a22222a760611b604482015290519081900360640190fd5b60408051630926bb4560e31b81526001600160a01b0384811660048301528381166024830152915191851691634935da289160448082019260009290919082900301818387803b1580156102b257600080fd5b6000546001600160a01b031633146103ce576040805162461bcd60e51b81526020600482015260146024820152732ab734b9bbb0b82b191d102327a92124a22222a760611b604482015290519081900360640190fd5b600080546001600160a01b0319166001600160a01b0392909216919091179055565b600080546001600160a01b03163314610447576040805162461bcd60e51b81526020600482015260146024820152732ab734b9bbb0b82b191d102327a92124a22222a760611b604482015290519081900360640190fd5b816001600160a01b0316836001600160a01b031614156104ae576040805162461bcd60e51b815260206004820152601e60248201527f556e697377617056323a204944454e544943414c5f4144445245535345530000604482015290519081900360640190fd5b600080836001600160a01b0316856001600160a01b0316106104d15783856104d4565b84845b90925090506001600160a01b038216610534576040805162461bcd60e51b815260206004820152601760248201527f556e697377617056323a205a45524f5f41444452455353000000000000000000604482015290519081900360640190fd5b6001600160a01b038281166000908152600160209081526040808320858516845290915290205416156105a7576040805162461bcd60e51b8152602060048201526016602482015275556e697377617056323a20504149525f45584953545360501b604482015290519081900360640190fd5b6060604051806020016105b9906107aa565b6020820181038252601f19601f8201166040525090506000838360405160200180836001600160a01b03166001600160a01b031660601b8152601401826001600160a01b03166001600160a01b031660601b815260140192505050604051602081830303815290604052805190602001209050808251602084016000f56040805163485cc95560e01b81526001600160a01b038781166004830152868116602483015291519297509087169163485cc9559160448082019260009290919082900301818387803b15801561068c57600080fd5b505af11580156106a0573d6000803e3d6000fd5b505050506001600160a01b0384811660008181526001602081815260408084208987168086529083528185208054978d166001600160a01b0319988916811790915584845282862087875284528286208054891682179055600280549586018155958690527f405787fa12a823e0f2b7631cc41b3ba8828b3321ca811111fa75cd3aa3bb5ace90940180549097168417909655925483519283529082015281517f0d3648bd0f6ba80134a33ba9275ac585d9d315f0ad8355cddefde31afa28d0e9929181900390910190a35050505092915050565b60016020908152600092835260408084209091529082529020546001600160a01b031681565b6000546001600160a01b031681565b6124a3806107b88339019056fe60806040526001600c5534801561001557600080fd5b5060405146908060526124518239604080519182900360520182208282018252600a8352692ab734b9bbb0b8102b1960b11b6020938401528151808301835260018152603160f81b908401528151808401919091527fbfcc8ef98ffbf7b6c3fec7bf5185b566b9863e35a9d83acd49ad6824b5969738818301527fc89efdaa54c0f20c7adf612882df0950f5a951637e0307cdcb4c672f298b8bc6606082015260808101949094523060a0808601919091528151808603909101815260c09094019052825192019190912060035550600580546001600160a01b0319163317905561234c806101056000396000f3fe608060405234801561001057600080fd5b50600436106101cf5760003560e01c80635a3d549311610104578063a9059cbb116100a2578063d21220a711610071578063d21220a7146105b6578063d505accf146105be578063dd62ed3e1461060f578063fff6cae91461063d576101cf565b8063a9059cbb14610554578063ba9a7a5614610580578063bc25cf7714610588578063c45a0155146105ae576101cf565b80637464fc3d116100de5780637464fc3d146104df5780637ecebe00146104e757806389afcb441461050d57806395d89b411461054c576101cf565b80635a3d54931461048b5780636a6278421461049357806370a08231146104b9576101cf565b806323b872dd116101715780633644e5151161014b5780633644e5151461041f578063485cc955146104275780634935da28146104555780635909c0d514610483576101cf565b806323b872dd146103c357806330adf81f146103f9578063313ce56714610401576101cf565b8063095ea7b3116101ad578063095ea7b3146103175780630dfe16811461035757806318160ddd1461037b57806321c0b34214610395576101cf565b8063022c0d9f146101d457806306fdde03146102625780630902f1ac146102df575b600080fd5b610260600480360360808110156101ea57600080fd5b8135916020810135916001600160a01b03604083013516919081019060808101606082013564010000000081111561022157600080fd5b82018360208201111561023357600080fd5b8035906020019184600183028401116401000000008311171561025557600080fd5b509092509050610645565b005b61026a610b80565b6040805160208082528351818301528351919283929083019185019080838360005b838110156102a457818101518382015260200161028c565b50505050905090810190601f1680156102d15780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6102e7610ba6565b604080516001600160701b03948516815292909316602083015263ffffffff168183015290519081900360600190f35b6103436004803603604081101561032d57600080fd5b506001600160a01b038135169060200135610bd0565b604080519115158252519081900360200190f35b61035f610be7565b604080516001600160a01b039092168252519081900360200190f35b610383610bf6565b60408051918252519081900360200190f35b610260600480360360408110156103ab57600080fd5b506001600160a01b0381358116916020013516610bfc565b610343600480360360608110156103d957600080fd5b506001600160a01b03813581169160208101359091169060400135610d56565b610383610df0565b610409610e14565b6040805160ff9092168252519081900360200190f35b610383610e19565b6102606004803603604081101561043d57600080fd5b506001600160a01b0381358116916020013516610e1f565b6102606004803603604081101561046b57600080fd5b506001600160a01b0381358116916020013516610ea3565b610383610f6d565b610383610f73565b610383600480360360208110156104a957600080fd5b50356001600160a01b0316610f79565b610383600480360360208110156104cf57600080fd5b50356001600160a01b031661123a565b61038361124c565b610383600480360360208110156104fd57600080fd5b50356001600160a01b0316611252565b6105336004803603602081101561052357600080fd5b50356001600160a01b0316611264565b6040805192835260208301919091528051918290030190f35b61026a6115cc565b6103436004803603604081101561056a57600080fd5b506001600160a01b0381351690602001356115ee565b6103836115fb565b6102606004803603602081101561059e57600080fd5b50356001600160a01b0316611601565b61035f61176c565b61035f61177b565b610260600480360360e08110156105d457600080fd5b506001600160a01b03813581169160208101359091169060408101359060608101359060ff6080820135169060a08101359060c0013561178a565b6103836004803603604081101561062557600080fd5b506001600160a01b038135811691602001351661198c565b6102606119a9565b600c54600114610690576040805162461bcd60e51b8152602060048201526011602482015270155b9a5cddd85c158c8e881313d0d2d151607a1b604482015290519081900360640190fd5b6000600c55841515806106a35750600084115b6106de5760405162461bcd60e51b815260040180806020018281038252602581526020018061225e6025913960400191505060405180910390fd5b6000806106e9610ba6565b5091509150816001600160701b03168710801561070e5750806001600160701b031686105b6107495760405162461bcd60e51b81526004018080602001828103825260218152602001806122a76021913960400191505060405180910390fd5b60065460075460009182916001600160a01b039182169190811690891682148015906107875750806001600160a01b0316896001600160a01b031614155b6107d0576040805162461bcd60e51b8152602060048201526015602482015274556e697377617056323a20494e56414c49445f544f60581b604482015290519081900360640190fd5b8a156107e1576107e1828a8d611b0b565b89156107f2576107f2818a8c611b0b565b86156108ad57886001600160a01b03166310d1e85c338d8d8c8c6040518663ffffffff1660e01b815260040180866001600160a01b03166001600160a01b03168152602001858152602001848152602001806020018281038252848482818152602001925080828437600081840152601f19601f8201169050808301925050509650505050505050600060405180830381600087803b15801561089457600080fd5b505af11580156108a8573d6000803e3d6000fd5b505050505b604080516370a0823160e01b815230600482015290516001600160a01b038416916370a08231916024808301926020929190829003018186803b1580156108f357600080fd5b505afa158015610907573d6000803e3d6000fd5b505050506040513d602081101561091d57600080fd5b5051604080516370a0823160e01b815230600482015290519195506001600160a01b038316916370a0823191602480820192602092909190829003018186803b15801561096957600080fd5b505afa15801561097d573d6000803e3d6000fd5b505050506040513d602081101561099357600080fd5b5051925060009150506001600160701b0385168a900383116109b65760006109c5565b89856001600160701b03160383035b9050600089856001600160701b03160383116109e25760006109f1565b89856001600160701b03160383035b90506000821180610a025750600081115b610a3d5760405162461bcd60e51b81526004018080602001828103825260248152602001806122836024913960400191505060405180910390fd5b6000610a71610a5384600363ffffffff611ca516565b610a65876103e863ffffffff611ca516565b9063ffffffff611d0816565b90506000610a89610a5384600363ffffffff611ca516565b9050610aba620f4240610aae6001600160701b038b8116908b1663ffffffff611ca516565b9063ffffffff611ca516565b610aca838363ffffffff611ca516565b1015610b0c576040805162461bcd60e51b815260206004820152600c60248201526b556e697377617056323a204b60a01b604482015290519081900360640190fd5b5050610b1a84848888611d58565b60408051838152602081018390528082018d9052606081018c905290516001600160a01b038b169133917fd78ad95fa46c994b6551d0da85fc275fe613ce37657fb8d5e3d130840159d8229181900360800190a350506001600c55505050505050505050565b6040518060400160405280600a8152602001692ab734b9bbb0b8102b1960b11b81525081565b6008546001600160701b0380821692600160701b830490911691600160e01b900463ffffffff1690565b6000610bdd338484611f1d565b5060015b92915050565b6006546001600160a01b031681565b60005481565b6005546001600160a01b03163314610c52576040805162461bcd60e51b81526020600482015260146024820152732ab734b9bbb0b82b191d102327a92124a22222a760611b604482015290519081900360640190fd5b6006546001600160a01b03838116911614801590610c7e57506007546001600160a01b03838116911614155b610cc6576040805162461bcd60e51b81526020600482015260146024820152732ab734b9bbb0b82b191d102327a92124a22222a760611b604482015290519081900360640190fd5b610d528282846001600160a01b03166370a08231306040518263ffffffff1660e01b815260040180826001600160a01b03166001600160a01b0316815260200191505060206040518083038186803b158015610d2157600080fd5b505afa158015610d35573d6000803e3d6000fd5b505050506040513d6020811015610d4b57600080fd5b5051611b0b565b5050565b6001600160a01b038316600090815260026020908152604080832033845290915281205460001914610ddb576001600160a01b0384166000908152600260209081526040808320338452909152902054610db6908363ffffffff611d0816565b6001600160a01b03851660009081526002602090815260408083203384529091529020555b610de6848484611f7f565b5060019392505050565b7f6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c981565b601281565b60035481565b6005546001600160a01b03163314610e75576040805162461bcd60e51b81526020600482015260146024820152732ab734b9bbb0b82b191d102327a92124a22222a760611b604482015290519081900360640190fd5b600680546001600160a01b039384166001600160a01b03199182161790915560078054929093169116179055565b6005546001600160a01b03163314610ef9576040805162461bcd60e51b81526020600482015260146024820152732ab734b9bbb0b82b191d102327a92124a22222a760611b604482015290519081900360640190fd5b816001600160a01b0316630e49072d826040518263ffffffff1660e01b815260040180826001600160a01b03166001600160a01b03168152602001915050600060405180830381600087803b158015610f5157600080fd5b505af1158015610f65573d6000803e3d6000fd5b505050505050565b60095481565b600a5481565b6000600c54600114610fc6576040805162461bcd60e51b8152602060048201526011602482015270155b9a5cddd85c158c8e881313d0d2d151607a1b604482015290519081900360640190fd5b6000600c81905580610fd6610ba6565b50600654604080516370a0823160e01b815230600482015290519395509193506000926001600160a01b03909116916370a08231916024808301926020929190829003018186803b15801561102a57600080fd5b505afa15801561103e573d6000803e3d6000fd5b505050506040513d602081101561105457600080fd5b5051600754604080516370a0823160e01b815230600482015290519293506000926001600160a01b03909216916370a0823191602480820192602092909190829003018186803b1580156110a757600080fd5b505afa1580156110bb573d6000803e3d6000fd5b505050506040513d60208110156110d157600080fd5b5051905060006110f0836001600160701b03871663ffffffff611d0816565b9050600061110d836001600160701b03871663ffffffff611d0816565b6000549091508061114a576111366103e8610a65611131868663ffffffff611ca516565b612039565b975061114560006103e861208b565b611199565b6111966001600160701b038816611167858463ffffffff611ca516565b8161116e57fe5b046001600160701b038816611189858563ffffffff611ca516565b8161119057fe5b04612121565b97505b600088116111d85760405162461bcd60e51b81526004018080602001828103825260288152602001806122f06028913960400191505060405180910390fd5b6111e2898961208b565b6111ee85858989611d58565b6040805184815260208101849052815133927f4c209b5fc8ad50758f13e2e1088ba56a560dff690a1c6fef26394f4c03821c4f928290030190a250506001600c55509395945050505050565b60016020526000908152604090205481565b600b5481565b60046020526000908152604090205481565b600080600c546001146112b2576040805162461bcd60e51b8152602060048201526011602482015270155b9a5cddd85c158c8e881313d0d2d151607a1b604482015290519081900360640190fd5b6000600c819055806112c2610ba6565b50600654600754604080516370a0823160e01b815230600482015290519496509294506001600160a01b039182169391169160009184916370a08231916024808301926020929190829003018186803b15801561131e57600080fd5b505afa158015611332573d6000803e3d6000fd5b505050506040513d602081101561134857600080fd5b5051604080516370a0823160e01b815230600482015290519192506000916001600160a01b038516916370a08231916024808301926020929190829003018186803b15801561139657600080fd5b505afa1580156113aa573d6000803e3d6000fd5b505050506040513d60208110156113c057600080fd5b505130600090815260016020526040812054905491925090806113e9838663ffffffff611ca516565b816113f057fe5b04995080611404838563ffffffff611ca516565b8161140b57fe5b04985060008a11801561141e5750600089115b6114595760405162461bcd60e51b81526004018080602001828103825260288152602001806122c86028913960400191505060405180910390fd5b6114633083612139565b61146e868c8c611b0b565b611479858c8b611b0b565b604080516370a0823160e01b815230600482015290516001600160a01b038816916370a08231916024808301926020929190829003018186803b1580156114bf57600080fd5b505afa1580156114d3573d6000803e3d6000fd5b505050506040513d60208110156114e957600080fd5b5051604080516370a0823160e01b815230600482015290519195506001600160a01b038716916370a0823191602480820192602092909190829003018186803b15801561153557600080fd5b505afa158015611549573d6000803e3d6000fd5b505050506040513d602081101561155f57600080fd5b5051925061156f84848a8a611d58565b604080518b8152602081018b905281516001600160a01b038e169233927fdccd412f0b1252819cb1fd330b93224ca42612892bb3f4f789976e6d81936496929081900390910190a350505050505050506001600c81905550915091565b604051806040016040528060068152602001652aa72496ab1960d11b81525081565b6000610bdd338484611f7f565b6103e881565b600c5460011461164c576040805162461bcd60e51b8152602060048201526011602482015270155b9a5cddd85c158c8e881313d0d2d151607a1b604482015290519081900360640190fd5b6000600c55600654600754600854604080516370a0823160e01b815230600482015290516001600160a01b0394851694909316926116fb92859287926116f6926001600160701b03169185916370a0823191602480820192602092909190829003018186803b1580156116be57600080fd5b505afa1580156116d2573d6000803e3d6000fd5b505050506040513d60208110156116e857600080fd5b50519063ffffffff611d0816565b611b0b565b600854604080516370a0823160e01b8152306004820152905161176292849287926116f692600160701b90046001600160701b0316916001600160a01b038616916370a0823191602480820192602092909190829003018186803b1580156116be57600080fd5b50506001600c5550565b6005546001600160a01b031681565b6007546001600160a01b031681565b428410156117d4576040805162461bcd60e51b8152602060048201526012602482015271155b9a5cddd85c158c8e881156141254915160721b604482015290519081900360640190fd5b6003546001600160a01b0380891660008181526004602090815260408083208054600180820190925582517f6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c98186015280840196909652958d166060860152608085018c905260a085019590955260c08085018b90528151808603909101815260e08501825280519083012061190160f01b6101008601526101028501969096526101228085019690965280518085039096018652610142840180825286519683019690962095839052610162840180825286905260ff89166101828501526101a284018890526101c28401879052519193926101e280820193601f1981019281900390910190855afa1580156118ef573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b038116158015906119255750886001600160a01b0316816001600160a01b0316145b611976576040805162461bcd60e51b815260206004820152601c60248201527f556e697377617056323a20494e56414c49445f5349474e415455524500000000604482015290519081900360640190fd5b611981898989611f1d565b505050505050505050565b600260209081526000928352604080842090915290825290205481565b600c546001146119f4576040805162461bcd60e51b8152602060048201526011602482015270155b9a5cddd85c158c8e881313d0d2d151607a1b604482015290519081900360640190fd5b6000600c55600654604080516370a0823160e01b81523060048201529051611b04926001600160a01b0316916370a08231916024808301926020929190829003018186803b158015611a4557600080fd5b505afa158015611a59573d6000803e3d6000fd5b505050506040513d6020811015611a6f57600080fd5b5051600754604080516370a0823160e01b815230600482015290516001600160a01b03909216916370a0823191602480820192602092909190829003018186803b158015611abc57600080fd5b505afa158015611ad0573d6000803e3d6000fd5b505050506040513d6020811015611ae657600080fd5b50516008546001600160701b0380821691600160701b900416611d58565b6001600c55565b604080518082018252601981527f7472616e7366657228616464726573732c75696e74323536290000000000000060209182015281516001600160a01b0385811660248301526044808301869052845180840390910181526064909201845291810180516001600160e01b031663a9059cbb60e01b1781529251815160009460609489169392918291908083835b60208310611bb85780518252601f199092019160209182019101611b99565b6001836020036101000a0380198251168184511680821785525050505050509050019150506000604051808303816000865af19150503d8060008114611c1a576040519150601f19603f3d011682016040523d82523d6000602084013e611c1f565b606091505b5091509150818015611c4d575080511580611c4d5750808060200190516020811015611c4a57600080fd5b50515b611c9e576040805162461bcd60e51b815260206004820152601a60248201527f556e697377617056323a205452414e534645525f4641494c4544000000000000604482015290519081900360640190fd5b5050505050565b6000811580611cc057505080820282828281611cbd57fe5b04145b610be1576040805162461bcd60e51b815260206004820152601460248201527364732d6d6174682d6d756c2d6f766572666c6f7760601b604482015290519081900360640190fd5b80820382811115610be1576040805162461bcd60e51b815260206004820152601560248201527464732d6d6174682d7375622d756e646572666c6f7760581b604482015290519081900360640190fd5b6001600160701b038411801590611d7657506001600160701b038311155b611dbd576040805162461bcd60e51b8152602060048201526013602482015272556e697377617056323a204f564552464c4f5760681b604482015290519081900360640190fd5b60085463ffffffff42811691600160e01b90048116820390811615801590611ded57506001600160701b03841615155b8015611e0157506001600160701b03831615155b15611e72578063ffffffff16611e2f85611e1a866121d7565b6001600160e01b03169063ffffffff6121e916565b600980546001600160e01b03929092169290920201905563ffffffff8116611e5a84611e1a876121d7565b600a80546001600160e01b0392909216929092020190555b600880546dffffffffffffffffffffffffffff19166001600160701b03888116919091176dffffffffffffffffffffffffffff60701b1916600160701b8883168102919091176001600160e01b0316600160e01b63ffffffff871602179283905560408051848416815291909304909116602082015281517f1c411e9a96e071241c2f21f7726b17ae89e3cab4c78be50e062b03a9fffbbad1929181900390910190a1505050505050565b6001600160a01b03808416600081815260026020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b038316600090815260016020526040902054611fa8908263ffffffff611d0816565b6001600160a01b038085166000908152600160205260408082209390935590841681522054611fdd908263ffffffff61220e16565b6001600160a01b0380841660008181526001602090815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b6000600382111561207c575080600160028204015b818110156120765780915060028182858161206557fe5b04018161206e57fe5b04905061204e565b50612086565b8115612086575060015b919050565b60005461209e908263ffffffff61220e16565b60009081556001600160a01b0383168152600160205260409020546120c9908263ffffffff61220e16565b6001600160a01b03831660008181526001602090815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b60008183106121305781612132565b825b9392505050565b6001600160a01b038216600090815260016020526040902054612162908263ffffffff611d0816565b6001600160a01b0383166000908152600160205260408120919091555461218f908263ffffffff611d0816565b60009081556040805183815290516001600160a01b038516917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef919081900360200190a35050565b6001600160701b0316600160701b0290565b60006001600160701b0382166001600160e01b0384168161220657fe5b049392505050565b80820182811015610be1576040805162461bcd60e51b815260206004820152601460248201527364732d6d6174682d6164642d6f766572666c6f7760601b604482015290519081900360640190fdfe556e697377617056323a20494e53554646494349454e545f4f55545055545f414d4f554e54556e697377617056323a20494e53554646494349454e545f494e5055545f414d4f554e54556e697377617056323a20494e53554646494349454e545f4c4951554944495459556e697377617056323a20494e53554646494349454e545f4c49515549444954595f4255524e4544556e697377617056323a20494e53554646494349454e545f4c49515549444954595f4d494e544544a265627a7a72315820139498b59ec2ffcb0d817b1a81a14ddafc52983bd0b0d457fa8864310b91cb5964736f6c63430005100032454950373132446f6d61696e28737472696e67206e616d652c737472696e672076657273696f6e2c75696e7432353620636861696e49642c6164647265737320766572696679696e67436f6e747261637429a265627a7a72315820037874f46bb25196070c2ee0573739214164438bb09018782fde75022e6223cc64736f6c63430005100032

Deployed Bytecode Sourcemap

17986:2065:0:-;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;17986:2065:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18144:25;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;18144:25:0;;:::i;:::-;;;;-1:-1:-1;;;;;18144:25:0;;;;;;;;;;;;;;18339:96;;;:::i;:::-;;;;;;;;;;;;;;;;18447:185;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;18447:185:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;18644:219;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;18644:219:0;;;;;;;;;;;;;;;;;;;:::i;19904:144::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;19904:144:0;-1:-1:-1;;;;;19904:144:0;;:::i;18871:1025::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;18871:1025:0;;;;;;;;;;:::i;18075:62::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;18075:62:0;;;;;;;;;;:::i;18045:21::-;;;:::i;18144:25::-;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;18144:25:0;;-1:-1:-1;18144:25:0;:::o;18339:96::-;18412:8;:15;18339:96;:::o;18447:185::-;18545:6;;-1:-1:-1;;;;;18545:6:0;18531:10;:20;18523:53;;;;;-1:-1:-1;;;18523:53:0;;;;;;;;;;;;-1:-1:-1;;;18523:53:0;;;;;;;;;;;;;;;18587:37;;;-1:-1:-1;;;18587:37:0;;-1:-1:-1;;;;;18587:37:0;;;;;;;;;;;;;;;;:26;;;;;;:37;;;;;-1:-1:-1;;18587:37:0;;;;;;;;-1:-1:-1;18587:26:0;:37;;;5:2:-1;;;;30:1;27;20:12;5:2;18587:37:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;18587:37:0;;;;18447:185;;;:::o;18644:219::-;18759:6;;-1:-1:-1;;;;;18759:6:0;18745:10;:20;18737:53;;;;;-1:-1:-1;;;18737:53:0;;;;;;;;;;;;-1:-1:-1;;;18737:53:0;;;;;;;;;;;;;;;18801:54;;;-1:-1:-1;;;18801:54:0;;-1:-1:-1;;;;;18801:54:0;;;;;;;;;;;;;;;;:43;;;;;;:54;;;;;-1:-1:-1;;18801:54:0;;;;;;;;-1:-1:-1;18801:43:0;:54;;;5:2:-1;;;;30:1;27;20:12;19904:144:0;19982:6;;-1:-1:-1;;;;;19982:6:0;19968:10;:20;19960:53;;;;;-1:-1:-1;;;19960:53:0;;;;;;;;;;;;-1:-1:-1;;;19960:53:0;;;;;;;;;;;;;;;20024:6;:16;;-1:-1:-1;;;;;;20024:16:0;-1:-1:-1;;;;;20024:16:0;;;;;;;;;;19904:144::o;18871:1025::-;18939:12;18986:6;;-1:-1:-1;;;;;18986:6:0;18972:10;:20;18964:53;;;;;-1:-1:-1;;;18964:53:0;;;;;;;;;;;;-1:-1:-1;;;18964:53:0;;;;;;;;;;;;;;;19046:6;-1:-1:-1;;;;;19036:16:0;:6;-1:-1:-1;;;;;19036:16:0;;;19028:59;;;;;-1:-1:-1;;;19028:59:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;19099:14;19115;19142:6;-1:-1:-1;;;;;19133:15:0;:6;-1:-1:-1;;;;;19133:15:0;;:53;;19171:6;19179;19133:53;;;19152:6;19160;19133:53;19098:88;;-1:-1:-1;19098:88:0;-1:-1:-1;;;;;;19205:20:0;;19197:56;;;;;-1:-1:-1;;;19197:56:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;19272:15:0;;;19307:1;19272:15;;;:7;:15;;;;;;;;:23;;;;;;;;;;;;:37;19264:72;;;;;-1:-1:-1;;;19264:72:0;;;;;;;;;;;;-1:-1:-1;;;19264:72:0;;;;;;;;;;;;;;;19377:21;19401:32;;;;;;;;:::i;:::-;41:4:-1;34:5;30:16;25:3;21:26;14:5;7:41;87:2;83:7;78:2;73:3;69:12;65:26;61:2;54:38;19401:32:0;19377:56;;19444:12;19486:6;19494;19469:32;;;;;;-1:-1:-1;;;;;19469:32:0;-1:-1:-1;;;;;19469:32:0;;;;;;;;-1:-1:-1;;;;;19469:32:0;-1:-1:-1;;;;;19469:32:0;;;;;;;;;;;;;49:4:-1;39:7;30;26:21;22:32;13:7;6:49;19469:32:0;;;19459:43;;;;;;19444:58;;19592:4;19581:8;19575:15;19570:2;19560:8;19556:17;19553:1;19545:52;19618:47;;;-1:-1:-1;;;19618:47:0;;-1:-1:-1;;;;;19618:47:0;;;;;;;;;;;;;;;;19537:60;;-1:-1:-1;19618:31:0;;;;;;:47;;;;;-1:-1:-1;;19618:47:0;;;;;;;;-1:-1:-1;19618:31:0;:47;;;5:2:-1;;;;30:1;27;20:12;5:2;19618:47:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;-1:-1;;;;;;;;;19676:15:0;;;;;;;:7;:15;;;;;;;;:23;;;;;;;;;;;;:30;;;;;-1:-1:-1;;;;;;19676:30:0;;;;;;;;19717:15;;;;;;:23;;;;;;;;:30;;;;;;;;19803:8;27:10:-1;;23:18;;;45:23;;19803:19:0;;;;;;;;;;;;;;;;;;19872:15;;19838:50;;;;;;;;;;;;;;;;;;;;;;18871:1025;;;;;;;;:::o;18075:62::-;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;18075:62:0;;:::o;18045:21::-;;;-1:-1:-1;;;;;18045:21:0;;:::o;17986:2065::-;;;;;;;;:::o

Swarm Source

bzzr://037874f46bb25196070c2ee0573739214164438bb09018782fde75022e6223cc

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.