ETH Price: $3,401.69 (+2.58%)

Contract

0x73A740d256188395D9AF56db31AB1e9Bb2F2978D
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Token Holdings

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Approve214975282024-12-28 0:58:4721 hrs ago1735347527IN
0x73A740d2...Bb2F2978D
0 ETH0.000269065.7
Approve214629492024-12-23 4:57:475 days ago1734929867IN
0x73A740d2...Bb2F2978D
0 ETH0.00014325.73254508
Approve214176882024-12-16 21:11:3512 days ago1734383495IN
0x73A740d2...Bb2F2978D
0 ETH0.0009879421.01426393
Claim Fees214089252024-12-15 15:50:5913 days ago1734277859IN
0x73A740d2...Bb2F2978D
0 ETH0.004467319.43182388
Approve213319982024-12-04 22:03:2324 days ago1733349803IN
0x73A740d2...Bb2F2978D
0 ETH0.0018899739.98669891
Approve213302802024-12-04 16:18:5924 days ago1733329139IN
0x73A740d2...Bb2F2978D
0 ETH0.0024662552.45899654
Approve213292242024-12-04 12:45:5924 days ago1733316359IN
0x73A740d2...Bb2F2978D
0 ETH0.0009864520.89732452
Approve213292232024-12-04 12:45:4724 days ago1733316347IN
0x73A740d2...Bb2F2978D
0 ETH0.0011820925.00986549
Claim Fees213104542024-12-01 21:49:1127 days ago1733089751IN
0x73A740d2...Bb2F2978D
0 ETH0.0073163116.39389606
Approve212250322024-11-19 23:21:2338 days ago1732058483IN
0x73A740d2...Bb2F2978D
0 ETH0.0002645310.58961179
Approve211824192024-11-14 0:41:4744 days ago1731544907IN
0x73A740d2...Bb2F2978D
0 ETH0.001714936.32889185
Approve211354002024-11-07 11:12:5951 days ago1730977979IN
0x73A740d2...Bb2F2978D
0 ETH0.000693714.75941942
Approve211340102024-11-07 6:33:2351 days ago1730961203IN
0x73A740d2...Bb2F2978D
0 ETH0.0004827210.2261948
Approve211340082024-11-07 6:32:5951 days ago1730961179IN
0x73A740d2...Bb2F2978D
0 ETH0.0005121110.83490218
Approve211269972024-11-06 7:03:3552 days ago1730876615IN
0x73A740d2...Bb2F2978D
0 ETH0.0014123729.88194355
Approve210205712024-10-22 10:38:1167 days ago1729593491IN
0x73A740d2...Bb2F2978D
0 ETH0.0005157210.91133592
Approve209607602024-10-14 2:14:5975 days ago1728872099IN
0x73A740d2...Bb2F2978D
0 ETH0.000208178.33318796
Approve208390812024-09-27 2:50:2392 days ago1727405423IN
0x73A740d2...Bb2F2978D
0 ETH0.0003826315.31708392
Approve208369672024-09-26 19:45:1193 days ago1727379911IN
0x73A740d2...Bb2F2978D
0 ETH0.0008768418.67010562
Approve208369382024-09-26 19:39:1193 days ago1727379551IN
0x73A740d2...Bb2F2978D
0 ETH0.0008672918.46211673
Approve208357972024-09-26 15:50:2393 days ago1727365823IN
0x73A740d2...Bb2F2978D
0 ETH0.0018839940.08408433
Claim Fees208015032024-09-21 21:01:1198 days ago1726952471IN
0x73A740d2...Bb2F2978D
0 ETH0.002930966.18813328
Approve207461362024-09-14 3:21:47105 days ago1726284107IN
0x73A740d2...Bb2F2978D
0 ETH0.000090321.91343316
Approve205562632024-08-18 14:58:47132 days ago1723993127IN
0x73A740d2...Bb2F2978D
0 ETH0.00006641.41242228
Approve205456632024-08-17 3:28:59133 days ago1723865339IN
0x73A740d2...Bb2F2978D
0 ETH0.000451259.54727291
View all transactions

View more zero value Internal Transactions in Advanced View mode

Advanced mode:
Loading...
Loading

Contract Source Code Verified (Exact Match)

Contract Name:
Cube

Compiler Version
v0.8.26+commit.8a97fa7a

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 7 : cube.sol
// SPDX-License-Identifier: MIT
pragma solidity >=0.6.2;

/*
    Cryptographic Universal Blockchain Exchange (CUBE) 

    An experimental protocol in the VIDYA ecosystem that routes
    MEV volume through Uniswap V3 pools growing VIDYA through the  
    fees building up within it. 
*/

import "@openzeppelin/contracts/token/ERC20/ERC20.sol";
import "@openzeppelin/contracts/access/Ownable.sol";

interface Router {
    function factory() external view returns (address);

    function positionManager() external view returns (address);

    function WETH9() external view returns (address);
}

interface Factory {
    function createPool(
        address tokenA,
        address tokenB,
        uint24 fee
    ) external returns (address);
}

interface Pool {
    function initialize(uint160 _sqrtPriceX96) external;
}

interface Params {
    struct MintParams {
        address token0;
        address token1;
        uint24 fee;
        int24 tickLower;
        int24 tickUpper;
        uint256 amount0Desired;
        uint256 amount1Desired;
        uint256 amount0Min;
        uint256 amount1Min;
        address recipient;
        uint256 deadline;
    }

    struct CollectParams {
        uint256 tokenId;
        address recipient;
        uint128 amount0Max;
        uint128 amount1Max;
    }
}

interface PositionManager is Params {
    function mint(MintParams calldata)
        external
        payable
        returns (
            uint256 tokenId,
            uint128 liquidity,
            uint256 amount0,
            uint256 amount1
        );

    function collect(CollectParams calldata)
        external
        payable
        returns (uint256 amount0, uint256 amount1);

    function positions(uint256)
        external
        view
        returns (
            uint96 nonce,
            address operator,
            address token0,
            address token1,
            uint24 fee,
            int24 tickLower,
            int24 tickUpper,
            uint128 liquidity,
            uint256 feeGrowthInside0LastX128,
            uint256 feeGrowthInside1LastX128,
            uint128 tokensOwed0,
            uint128 tokensOwed1
        );
}

contract TickMath {
    int24 internal constant MIN_TICK = -887272;
    int24 internal constant MAX_TICK = -MIN_TICK;
    uint160 internal constant MIN_SQRT_RATIO = 4295128739;
    uint160 internal constant MAX_SQRT_RATIO =
        1461446703485210103287273052203988822378723970342;

    function _getSqrtRatioAtTick(int24 tick)
        internal
        pure
        returns (uint160 sqrtPriceX96)
    {
        unchecked {
            uint256 absTick = tick < 0
                ? uint256(-int256(tick))
                : uint256(int256(tick));
            require(absTick <= uint256(int256(MAX_TICK)), "T");

            uint256 ratio = absTick & 0x1 != 0
                ? 0xfffcb933bd6fad37aa2d162d1a594001
                : 0x100000000000000000000000000000000;
            if (absTick & 0x2 != 0)
                ratio = (ratio * 0xfff97272373d413259a46990580e213a) >> 128;
            if (absTick & 0x4 != 0)
                ratio = (ratio * 0xfff2e50f5f656932ef12357cf3c7fdcc) >> 128;
            if (absTick & 0x8 != 0)
                ratio = (ratio * 0xffe5caca7e10e4e61c3624eaa0941cd0) >> 128;
            if (absTick & 0x10 != 0)
                ratio = (ratio * 0xffcb9843d60f6159c9db58835c926644) >> 128;
            if (absTick & 0x20 != 0)
                ratio = (ratio * 0xff973b41fa98c081472e6896dfb254c0) >> 128;
            if (absTick & 0x40 != 0)
                ratio = (ratio * 0xff2ea16466c96a3843ec78b326b52861) >> 128;
            if (absTick & 0x80 != 0)
                ratio = (ratio * 0xfe5dee046a99a2a811c461f1969c3053) >> 128;
            if (absTick & 0x100 != 0)
                ratio = (ratio * 0xfcbe86c7900a88aedcffc83b479aa3a4) >> 128;
            if (absTick & 0x200 != 0)
                ratio = (ratio * 0xf987a7253ac413176f2b074cf7815e54) >> 128;
            if (absTick & 0x400 != 0)
                ratio = (ratio * 0xf3392b0822b70005940c7a398e4b70f3) >> 128;
            if (absTick & 0x800 != 0)
                ratio = (ratio * 0xe7159475a2c29b7443b29c7fa6e889d9) >> 128;
            if (absTick & 0x1000 != 0)
                ratio = (ratio * 0xd097f3bdfd2022b8845ad8f792aa5825) >> 128;
            if (absTick & 0x2000 != 0)
                ratio = (ratio * 0xa9f746462d870fdf8a65dc1f90e061e5) >> 128;
            if (absTick & 0x4000 != 0)
                ratio = (ratio * 0x70d869a156d2a1b890bb3df62baf32f7) >> 128;
            if (absTick & 0x8000 != 0)
                ratio = (ratio * 0x31be135f97d08fd981231505542fcfa6) >> 128;
            if (absTick & 0x10000 != 0)
                ratio = (ratio * 0x9aa508b5b7a84e1c677de54f3e99bc9) >> 128;
            if (absTick & 0x20000 != 0)
                ratio = (ratio * 0x5d6af8dedb81196699c329225ee604) >> 128;
            if (absTick & 0x40000 != 0)
                ratio = (ratio * 0x2216e584f5fa1ea926041bedfe98) >> 128;
            if (absTick & 0x80000 != 0)
                ratio = (ratio * 0x48a170391f7dc42444e8fa2) >> 128;

            if (tick > 0) ratio = type(uint256).max / ratio;

            sqrtPriceX96 = uint160(
                (ratio >> 32) + (ratio % (1 << 32) == 0 ? 0 : 1)
            );
        }
    }

    function _getTickAtSqrtRatio(uint160 sqrtPriceX96)
        internal
        pure
        returns (int24 tick)
    {
        unchecked {
            require(
                sqrtPriceX96 >= MIN_SQRT_RATIO && sqrtPriceX96 < MAX_SQRT_RATIO,
                "R"
            );
            uint256 ratio = uint256(sqrtPriceX96) << 32;

            uint256 r = ratio;
            uint256 msb = 0;

            assembly {
                let f := shl(7, gt(r, 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF))
                msb := or(msb, f)
                r := shr(f, r)
            }
            assembly {
                let f := shl(6, gt(r, 0xFFFFFFFFFFFFFFFF))
                msb := or(msb, f)
                r := shr(f, r)
            }
            assembly {
                let f := shl(5, gt(r, 0xFFFFFFFF))
                msb := or(msb, f)
                r := shr(f, r)
            }
            assembly {
                let f := shl(4, gt(r, 0xFFFF))
                msb := or(msb, f)
                r := shr(f, r)
            }
            assembly {
                let f := shl(3, gt(r, 0xFF))
                msb := or(msb, f)
                r := shr(f, r)
            }
            assembly {
                let f := shl(2, gt(r, 0xF))
                msb := or(msb, f)
                r := shr(f, r)
            }
            assembly {
                let f := shl(1, gt(r, 0x3))
                msb := or(msb, f)
                r := shr(f, r)
            }
            assembly {
                let f := gt(r, 0x1)
                msb := or(msb, f)
            }

            if (msb >= 128) r = ratio >> (msb - 127);
            else r = ratio << (127 - msb);

            int256 log_2 = (int256(msb) - 128) << 64;

            assembly {
                r := shr(127, mul(r, r))
                let f := shr(128, r)
                log_2 := or(log_2, shl(63, f))
                r := shr(f, r)
            }
            assembly {
                r := shr(127, mul(r, r))
                let f := shr(128, r)
                log_2 := or(log_2, shl(62, f))
                r := shr(f, r)
            }
            assembly {
                r := shr(127, mul(r, r))
                let f := shr(128, r)
                log_2 := or(log_2, shl(61, f))
                r := shr(f, r)
            }
            assembly {
                r := shr(127, mul(r, r))
                let f := shr(128, r)
                log_2 := or(log_2, shl(60, f))
                r := shr(f, r)
            }
            assembly {
                r := shr(127, mul(r, r))
                let f := shr(128, r)
                log_2 := or(log_2, shl(59, f))
                r := shr(f, r)
            }
            assembly {
                r := shr(127, mul(r, r))
                let f := shr(128, r)
                log_2 := or(log_2, shl(58, f))
                r := shr(f, r)
            }
            assembly {
                r := shr(127, mul(r, r))
                let f := shr(128, r)
                log_2 := or(log_2, shl(57, f))
                r := shr(f, r)
            }
            assembly {
                r := shr(127, mul(r, r))
                let f := shr(128, r)
                log_2 := or(log_2, shl(56, f))
                r := shr(f, r)
            }
            assembly {
                r := shr(127, mul(r, r))
                let f := shr(128, r)
                log_2 := or(log_2, shl(55, f))
                r := shr(f, r)
            }
            assembly {
                r := shr(127, mul(r, r))
                let f := shr(128, r)
                log_2 := or(log_2, shl(54, f))
                r := shr(f, r)
            }
            assembly {
                r := shr(127, mul(r, r))
                let f := shr(128, r)
                log_2 := or(log_2, shl(53, f))
                r := shr(f, r)
            }
            assembly {
                r := shr(127, mul(r, r))
                let f := shr(128, r)
                log_2 := or(log_2, shl(52, f))
                r := shr(f, r)
            }
            assembly {
                r := shr(127, mul(r, r))
                let f := shr(128, r)
                log_2 := or(log_2, shl(51, f))
                r := shr(f, r)
            }
            assembly {
                r := shr(127, mul(r, r))
                let f := shr(128, r)
                log_2 := or(log_2, shl(50, f))
            }

            int256 log_sqrt10001 = log_2 * 255738958999603826347141;

            int24 tickLow = int24(
                (log_sqrt10001 - 3402992956809132418596140100660247210) >> 128
            );
            int24 tickHi = int24(
                (log_sqrt10001 + 291339464771989622907027621153398088495) >> 128
            );

            tick = tickLow == tickHi
                ? tickLow
                : _getSqrtRatioAtTick(tickHi) <= sqrtPriceX96
                ? tickHi
                : tickLow;
        }
    }

    function _sqrt(uint256 _n) internal pure returns (uint256 result) {
        unchecked {
            uint256 _tmp = (_n + 1) / 2;
            result = _n;
            while (_tmp < result) {
                result = _tmp;
                _tmp = (_n / _tmp + _tmp) / 2;
            }
        }
    }

    function _getPriceAndTickFromValues(
        bool _weth0,
        uint256 _tokens,
        uint256 _weth
    ) internal pure returns (uint160 price, int24 tick) {
        uint160 _tmpPrice = uint160(
            _sqrt(
                (2**192 / (!_weth0 ? _tokens : _weth)) *
                    (_weth0 ? _tokens : _weth)
            )
        );
        tick = _getTickAtSqrtRatio(_tmpPrice);
        tick = tick - (tick % 200);
        price = _getSqrtRatioAtTick(tick);
    }
}

contract Cube is ERC20, Ownable, TickMath, Params {
    Router public constant ROUTER =
        Router(0x68b3465833fb72A70ecDF485E0e4C7bD8665Fc45);

    uint256[] initialMCs;
    uint256[] upperMCs;
    address[] pairedTokens;
    uint256[] private liquidityPositions;
    address[] public pools;
    uint256 interval = 1 weeks;
    uint256 nextClaim;
    uint256 tokenSupply;

    mapping(address => bool) public usedTokens;
    mapping(address => mapping(uint24 => bool)) public feesUsed;

    constructor(uint256 _tokenSupply)
        ERC20("Cryptographic Universal Blockchain Exchange", "CUBE")
        Ownable(msg.sender)
    {
        tokenSupply = _tokenSupply;
        address _this = address(this);
        uint24 fee = 10000;

        // WETH
        pairedTokens.push(0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2);
        initialMCs.push(5000000000000000000); // ~$12k
        upperMCs.push(500000000000000000000000); // ~$1.29B
        (uint160 _initialSqrtPrice, ) = _getPriceAndTickFromValues(
            pairedTokens[0] < _this,
            _tokenSupply,
            initialMCs[0]
        ); // gets price

        pools.push(
            Factory(ROUTER.factory()).createPool(_this, pairedTokens[0], fee)
        ); // starts pool with 1% fee
        Pool(pools[0]).initialize(_initialSqrtPrice); // Set the pool pricing

        // DAI
        pairedTokens.push(0x6B175474E89094C44Da98b954EedeAC495271d0F);
        initialMCs.push(12938500000000000000000); // ~$12k
        upperMCs.push(1293850000000000000000000000); // ~$1.29B
        (_initialSqrtPrice, ) = _getPriceAndTickFromValues(
            pairedTokens[1] < _this,
            _tokenSupply,
            initialMCs[1]
        );

        pools.push(
            Factory(ROUTER.factory()).createPool(_this, pairedTokens[1], fee)
        );
        Pool(pools[1]).initialize(_initialSqrtPrice);

        // TOIL
        pairedTokens.push(0x6F2495e244915B164dF57Ba135F8430fA01C4d25);
        initialMCs.push(469782000000000000000000000);
        upperMCs.push(27820000000000000000000000000);
        (_initialSqrtPrice, ) = _getPriceAndTickFromValues(
            pairedTokens[2] < _this,
            _tokenSupply,
            initialMCs[2]
        );

        pools.push(
            Factory(ROUTER.factory()).createPool(_this, pairedTokens[2], fee)
        );
        Pool(pools[2]).initialize(_initialSqrtPrice);

        nextClaim = block.timestamp + interval;
    }

    function initialize() external {
        require(totalSupply() == 0);
        _mint(address(this), tokenSupply);
        uint256 amount = tokenSupply / pairedTokens.length;
        for (uint256 i = 0; i < pairedTokens.length; i++) {
            if (totalSupply() >= amount) {
                _position(
                    initialMCs[i],
                    upperMCs[i],
                    tokenSupply / pairedTokens.length,
                    pairedTokens[i],
                    10000
                );
                feesUsed[pairedTokens[i]][10000] = true;
                usedTokens[pairedTokens[i]] = true;
            }
        }
    }

    function _position(
        uint256 lower,
        uint256 up,
        uint256 supply,
        address _token,
        uint24 fee
    ) internal {
        address _this = address(this);
        bool _token0 = _token < _this; // token0 is the lesser address()
        nextClaim = block.timestamp + interval;

        (, int24 _minTick) = _getPriceAndTickFromValues(
            _token0,
            tokenSupply,
            lower
        );
        (, int24 _maxTick) = _getPriceAndTickFromValues(
            _token0,
            tokenSupply,
            up
        );

        liquidityPositions.push(
            _createNewPosition(
                _token,
                _this,
                _token0,
                _token0 ? _maxTick : _minTick, // LowerTick
                !_token0 ? _maxTick : _minTick, // UpperTick
                supply > balanceOf(_this) ? balanceOf(_this) : supply,
                fee
            )
        );
    }

    function _createNewPosition(
        address _token,
        address _this,
        bool _token0,
        int24 _tickLower,
        int24 _tickUpper,
        uint256 amount,
        uint24 _fee
    ) internal returns (uint256 a) {
        PositionManager _pm = PositionManager(ROUTER.positionManager());
        _approve(_this, address(_pm), amount);

        (a, , , ) = _pm.mint(
            MintParams({
                token0: _token0 ? _token : _this,
                token1: !_token0 ? _token : _this,
                fee: _fee,
                tickLower: _tickLower,
                tickUpper: _tickUpper,
                amount0Desired: _token0 ? 0 : amount,
                amount1Desired: !_token0 ? 0 : amount,
                amount0Min: 0,
                amount1Min: 0,
                recipient: _this,
                deadline: block.timestamp
            })
        );
    }

    function createNewPosition(
        address token,
        uint256 lowerMC,
        uint256 upperMC,
        uint24 fee
    ) public onlyOwner {
        require(upperMC > lowerMC, "Fix MC");
        require(!feesUsed[token][fee], "Token Already Used");

        feesUsed[token][fee] = true;
        address _this = address(this);
        (uint160 _initialSqrtPrice, ) = _getPriceAndTickFromValues(
            token < _this,
            tokenSupply,
            lowerMC
        );
        address npool = Factory(ROUTER.factory()).createPool(
            _this,
            token,
            10000
        ); // starts pool with 1% fee
        Pool(npool).initialize(_initialSqrtPrice); // Set the pool pricing
        pools.push(npool);

        _position(lowerMC, upperMC, balanceOf(_this), token, fee);
        if (!usedTokens[token]) {
            pairedTokens.push(token);
            usedTokens[token] = true;
        }
    }

    function claimFees() public {
        require(nextClaim < block.timestamp, "Not enough time has passed");

        nextClaim = block.timestamp + interval;
        _claimFees();

        for (uint256 i = 0; i < pairedTokens.length; ) {
            IERC20 t = IERC20(pairedTokens[i]);
            uint256 _amount = t.balanceOf(address(this));
            if (_amount > 0) {
                t.transfer(msg.sender, _amount / 50);
                t.transfer(owner(), t.balanceOf(address(this)));
            }

            unchecked {
                i++;
            }
        }

        uint256 amount = address(this).balance;
        if (amount > 50) {
            address payable m = payable(msg.sender);
            bool f;
            f = m.send(amount / 50);
            address payable o = payable(owner());
            f = o.send(address(this).balance);
        }
    }

    function _claimFees() internal {
        for (uint256 i = 0; i < liquidityPositions.length; ) {
            _claim(liquidityPositions[i]);
            unchecked {
                i++;
            }
        }
    }

    function _claim(uint256 pos) internal {
        PositionManager _pm = PositionManager(ROUTER.positionManager());
        uint128 Uint128Max = type(uint128).max;
        _pm.collect(
            CollectParams({
                tokenId: pos,
                recipient: address(this),
                amount0Max: Uint128Max,
                amount1Max: Uint128Max
            })
        );
    }

    function claim() external onlyOwner {
        _claimFees();
        nextClaim = block.timestamp + interval;
        for (uint256 i = 0; i < pairedTokens.length; ) {
            IERC20 t = IERC20(pairedTokens[i]);
            if (t.balanceOf(address(this)) > 0) {
                t.transfer(msg.sender, t.balanceOf(address(this)));
            }

            unchecked {
                i++;
            }
        }

        uint256 amount = address(this).balance;
        if (amount > 0) {
            address payable o = payable(owner());
            bool f;
            f = o.send(amount);
        }
    }

    receive() external payable {}

    function liquidityPositons() external view returns (uint256[] memory) {
        return liquidityPositions;
    }

    function claimSpecficPositions(uint256[] memory positions) external {
        for (uint256 i = 0; i < positions.length; ) {
            _claim(positions[i]);
            unchecked {
                i++;
            }
        }
    }

    function erc20Withdrawal(address[] memory tokens) external onlyOwner {
        address _this = address(this);
        for (uint256 i = 0; i < tokens.length; ) {
            require(tokens[i] != _this, "Cannot withdraw contract token");
            IERC20 t = IERC20(tokens[i]);
            t.transfer(msg.sender, t.balanceOf(_this));
            unchecked {
                i++;
            }
        }

        uint256 amount = address(this).balance;
        if (amount > 0) {
            address payable o = payable(owner());
            bool f;
            f = o.send(amount);
        }
    }

    function pairedTokensView() public view returns (address[] memory) {
        return pairedTokens;
    }
}

File 2 of 7 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (access/Ownable.sol)

pragma solidity ^0.8.20;

import {Context} from "../utils/Context.sol";

/**
 * @dev Contract module which provides a basic access control mechanism, where
 * there is an account (an owner) that can be granted exclusive access to
 * specific functions.
 *
 * The initial owner is set to the address provided by the deployer. This can
 * later be changed with {transferOwnership}.
 *
 * This module is used through inheritance. It will make available the modifier
 * `onlyOwner`, which can be applied to your functions to restrict their use to
 * the owner.
 */
abstract contract Ownable is Context {
    address private _owner;

    /**
     * @dev The caller account is not authorized to perform an operation.
     */
    error OwnableUnauthorizedAccount(address account);

    /**
     * @dev The owner is not a valid owner account. (eg. `address(0)`)
     */
    error OwnableInvalidOwner(address owner);

    event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);

    /**
     * @dev Initializes the contract setting the address provided by the deployer as the initial owner.
     */
    constructor(address initialOwner) {
        if (initialOwner == address(0)) {
            revert OwnableInvalidOwner(address(0));
        }
        _transferOwnership(initialOwner);
    }

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

    /**
     * @dev Returns the address of the current owner.
     */
    function owner() public view virtual returns (address) {
        return _owner;
    }

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        if (owner() != _msgSender()) {
            revert OwnableUnauthorizedAccount(_msgSender());
        }
    }

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby disabling any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        _transferOwnership(address(0));
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public virtual onlyOwner {
        if (newOwner == address(0)) {
            revert OwnableInvalidOwner(address(0));
        }
        _transferOwnership(newOwner);
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Internal function without access restriction.
     */
    function _transferOwnership(address newOwner) internal virtual {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

File 3 of 7 : ERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/ERC20.sol)

pragma solidity ^0.8.20;

import {IERC20} from "./IERC20.sol";
import {IERC20Metadata} from "./extensions/IERC20Metadata.sol";
import {Context} from "../../utils/Context.sol";
import {IERC20Errors} from "../../interfaces/draft-IERC6093.sol";

/**
 * @dev Implementation of the {IERC20} interface.
 *
 * This implementation is agnostic to the way tokens are created. This means
 * that a supply mechanism has to be added in a derived contract using {_mint}.
 *
 * TIP: For a detailed writeup see our guide
 * https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * The default value of {decimals} is 18. To change this, you should override
 * this function so it returns a different value.
 *
 * We have followed general OpenZeppelin Contracts guidelines: functions revert
 * instead returning `false` on failure. This behavior is nonetheless
 * conventional and does not conflict with the expectations of ERC20
 * applications.
 *
 * Additionally, an {Approval} event is emitted on calls to {transferFrom}.
 * This allows applications to reconstruct the allowance for all accounts just
 * by listening to said events. Other implementations of the EIP may not emit
 * these events, as it isn't required by the specification.
 */
abstract contract ERC20 is Context, IERC20, IERC20Metadata, IERC20Errors {
    mapping(address account => uint256) private _balances;

    mapping(address account => mapping(address spender => uint256)) private _allowances;

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * All two of these values are immutable: they can only be set once during
     * construction.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

    /**
     * @dev Returns the name of the token.
     */
    function name() public view virtual returns (string memory) {
        return _name;
    }

    /**
     * @dev Returns the symbol of the token, usually a shorter version of the
     * name.
     */
    function symbol() public view virtual returns (string memory) {
        return _symbol;
    }

    /**
     * @dev Returns the number of decimals used to get its user representation.
     * For example, if `decimals` equals `2`, a balance of `505` tokens should
     * be displayed to a user as `5.05` (`505 / 10 ** 2`).
     *
     * Tokens usually opt for a value of 18, imitating the relationship between
     * Ether and Wei. This is the default value returned by this function, unless
     * it's overridden.
     *
     * NOTE: This information is only used for _display_ purposes: it in
     * no way affects any of the arithmetic of the contract, including
     * {IERC20-balanceOf} and {IERC20-transfer}.
     */
    function decimals() public view virtual returns (uint8) {
        return 18;
    }

    /**
     * @dev See {IERC20-totalSupply}.
     */
    function totalSupply() public view virtual returns (uint256) {
        return _totalSupply;
    }

    /**
     * @dev See {IERC20-balanceOf}.
     */
    function balanceOf(address account) public view virtual returns (uint256) {
        return _balances[account];
    }

    /**
     * @dev See {IERC20-transfer}.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - the caller must have a balance of at least `value`.
     */
    function transfer(address to, uint256 value) public virtual returns (bool) {
        address owner = _msgSender();
        _transfer(owner, to, value);
        return true;
    }

    /**
     * @dev See {IERC20-allowance}.
     */
    function allowance(address owner, address spender) public view virtual returns (uint256) {
        return _allowances[owner][spender];
    }

    /**
     * @dev See {IERC20-approve}.
     *
     * NOTE: If `value` is the maximum `uint256`, the allowance is not updated on
     * `transferFrom`. This is semantically equivalent to an infinite approval.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 value) public virtual returns (bool) {
        address owner = _msgSender();
        _approve(owner, spender, value);
        return true;
    }

    /**
     * @dev See {IERC20-transferFrom}.
     *
     * Emits an {Approval} event indicating the updated allowance. This is not
     * required by the EIP. See the note at the beginning of {ERC20}.
     *
     * NOTE: Does not update the allowance if the current allowance
     * is the maximum `uint256`.
     *
     * Requirements:
     *
     * - `from` and `to` cannot be the zero address.
     * - `from` must have a balance of at least `value`.
     * - the caller must have allowance for ``from``'s tokens of at least
     * `value`.
     */
    function transferFrom(address from, address to, uint256 value) public virtual returns (bool) {
        address spender = _msgSender();
        _spendAllowance(from, spender, value);
        _transfer(from, to, value);
        return true;
    }

    /**
     * @dev Moves a `value` amount of tokens from `from` to `to`.
     *
     * This internal function is equivalent to {transfer}, and can be used to
     * e.g. implement automatic token fees, slashing mechanisms, etc.
     *
     * Emits a {Transfer} event.
     *
     * NOTE: This function is not virtual, {_update} should be overridden instead.
     */
    function _transfer(address from, address to, uint256 value) internal {
        if (from == address(0)) {
            revert ERC20InvalidSender(address(0));
        }
        if (to == address(0)) {
            revert ERC20InvalidReceiver(address(0));
        }
        _update(from, to, value);
    }

    /**
     * @dev Transfers a `value` amount of tokens from `from` to `to`, or alternatively mints (or burns) if `from`
     * (or `to`) is the zero address. All customizations to transfers, mints, and burns should be done by overriding
     * this function.
     *
     * Emits a {Transfer} event.
     */
    function _update(address from, address to, uint256 value) internal virtual {
        if (from == address(0)) {
            // Overflow check required: The rest of the code assumes that totalSupply never overflows
            _totalSupply += value;
        } else {
            uint256 fromBalance = _balances[from];
            if (fromBalance < value) {
                revert ERC20InsufficientBalance(from, fromBalance, value);
            }
            unchecked {
                // Overflow not possible: value <= fromBalance <= totalSupply.
                _balances[from] = fromBalance - value;
            }
        }

        if (to == address(0)) {
            unchecked {
                // Overflow not possible: value <= totalSupply or value <= fromBalance <= totalSupply.
                _totalSupply -= value;
            }
        } else {
            unchecked {
                // Overflow not possible: balance + value is at most totalSupply, which we know fits into a uint256.
                _balances[to] += value;
            }
        }

        emit Transfer(from, to, value);
    }

    /**
     * @dev Creates a `value` amount of tokens and assigns them to `account`, by transferring it from address(0).
     * Relies on the `_update` mechanism
     *
     * Emits a {Transfer} event with `from` set to the zero address.
     *
     * NOTE: This function is not virtual, {_update} should be overridden instead.
     */
    function _mint(address account, uint256 value) internal {
        if (account == address(0)) {
            revert ERC20InvalidReceiver(address(0));
        }
        _update(address(0), account, value);
    }

    /**
     * @dev Destroys a `value` amount of tokens from `account`, lowering the total supply.
     * Relies on the `_update` mechanism.
     *
     * Emits a {Transfer} event with `to` set to the zero address.
     *
     * NOTE: This function is not virtual, {_update} should be overridden instead
     */
    function _burn(address account, uint256 value) internal {
        if (account == address(0)) {
            revert ERC20InvalidSender(address(0));
        }
        _update(account, address(0), value);
    }

    /**
     * @dev Sets `value` as the allowance of `spender` over the `owner` s tokens.
     *
     * This internal function is equivalent to `approve`, and can be used to
     * e.g. set automatic allowances for certain subsystems, etc.
     *
     * Emits an {Approval} event.
     *
     * Requirements:
     *
     * - `owner` cannot be the zero address.
     * - `spender` cannot be the zero address.
     *
     * Overrides to this logic should be done to the variant with an additional `bool emitEvent` argument.
     */
    function _approve(address owner, address spender, uint256 value) internal {
        _approve(owner, spender, value, true);
    }

    /**
     * @dev Variant of {_approve} with an optional flag to enable or disable the {Approval} event.
     *
     * By default (when calling {_approve}) the flag is set to true. On the other hand, approval changes made by
     * `_spendAllowance` during the `transferFrom` operation set the flag to false. This saves gas by not emitting any
     * `Approval` event during `transferFrom` operations.
     *
     * Anyone who wishes to continue emitting `Approval` events on the`transferFrom` operation can force the flag to
     * true using the following override:
     * ```
     * function _approve(address owner, address spender, uint256 value, bool) internal virtual override {
     *     super._approve(owner, spender, value, true);
     * }
     * ```
     *
     * Requirements are the same as {_approve}.
     */
    function _approve(address owner, address spender, uint256 value, bool emitEvent) internal virtual {
        if (owner == address(0)) {
            revert ERC20InvalidApprover(address(0));
        }
        if (spender == address(0)) {
            revert ERC20InvalidSpender(address(0));
        }
        _allowances[owner][spender] = value;
        if (emitEvent) {
            emit Approval(owner, spender, value);
        }
    }

    /**
     * @dev Updates `owner` s allowance for `spender` based on spent `value`.
     *
     * Does not update the allowance value in case of infinite allowance.
     * Revert if not enough allowance is available.
     *
     * Does not emit an {Approval} event.
     */
    function _spendAllowance(address owner, address spender, uint256 value) internal virtual {
        uint256 currentAllowance = allowance(owner, spender);
        if (currentAllowance != type(uint256).max) {
            if (currentAllowance < value) {
                revert ERC20InsufficientAllowance(spender, currentAllowance, value);
            }
            unchecked {
                _approve(owner, spender, currentAllowance - value, false);
            }
        }
    }
}

File 4 of 7 : draft-IERC6093.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (interfaces/draft-IERC6093.sol)
pragma solidity ^0.8.20;

/**
 * @dev Standard ERC20 Errors
 * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC20 tokens.
 */
interface IERC20Errors {
    /**
     * @dev Indicates an error related to the current `balance` of a `sender`. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     * @param balance Current balance for the interacting account.
     * @param needed Minimum amount required to perform a transfer.
     */
    error ERC20InsufficientBalance(address sender, uint256 balance, uint256 needed);

    /**
     * @dev Indicates a failure with the token `sender`. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     */
    error ERC20InvalidSender(address sender);

    /**
     * @dev Indicates a failure with the token `receiver`. Used in transfers.
     * @param receiver Address to which tokens are being transferred.
     */
    error ERC20InvalidReceiver(address receiver);

    /**
     * @dev Indicates a failure with the `spender`’s `allowance`. Used in transfers.
     * @param spender Address that may be allowed to operate on tokens without being their owner.
     * @param allowance Amount of tokens a `spender` is allowed to operate with.
     * @param needed Minimum amount required to perform a transfer.
     */
    error ERC20InsufficientAllowance(address spender, uint256 allowance, uint256 needed);

    /**
     * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals.
     * @param approver Address initiating an approval operation.
     */
    error ERC20InvalidApprover(address approver);

    /**
     * @dev Indicates a failure with the `spender` to be approved. Used in approvals.
     * @param spender Address that may be allowed to operate on tokens without being their owner.
     */
    error ERC20InvalidSpender(address spender);
}

/**
 * @dev Standard ERC721 Errors
 * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC721 tokens.
 */
interface IERC721Errors {
    /**
     * @dev Indicates that an address can't be an owner. For example, `address(0)` is a forbidden owner in EIP-20.
     * Used in balance queries.
     * @param owner Address of the current owner of a token.
     */
    error ERC721InvalidOwner(address owner);

    /**
     * @dev Indicates a `tokenId` whose `owner` is the zero address.
     * @param tokenId Identifier number of a token.
     */
    error ERC721NonexistentToken(uint256 tokenId);

    /**
     * @dev Indicates an error related to the ownership over a particular token. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     * @param tokenId Identifier number of a token.
     * @param owner Address of the current owner of a token.
     */
    error ERC721IncorrectOwner(address sender, uint256 tokenId, address owner);

    /**
     * @dev Indicates a failure with the token `sender`. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     */
    error ERC721InvalidSender(address sender);

    /**
     * @dev Indicates a failure with the token `receiver`. Used in transfers.
     * @param receiver Address to which tokens are being transferred.
     */
    error ERC721InvalidReceiver(address receiver);

    /**
     * @dev Indicates a failure with the `operator`’s approval. Used in transfers.
     * @param operator Address that may be allowed to operate on tokens without being their owner.
     * @param tokenId Identifier number of a token.
     */
    error ERC721InsufficientApproval(address operator, uint256 tokenId);

    /**
     * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals.
     * @param approver Address initiating an approval operation.
     */
    error ERC721InvalidApprover(address approver);

    /**
     * @dev Indicates a failure with the `operator` to be approved. Used in approvals.
     * @param operator Address that may be allowed to operate on tokens without being their owner.
     */
    error ERC721InvalidOperator(address operator);
}

/**
 * @dev Standard ERC1155 Errors
 * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC1155 tokens.
 */
interface IERC1155Errors {
    /**
     * @dev Indicates an error related to the current `balance` of a `sender`. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     * @param balance Current balance for the interacting account.
     * @param needed Minimum amount required to perform a transfer.
     * @param tokenId Identifier number of a token.
     */
    error ERC1155InsufficientBalance(address sender, uint256 balance, uint256 needed, uint256 tokenId);

    /**
     * @dev Indicates a failure with the token `sender`. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     */
    error ERC1155InvalidSender(address sender);

    /**
     * @dev Indicates a failure with the token `receiver`. Used in transfers.
     * @param receiver Address to which tokens are being transferred.
     */
    error ERC1155InvalidReceiver(address receiver);

    /**
     * @dev Indicates a failure with the `operator`’s approval. Used in transfers.
     * @param operator Address that may be allowed to operate on tokens without being their owner.
     * @param owner Address of the current owner of a token.
     */
    error ERC1155MissingApprovalForAll(address operator, address owner);

    /**
     * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals.
     * @param approver Address initiating an approval operation.
     */
    error ERC1155InvalidApprover(address approver);

    /**
     * @dev Indicates a failure with the `operator` to be approved. Used in approvals.
     * @param operator Address that may be allowed to operate on tokens without being their owner.
     */
    error ERC1155InvalidOperator(address operator);

    /**
     * @dev Indicates an array length mismatch between ids and values in a safeBatchTransferFrom operation.
     * Used in batch transfers.
     * @param idsLength Length of the array of token identifiers
     * @param valuesLength Length of the array of token amounts
     */
    error ERC1155InvalidArrayLength(uint256 idsLength, uint256 valuesLength);
}

File 5 of 7 : Context.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.1) (utils/Context.sol)

pragma solidity ^0.8.20;

/**
 * @dev Provides information about the current execution context, including the
 * sender of the transaction and its data. While these are generally available
 * via msg.sender and msg.data, they should not be accessed in such a direct
 * manner, since when dealing with meta-transactions the account sending and
 * paying for execution may not be the actual sender (as far as an application
 * is concerned).
 *
 * This contract is only required for intermediate, library-like contracts.
 */
abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

    function _msgData() internal view virtual returns (bytes calldata) {
        return msg.data;
    }

    function _contextSuffixLength() internal view virtual returns (uint256) {
        return 0;
    }
}

File 6 of 7 : IERC20Metadata.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/extensions/IERC20Metadata.sol)

pragma solidity ^0.8.20;

import {IERC20} from "../IERC20.sol";

/**
 * @dev Interface for the optional metadata functions from the ERC20 standard.
 */
interface IERC20Metadata is IERC20 {
    /**
     * @dev Returns the name of the token.
     */
    function name() external view returns (string memory);

    /**
     * @dev Returns the symbol of the token.
     */
    function symbol() external view returns (string memory);

    /**
     * @dev Returns the decimals places of the token.
     */
    function decimals() external view returns (uint8);
}

File 7 of 7 : IERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.20;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

    /**
     * @dev Emitted when the allowance of a `spender` for an `owner` is set by
     * a call to {approve}. `value` is the new allowance.
     */
    event Approval(address indexed owner, address indexed spender, uint256 value);

    /**
     * @dev Returns the value of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns the value of tokens owned by `account`.
     */
    function balanceOf(address account) external view returns (uint256);

    /**
     * @dev Moves a `value` amount of tokens from the caller's account to `to`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address to, uint256 value) external returns (bool);

    /**
     * @dev Returns the remaining number of tokens that `spender` will be
     * allowed to spend on behalf of `owner` through {transferFrom}. This is
     * zero by default.
     *
     * This value changes when {approve} or {transferFrom} are called.
     */
    function allowance(address owner, address spender) external view returns (uint256);

    /**
     * @dev Sets a `value` amount of tokens as the allowance of `spender` over the
     * caller's tokens.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * IMPORTANT: Beware that changing an allowance with this method brings the risk
     * that someone may use both the old and the new allowance by unfortunate
     * transaction ordering. One possible solution to mitigate this race
     * condition is to first reduce the spender's allowance to 0 and set the
     * desired value afterwards:
     * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
     *
     * Emits an {Approval} event.
     */
    function approve(address spender, uint256 value) external returns (bool);

    /**
     * @dev Moves a `value` amount of tokens from `from` to `to` using the
     * allowance mechanism. `value` is then deducted from the caller's
     * allowance.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(address from, address to, uint256 value) external returns (bool);
}

Settings
{
  "optimizer": {
    "enabled": false,
    "runs": 200
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "devdoc",
        "userdoc",
        "metadata",
        "abi"
      ]
    }
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"uint256","name":"_tokenSupply","type":"uint256"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"allowance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientAllowance","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"uint256","name":"balance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientBalance","type":"error"},{"inputs":[{"internalType":"address","name":"approver","type":"address"}],"name":"ERC20InvalidApprover","type":"error"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"}],"name":"ERC20InvalidReceiver","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"}],"name":"ERC20InvalidSender","type":"error"},{"inputs":[{"internalType":"address","name":"spender","type":"address"}],"name":"ERC20InvalidSpender","type":"error"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"OwnableInvalidOwner","type":"error"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"OwnableUnauthorizedAccount","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"ROUTER","outputs":[{"internalType":"contract Router","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"claim","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"claimFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"positions","type":"uint256[]"}],"name":"claimSpecficPositions","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"token","type":"address"},{"internalType":"uint256","name":"lowerMC","type":"uint256"},{"internalType":"uint256","name":"upperMC","type":"uint256"},{"internalType":"uint24","name":"fee","type":"uint24"}],"name":"createNewPosition","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"tokens","type":"address[]"}],"name":"erc20Withdrawal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"uint24","name":"","type":"uint24"}],"name":"feesUsed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"initialize","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"liquidityPositons","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pairedTokensView","outputs":[{"internalType":"address[]","name":"","type":"address[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"pools","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"usedTokens","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]

608060405262093a80600b55348015610016575f80fd5b50604051615c10380380615c108339818101604052810190610038919061160d565b336040518060600160405280602b8152602001615be5602b91396040518060400160405280600481526020017f435542450000000000000000000000000000000000000000000000000000000081525081600390816100979190611869565b5080600490816100a79190611869565b5050505f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361011a575f6040517f1e4fbdf70000000000000000000000000000000000000000000000000000000081526004016101119190611977565b60405180910390fd5b61012981610c5860201b60201c565b5080600d819055505f3090505f6127109050600873c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2908060018154018082558091505060019003905f5260205f20015f9091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506006674563918244f40000908060018154018082558091505060019003905f5260205f20015f909190919091505560076969e10de76676d0800000908060018154018082558091505060019003905f5260205f20015f90919091909150555f6102a48373ffffffffffffffffffffffffffffffffffffffff1660085f8154811061023c5761023b611990565b5b905f5260205f20015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16108560065f815481106102905761028f611990565b5b905f5260205f200154610d1b60201b60201c565b509050600a7368b3465833fb72a70ecdf485e0e4c7bd8665fc4573ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015610306573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061032a91906119e7565b73ffffffffffffffffffffffffffffffffffffffff1663a16712958560085f8154811061035a57610359611990565b5b905f5260205f20015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16866040518463ffffffff1660e01b81526004016103a193929190611a2f565b6020604051808303815f875af11580156103bd573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906103e191906119e7565b908060018154018082558091505060019003905f5260205f20015f9091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600a5f8154811061045257610451611990565b5b905f5260205f20015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663f637731d826040518263ffffffff1660e01b81526004016104b29190611a73565b5f604051808303815f87803b1580156104c9575f80fd5b505af11580156104db573d5f803e3d5ffd5b505050506008736b175474e89094c44da98b954eedeac495271d0f908060018154018082558091505060019003905f5260205f20015f9091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060066902bd65c1eee3979a0000908060018154018082558091505060019003905f5260205f20015f909190919091505560076b042e3f650b2407335c400000908060018154018082558091505060019003905f5260205f20015f909190919091505561064d8373ffffffffffffffffffffffffffffffffffffffff1660086001815481106105e4576105e3611990565b5b905f5260205f20015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161085600660018154811061063957610638611990565b5b905f5260205f200154610d1b60201b60201c565b5080915050600a7368b3465833fb72a70ecdf485e0e4c7bd8665fc4573ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa1580156106b1573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906106d591906119e7565b73ffffffffffffffffffffffffffffffffffffffff1663a167129585600860018154811061070657610705611990565b5b905f5260205f20015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16866040518463ffffffff1660e01b815260040161074d93929190611a2f565b6020604051808303815f875af1158015610769573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061078d91906119e7565b908060018154018082558091505060019003905f5260205f20015f9091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600a6001815481106107ff576107fe611990565b5b905f5260205f20015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663f637731d826040518263ffffffff1660e01b815260040161085f9190611a73565b5f604051808303815f87803b158015610876575f80fd5b505af1158015610888573d5f803e3d5ffd5b505050506008736f2495e244915b164df57ba135f8430fa01c4d25908060018154018082558091505060019003905f5260205f20015f9091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060066b018498353fee41c601c00000908060018154018082558091505060019003905f5260205f20015f909190919091505560076b59e42a25ed65ef942c000000908060018154018082558091505060019003905f5260205f20015f90919091909150556109fc8373ffffffffffffffffffffffffffffffffffffffff16600860028154811061099357610992611990565b5b905f5260205f20015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16108560066002815481106109e8576109e7611990565b5b905f5260205f200154610d1b60201b60201c565b5080915050600a7368b3465833fb72a70ecdf485e0e4c7bd8665fc4573ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015610a60573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610a8491906119e7565b73ffffffffffffffffffffffffffffffffffffffff1663a1671295856008600281548110610ab557610ab4611990565b5b905f5260205f20015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16866040518463ffffffff1660e01b8152600401610afc93929190611a2f565b6020604051808303815f875af1158015610b18573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610b3c91906119e7565b908060018154018082558091505060019003905f5260205f20015f9091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600a600281548110610bae57610bad611990565b5b905f5260205f20015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663f637731d826040518263ffffffff1660e01b8152600401610c0e9190611a73565b5f604051808303815f87803b158015610c25575f80fd5b505af1158015610c37573d5f803e3d5ffd5b50505050600b5442610c499190611ab9565b600c8190555050505050611d00565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f805f610d7586610d2c5784610d2e565b855b8715610d3a5785610d3c565b865b7801000000000000000000000000000000000000000000000000610d609190611b19565b610d6a9190611b49565b610dbc60201b60201c565b9050610d8681610e1560201b60201c565b915060c882610d959190611b96565b82610da09190611bc6565b9150610db1826111dc60201b60201c565b925050935093915050565b5f8060026001840181610dd257610dd1611aec565b5b0490508291505b81811015610e0f57809150600281828581610df757610df6611aec565b5b040181610e0757610e06611aec565b5b049050610dd9565b50919050565b5f6401000276a373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1610158015610e96575073fffd8963efd1fc6a506488495d951d5263988d2673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16105b610ed5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ecc90611c7a565b60405180910390fd5b5f60208373ffffffffffffffffffffffffffffffffffffffff16901b90505f8190505f6fffffffffffffffffffffffffffffffff821160071b808217915082811c92505067ffffffffffffffff821160061b808217915082811c92505063ffffffff821160051b808217915082811c92505061ffff821160041b808217915082811c92505060ff821160031b808217915082811c925050600f821160021b808217915082811c9250506003821160011b808217915082811c9250506001821180821791505060808110610fb057607f810383901c9150610fba565b80607f0383901b91505b5f604060808303901b9050828302607f1c92508260801c80603f1b8217915083811c935050828302607f1c92508260801c80603e1b8217915083811c935050828302607f1c92508260801c80603d1b8217915083811c935050828302607f1c92508260801c80603c1b8217915083811c935050828302607f1c92508260801c80603b1b8217915083811c935050828302607f1c92508260801c80603a1b8217915083811c935050828302607f1c92508260801c8060391b8217915083811c935050828302607f1c92508260801c8060381b8217915083811c935050828302607f1c92508260801c8060371b8217915083811c935050828302607f1c92508260801c8060361b8217915083811c935050828302607f1c92508260801c8060351b8217915083811c935050828302607f1c92508260801c8060341b8217915083811c935050828302607f1c92508260801c8060331b8217915083811c935050828302607f1c92508260801c8060321b82179150505f693627a301d71055774c85820290505f60806f028f6481ab7f045a5af012a19d003aaa8303901d90505f60806fdb2df09e81959a81455e260799a0632f8401901d90508060020b8260020b146111cc578873ffffffffffffffffffffffffffffffffffffffff166111a3826111dc60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1611156111c557816111c7565b805b6111ce565b815b975050505050505050919050565b5f805f8360020b126111f1578260020b6111f8565b8260020b5f035b90507ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff276185f0360020b811115611262576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161125990611ce2565b60405180910390fd5b5f80600183160361128457700100000000000000000000000000000000611296565b6ffffcb933bd6fad37aa2d162d1a5940015b70ffffffffffffffffffffffffffffffffff1690505f60028316146112cf5760806ffff97272373d413259a46990580e213a8202901c90505b5f60048316146112f35760806ffff2e50f5f656932ef12357cf3c7fdcc8202901c90505b5f60088316146113175760806fffe5caca7e10e4e61c3624eaa0941cd08202901c90505b5f601083161461133b5760806fffcb9843d60f6159c9db58835c9266448202901c90505b5f602083161461135f5760806fff973b41fa98c081472e6896dfb254c08202901c90505b5f60408316146113835760806fff2ea16466c96a3843ec78b326b528618202901c90505b5f60808316146113a75760806ffe5dee046a99a2a811c461f1969c30538202901c90505b5f6101008316146113cc5760806ffcbe86c7900a88aedcffc83b479aa3a48202901c90505b5f6102008316146113f15760806ff987a7253ac413176f2b074cf7815e548202901c90505b5f6104008316146114165760806ff3392b0822b70005940c7a398e4b70f38202901c90505b5f61080083161461143b5760806fe7159475a2c29b7443b29c7fa6e889d98202901c90505b5f6110008316146114605760806fd097f3bdfd2022b8845ad8f792aa58258202901c90505b5f6120008316146114855760806fa9f746462d870fdf8a65dc1f90e061e58202901c90505b5f6140008316146114aa5760806f70d869a156d2a1b890bb3df62baf32f78202901c90505b5f6180008316146114cf5760806f31be135f97d08fd981231505542fcfa68202901c90505b5f620100008316146114f55760806f09aa508b5b7a84e1c677de54f3e99bc98202901c90505b5f6202000083161461151a5760806e5d6af8dedb81196699c329225ee6048202901c90505b5f6204000083161461153e5760806d2216e584f5fa1ea926041bedfe988202901c90505b5f620800008316146115605760806b048a170391f7dc42444e8fa28202901c90505b5f8460020b131561159f57807fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8161159b5761159a611aec565b5b0490505b5f64010000000082816115b5576115b4611aec565b5b06146115c25760016115c4565b5f5b60ff16602082901c0192505050919050565b5f80fd5b5f819050919050565b6115ec816115da565b81146115f6575f80fd5b50565b5f81519050611607816115e3565b92915050565b5f60208284031215611622576116216115d6565b5b5f61162f848285016115f9565b91505092915050565b5f81519050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f60028204905060018216806116b357607f821691505b6020821081036116c6576116c561166f565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f600883026117287fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826116ed565b61173286836116ed565b95508019841693508086168417925050509392505050565b5f819050919050565b5f61176d611768611763846115da565b61174a565b6115da565b9050919050565b5f819050919050565b61178683611753565b61179a61179282611774565b8484546116f9565b825550505050565b5f90565b6117ae6117a2565b6117b981848461177d565b505050565b5b818110156117dc576117d15f826117a6565b6001810190506117bf565b5050565b601f821115611821576117f2816116cc565b6117fb846116de565b8101602085101561180a578190505b61181e611816856116de565b8301826117be565b50505b505050565b5f82821c905092915050565b5f6118415f1984600802611826565b1980831691505092915050565b5f6118598383611832565b9150826002028217905092915050565b61187282611638565b67ffffffffffffffff81111561188b5761188a611642565b5b611895825461169c565b6118a08282856117e0565b5f60209050601f8311600181146118d1575f84156118bf578287015190505b6118c9858261184e565b865550611930565b601f1984166118df866116cc565b5f5b82811015611906578489015182556001820191506020850194506020810190506118e1565b86831015611923578489015161191f601f891682611832565b8355505b6001600288020188555050505b505050505050565b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f61196182611938565b9050919050565b61197181611957565b82525050565b5f60208201905061198a5f830184611968565b92915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b6119c681611957565b81146119d0575f80fd5b50565b5f815190506119e1816119bd565b92915050565b5f602082840312156119fc576119fb6115d6565b5b5f611a09848285016119d3565b91505092915050565b5f62ffffff82169050919050565b611a2981611a12565b82525050565b5f606082019050611a425f830186611968565b611a4f6020830185611968565b611a5c6040830184611a20565b949350505050565b611a6d81611938565b82525050565b5f602082019050611a865f830184611a64565b92915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f611ac3826115da565b9150611ace836115da565b9250828201905080821115611ae657611ae5611a8c565b5b92915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f611b23826115da565b9150611b2e836115da565b925082611b3e57611b3d611aec565b5b828204905092915050565b5f611b53826115da565b9150611b5e836115da565b9250828202611b6c816115da565b91508282048414831517611b8357611b82611a8c565b5b5092915050565b5f8160020b9050919050565b5f611ba082611b8a565b9150611bab83611b8a565b925082611bbb57611bba611aec565b5b828207905092915050565b5f611bd082611b8a565b9150611bdb83611b8a565b92508282039050627fffff81137fffffffffffffffffffffffffffffffffffffffffffffffffffffffffff80000082121715611c1a57611c19611a8c565b5b92915050565b5f82825260208201905092915050565b7f52000000000000000000000000000000000000000000000000000000000000005f82015250565b5f611c64600183611c20565b9150611c6f82611c30565b602082019050919050565b5f6020820190508181035f830152611c9181611c58565b9050919050565b7f54000000000000000000000000000000000000000000000000000000000000005f82015250565b5f611ccc600183611c20565b9150611cd782611c98565b602082019050919050565b5f6020820190508181035f830152611cf981611cc0565b9050919050565b613ed880611d0d5f395ff3fe60806040526004361061014e575f3560e01c80638c4fd486116100b5578063d294f0931161006e578063d294f0931461048d578063d2ab71f5146104a3578063d5c11e30146104cb578063dd62ed3e146104f5578063dff7e3cb14610531578063f2fde38b1461055957610155565b80638c4fd4861461035d5780638da5cb5b1461039957806395d89b41146103c3578063a9059cbb146103ed578063ac4afa3814610429578063bdd859ce1461046557610155565b806332fe7b261161010757806332fe7b26146102795780633659ffb2146102a35780634e71d92d146102df57806370a08231146102f5578063715018a6146103315780638129fc1c1461034757610155565b806306fdde0314610159578063095ea7b31461018357806318160ddd146101bf57806318f3b92a146101e957806323b872dd14610213578063313ce5671461024f57610155565b3661015557005b5f80fd5b348015610164575f80fd5b5061016d610581565b60405161017a9190612db5565b60405180910390f35b34801561018e575f80fd5b506101a960048036038101906101a49190612e73565b610611565b6040516101b69190612ecb565b60405180910390f35b3480156101ca575f80fd5b506101d3610633565b6040516101e09190612ef3565b60405180910390f35b3480156101f4575f80fd5b506101fd61063c565b60405161020a9190612fc3565b60405180910390f35b34801561021e575f80fd5b5061023960048036038101906102349190612fe3565b610692565b6040516102469190612ecb565b60405180910390f35b34801561025a575f80fd5b506102636106c0565b604051610270919061304e565b60405180910390f35b348015610284575f80fd5b5061028d6106c8565b60405161029a91906130c2565b60405180910390f35b3480156102ae575f80fd5b506102c960048036038101906102c491906130db565b6106e0565b6040516102d69190612ecb565b60405180910390f35b3480156102ea575f80fd5b506102f36106fd565b005b348015610300575f80fd5b5061031b600480360381019061031691906130db565b610945565b6040516103289190612ef3565b60405180910390f35b34801561033c575f80fd5b5061034561098a565b005b348015610352575f80fd5b5061035b61099d565b005b348015610368575f80fd5b50610383600480360381019061037e919061313e565b610bca565b6040516103909190612ecb565b60405180910390f35b3480156103a4575f80fd5b506103ad610bf4565b6040516103ba919061318b565b60405180910390f35b3480156103ce575f80fd5b506103d7610c1c565b6040516103e49190612db5565b60405180910390f35b3480156103f8575f80fd5b50610413600480360381019061040e9190612e73565b610cac565b6040516104209190612ecb565b60405180910390f35b348015610434575f80fd5b5061044f600480360381019061044a91906131a4565b610cce565b60405161045c919061318b565b60405180910390f35b348015610470575f80fd5b5061048b6004803603810190610486919061330f565b610d09565b005b348015610498575f80fd5b506104a1610f1e565b005b3480156104ae575f80fd5b506104c960048036038101906104c49190613356565b61127e565b005b3480156104d6575f80fd5b506104df611706565b6040516104ec9190613471565b60405180910390f35b348015610500575f80fd5b5061051b60048036038101906105169190613491565b611791565b6040516105289190612ef3565b60405180910390f35b34801561053c575f80fd5b506105576004803603810190610552919061358f565b611813565b005b348015610564575f80fd5b5061057f600480360381019061057a91906130db565b611852565b005b60606003805461059090613603565b80601f01602080910402602001604051908101604052809291908181526020018280546105bc90613603565b80156106075780601f106105de57610100808354040283529160200191610607565b820191905f5260205f20905b8154815290600101906020018083116105ea57829003601f168201915b5050505050905090565b5f8061061b6118d6565b90506106288185856118dd565b600191505092915050565b5f600254905090565b6060600980548060200260200160405190810160405280929190818152602001828054801561068857602002820191905f5260205f20905b815481526020019060010190808311610674575b5050505050905090565b5f8061069c6118d6565b90506106a98582856118ef565b6106b4858585611981565b60019150509392505050565b5f6012905090565b7368b3465833fb72a70ecdf485e0e4c7bd8665fc4581565b600e602052805f5260405f205f915054906101000a900460ff1681565b610705611a71565b61070d611af8565b600b544261071b9190613660565b600c819055505f5b6008805490508110156108f0575f6008828154811061074557610744613693565b5b905f5260205f20015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690505f8173ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b81526004016107a9919061318b565b602060405180830381865afa1580156107c4573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906107e891906136d4565b11156108e2578073ffffffffffffffffffffffffffffffffffffffff1663a9059cbb338373ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401610844919061318b565b602060405180830381865afa15801561085f573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061088391906136d4565b6040518363ffffffff1660e01b81526004016108a09291906136ff565b6020604051808303815f875af11580156108bc573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906108e09190613750565b505b818060010192505050610723565b505f4790505f811115610942575f610906610bf4565b90505f8173ffffffffffffffffffffffffffffffffffffffff166108fc8490811502906040515f60405180830381858888f19350505050905050505b50565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b610992611a71565b61099b5f611b3c565b565b5f6109a6610633565b146109af575f80fd5b6109bb30600d54611bff565b5f600880549050600d546109cf91906137a8565b90505f5b600880549050811015610bc657816109e9610633565b10610bb957610a8260068281548110610a0557610a04613693565b5b905f5260205f20015460078381548110610a2257610a21613693565b5b905f5260205f200154600880549050600d54610a3e91906137a8565b60088581548110610a5257610a51613693565b5b905f5260205f20015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16612710611c7e565b6001600f5f60088481548110610a9b57610a9a613693565b5b905f5260205f20015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f61271062ffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055506001600e5f60088481548110610b4157610b40613693565b5b905f5260205f20015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055505b80806001019150506109d3565b5050565b600f602052815f5260405f20602052805f5260405f205f915091509054906101000a900460ff1681565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060048054610c2b90613603565b80601f0160208091040260200160405190810160405280929190818152602001828054610c5790613603565b8015610ca25780601f10610c7957610100808354040283529160200191610ca2565b820191905f5260205f20905b815481529060010190602001808311610c8557829003601f168201915b5050505050905090565b5f80610cb66118d6565b9050610cc3818585611981565b600191505092915050565b600a8181548110610cdd575f80fd5b905f5260205f20015f915054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b610d11611a71565b5f3090505f5b8251811015610ec7578173ffffffffffffffffffffffffffffffffffffffff16838281518110610d4a57610d49613693565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1603610da8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d9f90613822565b60405180910390fd5b5f838281518110610dbc57610dbb613693565b5b602002602001015190508073ffffffffffffffffffffffffffffffffffffffff1663a9059cbb338373ffffffffffffffffffffffffffffffffffffffff166370a08231876040518263ffffffff1660e01b8152600401610e1c919061318b565b602060405180830381865afa158015610e37573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610e5b91906136d4565b6040518363ffffffff1660e01b8152600401610e789291906136ff565b6020604051808303815f875af1158015610e94573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610eb89190613750565b50818060010192505050610d17565b505f4790505f811115610f19575f610edd610bf4565b90505f8173ffffffffffffffffffffffffffffffffffffffff166108fc8490811502906040515f60405180830381858888f19350505050905050505b505050565b42600c5410610f62576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f599061388a565b60405180910390fd5b600b5442610f709190613660565b600c81905550610f7e611af8565b5f5b6008805490508110156111e1575f60088281548110610fa257610fa1613693565b5b905f5260205f20015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690505f8173ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401611006919061318b565b602060405180830381865afa158015611021573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061104591906136d4565b90505f8111156111d2578173ffffffffffffffffffffffffffffffffffffffff1663a9059cbb3360328461107991906137a8565b6040518363ffffffff1660e01b81526004016110969291906136ff565b6020604051808303815f875af11580156110b2573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906110d69190613750565b508173ffffffffffffffffffffffffffffffffffffffff1663a9059cbb6110fb610bf4565b8473ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401611134919061318b565b602060405180830381865afa15801561114f573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061117391906136d4565b6040518363ffffffff1660e01b81526004016111909291906136ff565b6020604051808303815f875af11580156111ac573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906111d09190613750565b505b82806001019350505050610f80565b505f479050603281111561127b575f3390505f8173ffffffffffffffffffffffffffffffffffffffff166108fc60328561121b91906137a8565b90811502906040515f60405180830381858888f1935050505090505f61123f610bf4565b90508073ffffffffffffffffffffffffffffffffffffffff166108fc4790811502906040515f60405180830381858888f1935050505091505050505b50565b611286611a71565b8282116112c8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112bf906138f2565b60405180910390fd5b600f5f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8262ffffff1662ffffff1681526020019081526020015f205f9054906101000a900460ff161561136b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113629061395a565b60405180910390fd5b6001600f5f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8362ffffff1662ffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055505f3090505f6114198273ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff1610600d5487611d60565b5090505f7368b3465833fb72a70ecdf485e0e4c7bd8665fc4573ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa15801561147a573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061149e919061398c565b73ffffffffffffffffffffffffffffffffffffffff1663a167129584896127106040518463ffffffff1660e01b81526004016114dc939291906139f0565b6020604051808303815f875af11580156114f8573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061151c919061398c565b90508073ffffffffffffffffffffffffffffffffffffffff1663f637731d836040518263ffffffff1660e01b81526004016115579190613a34565b5f604051808303815f87803b15801561156e575f80fd5b505af1158015611580573d5f803e3d5ffd5b50505050600a81908060018154018082558091505060019003905f5260205f20015f9091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506115f986866115f286610945565b8a88611c7e565b600e5f8873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff166116fd57600887908060018154018082558091505060019003905f5260205f20015f9091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506001600e5f8973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055505b50505050505050565b6060600880548060200260200160405190810160405280929190818152602001828054801561178757602002820191905f5260205f20905b815f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001906001019080831161173e575b5050505050905090565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b5f5b815181101561184e5761184182828151811061183457611833613693565b5b6020026020010151611def565b8080600101915050611815565b5050565b61185a611a71565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036118ca575f6040517f1e4fbdf70000000000000000000000000000000000000000000000000000000081526004016118c1919061318b565b60405180910390fd5b6118d381611b3c565b50565b5f33905090565b6118ea8383836001611f60565b505050565b5f6118fa8484611791565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff811461197b578181101561196c578281836040517ffb8f41b200000000000000000000000000000000000000000000000000000000815260040161196393929190613a4d565b60405180910390fd5b61197a84848484035f611f60565b5b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036119f1575f6040517f96c6fd1e0000000000000000000000000000000000000000000000000000000081526004016119e8919061318b565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611a61575f6040517fec442f05000000000000000000000000000000000000000000000000000000008152600401611a58919061318b565b60405180910390fd5b611a6c83838361212f565b505050565b611a796118d6565b73ffffffffffffffffffffffffffffffffffffffff16611a97610bf4565b73ffffffffffffffffffffffffffffffffffffffff1614611af657611aba6118d6565b6040517f118cdaa7000000000000000000000000000000000000000000000000000000008152600401611aed919061318b565b60405180910390fd5b565b5f5b600980549050811015611b3957611b2c60098281548110611b1e57611b1d613693565b5b905f5260205f200154611def565b8080600101915050611afa565b50565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611c6f575f6040517fec442f05000000000000000000000000000000000000000000000000000000008152600401611c66919061318b565b60405180910390fd5b611c7a5f838361212f565b5050565b5f3090505f8173ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16109050600b5442611cc29190613660565b600c819055505f611cd682600d548a611d60565b9150505f611ce783600d548a611d60565b9150506009611d3287868687611cfd5786611cff565b855b8815611d0b5787611d0d565b865b611d168b610945565b8e11611d22578d611d2c565b611d2b8b610945565b5b8c612348565b908060018154018082558091505060019003905f5260205f20015f9091909190915055505050505050505050565b5f805f611db486611d715784611d73565b855b8715611d7f5785611d81565b865b7801000000000000000000000000000000000000000000000000611da591906137a8565b611daf9190613a82565b612531565b9050611dbf8161258a565b915060c882611dce9190613acf565b82611dd99190613aff565b9150611de48261294b565b925050935093915050565b5f7368b3465833fb72a70ecdf485e0e4c7bd8665fc4573ffffffffffffffffffffffffffffffffffffffff1663791b98bc6040518163ffffffff1660e01b8152600401602060405180830381865afa158015611e4d573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611e71919061398c565b90505f6fffffffffffffffffffffffffffffffff90508173ffffffffffffffffffffffffffffffffffffffff1663fc6f786560405180608001604052808681526020013073ffffffffffffffffffffffffffffffffffffffff168152602001846fffffffffffffffffffffffffffffffff168152602001846fffffffffffffffffffffffffffffffff168152506040518263ffffffff1660e01b8152600401611f1a9190613bd6565b60408051808303815f875af1158015611f35573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611f599190613bef565b5050505050565b5f73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603611fd0575f6040517fe602df05000000000000000000000000000000000000000000000000000000008152600401611fc7919061318b565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612040575f6040517f94280d62000000000000000000000000000000000000000000000000000000008152600401612037919061318b565b60405180910390fd5b8160015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508015612129578273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925846040516121209190612ef3565b60405180910390a35b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361217f578060025f8282546121739190613660565b9250508190555061224d565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015612208578381836040517fe450d38c0000000000000000000000000000000000000000000000000000000081526004016121ff93929190613a4d565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550505b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612294578060025f82825403925050819055506122de565b805f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161233b9190612ef3565b60405180910390a3505050565b5f807368b3465833fb72a70ecdf485e0e4c7bd8665fc4573ffffffffffffffffffffffffffffffffffffffff1663791b98bc6040518163ffffffff1660e01b8152600401602060405180830381865afa1580156123a7573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906123cb919061398c565b90506123d88882866118dd565b8073ffffffffffffffffffffffffffffffffffffffff1663883164566040518061016001604052808a61240b578b61240d565b8c5b73ffffffffffffffffffffffffffffffffffffffff1681526020018a15612434578b612436565b8c5b73ffffffffffffffffffffffffffffffffffffffff1681526020018662ffffff1681526020018960020b81526020018860020b81526020018a612479578761247b565b5f5b81526020018a1561248c578761248e565b5f5b81526020015f81526020015f81526020018b73ffffffffffffffffffffffffffffffffffffffff168152602001428152506040518263ffffffff1660e01b81526004016124db9190613d2a565b6080604051808303815f875af11580156124f7573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061251b9190613d6e565b9091509050508092505050979650505050505050565b5f80600260018401816125475761254661377b565b5b0490508291505b818110156125845780915060028182858161256c5761256b61377b565b5b04018161257c5761257b61377b565b5b04905061254e565b50919050565b5f6401000276a373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161015801561260b575073fffd8963efd1fc6a506488495d951d5263988d2673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16105b61264a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161264190613e1c565b60405180910390fd5b5f60208373ffffffffffffffffffffffffffffffffffffffff16901b90505f8190505f6fffffffffffffffffffffffffffffffff821160071b808217915082811c92505067ffffffffffffffff821160061b808217915082811c92505063ffffffff821160051b808217915082811c92505061ffff821160041b808217915082811c92505060ff821160031b808217915082811c925050600f821160021b808217915082811c9250506003821160011b808217915082811c925050600182118082179150506080811061272557607f810383901c915061272f565b80607f0383901b91505b5f604060808303901b9050828302607f1c92508260801c80603f1b8217915083811c935050828302607f1c92508260801c80603e1b8217915083811c935050828302607f1c92508260801c80603d1b8217915083811c935050828302607f1c92508260801c80603c1b8217915083811c935050828302607f1c92508260801c80603b1b8217915083811c935050828302607f1c92508260801c80603a1b8217915083811c935050828302607f1c92508260801c8060391b8217915083811c935050828302607f1c92508260801c8060381b8217915083811c935050828302607f1c92508260801c8060371b8217915083811c935050828302607f1c92508260801c8060361b8217915083811c935050828302607f1c92508260801c8060351b8217915083811c935050828302607f1c92508260801c8060341b8217915083811c935050828302607f1c92508260801c8060331b8217915083811c935050828302607f1c92508260801c8060321b82179150505f693627a301d71055774c85820290505f60806f028f6481ab7f045a5af012a19d003aaa8303901d90505f60806fdb2df09e81959a81455e260799a0632f8401901d90508060020b8260020b1461293b578873ffffffffffffffffffffffffffffffffffffffff166129128261294b565b73ffffffffffffffffffffffffffffffffffffffff1611156129345781612936565b805b61293d565b815b975050505050505050919050565b5f805f8360020b12612960578260020b612967565b8260020b5f035b90507ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff276185f0360020b8111156129d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129c890613e84565b60405180910390fd5b5f8060018316036129f357700100000000000000000000000000000000612a05565b6ffffcb933bd6fad37aa2d162d1a5940015b70ffffffffffffffffffffffffffffffffff1690505f6002831614612a3e5760806ffff97272373d413259a46990580e213a8202901c90505b5f6004831614612a625760806ffff2e50f5f656932ef12357cf3c7fdcc8202901c90505b5f6008831614612a865760806fffe5caca7e10e4e61c3624eaa0941cd08202901c90505b5f6010831614612aaa5760806fffcb9843d60f6159c9db58835c9266448202901c90505b5f6020831614612ace5760806fff973b41fa98c081472e6896dfb254c08202901c90505b5f6040831614612af25760806fff2ea16466c96a3843ec78b326b528618202901c90505b5f6080831614612b165760806ffe5dee046a99a2a811c461f1969c30538202901c90505b5f610100831614612b3b5760806ffcbe86c7900a88aedcffc83b479aa3a48202901c90505b5f610200831614612b605760806ff987a7253ac413176f2b074cf7815e548202901c90505b5f610400831614612b855760806ff3392b0822b70005940c7a398e4b70f38202901c90505b5f610800831614612baa5760806fe7159475a2c29b7443b29c7fa6e889d98202901c90505b5f611000831614612bcf5760806fd097f3bdfd2022b8845ad8f792aa58258202901c90505b5f612000831614612bf45760806fa9f746462d870fdf8a65dc1f90e061e58202901c90505b5f614000831614612c195760806f70d869a156d2a1b890bb3df62baf32f78202901c90505b5f618000831614612c3e5760806f31be135f97d08fd981231505542fcfa68202901c90505b5f62010000831614612c645760806f09aa508b5b7a84e1c677de54f3e99bc98202901c90505b5f62020000831614612c895760806e5d6af8dedb81196699c329225ee6048202901c90505b5f62040000831614612cad5760806d2216e584f5fa1ea926041bedfe988202901c90505b5f62080000831614612ccf5760806b048a170391f7dc42444e8fa28202901c90505b5f8460020b1315612d0e57807fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81612d0a57612d0961377b565b5b0490505b5f6401000000008281612d2457612d2361377b565b5b0614612d31576001612d33565b5f5b60ff16602082901c0192505050919050565b5f81519050919050565b5f82825260208201905092915050565b8281835e5f83830152505050565b5f601f19601f8301169050919050565b5f612d8782612d45565b612d918185612d4f565b9350612da1818560208601612d5f565b612daa81612d6d565b840191505092915050565b5f6020820190508181035f830152612dcd8184612d7d565b905092915050565b5f604051905090565b5f80fd5b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f612e0f82612de6565b9050919050565b612e1f81612e05565b8114612e29575f80fd5b50565b5f81359050612e3a81612e16565b92915050565b5f819050919050565b612e5281612e40565b8114612e5c575f80fd5b50565b5f81359050612e6d81612e49565b92915050565b5f8060408385031215612e8957612e88612dde565b5b5f612e9685828601612e2c565b9250506020612ea785828601612e5f565b9150509250929050565b5f8115159050919050565b612ec581612eb1565b82525050565b5f602082019050612ede5f830184612ebc565b92915050565b612eed81612e40565b82525050565b5f602082019050612f065f830184612ee4565b92915050565b5f81519050919050565b5f82825260208201905092915050565b5f819050602082019050919050565b612f3e81612e40565b82525050565b5f612f4f8383612f35565b60208301905092915050565b5f602082019050919050565b5f612f7182612f0c565b612f7b8185612f16565b9350612f8683612f26565b805f5b83811015612fb6578151612f9d8882612f44565b9750612fa883612f5b565b925050600181019050612f89565b5085935050505092915050565b5f6020820190508181035f830152612fdb8184612f67565b905092915050565b5f805f60608486031215612ffa57612ff9612dde565b5b5f61300786828701612e2c565b935050602061301886828701612e2c565b925050604061302986828701612e5f565b9150509250925092565b5f60ff82169050919050565b61304881613033565b82525050565b5f6020820190506130615f83018461303f565b92915050565b5f819050919050565b5f61308a61308561308084612de6565b613067565b612de6565b9050919050565b5f61309b82613070565b9050919050565b5f6130ac82613091565b9050919050565b6130bc816130a2565b82525050565b5f6020820190506130d55f8301846130b3565b92915050565b5f602082840312156130f0576130ef612dde565b5b5f6130fd84828501612e2c565b91505092915050565b5f62ffffff82169050919050565b61311d81613106565b8114613127575f80fd5b50565b5f8135905061313881613114565b92915050565b5f806040838503121561315457613153612dde565b5b5f61316185828601612e2c565b92505060206131728582860161312a565b9150509250929050565b61318581612e05565b82525050565b5f60208201905061319e5f83018461317c565b92915050565b5f602082840312156131b9576131b8612dde565b5b5f6131c684828501612e5f565b91505092915050565b5f80fd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b61320982612d6d565b810181811067ffffffffffffffff82111715613228576132276131d3565b5b80604052505050565b5f61323a612dd5565b90506132468282613200565b919050565b5f67ffffffffffffffff821115613265576132646131d3565b5b602082029050602081019050919050565b5f80fd5b5f61328c6132878461324b565b613231565b905080838252602082019050602084028301858111156132af576132ae613276565b5b835b818110156132d857806132c48882612e2c565b8452602084019350506020810190506132b1565b5050509392505050565b5f82601f8301126132f6576132f56131cf565b5b813561330684826020860161327a565b91505092915050565b5f6020828403121561332457613323612dde565b5b5f82013567ffffffffffffffff81111561334157613340612de2565b5b61334d848285016132e2565b91505092915050565b5f805f806080858703121561336e5761336d612dde565b5b5f61337b87828801612e2c565b945050602061338c87828801612e5f565b935050604061339d87828801612e5f565b92505060606133ae8782880161312a565b91505092959194509250565b5f81519050919050565b5f82825260208201905092915050565b5f819050602082019050919050565b6133ec81612e05565b82525050565b5f6133fd83836133e3565b60208301905092915050565b5f602082019050919050565b5f61341f826133ba565b61342981856133c4565b9350613434836133d4565b805f5b8381101561346457815161344b88826133f2565b975061345683613409565b925050600181019050613437565b5085935050505092915050565b5f6020820190508181035f8301526134898184613415565b905092915050565b5f80604083850312156134a7576134a6612dde565b5b5f6134b485828601612e2c565b92505060206134c585828601612e2c565b9150509250929050565b5f67ffffffffffffffff8211156134e9576134e86131d3565b5b602082029050602081019050919050565b5f61350c613507846134cf565b613231565b9050808382526020820190506020840283018581111561352f5761352e613276565b5b835b8181101561355857806135448882612e5f565b845260208401935050602081019050613531565b5050509392505050565b5f82601f830112613576576135756131cf565b5b81356135868482602086016134fa565b91505092915050565b5f602082840312156135a4576135a3612dde565b5b5f82013567ffffffffffffffff8111156135c1576135c0612de2565b5b6135cd84828501613562565b91505092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061361a57607f821691505b60208210810361362d5761362c6135d6565b5b50919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f61366a82612e40565b915061367583612e40565b925082820190508082111561368d5761368c613633565b5b92915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b5f815190506136ce81612e49565b92915050565b5f602082840312156136e9576136e8612dde565b5b5f6136f6848285016136c0565b91505092915050565b5f6040820190506137125f83018561317c565b61371f6020830184612ee4565b9392505050565b61372f81612eb1565b8114613739575f80fd5b50565b5f8151905061374a81613726565b92915050565b5f6020828403121561376557613764612dde565b5b5f6137728482850161373c565b91505092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f6137b282612e40565b91506137bd83612e40565b9250826137cd576137cc61377b565b5b828204905092915050565b7f43616e6e6f7420776974686472617720636f6e747261637420746f6b656e00005f82015250565b5f61380c601e83612d4f565b9150613817826137d8565b602082019050919050565b5f6020820190508181035f83015261383981613800565b9050919050565b7f4e6f7420656e6f7567682074696d6520686173207061737365640000000000005f82015250565b5f613874601a83612d4f565b915061387f82613840565b602082019050919050565b5f6020820190508181035f8301526138a181613868565b9050919050565b7f466978204d4300000000000000000000000000000000000000000000000000005f82015250565b5f6138dc600683612d4f565b91506138e7826138a8565b602082019050919050565b5f6020820190508181035f830152613909816138d0565b9050919050565b7f546f6b656e20416c7265616479205573656400000000000000000000000000005f82015250565b5f613944601283612d4f565b915061394f82613910565b602082019050919050565b5f6020820190508181035f83015261397181613938565b9050919050565b5f8151905061398681612e16565b92915050565b5f602082840312156139a1576139a0612dde565b5b5f6139ae84828501613978565b91505092915050565b5f819050919050565b5f6139da6139d56139d0846139b7565b613067565b613106565b9050919050565b6139ea816139c0565b82525050565b5f606082019050613a035f83018661317c565b613a10602083018561317c565b613a1d60408301846139e1565b949350505050565b613a2e81612de6565b82525050565b5f602082019050613a475f830184613a25565b92915050565b5f606082019050613a605f83018661317c565b613a6d6020830185612ee4565b613a7a6040830184612ee4565b949350505050565b5f613a8c82612e40565b9150613a9783612e40565b9250828202613aa581612e40565b91508282048414831517613abc57613abb613633565b5b5092915050565b5f8160020b9050919050565b5f613ad982613ac3565b9150613ae483613ac3565b925082613af457613af361377b565b5b828207905092915050565b5f613b0982613ac3565b9150613b1483613ac3565b92508282039050627fffff81137fffffffffffffffffffffffffffffffffffffffffffffffffffffffffff80000082121715613b5357613b52613633565b5b92915050565b5f6fffffffffffffffffffffffffffffffff82169050919050565b613b7d81613b59565b82525050565b608082015f820151613b975f850182612f35565b506020820151613baa60208501826133e3565b506040820151613bbd6040850182613b74565b506060820151613bd06060850182613b74565b50505050565b5f608082019050613be95f830184613b83565b92915050565b5f8060408385031215613c0557613c04612dde565b5b5f613c12858286016136c0565b9250506020613c23858286016136c0565b9150509250929050565b613c3681613106565b82525050565b613c4581613ac3565b82525050565b61016082015f820151613c605f8501826133e3565b506020820151613c7360208501826133e3565b506040820151613c866040850182613c2d565b506060820151613c996060850182613c3c565b506080820151613cac6080850182613c3c565b5060a0820151613cbf60a0850182612f35565b5060c0820151613cd260c0850182612f35565b5060e0820151613ce560e0850182612f35565b50610100820151613cfa610100850182612f35565b50610120820151613d0f6101208501826133e3565b50610140820151613d24610140850182612f35565b50505050565b5f61016082019050613d3e5f830184613c4b565b92915050565b613d4d81613b59565b8114613d57575f80fd5b50565b5f81519050613d6881613d44565b92915050565b5f805f8060808587031215613d8657613d85612dde565b5b5f613d93878288016136c0565b9450506020613da487828801613d5a565b9350506040613db5878288016136c0565b9250506060613dc6878288016136c0565b91505092959194509250565b7f52000000000000000000000000000000000000000000000000000000000000005f82015250565b5f613e06600183612d4f565b9150613e1182613dd2565b602082019050919050565b5f6020820190508181035f830152613e3381613dfa565b9050919050565b7f54000000000000000000000000000000000000000000000000000000000000005f82015250565b5f613e6e600183612d4f565b9150613e7982613e3a565b602082019050919050565b5f6020820190508181035f830152613e9b81613e62565b905091905056fea26469706673582212201b2fb697e32b61ec942dd80907a71b95adf22a3ae2c846669af9bcf42a19c42164736f6c634300081a003343727970746f6772617068696320556e6976657273616c20426c6f636b636861696e2045786368616e67650000000000000000000000000000000000000000033b2e3c9fd0803ce8000000

Deployed Bytecode

0x60806040526004361061014e575f3560e01c80638c4fd486116100b5578063d294f0931161006e578063d294f0931461048d578063d2ab71f5146104a3578063d5c11e30146104cb578063dd62ed3e146104f5578063dff7e3cb14610531578063f2fde38b1461055957610155565b80638c4fd4861461035d5780638da5cb5b1461039957806395d89b41146103c3578063a9059cbb146103ed578063ac4afa3814610429578063bdd859ce1461046557610155565b806332fe7b261161010757806332fe7b26146102795780633659ffb2146102a35780634e71d92d146102df57806370a08231146102f5578063715018a6146103315780638129fc1c1461034757610155565b806306fdde0314610159578063095ea7b31461018357806318160ddd146101bf57806318f3b92a146101e957806323b872dd14610213578063313ce5671461024f57610155565b3661015557005b5f80fd5b348015610164575f80fd5b5061016d610581565b60405161017a9190612db5565b60405180910390f35b34801561018e575f80fd5b506101a960048036038101906101a49190612e73565b610611565b6040516101b69190612ecb565b60405180910390f35b3480156101ca575f80fd5b506101d3610633565b6040516101e09190612ef3565b60405180910390f35b3480156101f4575f80fd5b506101fd61063c565b60405161020a9190612fc3565b60405180910390f35b34801561021e575f80fd5b5061023960048036038101906102349190612fe3565b610692565b6040516102469190612ecb565b60405180910390f35b34801561025a575f80fd5b506102636106c0565b604051610270919061304e565b60405180910390f35b348015610284575f80fd5b5061028d6106c8565b60405161029a91906130c2565b60405180910390f35b3480156102ae575f80fd5b506102c960048036038101906102c491906130db565b6106e0565b6040516102d69190612ecb565b60405180910390f35b3480156102ea575f80fd5b506102f36106fd565b005b348015610300575f80fd5b5061031b600480360381019061031691906130db565b610945565b6040516103289190612ef3565b60405180910390f35b34801561033c575f80fd5b5061034561098a565b005b348015610352575f80fd5b5061035b61099d565b005b348015610368575f80fd5b50610383600480360381019061037e919061313e565b610bca565b6040516103909190612ecb565b60405180910390f35b3480156103a4575f80fd5b506103ad610bf4565b6040516103ba919061318b565b60405180910390f35b3480156103ce575f80fd5b506103d7610c1c565b6040516103e49190612db5565b60405180910390f35b3480156103f8575f80fd5b50610413600480360381019061040e9190612e73565b610cac565b6040516104209190612ecb565b60405180910390f35b348015610434575f80fd5b5061044f600480360381019061044a91906131a4565b610cce565b60405161045c919061318b565b60405180910390f35b348015610470575f80fd5b5061048b6004803603810190610486919061330f565b610d09565b005b348015610498575f80fd5b506104a1610f1e565b005b3480156104ae575f80fd5b506104c960048036038101906104c49190613356565b61127e565b005b3480156104d6575f80fd5b506104df611706565b6040516104ec9190613471565b60405180910390f35b348015610500575f80fd5b5061051b60048036038101906105169190613491565b611791565b6040516105289190612ef3565b60405180910390f35b34801561053c575f80fd5b506105576004803603810190610552919061358f565b611813565b005b348015610564575f80fd5b5061057f600480360381019061057a91906130db565b611852565b005b60606003805461059090613603565b80601f01602080910402602001604051908101604052809291908181526020018280546105bc90613603565b80156106075780601f106105de57610100808354040283529160200191610607565b820191905f5260205f20905b8154815290600101906020018083116105ea57829003601f168201915b5050505050905090565b5f8061061b6118d6565b90506106288185856118dd565b600191505092915050565b5f600254905090565b6060600980548060200260200160405190810160405280929190818152602001828054801561068857602002820191905f5260205f20905b815481526020019060010190808311610674575b5050505050905090565b5f8061069c6118d6565b90506106a98582856118ef565b6106b4858585611981565b60019150509392505050565b5f6012905090565b7368b3465833fb72a70ecdf485e0e4c7bd8665fc4581565b600e602052805f5260405f205f915054906101000a900460ff1681565b610705611a71565b61070d611af8565b600b544261071b9190613660565b600c819055505f5b6008805490508110156108f0575f6008828154811061074557610744613693565b5b905f5260205f20015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690505f8173ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b81526004016107a9919061318b565b602060405180830381865afa1580156107c4573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906107e891906136d4565b11156108e2578073ffffffffffffffffffffffffffffffffffffffff1663a9059cbb338373ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401610844919061318b565b602060405180830381865afa15801561085f573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061088391906136d4565b6040518363ffffffff1660e01b81526004016108a09291906136ff565b6020604051808303815f875af11580156108bc573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906108e09190613750565b505b818060010192505050610723565b505f4790505f811115610942575f610906610bf4565b90505f8173ffffffffffffffffffffffffffffffffffffffff166108fc8490811502906040515f60405180830381858888f19350505050905050505b50565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b610992611a71565b61099b5f611b3c565b565b5f6109a6610633565b146109af575f80fd5b6109bb30600d54611bff565b5f600880549050600d546109cf91906137a8565b90505f5b600880549050811015610bc657816109e9610633565b10610bb957610a8260068281548110610a0557610a04613693565b5b905f5260205f20015460078381548110610a2257610a21613693565b5b905f5260205f200154600880549050600d54610a3e91906137a8565b60088581548110610a5257610a51613693565b5b905f5260205f20015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16612710611c7e565b6001600f5f60088481548110610a9b57610a9a613693565b5b905f5260205f20015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f61271062ffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055506001600e5f60088481548110610b4157610b40613693565b5b905f5260205f20015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055505b80806001019150506109d3565b5050565b600f602052815f5260405f20602052805f5260405f205f915091509054906101000a900460ff1681565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060048054610c2b90613603565b80601f0160208091040260200160405190810160405280929190818152602001828054610c5790613603565b8015610ca25780601f10610c7957610100808354040283529160200191610ca2565b820191905f5260205f20905b815481529060010190602001808311610c8557829003601f168201915b5050505050905090565b5f80610cb66118d6565b9050610cc3818585611981565b600191505092915050565b600a8181548110610cdd575f80fd5b905f5260205f20015f915054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b610d11611a71565b5f3090505f5b8251811015610ec7578173ffffffffffffffffffffffffffffffffffffffff16838281518110610d4a57610d49613693565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1603610da8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d9f90613822565b60405180910390fd5b5f838281518110610dbc57610dbb613693565b5b602002602001015190508073ffffffffffffffffffffffffffffffffffffffff1663a9059cbb338373ffffffffffffffffffffffffffffffffffffffff166370a08231876040518263ffffffff1660e01b8152600401610e1c919061318b565b602060405180830381865afa158015610e37573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610e5b91906136d4565b6040518363ffffffff1660e01b8152600401610e789291906136ff565b6020604051808303815f875af1158015610e94573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610eb89190613750565b50818060010192505050610d17565b505f4790505f811115610f19575f610edd610bf4565b90505f8173ffffffffffffffffffffffffffffffffffffffff166108fc8490811502906040515f60405180830381858888f19350505050905050505b505050565b42600c5410610f62576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f599061388a565b60405180910390fd5b600b5442610f709190613660565b600c81905550610f7e611af8565b5f5b6008805490508110156111e1575f60088281548110610fa257610fa1613693565b5b905f5260205f20015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690505f8173ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401611006919061318b565b602060405180830381865afa158015611021573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061104591906136d4565b90505f8111156111d2578173ffffffffffffffffffffffffffffffffffffffff1663a9059cbb3360328461107991906137a8565b6040518363ffffffff1660e01b81526004016110969291906136ff565b6020604051808303815f875af11580156110b2573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906110d69190613750565b508173ffffffffffffffffffffffffffffffffffffffff1663a9059cbb6110fb610bf4565b8473ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401611134919061318b565b602060405180830381865afa15801561114f573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061117391906136d4565b6040518363ffffffff1660e01b81526004016111909291906136ff565b6020604051808303815f875af11580156111ac573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906111d09190613750565b505b82806001019350505050610f80565b505f479050603281111561127b575f3390505f8173ffffffffffffffffffffffffffffffffffffffff166108fc60328561121b91906137a8565b90811502906040515f60405180830381858888f1935050505090505f61123f610bf4565b90508073ffffffffffffffffffffffffffffffffffffffff166108fc4790811502906040515f60405180830381858888f1935050505091505050505b50565b611286611a71565b8282116112c8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112bf906138f2565b60405180910390fd5b600f5f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8262ffffff1662ffffff1681526020019081526020015f205f9054906101000a900460ff161561136b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113629061395a565b60405180910390fd5b6001600f5f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8362ffffff1662ffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055505f3090505f6114198273ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff1610600d5487611d60565b5090505f7368b3465833fb72a70ecdf485e0e4c7bd8665fc4573ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa15801561147a573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061149e919061398c565b73ffffffffffffffffffffffffffffffffffffffff1663a167129584896127106040518463ffffffff1660e01b81526004016114dc939291906139f0565b6020604051808303815f875af11580156114f8573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061151c919061398c565b90508073ffffffffffffffffffffffffffffffffffffffff1663f637731d836040518263ffffffff1660e01b81526004016115579190613a34565b5f604051808303815f87803b15801561156e575f80fd5b505af1158015611580573d5f803e3d5ffd5b50505050600a81908060018154018082558091505060019003905f5260205f20015f9091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506115f986866115f286610945565b8a88611c7e565b600e5f8873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff166116fd57600887908060018154018082558091505060019003905f5260205f20015f9091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506001600e5f8973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055505b50505050505050565b6060600880548060200260200160405190810160405280929190818152602001828054801561178757602002820191905f5260205f20905b815f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001906001019080831161173e575b5050505050905090565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b5f5b815181101561184e5761184182828151811061183457611833613693565b5b6020026020010151611def565b8080600101915050611815565b5050565b61185a611a71565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036118ca575f6040517f1e4fbdf70000000000000000000000000000000000000000000000000000000081526004016118c1919061318b565b60405180910390fd5b6118d381611b3c565b50565b5f33905090565b6118ea8383836001611f60565b505050565b5f6118fa8484611791565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff811461197b578181101561196c578281836040517ffb8f41b200000000000000000000000000000000000000000000000000000000815260040161196393929190613a4d565b60405180910390fd5b61197a84848484035f611f60565b5b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036119f1575f6040517f96c6fd1e0000000000000000000000000000000000000000000000000000000081526004016119e8919061318b565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611a61575f6040517fec442f05000000000000000000000000000000000000000000000000000000008152600401611a58919061318b565b60405180910390fd5b611a6c83838361212f565b505050565b611a796118d6565b73ffffffffffffffffffffffffffffffffffffffff16611a97610bf4565b73ffffffffffffffffffffffffffffffffffffffff1614611af657611aba6118d6565b6040517f118cdaa7000000000000000000000000000000000000000000000000000000008152600401611aed919061318b565b60405180910390fd5b565b5f5b600980549050811015611b3957611b2c60098281548110611b1e57611b1d613693565b5b905f5260205f200154611def565b8080600101915050611afa565b50565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611c6f575f6040517fec442f05000000000000000000000000000000000000000000000000000000008152600401611c66919061318b565b60405180910390fd5b611c7a5f838361212f565b5050565b5f3090505f8173ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16109050600b5442611cc29190613660565b600c819055505f611cd682600d548a611d60565b9150505f611ce783600d548a611d60565b9150506009611d3287868687611cfd5786611cff565b855b8815611d0b5787611d0d565b865b611d168b610945565b8e11611d22578d611d2c565b611d2b8b610945565b5b8c612348565b908060018154018082558091505060019003905f5260205f20015f9091909190915055505050505050505050565b5f805f611db486611d715784611d73565b855b8715611d7f5785611d81565b865b7801000000000000000000000000000000000000000000000000611da591906137a8565b611daf9190613a82565b612531565b9050611dbf8161258a565b915060c882611dce9190613acf565b82611dd99190613aff565b9150611de48261294b565b925050935093915050565b5f7368b3465833fb72a70ecdf485e0e4c7bd8665fc4573ffffffffffffffffffffffffffffffffffffffff1663791b98bc6040518163ffffffff1660e01b8152600401602060405180830381865afa158015611e4d573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611e71919061398c565b90505f6fffffffffffffffffffffffffffffffff90508173ffffffffffffffffffffffffffffffffffffffff1663fc6f786560405180608001604052808681526020013073ffffffffffffffffffffffffffffffffffffffff168152602001846fffffffffffffffffffffffffffffffff168152602001846fffffffffffffffffffffffffffffffff168152506040518263ffffffff1660e01b8152600401611f1a9190613bd6565b60408051808303815f875af1158015611f35573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611f599190613bef565b5050505050565b5f73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603611fd0575f6040517fe602df05000000000000000000000000000000000000000000000000000000008152600401611fc7919061318b565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612040575f6040517f94280d62000000000000000000000000000000000000000000000000000000008152600401612037919061318b565b60405180910390fd5b8160015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508015612129578273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925846040516121209190612ef3565b60405180910390a35b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361217f578060025f8282546121739190613660565b9250508190555061224d565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015612208578381836040517fe450d38c0000000000000000000000000000000000000000000000000000000081526004016121ff93929190613a4d565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550505b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612294578060025f82825403925050819055506122de565b805f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161233b9190612ef3565b60405180910390a3505050565b5f807368b3465833fb72a70ecdf485e0e4c7bd8665fc4573ffffffffffffffffffffffffffffffffffffffff1663791b98bc6040518163ffffffff1660e01b8152600401602060405180830381865afa1580156123a7573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906123cb919061398c565b90506123d88882866118dd565b8073ffffffffffffffffffffffffffffffffffffffff1663883164566040518061016001604052808a61240b578b61240d565b8c5b73ffffffffffffffffffffffffffffffffffffffff1681526020018a15612434578b612436565b8c5b73ffffffffffffffffffffffffffffffffffffffff1681526020018662ffffff1681526020018960020b81526020018860020b81526020018a612479578761247b565b5f5b81526020018a1561248c578761248e565b5f5b81526020015f81526020015f81526020018b73ffffffffffffffffffffffffffffffffffffffff168152602001428152506040518263ffffffff1660e01b81526004016124db9190613d2a565b6080604051808303815f875af11580156124f7573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061251b9190613d6e565b9091509050508092505050979650505050505050565b5f80600260018401816125475761254661377b565b5b0490508291505b818110156125845780915060028182858161256c5761256b61377b565b5b04018161257c5761257b61377b565b5b04905061254e565b50919050565b5f6401000276a373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161015801561260b575073fffd8963efd1fc6a506488495d951d5263988d2673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16105b61264a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161264190613e1c565b60405180910390fd5b5f60208373ffffffffffffffffffffffffffffffffffffffff16901b90505f8190505f6fffffffffffffffffffffffffffffffff821160071b808217915082811c92505067ffffffffffffffff821160061b808217915082811c92505063ffffffff821160051b808217915082811c92505061ffff821160041b808217915082811c92505060ff821160031b808217915082811c925050600f821160021b808217915082811c9250506003821160011b808217915082811c925050600182118082179150506080811061272557607f810383901c915061272f565b80607f0383901b91505b5f604060808303901b9050828302607f1c92508260801c80603f1b8217915083811c935050828302607f1c92508260801c80603e1b8217915083811c935050828302607f1c92508260801c80603d1b8217915083811c935050828302607f1c92508260801c80603c1b8217915083811c935050828302607f1c92508260801c80603b1b8217915083811c935050828302607f1c92508260801c80603a1b8217915083811c935050828302607f1c92508260801c8060391b8217915083811c935050828302607f1c92508260801c8060381b8217915083811c935050828302607f1c92508260801c8060371b8217915083811c935050828302607f1c92508260801c8060361b8217915083811c935050828302607f1c92508260801c8060351b8217915083811c935050828302607f1c92508260801c8060341b8217915083811c935050828302607f1c92508260801c8060331b8217915083811c935050828302607f1c92508260801c8060321b82179150505f693627a301d71055774c85820290505f60806f028f6481ab7f045a5af012a19d003aaa8303901d90505f60806fdb2df09e81959a81455e260799a0632f8401901d90508060020b8260020b1461293b578873ffffffffffffffffffffffffffffffffffffffff166129128261294b565b73ffffffffffffffffffffffffffffffffffffffff1611156129345781612936565b805b61293d565b815b975050505050505050919050565b5f805f8360020b12612960578260020b612967565b8260020b5f035b90507ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff276185f0360020b8111156129d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129c890613e84565b60405180910390fd5b5f8060018316036129f357700100000000000000000000000000000000612a05565b6ffffcb933bd6fad37aa2d162d1a5940015b70ffffffffffffffffffffffffffffffffff1690505f6002831614612a3e5760806ffff97272373d413259a46990580e213a8202901c90505b5f6004831614612a625760806ffff2e50f5f656932ef12357cf3c7fdcc8202901c90505b5f6008831614612a865760806fffe5caca7e10e4e61c3624eaa0941cd08202901c90505b5f6010831614612aaa5760806fffcb9843d60f6159c9db58835c9266448202901c90505b5f6020831614612ace5760806fff973b41fa98c081472e6896dfb254c08202901c90505b5f6040831614612af25760806fff2ea16466c96a3843ec78b326b528618202901c90505b5f6080831614612b165760806ffe5dee046a99a2a811c461f1969c30538202901c90505b5f610100831614612b3b5760806ffcbe86c7900a88aedcffc83b479aa3a48202901c90505b5f610200831614612b605760806ff987a7253ac413176f2b074cf7815e548202901c90505b5f610400831614612b855760806ff3392b0822b70005940c7a398e4b70f38202901c90505b5f610800831614612baa5760806fe7159475a2c29b7443b29c7fa6e889d98202901c90505b5f611000831614612bcf5760806fd097f3bdfd2022b8845ad8f792aa58258202901c90505b5f612000831614612bf45760806fa9f746462d870fdf8a65dc1f90e061e58202901c90505b5f614000831614612c195760806f70d869a156d2a1b890bb3df62baf32f78202901c90505b5f618000831614612c3e5760806f31be135f97d08fd981231505542fcfa68202901c90505b5f62010000831614612c645760806f09aa508b5b7a84e1c677de54f3e99bc98202901c90505b5f62020000831614612c895760806e5d6af8dedb81196699c329225ee6048202901c90505b5f62040000831614612cad5760806d2216e584f5fa1ea926041bedfe988202901c90505b5f62080000831614612ccf5760806b048a170391f7dc42444e8fa28202901c90505b5f8460020b1315612d0e57807fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81612d0a57612d0961377b565b5b0490505b5f6401000000008281612d2457612d2361377b565b5b0614612d31576001612d33565b5f5b60ff16602082901c0192505050919050565b5f81519050919050565b5f82825260208201905092915050565b8281835e5f83830152505050565b5f601f19601f8301169050919050565b5f612d8782612d45565b612d918185612d4f565b9350612da1818560208601612d5f565b612daa81612d6d565b840191505092915050565b5f6020820190508181035f830152612dcd8184612d7d565b905092915050565b5f604051905090565b5f80fd5b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f612e0f82612de6565b9050919050565b612e1f81612e05565b8114612e29575f80fd5b50565b5f81359050612e3a81612e16565b92915050565b5f819050919050565b612e5281612e40565b8114612e5c575f80fd5b50565b5f81359050612e6d81612e49565b92915050565b5f8060408385031215612e8957612e88612dde565b5b5f612e9685828601612e2c565b9250506020612ea785828601612e5f565b9150509250929050565b5f8115159050919050565b612ec581612eb1565b82525050565b5f602082019050612ede5f830184612ebc565b92915050565b612eed81612e40565b82525050565b5f602082019050612f065f830184612ee4565b92915050565b5f81519050919050565b5f82825260208201905092915050565b5f819050602082019050919050565b612f3e81612e40565b82525050565b5f612f4f8383612f35565b60208301905092915050565b5f602082019050919050565b5f612f7182612f0c565b612f7b8185612f16565b9350612f8683612f26565b805f5b83811015612fb6578151612f9d8882612f44565b9750612fa883612f5b565b925050600181019050612f89565b5085935050505092915050565b5f6020820190508181035f830152612fdb8184612f67565b905092915050565b5f805f60608486031215612ffa57612ff9612dde565b5b5f61300786828701612e2c565b935050602061301886828701612e2c565b925050604061302986828701612e5f565b9150509250925092565b5f60ff82169050919050565b61304881613033565b82525050565b5f6020820190506130615f83018461303f565b92915050565b5f819050919050565b5f61308a61308561308084612de6565b613067565b612de6565b9050919050565b5f61309b82613070565b9050919050565b5f6130ac82613091565b9050919050565b6130bc816130a2565b82525050565b5f6020820190506130d55f8301846130b3565b92915050565b5f602082840312156130f0576130ef612dde565b5b5f6130fd84828501612e2c565b91505092915050565b5f62ffffff82169050919050565b61311d81613106565b8114613127575f80fd5b50565b5f8135905061313881613114565b92915050565b5f806040838503121561315457613153612dde565b5b5f61316185828601612e2c565b92505060206131728582860161312a565b9150509250929050565b61318581612e05565b82525050565b5f60208201905061319e5f83018461317c565b92915050565b5f602082840312156131b9576131b8612dde565b5b5f6131c684828501612e5f565b91505092915050565b5f80fd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b61320982612d6d565b810181811067ffffffffffffffff82111715613228576132276131d3565b5b80604052505050565b5f61323a612dd5565b90506132468282613200565b919050565b5f67ffffffffffffffff821115613265576132646131d3565b5b602082029050602081019050919050565b5f80fd5b5f61328c6132878461324b565b613231565b905080838252602082019050602084028301858111156132af576132ae613276565b5b835b818110156132d857806132c48882612e2c565b8452602084019350506020810190506132b1565b5050509392505050565b5f82601f8301126132f6576132f56131cf565b5b813561330684826020860161327a565b91505092915050565b5f6020828403121561332457613323612dde565b5b5f82013567ffffffffffffffff81111561334157613340612de2565b5b61334d848285016132e2565b91505092915050565b5f805f806080858703121561336e5761336d612dde565b5b5f61337b87828801612e2c565b945050602061338c87828801612e5f565b935050604061339d87828801612e5f565b92505060606133ae8782880161312a565b91505092959194509250565b5f81519050919050565b5f82825260208201905092915050565b5f819050602082019050919050565b6133ec81612e05565b82525050565b5f6133fd83836133e3565b60208301905092915050565b5f602082019050919050565b5f61341f826133ba565b61342981856133c4565b9350613434836133d4565b805f5b8381101561346457815161344b88826133f2565b975061345683613409565b925050600181019050613437565b5085935050505092915050565b5f6020820190508181035f8301526134898184613415565b905092915050565b5f80604083850312156134a7576134a6612dde565b5b5f6134b485828601612e2c565b92505060206134c585828601612e2c565b9150509250929050565b5f67ffffffffffffffff8211156134e9576134e86131d3565b5b602082029050602081019050919050565b5f61350c613507846134cf565b613231565b9050808382526020820190506020840283018581111561352f5761352e613276565b5b835b8181101561355857806135448882612e5f565b845260208401935050602081019050613531565b5050509392505050565b5f82601f830112613576576135756131cf565b5b81356135868482602086016134fa565b91505092915050565b5f602082840312156135a4576135a3612dde565b5b5f82013567ffffffffffffffff8111156135c1576135c0612de2565b5b6135cd84828501613562565b91505092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061361a57607f821691505b60208210810361362d5761362c6135d6565b5b50919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f61366a82612e40565b915061367583612e40565b925082820190508082111561368d5761368c613633565b5b92915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b5f815190506136ce81612e49565b92915050565b5f602082840312156136e9576136e8612dde565b5b5f6136f6848285016136c0565b91505092915050565b5f6040820190506137125f83018561317c565b61371f6020830184612ee4565b9392505050565b61372f81612eb1565b8114613739575f80fd5b50565b5f8151905061374a81613726565b92915050565b5f6020828403121561376557613764612dde565b5b5f6137728482850161373c565b91505092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f6137b282612e40565b91506137bd83612e40565b9250826137cd576137cc61377b565b5b828204905092915050565b7f43616e6e6f7420776974686472617720636f6e747261637420746f6b656e00005f82015250565b5f61380c601e83612d4f565b9150613817826137d8565b602082019050919050565b5f6020820190508181035f83015261383981613800565b9050919050565b7f4e6f7420656e6f7567682074696d6520686173207061737365640000000000005f82015250565b5f613874601a83612d4f565b915061387f82613840565b602082019050919050565b5f6020820190508181035f8301526138a181613868565b9050919050565b7f466978204d4300000000000000000000000000000000000000000000000000005f82015250565b5f6138dc600683612d4f565b91506138e7826138a8565b602082019050919050565b5f6020820190508181035f830152613909816138d0565b9050919050565b7f546f6b656e20416c7265616479205573656400000000000000000000000000005f82015250565b5f613944601283612d4f565b915061394f82613910565b602082019050919050565b5f6020820190508181035f83015261397181613938565b9050919050565b5f8151905061398681612e16565b92915050565b5f602082840312156139a1576139a0612dde565b5b5f6139ae84828501613978565b91505092915050565b5f819050919050565b5f6139da6139d56139d0846139b7565b613067565b613106565b9050919050565b6139ea816139c0565b82525050565b5f606082019050613a035f83018661317c565b613a10602083018561317c565b613a1d60408301846139e1565b949350505050565b613a2e81612de6565b82525050565b5f602082019050613a475f830184613a25565b92915050565b5f606082019050613a605f83018661317c565b613a6d6020830185612ee4565b613a7a6040830184612ee4565b949350505050565b5f613a8c82612e40565b9150613a9783612e40565b9250828202613aa581612e40565b91508282048414831517613abc57613abb613633565b5b5092915050565b5f8160020b9050919050565b5f613ad982613ac3565b9150613ae483613ac3565b925082613af457613af361377b565b5b828207905092915050565b5f613b0982613ac3565b9150613b1483613ac3565b92508282039050627fffff81137fffffffffffffffffffffffffffffffffffffffffffffffffffffffffff80000082121715613b5357613b52613633565b5b92915050565b5f6fffffffffffffffffffffffffffffffff82169050919050565b613b7d81613b59565b82525050565b608082015f820151613b975f850182612f35565b506020820151613baa60208501826133e3565b506040820151613bbd6040850182613b74565b506060820151613bd06060850182613b74565b50505050565b5f608082019050613be95f830184613b83565b92915050565b5f8060408385031215613c0557613c04612dde565b5b5f613c12858286016136c0565b9250506020613c23858286016136c0565b9150509250929050565b613c3681613106565b82525050565b613c4581613ac3565b82525050565b61016082015f820151613c605f8501826133e3565b506020820151613c7360208501826133e3565b506040820151613c866040850182613c2d565b506060820151613c996060850182613c3c565b506080820151613cac6080850182613c3c565b5060a0820151613cbf60a0850182612f35565b5060c0820151613cd260c0850182612f35565b5060e0820151613ce560e0850182612f35565b50610100820151613cfa610100850182612f35565b50610120820151613d0f6101208501826133e3565b50610140820151613d24610140850182612f35565b50505050565b5f61016082019050613d3e5f830184613c4b565b92915050565b613d4d81613b59565b8114613d57575f80fd5b50565b5f81519050613d6881613d44565b92915050565b5f805f8060808587031215613d8657613d85612dde565b5b5f613d93878288016136c0565b9450506020613da487828801613d5a565b9350506040613db5878288016136c0565b9250506060613dc6878288016136c0565b91505092959194509250565b7f52000000000000000000000000000000000000000000000000000000000000005f82015250565b5f613e06600183612d4f565b9150613e1182613dd2565b602082019050919050565b5f6020820190508181035f830152613e3381613dfa565b9050919050565b7f54000000000000000000000000000000000000000000000000000000000000005f82015250565b5f613e6e600183612d4f565b9150613e7982613e3a565b602082019050919050565b5f6020820190508181035f830152613e9b81613e62565b905091905056fea26469706673582212201b2fb697e32b61ec942dd80907a71b95adf22a3ae2c846669af9bcf42a19c42164736f6c634300081a0033

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

0000000000000000000000000000000000000000033b2e3c9fd0803ce8000000

-----Decoded View---------------
Arg [0] : _tokenSupply (uint256): 1000000000000000000000000000

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000033b2e3c9fd0803ce8000000


Block Transaction Difficulty Gas Used Reward
View All Blocks Produced

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

Validator Index Block Amount
View All Withdrawals

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

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.