CRO Price: $0.09 (+0.81%)

Contract

0x3B44B2a187a7b3824131F8db5a74194D0a42Fc15

Overview

CRO Balance

Cronos Chain LogoCronos Chain LogoCronos Chain Logo0 CRO

CRO Value

$0.00

Multichain Info

No addresses found
Age:1H
Amount:Between 1-10
Reset Filter

Transaction Hash
Method
Block
From
To

There are no matching entries

> 10 Internal Transactions found.

Latest 25 internal transactions (View All)

Parent Transaction Hash Block From To
191764132025-04-23 14:16:467 mins ago1745417806
VVS Finance: Factory
 Contract Creation0 CRO
191742002025-04-23 10:48:473 hrs ago1745405327
VVS Finance: Factory
 Contract Creation0 CRO
191741272025-04-23 10:41:533 hrs ago1745404913
VVS Finance: Factory
 Contract Creation0 CRO
191740972025-04-23 10:39:063 hrs ago1745404746
VVS Finance: Factory
 Contract Creation0 CRO
191740522025-04-23 10:34:513 hrs ago1745404491
VVS Finance: Factory
 Contract Creation0 CRO
191740042025-04-23 10:30:223 hrs ago1745404222
VVS Finance: Factory
 Contract Creation0 CRO
191739562025-04-23 10:25:503 hrs ago1745403950
VVS Finance: Factory
 Contract Creation0 CRO
191738412025-04-23 10:15:034 hrs ago1745403303
VVS Finance: Factory
 Contract Creation0 CRO
191737952025-04-23 10:10:434 hrs ago1745403043
VVS Finance: Factory
 Contract Creation0 CRO
191715612025-04-23 6:40:507 hrs ago1745390450
VVS Finance: Factory
 Contract Creation0 CRO
191709842025-04-23 5:46:368 hrs ago1745387196
VVS Finance: Factory
 Contract Creation0 CRO
191658412025-04-22 21:41:2116 hrs ago1745358081
VVS Finance: Factory
 Contract Creation0 CRO
191650872025-04-22 20:30:1817 hrs ago1745353818
VVS Finance: Factory
 Contract Creation0 CRO
191632682025-04-22 17:38:5320 hrs ago1745343533
VVS Finance: Factory
 Contract Creation0 CRO
191631782025-04-22 17:30:2320 hrs ago1745343023
VVS Finance: Factory
 Contract Creation0 CRO
191535052025-04-22 2:17:4636 hrs ago1745288266
VVS Finance: Factory
 Contract Creation0 CRO
191531372025-04-22 1:43:0836 hrs ago1745286188
VVS Finance: Factory
 Contract Creation0 CRO
191529812025-04-22 1:28:2936 hrs ago1745285309
VVS Finance: Factory
 Contract Creation0 CRO
191511552025-04-21 22:36:2239 hrs ago1745274982
VVS Finance: Factory
 Contract Creation0 CRO
191510532025-04-21 22:26:4839 hrs ago1745274408
VVS Finance: Factory
 Contract Creation0 CRO
191491352025-04-21 19:26:0642 hrs ago1745263566
VVS Finance: Factory
 Contract Creation0 CRO
191452982025-04-21 13:24:442 days ago1745241884
VVS Finance: Factory
 Contract Creation0 CRO
191417952025-04-21 7:55:082 days ago1745222108
VVS Finance: Factory
 Contract Creation0 CRO
191417442025-04-21 7:50:202 days ago1745221820
VVS Finance: Factory
 Contract Creation0 CRO
191417252025-04-21 7:48:322 days ago1745221712
VVS Finance: Factory
 Contract Creation0 CRO
View All Internal Transactions
Loading...
Loading

Contract Source Code Verified (Exact Match)

Contract Name:
VVSFactory

Compiler Version
v0.5.16+commit.9c3226ce

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at cronoscan.com on 2022-01-11
*/

// File contracts/interfaces/IVVSFactory.sol

pragma solidity >=0.5.0;

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

    function feeTo() external view returns (address);
    function feeToSetter() external view returns (address);

    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 setFeeTo(address) external;
    function setFeeToSetter(address) external;
}


// File contracts/interfaces/IVVSPair.sol

pragma solidity >=0.5.0;

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

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

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

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

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

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

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

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

    function initialize(address, address) external;
}


// File @openzeppelin/contracts/cryptography/[email protected]

pragma solidity ^0.5.0;

/**
 * @dev Elliptic Curve Digital Signature Algorithm (ECDSA) operations.
 *
 * These functions can be used to verify that a message was signed by the holder
 * of the private keys of a given address.
 */
library ECDSA {
    /**
     * @dev Returns the address that signed a hashed message (`hash`) with
     * `signature`. This address can then be used for verification purposes.
     *
     * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures:
     * this function rejects them by requiring the `s` value to be in the lower
     * half order, and the `v` value to be either 27 or 28.
     *
     * NOTE: This call _does not revert_ if the signature is invalid, or
     * if the signer is otherwise unable to be retrieved. In those scenarios,
     * the zero address is returned.
     *
     * IMPORTANT: `hash` _must_ be the result of a hash operation for the
     * verification to be secure: it is possible to craft signatures that
     * recover to arbitrary addresses for non-hashed data. A safe way to ensure
     * this is by receiving a hash of the original message (which may otherwise
     * be too long), and then calling {toEthSignedMessageHash} on it.
     */
    function recover(bytes32 hash, bytes memory signature) internal pure returns (address) {
        // Check the signature length
        if (signature.length != 65) {
            return (address(0));
        }

        // Divide the signature in r, s and v variables
        bytes32 r;
        bytes32 s;
        uint8 v;

        // ecrecover takes the signature parameters, and the only way to get them
        // currently is to use assembly.
        // solhint-disable-next-line no-inline-assembly
        assembly {
            r := mload(add(signature, 0x20))
            s := mload(add(signature, 0x40))
            v := byte(0, mload(add(signature, 0x60)))
        }

        // EIP-2 still allows signature malleability for ecrecover(). Remove this possibility and make the signature
        // unique. Appendix F in the Ethereum Yellow paper (https://ethereum.github.io/yellowpaper/paper.pdf), defines
        // the valid range for s in (281): 0 < s < secp256k1n ÷ 2 + 1, and for v in (282): v ∈ {27, 28}. Most
        // signatures from current libraries generate a unique signature with an s-value in the lower half order.
        //
        // If your library generates malleable signatures, such as s-values in the upper range, calculate a new s-value
        // with 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEBAAEDCE6AF48A03BBFD25E8CD0364141 - s1 and flip v from 27 to 28 or
        // vice versa. If your library also generates signatures with 0/1 for v instead 27/28, add 27 to v to accept
        // these malleable signatures as well.
        if (uint256(s) > 0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF5D576E7357A4501DDFE92F46681B20A0) {
            return address(0);
        }

        if (v != 27 && v != 28) {
            return address(0);
        }

        // If the signature is valid (and not malleable), return the signer address
        return ecrecover(hash, v, r, s);
    }

    /**
     * @dev Returns an Ethereum Signed Message, created from a `hash`. This
     * replicates the behavior of the
     * https://github.com/ethereum/wiki/wiki/JSON-RPC#eth_sign[`eth_sign`]
     * JSON-RPC method.
     *
     * See {recover}.
     */
    function toEthSignedMessageHash(bytes32 hash) internal pure returns (bytes32) {
        // 32 is the length in bytes of hash,
        // enforced by the type signature above
        return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n32", hash));
    }
}


// File contracts/interfaces/IVVSERC20.sol

pragma solidity >=0.5.0;

interface IVVSERC20 {
    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;
}


// File contracts/libraries/SafeMath.sol

pragma solidity =0.5.16;

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


// File contracts/VVSERC20.sol

pragma solidity =0.5.16;



contract VVSERC20 is IVVSERC20 {
    using SafeMath for uint;
    using ECDSA for bytes32;

    string public constant name = 'VVS Finance LPs';
    string public constant symbol = 'VVS-LP';
    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, 'VVS: EXPIRED');
        bytes32 digest = keccak256(
            abi.encodePacked(
                '\x19\x01',
                DOMAIN_SEPARATOR,
                keccak256(abi.encode(PERMIT_TYPEHASH, owner, spender, value, nonces[owner]++, deadline))
            )
        );
        address recoveredAddress = digest.recover(abi.encodePacked(r, s, v));
        require(recoveredAddress != address(0) && recoveredAddress == owner, 'VVS: INVALID_SIGNATURE');
        _approve(owner, spender, value);
    }
}


// File contracts/libraries/Math.sol

pragma solidity =0.5.16;

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


// File contracts/libraries/UQ112x112.sol

pragma solidity =0.5.16;

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


// File contracts/interfaces/IERC20.sol

pragma solidity >=0.5.0;

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


// File contracts/interfaces/IVVSCallee.sol

pragma solidity >=0.5.0;

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


// File contracts/VVSPair.sol

pragma solidity =0.5.16;







contract VVSPair is IVVSPair, VVSERC20 {
    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, 'VVS: 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))), 'VVS: 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, 'VVS: FORBIDDEN'); // sufficient check
        token0 = _token0;
        token1 = _token1;
    }

    // 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), 'VVS: 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);
    }

    // if fee is on, mint liquidity equivalent to 1/3th of the growth in sqrt(k)
    function _mintFee(uint112 _reserve0, uint112 _reserve1) private returns (bool feeOn) {
        address feeTo = IVVSFactory(factory).feeTo();
        feeOn = feeTo != address(0);
        uint _kLast = kLast; // gas savings
        if (feeOn) {
            if (_kLast != 0) {
                uint rootK = Math.sqrt(uint(_reserve0).mul(_reserve1));
                uint rootKLast = Math.sqrt(_kLast);
                if (rootK > rootKLast) {
                    uint numerator = totalSupply.mul(rootK.sub(rootKLast));
                    uint denominator = rootK.mul(2).add(rootKLast);
                    uint 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 (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);

        bool feeOn = _mintFee(_reserve0, _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, 'VVS: INSUFFICIENT_LIQUIDITY_MINTED');
        _mint(to, liquidity);

        _update(balance0, balance1, _reserve0, _reserve1);
        if (feeOn) kLast = uint(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 (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)];

        bool feeOn = _mintFee(_reserve0, _reserve1);
        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, 'VVS: 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 = uint(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(uint amount0Out, uint amount1Out, address to, bytes calldata data) external lock {
        require(amount0Out > 0 || amount1Out > 0, 'VVS: INSUFFICIENT_OUTPUT_AMOUNT');
        (uint112 _reserve0, uint112 _reserve1,) = getReserves(); // gas savings
        require(amount0Out < _reserve0 && amount1Out < _reserve1, 'VVS: 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, 'VVS: 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) IVVSCallee(to).vvsCall(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, 'VVS: 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), 'VVS: 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 contracts/VVSFactory.sol

pragma solidity =0.5.16;


contract VVSFactory is IVVSFactory {
    bytes32 public constant INIT_CODE_PAIR_HASH = keccak256(abi.encodePacked(type(VVSPair).creationCode));

    address public feeTo;
    address public feeToSetter;

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

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

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

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

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

    function setFeeToSetter(address _feeToSetter) external {
        require(msg.sender == feeToSetter, 'VVS: FORBIDDEN');
        feeToSetter = _feeToSetter;
    }
}

Contract Security Audit

Contract ABI

API
[{"inputs":[{"internalType":"address","name":"_feeToSetter","type":"address"}],"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":[],"name":"INIT_CODE_PAIR_HASH","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"payable":false,"stateMutability":"view","type":"function"},{"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":"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":[],"name":"feeTo","outputs":[{"internalType":"address","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"feeToSetter","outputs":[{"internalType":"address","name":"","type":"address"}],"payable":false,"stateMutability":"view","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":"_feeTo","type":"address"}],"name":"setFeeTo","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"_feeToSetter","type":"address"}],"name":"setFeeToSetter","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"}]

608060405234801561001057600080fd5b50604051612b93380380612b938339818101604052602081101561003357600080fd5b5051600180546001600160a01b0319166001600160a01b03909216919091179055612b30806100636000396000f3fe608060405234801561001057600080fd5b50600436106100935760003560e01c80635855a25a116100665780635855a25a146100fb578063a2e74af614610103578063c9c653961461012b578063e6a4390514610159578063f46901ed1461018757610093565b8063017e7e5814610098578063094b7415146100bc5780631e3dd18b146100c4578063574f2ba3146100e1575b600080fd5b6100a06101ad565b604080516001600160a01b039092168252519081900360200190f35b6100a06101bc565b6100a0600480360360208110156100da57600080fd5b50356101cb565b6100e96101f2565b60408051918252519081900360200190f35b6100e96101f8565b6101296004803603602081101561011957600080fd5b50356001600160a01b031661028b565b005b6100a06004803603604081101561014157600080fd5b506001600160a01b03813581169160200135166102fd565b6100a06004803603604081101561016f57600080fd5b506001600160a01b038135811691602001351661061c565b6101296004803603602081101561019d57600080fd5b50356001600160a01b0316610642565b6000546001600160a01b031681565b6001546001600160a01b031681565b600381815481106101d857fe5b6000918252602090912001546001600160a01b0316905081565b60035490565b604051610207602082016106b4565b6020820181038252601f19601f820116604052506040516020018082805190602001908083835b6020831061024d5780518252601f19909201916020918201910161022e565b6001836020036101000a0380198251168184511680821785525050505050509050019150506040516020818303038152906040528051906020012081565b6001546001600160a01b031633146102db576040805162461bcd60e51b815260206004820152600e60248201526d2b2b299d102327a92124a22222a760911b604482015290519081900360640190fd5b600180546001600160a01b0319166001600160a01b0392909216919091179055565b6000816001600160a01b0316836001600160a01b03161415610366576040805162461bcd60e51b815260206004820152601860248201527f5656533a204944454e544943414c5f4144445245535345530000000000000000604482015290519081900360640190fd5b600080836001600160a01b0316856001600160a01b03161061038957838561038c565b84845b90925090506001600160a01b0382166103e0576040805162461bcd60e51b81526020600482015260116024820152705656533a205a45524f5f4144445245535360781b604482015290519081900360640190fd5b6001600160a01b0382811660009081526002602090815260408083208585168452909152902054161561044d576040805162461bcd60e51b815260206004820152601060248201526f5656533a20504149525f45584953545360801b604482015290519081900360640190fd5b60606040518060200161045f906106b4565b6020820181038252601f19601f8201166040525090506000838360405160200180836001600160a01b03166001600160a01b031660601b8152601401826001600160a01b03166001600160a01b031660601b815260140192505050604051602081830303815290604052805190602001209050808251602084016000f56040805163485cc95560e01b81526001600160a01b038781166004830152868116602483015291519297509087169163485cc9559160448082019260009290919082900301818387803b15801561053257600080fd5b505af1158015610546573d6000803e3d6000fd5b505050506001600160a01b0384811660008181526002602081815260408084208987168086529083528185208054978d166001600160a01b031998891681179091559383528185208686528352818520805488168517905560038054600181018255958190527fc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b90950180549097168417909655925483519283529082015281517f0d3648bd0f6ba80134a33ba9275ac585d9d315f0ad8355cddefde31afa28d0e9929181900390910190a35050505092915050565b60026020908152600092835260408084209091529082529020546001600160a01b031681565b6001546001600160a01b03163314610692576040805162461bcd60e51b815260206004820152600e60248201526d2b2b299d102327a92124a22222a760911b604482015290519081900360640190fd5b600080546001600160a01b0319166001600160a01b0392909216919091179055565b61243a806106c28339019056fe60806040526001600c5534801561001557600080fd5b5060405146908060526123e88239604080519182900360520182208282018252600f83526e5656532046696e616e6365204c507360881b6020938401528151808301835260018152603160f81b908401528151808401919091527f3eda781f037316d70a177e5570b1789bc5c46e49abd4bb04f4d69c9ce086fbd0818301527fc89efdaa54c0f20c7adf612882df0950f5a951637e0307cdcb4c672f298b8bc6606082015260808101949094523060a0808601919091528151808603909101815260c09094019052825192019190912060035550600580546001600160a01b031916331790556122de8061010a6000396000f3fe608060405234801561001057600080fd5b50600436106101a95760003560e01c80636a627842116100f9578063ba9a7a5611610097578063d21220a711610071578063d21220a714610534578063d505accf1461053c578063dd62ed3e1461058d578063fff6cae9146105bb576101a9565b8063ba9a7a56146104fe578063bc25cf7714610506578063c45a01551461052c576101a9565b80637ecebe00116100d35780637ecebe001461046557806389afcb441461048b57806395d89b41146104ca578063a9059cbb146104d2576101a9565b80636a6278421461041157806370a08231146104375780637464fc3d1461045d576101a9565b806323b872dd116101665780633644e515116101405780633644e515146103cb578063485cc955146103d35780635909c0d5146104015780635a3d549314610409576101a9565b806323b872dd1461036f57806330adf81f146103a5578063313ce567146103ad576101a9565b8063022c0d9f146101ae57806306fdde031461023c5780630902f1ac146102b9578063095ea7b3146102f15780630dfe16811461033157806318160ddd14610355575b600080fd5b61023a600480360360808110156101c457600080fd5b8135916020810135916001600160a01b0360408301351691908101906080810160608201356401000000008111156101fb57600080fd5b82018360208201111561020d57600080fd5b8035906020019184600183028401116401000000008311171561022f57600080fd5b5090925090506105c3565b005b610244610b2e565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561027e578181015183820152602001610266565b50505050905090810190601f1680156102ab5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6102c1610b59565b604080516001600160701b03948516815292909316602083015263ffffffff168183015290519081900360600190f35b61031d6004803603604081101561030757600080fd5b506001600160a01b038135169060200135610b83565b604080519115158252519081900360200190f35b610339610b9a565b604080516001600160a01b039092168252519081900360200190f35b61035d610ba9565b60408051918252519081900360200190f35b61031d6004803603606081101561038557600080fd5b506001600160a01b03813581169160208101359091169060400135610baf565b61035d610c49565b6103b5610c6d565b6040805160ff9092168252519081900360200190f35b61035d610c72565b61023a600480360360408110156103e957600080fd5b506001600160a01b0381358116916020013516610c78565b61035d610cf6565b61035d610cfc565b61035d6004803603602081101561042757600080fd5b50356001600160a01b0316610d02565b61035d6004803603602081101561044d57600080fd5b50356001600160a01b0316610ffc565b61035d61100e565b61035d6004803603602081101561047b57600080fd5b50356001600160a01b0316611014565b6104b1600480360360208110156104a157600080fd5b50356001600160a01b0316611026565b6040805192835260208301919091528051918290030190f35b6102446113c6565b61031d600480360360408110156104e857600080fd5b506001600160a01b0381351690602001356113e8565b61035d6113f5565b61023a6004803603602081101561051c57600080fd5b50356001600160a01b03166113fb565b610339611560565b61033961156f565b61023a600480360360e081101561055257600080fd5b506001600160a01b03813581169160208101359091169060408101359060608101359060ff6080820135169060a08101359060c0013561157e565b61035d600480360360408110156105a357600080fd5b506001600160a01b038135811691602001351661175d565b61023a61177a565b600c54600114610608576040805162461bcd60e51b815260206004820152600b60248201526a159594ce881313d0d2d15160aa1b604482015290519081900360640190fd5b6000600c558415158061061b5750600084115b61066c576040805162461bcd60e51b815260206004820152601f60248201527f5656533a20494e53554646494349454e545f4f55545055545f414d4f554e5400604482015290519081900360640190fd5b600080610677610b59565b5091509150816001600160701b03168710801561069c5750806001600160701b031686105b6106ed576040805162461bcd60e51b815260206004820152601b60248201527f5656533a20494e53554646494349454e545f4c49515549444954590000000000604482015290519081900360640190fd5b60065460075460009182916001600160a01b0391821691908116908916821480159061072b5750806001600160a01b0316896001600160a01b031614155b61076e576040805162461bcd60e51b815260206004820152600f60248201526e5656533a20494e56414c49445f544f60881b604482015290519081900360640190fd5b8a1561077f5761077f828a8d6118d6565b891561079057610790818a8c6118d6565b861561084b57886001600160a01b03166338d7b3cb338d8d8c8c6040518663ffffffff1660e01b815260040180866001600160a01b03166001600160a01b03168152602001858152602001848152602001806020018281038252848482818152602001925080828437600081840152601f19601f8201169050808301925050509650505050505050600060405180830381600087803b15801561083257600080fd5b505af1158015610846573d6000803e3d6000fd5b505050505b604080516370a0823160e01b815230600482015290516001600160a01b038416916370a08231916024808301926020929190829003018186803b15801561089157600080fd5b505afa1580156108a5573d6000803e3d6000fd5b505050506040513d60208110156108bb57600080fd5b5051604080516370a0823160e01b815230600482015290519195506001600160a01b038316916370a0823191602480820192602092909190829003018186803b15801561090757600080fd5b505afa15801561091b573d6000803e3d6000fd5b505050506040513d602081101561093157600080fd5b5051925060009150506001600160701b0385168a90038311610954576000610963565b89856001600160701b03160383035b9050600089856001600160701b031603831161098057600061098f565b89856001600160701b03160383035b905060008211806109a05750600081115b6109f1576040805162461bcd60e51b815260206004820152601e60248201527f5656533a20494e53554646494349454e545f494e5055545f414d4f554e540000604482015290519081900360640190fd5b6000610a25610a0784600363ffffffff611a6716565b610a19876103e863ffffffff611a6716565b9063ffffffff611aca16565b90506000610a3d610a0784600363ffffffff611a6716565b9050610a6e620f4240610a626001600160701b038b8116908b1663ffffffff611a6716565b9063ffffffff611a6716565b610a7e838363ffffffff611a6716565b1015610aba576040805162461bcd60e51b81526020600482015260066024820152655656533a204b60d01b604482015290519081900360640190fd5b5050610ac884848888611b1a565b60408051838152602081018390528082018d9052606081018c905290516001600160a01b038b169133917fd78ad95fa46c994b6551d0da85fc275fe613ce37657fb8d5e3d130840159d8229181900360800190a350506001600c55505050505050505050565b6040518060400160405280600f81526020016e5656532046696e616e6365204c507360881b81525081565b6008546001600160701b0380821692600160701b830490911691600160e01b900463ffffffff1690565b6000610b90338484611cd9565b5060015b92915050565b6006546001600160a01b031681565b60005481565b6001600160a01b038316600090815260026020908152604080832033845290915281205460001914610c34576001600160a01b0384166000908152600260209081526040808320338452909152902054610c0f908363ffffffff611aca16565b6001600160a01b03851660009081526002602090815260408083203384529091529020555b610c3f848484611d3b565b5060019392505050565b7f6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c981565b601281565b60035481565b6005546001600160a01b03163314610cc8576040805162461bcd60e51b815260206004820152600e60248201526d2b2b299d102327a92124a22222a760911b604482015290519081900360640190fd5b600680546001600160a01b039384166001600160a01b03199182161790915560078054929093169116179055565b60095481565b600a5481565b6000600c54600114610d49576040805162461bcd60e51b815260206004820152600b60248201526a159594ce881313d0d2d15160aa1b604482015290519081900360640190fd5b6000600c81905580610d59610b59565b50600654604080516370a0823160e01b815230600482015290519395509193506000926001600160a01b03909116916370a08231916024808301926020929190829003018186803b158015610dad57600080fd5b505afa158015610dc1573d6000803e3d6000fd5b505050506040513d6020811015610dd757600080fd5b5051600754604080516370a0823160e01b815230600482015290519293506000926001600160a01b03909216916370a0823191602480820192602092909190829003018186803b158015610e2a57600080fd5b505afa158015610e3e573d6000803e3d6000fd5b505050506040513d6020811015610e5457600080fd5b505190506000610e73836001600160701b03871663ffffffff611aca16565b90506000610e90836001600160701b03871663ffffffff611aca16565b90506000610e9e8787611df5565b60005490915080610edb57610ec76103e8610a19610ec2878763ffffffff611a6716565b611f53565b9850610ed660006103e8611fa5565b610f2a565b610f276001600160701b038916610ef8868463ffffffff611a6716565b81610eff57fe5b046001600160701b038916610f1a868563ffffffff611a6716565b81610f2157fe5b0461203b565b98505b60008911610f695760405162461bcd60e51b81526004018080602001828103825260228152602001806122666022913960400191505060405180910390fd5b610f738a8a611fa5565b610f7f86868a8a611b1a565b8115610faf57600854610fab906001600160701b0380821691600160701b90041663ffffffff611a6716565b600b555b6040805185815260208101859052815133927f4c209b5fc8ad50758f13e2e1088ba56a560dff690a1c6fef26394f4c03821c4f928290030190a250506001600c5550949695505050505050565b60016020526000908152604090205481565b600b5481565b60046020526000908152604090205481565b600080600c5460011461106e576040805162461bcd60e51b815260206004820152600b60248201526a159594ce881313d0d2d15160aa1b604482015290519081900360640190fd5b6000600c8190558061107e610b59565b50600654600754604080516370a0823160e01b815230600482015290519496509294506001600160a01b039182169391169160009184916370a08231916024808301926020929190829003018186803b1580156110da57600080fd5b505afa1580156110ee573d6000803e3d6000fd5b505050506040513d602081101561110457600080fd5b5051604080516370a0823160e01b815230600482015290519192506000916001600160a01b038516916370a08231916024808301926020929190829003018186803b15801561115257600080fd5b505afa158015611166573d6000803e3d6000fd5b505050506040513d602081101561117c57600080fd5b50513060009081526001602052604081205491925061119b8888611df5565b600054909150806111b2848763ffffffff611a6716565b816111b957fe5b049a50806111cd848663ffffffff611a6716565b816111d457fe5b04995060008b1180156111e7575060008a115b6112225760405162461bcd60e51b81526004018080602001828103825260228152602001806122886022913960400191505060405180910390fd5b61122c3084612053565b611237878d8d6118d6565b611242868d8c6118d6565b604080516370a0823160e01b815230600482015290516001600160a01b038916916370a08231916024808301926020929190829003018186803b15801561128857600080fd5b505afa15801561129c573d6000803e3d6000fd5b505050506040513d60208110156112b257600080fd5b5051604080516370a0823160e01b815230600482015290519196506001600160a01b038816916370a0823191602480820192602092909190829003018186803b1580156112fe57600080fd5b505afa158015611312573d6000803e3d6000fd5b505050506040513d602081101561132857600080fd5b5051935061133885858b8b611b1a565b811561136857600854611364906001600160701b0380821691600160701b90041663ffffffff611a6716565b600b555b604080518c8152602081018c905281516001600160a01b038f169233927fdccd412f0b1252819cb1fd330b93224ca42612892bb3f4f789976e6d81936496929081900390910190a35050505050505050506001600c81905550915091565b6040518060400160405280600681526020016505656532d4c560d41b81525081565b6000610b90338484611d3b565b6103e881565b600c54600114611440576040805162461bcd60e51b815260206004820152600b60248201526a159594ce881313d0d2d15160aa1b604482015290519081900360640190fd5b6000600c55600654600754600854604080516370a0823160e01b815230600482015290516001600160a01b0394851694909316926114ef92859287926114ea926001600160701b03169185916370a0823191602480820192602092909190829003018186803b1580156114b257600080fd5b505afa1580156114c6573d6000803e3d6000fd5b505050506040513d60208110156114dc57600080fd5b50519063ffffffff611aca16565b6118d6565b600854604080516370a0823160e01b8152306004820152905161155692849287926114ea92600160701b90046001600160701b0316916001600160a01b038616916370a0823191602480820192602092909190829003018186803b1580156114b257600080fd5b50506001600c5550565b6005546001600160a01b031681565b6007546001600160a01b031681565b428410156115c2576040805162461bcd60e51b815260206004820152600c60248201526b159594ce881156141254915160a21b604482015290519081900360640190fd5b6003546001600160a01b03808916600081815260046020908152604080832080546001810190915581517f6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c98185015280830195909552948c166060850152608084018b905260a084019490945260c08084018a90528451808503909101815260e08401855280519082012061190160f01b6101008501526101028401959095526101228084019590955283518084039095018552610142830184528451940193909320610162820186905261018282018590526001600160f81b031960f888901b166101a283015282516101838184030181526101a39092019092529091906116d290839063ffffffff6120f116565b90506001600160a01b038116158015906116fd5750886001600160a01b0316816001600160a01b0316145b611747576040805162461bcd60e51b81526020600482015260166024820152755656533a20494e56414c49445f5349474e415455524560501b604482015290519081900360640190fd5b611752898989611cd9565b505050505050505050565b600260209081526000928352604080842090915290825290205481565b600c546001146117bf576040805162461bcd60e51b815260206004820152600b60248201526a159594ce881313d0d2d15160aa1b604482015290519081900360640190fd5b6000600c55600654604080516370a0823160e01b815230600482015290516118cf926001600160a01b0316916370a08231916024808301926020929190829003018186803b15801561181057600080fd5b505afa158015611824573d6000803e3d6000fd5b505050506040513d602081101561183a57600080fd5b5051600754604080516370a0823160e01b815230600482015290516001600160a01b03909216916370a0823191602480820192602092909190829003018186803b15801561188757600080fd5b505afa15801561189b573d6000803e3d6000fd5b505050506040513d60208110156118b157600080fd5b50516008546001600160701b0380821691600160701b900416611b1a565b6001600c55565b604080518082018252601981527f7472616e7366657228616464726573732c75696e74323536290000000000000060209182015281516001600160a01b0385811660248301526044808301869052845180840390910181526064909201845291810180516001600160e01b031663a9059cbb60e01b1781529251815160009460609489169392918291908083835b602083106119835780518252601f199092019160209182019101611964565b6001836020036101000a0380198251168184511680821785525050505050509050019150506000604051808303816000865af19150503d80600081146119e5576040519150601f19603f3d011682016040523d82523d6000602084013e6119ea565b606091505b5091509150818015611a18575080511580611a185750808060200190516020811015611a1557600080fd5b50515b611a60576040805162461bcd60e51b8152602060048201526014602482015273159594ce881514905394d1915497d1905253115160621b604482015290519081900360640190fd5b5050505050565b6000811580611a8257505080820282828281611a7f57fe5b04145b610b94576040805162461bcd60e51b815260206004820152601460248201527364732d6d6174682d6d756c2d6f766572666c6f7760601b604482015290519081900360640190fd5b80820382811115610b94576040805162461bcd60e51b815260206004820152601560248201527464732d6d6174682d7375622d756e646572666c6f7760581b604482015290519081900360640190fd5b6001600160701b038411801590611b3857506001600160701b038311155b611b79576040805162461bcd60e51b815260206004820152600d60248201526c5656533a204f564552464c4f5760981b604482015290519081900360640190fd5b60085463ffffffff42811691600160e01b90048116820390811615801590611ba957506001600160701b03841615155b8015611bbd57506001600160701b03831615155b15611c2e578063ffffffff16611beb85611bd6866121df565b6001600160e01b03169063ffffffff6121f116565b600980546001600160e01b03929092169290920201905563ffffffff8116611c1684611bd6876121df565b600a80546001600160e01b0392909216929092020190555b600880546dffffffffffffffffffffffffffff19166001600160701b03888116919091176dffffffffffffffffffffffffffff60701b1916600160701b8883168102919091176001600160e01b0316600160e01b63ffffffff871602179283905560408051848416815291909304909116602082015281517f1c411e9a96e071241c2f21f7726b17ae89e3cab4c78be50e062b03a9fffbbad1929181900390910190a1505050505050565b6001600160a01b03808416600081815260026020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b038316600090815260016020526040902054611d64908263ffffffff611aca16565b6001600160a01b038085166000908152600160205260408082209390935590841681522054611d99908263ffffffff61221616565b6001600160a01b0380841660008181526001602090815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b600080600560009054906101000a90046001600160a01b03166001600160a01b031663017e7e586040518163ffffffff1660e01b815260040160206040518083038186803b158015611e4657600080fd5b505afa158015611e5a573d6000803e3d6000fd5b505050506040513d6020811015611e7057600080fd5b5051600b546001600160a01b038216158015945091925090611f3f578015611f3a576000611eb3610ec26001600160701b0388811690881663ffffffff611a6716565b90506000611ec083611f53565b905080821115611f37576000611eee611edf848463ffffffff611aca16565b6000549063ffffffff611a6716565b90506000611f1383611f0786600263ffffffff611a6716565b9063ffffffff61221616565b90506000818381611f2057fe5b0490508015611f3357611f338782611fa5565b5050505b50505b611f4b565b8015611f4b576000600b555b505092915050565b60006003821115611f96575080600160028204015b81811015611f9057809150600281828581611f7f57fe5b040181611f8857fe5b049050611f68565b50611fa0565b8115611fa0575060015b919050565b600054611fb8908263ffffffff61221616565b60009081556001600160a01b038316815260016020526040902054611fe3908263ffffffff61221616565b6001600160a01b03831660008181526001602090815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b600081831061204a578161204c565b825b9392505050565b6001600160a01b03821660009081526001602052604090205461207c908263ffffffff611aca16565b6001600160a01b038316600090815260016020526040812091909155546120a9908263ffffffff611aca16565b60009081556040805183815290516001600160a01b038516917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef919081900360200190a35050565b6000815160411461210457506000610b94565b60208201516040830151606084015160001a7f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a082111561214a5760009350505050610b94565b8060ff16601b1415801561216257508060ff16601c14155b156121735760009350505050610b94565b6040805160008152602080820180845289905260ff8416828401526060820186905260808201859052915160019260a0808401939192601f1981019281900390910190855afa1580156121ca573d6000803e3d6000fd5b5050604051601f190151979650505050505050565b6001600160701b0316600160701b0290565b60006001600160701b0382166001600160e01b0384168161220e57fe5b049392505050565b80820182811015610b94576040805162461bcd60e51b815260206004820152601460248201527364732d6d6174682d6164642d6f766572666c6f7760601b604482015290519081900360640190fdfe5656533a20494e53554646494349454e545f4c49515549444954595f4d494e5445445656533a20494e53554646494349454e545f4c49515549444954595f4255524e4544a265627a7a72315820902c49c309bd4a714b52f692ab6ba8d147213a3ac14c441fdec1c26c9338d0ea64736f6c63430005100032454950373132446f6d61696e28737472696e67206e616d652c737472696e672076657273696f6e2c75696e7432353620636861696e49642c6164647265737320766572696679696e67436f6e747261637429a265627a7a723158204dc244864ed174986261c5b8768135d9ea6c49e3dfdf7355dea02617b4bc47cd64736f6c63430005100032000000000000000000000000fcafd61df30886b8fbec3195118e1edf1f30f545

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106100935760003560e01c80635855a25a116100665780635855a25a146100fb578063a2e74af614610103578063c9c653961461012b578063e6a4390514610159578063f46901ed1461018757610093565b8063017e7e5814610098578063094b7415146100bc5780631e3dd18b146100c4578063574f2ba3146100e1575b600080fd5b6100a06101ad565b604080516001600160a01b039092168252519081900360200190f35b6100a06101bc565b6100a0600480360360208110156100da57600080fd5b50356101cb565b6100e96101f2565b60408051918252519081900360200190f35b6100e96101f8565b6101296004803603602081101561011957600080fd5b50356001600160a01b031661028b565b005b6100a06004803603604081101561014157600080fd5b506001600160a01b03813581169160200135166102fd565b6100a06004803603604081101561016f57600080fd5b506001600160a01b038135811691602001351661061c565b6101296004803603602081101561019d57600080fd5b50356001600160a01b0316610642565b6000546001600160a01b031681565b6001546001600160a01b031681565b600381815481106101d857fe5b6000918252602090912001546001600160a01b0316905081565b60035490565b604051610207602082016106b4565b6020820181038252601f19601f820116604052506040516020018082805190602001908083835b6020831061024d5780518252601f19909201916020918201910161022e565b6001836020036101000a0380198251168184511680821785525050505050509050019150506040516020818303038152906040528051906020012081565b6001546001600160a01b031633146102db576040805162461bcd60e51b815260206004820152600e60248201526d2b2b299d102327a92124a22222a760911b604482015290519081900360640190fd5b600180546001600160a01b0319166001600160a01b0392909216919091179055565b6000816001600160a01b0316836001600160a01b03161415610366576040805162461bcd60e51b815260206004820152601860248201527f5656533a204944454e544943414c5f4144445245535345530000000000000000604482015290519081900360640190fd5b600080836001600160a01b0316856001600160a01b03161061038957838561038c565b84845b90925090506001600160a01b0382166103e0576040805162461bcd60e51b81526020600482015260116024820152705656533a205a45524f5f4144445245535360781b604482015290519081900360640190fd5b6001600160a01b0382811660009081526002602090815260408083208585168452909152902054161561044d576040805162461bcd60e51b815260206004820152601060248201526f5656533a20504149525f45584953545360801b604482015290519081900360640190fd5b60606040518060200161045f906106b4565b6020820181038252601f19601f8201166040525090506000838360405160200180836001600160a01b03166001600160a01b031660601b8152601401826001600160a01b03166001600160a01b031660601b815260140192505050604051602081830303815290604052805190602001209050808251602084016000f56040805163485cc95560e01b81526001600160a01b038781166004830152868116602483015291519297509087169163485cc9559160448082019260009290919082900301818387803b15801561053257600080fd5b505af1158015610546573d6000803e3d6000fd5b505050506001600160a01b0384811660008181526002602081815260408084208987168086529083528185208054978d166001600160a01b031998891681179091559383528185208686528352818520805488168517905560038054600181018255958190527fc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b90950180549097168417909655925483519283529082015281517f0d3648bd0f6ba80134a33ba9275ac585d9d315f0ad8355cddefde31afa28d0e9929181900390910190a35050505092915050565b60026020908152600092835260408084209091529082529020546001600160a01b031681565b6001546001600160a01b03163314610692576040805162461bcd60e51b815260206004820152600e60248201526d2b2b299d102327a92124a22222a760911b604482015290519081900360640190fd5b600080546001600160a01b0319166001600160a01b0392909216919091179055565b61243a806106c28339019056fe60806040526001600c5534801561001557600080fd5b5060405146908060526123e88239604080519182900360520182208282018252600f83526e5656532046696e616e6365204c507360881b6020938401528151808301835260018152603160f81b908401528151808401919091527f3eda781f037316d70a177e5570b1789bc5c46e49abd4bb04f4d69c9ce086fbd0818301527fc89efdaa54c0f20c7adf612882df0950f5a951637e0307cdcb4c672f298b8bc6606082015260808101949094523060a0808601919091528151808603909101815260c09094019052825192019190912060035550600580546001600160a01b031916331790556122de8061010a6000396000f3fe608060405234801561001057600080fd5b50600436106101a95760003560e01c80636a627842116100f9578063ba9a7a5611610097578063d21220a711610071578063d21220a714610534578063d505accf1461053c578063dd62ed3e1461058d578063fff6cae9146105bb576101a9565b8063ba9a7a56146104fe578063bc25cf7714610506578063c45a01551461052c576101a9565b80637ecebe00116100d35780637ecebe001461046557806389afcb441461048b57806395d89b41146104ca578063a9059cbb146104d2576101a9565b80636a6278421461041157806370a08231146104375780637464fc3d1461045d576101a9565b806323b872dd116101665780633644e515116101405780633644e515146103cb578063485cc955146103d35780635909c0d5146104015780635a3d549314610409576101a9565b806323b872dd1461036f57806330adf81f146103a5578063313ce567146103ad576101a9565b8063022c0d9f146101ae57806306fdde031461023c5780630902f1ac146102b9578063095ea7b3146102f15780630dfe16811461033157806318160ddd14610355575b600080fd5b61023a600480360360808110156101c457600080fd5b8135916020810135916001600160a01b0360408301351691908101906080810160608201356401000000008111156101fb57600080fd5b82018360208201111561020d57600080fd5b8035906020019184600183028401116401000000008311171561022f57600080fd5b5090925090506105c3565b005b610244610b2e565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561027e578181015183820152602001610266565b50505050905090810190601f1680156102ab5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6102c1610b59565b604080516001600160701b03948516815292909316602083015263ffffffff168183015290519081900360600190f35b61031d6004803603604081101561030757600080fd5b506001600160a01b038135169060200135610b83565b604080519115158252519081900360200190f35b610339610b9a565b604080516001600160a01b039092168252519081900360200190f35b61035d610ba9565b60408051918252519081900360200190f35b61031d6004803603606081101561038557600080fd5b506001600160a01b03813581169160208101359091169060400135610baf565b61035d610c49565b6103b5610c6d565b6040805160ff9092168252519081900360200190f35b61035d610c72565b61023a600480360360408110156103e957600080fd5b506001600160a01b0381358116916020013516610c78565b61035d610cf6565b61035d610cfc565b61035d6004803603602081101561042757600080fd5b50356001600160a01b0316610d02565b61035d6004803603602081101561044d57600080fd5b50356001600160a01b0316610ffc565b61035d61100e565b61035d6004803603602081101561047b57600080fd5b50356001600160a01b0316611014565b6104b1600480360360208110156104a157600080fd5b50356001600160a01b0316611026565b6040805192835260208301919091528051918290030190f35b6102446113c6565b61031d600480360360408110156104e857600080fd5b506001600160a01b0381351690602001356113e8565b61035d6113f5565b61023a6004803603602081101561051c57600080fd5b50356001600160a01b03166113fb565b610339611560565b61033961156f565b61023a600480360360e081101561055257600080fd5b506001600160a01b03813581169160208101359091169060408101359060608101359060ff6080820135169060a08101359060c0013561157e565b61035d600480360360408110156105a357600080fd5b506001600160a01b038135811691602001351661175d565b61023a61177a565b600c54600114610608576040805162461bcd60e51b815260206004820152600b60248201526a159594ce881313d0d2d15160aa1b604482015290519081900360640190fd5b6000600c558415158061061b5750600084115b61066c576040805162461bcd60e51b815260206004820152601f60248201527f5656533a20494e53554646494349454e545f4f55545055545f414d4f554e5400604482015290519081900360640190fd5b600080610677610b59565b5091509150816001600160701b03168710801561069c5750806001600160701b031686105b6106ed576040805162461bcd60e51b815260206004820152601b60248201527f5656533a20494e53554646494349454e545f4c49515549444954590000000000604482015290519081900360640190fd5b60065460075460009182916001600160a01b0391821691908116908916821480159061072b5750806001600160a01b0316896001600160a01b031614155b61076e576040805162461bcd60e51b815260206004820152600f60248201526e5656533a20494e56414c49445f544f60881b604482015290519081900360640190fd5b8a1561077f5761077f828a8d6118d6565b891561079057610790818a8c6118d6565b861561084b57886001600160a01b03166338d7b3cb338d8d8c8c6040518663ffffffff1660e01b815260040180866001600160a01b03166001600160a01b03168152602001858152602001848152602001806020018281038252848482818152602001925080828437600081840152601f19601f8201169050808301925050509650505050505050600060405180830381600087803b15801561083257600080fd5b505af1158015610846573d6000803e3d6000fd5b505050505b604080516370a0823160e01b815230600482015290516001600160a01b038416916370a08231916024808301926020929190829003018186803b15801561089157600080fd5b505afa1580156108a5573d6000803e3d6000fd5b505050506040513d60208110156108bb57600080fd5b5051604080516370a0823160e01b815230600482015290519195506001600160a01b038316916370a0823191602480820192602092909190829003018186803b15801561090757600080fd5b505afa15801561091b573d6000803e3d6000fd5b505050506040513d602081101561093157600080fd5b5051925060009150506001600160701b0385168a90038311610954576000610963565b89856001600160701b03160383035b9050600089856001600160701b031603831161098057600061098f565b89856001600160701b03160383035b905060008211806109a05750600081115b6109f1576040805162461bcd60e51b815260206004820152601e60248201527f5656533a20494e53554646494349454e545f494e5055545f414d4f554e540000604482015290519081900360640190fd5b6000610a25610a0784600363ffffffff611a6716565b610a19876103e863ffffffff611a6716565b9063ffffffff611aca16565b90506000610a3d610a0784600363ffffffff611a6716565b9050610a6e620f4240610a626001600160701b038b8116908b1663ffffffff611a6716565b9063ffffffff611a6716565b610a7e838363ffffffff611a6716565b1015610aba576040805162461bcd60e51b81526020600482015260066024820152655656533a204b60d01b604482015290519081900360640190fd5b5050610ac884848888611b1a565b60408051838152602081018390528082018d9052606081018c905290516001600160a01b038b169133917fd78ad95fa46c994b6551d0da85fc275fe613ce37657fb8d5e3d130840159d8229181900360800190a350506001600c55505050505050505050565b6040518060400160405280600f81526020016e5656532046696e616e6365204c507360881b81525081565b6008546001600160701b0380821692600160701b830490911691600160e01b900463ffffffff1690565b6000610b90338484611cd9565b5060015b92915050565b6006546001600160a01b031681565b60005481565b6001600160a01b038316600090815260026020908152604080832033845290915281205460001914610c34576001600160a01b0384166000908152600260209081526040808320338452909152902054610c0f908363ffffffff611aca16565b6001600160a01b03851660009081526002602090815260408083203384529091529020555b610c3f848484611d3b565b5060019392505050565b7f6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c981565b601281565b60035481565b6005546001600160a01b03163314610cc8576040805162461bcd60e51b815260206004820152600e60248201526d2b2b299d102327a92124a22222a760911b604482015290519081900360640190fd5b600680546001600160a01b039384166001600160a01b03199182161790915560078054929093169116179055565b60095481565b600a5481565b6000600c54600114610d49576040805162461bcd60e51b815260206004820152600b60248201526a159594ce881313d0d2d15160aa1b604482015290519081900360640190fd5b6000600c81905580610d59610b59565b50600654604080516370a0823160e01b815230600482015290519395509193506000926001600160a01b03909116916370a08231916024808301926020929190829003018186803b158015610dad57600080fd5b505afa158015610dc1573d6000803e3d6000fd5b505050506040513d6020811015610dd757600080fd5b5051600754604080516370a0823160e01b815230600482015290519293506000926001600160a01b03909216916370a0823191602480820192602092909190829003018186803b158015610e2a57600080fd5b505afa158015610e3e573d6000803e3d6000fd5b505050506040513d6020811015610e5457600080fd5b505190506000610e73836001600160701b03871663ffffffff611aca16565b90506000610e90836001600160701b03871663ffffffff611aca16565b90506000610e9e8787611df5565b60005490915080610edb57610ec76103e8610a19610ec2878763ffffffff611a6716565b611f53565b9850610ed660006103e8611fa5565b610f2a565b610f276001600160701b038916610ef8868463ffffffff611a6716565b81610eff57fe5b046001600160701b038916610f1a868563ffffffff611a6716565b81610f2157fe5b0461203b565b98505b60008911610f695760405162461bcd60e51b81526004018080602001828103825260228152602001806122666022913960400191505060405180910390fd5b610f738a8a611fa5565b610f7f86868a8a611b1a565b8115610faf57600854610fab906001600160701b0380821691600160701b90041663ffffffff611a6716565b600b555b6040805185815260208101859052815133927f4c209b5fc8ad50758f13e2e1088ba56a560dff690a1c6fef26394f4c03821c4f928290030190a250506001600c5550949695505050505050565b60016020526000908152604090205481565b600b5481565b60046020526000908152604090205481565b600080600c5460011461106e576040805162461bcd60e51b815260206004820152600b60248201526a159594ce881313d0d2d15160aa1b604482015290519081900360640190fd5b6000600c8190558061107e610b59565b50600654600754604080516370a0823160e01b815230600482015290519496509294506001600160a01b039182169391169160009184916370a08231916024808301926020929190829003018186803b1580156110da57600080fd5b505afa1580156110ee573d6000803e3d6000fd5b505050506040513d602081101561110457600080fd5b5051604080516370a0823160e01b815230600482015290519192506000916001600160a01b038516916370a08231916024808301926020929190829003018186803b15801561115257600080fd5b505afa158015611166573d6000803e3d6000fd5b505050506040513d602081101561117c57600080fd5b50513060009081526001602052604081205491925061119b8888611df5565b600054909150806111b2848763ffffffff611a6716565b816111b957fe5b049a50806111cd848663ffffffff611a6716565b816111d457fe5b04995060008b1180156111e7575060008a115b6112225760405162461bcd60e51b81526004018080602001828103825260228152602001806122886022913960400191505060405180910390fd5b61122c3084612053565b611237878d8d6118d6565b611242868d8c6118d6565b604080516370a0823160e01b815230600482015290516001600160a01b038916916370a08231916024808301926020929190829003018186803b15801561128857600080fd5b505afa15801561129c573d6000803e3d6000fd5b505050506040513d60208110156112b257600080fd5b5051604080516370a0823160e01b815230600482015290519196506001600160a01b038816916370a0823191602480820192602092909190829003018186803b1580156112fe57600080fd5b505afa158015611312573d6000803e3d6000fd5b505050506040513d602081101561132857600080fd5b5051935061133885858b8b611b1a565b811561136857600854611364906001600160701b0380821691600160701b90041663ffffffff611a6716565b600b555b604080518c8152602081018c905281516001600160a01b038f169233927fdccd412f0b1252819cb1fd330b93224ca42612892bb3f4f789976e6d81936496929081900390910190a35050505050505050506001600c81905550915091565b6040518060400160405280600681526020016505656532d4c560d41b81525081565b6000610b90338484611d3b565b6103e881565b600c54600114611440576040805162461bcd60e51b815260206004820152600b60248201526a159594ce881313d0d2d15160aa1b604482015290519081900360640190fd5b6000600c55600654600754600854604080516370a0823160e01b815230600482015290516001600160a01b0394851694909316926114ef92859287926114ea926001600160701b03169185916370a0823191602480820192602092909190829003018186803b1580156114b257600080fd5b505afa1580156114c6573d6000803e3d6000fd5b505050506040513d60208110156114dc57600080fd5b50519063ffffffff611aca16565b6118d6565b600854604080516370a0823160e01b8152306004820152905161155692849287926114ea92600160701b90046001600160701b0316916001600160a01b038616916370a0823191602480820192602092909190829003018186803b1580156114b257600080fd5b50506001600c5550565b6005546001600160a01b031681565b6007546001600160a01b031681565b428410156115c2576040805162461bcd60e51b815260206004820152600c60248201526b159594ce881156141254915160a21b604482015290519081900360640190fd5b6003546001600160a01b03808916600081815260046020908152604080832080546001810190915581517f6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c98185015280830195909552948c166060850152608084018b905260a084019490945260c08084018a90528451808503909101815260e08401855280519082012061190160f01b6101008501526101028401959095526101228084019590955283518084039095018552610142830184528451940193909320610162820186905261018282018590526001600160f81b031960f888901b166101a283015282516101838184030181526101a39092019092529091906116d290839063ffffffff6120f116565b90506001600160a01b038116158015906116fd5750886001600160a01b0316816001600160a01b0316145b611747576040805162461bcd60e51b81526020600482015260166024820152755656533a20494e56414c49445f5349474e415455524560501b604482015290519081900360640190fd5b611752898989611cd9565b505050505050505050565b600260209081526000928352604080842090915290825290205481565b600c546001146117bf576040805162461bcd60e51b815260206004820152600b60248201526a159594ce881313d0d2d15160aa1b604482015290519081900360640190fd5b6000600c55600654604080516370a0823160e01b815230600482015290516118cf926001600160a01b0316916370a08231916024808301926020929190829003018186803b15801561181057600080fd5b505afa158015611824573d6000803e3d6000fd5b505050506040513d602081101561183a57600080fd5b5051600754604080516370a0823160e01b815230600482015290516001600160a01b03909216916370a0823191602480820192602092909190829003018186803b15801561188757600080fd5b505afa15801561189b573d6000803e3d6000fd5b505050506040513d60208110156118b157600080fd5b50516008546001600160701b0380821691600160701b900416611b1a565b6001600c55565b604080518082018252601981527f7472616e7366657228616464726573732c75696e74323536290000000000000060209182015281516001600160a01b0385811660248301526044808301869052845180840390910181526064909201845291810180516001600160e01b031663a9059cbb60e01b1781529251815160009460609489169392918291908083835b602083106119835780518252601f199092019160209182019101611964565b6001836020036101000a0380198251168184511680821785525050505050509050019150506000604051808303816000865af19150503d80600081146119e5576040519150601f19603f3d011682016040523d82523d6000602084013e6119ea565b606091505b5091509150818015611a18575080511580611a185750808060200190516020811015611a1557600080fd5b50515b611a60576040805162461bcd60e51b8152602060048201526014602482015273159594ce881514905394d1915497d1905253115160621b604482015290519081900360640190fd5b5050505050565b6000811580611a8257505080820282828281611a7f57fe5b04145b610b94576040805162461bcd60e51b815260206004820152601460248201527364732d6d6174682d6d756c2d6f766572666c6f7760601b604482015290519081900360640190fd5b80820382811115610b94576040805162461bcd60e51b815260206004820152601560248201527464732d6d6174682d7375622d756e646572666c6f7760581b604482015290519081900360640190fd5b6001600160701b038411801590611b3857506001600160701b038311155b611b79576040805162461bcd60e51b815260206004820152600d60248201526c5656533a204f564552464c4f5760981b604482015290519081900360640190fd5b60085463ffffffff42811691600160e01b90048116820390811615801590611ba957506001600160701b03841615155b8015611bbd57506001600160701b03831615155b15611c2e578063ffffffff16611beb85611bd6866121df565b6001600160e01b03169063ffffffff6121f116565b600980546001600160e01b03929092169290920201905563ffffffff8116611c1684611bd6876121df565b600a80546001600160e01b0392909216929092020190555b600880546dffffffffffffffffffffffffffff19166001600160701b03888116919091176dffffffffffffffffffffffffffff60701b1916600160701b8883168102919091176001600160e01b0316600160e01b63ffffffff871602179283905560408051848416815291909304909116602082015281517f1c411e9a96e071241c2f21f7726b17ae89e3cab4c78be50e062b03a9fffbbad1929181900390910190a1505050505050565b6001600160a01b03808416600081815260026020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b038316600090815260016020526040902054611d64908263ffffffff611aca16565b6001600160a01b038085166000908152600160205260408082209390935590841681522054611d99908263ffffffff61221616565b6001600160a01b0380841660008181526001602090815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b600080600560009054906101000a90046001600160a01b03166001600160a01b031663017e7e586040518163ffffffff1660e01b815260040160206040518083038186803b158015611e4657600080fd5b505afa158015611e5a573d6000803e3d6000fd5b505050506040513d6020811015611e7057600080fd5b5051600b546001600160a01b038216158015945091925090611f3f578015611f3a576000611eb3610ec26001600160701b0388811690881663ffffffff611a6716565b90506000611ec083611f53565b905080821115611f37576000611eee611edf848463ffffffff611aca16565b6000549063ffffffff611a6716565b90506000611f1383611f0786600263ffffffff611a6716565b9063ffffffff61221616565b90506000818381611f2057fe5b0490508015611f3357611f338782611fa5565b5050505b50505b611f4b565b8015611f4b576000600b555b505092915050565b60006003821115611f96575080600160028204015b81811015611f9057809150600281828581611f7f57fe5b040181611f8857fe5b049050611f68565b50611fa0565b8115611fa0575060015b919050565b600054611fb8908263ffffffff61221616565b60009081556001600160a01b038316815260016020526040902054611fe3908263ffffffff61221616565b6001600160a01b03831660008181526001602090815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b600081831061204a578161204c565b825b9392505050565b6001600160a01b03821660009081526001602052604090205461207c908263ffffffff611aca16565b6001600160a01b038316600090815260016020526040812091909155546120a9908263ffffffff611aca16565b60009081556040805183815290516001600160a01b038516917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef919081900360200190a35050565b6000815160411461210457506000610b94565b60208201516040830151606084015160001a7f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a082111561214a5760009350505050610b94565b8060ff16601b1415801561216257508060ff16601c14155b156121735760009350505050610b94565b6040805160008152602080820180845289905260ff8416828401526060820186905260808201859052915160019260a0808401939192601f1981019281900390910190855afa1580156121ca573d6000803e3d6000fd5b5050604051601f190151979650505050505050565b6001600160701b0316600160701b0290565b60006001600160701b0382166001600160e01b0384168161220e57fe5b049392505050565b80820182811015610b94576040805162461bcd60e51b815260206004820152601460248201527364732d6d6174682d6164642d6f766572666c6f7760601b604482015290519081900360640190fdfe5656533a20494e53554646494349454e545f4c49515549444954595f4d494e5445445656533a20494e53554646494349454e545f4c49515549444954595f4255524e4544a265627a7a72315820902c49c309bd4a714b52f692ab6ba8d147213a3ac14c441fdec1c26c9338d0ea64736f6c63430005100032454950373132446f6d61696e28737472696e67206e616d652c737472696e672076657273696f6e2c75696e7432353620636861696e49642c6164647265737320766572696679696e67436f6e747261637429a265627a7a723158204dc244864ed174986261c5b8768135d9ea6c49e3dfdf7355dea02617b4bc47cd64736f6c63430005100032

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

000000000000000000000000fcafd61df30886b8fbec3195118e1edf1f30f545

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

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 000000000000000000000000fcafd61df30886b8fbec3195118e1edf1f30f545


Deployed Bytecode Sourcemap

24541:1863:0:-;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;24541:1863:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24693:20;;;:::i;:::-;;;;-1:-1:-1;;;;;24693:20:0;;;;;;;;;;;;;;24720:26;;;:::i;24824:25::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;24824:25:0;;:::i;25046:96::-;;;:::i;:::-;;;;;;;;;;;;;;;;24583:101;;;:::i;26238:163::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;26238:163:0;-1:-1:-1;;;;;26238:163:0;;:::i;:::-;;25150:933;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;25150:933:0;;;;;;;;;;:::i;24755:62::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;24755:62:0;;;;;;;;;;:::i;26091:139::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;26091:139:0;-1:-1:-1;;;;;26091:139:0;;:::i;24693:20::-;;;-1:-1:-1;;;;;24693:20:0;;:::o;24720:26::-;;;-1:-1:-1;;;;;24720:26:0;;:::o;24824:25::-;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;24824:25:0;;-1:-1:-1;24824:25:0;:::o;25046:96::-;25119:8;:15;25046:96;:::o;24583:101::-;24656:26;;;;;;;:::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;24656:26:0;24639:44;;;;;;;;;;;;;;;36:153:-1;66:2;61:3;58:11;36:153;;176:10;;164:23;;-1:-1;;139:12;;;;98:2;89:12;;;;114;36:153;;;274:1;267:3;263:2;259:12;254:3;250:22;246:30;315:4;311:9;305:3;299:10;295:26;356:4;350:3;344:10;340:21;389:7;380;377:20;372:3;365:33;3:399;;;24639:44:0;;;;;;;;;;;49:4:-1;39:7;30;26:21;22:32;13:7;6:49;24639:44:0;;;24629:55;;;;;;24583:101;:::o;26238:163::-;26326:11;;-1:-1:-1;;;;;26326:11:0;26312:10;:25;26304:52;;;;;-1:-1:-1;;;26304:52:0;;;;;;;;;;;;-1:-1:-1;;;26304:52:0;;;;;;;;;;;;;;;26367:11;:26;;-1:-1:-1;;;;;;26367:26:0;-1:-1:-1;;;;;26367:26:0;;;;;;;;;;26238:163::o;25150:933::-;25220:12;25263:6;-1:-1:-1;;;;;25253:16:0;:6;-1:-1:-1;;;;;25253:16:0;;;25245:53;;;;;-1:-1:-1;;;25245:53:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;25310:14;25326;25353:6;-1:-1:-1;;;;;25344:15:0;:6;-1:-1:-1;;;;;25344:15:0;;:53;;25382:6;25390;25344:53;;;25363:6;25371;25344:53;25309:88;;-1:-1:-1;25309:88:0;-1:-1:-1;;;;;;25416:20:0;;25408:50;;;;;-1:-1:-1;;;25408:50:0;;;;;;;;;;;;-1:-1:-1;;;25408:50:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;25477:15:0;;;25512:1;25477:15;;;:7;:15;;;;;;;;:23;;;;;;;;;;;;:37;25469:66;;;;;-1:-1:-1;;;25469:66:0;;;;;;;;;;;;-1:-1:-1;;;25469:66:0;;;;;;;;;;;;;;;25576:21;25600:26;;;;;;;;:::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;25600:26:0;25576:50;;25637:12;25679:6;25687;25662:32;;;;;;-1:-1:-1;;;;;25662:32:0;-1:-1:-1;;;;;25662:32:0;;;;;;;;-1:-1:-1;;;;;25662:32:0;-1:-1:-1;;;;;25662:32:0;;;;;;;;;;;;;49:4:-1;39:7;30;26:21;22:32;13:7;6:49;25662:32:0;;;25652:43;;;;;;25637:58;;25785:4;25774:8;25768:15;25763:2;25753:8;25749:17;25746:1;25738:52;25811:41;;;-1:-1:-1;;;25811:41:0;;-1:-1:-1;;;;;25811:41:0;;;;;;;;;;;;;;;;25730:60;;-1:-1:-1;25811:25:0;;;;;;:41;;;;;-1:-1:-1;;25811:41:0;;;;;;;;-1:-1:-1;25811:25:0;:41;;;5:2:-1;;;;30:1;27;20:12;5:2;25811:41:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;-1:-1;;;;;;;;;25863:15:0;;;;;;;:7;:15;;;;;;;;:23;;;;;;;;;;;;:30;;;;;-1:-1:-1;;;;;;25863:30:0;;;;;;;;25904:15;;;;;;:23;;;;;;;;:30;;;;;;;;25990:8;27:10:-1;;-1:-1;23:18;;45:23;;25990:19:0;;;;;;;;;;;;;;;;;;26059:15;;26025:50;;;;;;;;;;;;;;;;;;;;;;25150:933;;;;;;;;:::o;24755:62::-;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;24755:62:0;;:::o;26091:139::-;26167:11;;-1:-1:-1;;;;;26167:11:0;26153:10;:25;26145:52;;;;;-1:-1:-1;;;26145:52:0;;;;;;;;;;;;-1:-1:-1;;;26145:52:0;;;;;;;;;;;;;;;26208:5;:14;;-1:-1:-1;;;;;;26208:14:0;-1:-1:-1;;;;;26208:14:0;;;;;;;;;;26091:139::o;24541:1863::-;;;;;;;;:::o

Swarm Source

bzzr://4dc244864ed174986261c5b8768135d9ea6c49e3dfdf7355dea02617b4bc47cd

Block Transaction Gas Used Reward
view all blocks validated

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

Validator Index Block Amount
View All Withdrawals

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

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