MOVR Price: $2.21 (-4.36%)

Contract

0x6B6071Ccc534fcee7B699aAb87929fAF8806d5bd

Overview

MOVR Balance

Moonriver Chain LogoMoonriver Chain LogoMoonriver Chain Logo0 MOVR

MOVR Value

$0.00

More Info

Private Name Tags

Multichain Info

No addresses found
Transaction Hash
Block
From
To

There are no matching entries

> 10 Internal Transactions found.

Latest 25 internal transactions (View All)

Parent Transaction Hash Block From To
33913222023-01-12 17:47:301112 days ago1673545650
0x6B6071Cc...F8806d5bd
 Contract Creation0 MOVR
28205002022-10-21 11:06:181195 days ago1666350378
0x6B6071Cc...F8806d5bd
 Contract Creation0 MOVR
27666572022-10-13 17:11:001203 days ago1665681060
0x6B6071Cc...F8806d5bd
 Contract Creation0 MOVR
27034792022-10-04 15:28:421212 days ago1664897322
0x6B6071Cc...F8806d5bd
 Contract Creation0 MOVR
26391422022-09-25 9:02:301221 days ago1664096550
0x6B6071Cc...F8806d5bd
 Contract Creation0 MOVR
26391332022-09-25 9:00:421221 days ago1664096442
0x6B6071Cc...F8806d5bd
 Contract Creation0 MOVR
26331252022-09-24 12:08:361222 days ago1664021316
0x6B6071Cc...F8806d5bd
 Contract Creation0 MOVR
26283112022-09-23 19:22:181223 days ago1663960938
0x6B6071Cc...F8806d5bd
 Contract Creation0 MOVR
26282922022-09-23 19:18:241223 days ago1663960704
0x6B6071Cc...F8806d5bd
 Contract Creation0 MOVR
26271132022-09-23 15:11:481223 days ago1663945908
0x6B6071Cc...F8806d5bd
 Contract Creation0 MOVR
26269512022-09-23 14:37:001223 days ago1663943820
0x6B6071Cc...F8806d5bd
 Contract Creation0 MOVR
26133382022-09-21 14:55:181225 days ago1663772118
0x6B6071Cc...F8806d5bd
 Contract Creation0 MOVR
25742552022-09-15 21:31:301231 days ago1663277490
0x6B6071Cc...F8806d5bd
 Contract Creation0 MOVR
25742182022-09-15 21:22:241231 days ago1663276944
0x6B6071Cc...F8806d5bd
 Contract Creation0 MOVR
25741672022-09-15 21:09:241231 days ago1663276164
0x6B6071Cc...F8806d5bd
 Contract Creation0 MOVR
25741222022-09-15 20:59:011231 days ago1663275541
0x6B6071Cc...F8806d5bd
 Contract Creation0 MOVR
25740882022-09-15 20:51:301231 days ago1663275090
0x6B6071Cc...F8806d5bd
 Contract Creation0 MOVR
25740662022-09-15 20:46:241231 days ago1663274784
0x6B6071Cc...F8806d5bd
 Contract Creation0 MOVR
25740452022-09-15 20:40:421231 days ago1663274442
0x6B6071Cc...F8806d5bd
 Contract Creation0 MOVR
25740252022-09-15 20:35:181231 days ago1663274118
0x6B6071Cc...F8806d5bd
 Contract Creation0 MOVR
25740102022-09-15 20:31:301231 days ago1663273890
0x6B6071Cc...F8806d5bd
 Contract Creation0 MOVR
25739802022-09-15 20:24:121231 days ago1663273452
0x6B6071Cc...F8806d5bd
 Contract Creation0 MOVR
25739542022-09-15 20:17:541231 days ago1663273074
0x6B6071Cc...F8806d5bd
 Contract Creation0 MOVR
25739252022-09-15 20:10:241231 days ago1663272624
0x6B6071Cc...F8806d5bd
 Contract Creation0 MOVR
25738522022-09-15 19:52:541231 days ago1663271574
0x6B6071Cc...F8806d5bd
 Contract Creation0 MOVR
View All Internal Transactions
Cross-Chain Transactions
Loading...
Loading

Contract Source Code Verified (Exact Match)

Contract Name:
ZirconFactory

Compiler Version
v0.5.16+commit.9c3226ce

Optimization Enabled:
Yes with 1 runs

Other Settings:
default evmVersion
// SPDX-License-Identifier: GPL-3.0
pragma solidity =0.5.16;
import './ZirconPair.sol';
import './energy/interfaces/IZirconEnergyFactory.sol';
import "./energy/interfaces/IZirconEnergyRevenue.sol";

contract ZirconFactory is IZirconFactory {
    address public energyFactory;
    address public migrator;
    mapping(address => mapping(address => address)) public getPair;
    address[] public allPairs;
    address public feeToSetter;
    uint public liquidityFee;
    uint public dynamicRatio;

    event PairCreated(address indexed token0, address indexed token1, address pair, uint);
    modifier _onlyMigrator {
        require(msg.sender == migrator, 'ZPT: FORBIDDEN');
        _;
    }

    modifier _onlyFeeToSetter {
        require(msg.sender == feeToSetter, 'ZPT: FORBIDDEN');
        _;
    }

    constructor(address _energyFactory, address _feeToSetter, address _migrator) public {
        energyFactory = _energyFactory;
        migrator = _migrator;
        feeToSetter = _feeToSetter;
        liquidityFee = 30;
        dynamicRatio = 5;
    }

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

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

    function createEnergy( address _pairAddress, address _tokenA, address _tokenB, address _pylonFactory) private returns (address energy){
        energy = IZirconEnergyFactory(energyFactory).createEnergyRev(_pairAddress, _tokenA, _tokenB, _pylonFactory);
    }

    function createPair(address tokenA, address tokenB, address _pylonFactory) external returns (address pair) {
        require(tokenA != tokenB, 'ZF: IDENTICAL_ADDRESSES');
        (address token0, address token1) = tokenA < tokenB ? (tokenA, tokenB) : (tokenB, tokenA);
        require(token0 != address(0), 'ZF: ZERO_ADDRESS');
        require(getPair[token0][token1] == address(0), 'ZF: PAIR_EXISTS'); // single check is sufficient
        bytes memory bytecode = type(ZirconPair).creationCode;
        bytes32 salt = keccak256(abi.encodePacked(token0, token1));
        assembly {
            pair := create2(0, add(bytecode, 32), mload(bytecode), salt)
        }
        require(pair != address(0), 'ZF: PCF');
        address energyRev = createEnergy(pair, token0, token1, _pylonFactory);
        IZirconPair(pair).initialize(token0, token1, energyRev);
        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 setFeeToSetter(address _feeToSetter) external _onlyFeeToSetter {
        feeToSetter = _feeToSetter;
    }

    function setMigrator(address _migrator) external _onlyMigrator {
        migrator = _migrator;
    }

    function changeEnergyRevAddress(address _pairAddress, address _tokenA, address _tokenB, address _pylonFactory) external _onlyMigrator returns (address newEnergy){

        newEnergy = IZirconEnergyFactory(energyFactory).getEnergyRevenue(_tokenA, _tokenB);
        if (newEnergy == address(0)) {
            newEnergy = IZirconEnergyFactory(energyFactory).createEnergyRev(_pairAddress, _tokenA, _tokenB, _pylonFactory);
        }
        ZirconPair(_pairAddress).changeEnergyRevAddress(newEnergy);
    }

    function changeEnergyFactoryAddress(address _newEnergyFactory) external _onlyMigrator {
        energyFactory = _newEnergyFactory;
    }

    function setLiquidityFee(uint _liquidityFee) external _onlyFeeToSetter {
        liquidityFee = _liquidityFee;
    }

    function setDynamicRatio(uint _dynamicRatio) external _onlyFeeToSetter {
        dynamicRatio = _dynamicRatio;
    }


}

// SPDX-License-Identifier: GPL-3.0
pragma solidity =0.5.16;

import './libraries/Math.sol';
import './libraries/UQ112x112.sol';
//import './interfaces/IERC20.sol';
import './interfaces/IZirconPair.sol';
import '@uniswap/v2-core/contracts/interfaces/IUniswapV2Callee.sol';
import './libraries/SafeMath.sol';
import "./ZirconERC20.sol";
import "./interfaces/IZirconFactory.sol";
import '@uniswap/v2-core/contracts/interfaces/IUniswapV2ERC20.sol';

//import "./libraries/ZirconLibrary.sol";
import "./energy/interfaces/IZirconEnergyRevenue.sol";

contract ZirconPair is IZirconPair, ZirconERC20 { //Name change does not affect ABI
    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;

    address public energyRevenueAddress;

    uint112 private reserve0;           // uses single storage slot, accessible via getReserves
    uint112 private reserve1;           // us es 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;
    }

    function tryLock() external lock {}

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

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

    //Wrapper around mintFee primarily aimed to be called by Pylon
    //Access control is unnecessary, if anyone calls it they just waste gas compounding fees for us
    //The wrapper is necessary to make sure the reserves it passes to mintFee are actual
    function publicMintFee() external lock {
        (uint112 _reserve0, uint112 _reserve1,) = getReserves();

        _mintFee(_reserve0, _reserve1);

        kLast = uint(reserve0).mul(reserve1); //Reserves don't change from mintFee
    }

    // if fee is on, mint liquidity equivalent to 1/6th of the growth in sqrt(k)
    function _mintFee(uint112 _reserve0, uint112 _reserve1) private {
    uint _kLast = kLast; // gas savings
        if (_kLast != 0) {
            uint rootK = Math.sqrt(uint(_reserve0).mul(_reserve1));
            uint rootKLast = Math.sqrt(_kLast);
            if (rootK > rootKLast) {
                uint dynamicRatio = IZirconFactory(factory).dynamicRatio();
                uint numerator = (rootK.sub(rootKLast)).mul(1e18);
                uint denominator = rootK.mul(dynamicRatio).add(rootKLast);
                uint liquidityPercentage = numerator / denominator;

                if (liquidityPercentage > 0) {
                    //                    console.log("C ore: liqPercentage", liquidityPercentage);
                    _mint(energyRevenueAddress, liquidityPercentage.mul(totalSupply)/1e18);
                    //                    _mint(energyRevenueAddress, liquidityPercentage.mul(totalSupply)/1e18);
                    uint totalPercentage = ((rootK.sub(rootKLast)).mul(1e18))/rootKLast;
                    IZirconEnergyRevenue(energyRevenueAddress).calculate(totalPercentage.sub(liquidityPercentage));
                }
            }
        }
    }

    // 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 = IUniswapV2ERC20(token0).balanceOf(address(this));
        uint balance1 = IUniswapV2ERC20(token1).balanceOf(address(this));
        uint amount0 = balance0.sub(_reserve0);
        uint amount1 = balance1.sub(_reserve1);

        _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, 'UniswapV2: INSUFFICIENT_LIQUIDITY_MINTED');
        _mint(to, liquidity);

        _update(balance0, balance1, _reserve0, _reserve1);
        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
    // TODO: will be better if we pass the output amount
    function mintOneSide(address to, bool isReserve0) external lock returns (uint liquidity, uint amount0, uint amount1) {
        require(totalSupply > 0, 'UniswapV2: Use mint to start pair');
        (uint112 _reserve0, uint112 _reserve1,) = getReserves(); // gas savings

        uint balance0 = IUniswapV2ERC20(token0).balanceOf(address(this));
        uint balance1 = IUniswapV2ERC20(token1).balanceOf(address(this));
        amount0 = balance0.sub(_reserve0);
        amount1 = balance1.sub(_reserve1);

        uint _liquidityFee = IZirconFactory(factory).liquidityFee();
        uint k;

        //We use growth in sqrt(k) to calculate amount of pool tokens to mint. This implicitly takes care of slippage.
        //Fee is slightly more than half total amount to account for residue you'd have if you swapped then minted normally

        if (isReserve0){
            require(amount0 > 1, "ZP: Insufficient Amount");
            k = Math.sqrt(uint(reserve0 + (amount0.mul(10000-(_liquidityFee/2 + 1))/10000)).mul(balance1));
        }else{
            require(amount1 > 1, "ZP: Insufficient Amount");
            k = Math.sqrt(balance0.mul(uint(reserve1 + (amount1.mul(10000-(_liquidityFee/2 + 1))/10000))));
        }
        uint kBefore = Math.sqrt(uint(reserve0).mul(reserve1));

        uint numerator = (k.sub(kBefore)).mul(totalSupply);
        uint denominator = kBefore;
        liquidity = numerator / denominator;
        reserve0 = uint112(balance0);
        reserve1 = uint112(balance1);
        _mintFee(_reserve0, _reserve1);

        require(liquidity > 0, 'UniswapV2: INSUFFICIENT_LIQUIDITY_MINTED');
        _mint(to, liquidity);
        _update(balance0, balance1, _reserve0, _reserve1);
        kLast = uint(reserve0).mul(reserve1); // reserve0 and reserve1 are up-to-date
        emit Mint(msg.sender, amount0, amount1);
    }

    function getAmountOut(uint amountIn, uint reserveIn, uint reserveOut, uint fee) internal pure returns (uint amountOut) {
        require(amountIn > 0, 'UV2: IIA');
        require(reserveIn > 0 && reserveOut > 0, 'UV2: IL');
        uint amountInWithFee = amountIn.mul(10000-fee);
        uint numerator = amountInWithFee.mul(reserveOut);
        uint denominator = reserveIn.mul(10000).add(amountInWithFee);
        amountOut = numerator / denominator;
    }

    // this low-level function should be called from a contract which performs important safety checks
    // TODO: Test this function
    // TODO: maybe allow burning both sides to one
    function burnOneSide(address to, bool isReserve0) external lock returns (uint amount) {
        (uint112 _reserve0, uint112 _reserve1,) = getReserves(); // gas savings
        address _token0 = token0;                                // gas savings
        address _token1 = token1;                                // gas savings
        uint amount0;
        uint amount1;
        uint balance0 = IUniswapV2ERC20(_token0).balanceOf(address(this));
        uint balance1 = IUniswapV2ERC20(_token1).balanceOf(address(this));
        uint liquidity = balanceOf[address(this)];
        uint _liquidityFee = IZirconFactory(factory).liquidityFee();

        _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
        if (isReserve0) {
            amount0 += getAmountOut(amount1, _reserve1 - amount1, _reserve0 - amount0, _liquidityFee);
            amount = amount0;
            require(amount < balance0, "UniswapV2: EXTENSION_NOT_ENOUGH_LIQUIDITY");
        }else{
            amount1 += getAmountOut(amount0, _reserve0 - amount0, _reserve1 - amount1, _liquidityFee);
            amount = amount1;
            require(amount < balance1, "UniswapV2: EXTENSION_NOT_ENOUGH_LIQUIDITY");
        }
        require(amount0 > 0 && amount1 > 0, 'UniswapV2: INSUFFICIENT_LIQUIDITY_BURNED');
        _burn(address(this), liquidity);
        if (isReserve0) {
            _safeTransfer(_token0, to, amount);
        }else{
            _safeTransfer(_token1, to, amount);
        }
        balance0 = IUniswapV2ERC20(_token0).balanceOf(address(this));
        balance1 = IUniswapV2ERC20(_token1).balanceOf(address(this));

        _update(balance0, balance1, _reserve0, _reserve1);
        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 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 = IUniswapV2ERC20(_token0).balanceOf(address(this));
        uint balance1 = IUniswapV2ERC20(_token1).balanceOf(address(this));
        uint liquidity = balanceOf[address(this)];
        _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, 'UniswapV2: INSUFFICIENT_LIQUIDITY_BURNED');
        _burn(address(this), liquidity);
        _safeTransfer(_token0, to, amount0);
        _safeTransfer(_token1, to, amount1);
        balance0 = IUniswapV2ERC20(_token0).balanceOf(address(this));
        balance1 = IUniswapV2ERC20(_token1).balanceOf(address(this));

        _update(balance0, balance1, _reserve0, _reserve1);
        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, '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 = IUniswapV2ERC20(_token0).balanceOf(address(this));
            balance1 = IUniswapV2ERC20(_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 _liquidityFee = IZirconFactory(factory).liquidityFee();
            uint balance0Adjusted = balance0.mul(10000).sub(amount0In.mul(_liquidityFee));
            uint balance1Adjusted = balance1.mul(10000).sub(amount1In.mul(_liquidityFee));
            require(balance0Adjusted.mul(balance1Adjusted) >= uint(_reserve0).mul(_reserve1).mul(10000**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, IUniswapV2ERC20(_token0).balanceOf(address(this)).sub(reserve0));
//        _safeTransfer(_token1, to, IUniswapV2ERC20(_token1).balanceOf(address(this)).sub(reserve1));
//    }

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

    function changeEnergyRevAddress(address _revAddress) external {
        require(msg.sender == factory, 'UniswapV2: NOT_ALLOWED');
        energyRevenueAddress = _revAddress;
    }
}

pragma solidity =0.5.16;

interface IZirconEnergyFactory {

    // Variables
    function allEnergies(uint p) external view returns (address);
    function insurancePerMille() external view returns (uint);
    function feePercentageRev() external view returns (uint);
    function feePercentageEnergy() external view returns (uint);
    function getEnergy(address _tokenA, address _tokenB) external view returns (address energy);
    function getEnergyRevenue(address _tokenA, address _tokenB) external view returns (address energy);
    function allEnergiesLength() external view returns (uint);
    function feeToSetter() external pure returns (address);
    function setMigrator(address _migrator) external;
    function setFeeToSetter(address _feeToSetter) external;
    function setInsurancePerMille(uint _insurancePerMille) external;
    function setFeePercentageRev(uint fee) external;
    function setFeePercentageEnergy(uint fee) external;
    // Functions
    function createEnergy(address, address, address, address) external returns (address energy);
    function createEnergyRev(address, address, address, address) external returns (address energy);
    function setFee(uint112 _minPylonFee, uint112 _maxPylonFee) external;
    function getMinMaxFee() external view returns (uint112 minFee, uint112 maxFee);
    function getFees(address _token, uint _amount, address _to, address energyRev) external;
    function migrateEnergyLiquidity(address pair, address token, address newEnergy) external;
    function migrateEnergyRevenue(address oldEnergy, address newEnergy) external;
    function migrateEnergyRevenueFees(address oldEnergy, address newEnergy) external;
    function migrateEnergy(address oldEnergy, address newEnergy) external;

}

pragma solidity =0.5.16;

interface IZirconEnergyRevenue {
    function initialize(address _pair, address _tokenA, address _tokenB, address energy0, address energy1, address pylon0, address pylon1) external;
    function calculate(uint percentage) external;
    function migrateLiquidity(address newEnergy) external;
    function getBalanceFromPair() external returns (uint);
    function feeValue1() external returns (uint);
    function feeValue0() external returns (uint);
    function getFees(address _token, uint _amount, address _to) external;
    function setFeeValue(uint _feeValue0, uint _feeValue1) external;
}

// SPDX-License-Identifier: GPL-3.0
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;
    }
    function max(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;
        }
    }
}

// SPDX-License-Identifier: GPL-3.0

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

// SPDX-License-Identifier: GPL-3.0

pragma solidity >=0.5.16;

interface IZirconPair {
    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 energyRevenueAddress() external pure returns (address);
    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 burnOneSide(address to, bool isReserve0) external returns (uint amount);
    function mintOneSide(address to, bool isReserve0) external returns (uint liquidity, uint amount0, uint amount1);
    function publicMintFee() external;
    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 tryLock() external;

    function initialize(address, address, address) external;
    function changeEnergyRevAddress(address _revAddress) external;

}

pragma solidity >=0.5.0;

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

// SPDX-License-Identifier: GPL-3.0

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

pragma solidity =0.5.16;
import './libraries/SafeMath.sol';
import '@uniswap/v2-core/contracts/interfaces/IUniswapV2ERC20.sol';

contract ZirconERC20 is IUniswapV2ERC20 {
    using SafeMath for uint;
    // TODO: change name of token
    string public constant name = 'Zircon';
    string public constant symbol = 'ZPT';
    uint8 public constant decimals = 18;
    uint public totalSupply;
    mapping(address => uint)  public balanceOf;
    mapping(address => mapping(address => uint)) public allowance;
    // keccak256("Permit(address owner,address spender,uint256 value,uint256 nonce,uint256 deadline)");
    bytes32 public constant PERMIT_TYPEHASH = 0x6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c9;
    mapping(address => uint) public nonces;
    bytes32 public DOMAIN_SEPARATOR;

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

pragma solidity >=0.5.16;

interface IZirconFactory {
    //    function feeTo() external view returns (address);
    //    function feeToSetter() external view returns (address);
    //    function migrator() external view returns (address);
    function energyFactory() external view returns (address);

    function getPair(address, address) external view returns (address pair);
    function allPairs(uint) external view returns (address pair);
    function allPairsLength() external view returns (uint);
    function dynamicRatio() external view returns (uint);
    function liquidityFee() external view returns (uint);
    function setLiquidityFee(uint _liquidityFee) external;

    function pairCodeHash() external pure returns (bytes32);
    function createPair(address tokenA, address tokenB, address _pylonFactory) external returns (address pair);

    function setMigrator(address _migrator) external;
    function setFeeToSetter(address _feeToSetter) external;
    function changeEnergyRevAddress(address _pairAddress, address _tokenA, address _tokenB, address _pylonFactory) external returns (address newEnergy);

    function changeEnergyFactoryAddress(address _newEnergyFactory) external;
    function setDynamicRatio(uint _dynamicRatio) external;

}

pragma solidity >=0.5.0;

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

Settings
{
  "optimizer": {
    "enabled": true,
    "runs": 1
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "devdoc",
        "userdoc",
        "metadata",
        "abi"
      ]
    }
  },
  "metadata": {
    "useLiteralContent": true
  },
  "libraries": {}
}

Contract Security Audit

Contract ABI

API
[{"inputs":[{"internalType":"address","name":"_energyFactory","type":"address"},{"internalType":"address","name":"_feeToSetter","type":"address"},{"internalType":"address","name":"_migrator","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":[{"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":"_newEnergyFactory","type":"address"}],"name":"changeEnergyFactoryAddress","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"_pairAddress","type":"address"},{"internalType":"address","name":"_tokenA","type":"address"},{"internalType":"address","name":"_tokenB","type":"address"},{"internalType":"address","name":"_pylonFactory","type":"address"}],"name":"changeEnergyRevAddress","outputs":[{"internalType":"address","name":"newEnergy","type":"address"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"tokenA","type":"address"},{"internalType":"address","name":"tokenB","type":"address"},{"internalType":"address","name":"_pylonFactory","type":"address"}],"name":"createPair","outputs":[{"internalType":"address","name":"pair","type":"address"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"dynamicRatio","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"energyFactory","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":true,"inputs":[],"name":"liquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"migrator","outputs":[{"internalType":"address","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"pairCodeHash","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"payable":false,"stateMutability":"pure","type":"function"},{"constant":false,"inputs":[{"internalType":"uint256","name":"_dynamicRatio","type":"uint256"}],"name":"setDynamicRatio","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"},{"constant":false,"inputs":[{"internalType":"uint256","name":"_liquidityFee","type":"uint256"}],"name":"setLiquidityFee","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"_migrator","type":"address"}],"name":"setMigrator","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"}]

608060405234801561001057600080fd5b50604051613c65380380613c658339818101604052606081101561003357600080fd5b5080516020820151604090920151600080546001600160a01b039384166001600160a01b031991821617909155600180549284169282169290921790915560048054929093169116179055601e6005908155600655613bce806100976000396000f3fe608060405234801561001057600080fd5b50600436106100d05760003560e01c8063094b7415146100d557806317d1ff9f146100f95780631e3dd18b1461010157806323cf31181461011e578063320a557214610146578063357bf15c1461016c5780634d10127014610189578063574f2ba3146101a657806376f79738146101c05780637cd07e47146101f857806398118cb4146102005780639aab924814610208578063a2e74af614610210578063c223ba0914610236578063e6a4390514610274578063f5920b22146102a2575b600080fd5b6100dd6102aa565b604080516001600160a01b039092168252519081900360200190f35b6100dd6102b9565b6100dd6004803603602081101561011757600080fd5b50356102c8565b6101446004803603602081101561013457600080fd5b50356001600160a01b03166102ef565b005b6101446004803603602081101561015c57600080fd5b50356001600160a01b0316610361565b6101446004803603602081101561018257600080fd5b50356103d3565b6101446004803603602081101561019f57600080fd5b5035610428565b6101ae61047d565b60408051918252519081900360200190f35b6100dd600480360360608110156101d657600080fd5b506001600160a01b038135811691602081013582169160409091013516610483565b6100dd6107f9565b6101ae610808565b6101ae61080e565b6101446004803603602081101561022657600080fd5b50356001600160a01b0316610840565b6100dd6004803603608081101561024c57600080fd5b506001600160a01b0381358116916020810135821691604082013581169160600135166108b2565b6100dd6004803603604081101561028a57600080fd5b506001600160a01b0381358116916020013516610aa7565b6101ae610acd565b6004546001600160a01b031681565b6000546001600160a01b031681565b600381815481106102d557fe5b6000918252602090912001546001600160a01b0316905081565b6001546001600160a01b0316331461033f576040805162461bcd60e51b815260206004820152600e60248201526d2d282a1d102327a92124a22222a760911b604482015290519081900360640190fd5b600180546001600160a01b0319166001600160a01b0392909216919091179055565b6001546001600160a01b031633146103b1576040805162461bcd60e51b815260206004820152600e60248201526d2d282a1d102327a92124a22222a760911b604482015290519081900360640190fd5b600080546001600160a01b0319166001600160a01b0392909216919091179055565b6004546001600160a01b03163314610423576040805162461bcd60e51b815260206004820152600e60248201526d2d282a1d102327a92124a22222a760911b604482015290519081900360640190fd5b600555565b6004546001600160a01b03163314610478576040805162461bcd60e51b815260206004820152600e60248201526d2d282a1d102327a92124a22222a760911b604482015290519081900360640190fd5b600655565b60035490565b6000826001600160a01b0316846001600160a01b031614156104e6576040805162461bcd60e51b81526020600482015260176024820152765a463a204944454e544943414c5f41444452455353455360481b604482015290519081900360640190fd5b600080846001600160a01b0316866001600160a01b03161061050957848661050c565b85855b90925090506001600160a01b03821661055f576040805162461bcd60e51b815260206004820152601060248201526f5a463a205a45524f5f4144445245535360801b604482015290519081900360640190fd5b6001600160a01b038281166000908152600260209081526040808320858516845290915290205416156105cb576040805162461bcd60e51b815260206004820152600f60248201526e5a463a20504149525f45584953545360881b604482015290519081900360640190fd5b6060604051806020016105dd90610b6f565b6020820181038252601f19601f8201166040525090506000838360405160200180836001600160a01b03166001600160a01b031660601b8152601401826001600160a01b03166001600160a01b031660601b815260140192505050604051602081830303815290604052805190602001209050808251602084016000f594506001600160a01b0385166106a1576040805162461bcd60e51b81526020600482015260076024820152662d231d102821a360c91b604482015290519081900360640190fd5b60006106af8686868a610ad3565b6040805163c0c53b8b60e01b81526001600160a01b0388811660048301528781166024830152808416604483015291519293509088169163c0c53b8b9160648082019260009290919082900301818387803b15801561070d57600080fd5b505af1158015610721573d6000803e3d6000fd5b505050506001600160a01b0385811660008181526002602081815260408084208a87168086529083528185208054978e166001600160a01b031998891681179091559383528185208686528352818520805488168517905560038054600181018255958190527fc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b90950180549097168417909655925483519283529082015281517f0d3648bd0f6ba80134a33ba9275ac585d9d315f0ad8355cddefde31afa28d0e9929181900390910190a350505050509392505050565b6001546001600160a01b031681565b60055481565b60006040518060200161082090610b6f565b6020820181038252601f19601f8201166040525080519060200120905090565b6004546001600160a01b03163314610890576040805162461bcd60e51b815260206004820152600e60248201526d2d282a1d102327a92124a22222a760911b604482015290519081900360640190fd5b600480546001600160a01b0319166001600160a01b0392909216919091179055565b6001546000906001600160a01b03163314610905576040805162461bcd60e51b815260206004820152600e60248201526d2d282a1d102327a92124a22222a760911b604482015290519081900360640190fd5b6000546040805163044209e560e51b81526001600160a01b0387811660048301528681166024830152915191909216916388413ca0916044808301926020929190829003018186803b15801561095a57600080fd5b505afa15801561096e573d6000803e3d6000fd5b505050506040513d602081101561098457600080fd5b505190506001600160a01b038116610a2f5760008054604080516394a77e5b60e01b81526001600160a01b038981166004830152888116602483015287811660448301528681166064830152915191909216926394a77e5b92608480820193602093909283900390910190829087803b158015610a0057600080fd5b505af1158015610a14573d6000803e3d6000fd5b505050506040513d6020811015610a2a57600080fd5b505190505b846001600160a01b03166353ddd944826040518263ffffffff1660e01b815260040180826001600160a01b03166001600160a01b03168152602001915050600060405180830381600087803b158015610a8757600080fd5b505af1158015610a9b573d6000803e3d6000fd5b50505050949350505050565b60026020908152600092835260408084209091529082529020546001600160a01b031681565b60065481565b60008054604080516394a77e5b60e01b81526001600160a01b038881166004830152878116602483015286811660448301528581166064830152915191909216916394a77e5b91608480830192602092919082900301818787803b158015610b3a57600080fd5b505af1158015610b4e573d6000803e3d6000fd5b505050506040513d6020811015610b6457600080fd5b505195945050505050565b61301d80610b7d8339019056fe60806040526001600d5534801561001557600080fd5b506040514690806052612fcb823960408051918290036052018220828201825260068352652d34b931b7b760d11b6020938401528151808301835260018152603160f81b908401528151808401919091527f94c6df7cbb14f58e7ac6d9fa315f8346b33ef43dae2423c0e0e94673dd9e65ff818301527fc89efdaa54c0f20c7adf612882df0950f5a951637e0307cdcb4c672f298b8bc6606082015260808101949094523060a0808601919091528151808603909101815260c09094019052825192019190912060045550600580546001600160a01b03191633179055612eca806101016000396000f3fe608060405234801561001057600080fd5b50600436106101805760003560e01c8063022c0d9f1461018557806306fdde03146102115780630902f1ac1461028e578063095ea7b3146102c65780630dfe16811461030657806311816b041461032a578063145f3c271461033257806318160ddd1461033a57806323b872dd146103545780632ce510901461038a57806330adf81f146103b8578063313ce567146103c05780633644e515146103de578063432275e6146103e657806353ddd944146104325780635909c0d5146104585780635a3d5493146104605780636a627842146104685780636da996361461048e57806370a08231146104965780637464fc3d146104bc5780637ecebe00146104c457806389afcb44146104ea57806395d89b4114610529578063a9059cbb14610531578063ba9a7a561461055d578063c0c53b8b14610565578063c45a01551461059d578063d21220a7146105a5578063d505accf146105ad578063dd62ed3e146105fe578063fff6cae91461062c575b600080fd5b61020f6004803603608081101561019b57600080fd5b8135916020810135916001600160a01b036040830135169190810190608081016060820135600160201b8111156101d157600080fd5b8201836020820111156101e357600080fd5b803590602001918460018302840111600160201b8311171561020457600080fd5b509092509050610634565b005b610219610bdc565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561025357818101518382015260200161023b565b50505050905090810190601f1680156102805780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b610296610bfe565b604080516001600160701b03948516815292909316602083015263ffffffff168183015290519081900360600190f35b6102f2600480360360408110156102dc57600080fd5b506001600160a01b038135169060200135610c28565b604080519115158252519081900360200190f35b61030e610c3f565b604080516001600160a01b039092168252519081900360200190f35b61020f610c4e565b61020f610c9a565b610342610d30565b60408051918252519081900360200190f35b6102f26004803603606081101561036a57600080fd5b506001600160a01b03813581169160208101359091169060400135610d36565b610342600480360360408110156103a057600080fd5b506001600160a01b0381351690602001351515610dd0565b6103426112bb565b6103c86112cd565b6040805160ff9092168252519081900360200190f35b6103426112d2565b610414600480360360408110156103fc57600080fd5b506001600160a01b03813516906020013515156112d8565b60408051938452602084019290925282820152519081900360600190f35b61020f6004803603602081101561044857600080fd5b50356001600160a01b03166117b3565b61034261182d565b610342611833565b6103426004803603602081101561047e57600080fd5b50356001600160a01b0316611839565b61030e611b0f565b610342600480360360208110156104ac57600080fd5b50356001600160a01b0316611b1e565b610342611b30565b610342600480360360208110156104da57600080fd5b50356001600160a01b0316611b36565b6105106004803603602081101561050057600080fd5b50356001600160a01b0316611b48565b6040805192835260208301919091528051918290030190f35b610219611ecb565b6102f26004803603604081101561054757600080fd5b506001600160a01b038135169060200135611eea565b610342611ef7565b61020f6004803603606081101561057b57600080fd5b506001600160a01b038135811691602081013582169160409091013516611efd565b61030e611f93565b61030e611fa2565b61020f600480360360e08110156105c357600080fd5b506001600160a01b03813581169160208101359091169060408101359060608101359060ff6080820135169060a08101359060c00135611fb1565b6103426004803603604081101561061457600080fd5b506001600160a01b03813581169160200135166121a0565b61020f6121bd565b600d54600114610679576040805162461bcd60e51b81526020600482015260116024820152600080516020612da4833981519152604482015290519081900360640190fd5b6000600d558415158061068c5750600084115b6106c75760405162461bcd60e51b8152600401808060200182810382526025815260200180612cf26025913960400191505060405180910390fd5b6000806106d2610bfe565b5091509150816001600160701b0316871080156106f75750806001600160701b031686105b6107325760405162461bcd60e51b8152600401808060200182810382526021815260200180612d5b6021913960400191505060405180910390fd5b60065460075460009182916001600160a01b039182169190811690891682148015906107705750806001600160a01b0316896001600160a01b031614155b6107b9576040805162461bcd60e51b8152602060048201526015602482015274556e697377617056323a20494e56414c49445f544f60581b604482015290519081900360640190fd5b8a156107ca576107ca828a8d612312565b89156107db576107db818a8c612312565b861561089657886001600160a01b03166310d1e85c338d8d8c8c6040518663ffffffff1660e01b815260040180866001600160a01b03166001600160a01b03168152602001858152602001848152602001806020018281038252848482818152602001925080828437600081840152601f19601f8201169050808301925050509650505050505050600060405180830381600087803b15801561087d57600080fd5b505af1158015610891573d6000803e3d6000fd5b505050505b604080516370a0823160e01b815230600482015290516001600160a01b038416916370a08231916024808301926020929190829003018186803b1580156108dc57600080fd5b505afa1580156108f0573d6000803e3d6000fd5b505050506040513d602081101561090657600080fd5b5051604080516370a0823160e01b815230600482015290519195506001600160a01b038316916370a0823191602480820192602092909190829003018186803b15801561095257600080fd5b505afa158015610966573d6000803e3d6000fd5b505050506040513d602081101561097c57600080fd5b5051925060009150506001600160701b0385168a9003831161099f5760006109ae565b89856001600160701b03160383035b9050600089856001600160701b03160383116109cb5760006109da565b89856001600160701b03160383035b905060008211806109eb5750600081115b610a265760405162461bcd60e51b8152600401808060200182810382526024815260200180612d176024913960400191505060405180910390fd5b60055460408051632604632d60e21b815290516000926001600160a01b0316916398118cb4916004808301926020929190829003018186803b158015610a6b57600080fd5b505afa158015610a7f573d6000803e3d6000fd5b505050506040513d6020811015610a9557600080fd5b505190506000610acc610aae858463ffffffff6124a516565b610ac08861271063ffffffff6124a516565b9063ffffffff61250816565b90506000610ae3610aae858563ffffffff6124a516565b9050610b156305f5e100610b096001600160701b038c8116908c1663ffffffff6124a516565b9063ffffffff6124a516565b610b25838363ffffffff6124a516565b1015610b67576040805162461bcd60e51b815260206004820152600c60248201526b556e697377617056323a204b60a01b604482015290519081900360640190fd5b505050610b7684848888612558565b60408051838152602081018390528082018d9052606081018c905290516001600160a01b038b169133917fd78ad95fa46c994b6551d0da85fc275fe613ce37657fb8d5e3d130840159d8229181900360800190a350506001600d55505050505050505050565b604051806040016040528060068152602001652d34b931b7b760d11b81525081565b6009546001600160701b0380821692600160701b830490911691600160e01b900463ffffffff1690565b6000610c3533848461270f565b5060015b92915050565b6006546001600160a01b031681565b600d54600114610c93576040805162461bcd60e51b81526020600482015260116024820152600080516020612da4833981519152604482015290519081900360640190fd5b6001600d55565b600d54600114610cdf576040805162461bcd60e51b81526020600482015260116024820152600080516020612da4833981519152604482015290519081900360640190fd5b6000600d81905580610cef610bfe565b5091509150610cfe8282612771565b600954610d24906001600160701b0380821691600160701b90041663ffffffff6124a516565b600c5550506001600d55565b60005481565b6001600160a01b038316600090815260026020908152604080832033845290915281205460001914610dbb576001600160a01b0384166000908152600260209081526040808320338452909152902054610d96908363ffffffff61250816565b6001600160a01b03851660009081526002602090815260408083203384529091529020555b610dc6848484612960565b5060019392505050565b6000600d54600114610e17576040805162461bcd60e51b81526020600482015260116024820152600080516020612da4833981519152604482015290519081900360640190fd5b6000600d81905580610e27610bfe565b50600654600754604080516370a0823160e01b815230600482015290519496509294506001600160a01b03918216939116916000918291829186916370a08231916024808301926020929190829003018186803b158015610e8757600080fd5b505afa158015610e9b573d6000803e3d6000fd5b505050506040513d6020811015610eb157600080fd5b5051604080516370a0823160e01b815230600482015290519192506000916001600160a01b038716916370a08231916024808301926020929190829003018186803b158015610eff57600080fd5b505afa158015610f13573d6000803e3d6000fd5b505050506040513d6020811015610f2957600080fd5b5051306000908152600160209081526040808320546005548251632604632d60e21b8152925195965090946001600160a01b03909116926398118cb49260048082019391829003018186803b158015610f8157600080fd5b505afa158015610f95573d6000803e3d6000fd5b505050506040513d6020811015610fab57600080fd5b50519050610fb98a8a612771565b60005480610fcd848763ffffffff6124a516565b81610fd457fe5b04965080610fe8848663ffffffff6124a516565b81610fef57fe5b0495508c156110645761101a86878c6001600160701b031603898e6001600160701b03160385612a08565b87019650869b50848c1061105f5760405162461bcd60e51b8152600401808060200182810382526029815260200180612e2d6029913960400191505060405180910390fd5b6110cb565b61108687888d6001600160701b031603888d6001600160701b03160385612a08565b86019550859b50838c106110cb5760405162461bcd60e51b8152600401808060200182810382526029815260200180612e2d6029913960400191505060405180910390fd5b6000871180156110db5750600086115b6111165760405162461bcd60e51b8152600401808060200182810382526028815260200180612d7c6028913960400191505060405180910390fd5b6111203084612af1565b8c1561113657611131898f8e612312565b611141565b611141888f8e612312565b604080516370a0823160e01b815230600482015290516001600160a01b038b16916370a08231916024808301926020929190829003018186803b15801561118757600080fd5b505afa15801561119b573d6000803e3d6000fd5b505050506040513d60208110156111b157600080fd5b5051604080516370a0823160e01b815230600482015290519196506001600160a01b038a16916370a0823191602480820192602092909190829003018186803b1580156111fd57600080fd5b505afa158015611211573d6000803e3d6000fd5b505050506040513d602081101561122757600080fd5b5051935061123785858d8d612558565b60095461125d906001600160701b0380821691600160701b90041663ffffffff6124a516565b600c819055508d6001600160a01b0316336001600160a01b0316600080516020612e0d8339815191528989604051808381526020018281526020019250505060405180910390a350506001600d5550979a9950505050505050505050565b600080516020612e7683398151915281565b601281565b60045481565b6000806000600d54600114611322576040805162461bcd60e51b81526020600482015260116024820152600080516020612da4833981519152604482015290519081900360640190fd5b6000600d819055546113655760405162461bcd60e51b8152600401808060200182810382526021815260200180612dec6021913960400191505060405180910390fd5b600080611370610bfe565b50600654604080516370a0823160e01b815230600482015290519395509193506000926001600160a01b03909116916370a08231916024808301926020929190829003018186803b1580156113c457600080fd5b505afa1580156113d8573d6000803e3d6000fd5b505050506040513d60208110156113ee57600080fd5b5051600754604080516370a0823160e01b815230600482015290519293506000926001600160a01b03909216916370a0823191602480820192602092909190829003018186803b15801561144157600080fd5b505afa158015611455573d6000803e3d6000fd5b505050506040513d602081101561146b57600080fd5b50519050611488826001600160701b03861663ffffffff61250816565b95506114a3816001600160701b03851663ffffffff61250816565b94506000600560009054906101000a90046001600160a01b03166001600160a01b03166398118cb46040518163ffffffff1660e01b815260040160206040518083038186803b1580156114f557600080fd5b505afa158015611509573d6000803e3d6000fd5b505050506040513d602081101561151f57600080fd5b50519050600089156115c6576001881161157a576040805162461bcd60e51b815260206004820152601760248201527616940e88125b9cdd59999a58da595b9d08105b5bdd5b9d604a1b604482015290519081900360640190fd5b6115bf6115ba846127106115978c600288048303600019016124a5565b8161159e57fe5b6009546001600160701b0316919004019063ffffffff6124a516565b612b7d565b905061165a565b60018711611615576040805162461bcd60e51b815260206004820152601760248201527616940e88125b9cdd59999a58da595b9d08105b5bdd5b9d604a1b604482015290519081900360640190fd5b6116576115ba6127106116318a600287048303600019016124a5565b8161163857fe5b6009548892909104600160701b9091046001600160701b0316016124a5565b90505b600954600090611687906115ba906001600160701b0380821691600160701b90041663ffffffff6124a516565b905060006116a4600054610b09848661250890919063ffffffff16565b9050818082816116b057fe5b600980546001600160701b038a8116600160701b02600160701b600160e01b0319918d166001600160701b03199093169290921716179055049b506116f58989612771565b60008c116117345760405162461bcd60e51b8152600401808060200182810382526028815260200180612dc46028913960400191505060405180910390fd5b61173e8e8d612bcf565b61174a87878b8b612558565b600954611770906001600160701b0380821691600160701b90041663ffffffff6124a516565b600c55604080518c8152602081018c905281513392600080516020612d3b833981519152928290030190a25050505050505050506001600d819055509250925092565b6005546001600160a01b0316331461180b576040805162461bcd60e51b8152602060048201526016602482015275155b9a5cddd85c158c8e881393d517d0531313d5d15160521b604482015290519081900360640190fd5b600880546001600160a01b0319166001600160a01b0392909216919091179055565b600a5481565b600b5481565b6000600d54600114611880576040805162461bcd60e51b81526020600482015260116024820152600080516020612da4833981519152604482015290519081900360640190fd5b6000600d81905580611890610bfe565b50600654604080516370a0823160e01b815230600482015290519395509193506000926001600160a01b03909116916370a08231916024808301926020929190829003018186803b1580156118e457600080fd5b505afa1580156118f8573d6000803e3d6000fd5b505050506040513d602081101561190e57600080fd5b5051600754604080516370a0823160e01b815230600482015290519293506000926001600160a01b03909216916370a0823191602480820192602092909190829003018186803b15801561196157600080fd5b505afa158015611975573d6000803e3d6000fd5b505050506040513d602081101561198b57600080fd5b5051905060006119aa836001600160701b03871663ffffffff61250816565b905060006119c7836001600160701b03871663ffffffff61250816565b90506119d38686612771565b60005480611a08576119f46103e8610ac06115ba868663ffffffff6124a516565b9750611a0360006103e8612bcf565b611a57565b611a546001600160701b038816611a25858463ffffffff6124a516565b81611a2c57fe5b046001600160701b038816611a47858563ffffffff6124a516565b81611a4e57fe5b04612c53565b97505b60008811611a965760405162461bcd60e51b8152600401808060200182810382526028815260200180612dc46028913960400191505060405180910390fd5b611aa08989612bcf565b611aac85858989612558565b600954611ad2906001600160701b0380821691600160701b90041663ffffffff6124a516565b600c55604080518481526020810184905281513392600080516020612d3b833981519152928290030190a250506001600d55509395945050505050565b6008546001600160a01b031681565b60016020526000908152604090205481565b600c5481565b60036020526000908152604090205481565b600080600d54600114611b90576040805162461bcd60e51b81526020600482015260116024820152600080516020612da4833981519152604482015290519081900360640190fd5b6000600d81905580611ba0610bfe565b50600654600754604080516370a0823160e01b815230600482015290519496509294506001600160a01b039182169391169160009184916370a08231916024808301926020929190829003018186803b158015611bfc57600080fd5b505afa158015611c10573d6000803e3d6000fd5b505050506040513d6020811015611c2657600080fd5b5051604080516370a0823160e01b815230600482015290519192506000916001600160a01b038516916370a08231916024808301926020929190829003018186803b158015611c7457600080fd5b505afa158015611c88573d6000803e3d6000fd5b505050506040513d6020811015611c9e57600080fd5b505130600090815260016020526040902054909150611cbd8787612771565b60005480611cd1838663ffffffff6124a516565b81611cd857fe5b04995080611cec838563ffffffff6124a516565b81611cf357fe5b04985060008a118015611d065750600089115b611d415760405162461bcd60e51b8152600401808060200182810382526028815260200180612d7c6028913960400191505060405180910390fd5b611d4b3083612af1565b611d56868c8c612312565b611d61858c8b612312565b604080516370a0823160e01b815230600482015290516001600160a01b038816916370a08231916024808301926020929190829003018186803b158015611da757600080fd5b505afa158015611dbb573d6000803e3d6000fd5b505050506040513d6020811015611dd157600080fd5b5051604080516370a0823160e01b815230600482015290519195506001600160a01b038716916370a0823191602480820192602092909190829003018186803b158015611e1d57600080fd5b505afa158015611e31573d6000803e3d6000fd5b505050506040513d6020811015611e4757600080fd5b50519250611e5784848a8a612558565b600954611e7d906001600160701b0380821691600160701b90041663ffffffff6124a516565b600c55604080518b8152602081018b905281516001600160a01b038e16923392600080516020612e0d833981519152929081900390910190a350505050505050506001600d81905550915091565b6040518060400160405280600381526020016216941560ea1b81525081565b6000610c35338484612960565b6103e881565b6005546001600160a01b03163314611f54576040805162461bcd60e51b81526020600482015260156024820152742d34b931b7b72830b4b91d102327a92124a22222a760591b604482015290519081900360640190fd5b600680546001600160a01b039485166001600160a01b031991821617909155600780549385169382169390931790925560088054919093169116179055565b6005546001600160a01b031681565b6007546001600160a01b031681565b42841015611ffb576040805162461bcd60e51b8152602060048201526012602482015271155b9a5cddd85c158c8e881156141254915160721b604482015290519081900360640190fd5b6004546001600160a01b038089166000818152600360209081526040808320805460018082019092558251600080516020612e768339815191528186015280840196909652958d166060860152608085018c905260a085019590955260c08085018b90528151808603909101815260e08501825280519083012061190160f01b6101008601526101028501969096526101228085019690965280518085039096018652610142840180825286519683019690962095839052610162840180825286905260ff89166101828501526101a284018890526101c28401879052519193926101e280820193601f1981019281900390910190855afa158015612104573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b0381161580159061213a5750886001600160a01b0316816001600160a01b0316145b61218a576040805162461bcd60e51b815260206004820152601c60248201527b556e697377617056323a20494e56414c49445f5349474e415455524560201b604482015290519081900360640190fd5b61219589898961270f565b505050505050505050565b600260209081526000928352604080842090915290825290205481565b600d54600114612202576040805162461bcd60e51b81526020600482015260116024820152600080516020612da4833981519152604482015290519081900360640190fd5b6000600d55600654604080516370a0823160e01b81523060048201529051610c93926001600160a01b0316916370a08231916024808301926020929190829003018186803b15801561225357600080fd5b505afa158015612267573d6000803e3d6000fd5b505050506040513d602081101561227d57600080fd5b5051600754604080516370a0823160e01b815230600482015290516001600160a01b03909216916370a0823191602480820192602092909190829003018186803b1580156122ca57600080fd5b505afa1580156122de573d6000803e3d6000fd5b505050506040513d60208110156122f457600080fd5b50516009546001600160701b0380821691600160701b900416612558565b60408051808201825260198152787472616e7366657228616464726573732c75696e743235362960381b60209182015281516001600160a01b0385811660248301526044808301869052845180840390910181526064909201845291810180516001600160e01b031663a9059cbb60e01b1781529251815160009460609489169392918291908083835b602083106123bb5780518252601f19909201916020918201910161239c565b6001836020036101000a0380198251168184511680821785525050505050509050019150506000604051808303816000865af19150503d806000811461241d576040519150601f19603f3d011682016040523d82523d6000602084013e612422565b606091505b5091509150818015612450575080511580612450575080806020019051602081101561244d57600080fd5b50515b61249e576040805162461bcd60e51b815260206004820152601a602482015279155b9a5cddd85c158c8e881514905394d1915497d1905253115160321b604482015290519081900360640190fd5b5050505050565b60008115806124c0575050808202828282816124bd57fe5b04145b610c39576040805162461bcd60e51b815260206004820152601460248201527364732d6d6174682d6d756c2d6f766572666c6f7760601b604482015290519081900360640190fd5b80820382811115610c39576040805162461bcd60e51b815260206004820152601560248201527464732d6d6174682d7375622d756e646572666c6f7760581b604482015290519081900360640190fd5b6001600160701b03841180159061257657506001600160701b038311155b6125bd576040805162461bcd60e51b8152602060048201526013602482015272556e697377617056323a204f564552464c4f5760681b604482015290519081900360640190fd5b60095463ffffffff42811691600160e01b900481168203908116158015906125ed57506001600160701b03841615155b801561260157506001600160701b03831615155b15612672578063ffffffff1661262f8561261a86612c6b565b6001600160e01b03169063ffffffff612c7d16565b600a80546001600160e01b03929092169290920201905563ffffffff811661265a8461261a87612c6b565b600b80546001600160e01b0392909216929092020190555b600980546001600160701b0319166001600160701b0388811691909117600160701b600160e01b031916600160701b8883168102919091176001600160e01b0316600160e01b63ffffffff871602179283905560408051848416815291909304909116602082015281517f1c411e9a96e071241c2f21f7726b17ae89e3cab4c78be50e062b03a9fffbbad1929181900390910190a1505050505050565b6001600160a01b03808416600081815260026020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b600c54801561295b57600061279b6115ba6001600160701b0386811690861663ffffffff6124a516565b905060006127a883612b7d565b90508082111561249e5760055460408051637ac9059160e11b815290516000926001600160a01b03169163f5920b22916004808301926020929190829003018186803b1580156127f757600080fd5b505afa15801561280b573d6000803e3d6000fd5b505050506040513d602081101561282157600080fd5b505190506000612843670de0b6b3a7640000610b09868663ffffffff61250816565b905060006128678461285b878663ffffffff6124a516565b9063ffffffff612ca216565b9050600081838161287457fe5b0490508015612195576008546000546128b9916001600160a01b031690670de0b6b3a7640000906128ac90859063ffffffff6124a516565b816128b357fe5b04612bcf565b6000856128d8670de0b6b3a7640000610b098a8463ffffffff61250816565b816128df57fe5b60085491900491506001600160a01b031663b9d92de8612905838563ffffffff61250816565b6040518263ffffffff1660e01b815260040180828152602001915050600060405180830381600087803b15801561293b57600080fd5b505af115801561294f573d6000803e3d6000fd5b50505050505050505050505b505050565b6001600160a01b038316600090815260016020526040902054612989908263ffffffff61250816565b6001600160a01b0380851660009081526001602052604080822093909355908416815220546129be908263ffffffff612ca216565b6001600160a01b038084166000818152600160209081526040918290209490945580518581529051919392871692600080516020612e5683398151915292918290030190a3505050565b6000808511612a49576040805162461bcd60e51b81526020600482015260086024820152675556323a2049494160c01b604482015290519081900360640190fd5b600084118015612a595750600083115b612a94576040805162461bcd60e51b815260206004820152600760248201526615558c8e88125360ca1b604482015290519081900360640190fd5b6000612aab8661271085900363ffffffff6124a516565b90506000612abf828663ffffffff6124a516565b90506000612ad98361285b8961271063ffffffff6124a516565b9050808281612ae457fe5b0498975050505050505050565b6001600160a01b038216600090815260016020526040902054612b1a908263ffffffff61250816565b6001600160a01b03831660009081526001602052604081209190915554612b47908263ffffffff61250816565b60009081556040805183815290516001600160a01b03851691600080516020612e56833981519152919081900360200190a35050565b60006003821115612bc0575080600160028204015b81811015612bba57809150600281828581612ba957fe5b040181612bb257fe5b049050612b92565b50612bca565b8115612bca575060015b919050565b600054612be2908263ffffffff612ca216565b60009081556001600160a01b038316815260016020526040902054612c0d908263ffffffff612ca216565b6001600160a01b0383166000818152600160209081526040808320949094558351858152935192939192600080516020612e568339815191529281900390910190a35050565b6000818310612c625781612c64565b825b9392505050565b6001600160701b0316600160701b0290565b60006001600160701b0382166001600160e01b03841681612c9a57fe5b049392505050565b80820182811015610c39576040805162461bcd60e51b815260206004820152601460248201527364732d6d6174682d6164642d6f766572666c6f7760601b604482015290519081900360640190fdfe556e697377617056323a20494e53554646494349454e545f4f55545055545f414d4f554e54556e697377617056323a20494e53554646494349454e545f494e5055545f414d4f554e544c209b5fc8ad50758f13e2e1088ba56a560dff690a1c6fef26394f4c03821c4f556e697377617056323a20494e53554646494349454e545f4c4951554944495459556e697377617056323a20494e53554646494349454e545f4c49515549444954595f4255524e4544556e697377617056323a204c4f434b4544000000000000000000000000000000556e697377617056323a20494e53554646494349454e545f4c49515549444954595f4d494e544544556e697377617056323a20557365206d696e7420746f2073746172742070616972dccd412f0b1252819cb1fd330b93224ca42612892bb3f4f789976e6d81936496556e697377617056323a20455854454e53494f4e5f4e4f545f454e4f5547485f4c4951554944495459ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c9a265627a7a72315820c8e54a44b3e92083a84070a82d95cdccc0051c1bc1018b6a6aea8f455f04320264736f6c63430005100032454950373132446f6d61696e28737472696e67206e616d652c737472696e672076657273696f6e2c75696e7432353620636861696e49642c6164647265737320766572696679696e67436f6e747261637429a265627a7a723158200f4ec837e8c1d39dcfd9747c65823d3a748bd419c36332139fd7dcb33f69c5ef64736f6c63430005100032000000000000000000000000168c95536c77be5400eed2aeee21ef64d9c8ca2e0000000000000000000000004ba754989b77925f47e26c54aaa1b03df23b32ce0000000000000000000000009aef9098af9d1e2d78fcd9b928c946a7f23307d3

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106100d05760003560e01c8063094b7415146100d557806317d1ff9f146100f95780631e3dd18b1461010157806323cf31181461011e578063320a557214610146578063357bf15c1461016c5780634d10127014610189578063574f2ba3146101a657806376f79738146101c05780637cd07e47146101f857806398118cb4146102005780639aab924814610208578063a2e74af614610210578063c223ba0914610236578063e6a4390514610274578063f5920b22146102a2575b600080fd5b6100dd6102aa565b604080516001600160a01b039092168252519081900360200190f35b6100dd6102b9565b6100dd6004803603602081101561011757600080fd5b50356102c8565b6101446004803603602081101561013457600080fd5b50356001600160a01b03166102ef565b005b6101446004803603602081101561015c57600080fd5b50356001600160a01b0316610361565b6101446004803603602081101561018257600080fd5b50356103d3565b6101446004803603602081101561019f57600080fd5b5035610428565b6101ae61047d565b60408051918252519081900360200190f35b6100dd600480360360608110156101d657600080fd5b506001600160a01b038135811691602081013582169160409091013516610483565b6100dd6107f9565b6101ae610808565b6101ae61080e565b6101446004803603602081101561022657600080fd5b50356001600160a01b0316610840565b6100dd6004803603608081101561024c57600080fd5b506001600160a01b0381358116916020810135821691604082013581169160600135166108b2565b6100dd6004803603604081101561028a57600080fd5b506001600160a01b0381358116916020013516610aa7565b6101ae610acd565b6004546001600160a01b031681565b6000546001600160a01b031681565b600381815481106102d557fe5b6000918252602090912001546001600160a01b0316905081565b6001546001600160a01b0316331461033f576040805162461bcd60e51b815260206004820152600e60248201526d2d282a1d102327a92124a22222a760911b604482015290519081900360640190fd5b600180546001600160a01b0319166001600160a01b0392909216919091179055565b6001546001600160a01b031633146103b1576040805162461bcd60e51b815260206004820152600e60248201526d2d282a1d102327a92124a22222a760911b604482015290519081900360640190fd5b600080546001600160a01b0319166001600160a01b0392909216919091179055565b6004546001600160a01b03163314610423576040805162461bcd60e51b815260206004820152600e60248201526d2d282a1d102327a92124a22222a760911b604482015290519081900360640190fd5b600555565b6004546001600160a01b03163314610478576040805162461bcd60e51b815260206004820152600e60248201526d2d282a1d102327a92124a22222a760911b604482015290519081900360640190fd5b600655565b60035490565b6000826001600160a01b0316846001600160a01b031614156104e6576040805162461bcd60e51b81526020600482015260176024820152765a463a204944454e544943414c5f41444452455353455360481b604482015290519081900360640190fd5b600080846001600160a01b0316866001600160a01b03161061050957848661050c565b85855b90925090506001600160a01b03821661055f576040805162461bcd60e51b815260206004820152601060248201526f5a463a205a45524f5f4144445245535360801b604482015290519081900360640190fd5b6001600160a01b038281166000908152600260209081526040808320858516845290915290205416156105cb576040805162461bcd60e51b815260206004820152600f60248201526e5a463a20504149525f45584953545360881b604482015290519081900360640190fd5b6060604051806020016105dd90610b6f565b6020820181038252601f19601f8201166040525090506000838360405160200180836001600160a01b03166001600160a01b031660601b8152601401826001600160a01b03166001600160a01b031660601b815260140192505050604051602081830303815290604052805190602001209050808251602084016000f594506001600160a01b0385166106a1576040805162461bcd60e51b81526020600482015260076024820152662d231d102821a360c91b604482015290519081900360640190fd5b60006106af8686868a610ad3565b6040805163c0c53b8b60e01b81526001600160a01b0388811660048301528781166024830152808416604483015291519293509088169163c0c53b8b9160648082019260009290919082900301818387803b15801561070d57600080fd5b505af1158015610721573d6000803e3d6000fd5b505050506001600160a01b0385811660008181526002602081815260408084208a87168086529083528185208054978e166001600160a01b031998891681179091559383528185208686528352818520805488168517905560038054600181018255958190527fc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b90950180549097168417909655925483519283529082015281517f0d3648bd0f6ba80134a33ba9275ac585d9d315f0ad8355cddefde31afa28d0e9929181900390910190a350505050509392505050565b6001546001600160a01b031681565b60055481565b60006040518060200161082090610b6f565b6020820181038252601f19601f8201166040525080519060200120905090565b6004546001600160a01b03163314610890576040805162461bcd60e51b815260206004820152600e60248201526d2d282a1d102327a92124a22222a760911b604482015290519081900360640190fd5b600480546001600160a01b0319166001600160a01b0392909216919091179055565b6001546000906001600160a01b03163314610905576040805162461bcd60e51b815260206004820152600e60248201526d2d282a1d102327a92124a22222a760911b604482015290519081900360640190fd5b6000546040805163044209e560e51b81526001600160a01b0387811660048301528681166024830152915191909216916388413ca0916044808301926020929190829003018186803b15801561095a57600080fd5b505afa15801561096e573d6000803e3d6000fd5b505050506040513d602081101561098457600080fd5b505190506001600160a01b038116610a2f5760008054604080516394a77e5b60e01b81526001600160a01b038981166004830152888116602483015287811660448301528681166064830152915191909216926394a77e5b92608480820193602093909283900390910190829087803b158015610a0057600080fd5b505af1158015610a14573d6000803e3d6000fd5b505050506040513d6020811015610a2a57600080fd5b505190505b846001600160a01b03166353ddd944826040518263ffffffff1660e01b815260040180826001600160a01b03166001600160a01b03168152602001915050600060405180830381600087803b158015610a8757600080fd5b505af1158015610a9b573d6000803e3d6000fd5b50505050949350505050565b60026020908152600092835260408084209091529082529020546001600160a01b031681565b60065481565b60008054604080516394a77e5b60e01b81526001600160a01b038881166004830152878116602483015286811660448301528581166064830152915191909216916394a77e5b91608480830192602092919082900301818787803b158015610b3a57600080fd5b505af1158015610b4e573d6000803e3d6000fd5b505050506040513d6020811015610b6457600080fd5b505195945050505050565b61301d80610b7d8339019056fe60806040526001600d5534801561001557600080fd5b506040514690806052612fcb823960408051918290036052018220828201825260068352652d34b931b7b760d11b6020938401528151808301835260018152603160f81b908401528151808401919091527f94c6df7cbb14f58e7ac6d9fa315f8346b33ef43dae2423c0e0e94673dd9e65ff818301527fc89efdaa54c0f20c7adf612882df0950f5a951637e0307cdcb4c672f298b8bc6606082015260808101949094523060a0808601919091528151808603909101815260c09094019052825192019190912060045550600580546001600160a01b03191633179055612eca806101016000396000f3fe608060405234801561001057600080fd5b50600436106101805760003560e01c8063022c0d9f1461018557806306fdde03146102115780630902f1ac1461028e578063095ea7b3146102c65780630dfe16811461030657806311816b041461032a578063145f3c271461033257806318160ddd1461033a57806323b872dd146103545780632ce510901461038a57806330adf81f146103b8578063313ce567146103c05780633644e515146103de578063432275e6146103e657806353ddd944146104325780635909c0d5146104585780635a3d5493146104605780636a627842146104685780636da996361461048e57806370a08231146104965780637464fc3d146104bc5780637ecebe00146104c457806389afcb44146104ea57806395d89b4114610529578063a9059cbb14610531578063ba9a7a561461055d578063c0c53b8b14610565578063c45a01551461059d578063d21220a7146105a5578063d505accf146105ad578063dd62ed3e146105fe578063fff6cae91461062c575b600080fd5b61020f6004803603608081101561019b57600080fd5b8135916020810135916001600160a01b036040830135169190810190608081016060820135600160201b8111156101d157600080fd5b8201836020820111156101e357600080fd5b803590602001918460018302840111600160201b8311171561020457600080fd5b509092509050610634565b005b610219610bdc565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561025357818101518382015260200161023b565b50505050905090810190601f1680156102805780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b610296610bfe565b604080516001600160701b03948516815292909316602083015263ffffffff168183015290519081900360600190f35b6102f2600480360360408110156102dc57600080fd5b506001600160a01b038135169060200135610c28565b604080519115158252519081900360200190f35b61030e610c3f565b604080516001600160a01b039092168252519081900360200190f35b61020f610c4e565b61020f610c9a565b610342610d30565b60408051918252519081900360200190f35b6102f26004803603606081101561036a57600080fd5b506001600160a01b03813581169160208101359091169060400135610d36565b610342600480360360408110156103a057600080fd5b506001600160a01b0381351690602001351515610dd0565b6103426112bb565b6103c86112cd565b6040805160ff9092168252519081900360200190f35b6103426112d2565b610414600480360360408110156103fc57600080fd5b506001600160a01b03813516906020013515156112d8565b60408051938452602084019290925282820152519081900360600190f35b61020f6004803603602081101561044857600080fd5b50356001600160a01b03166117b3565b61034261182d565b610342611833565b6103426004803603602081101561047e57600080fd5b50356001600160a01b0316611839565b61030e611b0f565b610342600480360360208110156104ac57600080fd5b50356001600160a01b0316611b1e565b610342611b30565b610342600480360360208110156104da57600080fd5b50356001600160a01b0316611b36565b6105106004803603602081101561050057600080fd5b50356001600160a01b0316611b48565b6040805192835260208301919091528051918290030190f35b610219611ecb565b6102f26004803603604081101561054757600080fd5b506001600160a01b038135169060200135611eea565b610342611ef7565b61020f6004803603606081101561057b57600080fd5b506001600160a01b038135811691602081013582169160409091013516611efd565b61030e611f93565b61030e611fa2565b61020f600480360360e08110156105c357600080fd5b506001600160a01b03813581169160208101359091169060408101359060608101359060ff6080820135169060a08101359060c00135611fb1565b6103426004803603604081101561061457600080fd5b506001600160a01b03813581169160200135166121a0565b61020f6121bd565b600d54600114610679576040805162461bcd60e51b81526020600482015260116024820152600080516020612da4833981519152604482015290519081900360640190fd5b6000600d558415158061068c5750600084115b6106c75760405162461bcd60e51b8152600401808060200182810382526025815260200180612cf26025913960400191505060405180910390fd5b6000806106d2610bfe565b5091509150816001600160701b0316871080156106f75750806001600160701b031686105b6107325760405162461bcd60e51b8152600401808060200182810382526021815260200180612d5b6021913960400191505060405180910390fd5b60065460075460009182916001600160a01b039182169190811690891682148015906107705750806001600160a01b0316896001600160a01b031614155b6107b9576040805162461bcd60e51b8152602060048201526015602482015274556e697377617056323a20494e56414c49445f544f60581b604482015290519081900360640190fd5b8a156107ca576107ca828a8d612312565b89156107db576107db818a8c612312565b861561089657886001600160a01b03166310d1e85c338d8d8c8c6040518663ffffffff1660e01b815260040180866001600160a01b03166001600160a01b03168152602001858152602001848152602001806020018281038252848482818152602001925080828437600081840152601f19601f8201169050808301925050509650505050505050600060405180830381600087803b15801561087d57600080fd5b505af1158015610891573d6000803e3d6000fd5b505050505b604080516370a0823160e01b815230600482015290516001600160a01b038416916370a08231916024808301926020929190829003018186803b1580156108dc57600080fd5b505afa1580156108f0573d6000803e3d6000fd5b505050506040513d602081101561090657600080fd5b5051604080516370a0823160e01b815230600482015290519195506001600160a01b038316916370a0823191602480820192602092909190829003018186803b15801561095257600080fd5b505afa158015610966573d6000803e3d6000fd5b505050506040513d602081101561097c57600080fd5b5051925060009150506001600160701b0385168a9003831161099f5760006109ae565b89856001600160701b03160383035b9050600089856001600160701b03160383116109cb5760006109da565b89856001600160701b03160383035b905060008211806109eb5750600081115b610a265760405162461bcd60e51b8152600401808060200182810382526024815260200180612d176024913960400191505060405180910390fd5b60055460408051632604632d60e21b815290516000926001600160a01b0316916398118cb4916004808301926020929190829003018186803b158015610a6b57600080fd5b505afa158015610a7f573d6000803e3d6000fd5b505050506040513d6020811015610a9557600080fd5b505190506000610acc610aae858463ffffffff6124a516565b610ac08861271063ffffffff6124a516565b9063ffffffff61250816565b90506000610ae3610aae858563ffffffff6124a516565b9050610b156305f5e100610b096001600160701b038c8116908c1663ffffffff6124a516565b9063ffffffff6124a516565b610b25838363ffffffff6124a516565b1015610b67576040805162461bcd60e51b815260206004820152600c60248201526b556e697377617056323a204b60a01b604482015290519081900360640190fd5b505050610b7684848888612558565b60408051838152602081018390528082018d9052606081018c905290516001600160a01b038b169133917fd78ad95fa46c994b6551d0da85fc275fe613ce37657fb8d5e3d130840159d8229181900360800190a350506001600d55505050505050505050565b604051806040016040528060068152602001652d34b931b7b760d11b81525081565b6009546001600160701b0380821692600160701b830490911691600160e01b900463ffffffff1690565b6000610c3533848461270f565b5060015b92915050565b6006546001600160a01b031681565b600d54600114610c93576040805162461bcd60e51b81526020600482015260116024820152600080516020612da4833981519152604482015290519081900360640190fd5b6001600d55565b600d54600114610cdf576040805162461bcd60e51b81526020600482015260116024820152600080516020612da4833981519152604482015290519081900360640190fd5b6000600d81905580610cef610bfe565b5091509150610cfe8282612771565b600954610d24906001600160701b0380821691600160701b90041663ffffffff6124a516565b600c5550506001600d55565b60005481565b6001600160a01b038316600090815260026020908152604080832033845290915281205460001914610dbb576001600160a01b0384166000908152600260209081526040808320338452909152902054610d96908363ffffffff61250816565b6001600160a01b03851660009081526002602090815260408083203384529091529020555b610dc6848484612960565b5060019392505050565b6000600d54600114610e17576040805162461bcd60e51b81526020600482015260116024820152600080516020612da4833981519152604482015290519081900360640190fd5b6000600d81905580610e27610bfe565b50600654600754604080516370a0823160e01b815230600482015290519496509294506001600160a01b03918216939116916000918291829186916370a08231916024808301926020929190829003018186803b158015610e8757600080fd5b505afa158015610e9b573d6000803e3d6000fd5b505050506040513d6020811015610eb157600080fd5b5051604080516370a0823160e01b815230600482015290519192506000916001600160a01b038716916370a08231916024808301926020929190829003018186803b158015610eff57600080fd5b505afa158015610f13573d6000803e3d6000fd5b505050506040513d6020811015610f2957600080fd5b5051306000908152600160209081526040808320546005548251632604632d60e21b8152925195965090946001600160a01b03909116926398118cb49260048082019391829003018186803b158015610f8157600080fd5b505afa158015610f95573d6000803e3d6000fd5b505050506040513d6020811015610fab57600080fd5b50519050610fb98a8a612771565b60005480610fcd848763ffffffff6124a516565b81610fd457fe5b04965080610fe8848663ffffffff6124a516565b81610fef57fe5b0495508c156110645761101a86878c6001600160701b031603898e6001600160701b03160385612a08565b87019650869b50848c1061105f5760405162461bcd60e51b8152600401808060200182810382526029815260200180612e2d6029913960400191505060405180910390fd5b6110cb565b61108687888d6001600160701b031603888d6001600160701b03160385612a08565b86019550859b50838c106110cb5760405162461bcd60e51b8152600401808060200182810382526029815260200180612e2d6029913960400191505060405180910390fd5b6000871180156110db5750600086115b6111165760405162461bcd60e51b8152600401808060200182810382526028815260200180612d7c6028913960400191505060405180910390fd5b6111203084612af1565b8c1561113657611131898f8e612312565b611141565b611141888f8e612312565b604080516370a0823160e01b815230600482015290516001600160a01b038b16916370a08231916024808301926020929190829003018186803b15801561118757600080fd5b505afa15801561119b573d6000803e3d6000fd5b505050506040513d60208110156111b157600080fd5b5051604080516370a0823160e01b815230600482015290519196506001600160a01b038a16916370a0823191602480820192602092909190829003018186803b1580156111fd57600080fd5b505afa158015611211573d6000803e3d6000fd5b505050506040513d602081101561122757600080fd5b5051935061123785858d8d612558565b60095461125d906001600160701b0380821691600160701b90041663ffffffff6124a516565b600c819055508d6001600160a01b0316336001600160a01b0316600080516020612e0d8339815191528989604051808381526020018281526020019250505060405180910390a350506001600d5550979a9950505050505050505050565b600080516020612e7683398151915281565b601281565b60045481565b6000806000600d54600114611322576040805162461bcd60e51b81526020600482015260116024820152600080516020612da4833981519152604482015290519081900360640190fd5b6000600d819055546113655760405162461bcd60e51b8152600401808060200182810382526021815260200180612dec6021913960400191505060405180910390fd5b600080611370610bfe565b50600654604080516370a0823160e01b815230600482015290519395509193506000926001600160a01b03909116916370a08231916024808301926020929190829003018186803b1580156113c457600080fd5b505afa1580156113d8573d6000803e3d6000fd5b505050506040513d60208110156113ee57600080fd5b5051600754604080516370a0823160e01b815230600482015290519293506000926001600160a01b03909216916370a0823191602480820192602092909190829003018186803b15801561144157600080fd5b505afa158015611455573d6000803e3d6000fd5b505050506040513d602081101561146b57600080fd5b50519050611488826001600160701b03861663ffffffff61250816565b95506114a3816001600160701b03851663ffffffff61250816565b94506000600560009054906101000a90046001600160a01b03166001600160a01b03166398118cb46040518163ffffffff1660e01b815260040160206040518083038186803b1580156114f557600080fd5b505afa158015611509573d6000803e3d6000fd5b505050506040513d602081101561151f57600080fd5b50519050600089156115c6576001881161157a576040805162461bcd60e51b815260206004820152601760248201527616940e88125b9cdd59999a58da595b9d08105b5bdd5b9d604a1b604482015290519081900360640190fd5b6115bf6115ba846127106115978c600288048303600019016124a5565b8161159e57fe5b6009546001600160701b0316919004019063ffffffff6124a516565b612b7d565b905061165a565b60018711611615576040805162461bcd60e51b815260206004820152601760248201527616940e88125b9cdd59999a58da595b9d08105b5bdd5b9d604a1b604482015290519081900360640190fd5b6116576115ba6127106116318a600287048303600019016124a5565b8161163857fe5b6009548892909104600160701b9091046001600160701b0316016124a5565b90505b600954600090611687906115ba906001600160701b0380821691600160701b90041663ffffffff6124a516565b905060006116a4600054610b09848661250890919063ffffffff16565b9050818082816116b057fe5b600980546001600160701b038a8116600160701b02600160701b600160e01b0319918d166001600160701b03199093169290921716179055049b506116f58989612771565b60008c116117345760405162461bcd60e51b8152600401808060200182810382526028815260200180612dc46028913960400191505060405180910390fd5b61173e8e8d612bcf565b61174a87878b8b612558565b600954611770906001600160701b0380821691600160701b90041663ffffffff6124a516565b600c55604080518c8152602081018c905281513392600080516020612d3b833981519152928290030190a25050505050505050506001600d819055509250925092565b6005546001600160a01b0316331461180b576040805162461bcd60e51b8152602060048201526016602482015275155b9a5cddd85c158c8e881393d517d0531313d5d15160521b604482015290519081900360640190fd5b600880546001600160a01b0319166001600160a01b0392909216919091179055565b600a5481565b600b5481565b6000600d54600114611880576040805162461bcd60e51b81526020600482015260116024820152600080516020612da4833981519152604482015290519081900360640190fd5b6000600d81905580611890610bfe565b50600654604080516370a0823160e01b815230600482015290519395509193506000926001600160a01b03909116916370a08231916024808301926020929190829003018186803b1580156118e457600080fd5b505afa1580156118f8573d6000803e3d6000fd5b505050506040513d602081101561190e57600080fd5b5051600754604080516370a0823160e01b815230600482015290519293506000926001600160a01b03909216916370a0823191602480820192602092909190829003018186803b15801561196157600080fd5b505afa158015611975573d6000803e3d6000fd5b505050506040513d602081101561198b57600080fd5b5051905060006119aa836001600160701b03871663ffffffff61250816565b905060006119c7836001600160701b03871663ffffffff61250816565b90506119d38686612771565b60005480611a08576119f46103e8610ac06115ba868663ffffffff6124a516565b9750611a0360006103e8612bcf565b611a57565b611a546001600160701b038816611a25858463ffffffff6124a516565b81611a2c57fe5b046001600160701b038816611a47858563ffffffff6124a516565b81611a4e57fe5b04612c53565b97505b60008811611a965760405162461bcd60e51b8152600401808060200182810382526028815260200180612dc46028913960400191505060405180910390fd5b611aa08989612bcf565b611aac85858989612558565b600954611ad2906001600160701b0380821691600160701b90041663ffffffff6124a516565b600c55604080518481526020810184905281513392600080516020612d3b833981519152928290030190a250506001600d55509395945050505050565b6008546001600160a01b031681565b60016020526000908152604090205481565b600c5481565b60036020526000908152604090205481565b600080600d54600114611b90576040805162461bcd60e51b81526020600482015260116024820152600080516020612da4833981519152604482015290519081900360640190fd5b6000600d81905580611ba0610bfe565b50600654600754604080516370a0823160e01b815230600482015290519496509294506001600160a01b039182169391169160009184916370a08231916024808301926020929190829003018186803b158015611bfc57600080fd5b505afa158015611c10573d6000803e3d6000fd5b505050506040513d6020811015611c2657600080fd5b5051604080516370a0823160e01b815230600482015290519192506000916001600160a01b038516916370a08231916024808301926020929190829003018186803b158015611c7457600080fd5b505afa158015611c88573d6000803e3d6000fd5b505050506040513d6020811015611c9e57600080fd5b505130600090815260016020526040902054909150611cbd8787612771565b60005480611cd1838663ffffffff6124a516565b81611cd857fe5b04995080611cec838563ffffffff6124a516565b81611cf357fe5b04985060008a118015611d065750600089115b611d415760405162461bcd60e51b8152600401808060200182810382526028815260200180612d7c6028913960400191505060405180910390fd5b611d4b3083612af1565b611d56868c8c612312565b611d61858c8b612312565b604080516370a0823160e01b815230600482015290516001600160a01b038816916370a08231916024808301926020929190829003018186803b158015611da757600080fd5b505afa158015611dbb573d6000803e3d6000fd5b505050506040513d6020811015611dd157600080fd5b5051604080516370a0823160e01b815230600482015290519195506001600160a01b038716916370a0823191602480820192602092909190829003018186803b158015611e1d57600080fd5b505afa158015611e31573d6000803e3d6000fd5b505050506040513d6020811015611e4757600080fd5b50519250611e5784848a8a612558565b600954611e7d906001600160701b0380821691600160701b90041663ffffffff6124a516565b600c55604080518b8152602081018b905281516001600160a01b038e16923392600080516020612e0d833981519152929081900390910190a350505050505050506001600d81905550915091565b6040518060400160405280600381526020016216941560ea1b81525081565b6000610c35338484612960565b6103e881565b6005546001600160a01b03163314611f54576040805162461bcd60e51b81526020600482015260156024820152742d34b931b7b72830b4b91d102327a92124a22222a760591b604482015290519081900360640190fd5b600680546001600160a01b039485166001600160a01b031991821617909155600780549385169382169390931790925560088054919093169116179055565b6005546001600160a01b031681565b6007546001600160a01b031681565b42841015611ffb576040805162461bcd60e51b8152602060048201526012602482015271155b9a5cddd85c158c8e881156141254915160721b604482015290519081900360640190fd5b6004546001600160a01b038089166000818152600360209081526040808320805460018082019092558251600080516020612e768339815191528186015280840196909652958d166060860152608085018c905260a085019590955260c08085018b90528151808603909101815260e08501825280519083012061190160f01b6101008601526101028501969096526101228085019690965280518085039096018652610142840180825286519683019690962095839052610162840180825286905260ff89166101828501526101a284018890526101c28401879052519193926101e280820193601f1981019281900390910190855afa158015612104573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b0381161580159061213a5750886001600160a01b0316816001600160a01b0316145b61218a576040805162461bcd60e51b815260206004820152601c60248201527b556e697377617056323a20494e56414c49445f5349474e415455524560201b604482015290519081900360640190fd5b61219589898961270f565b505050505050505050565b600260209081526000928352604080842090915290825290205481565b600d54600114612202576040805162461bcd60e51b81526020600482015260116024820152600080516020612da4833981519152604482015290519081900360640190fd5b6000600d55600654604080516370a0823160e01b81523060048201529051610c93926001600160a01b0316916370a08231916024808301926020929190829003018186803b15801561225357600080fd5b505afa158015612267573d6000803e3d6000fd5b505050506040513d602081101561227d57600080fd5b5051600754604080516370a0823160e01b815230600482015290516001600160a01b03909216916370a0823191602480820192602092909190829003018186803b1580156122ca57600080fd5b505afa1580156122de573d6000803e3d6000fd5b505050506040513d60208110156122f457600080fd5b50516009546001600160701b0380821691600160701b900416612558565b60408051808201825260198152787472616e7366657228616464726573732c75696e743235362960381b60209182015281516001600160a01b0385811660248301526044808301869052845180840390910181526064909201845291810180516001600160e01b031663a9059cbb60e01b1781529251815160009460609489169392918291908083835b602083106123bb5780518252601f19909201916020918201910161239c565b6001836020036101000a0380198251168184511680821785525050505050509050019150506000604051808303816000865af19150503d806000811461241d576040519150601f19603f3d011682016040523d82523d6000602084013e612422565b606091505b5091509150818015612450575080511580612450575080806020019051602081101561244d57600080fd5b50515b61249e576040805162461bcd60e51b815260206004820152601a602482015279155b9a5cddd85c158c8e881514905394d1915497d1905253115160321b604482015290519081900360640190fd5b5050505050565b60008115806124c0575050808202828282816124bd57fe5b04145b610c39576040805162461bcd60e51b815260206004820152601460248201527364732d6d6174682d6d756c2d6f766572666c6f7760601b604482015290519081900360640190fd5b80820382811115610c39576040805162461bcd60e51b815260206004820152601560248201527464732d6d6174682d7375622d756e646572666c6f7760581b604482015290519081900360640190fd5b6001600160701b03841180159061257657506001600160701b038311155b6125bd576040805162461bcd60e51b8152602060048201526013602482015272556e697377617056323a204f564552464c4f5760681b604482015290519081900360640190fd5b60095463ffffffff42811691600160e01b900481168203908116158015906125ed57506001600160701b03841615155b801561260157506001600160701b03831615155b15612672578063ffffffff1661262f8561261a86612c6b565b6001600160e01b03169063ffffffff612c7d16565b600a80546001600160e01b03929092169290920201905563ffffffff811661265a8461261a87612c6b565b600b80546001600160e01b0392909216929092020190555b600980546001600160701b0319166001600160701b0388811691909117600160701b600160e01b031916600160701b8883168102919091176001600160e01b0316600160e01b63ffffffff871602179283905560408051848416815291909304909116602082015281517f1c411e9a96e071241c2f21f7726b17ae89e3cab4c78be50e062b03a9fffbbad1929181900390910190a1505050505050565b6001600160a01b03808416600081815260026020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b600c54801561295b57600061279b6115ba6001600160701b0386811690861663ffffffff6124a516565b905060006127a883612b7d565b90508082111561249e5760055460408051637ac9059160e11b815290516000926001600160a01b03169163f5920b22916004808301926020929190829003018186803b1580156127f757600080fd5b505afa15801561280b573d6000803e3d6000fd5b505050506040513d602081101561282157600080fd5b505190506000612843670de0b6b3a7640000610b09868663ffffffff61250816565b905060006128678461285b878663ffffffff6124a516565b9063ffffffff612ca216565b9050600081838161287457fe5b0490508015612195576008546000546128b9916001600160a01b031690670de0b6b3a7640000906128ac90859063ffffffff6124a516565b816128b357fe5b04612bcf565b6000856128d8670de0b6b3a7640000610b098a8463ffffffff61250816565b816128df57fe5b60085491900491506001600160a01b031663b9d92de8612905838563ffffffff61250816565b6040518263ffffffff1660e01b815260040180828152602001915050600060405180830381600087803b15801561293b57600080fd5b505af115801561294f573d6000803e3d6000fd5b50505050505050505050505b505050565b6001600160a01b038316600090815260016020526040902054612989908263ffffffff61250816565b6001600160a01b0380851660009081526001602052604080822093909355908416815220546129be908263ffffffff612ca216565b6001600160a01b038084166000818152600160209081526040918290209490945580518581529051919392871692600080516020612e5683398151915292918290030190a3505050565b6000808511612a49576040805162461bcd60e51b81526020600482015260086024820152675556323a2049494160c01b604482015290519081900360640190fd5b600084118015612a595750600083115b612a94576040805162461bcd60e51b815260206004820152600760248201526615558c8e88125360ca1b604482015290519081900360640190fd5b6000612aab8661271085900363ffffffff6124a516565b90506000612abf828663ffffffff6124a516565b90506000612ad98361285b8961271063ffffffff6124a516565b9050808281612ae457fe5b0498975050505050505050565b6001600160a01b038216600090815260016020526040902054612b1a908263ffffffff61250816565b6001600160a01b03831660009081526001602052604081209190915554612b47908263ffffffff61250816565b60009081556040805183815290516001600160a01b03851691600080516020612e56833981519152919081900360200190a35050565b60006003821115612bc0575080600160028204015b81811015612bba57809150600281828581612ba957fe5b040181612bb257fe5b049050612b92565b50612bca565b8115612bca575060015b919050565b600054612be2908263ffffffff612ca216565b60009081556001600160a01b038316815260016020526040902054612c0d908263ffffffff612ca216565b6001600160a01b0383166000818152600160209081526040808320949094558351858152935192939192600080516020612e568339815191529281900390910190a35050565b6000818310612c625781612c64565b825b9392505050565b6001600160701b0316600160701b0290565b60006001600160701b0382166001600160e01b03841681612c9a57fe5b049392505050565b80820182811015610c39576040805162461bcd60e51b815260206004820152601460248201527364732d6d6174682d6164642d6f766572666c6f7760601b604482015290519081900360640190fdfe556e697377617056323a20494e53554646494349454e545f4f55545055545f414d4f554e54556e697377617056323a20494e53554646494349454e545f494e5055545f414d4f554e544c209b5fc8ad50758f13e2e1088ba56a560dff690a1c6fef26394f4c03821c4f556e697377617056323a20494e53554646494349454e545f4c4951554944495459556e697377617056323a20494e53554646494349454e545f4c49515549444954595f4255524e4544556e697377617056323a204c4f434b4544000000000000000000000000000000556e697377617056323a20494e53554646494349454e545f4c49515549444954595f4d494e544544556e697377617056323a20557365206d696e7420746f2073746172742070616972dccd412f0b1252819cb1fd330b93224ca42612892bb3f4f789976e6d81936496556e697377617056323a20455854454e53494f4e5f4e4f545f454e4f5547485f4c4951554944495459ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c9a265627a7a72315820c8e54a44b3e92083a84070a82d95cdccc0051c1bc1018b6a6aea8f455f04320264736f6c63430005100032454950373132446f6d61696e28737472696e67206e616d652c737472696e672076657273696f6e2c75696e7432353620636861696e49642c6164647265737320766572696679696e67436f6e747261637429a265627a7a723158200f4ec837e8c1d39dcfd9747c65823d3a748bd419c36332139fd7dcb33f69c5ef64736f6c63430005100032

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

000000000000000000000000168c95536c77be5400eed2aeee21ef64d9c8ca2e0000000000000000000000004ba754989b77925f47e26c54aaa1b03df23b32ce0000000000000000000000009aef9098af9d1e2d78fcd9b928c946a7f23307d3

-----Decoded View---------------
Arg [0] : _energyFactory (address): 0x168C95536C77Be5400EED2AEEE21ef64D9c8CA2E
Arg [1] : _feeToSetter (address): 0x4bA754989b77925F47e26C54aaa1b03Df23B32Ce
Arg [2] : _migrator (address): 0x9AEF9098af9d1E2d78FCd9B928C946a7f23307d3

-----Encoded View---------------
3 Constructor Arguments found :
Arg [0] : 000000000000000000000000168c95536c77be5400eed2aeee21ef64d9c8ca2e
Arg [1] : 0000000000000000000000004ba754989b77925f47e26c54aaa1b03df23b32ce
Arg [2] : 0000000000000000000000009aef9098af9d1e2d78fcd9b928c946a7f23307d3


Block Transaction Gas Used Reward
view all blocks collator

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
Loading...
Loading
[ 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.