ETH Price: $3,190.08 (+0.22%)
Gas: 2 Gwei

Contract

0x972B99eDe570d8E52AbcF24c95337ec2728053DA
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Token Holdings

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Transfer202218572024-07-02 22:38:2323 days ago1719959903IN
0x972B99eD...2728053DA
0 ETH0.000372515.44994423
Transfer200805142024-06-13 4:26:5942 days ago1718252819IN
0x972B99eD...2728053DA
0 ETH0.0006438312.03997403
Transfer200343232024-06-06 17:37:5949 days ago1717695479IN
0x972B99eD...2728053DA
0 ETH0.0014418426.96298305
Transfer200203622024-06-04 18:50:4751 days ago1717527047IN
0x972B99eD...2728053DA
0 ETH0.0010246814.9913122
Transfer200174842024-06-04 9:12:3551 days ago1717492355IN
0x972B99eD...2728053DA
0 ETH0.00036976.9135819
Transfer199445192024-05-25 4:31:2361 days ago1716611483IN
0x972B99eD...2728053DA
0 ETH0.000186493.48751351
Transfer199239342024-05-22 7:28:3564 days ago1716362915IN
0x972B99eD...2728053DA
0 ETH0.000454886.44654456
Transfer198529232024-05-12 9:03:3574 days ago1715504615IN
0x972B99eD...2728053DA
0 ETH0.00031584.47478243
Approve198291302024-05-09 1:12:1178 days ago1715217131IN
0x972B99eD...2728053DA
0 ETH0.000205124.33960455
Renounce Ownersh...198274162024-05-08 19:26:5978 days ago1715196419IN
0x972B99eD...2728053DA
0 ETH0.000111814.75217533
Transfer198095782024-05-06 7:33:3580 days ago1714980815IN
0x972B99eD...2728053DA
0 ETH0.000254164.75300778
Transfer198094282024-05-06 7:02:1180 days ago1714978931IN
0x972B99eD...2728053DA
0 ETH0.000326564.62795323
Approve198073882024-05-06 0:11:4781 days ago1714954307IN
0x972B99eD...2728053DA
0 ETH0.000242355.12707093
Approve198072742024-05-05 23:48:4781 days ago1714952927IN
0x972B99eD...2728053DA
0 ETH0.000129184.31823123
Approve198072732024-05-05 23:48:3581 days ago1714952915IN
0x972B99eD...2728053DA
0 ETH0.000181533.84055107
Approve198069342024-05-05 22:40:4781 days ago1714948847IN
0x972B99eD...2728053DA
0 ETH0.000134014.94206599
Approve198069342024-05-05 22:40:4781 days ago1714948847IN
0x972B99eD...2728053DA
0 ETH0.000232364.94206599
Approve196096602024-04-08 8:07:59108 days ago1712563679IN
0x972B99eD...2728053DA
0 ETH0.00075615.99370789
Approve196056272024-04-07 18:34:11109 days ago1712514851IN
0x972B99eD...2728053DA
0 ETH0.0005066416.94849309
Approve196055702024-04-07 18:22:23109 days ago1712514143IN
0x972B99eD...2728053DA
0 ETH0.0009499520.21998809
Approve196021162024-04-07 6:45:35109 days ago1712472335IN
0x972B99eD...2728053DA
0 ETH0.0004958110.55083434
Transfer196020942024-04-07 6:41:11109 days ago1712472071IN
0x972B99eD...2728053DA
0 ETH0.0006124411.94959772
Transfer194380062024-03-15 4:35:23132 days ago1710477323IN
0x972B99eD...2728053DA
0 ETH0.0034047848.23530781
Transfer190400102024-01-19 9:28:35188 days ago1705656515IN
0x972B99eD...2728053DA
0 ETH0.0015529122
Transfer From190397212024-01-19 8:30:23188 days ago1705653023IN
0x972B99eD...2728053DA
0 ETH0.0013377723.52996071
View all transactions

Latest 3 internal transactions

Advanced mode:
Parent Transaction Hash Block From To
176406062023-07-07 8:01:11384 days ago1688716871
0x972B99eD...2728053DA
0.3933 ETH
173124102023-05-22 4:17:23430 days ago1684729043
0x972B99eD...2728053DA
1.7454 ETH
172560282023-05-14 5:23:11438 days ago1684041791
0x972B99eD...2728053DA
0.003 ETH
Loading...
Loading

Contract Source Code Verified (Exact Match)

Contract Name:
ECO

Compiler Version
v0.8.19+commit.7dd6d404

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 9 : ECO.sol
// SPDX-License-Identifier: MIT

pragma solidity 0.8.19;

import "@openzeppelin/contracts/token/ERC20/ERC20.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/math/SafeMath.sol";
import "@openzeppelin/contracts/utils/Address.sol";
import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol";

// pragma solidity >=0.5.0;

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

    function feeTo() external view returns (address);

    function feeToSetter() external view returns (address);

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

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

    function allPairsLength() external view returns (uint);

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

    function setFeeTo(address) external;

    function setFeeToSetter(address) external;
}

// pragma solidity >=0.5.0;

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

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

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

    function decimals() external pure returns (uint8);

    function totalSupply() external view returns (uint);

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

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

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

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

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

    function DOMAIN_SEPARATOR() external view returns (bytes32);

    function PERMIT_TYPEHASH() external pure returns (bytes32);

    function nonces(address owner) external view returns (uint);

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

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

    function MINIMUM_LIQUIDITY() external pure returns (uint);

    function factory() external view returns (address);

    function token0() external view returns (address);

    function token1() external view returns (address);

    function getReserves()
        external
        view
        returns (uint112 reserve0, uint112 reserve1, uint32 blockTimestampLast);

    function price0CumulativeLast() external view returns (uint);

    function price1CumulativeLast() external view returns (uint);

    function kLast() external view returns (uint);

    function mint(address to) external returns (uint liquidity);

    function burn(address to) external returns (uint amount0, uint amount1);

    function swap(
        uint amount0Out,
        uint amount1Out,
        address to,
        bytes calldata data
    ) external;

    function skim(address to) external;

    function sync() external;

    function initialize(address, address) external;
}

// pragma solidity >=0.6.2;

interface IUniswapV2Router01 {
    function factory() external pure returns (address);

    function WETH() external pure returns (address);

    function addLiquidity(
        address tokenA,
        address tokenB,
        uint amountADesired,
        uint amountBDesired,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline
    ) external returns (uint amountA, uint amountB, uint liquidity);

    function addLiquidityETH(
        address token,
        uint amountTokenDesired,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    )
        external
        payable
        returns (uint amountToken, uint amountETH, uint liquidity);

    function removeLiquidity(
        address tokenA,
        address tokenB,
        uint liquidity,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline
    ) external returns (uint amountA, uint amountB);

    function removeLiquidityETH(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external returns (uint amountToken, uint amountETH);

    function removeLiquidityWithPermit(
        address tokenA,
        address tokenB,
        uint liquidity,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline,
        bool approveMax,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) external returns (uint amountA, uint amountB);

    function removeLiquidityETHWithPermit(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline,
        bool approveMax,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) external returns (uint amountToken, uint amountETH);

    function swapExactTokensForTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external returns (uint[] memory amounts);

    function swapTokensForExactTokens(
        uint amountOut,
        uint amountInMax,
        address[] calldata path,
        address to,
        uint deadline
    ) external returns (uint[] memory amounts);

    function swapExactETHForTokens(
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external payable returns (uint[] memory amounts);

    function swapTokensForExactETH(
        uint amountOut,
        uint amountInMax,
        address[] calldata path,
        address to,
        uint deadline
    ) external returns (uint[] memory amounts);

    function swapExactTokensForETH(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external returns (uint[] memory amounts);

    function swapETHForExactTokens(
        uint amountOut,
        address[] calldata path,
        address to,
        uint deadline
    ) external payable returns (uint[] memory amounts);

    function quote(
        uint amountA,
        uint reserveA,
        uint reserveB
    ) external pure returns (uint amountB);

    function getAmountOut(
        uint amountIn,
        uint reserveIn,
        uint reserveOut
    ) external pure returns (uint amountOut);

    function getAmountIn(
        uint amountOut,
        uint reserveIn,
        uint reserveOut
    ) external pure returns (uint amountIn);

    function getAmountsOut(
        uint amountIn,
        address[] calldata path
    ) external view returns (uint[] memory amounts);

    function getAmountsIn(
        uint amountOut,
        address[] calldata path
    ) external view returns (uint[] memory amounts);
}

// pragma solidity >=0.6.2;

interface IUniswapV2Router02 is IUniswapV2Router01 {
    function removeLiquidityETHSupportingFeeOnTransferTokens(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external returns (uint amountETH);

    function removeLiquidityETHWithPermitSupportingFeeOnTransferTokens(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline,
        bool approveMax,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) external returns (uint amountETH);

    function swapExactTokensForTokensSupportingFeeOnTransferTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external;

    function swapExactETHForTokensSupportingFeeOnTransferTokens(
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external payable;

    function swapExactTokensForETHSupportingFeeOnTransferTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external;
}

/* ------------------------------------------------------------------------------------------------------------------------- */

contract ECO is ERC20, Ownable {
    uint public constant INIT_TOTAL_SUPPLY = 5 * 1e8 * 1e18;

    /* ------------- The shares of every side in percentage -------------- */
    /*
        Private Sale ---- 34%
        Public Sales ----- 23%
        Ecosystem Fund ----- 12%
        Community ----- 10%
        Founders & Team ----- 10%
        Listing & Exchange ----- 7%
        Partners ----- 2%
        Marketing ----- 2%
    */
    uint8 public constant SHARE_OF_ECOSYSTEM = 120;
    uint8 public constant SHARE_OF_COMMUNITY = 100;
    uint8 public constant SHARE_OF_LISTING = 70;
    uint8 public constant SHARE_OF_MARKETING = 20;
    uint8 public constant SHARE_OF_FOUNDERS = 100;
    uint8 public constant SHARE_OF_PARTNERS = 20;
    uint16 public constant SHARE_OF_PRIVATE_SALE = 340;
    uint8 public constant SHARE_OF_PUBLIC_SALE = 230;
    /* ------------------------------------------------------------------- */

    /* -------- Mintable amount of tokens per each sale stage ------------ */
    uint public constant mintableTokenAmountForFounders =
        (INIT_TOTAL_SUPPLY * SHARE_OF_FOUNDERS) / 1000;
    uint public mintableTokenAmountForPartners =
        (INIT_TOTAL_SUPPLY * SHARE_OF_PARTNERS) / 1000;
    uint public mintableTokenAmountForPrivate =
        (INIT_TOTAL_SUPPLY * SHARE_OF_PRIVATE_SALE) / 1000;
    uint public mintableTokenAmountForPublic =
        (INIT_TOTAL_SUPPLY * SHARE_OF_PUBLIC_SALE) / 1000;
    /* ------------------------------------------------------------------- */

    /* -------------- The token prices for each sale stage --------------- */
    /*
        Partner Sale: 1 ECO = 0.00002 ETH
        Private Sale: 1 ECO = 0.00003 ETH
        Public Sale: 1 ECO = 0.00004 ETH
    */
    uint public constant tokenPriceForPartners = 0.00002 ether;
    uint public constant tokenPriceForPrivate = 0.00003 ether;
    uint public constant tokenPriceForPublic = 0.00004 ether;
    /* ------------------------------------------------------------------- */

    /* ---------------------------- Uniswap ------------------------------ */
    IUniswapV2Router02 public immutable uniswapV2Router;
    address public immutable uniswapV2Pair;
    /* ------------------------------------------------------------------- */

    /* ---------------------------- Wallets ------------------------------ */
    //  Owner wallet
    address public constant walletOfOwner =
        0xCe1b665cBBe1B143e02889248bE05fa86F0458fc;

    //  Founders' wallets
    address public constant walletOfFounder1 =
        0xF9e347F9837A07c3b0778011Db4720E252B7b6a0;
    address public constant walletOfFounder2 =
        0x21E41D5efC9A5FC24D7212A0151Bb18983c79Dc4;
    address public constant walletOfFounder3 =
        0x56F877f0bF4f8502c29afa4474692F8219C98bef;

    //  Admin wallets
    address public constant walletOfEcosystem =
        0xe0FcFd2a0aFE8c9F3707Beb34291C518D2FC00Cf;
    address public constant walletOfCommunity =
        0xbe3a59FD4Cbed7D850f1F622F788Bf16c8CA4bDa;
    address public constant walletOfListing =
        0x89B3Fe584e4Ea44115fFcA6DD41B6621DF8c37EC;
    address public constant walletOfMarketing =
        0x39FC2c432cA5098301a97817aF894d75685bc496;
    address public walletOfFund = 0x5A1653A66EcA3D1858823582f9da4f5340de43de;

    //  Burn wallet
    address private constant walletOfBurn =
        0x000000000000000000000000000000000000dEaD;

    /* ------------------------------------------------------------------- */

    bool public tradingEnabled;
    uint256 private launchedAt;

    mapping(address => bool) private _isExcludedFromFees;
    mapping(address => bool) private _isExcludedFromMaxTxLimit;
    mapping(address => bool) public automatedMarketMakerPairs;

    bytes32 public merkleRootOfPartners;

    bool public maxTransactionLimitEnabled = false;
    uint256 private maxTransactionRateBuy = 10; // 1%
    uint256 private maxTransactionRateSell = 10; // 1%

    uint256 public buyFee = 10; //  1%
    uint256 public sellFee = 10; //  1%

    bool public walletToWalletTransferWithoutFee = true;

    bool private swapping;
    uint256 public swappableTokenAmountAtOnce;

    event ExcludedFromMaxTransactionLimit(
        address indexed account,
        bool isExcluded
    );
    event ExcludeFromFees(address indexed account, bool isExcluded);
    event FeesUpdated(uint256 buyFee, uint256 sellFee);
    event SwapTokenAndSendEthToWallet(uint256 tokenAmount, uint256 ethAmount);
    event MaxTransactionLimitStateChanged(bool maxTransactionLimit);
    event WalletOfFundChanged(address marketingWallet);
    event MaxTransactionLimitRatesChanged(
        uint256 maxTransferRateBuy,
        uint256 maxTransferRateSell
    );
    event SetAutomatedMarketMakerPair(address indexed pair, bool indexed value);
    event Withdraw(address toWallet);
    event SetMerkleRootOfPartners(bytes32 merkleRoot);
    event EnableWalletToWalletTransferWithoutFee(bool enable);
    event SetSwappableTokenAmountAtOnce(uint256 amount);
    event EnableTrading();

    constructor() ERC20("Green Planet ECO", "ECO") {
        IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(
            0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D
        );
        uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory())
            .createPair(address(this), _uniswapV2Router.WETH());
        uniswapV2Router = _uniswapV2Router;

        _setAutomatedMarketMakerPair(address(uniswapV2Pair), true);

        _approve(address(this), address(uniswapV2Router), INIT_TOTAL_SUPPLY);

        _isExcludedFromFees[owner()] = true;
        _isExcludedFromFees[walletOfOwner] = true;
        _isExcludedFromFees[address(this)] = true;
        _isExcludedFromFees[walletOfEcosystem] = true;
        _isExcludedFromFees[walletOfCommunity] = true;
        _isExcludedFromFees[walletOfListing] = true;
        _isExcludedFromFees[walletOfMarketing] = true;
        _isExcludedFromFees[walletOfBurn] = true;

        /* ---------- Share the tokens to the admin wallets -------- */
        _mint(
            walletOfEcosystem,
            (INIT_TOTAL_SUPPLY * SHARE_OF_ECOSYSTEM) / 1000
        );
        _mint(
            walletOfCommunity,
            (INIT_TOTAL_SUPPLY * SHARE_OF_COMMUNITY) / 1000
        );
        _mint(walletOfListing, (INIT_TOTAL_SUPPLY * SHARE_OF_LISTING) / 1000);
        _mint(
            walletOfMarketing,
            (INIT_TOTAL_SUPPLY * SHARE_OF_MARKETING) / 1000
        );
        /* ---------------------------------------------------------- */

        /* ----------- Share the tokens to the founders ------------- */
        _mint(walletOfFounder1, 16666667 * 1e18);
        _mint(walletOfFounder2, 16666667 * 1e18);
        _mint(walletOfFounder3, 16666666 * 1e18);
        /* ---------------------------------------------------------- */

        _mint(
            walletOfOwner,
            mintableTokenAmountForPartners +
                mintableTokenAmountForPrivate +
                mintableTokenAmountForPublic
        );
    }

    function mint(address ownerWallet, uint amount) public onlyOwner {
        _mint(ownerWallet, amount * 1e18);
    }

    function _transfer(
        address from,
        address to,
        uint256 amount
    ) internal override {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");
        require(
            tradingEnabled ||
                _isExcludedFromFees[from] ||
                _isExcludedFromFees[to],
            "Trading is not enabled yet"
        );

        if (amount == 0) {
            super._transfer(from, to, 0);
            return;
        }

        if (maxTransactionLimitEnabled) {
            if (
                _isExcludedFromMaxTxLimit[from] == false &&
                _isExcludedFromMaxTxLimit[to] == false
            ) {
                if (from == uniswapV2Pair) {
                    require(
                        amount <= maxTransferAmountBuy(),
                        "AntiWhale: Transfer amount exceeds the maxTransferAmount"
                    );
                } else {
                    require(
                        amount <= maxTransferAmount(),
                        "AntiWhale: Transfer amount exceeds the maxTransferAmount"
                    );
                }
            }
        }

        uint256 contractTokenBalance = balanceOf(address(this));

        bool canSwap = contractTokenBalance >= swappableTokenAmountAtOnce;

        if (canSwap && !swapping && automatedMarketMakerPairs[to]) {
            swapping = true;

            if (contractTokenBalance > swappableTokenAmountAtOnce * 10) {
                contractTokenBalance = swappableTokenAmountAtOnce * 10;
            }

            swapTokenAndSendEthToWallet(contractTokenBalance);

            swapping = false;
        }

        bool takeFee = !swapping;

        if (_isExcludedFromFees[from] || _isExcludedFromFees[to]) {
            takeFee = false;
        }

        if (
            walletToWalletTransferWithoutFee &&
            from != uniswapV2Pair &&
            to != uniswapV2Pair
        ) {
            takeFee = false;
        }

        if (takeFee) {
            uint256 _totalFees;
            if (from == uniswapV2Pair) {
                _totalFees = buyFee;
            } else {
                _totalFees = sellFee;
            }
            uint256 fees = (amount * _totalFees) / 1000;

            amount = amount - fees;

            super._transfer(from, address(this), fees);
        }

        super._transfer(from, to, amount);
    }

    function _setAutomatedMarketMakerPair(address pair, bool value) private {
        automatedMarketMakerPairs[pair] = value;

        emit SetAutomatedMarketMakerPair(pair, value);
    }

    /**
        Check whether the account is contract or not.
     */
    function isContract(address account) internal view returns (bool) {
        return account.code.length > 0;
    }

    /**
        Get max token amount that user can buy at once
     */
    function maxTransferAmountBuy() public view returns (uint) {
        return (totalSupply() * maxTransactionRateBuy) / 1000;
    }

    /**
        Get max token amount that can be transferred between ordinary users
     */
    function maxTransferAmount() public view returns (uint) {
        return (totalSupply() * maxTransactionRateSell) / 1000;
    }

    /**
        Enable or disable the limit of max transfer amount for a specified account.
     */
    function setExcludeFromMaxTransactionLimit(
        address account,
        bool exclude
    ) external onlyOwner {
        require(
            _isExcludedFromMaxTxLimit[account] != exclude,
            "Account is already set to that state"
        );
        _isExcludedFromMaxTxLimit[account] = exclude;
        emit ExcludedFromMaxTransactionLimit(account, exclude);
    }

    /**
        Exclude or include the account in paying fee
     */
    function excludeFromFees(
        address account,
        bool excluded
    ) external onlyOwner {
        require(
            _isExcludedFromFees[account] != excluded,
            "Account is already the value of 'excluded'"
        );
        _isExcludedFromFees[account] = excluded;

        emit ExcludeFromFees(account, excluded);
    }

    /**
        Check whether the account is excluded from paying fee or not.
     */
    function isExcludedFromFees(address account) public view returns (bool) {
        return _isExcludedFromFees[account];
    }

    /**
        Update the fees for buying and selling
     */
    function updateFees(uint256 _buyFee, uint256 _sellFee) external onlyOwner {
        require(
            _buyFee <= 20 && _sellFee <= 30,
            "Max buy fee is 2% and max sell fee is 3%."
        );
        buyFee = _buyFee;
        sellFee = _sellFee;
        emit FeesUpdated(buyFee, sellFee);
    }

    /**
        Swap token and send ethereum which are getting from swap to marketing wallet
     */
    function swapTokenAndSendEthToWallet(uint256 tokenAmount) private {
        uint256 initialBalance = address(this).balance;

        address[] memory path = new address[](2);
        path[0] = address(this);
        path[1] = uniswapV2Router.WETH();

        _approve(address(this), address(uniswapV2Router), tokenAmount);

        uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(
            tokenAmount,
            0, // accept any amount of ETH
            path,
            address(this),
            block.timestamp
        );

        uint256 newBalance = address(this).balance - initialBalance;

        sendETH(payable(walletOfFund), newBalance);

        emit SwapTokenAndSendEthToWallet(tokenAmount, newBalance);
    }

    /**
        Send ethereum to one of the admin wallets
     */
    function sendETH(address payable recipient, uint256 amount) internal {
        require(
            address(this).balance >= amount,
            "Address: insufficient balance"
        );

        (bool success, ) = recipient.call{value: amount}("");
        require(
            success,
            "Address: unable to send value, recipient may have reverted"
        );
    }

    /**
        Enable trading of token
     */
    function enableTrading() external onlyOwner {
        require(launchedAt == 0, "Trading already enabled");
        launchedAt = block.timestamp;
        tradingEnabled = true;
        emit EnableTrading();
    }

    /**
        Set swappable token amount at once
     */
    function setSwappableTokenAmountAtOnce(
        uint256 newAmount
    ) external onlyOwner {
        require(
            newAmount > totalSupply() / 100000,
            "SwappableTokenAmountAtOnce must be greater than 0.001% of total supply"
        );
        swappableTokenAmountAtOnce = newAmount;
        emit SetSwappableTokenAmountAtOnce(newAmount);
    }

    /**
        Enable or disable the limit of max token amount can be traded at once
     */
    function setEnableMaxTransactionLimit(bool enable) external onlyOwner {
        require(
            enable != maxTransactionLimitEnabled,
            "Max transaction limit is already that state"
        );
        maxTransactionLimitEnabled = enable;
        emit MaxTransactionLimitStateChanged(maxTransactionLimitEnabled);
    }

    /**
        Enable or disable paying fee in the transferring token between 2 wallets
     */
    function enableWalletToWalletTransferWithoutFee(
        bool enable
    ) external onlyOwner {
        require(
            walletToWalletTransferWithoutFee != enable,
            "Wallet to wallet transfer without fee is already set to that value"
        );
        walletToWalletTransferWithoutFee = enable;
        emit EnableWalletToWalletTransferWithoutFee(enable);
    }

    /**
        Change the address of walletOfFund
     */
    function changeWalletOfFund(address _walletOfFund) external onlyOwner {
        require(
            walletOfFund != _walletOfFund,
            "Marketing wallet is already that address"
        );
        require(
            !isContract(_walletOfFund),
            "Marketing wallet cannot be a contract"
        );
        walletOfFund = _walletOfFund;
        emit WalletOfFundChanged(walletOfFund);
    }

    /**
        Check whether the account is excluded from limitation of max token amount in one transaction
     */
    function isExcludedFromMaxTransaction(
        address account
    ) public view returns (bool) {
        return _isExcludedFromMaxTxLimit[account];
    }

    /**
        Percentage denoimator is 1000
     */
    function setMaxTransactionRates(
        uint256 _maxTransactionRateBuy,
        uint256 _maxTransactionRateSell
    ) external onlyOwner {
        require(
            _maxTransactionRateSell >= 1 && _maxTransactionRateBuy >= 1,
            "Max Transaction limit cannot be lower than 0.1% of total supply"
        );
        maxTransactionRateBuy = _maxTransactionRateBuy;
        maxTransactionRateSell = _maxTransactionRateSell;
        emit MaxTransactionLimitRatesChanged(
            maxTransactionRateBuy,
            maxTransactionRateSell
        );
    }

    /**
        Set the root of merkle tree of Partners' wallet addresses
     */
    function setMerkleRootOfPartners(
        bytes32 _merkleRootOfPartners
    ) public onlyOwner {
        merkleRootOfPartners = _merkleRootOfPartners;
        emit SetMerkleRootOfPartners(_merkleRootOfPartners);
    }

    /**
        Sell the tokens to the partners
     */
    function mintForPartners(
        bytes32[] calldata merkleProof,
        uint amount
    ) public payable {
        require(
            mintableTokenAmountForPartners > 0,
            "The sale for partners was finished."
        );
        require(
            amount * 1e18 <= mintableTokenAmountForPartners,
            "Required amount is over of mintable amount."
        );
        require(
            msg.value >= tokenPriceForPartners * amount,
            "Not Enough Funds"
        );

        bytes32 leaf = keccak256(abi.encodePacked(msg.sender));
        require(
            MerkleProof.verify(merkleProof, merkleRootOfPartners, leaf),
            "You are not our partner."
        );

        _transfer(walletOfOwner, msg.sender, amount * 1e18);
        mintableTokenAmountForPartners -= amount * 1e18;
    }

    /**
        Private sale
     */
    function privateSale(uint amount) public payable {
        require(
            mintableTokenAmountForPrivate > 0,
            "The private sale was finished."
        );
        require(
            amount * 1e18 <= mintableTokenAmountForPrivate,
            "Required amount is over of mintable amount."
        );
        require(msg.value >= tokenPriceForPrivate * amount, "Not Enough Funds");

        _transfer(walletOfOwner, msg.sender, amount * 1e18);
        mintableTokenAmountForPrivate -= amount * 1e18;
    }

    /**
        Public sale
     */
    function publicSale(uint amount) public payable {
        require(
            mintableTokenAmountForPublic > 0,
            "The public sale was finished."
        );
        require(
            amount * 1e18 <= mintableTokenAmountForPublic,
            "Required amount is over of mintable amount."
        );
        require(msg.value >= tokenPriceForPublic * amount, "Not Enough Funds");

        _transfer(walletOfOwner, msg.sender, amount * 1e18);
        mintableTokenAmountForPublic -= amount * 1e18;
    }

    function withdraw(address ownerWallet) public onlyOwner {
        require(ownerWallet != address(0), "Invalid wallet address");
        Address.sendValue(payable(ownerWallet), address(this).balance);
        emit Withdraw(ownerWallet);
    }

    //  fallback to recieve ether in
    receive() external payable {}
}

File 2 of 9 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol)

pragma solidity ^0.8.0;

import "../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.
 *
 * By default, the owner account will be the one that deploys the contract. 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;

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

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        _transferOwnership(_msgSender());
    }

    /**
     * @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 {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
    }

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing 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 {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        _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 9 : ERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.0) (token/ERC20/ERC20.sol)

pragma solidity ^0.8.0;

import "./IERC20.sol";
import "./extensions/IERC20Metadata.sol";
import "../../utils/Context.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}.
 * For a generic mechanism see {ERC20PresetMinterPauser}.
 *
 * 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].
 *
 * 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.
 *
 * Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
 * functions have been added to mitigate the well-known issues around setting
 * allowances. See {IERC20-approve}.
 */
contract ERC20 is Context, IERC20, IERC20Metadata {
    mapping(address => uint256) private _balances;

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * The default value of {decimals} is 18. To select a different value for
     * {decimals} you should overload it.
     *
     * 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 override returns (string memory) {
        return _name;
    }

    /**
     * @dev Returns the symbol of the token, usually a shorter version of the
     * name.
     */
    function symbol() public view virtual override 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 value {ERC20} uses, unless this function is
     * 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 override returns (uint8) {
        return 18;
    }

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

    /**
     * @dev See {IERC20-balanceOf}.
     */
    function balanceOf(address account) public view virtual override 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 `amount`.
     */
    function transfer(address to, uint256 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _transfer(owner, to, amount);
        return true;
    }

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

    /**
     * @dev See {IERC20-approve}.
     *
     * NOTE: If `amount` 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 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _approve(owner, spender, amount);
        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 `amount`.
     * - the caller must have allowance for ``from``'s tokens of at least
     * `amount`.
     */
    function transferFrom(
        address from,
        address to,
        uint256 amount
    ) public virtual override returns (bool) {
        address spender = _msgSender();
        _spendAllowance(from, spender, amount);
        _transfer(from, to, amount);
        return true;
    }

    /**
     * @dev Atomically increases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {
        address owner = _msgSender();
        _approve(owner, spender, allowance(owner, spender) + addedValue);
        return true;
    }

    /**
     * @dev Atomically decreases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     * - `spender` must have allowance for the caller of at least
     * `subtractedValue`.
     */
    function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) {
        address owner = _msgSender();
        uint256 currentAllowance = allowance(owner, spender);
        require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
        unchecked {
            _approve(owner, spender, currentAllowance - subtractedValue);
        }

        return true;
    }

    /**
     * @dev Moves `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.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     */
    function _transfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");

        _beforeTokenTransfer(from, to, amount);

        uint256 fromBalance = _balances[from];
        require(fromBalance >= amount, "ERC20: transfer amount exceeds balance");
        unchecked {
            _balances[from] = fromBalance - amount;
            // Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by
            // decrementing then incrementing.
            _balances[to] += amount;
        }

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, amount);
    }

    /** @dev Creates `amount` tokens and assigns them to `account`, increasing
     * the total supply.
     *
     * Emits a {Transfer} event with `from` set to the zero address.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     */
    function _mint(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: mint to the zero address");

        _beforeTokenTransfer(address(0), account, amount);

        _totalSupply += amount;
        unchecked {
            // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above.
            _balances[account] += amount;
        }
        emit Transfer(address(0), account, amount);

        _afterTokenTransfer(address(0), account, amount);
    }

    /**
     * @dev Destroys `amount` tokens from `account`, reducing the
     * total supply.
     *
     * Emits a {Transfer} event with `to` set to the zero address.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     * - `account` must have at least `amount` tokens.
     */
    function _burn(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: burn from the zero address");

        _beforeTokenTransfer(account, address(0), amount);

        uint256 accountBalance = _balances[account];
        require(accountBalance >= amount, "ERC20: burn amount exceeds balance");
        unchecked {
            _balances[account] = accountBalance - amount;
            // Overflow not possible: amount <= accountBalance <= totalSupply.
            _totalSupply -= amount;
        }

        emit Transfer(account, address(0), amount);

        _afterTokenTransfer(account, address(0), amount);
    }

    /**
     * @dev Sets `amount` 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.
     */
    function _approve(
        address owner,
        address spender,
        uint256 amount
    ) internal virtual {
        require(owner != address(0), "ERC20: approve from the zero address");
        require(spender != address(0), "ERC20: approve to the zero address");

        _allowances[owner][spender] = amount;
        emit Approval(owner, spender, amount);
    }

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

    /**
     * @dev Hook that is called before any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * will be transferred to `to`.
     * - when `from` is zero, `amount` tokens will be minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens will be burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {}

    /**
     * @dev Hook that is called after any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * has been transferred to `to`.
     * - when `from` is zero, `amount` tokens have been minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens have been burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _afterTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {}
}

File 4 of 9 : IERC20Metadata.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol)

pragma solidity ^0.8.0;

import "../IERC20.sol";

/**
 * @dev Interface for the optional metadata functions from the ERC20 standard.
 *
 * _Available since v4.1._
 */
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 5 of 9 : IERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

/**
 * @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 amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

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

    /**
     * @dev Moves `amount` 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 amount) 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 `amount` 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 amount) external returns (bool);

    /**
     * @dev Moves `amount` tokens from `from` to `to` using the
     * allowance mechanism. `amount` 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 amount
    ) external returns (bool);
}

File 6 of 9 : Address.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.0) (utils/Address.sol)

pragma solidity ^0.8.1;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     *
     * [IMPORTANT]
     * ====
     * You shouldn't rely on `isContract` to protect against flash loan attacks!
     *
     * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
     * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
     * constructor.
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize/address.code.length, which returns 0
        // for contracts in construction, since the code is only stored at the end
        // of the constructor execution.

        return account.code.length > 0;
    }

    /**
     * @dev Replacement for Solidity's `transfer`: sends `amount` wei to
     * `recipient`, forwarding all available gas and reverting on errors.
     *
     * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
     * of certain opcodes, possibly making contracts go over the 2300 gas limit
     * imposed by `transfer`, making them unable to receive funds via
     * `transfer`. {sendValue} removes this limitation.
     *
     * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].
     *
     * IMPORTANT: because control is transferred to `recipient`, care must be
     * taken to not create reentrancy vulnerabilities. Consider using
     * {ReentrancyGuard} or the
     * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
     */
    function sendValue(address payable recipient, uint256 amount) internal {
        require(address(this).balance >= amount, "Address: insufficient balance");

        (bool success, ) = recipient.call{value: amount}("");
        require(success, "Address: unable to send value, recipient may have reverted");
    }

    /**
     * @dev Performs a Solidity function call using a low level `call`. A
     * plain `call` is an unsafe replacement for a function call: use this
     * function instead.
     *
     * If `target` reverts with a revert reason, it is bubbled up by this
     * function (like regular Solidity function calls).
     *
     * Returns the raw returned data. To convert to the expected return value,
     * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
     *
     * Requirements:
     *
     * - `target` must be a contract.
     * - calling `target` with `data` must not revert.
     *
     * _Available since v3.1._
     */
    function functionCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionCallWithValue(target, data, 0, "Address: low-level call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
     * `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, 0, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but also transferring `value` wei to `target`.
     *
     * Requirements:
     *
     * - the calling contract must have an ETH balance of at least `value`.
     * - the called Solidity function must be `payable`.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, value, "Address: low-level call with value failed");
    }

    /**
     * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
     * with `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(address(this).balance >= value, "Address: insufficient balance for call");
        (bool success, bytes memory returndata) = target.call{value: value}(data);
        return verifyCallResultFromTarget(target, success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
        return functionStaticCall(target, data, "Address: low-level static call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal view returns (bytes memory) {
        (bool success, bytes memory returndata) = target.staticcall(data);
        return verifyCallResultFromTarget(target, success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionDelegateCall(target, data, "Address: low-level delegate call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        (bool success, bytes memory returndata) = target.delegatecall(data);
        return verifyCallResultFromTarget(target, success, returndata, errorMessage);
    }

    /**
     * @dev Tool to verify that a low level call to smart-contract was successful, and revert (either by bubbling
     * the revert reason or using the provided one) in case of unsuccessful call or if target was not a contract.
     *
     * _Available since v4.8._
     */
    function verifyCallResultFromTarget(
        address target,
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal view returns (bytes memory) {
        if (success) {
            if (returndata.length == 0) {
                // only check isContract if the call was successful and the return data is empty
                // otherwise we already know that it was a contract
                require(isContract(target), "Address: call to non-contract");
            }
            return returndata;
        } else {
            _revert(returndata, errorMessage);
        }
    }

    /**
     * @dev Tool to verify that a low level call was successful, and revert if it wasn't, either by bubbling the
     * revert reason or using the provided one.
     *
     * _Available since v4.3._
     */
    function verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal pure returns (bytes memory) {
        if (success) {
            return returndata;
        } else {
            _revert(returndata, errorMessage);
        }
    }

    function _revert(bytes memory returndata, string memory errorMessage) private pure {
        // Look for revert reason and bubble it up if present
        if (returndata.length > 0) {
            // The easiest way to bubble the revert reason is using memory via assembly
            /// @solidity memory-safe-assembly
            assembly {
                let returndata_size := mload(returndata)
                revert(add(32, returndata), returndata_size)
            }
        } else {
            revert(errorMessage);
        }
    }
}

File 7 of 9 : Context.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

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

File 8 of 9 : MerkleProof.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.0) (utils/cryptography/MerkleProof.sol)

pragma solidity ^0.8.0;

/**
 * @dev These functions deal with verification of Merkle Tree proofs.
 *
 * The tree and the proofs can be generated using our
 * https://github.com/OpenZeppelin/merkle-tree[JavaScript library].
 * You will find a quickstart guide in the readme.
 *
 * WARNING: You should avoid using leaf values that are 64 bytes long prior to
 * hashing, or use a hash function other than keccak256 for hashing leaves.
 * This is because the concatenation of a sorted pair of internal nodes in
 * the merkle tree could be reinterpreted as a leaf value.
 * OpenZeppelin's JavaScript library generates merkle trees that are safe
 * against this attack out of the box.
 */
library MerkleProof {
    /**
     * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree
     * defined by `root`. For this, a `proof` must be provided, containing
     * sibling hashes on the branch from the leaf to the root of the tree. Each
     * pair of leaves and each pair of pre-images are assumed to be sorted.
     */
    function verify(
        bytes32[] memory proof,
        bytes32 root,
        bytes32 leaf
    ) internal pure returns (bool) {
        return processProof(proof, leaf) == root;
    }

    /**
     * @dev Calldata version of {verify}
     *
     * _Available since v4.7._
     */
    function verifyCalldata(
        bytes32[] calldata proof,
        bytes32 root,
        bytes32 leaf
    ) internal pure returns (bool) {
        return processProofCalldata(proof, leaf) == root;
    }

    /**
     * @dev Returns the rebuilt hash obtained by traversing a Merkle tree up
     * from `leaf` using `proof`. A `proof` is valid if and only if the rebuilt
     * hash matches the root of the tree. When processing the proof, the pairs
     * of leafs & pre-images are assumed to be sorted.
     *
     * _Available since v4.4._
     */
    function processProof(bytes32[] memory proof, bytes32 leaf) internal pure returns (bytes32) {
        bytes32 computedHash = leaf;
        for (uint256 i = 0; i < proof.length; i++) {
            computedHash = _hashPair(computedHash, proof[i]);
        }
        return computedHash;
    }

    /**
     * @dev Calldata version of {processProof}
     *
     * _Available since v4.7._
     */
    function processProofCalldata(bytes32[] calldata proof, bytes32 leaf) internal pure returns (bytes32) {
        bytes32 computedHash = leaf;
        for (uint256 i = 0; i < proof.length; i++) {
            computedHash = _hashPair(computedHash, proof[i]);
        }
        return computedHash;
    }

    /**
     * @dev Returns true if the `leaves` can be simultaneously proven to be a part of a merkle tree defined by
     * `root`, according to `proof` and `proofFlags` as described in {processMultiProof}.
     *
     * CAUTION: Not all merkle trees admit multiproofs. See {processMultiProof} for details.
     *
     * _Available since v4.7._
     */
    function multiProofVerify(
        bytes32[] memory proof,
        bool[] memory proofFlags,
        bytes32 root,
        bytes32[] memory leaves
    ) internal pure returns (bool) {
        return processMultiProof(proof, proofFlags, leaves) == root;
    }

    /**
     * @dev Calldata version of {multiProofVerify}
     *
     * CAUTION: Not all merkle trees admit multiproofs. See {processMultiProof} for details.
     *
     * _Available since v4.7._
     */
    function multiProofVerifyCalldata(
        bytes32[] calldata proof,
        bool[] calldata proofFlags,
        bytes32 root,
        bytes32[] memory leaves
    ) internal pure returns (bool) {
        return processMultiProofCalldata(proof, proofFlags, leaves) == root;
    }

    /**
     * @dev Returns the root of a tree reconstructed from `leaves` and sibling nodes in `proof`. The reconstruction
     * proceeds by incrementally reconstructing all inner nodes by combining a leaf/inner node with either another
     * leaf/inner node or a proof sibling node, depending on whether each `proofFlags` item is true or false
     * respectively.
     *
     * CAUTION: Not all merkle trees admit multiproofs. To use multiproofs, it is sufficient to ensure that: 1) the tree
     * is complete (but not necessarily perfect), 2) the leaves to be proven are in the opposite order they are in the
     * tree (i.e., as seen from right to left starting at the deepest layer and continuing at the next layer).
     *
     * _Available since v4.7._
     */
    function processMultiProof(
        bytes32[] memory proof,
        bool[] memory proofFlags,
        bytes32[] memory leaves
    ) internal pure returns (bytes32 merkleRoot) {
        // This function rebuild the root hash by traversing the tree up from the leaves. The root is rebuilt by
        // consuming and producing values on a queue. The queue starts with the `leaves` array, then goes onto the
        // `hashes` array. At the end of the process, the last hash in the `hashes` array should contain the root of
        // the merkle tree.
        uint256 leavesLen = leaves.length;
        uint256 totalHashes = proofFlags.length;

        // Check proof validity.
        require(leavesLen + proof.length - 1 == totalHashes, "MerkleProof: invalid multiproof");

        // The xxxPos values are "pointers" to the next value to consume in each array. All accesses are done using
        // `xxx[xxxPos++]`, which return the current value and increment the pointer, thus mimicking a queue's "pop".
        bytes32[] memory hashes = new bytes32[](totalHashes);
        uint256 leafPos = 0;
        uint256 hashPos = 0;
        uint256 proofPos = 0;
        // At each step, we compute the next hash using two values:
        // - a value from the "main queue". If not all leaves have been consumed, we get the next leaf, otherwise we
        //   get the next hash.
        // - depending on the flag, either another value for the "main queue" (merging branches) or an element from the
        //   `proof` array.
        for (uint256 i = 0; i < totalHashes; i++) {
            bytes32 a = leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++];
            bytes32 b = proofFlags[i] ? leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++] : proof[proofPos++];
            hashes[i] = _hashPair(a, b);
        }

        if (totalHashes > 0) {
            return hashes[totalHashes - 1];
        } else if (leavesLen > 0) {
            return leaves[0];
        } else {
            return proof[0];
        }
    }

    /**
     * @dev Calldata version of {processMultiProof}.
     *
     * CAUTION: Not all merkle trees admit multiproofs. See {processMultiProof} for details.
     *
     * _Available since v4.7._
     */
    function processMultiProofCalldata(
        bytes32[] calldata proof,
        bool[] calldata proofFlags,
        bytes32[] memory leaves
    ) internal pure returns (bytes32 merkleRoot) {
        // This function rebuild the root hash by traversing the tree up from the leaves. The root is rebuilt by
        // consuming and producing values on a queue. The queue starts with the `leaves` array, then goes onto the
        // `hashes` array. At the end of the process, the last hash in the `hashes` array should contain the root of
        // the merkle tree.
        uint256 leavesLen = leaves.length;
        uint256 totalHashes = proofFlags.length;

        // Check proof validity.
        require(leavesLen + proof.length - 1 == totalHashes, "MerkleProof: invalid multiproof");

        // The xxxPos values are "pointers" to the next value to consume in each array. All accesses are done using
        // `xxx[xxxPos++]`, which return the current value and increment the pointer, thus mimicking a queue's "pop".
        bytes32[] memory hashes = new bytes32[](totalHashes);
        uint256 leafPos = 0;
        uint256 hashPos = 0;
        uint256 proofPos = 0;
        // At each step, we compute the next hash using two values:
        // - a value from the "main queue". If not all leaves have been consumed, we get the next leaf, otherwise we
        //   get the next hash.
        // - depending on the flag, either another value for the "main queue" (merging branches) or an element from the
        //   `proof` array.
        for (uint256 i = 0; i < totalHashes; i++) {
            bytes32 a = leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++];
            bytes32 b = proofFlags[i] ? leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++] : proof[proofPos++];
            hashes[i] = _hashPair(a, b);
        }

        if (totalHashes > 0) {
            return hashes[totalHashes - 1];
        } else if (leavesLen > 0) {
            return leaves[0];
        } else {
            return proof[0];
        }
    }

    function _hashPair(bytes32 a, bytes32 b) private pure returns (bytes32) {
        return a < b ? _efficientHash(a, b) : _efficientHash(b, a);
    }

    function _efficientHash(bytes32 a, bytes32 b) private pure returns (bytes32 value) {
        /// @solidity memory-safe-assembly
        assembly {
            mstore(0x00, a)
            mstore(0x20, b)
            value := keccak256(0x00, 0x40)
        }
    }
}

File 9 of 9 : SafeMath.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (utils/math/SafeMath.sol)

pragma solidity ^0.8.0;

// CAUTION
// This version of SafeMath should only be used with Solidity 0.8 or later,
// because it relies on the compiler's built in overflow checks.

/**
 * @dev Wrappers over Solidity's arithmetic operations.
 *
 * NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler
 * now has built in overflow checking.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            uint256 c = a + b;
            if (c < a) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b > a) return (false, 0);
            return (true, a - b);
        }
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
            // benefit is lost if 'b' is also tested.
            // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
            if (a == 0) return (true, 0);
            uint256 c = a * b;
            if (c / a != b) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the division of two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a / b);
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a % b);
        }
    }

    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     *
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        return a + b;
    }

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

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        return a * b;
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator.
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return a / b;
    }

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

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {trySub}.
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b <= a, errorMessage);
            return a - b;
        }
    }

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

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting with custom message when dividing by zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryMod}.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a % b;
        }
    }
}

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"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":[],"name":"EnableTrading","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bool","name":"enable","type":"bool"}],"name":"EnableWalletToWalletTransferWithoutFee","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromFees","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludedFromMaxTransactionLimit","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"buyFee","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"sellFee","type":"uint256"}],"name":"FeesUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"maxTransferRateBuy","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"maxTransferRateSell","type":"uint256"}],"name":"MaxTransactionLimitRatesChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bool","name":"maxTransactionLimit","type":"bool"}],"name":"MaxTransactionLimitStateChanged","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":"pair","type":"address"},{"indexed":true,"internalType":"bool","name":"value","type":"bool"}],"name":"SetAutomatedMarketMakerPair","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bytes32","name":"merkleRoot","type":"bytes32"}],"name":"SetMerkleRootOfPartners","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"SetSwappableTokenAmountAtOnce","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokenAmount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethAmount","type":"uint256"}],"name":"SwapTokenAndSendEthToWallet","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"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"marketingWallet","type":"address"}],"name":"WalletOfFundChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"toWallet","type":"address"}],"name":"Withdraw","type":"event"},{"inputs":[],"name":"INIT_TOTAL_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"SHARE_OF_COMMUNITY","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"SHARE_OF_ECOSYSTEM","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"SHARE_OF_FOUNDERS","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"SHARE_OF_LISTING","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"SHARE_OF_MARKETING","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"SHARE_OF_PARTNERS","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"SHARE_OF_PRIVATE_SALE","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"SHARE_OF_PUBLIC_SALE","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"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":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"automatedMarketMakerPairs","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_walletOfFund","type":"address"}],"name":"changeWalletOfFund","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"enableTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"enable","type":"bool"}],"name":"enableWalletToWalletTransferWithoutFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromMaxTransaction","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTransactionLimitEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTransferAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTransferAmountBuy","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"merkleRootOfPartners","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"ownerWallet","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"merkleProof","type":"bytes32[]"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mintForPartners","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintableTokenAmountForFounders","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mintableTokenAmountForPartners","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mintableTokenAmountForPrivate","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mintableTokenAmountForPublic","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":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"privateSale","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"publicSale","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"enable","type":"bool"}],"name":"setEnableMaxTransactionLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"exclude","type":"bool"}],"name":"setExcludeFromMaxTransactionLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxTransactionRateBuy","type":"uint256"},{"internalType":"uint256","name":"_maxTransactionRateSell","type":"uint256"}],"name":"setMaxTransactionRates","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_merkleRootOfPartners","type":"bytes32"}],"name":"setMerkleRootOfPartners","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newAmount","type":"uint256"}],"name":"setSwappableTokenAmountAtOnce","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swappableTokenAmountAtOnce","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokenPriceForPartners","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokenPriceForPrivate","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokenPriceForPublic","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","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":"amount","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":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_buyFee","type":"uint256"},{"internalType":"uint256","name":"_sellFee","type":"uint256"}],"name":"updateFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"walletOfCommunity","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"walletOfEcosystem","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"walletOfFounder1","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"walletOfFounder2","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"walletOfFounder3","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"walletOfFund","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"walletOfListing","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"walletOfMarketing","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"walletOfOwner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"walletToWalletTransferWithoutFee","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"ownerWallet","type":"address"}],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60c06040526103e8601460ff166b019d971e4fe8401e7400000062000025919062000e87565b62000031919062000f01565b6006556103e861015461ffff166b019d971e4fe8401e7400000062000057919062000e87565b62000063919062000f01565b6007556103e860e660ff166b019d971e4fe8401e7400000062000087919062000e87565b62000093919062000f01565b600855735a1653a66eca3d1858823582f9da4f5340de43de600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506000600f60006101000a81548160ff021916908315150217905550600a601055600a601155600a601255600a6013556001601460006101000a81548160ff0219169083151502179055503480156200014257600080fd5b506040518060400160405280601081526020017f477265656e20506c616e65742045434f000000000000000000000000000000008152506040518060400160405280600381526020017f45434f00000000000000000000000000000000000000000000000000000000008152508160039081620001c09190620011a9565b508060049081620001d29190620011a9565b505050620001f5620001e96200096d60201b60201c565b6200097560201b60201c565b6000737a250d5630b4cf539739df2c5dacb4c659f2488d90508073ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa1580156200025a573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002809190620012fa565b73ffffffffffffffffffffffffffffffffffffffff1663c9c65396308373ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015620002e8573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200030e9190620012fa565b6040518363ffffffff1660e01b81526004016200032d9291906200133d565b6020604051808303816000875af11580156200034d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620003739190620012fa565b73ffffffffffffffffffffffffffffffffffffffff1660a08173ffffffffffffffffffffffffffffffffffffffff16815250508073ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff1681525050620003ef60a051600162000a3b60201b60201c565b62000410306080516b019d971e4fe8401e7400000062000adc60201b60201c565b6001600b60006200042662000cad60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600b600073ce1b665cbbe1b143e02889248be05fa86f0458fc73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600b60003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600b600073e0fcfd2a0afe8c9f3707beb34291c518d2fc00cf73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600b600073be3a59fd4cbed7d850f1f622f788bf16c8ca4bda73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600b60007389b3fe584e4ea44115ffca6dd41b6621df8c37ec73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600b60007339fc2c432ca5098301a97817af894d75685bc49673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600b600061dead73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506200079773e0fcfd2a0afe8c9f3707beb34291c518d2fc00cf6103e8607860ff166b019d971e4fe8401e740000006200077f919062000e87565b6200078b919062000f01565b62000cd760201b60201c565b620007e973be3a59fd4cbed7d850f1f622f788bf16c8ca4bda6103e8606460ff166b019d971e4fe8401e74000000620007d1919062000e87565b620007dd919062000f01565b62000cd760201b60201c565b6200083b7389b3fe584e4ea44115ffca6dd41b6621df8c37ec6103e8604660ff166b019d971e4fe8401e7400000062000823919062000e87565b6200082f919062000f01565b62000cd760201b60201c565b6200088d7339fc2c432ca5098301a97817af894d75685bc4966103e8601460ff166b019d971e4fe8401e7400000062000875919062000e87565b62000881919062000f01565b62000cd760201b60201c565b620008be73f9e347f9837a07c3b0778011db4720e252b7b6a06a0dc94dd416e9b45dcc000062000cd760201b60201c565b620008ef7321e41d5efc9a5fc24d7212a0151bb18983c79dc46a0dc94dd416e9b45dcc000062000cd760201b60201c565b620009207356f877f0bf4f8502c29afa4474692f8219c98bef6a0dc94dc6363300b668000062000cd760201b60201c565b6200096673ce1b665cbbe1b143e02889248be05fa86f0458fc6008546007546006546200094e91906200136a565b6200095a91906200136a565b62000cd760201b60201c565b5062001586565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b80600d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160362000b4e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000b45906200142c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000bc0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000bb790620014c4565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405162000ca09190620014f7565b60405180910390a3505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000d49576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000d409062001564565b60405180910390fd5b62000d5d6000838362000e4460201b60201c565b806002600082825462000d7191906200136a565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000e249190620014f7565b60405180910390a362000e406000838362000e4960201b60201c565b5050565b505050565b505050565b6000819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600062000e948262000e4e565b915062000ea18362000e4e565b925082820262000eb18162000e4e565b9150828204841483151762000ecb5762000eca62000e58565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600062000f0e8262000e4e565b915062000f1b8362000e4e565b92508262000f2e5762000f2d62000ed2565b5b828204905092915050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168062000fbb57607f821691505b60208210810362000fd15762000fd062000f73565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026200103b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000ffc565b62001047868362000ffc565b95508019841693508086168417925050509392505050565b6000819050919050565b60006200108a620010846200107e8462000e4e565b6200105f565b62000e4e565b9050919050565b6000819050919050565b620010a68362001069565b620010be620010b58262001091565b84845462001009565b825550505050565b600090565b620010d5620010c6565b620010e28184846200109b565b505050565b5b818110156200110a57620010fe600082620010cb565b600181019050620010e8565b5050565b601f8211156200115957620011238162000fd7565b6200112e8462000fec565b810160208510156200113e578190505b620011566200114d8562000fec565b830182620010e7565b50505b505050565b600082821c905092915050565b60006200117e600019846008026200115e565b1980831691505092915050565b60006200119983836200116b565b9150826002028217905092915050565b620011b48262000f39565b67ffffffffffffffff811115620011d057620011cf62000f44565b5b620011dc825462000fa2565b620011e98282856200110e565b600060209050601f8311600181146200122157600084156200120c578287015190505b6200121885826200118b565b86555062001288565b601f198416620012318662000fd7565b60005b828110156200125b5784890151825560018201915060208501945060208101905062001234565b868310156200127b578489015162001277601f8916826200116b565b8355505b6001600288020188555050505b505050505050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000620012c28262001295565b9050919050565b620012d481620012b5565b8114620012e057600080fd5b50565b600081519050620012f481620012c9565b92915050565b60006020828403121562001313576200131262001290565b5b60006200132384828501620012e3565b91505092915050565b6200133781620012b5565b82525050565b60006040820190506200135460008301856200132c565b6200136360208301846200132c565b9392505050565b6000620013778262000e4e565b9150620013848362000e4e565b92508282019050808211156200139f576200139e62000e58565b5b92915050565b600082825260208201905092915050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b600062001414602483620013a5565b91506200142182620013b6565b604082019050919050565b60006020820190508181036000830152620014478162001405565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000620014ac602283620013a5565b9150620014b9826200144e565b604082019050919050565b60006020820190508181036000830152620014df816200149d565b9050919050565b620014f18162000e4e565b82525050565b60006020820190506200150e6000830184620014e6565b92915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b60006200154c601f83620013a5565b9150620015598262001514565b602082019050919050565b600060208201905081810360008301526200157f816200153d565b9050919050565b60805160a0516153c3620015dd6000396000818161144401528181612a4301528181612cfc01528181612d540152612db701526000818161125f015281816134c9015281816135aa01526135d101526153c36000f3fe6080604052600436106103f35760003560e01c80636ad8628c11610208578063a457c2d711610118578063cc02cc0b116100ab578063e9d620de1161007a578063e9d620de14610edd578063eae7eb1314610f08578063f10553d214610f33578063f2fde38b14610f5e578063f79da68e14610f87576103fa565b8063cc02cc0b14610e1f578063ce27f07014610e4a578063dd62ed3e14610e75578063e7434b6c14610eb2576103fa565b8063b62496f5116100e7578063b62496f514610d72578063b8d59a6514610daf578063c024666814610dcb578063c473d61914610df4576103fa565b8063a457c2d714610cb1578063a9059cbb14610cee578063a9e7572314610d2b578063b287c8ed14610d56576103fa565b8063797002681161019b5780638da5cb5b1161016a5780638da5cb5b14610bdc578063925f709d14610c0757806394afa8a114610c3257806395d89b4114610c5b578063988733ae14610c86576103fa565b80637970026814610b53578063818fdf3e14610b6f5780638a8c523c14610b9a5780638c10769314610bb1576103fa565b8063715018a6116101d7578063715018a614610abd57806371dd594114610ad457806372bd215b14610aff5780637550417614610b28576103fa565b80636ad8628c14610a015780636db7943714610a2c5780636fa4365814610a5557806370a0823114610a80576103fa565b80633d161d0f116103035780634fbee1931161029657806359829c251161026557806359829c251461092c5780635a30e5cf146109575780635d63bd6f1461098257806362622586146109ad578063664c4b1f146109d8576103fa565b80634fbee1931461087457806351cff8d9146108b15780635654d0b3146108da57806356a6cabf14610903576103fa565b806347062402116102d257806347062402146107c85780634814f20e146107f357806349bd5a5e1461081e5780634ada218b14610849576103fa565b80633d161d0f1461071e5780633ead55b21461074957806340c10f1914610774578063454c89411461079d576103fa565b806322dab4ec116103865780632ba86bf2116103555780632ba86bf2146106355780632c42835114610660578063313ce5671461068b57806336fdefd4146106b657806339509351146106e1576103fa565b806322dab4ec1461057757806323b872dd146105a25780632777c537146105df5780632b14ca561461060a576103fa565b80631529fbbf116103c25780631529fbbf146104b95780631694505e146104e457806318160ddd1461050f57806318d9ceae1461053a576103fa565b806306fdde03146103ff578063095ea7b31461042a5780630c699def14610467578063150c880c14610490576103fa565b366103fa57005b600080fd5b34801561040b57600080fd5b50610414610fb2565b6040516104219190613904565b60405180910390f35b34801561043657600080fd5b50610451600480360381019061044c91906139c4565b611044565b60405161045e9190613a1f565b60405180910390f35b34801561047357600080fd5b5061048e60048036038101906104899190613a3a565b611067565b005b34801561049c57600080fd5b506104b760048036038101906104b29190613a93565b611107565b005b3480156104c557600080fd5b506104ce61124a565b6040516104db9190613a1f565b60405180910390f35b3480156104f057600080fd5b506104f961125d565b6040516105069190613b32565b60405180910390f35b34801561051b57600080fd5b50610524611281565b6040516105319190613b5c565b60405180910390f35b34801561054657600080fd5b50610561600480360381019061055c9190613b77565b61128b565b60405161056e9190613a1f565b60405180910390f35b34801561058357600080fd5b5061058c6112e1565b6040516105999190613bc0565b60405180910390f35b3480156105ae57600080fd5b506105c960048036038101906105c49190613bdb565b6112e6565b6040516105d69190613a1f565b60405180910390f35b3480156105eb57600080fd5b506105f4611315565b6040516106019190613b5c565b60405180910390f35b34801561061657600080fd5b5061061f61131b565b60405161062c9190613b5c565b60405180910390f35b34801561064157600080fd5b5061064a611321565b6040516106579190613a1f565b60405180910390f35b34801561066c57600080fd5b50610675611334565b6040516106829190613c3d565b60405180910390f35b34801561069757600080fd5b506106a061135a565b6040516106ad9190613bc0565b60405180910390f35b3480156106c257600080fd5b506106cb611363565b6040516106d89190613c3d565b60405180910390f35b3480156106ed57600080fd5b50610708600480360381019061070391906139c4565b61137b565b6040516107159190613a1f565b60405180910390f35b34801561072a57600080fd5b506107336113b2565b6040516107409190613b5c565b60405180910390f35b34801561075557600080fd5b5061075e6113db565b60405161076b9190613b5c565b60405180910390f35b34801561078057600080fd5b5061079b600480360381019061079691906139c4565b6113e1565b005b3480156107a957600080fd5b506107b261140a565b6040516107bf9190613b5c565b60405180910390f35b3480156107d457600080fd5b506107dd611410565b6040516107ea9190613b5c565b60405180910390f35b3480156107ff57600080fd5b50610808611416565b6040516108159190613b5c565b60405180910390f35b34801561082a57600080fd5b50610833611442565b6040516108409190613c3d565b60405180910390f35b34801561085557600080fd5b5061085e611466565b60405161086b9190613a1f565b60405180910390f35b34801561088057600080fd5b5061089b60048036038101906108969190613b77565b611479565b6040516108a89190613a1f565b60405180910390f35b3480156108bd57600080fd5b506108d860048036038101906108d39190613b77565b6114cf565b005b3480156108e657600080fd5b5061090160048036038101906108fc9190613c58565b61158a565b005b34801561090f57600080fd5b5061092a60048036038101906109259190613c58565b61163b565b005b34801561093857600080fd5b506109416116fb565b60405161094e9190613bc0565b60405180910390f35b34801561096357600080fd5b5061096c611700565b6040516109799190613bc0565b60405180910390f35b34801561098e57600080fd5b50610997611705565b6040516109a49190613bc0565b60405180910390f35b3480156109b957600080fd5b506109c261170a565b6040516109cf9190613c9e565b60405180910390f35b3480156109e457600080fd5b506109ff60048036038101906109fa9190613b77565b611710565b005b348015610a0d57600080fd5b50610a1661188e565b604051610a239190613b5c565b60405180910390f35b348015610a3857600080fd5b50610a536004803603810190610a4e9190613cb9565b611898565b005b348015610a6157600080fd5b50610a6a611940565b604051610a779190613b5c565b60405180910390f35b348015610a8c57600080fd5b50610aa76004803603810190610aa29190613b77565b611950565b604051610ab49190613b5c565b60405180910390f35b348015610ac957600080fd5b50610ad2611998565b005b348015610ae057600080fd5b50610ae96119ac565b604051610af69190613c3d565b60405180910390f35b348015610b0b57600080fd5b50610b266004803603810190610b219190613d25565b6119c4565b005b348015610b3457600080fd5b50610b3d611a0d565b604051610b4a9190613b5c565b60405180910390f35b610b6d6004803603810190610b689190613db7565b611a13565b005b348015610b7b57600080fd5b50610b84611c20565b604051610b919190613e34565b60405180910390f35b348015610ba657600080fd5b50610baf611c26565b005b348015610bbd57600080fd5b50610bc6611cc3565b604051610bd39190613c3d565b60405180910390f35b348015610be857600080fd5b50610bf1611cdb565b604051610bfe9190613c3d565b60405180910390f35b348015610c1357600080fd5b50610c1c611d05565b604051610c299190613c3d565b60405180910390f35b348015610c3e57600080fd5b50610c596004803603810190610c549190613cb9565b611d1d565b005b348015610c6757600080fd5b50610c70611dc5565b604051610c7d9190613904565b60405180910390f35b348015610c9257600080fd5b50610c9b611e57565b604051610ca89190613c3d565b60405180910390f35b348015610cbd57600080fd5b50610cd86004803603810190610cd391906139c4565b611e6f565b604051610ce59190613a1f565b60405180910390f35b348015610cfa57600080fd5b50610d156004803603810190610d1091906139c4565b611ee6565b604051610d229190613a1f565b60405180910390f35b348015610d3757600080fd5b50610d40611f09565b604051610d4d9190613b5c565b60405180910390f35b610d706004803603810190610d6b9190613a3a565b611f32565b005b348015610d7e57600080fd5b50610d996004803603810190610d949190613b77565b612084565b604051610da69190613a1f565b60405180910390f35b610dc96004803603810190610dc49190613a3a565b6120a4565b005b348015610dd757600080fd5b50610df26004803603810190610ded9190613a93565b6121f6565b005b348015610e0057600080fd5b50610e09612339565b604051610e169190613c3d565b60405180910390f35b348015610e2b57600080fd5b50610e34612351565b604051610e419190613b5c565b60405180910390f35b348015610e5657600080fd5b50610e5f61235b565b604051610e6c9190613bc0565b60405180910390f35b348015610e8157600080fd5b50610e9c6004803603810190610e979190613e4f565b612360565b604051610ea99190613b5c565b60405180910390f35b348015610ebe57600080fd5b50610ec76123e7565b604051610ed49190613b5c565b60405180910390f35b348015610ee957600080fd5b50610ef26123f1565b604051610eff9190613bc0565b60405180910390f35b348015610f1457600080fd5b50610f1d6123f6565b604051610f2a9190613c3d565b60405180910390f35b348015610f3f57600080fd5b50610f4861240e565b604051610f559190613c3d565b60405180910390f35b348015610f6a57600080fd5b50610f856004803603810190610f809190613b77565b612426565b005b348015610f9357600080fd5b50610f9c6124a9565b604051610fa99190613bc0565b60405180910390f35b606060038054610fc190613ebe565b80601f0160208091040260200160405190810160405280929190818152602001828054610fed90613ebe565b801561103a5780601f1061100f5761010080835404028352916020019161103a565b820191906000526020600020905b81548152906001019060200180831161101d57829003601f168201915b5050505050905090565b60008061104f6124ae565b905061105c8185856124b6565b600191505092915050565b61106f61267f565b620186a061107b611281565b6110859190613f4d565b81116110c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110bd90614016565b60405180910390fd5b806015819055507f2cdfd66bd02345b98e6abe1fdc53950daca25f375c61f2e4357476720ea03836816040516110fc9190613b5c565b60405180910390a150565b61110f61267f565b801515600c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161515036111a1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611198906140a8565b60405180910390fd5b80600c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f8727c4afe988887760e8db0bbad9f9fcceee6428545956832f67c8fdbd589c108260405161123e9190613a1f565b60405180910390a25050565b601460009054906101000a900460ff1681565b7f000000000000000000000000000000000000000000000000000000000000000081565b6000600254905090565b6000600c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b601481565b6000806112f16124ae565b90506112fe8582856126fd565b611309858585612789565b60019150509392505050565b60075481565b60135481565b600f60009054906101000a900460ff1681565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60006012905090565b73ce1b665cbbe1b143e02889248be05fa86f0458fc81565b6000806113866124ae565b90506113a78185856113988589612360565b6113a291906140c8565b6124b6565b600191505092915050565b60006103e86010546113c2611281565b6113cc91906140fc565b6113d69190613f4d565b905090565b60085481565b6113e961267f565b61140682670de0b6b3a76400008361140191906140fc565b612e65565b5050565b60065481565b60125481565b6103e8606460ff166b019d971e4fe8401e7400000061143591906140fc565b61143f9190613f4d565b81565b7f000000000000000000000000000000000000000000000000000000000000000081565b600960149054906101000a900460ff1681565b6000600b60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b6114d761267f565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611546576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161153d9061418a565b60405180910390fd5b6115508147612fbb565b7ff67611512e0a2d90c96fd3f08dca4971bc45fba9dc679eabe839a32abbe58a8e8160405161157f9190613c3d565b60405180910390a150565b61159261267f565b801515601460009054906101000a900460ff161515036115e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115de90614242565b60405180910390fd5b80601460006101000a81548160ff0219169083151502179055507f589113d5d85b7b745e8ef67b4e4e6e7e1b55541543c0b7020643b174a5751abc816040516116309190613a1f565b60405180910390a150565b61164361267f565b600f60009054906101000a900460ff16151581151503611698576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161168f906142d4565b60405180910390fd5b80600f60006101000a81548160ff0219169083151502179055507fe81be35e61864c26afd7a4655e99f321378d0aaae1e5af8ee67b658a7460f3cf600f60009054906101000a900460ff166040516116f09190613a1f565b60405180910390a150565b606481565b607881565b606481565b600e5481565b61171861267f565b8073ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16036117a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161179f90614366565b60405180910390fd5b6117b1816130af565b156117f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117e8906143f8565b60405180910390fd5b80600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055507f19a6b3153bccab4fddb63cfe80bcd9a1cbe2f187d1d780470b1775db4595a056600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166040516118839190613c3d565b60405180910390a150565b651b48eb57e00081565b6118a061267f565b601482111580156118b25750601e8111155b6118f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118e89061448a565b60405180910390fd5b81601281905550806013819055507f5c6323bf1c2d7aaea2c091a4751c1c87af7f2864650c336507a77d0557af37a16012546013546040516119349291906144aa565b60405180910390a15050565b6b019d971e4fe8401e7400000081565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6119a061267f565b6119aa60006130d2565b565b7356f877f0bf4f8502c29afa4474692f8219c98bef81565b6119cc61267f565b80600e819055507fa91e877f7d755ede558cabdf8acc652cae387744251827e226815c18ec51ef9581604051611a029190613c9e565b60405180910390a150565b60155481565b600060065411611a58576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a4f90614545565b60405180910390fd5b600654670de0b6b3a764000082611a6f91906140fc565b1115611ab0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aa7906145d7565b60405180910390fd5b806512309ce54000611ac291906140fc565b341015611b04576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611afb90614643565b60405180910390fd5b600033604051602001611b1791906146ab565b604051602081830303815290604052805190602001209050611b7d848480806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050600e5483613198565b611bbc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bb390614712565b60405180910390fd5b611bee73ce1b665cbbe1b143e02889248be05fa86f0458fc33670de0b6b3a764000085611be991906140fc565b612789565b670de0b6b3a764000082611c0291906140fc565b60066000828254611c139190614732565b9250508190555050505050565b61015481565b611c2e61267f565b6000600a5414611c73576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c6a906147b2565b60405180910390fd5b42600a819055506001600960146101000a81548160ff0219169083151502179055507f1d97b7cdf6b6f3405cbe398b69512e5419a0ce78232b6e9c6ffbf1466774bd8d60405160405180910390a1565b73f9e347f9837a07c3b0778011db4720e252b7b6a081565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b7321e41d5efc9a5fc24d7212a0151bb18983c79dc481565b611d2561267f565b60018110158015611d37575060018210155b611d76576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d6d90614844565b60405180910390fd5b81601081905550806011819055507f2a88f79986e057b8152c19cea35cd214cf53364efbf95d5b22b37797c05be55f601054601154604051611db99291906144aa565b60405180910390a15050565b606060048054611dd490613ebe565b80601f0160208091040260200160405190810160405280929190818152602001828054611e0090613ebe565b8015611e4d5780601f10611e2257610100808354040283529160200191611e4d565b820191906000526020600020905b815481529060010190602001808311611e3057829003601f168201915b5050505050905090565b73e0fcfd2a0afe8c9f3707beb34291c518d2fc00cf81565b600080611e7a6124ae565b90506000611e888286612360565b905083811015611ecd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ec4906148d6565b60405180910390fd5b611eda82868684036124b6565b60019250505092915050565b600080611ef16124ae565b9050611efe818585612789565b600191505092915050565b60006103e8601154611f19611281565b611f2391906140fc565b611f2d9190613f4d565b905090565b600060085411611f77576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f6e90614942565b60405180910390fd5b600854670de0b6b3a764000082611f8e91906140fc565b1115611fcf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fc6906145d7565b60405180910390fd5b8065246139ca8000611fe191906140fc565b341015612023576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161201a90614643565b60405180910390fd5b61205573ce1b665cbbe1b143e02889248be05fa86f0458fc33670de0b6b3a76400008461205091906140fc565b612789565b670de0b6b3a76400008161206991906140fc565b6008600082825461207a9190614732565b9250508190555050565b600d6020528060005260406000206000915054906101000a900460ff1681565b6000600754116120e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120e0906149ae565b60405180910390fd5b600754670de0b6b3a76400008261210091906140fc565b1115612141576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612138906145d7565b60405180910390fd5b80651b48eb57e00061215391906140fc565b341015612195576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161218c90614643565b60405180910390fd5b6121c773ce1b665cbbe1b143e02889248be05fa86f0458fc33670de0b6b3a7640000846121c291906140fc565b612789565b670de0b6b3a7640000816121db91906140fc565b600760008282546121ec9190614732565b9250508190555050565b6121fe61267f565b801515600b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16151503612290576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161228790614a40565b60405180910390fd5b80600b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df78260405161232d9190613a1f565b60405180910390a25050565b7389b3fe584e4ea44115ffca6dd41b6621df8c37ec81565b6512309ce5400081565b601481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b65246139ca800081565b60e681565b73be3a59fd4cbed7d850f1f622f788bf16c8ca4bda81565b7339fc2c432ca5098301a97817af894d75685bc49681565b61242e61267f565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361249d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161249490614ad2565b60405180910390fd5b6124a6816130d2565b50565b604681565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612525576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161251c90614b64565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612594576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161258b90614bf6565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516126729190613b5c565b60405180910390a3505050565b6126876124ae565b73ffffffffffffffffffffffffffffffffffffffff166126a5611cdb565b73ffffffffffffffffffffffffffffffffffffffff16146126fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126f290614c62565b60405180910390fd5b565b60006127098484612360565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146127835781811015612775576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161276c90614cce565b60405180910390fd5b61278284848484036124b6565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036127f8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127ef90614d60565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612867576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161285e90614df2565b60405180910390fd5b600960149054906101000a900460ff16806128cb5750600b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b8061291f5750600b60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b61295e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161295590614e5e565b60405180910390fd5b6000810361297757612972838360006131af565b612e60565b600f60009054906101000a900460ff1615612b305760001515600c60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161515148015612a3c575060001515600c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161515145b15612b2f577f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612ae357612a9c6113b2565b811115612ade576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ad590614ef0565b60405180910390fd5b612b2e565b612aeb611f09565b811115612b2d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b2490614ef0565b60405180910390fd5b5b5b5b6000612b3b30611950565b905060006015548210159050808015612b615750601460019054906101000a900460ff16155b8015612bb65750600d60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b15612c23576001601460016101000a81548160ff021916908315150217905550600a601554612be591906140fc565b821115612bfe57600a601554612bfb91906140fc565b91505b612c0782613425565b6000601460016101000a81548160ff0219169083151502179055505b6000601460019054906101000a900460ff16159050600b60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680612cd95750600b60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b15612ce357600090505b601460009054906101000a900460ff168015612d4b57507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff1614155b8015612da357507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614155b15612dad57600090505b8015612e515760007f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff1603612e12576012549050612e18565b60135490505b60006103e88287612e2991906140fc565b612e339190613f4d565b90508086612e419190614732565b9550612e4e8830836131af565b50505b612e5c8686866131af565b5050505b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612ed4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ecb90614f5c565b60405180910390fd5b612ee0600083836136de565b8060026000828254612ef291906140c8565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051612fa39190613b5c565b60405180910390a3612fb7600083836136e3565b5050565b80471015612ffe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ff590614fc8565b60405180910390fd5b60008273ffffffffffffffffffffffffffffffffffffffff168260405161302490615019565b60006040518083038185875af1925050503d8060008114613061576040519150601f19603f3d011682016040523d82523d6000602084013e613066565b606091505b50509050806130aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130a1906150a0565b60405180910390fd5b505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000826131a585846136e8565b1490509392505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361321e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161321590614d60565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361328d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161328490614df2565b60405180910390fd5b6132988383836136de565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561331e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161331590615132565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161340c9190613b5c565b60405180910390a361341f8484846136e3565b50505050565b60004790506000600267ffffffffffffffff81111561344757613446615152565b5b6040519080825280602002602001820160405280156134755781602001602082028036833780820191505090505b509050308160008151811061348d5761348c615181565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015613532573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061355691906151c5565b8160018151811061356a57613569615181565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250506135cf307f0000000000000000000000000000000000000000000000000000000000000000856124b6565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663791ac9478460008430426040518663ffffffff1660e01b81526004016136319594939291906152eb565b600060405180830381600087803b15801561364b57600080fd5b505af115801561365f573d6000803e3d6000fd5b50505050600082476136719190614732565b905061369f600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff168261373e565b7f4397111d58b6a74fd2698dbcc020f85ddb11adba2fd86cdd40bd48e1c38d315584826040516136d09291906144aa565b60405180910390a150505050565b505050565b505050565b60008082905060005b84518110156137335761371e8286838151811061371157613710615181565b5b6020026020010151613832565b9150808061372b90615345565b9150506136f1565b508091505092915050565b80471015613781576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161377890614fc8565b60405180910390fd5b60008273ffffffffffffffffffffffffffffffffffffffff16826040516137a790615019565b60006040518083038185875af1925050503d80600081146137e4576040519150601f19603f3d011682016040523d82523d6000602084013e6137e9565b606091505b505090508061382d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613824906150a0565b60405180910390fd5b505050565b600081831061384a57613845828461385d565b613855565b613854838361385d565b5b905092915050565b600082600052816020526040600020905092915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156138ae578082015181840152602081019050613893565b60008484015250505050565b6000601f19601f8301169050919050565b60006138d682613874565b6138e0818561387f565b93506138f0818560208601613890565b6138f9816138ba565b840191505092915050565b6000602082019050818103600083015261391e81846138cb565b905092915050565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061395b82613930565b9050919050565b61396b81613950565b811461397657600080fd5b50565b60008135905061398881613962565b92915050565b6000819050919050565b6139a18161398e565b81146139ac57600080fd5b50565b6000813590506139be81613998565b92915050565b600080604083850312156139db576139da613926565b5b60006139e985828601613979565b92505060206139fa858286016139af565b9150509250929050565b60008115159050919050565b613a1981613a04565b82525050565b6000602082019050613a346000830184613a10565b92915050565b600060208284031215613a5057613a4f613926565b5b6000613a5e848285016139af565b91505092915050565b613a7081613a04565b8114613a7b57600080fd5b50565b600081359050613a8d81613a67565b92915050565b60008060408385031215613aaa57613aa9613926565b5b6000613ab885828601613979565b9250506020613ac985828601613a7e565b9150509250929050565b6000819050919050565b6000613af8613af3613aee84613930565b613ad3565b613930565b9050919050565b6000613b0a82613add565b9050919050565b6000613b1c82613aff565b9050919050565b613b2c81613b11565b82525050565b6000602082019050613b476000830184613b23565b92915050565b613b568161398e565b82525050565b6000602082019050613b716000830184613b4d565b92915050565b600060208284031215613b8d57613b8c613926565b5b6000613b9b84828501613979565b91505092915050565b600060ff82169050919050565b613bba81613ba4565b82525050565b6000602082019050613bd56000830184613bb1565b92915050565b600080600060608486031215613bf457613bf3613926565b5b6000613c0286828701613979565b9350506020613c1386828701613979565b9250506040613c24868287016139af565b9150509250925092565b613c3781613950565b82525050565b6000602082019050613c526000830184613c2e565b92915050565b600060208284031215613c6e57613c6d613926565b5b6000613c7c84828501613a7e565b91505092915050565b6000819050919050565b613c9881613c85565b82525050565b6000602082019050613cb36000830184613c8f565b92915050565b60008060408385031215613cd057613ccf613926565b5b6000613cde858286016139af565b9250506020613cef858286016139af565b9150509250929050565b613d0281613c85565b8114613d0d57600080fd5b50565b600081359050613d1f81613cf9565b92915050565b600060208284031215613d3b57613d3a613926565b5b6000613d4984828501613d10565b91505092915050565b600080fd5b600080fd5b600080fd5b60008083601f840112613d7757613d76613d52565b5b8235905067ffffffffffffffff811115613d9457613d93613d57565b5b602083019150836020820283011115613db057613daf613d5c565b5b9250929050565b600080600060408486031215613dd057613dcf613926565b5b600084013567ffffffffffffffff811115613dee57613ded61392b565b5b613dfa86828701613d61565b93509350506020613e0d868287016139af565b9150509250925092565b600061ffff82169050919050565b613e2e81613e17565b82525050565b6000602082019050613e496000830184613e25565b92915050565b60008060408385031215613e6657613e65613926565b5b6000613e7485828601613979565b9250506020613e8585828601613979565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680613ed657607f821691505b602082108103613ee957613ee8613e8f565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000613f588261398e565b9150613f638361398e565b925082613f7357613f72613eef565b5b828204905092915050565b7f537761707061626c65546f6b656e416d6f756e7441744f6e6365206d7573742060008201527f62652067726561746572207468616e20302e30303125206f6620746f74616c2060208201527f737570706c790000000000000000000000000000000000000000000000000000604082015250565b600061400060468361387f565b915061400b82613f7e565b606082019050919050565b6000602082019050818103600083015261402f81613ff3565b9050919050565b7f4163636f756e7420697320616c72656164792073657420746f2074686174207360008201527f7461746500000000000000000000000000000000000000000000000000000000602082015250565b600061409260248361387f565b915061409d82614036565b604082019050919050565b600060208201905081810360008301526140c181614085565b9050919050565b60006140d38261398e565b91506140de8361398e565b92508282019050808211156140f6576140f5613f1e565b5b92915050565b60006141078261398e565b91506141128361398e565b92508282026141208161398e565b9150828204841483151761413757614136613f1e565b5b5092915050565b7f496e76616c69642077616c6c6574206164647265737300000000000000000000600082015250565b600061417460168361387f565b915061417f8261413e565b602082019050919050565b600060208201905081810360008301526141a381614167565b9050919050565b7f57616c6c657420746f2077616c6c6574207472616e7366657220776974686f7560008201527f742066656520697320616c72656164792073657420746f20746861742076616c60208201527f7565000000000000000000000000000000000000000000000000000000000000604082015250565b600061422c60428361387f565b9150614237826141aa565b606082019050919050565b6000602082019050818103600083015261425b8161421f565b9050919050565b7f4d6178207472616e73616374696f6e206c696d697420697320616c726561647960008201527f2074686174207374617465000000000000000000000000000000000000000000602082015250565b60006142be602b8361387f565b91506142c982614262565b604082019050919050565b600060208201905081810360008301526142ed816142b1565b9050919050565b7f4d61726b6574696e672077616c6c657420697320616c7265616479207468617460008201527f2061646472657373000000000000000000000000000000000000000000000000602082015250565b600061435060288361387f565b915061435b826142f4565b604082019050919050565b6000602082019050818103600083015261437f81614343565b9050919050565b7f4d61726b6574696e672077616c6c65742063616e6e6f74206265206120636f6e60008201527f7472616374000000000000000000000000000000000000000000000000000000602082015250565b60006143e260258361387f565b91506143ed82614386565b604082019050919050565b60006020820190508181036000830152614411816143d5565b9050919050565b7f4d6178206275792066656520697320322520616e64206d61782073656c6c206660008201527f65652069732033252e0000000000000000000000000000000000000000000000602082015250565b600061447460298361387f565b915061447f82614418565b604082019050919050565b600060208201905081810360008301526144a381614467565b9050919050565b60006040820190506144bf6000830185613b4d565b6144cc6020830184613b4d565b9392505050565b7f5468652073616c6520666f7220706172746e657273207761732066696e69736860008201527f65642e0000000000000000000000000000000000000000000000000000000000602082015250565b600061452f60238361387f565b915061453a826144d3565b604082019050919050565b6000602082019050818103600083015261455e81614522565b9050919050565b7f526571756972656420616d6f756e74206973206f766572206f66206d696e746160008201527f626c6520616d6f756e742e000000000000000000000000000000000000000000602082015250565b60006145c1602b8361387f565b91506145cc82614565565b604082019050919050565b600060208201905081810360008301526145f0816145b4565b9050919050565b7f4e6f7420456e6f7567682046756e647300000000000000000000000000000000600082015250565b600061462d60108361387f565b9150614638826145f7565b602082019050919050565b6000602082019050818103600083015261465c81614620565b9050919050565b60008160601b9050919050565b600061467b82614663565b9050919050565b600061468d82614670565b9050919050565b6146a56146a082613950565b614682565b82525050565b60006146b78284614694565b60148201915081905092915050565b7f596f7520617265206e6f74206f757220706172746e65722e0000000000000000600082015250565b60006146fc60188361387f565b9150614707826146c6565b602082019050919050565b6000602082019050818103600083015261472b816146ef565b9050919050565b600061473d8261398e565b91506147488361398e565b92508282039050818111156147605761475f613f1e565b5b92915050565b7f54726164696e6720616c726561647920656e61626c6564000000000000000000600082015250565b600061479c60178361387f565b91506147a782614766565b602082019050919050565b600060208201905081810360008301526147cb8161478f565b9050919050565b7f4d6178205472616e73616374696f6e206c696d69742063616e6e6f742062652060008201527f6c6f776572207468616e20302e3125206f6620746f74616c20737570706c7900602082015250565b600061482e603f8361387f565b9150614839826147d2565b604082019050919050565b6000602082019050818103600083015261485d81614821565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b60006148c060258361387f565b91506148cb82614864565b604082019050919050565b600060208201905081810360008301526148ef816148b3565b9050919050565b7f546865207075626c69632073616c65207761732066696e69736865642e000000600082015250565b600061492c601d8361387f565b9150614937826148f6565b602082019050919050565b6000602082019050818103600083015261495b8161491f565b9050919050565b7f54686520707269766174652073616c65207761732066696e69736865642e0000600082015250565b6000614998601e8361387f565b91506149a382614962565b602082019050919050565b600060208201905081810360008301526149c78161498b565b9050919050565b7f4163636f756e7420697320616c7265616479207468652076616c7565206f662060008201527f276578636c756465642700000000000000000000000000000000000000000000602082015250565b6000614a2a602a8361387f565b9150614a35826149ce565b604082019050919050565b60006020820190508181036000830152614a5981614a1d565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000614abc60268361387f565b9150614ac782614a60565b604082019050919050565b60006020820190508181036000830152614aeb81614aaf565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000614b4e60248361387f565b9150614b5982614af2565b604082019050919050565b60006020820190508181036000830152614b7d81614b41565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000614be060228361387f565b9150614beb82614b84565b604082019050919050565b60006020820190508181036000830152614c0f81614bd3565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000614c4c60208361387f565b9150614c5782614c16565b602082019050919050565b60006020820190508181036000830152614c7b81614c3f565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000614cb8601d8361387f565b9150614cc382614c82565b602082019050919050565b60006020820190508181036000830152614ce781614cab565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000614d4a60258361387f565b9150614d5582614cee565b604082019050919050565b60006020820190508181036000830152614d7981614d3d565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000614ddc60238361387f565b9150614de782614d80565b604082019050919050565b60006020820190508181036000830152614e0b81614dcf565b9050919050565b7f54726164696e67206973206e6f7420656e61626c656420796574000000000000600082015250565b6000614e48601a8361387f565b9150614e5382614e12565b602082019050919050565b60006020820190508181036000830152614e7781614e3b565b9050919050565b7f416e74695768616c653a205472616e7366657220616d6f756e7420657863656560008201527f647320746865206d61785472616e73666572416d6f756e740000000000000000602082015250565b6000614eda60388361387f565b9150614ee582614e7e565b604082019050919050565b60006020820190508181036000830152614f0981614ecd565b9050919050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b6000614f46601f8361387f565b9150614f5182614f10565b602082019050919050565b60006020820190508181036000830152614f7581614f39565b9050919050565b7f416464726573733a20696e73756666696369656e742062616c616e6365000000600082015250565b6000614fb2601d8361387f565b9150614fbd82614f7c565b602082019050919050565b60006020820190508181036000830152614fe181614fa5565b9050919050565b600081905092915050565b50565b6000615003600083614fe8565b915061500e82614ff3565b600082019050919050565b600061502482614ff6565b9150819050919050565b7f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260008201527f6563697069656e74206d61792068617665207265766572746564000000000000602082015250565b600061508a603a8361387f565b91506150958261502e565b604082019050919050565b600060208201905081810360008301526150b98161507d565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b600061511c60268361387f565b9150615127826150c0565b604082019050919050565b6000602082019050818103600083015261514b8161510f565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000815190506151bf81613962565b92915050565b6000602082840312156151db576151da613926565b5b60006151e9848285016151b0565b91505092915050565b6000819050919050565b600061521761521261520d846151f2565b613ad3565b61398e565b9050919050565b615227816151fc565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b61526281613950565b82525050565b60006152748383615259565b60208301905092915050565b6000602082019050919050565b60006152988261522d565b6152a28185615238565b93506152ad83615249565b8060005b838110156152de5781516152c58882615268565b97506152d083615280565b9250506001810190506152b1565b5085935050505092915050565b600060a0820190506153006000830188613b4d565b61530d602083018761521e565b818103604083015261531f818661528d565b905061532e6060830185613c2e565b61533b6080830184613b4d565b9695505050505050565b60006153508261398e565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff820361538257615381613f1e565b5b60018201905091905056fea264697066735822122014c316c32e24804b19ab6fb2c4e66f12669204615c860ab6ade240b711a0f00064736f6c63430008130033

Deployed Bytecode

0x6080604052600436106103f35760003560e01c80636ad8628c11610208578063a457c2d711610118578063cc02cc0b116100ab578063e9d620de1161007a578063e9d620de14610edd578063eae7eb1314610f08578063f10553d214610f33578063f2fde38b14610f5e578063f79da68e14610f87576103fa565b8063cc02cc0b14610e1f578063ce27f07014610e4a578063dd62ed3e14610e75578063e7434b6c14610eb2576103fa565b8063b62496f5116100e7578063b62496f514610d72578063b8d59a6514610daf578063c024666814610dcb578063c473d61914610df4576103fa565b8063a457c2d714610cb1578063a9059cbb14610cee578063a9e7572314610d2b578063b287c8ed14610d56576103fa565b8063797002681161019b5780638da5cb5b1161016a5780638da5cb5b14610bdc578063925f709d14610c0757806394afa8a114610c3257806395d89b4114610c5b578063988733ae14610c86576103fa565b80637970026814610b53578063818fdf3e14610b6f5780638a8c523c14610b9a5780638c10769314610bb1576103fa565b8063715018a6116101d7578063715018a614610abd57806371dd594114610ad457806372bd215b14610aff5780637550417614610b28576103fa565b80636ad8628c14610a015780636db7943714610a2c5780636fa4365814610a5557806370a0823114610a80576103fa565b80633d161d0f116103035780634fbee1931161029657806359829c251161026557806359829c251461092c5780635a30e5cf146109575780635d63bd6f1461098257806362622586146109ad578063664c4b1f146109d8576103fa565b80634fbee1931461087457806351cff8d9146108b15780635654d0b3146108da57806356a6cabf14610903576103fa565b806347062402116102d257806347062402146107c85780634814f20e146107f357806349bd5a5e1461081e5780634ada218b14610849576103fa565b80633d161d0f1461071e5780633ead55b21461074957806340c10f1914610774578063454c89411461079d576103fa565b806322dab4ec116103865780632ba86bf2116103555780632ba86bf2146106355780632c42835114610660578063313ce5671461068b57806336fdefd4146106b657806339509351146106e1576103fa565b806322dab4ec1461057757806323b872dd146105a25780632777c537146105df5780632b14ca561461060a576103fa565b80631529fbbf116103c25780631529fbbf146104b95780631694505e146104e457806318160ddd1461050f57806318d9ceae1461053a576103fa565b806306fdde03146103ff578063095ea7b31461042a5780630c699def14610467578063150c880c14610490576103fa565b366103fa57005b600080fd5b34801561040b57600080fd5b50610414610fb2565b6040516104219190613904565b60405180910390f35b34801561043657600080fd5b50610451600480360381019061044c91906139c4565b611044565b60405161045e9190613a1f565b60405180910390f35b34801561047357600080fd5b5061048e60048036038101906104899190613a3a565b611067565b005b34801561049c57600080fd5b506104b760048036038101906104b29190613a93565b611107565b005b3480156104c557600080fd5b506104ce61124a565b6040516104db9190613a1f565b60405180910390f35b3480156104f057600080fd5b506104f961125d565b6040516105069190613b32565b60405180910390f35b34801561051b57600080fd5b50610524611281565b6040516105319190613b5c565b60405180910390f35b34801561054657600080fd5b50610561600480360381019061055c9190613b77565b61128b565b60405161056e9190613a1f565b60405180910390f35b34801561058357600080fd5b5061058c6112e1565b6040516105999190613bc0565b60405180910390f35b3480156105ae57600080fd5b506105c960048036038101906105c49190613bdb565b6112e6565b6040516105d69190613a1f565b60405180910390f35b3480156105eb57600080fd5b506105f4611315565b6040516106019190613b5c565b60405180910390f35b34801561061657600080fd5b5061061f61131b565b60405161062c9190613b5c565b60405180910390f35b34801561064157600080fd5b5061064a611321565b6040516106579190613a1f565b60405180910390f35b34801561066c57600080fd5b50610675611334565b6040516106829190613c3d565b60405180910390f35b34801561069757600080fd5b506106a061135a565b6040516106ad9190613bc0565b60405180910390f35b3480156106c257600080fd5b506106cb611363565b6040516106d89190613c3d565b60405180910390f35b3480156106ed57600080fd5b50610708600480360381019061070391906139c4565b61137b565b6040516107159190613a1f565b60405180910390f35b34801561072a57600080fd5b506107336113b2565b6040516107409190613b5c565b60405180910390f35b34801561075557600080fd5b5061075e6113db565b60405161076b9190613b5c565b60405180910390f35b34801561078057600080fd5b5061079b600480360381019061079691906139c4565b6113e1565b005b3480156107a957600080fd5b506107b261140a565b6040516107bf9190613b5c565b60405180910390f35b3480156107d457600080fd5b506107dd611410565b6040516107ea9190613b5c565b60405180910390f35b3480156107ff57600080fd5b50610808611416565b6040516108159190613b5c565b60405180910390f35b34801561082a57600080fd5b50610833611442565b6040516108409190613c3d565b60405180910390f35b34801561085557600080fd5b5061085e611466565b60405161086b9190613a1f565b60405180910390f35b34801561088057600080fd5b5061089b60048036038101906108969190613b77565b611479565b6040516108a89190613a1f565b60405180910390f35b3480156108bd57600080fd5b506108d860048036038101906108d39190613b77565b6114cf565b005b3480156108e657600080fd5b5061090160048036038101906108fc9190613c58565b61158a565b005b34801561090f57600080fd5b5061092a60048036038101906109259190613c58565b61163b565b005b34801561093857600080fd5b506109416116fb565b60405161094e9190613bc0565b60405180910390f35b34801561096357600080fd5b5061096c611700565b6040516109799190613bc0565b60405180910390f35b34801561098e57600080fd5b50610997611705565b6040516109a49190613bc0565b60405180910390f35b3480156109b957600080fd5b506109c261170a565b6040516109cf9190613c9e565b60405180910390f35b3480156109e457600080fd5b506109ff60048036038101906109fa9190613b77565b611710565b005b348015610a0d57600080fd5b50610a1661188e565b604051610a239190613b5c565b60405180910390f35b348015610a3857600080fd5b50610a536004803603810190610a4e9190613cb9565b611898565b005b348015610a6157600080fd5b50610a6a611940565b604051610a779190613b5c565b60405180910390f35b348015610a8c57600080fd5b50610aa76004803603810190610aa29190613b77565b611950565b604051610ab49190613b5c565b60405180910390f35b348015610ac957600080fd5b50610ad2611998565b005b348015610ae057600080fd5b50610ae96119ac565b604051610af69190613c3d565b60405180910390f35b348015610b0b57600080fd5b50610b266004803603810190610b219190613d25565b6119c4565b005b348015610b3457600080fd5b50610b3d611a0d565b604051610b4a9190613b5c565b60405180910390f35b610b6d6004803603810190610b689190613db7565b611a13565b005b348015610b7b57600080fd5b50610b84611c20565b604051610b919190613e34565b60405180910390f35b348015610ba657600080fd5b50610baf611c26565b005b348015610bbd57600080fd5b50610bc6611cc3565b604051610bd39190613c3d565b60405180910390f35b348015610be857600080fd5b50610bf1611cdb565b604051610bfe9190613c3d565b60405180910390f35b348015610c1357600080fd5b50610c1c611d05565b604051610c299190613c3d565b60405180910390f35b348015610c3e57600080fd5b50610c596004803603810190610c549190613cb9565b611d1d565b005b348015610c6757600080fd5b50610c70611dc5565b604051610c7d9190613904565b60405180910390f35b348015610c9257600080fd5b50610c9b611e57565b604051610ca89190613c3d565b60405180910390f35b348015610cbd57600080fd5b50610cd86004803603810190610cd391906139c4565b611e6f565b604051610ce59190613a1f565b60405180910390f35b348015610cfa57600080fd5b50610d156004803603810190610d1091906139c4565b611ee6565b604051610d229190613a1f565b60405180910390f35b348015610d3757600080fd5b50610d40611f09565b604051610d4d9190613b5c565b60405180910390f35b610d706004803603810190610d6b9190613a3a565b611f32565b005b348015610d7e57600080fd5b50610d996004803603810190610d949190613b77565b612084565b604051610da69190613a1f565b60405180910390f35b610dc96004803603810190610dc49190613a3a565b6120a4565b005b348015610dd757600080fd5b50610df26004803603810190610ded9190613a93565b6121f6565b005b348015610e0057600080fd5b50610e09612339565b604051610e169190613c3d565b60405180910390f35b348015610e2b57600080fd5b50610e34612351565b604051610e419190613b5c565b60405180910390f35b348015610e5657600080fd5b50610e5f61235b565b604051610e6c9190613bc0565b60405180910390f35b348015610e8157600080fd5b50610e9c6004803603810190610e979190613e4f565b612360565b604051610ea99190613b5c565b60405180910390f35b348015610ebe57600080fd5b50610ec76123e7565b604051610ed49190613b5c565b60405180910390f35b348015610ee957600080fd5b50610ef26123f1565b604051610eff9190613bc0565b60405180910390f35b348015610f1457600080fd5b50610f1d6123f6565b604051610f2a9190613c3d565b60405180910390f35b348015610f3f57600080fd5b50610f4861240e565b604051610f559190613c3d565b60405180910390f35b348015610f6a57600080fd5b50610f856004803603810190610f809190613b77565b612426565b005b348015610f9357600080fd5b50610f9c6124a9565b604051610fa99190613bc0565b60405180910390f35b606060038054610fc190613ebe565b80601f0160208091040260200160405190810160405280929190818152602001828054610fed90613ebe565b801561103a5780601f1061100f5761010080835404028352916020019161103a565b820191906000526020600020905b81548152906001019060200180831161101d57829003601f168201915b5050505050905090565b60008061104f6124ae565b905061105c8185856124b6565b600191505092915050565b61106f61267f565b620186a061107b611281565b6110859190613f4d565b81116110c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110bd90614016565b60405180910390fd5b806015819055507f2cdfd66bd02345b98e6abe1fdc53950daca25f375c61f2e4357476720ea03836816040516110fc9190613b5c565b60405180910390a150565b61110f61267f565b801515600c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161515036111a1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611198906140a8565b60405180910390fd5b80600c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f8727c4afe988887760e8db0bbad9f9fcceee6428545956832f67c8fdbd589c108260405161123e9190613a1f565b60405180910390a25050565b601460009054906101000a900460ff1681565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6000600254905090565b6000600c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b601481565b6000806112f16124ae565b90506112fe8582856126fd565b611309858585612789565b60019150509392505050565b60075481565b60135481565b600f60009054906101000a900460ff1681565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60006012905090565b73ce1b665cbbe1b143e02889248be05fa86f0458fc81565b6000806113866124ae565b90506113a78185856113988589612360565b6113a291906140c8565b6124b6565b600191505092915050565b60006103e86010546113c2611281565b6113cc91906140fc565b6113d69190613f4d565b905090565b60085481565b6113e961267f565b61140682670de0b6b3a76400008361140191906140fc565b612e65565b5050565b60065481565b60125481565b6103e8606460ff166b019d971e4fe8401e7400000061143591906140fc565b61143f9190613f4d565b81565b7f000000000000000000000000afb1381ed4721ead2e679a13834b703fa050c33381565b600960149054906101000a900460ff1681565b6000600b60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b6114d761267f565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611546576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161153d9061418a565b60405180910390fd5b6115508147612fbb565b7ff67611512e0a2d90c96fd3f08dca4971bc45fba9dc679eabe839a32abbe58a8e8160405161157f9190613c3d565b60405180910390a150565b61159261267f565b801515601460009054906101000a900460ff161515036115e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115de90614242565b60405180910390fd5b80601460006101000a81548160ff0219169083151502179055507f589113d5d85b7b745e8ef67b4e4e6e7e1b55541543c0b7020643b174a5751abc816040516116309190613a1f565b60405180910390a150565b61164361267f565b600f60009054906101000a900460ff16151581151503611698576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161168f906142d4565b60405180910390fd5b80600f60006101000a81548160ff0219169083151502179055507fe81be35e61864c26afd7a4655e99f321378d0aaae1e5af8ee67b658a7460f3cf600f60009054906101000a900460ff166040516116f09190613a1f565b60405180910390a150565b606481565b607881565b606481565b600e5481565b61171861267f565b8073ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16036117a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161179f90614366565b60405180910390fd5b6117b1816130af565b156117f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117e8906143f8565b60405180910390fd5b80600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055507f19a6b3153bccab4fddb63cfe80bcd9a1cbe2f187d1d780470b1775db4595a056600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166040516118839190613c3d565b60405180910390a150565b651b48eb57e00081565b6118a061267f565b601482111580156118b25750601e8111155b6118f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118e89061448a565b60405180910390fd5b81601281905550806013819055507f5c6323bf1c2d7aaea2c091a4751c1c87af7f2864650c336507a77d0557af37a16012546013546040516119349291906144aa565b60405180910390a15050565b6b019d971e4fe8401e7400000081565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6119a061267f565b6119aa60006130d2565b565b7356f877f0bf4f8502c29afa4474692f8219c98bef81565b6119cc61267f565b80600e819055507fa91e877f7d755ede558cabdf8acc652cae387744251827e226815c18ec51ef9581604051611a029190613c9e565b60405180910390a150565b60155481565b600060065411611a58576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a4f90614545565b60405180910390fd5b600654670de0b6b3a764000082611a6f91906140fc565b1115611ab0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aa7906145d7565b60405180910390fd5b806512309ce54000611ac291906140fc565b341015611b04576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611afb90614643565b60405180910390fd5b600033604051602001611b1791906146ab565b604051602081830303815290604052805190602001209050611b7d848480806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050600e5483613198565b611bbc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bb390614712565b60405180910390fd5b611bee73ce1b665cbbe1b143e02889248be05fa86f0458fc33670de0b6b3a764000085611be991906140fc565b612789565b670de0b6b3a764000082611c0291906140fc565b60066000828254611c139190614732565b9250508190555050505050565b61015481565b611c2e61267f565b6000600a5414611c73576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c6a906147b2565b60405180910390fd5b42600a819055506001600960146101000a81548160ff0219169083151502179055507f1d97b7cdf6b6f3405cbe398b69512e5419a0ce78232b6e9c6ffbf1466774bd8d60405160405180910390a1565b73f9e347f9837a07c3b0778011db4720e252b7b6a081565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b7321e41d5efc9a5fc24d7212a0151bb18983c79dc481565b611d2561267f565b60018110158015611d37575060018210155b611d76576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d6d90614844565b60405180910390fd5b81601081905550806011819055507f2a88f79986e057b8152c19cea35cd214cf53364efbf95d5b22b37797c05be55f601054601154604051611db99291906144aa565b60405180910390a15050565b606060048054611dd490613ebe565b80601f0160208091040260200160405190810160405280929190818152602001828054611e0090613ebe565b8015611e4d5780601f10611e2257610100808354040283529160200191611e4d565b820191906000526020600020905b815481529060010190602001808311611e3057829003601f168201915b5050505050905090565b73e0fcfd2a0afe8c9f3707beb34291c518d2fc00cf81565b600080611e7a6124ae565b90506000611e888286612360565b905083811015611ecd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ec4906148d6565b60405180910390fd5b611eda82868684036124b6565b60019250505092915050565b600080611ef16124ae565b9050611efe818585612789565b600191505092915050565b60006103e8601154611f19611281565b611f2391906140fc565b611f2d9190613f4d565b905090565b600060085411611f77576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f6e90614942565b60405180910390fd5b600854670de0b6b3a764000082611f8e91906140fc565b1115611fcf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fc6906145d7565b60405180910390fd5b8065246139ca8000611fe191906140fc565b341015612023576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161201a90614643565b60405180910390fd5b61205573ce1b665cbbe1b143e02889248be05fa86f0458fc33670de0b6b3a76400008461205091906140fc565b612789565b670de0b6b3a76400008161206991906140fc565b6008600082825461207a9190614732565b9250508190555050565b600d6020528060005260406000206000915054906101000a900460ff1681565b6000600754116120e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120e0906149ae565b60405180910390fd5b600754670de0b6b3a76400008261210091906140fc565b1115612141576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612138906145d7565b60405180910390fd5b80651b48eb57e00061215391906140fc565b341015612195576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161218c90614643565b60405180910390fd5b6121c773ce1b665cbbe1b143e02889248be05fa86f0458fc33670de0b6b3a7640000846121c291906140fc565b612789565b670de0b6b3a7640000816121db91906140fc565b600760008282546121ec9190614732565b9250508190555050565b6121fe61267f565b801515600b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16151503612290576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161228790614a40565b60405180910390fd5b80600b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df78260405161232d9190613a1f565b60405180910390a25050565b7389b3fe584e4ea44115ffca6dd41b6621df8c37ec81565b6512309ce5400081565b601481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b65246139ca800081565b60e681565b73be3a59fd4cbed7d850f1f622f788bf16c8ca4bda81565b7339fc2c432ca5098301a97817af894d75685bc49681565b61242e61267f565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361249d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161249490614ad2565b60405180910390fd5b6124a6816130d2565b50565b604681565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612525576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161251c90614b64565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612594576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161258b90614bf6565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516126729190613b5c565b60405180910390a3505050565b6126876124ae565b73ffffffffffffffffffffffffffffffffffffffff166126a5611cdb565b73ffffffffffffffffffffffffffffffffffffffff16146126fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126f290614c62565b60405180910390fd5b565b60006127098484612360565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146127835781811015612775576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161276c90614cce565b60405180910390fd5b61278284848484036124b6565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036127f8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127ef90614d60565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612867576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161285e90614df2565b60405180910390fd5b600960149054906101000a900460ff16806128cb5750600b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b8061291f5750600b60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b61295e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161295590614e5e565b60405180910390fd5b6000810361297757612972838360006131af565b612e60565b600f60009054906101000a900460ff1615612b305760001515600c60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161515148015612a3c575060001515600c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161515145b15612b2f577f000000000000000000000000afb1381ed4721ead2e679a13834b703fa050c33373ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612ae357612a9c6113b2565b811115612ade576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ad590614ef0565b60405180910390fd5b612b2e565b612aeb611f09565b811115612b2d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b2490614ef0565b60405180910390fd5b5b5b5b6000612b3b30611950565b905060006015548210159050808015612b615750601460019054906101000a900460ff16155b8015612bb65750600d60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b15612c23576001601460016101000a81548160ff021916908315150217905550600a601554612be591906140fc565b821115612bfe57600a601554612bfb91906140fc565b91505b612c0782613425565b6000601460016101000a81548160ff0219169083151502179055505b6000601460019054906101000a900460ff16159050600b60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680612cd95750600b60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b15612ce357600090505b601460009054906101000a900460ff168015612d4b57507f000000000000000000000000afb1381ed4721ead2e679a13834b703fa050c33373ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff1614155b8015612da357507f000000000000000000000000afb1381ed4721ead2e679a13834b703fa050c33373ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614155b15612dad57600090505b8015612e515760007f000000000000000000000000afb1381ed4721ead2e679a13834b703fa050c33373ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff1603612e12576012549050612e18565b60135490505b60006103e88287612e2991906140fc565b612e339190613f4d565b90508086612e419190614732565b9550612e4e8830836131af565b50505b612e5c8686866131af565b5050505b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612ed4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ecb90614f5c565b60405180910390fd5b612ee0600083836136de565b8060026000828254612ef291906140c8565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051612fa39190613b5c565b60405180910390a3612fb7600083836136e3565b5050565b80471015612ffe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ff590614fc8565b60405180910390fd5b60008273ffffffffffffffffffffffffffffffffffffffff168260405161302490615019565b60006040518083038185875af1925050503d8060008114613061576040519150601f19603f3d011682016040523d82523d6000602084013e613066565b606091505b50509050806130aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130a1906150a0565b60405180910390fd5b505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000826131a585846136e8565b1490509392505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361321e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161321590614d60565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361328d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161328490614df2565b60405180910390fd5b6132988383836136de565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561331e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161331590615132565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161340c9190613b5c565b60405180910390a361341f8484846136e3565b50505050565b60004790506000600267ffffffffffffffff81111561344757613446615152565b5b6040519080825280602002602001820160405280156134755781602001602082028036833780820191505090505b509050308160008151811061348d5761348c615181565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015613532573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061355691906151c5565b8160018151811061356a57613569615181565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250506135cf307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d856124b6565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663791ac9478460008430426040518663ffffffff1660e01b81526004016136319594939291906152eb565b600060405180830381600087803b15801561364b57600080fd5b505af115801561365f573d6000803e3d6000fd5b50505050600082476136719190614732565b905061369f600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff168261373e565b7f4397111d58b6a74fd2698dbcc020f85ddb11adba2fd86cdd40bd48e1c38d315584826040516136d09291906144aa565b60405180910390a150505050565b505050565b505050565b60008082905060005b84518110156137335761371e8286838151811061371157613710615181565b5b6020026020010151613832565b9150808061372b90615345565b9150506136f1565b508091505092915050565b80471015613781576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161377890614fc8565b60405180910390fd5b60008273ffffffffffffffffffffffffffffffffffffffff16826040516137a790615019565b60006040518083038185875af1925050503d80600081146137e4576040519150601f19603f3d011682016040523d82523d6000602084013e6137e9565b606091505b505090508061382d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613824906150a0565b60405180910390fd5b505050565b600081831061384a57613845828461385d565b613855565b613854838361385d565b5b905092915050565b600082600052816020526040600020905092915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156138ae578082015181840152602081019050613893565b60008484015250505050565b6000601f19601f8301169050919050565b60006138d682613874565b6138e0818561387f565b93506138f0818560208601613890565b6138f9816138ba565b840191505092915050565b6000602082019050818103600083015261391e81846138cb565b905092915050565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061395b82613930565b9050919050565b61396b81613950565b811461397657600080fd5b50565b60008135905061398881613962565b92915050565b6000819050919050565b6139a18161398e565b81146139ac57600080fd5b50565b6000813590506139be81613998565b92915050565b600080604083850312156139db576139da613926565b5b60006139e985828601613979565b92505060206139fa858286016139af565b9150509250929050565b60008115159050919050565b613a1981613a04565b82525050565b6000602082019050613a346000830184613a10565b92915050565b600060208284031215613a5057613a4f613926565b5b6000613a5e848285016139af565b91505092915050565b613a7081613a04565b8114613a7b57600080fd5b50565b600081359050613a8d81613a67565b92915050565b60008060408385031215613aaa57613aa9613926565b5b6000613ab885828601613979565b9250506020613ac985828601613a7e565b9150509250929050565b6000819050919050565b6000613af8613af3613aee84613930565b613ad3565b613930565b9050919050565b6000613b0a82613add565b9050919050565b6000613b1c82613aff565b9050919050565b613b2c81613b11565b82525050565b6000602082019050613b476000830184613b23565b92915050565b613b568161398e565b82525050565b6000602082019050613b716000830184613b4d565b92915050565b600060208284031215613b8d57613b8c613926565b5b6000613b9b84828501613979565b91505092915050565b600060ff82169050919050565b613bba81613ba4565b82525050565b6000602082019050613bd56000830184613bb1565b92915050565b600080600060608486031215613bf457613bf3613926565b5b6000613c0286828701613979565b9350506020613c1386828701613979565b9250506040613c24868287016139af565b9150509250925092565b613c3781613950565b82525050565b6000602082019050613c526000830184613c2e565b92915050565b600060208284031215613c6e57613c6d613926565b5b6000613c7c84828501613a7e565b91505092915050565b6000819050919050565b613c9881613c85565b82525050565b6000602082019050613cb36000830184613c8f565b92915050565b60008060408385031215613cd057613ccf613926565b5b6000613cde858286016139af565b9250506020613cef858286016139af565b9150509250929050565b613d0281613c85565b8114613d0d57600080fd5b50565b600081359050613d1f81613cf9565b92915050565b600060208284031215613d3b57613d3a613926565b5b6000613d4984828501613d10565b91505092915050565b600080fd5b600080fd5b600080fd5b60008083601f840112613d7757613d76613d52565b5b8235905067ffffffffffffffff811115613d9457613d93613d57565b5b602083019150836020820283011115613db057613daf613d5c565b5b9250929050565b600080600060408486031215613dd057613dcf613926565b5b600084013567ffffffffffffffff811115613dee57613ded61392b565b5b613dfa86828701613d61565b93509350506020613e0d868287016139af565b9150509250925092565b600061ffff82169050919050565b613e2e81613e17565b82525050565b6000602082019050613e496000830184613e25565b92915050565b60008060408385031215613e6657613e65613926565b5b6000613e7485828601613979565b9250506020613e8585828601613979565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680613ed657607f821691505b602082108103613ee957613ee8613e8f565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000613f588261398e565b9150613f638361398e565b925082613f7357613f72613eef565b5b828204905092915050565b7f537761707061626c65546f6b656e416d6f756e7441744f6e6365206d7573742060008201527f62652067726561746572207468616e20302e30303125206f6620746f74616c2060208201527f737570706c790000000000000000000000000000000000000000000000000000604082015250565b600061400060468361387f565b915061400b82613f7e565b606082019050919050565b6000602082019050818103600083015261402f81613ff3565b9050919050565b7f4163636f756e7420697320616c72656164792073657420746f2074686174207360008201527f7461746500000000000000000000000000000000000000000000000000000000602082015250565b600061409260248361387f565b915061409d82614036565b604082019050919050565b600060208201905081810360008301526140c181614085565b9050919050565b60006140d38261398e565b91506140de8361398e565b92508282019050808211156140f6576140f5613f1e565b5b92915050565b60006141078261398e565b91506141128361398e565b92508282026141208161398e565b9150828204841483151761413757614136613f1e565b5b5092915050565b7f496e76616c69642077616c6c6574206164647265737300000000000000000000600082015250565b600061417460168361387f565b915061417f8261413e565b602082019050919050565b600060208201905081810360008301526141a381614167565b9050919050565b7f57616c6c657420746f2077616c6c6574207472616e7366657220776974686f7560008201527f742066656520697320616c72656164792073657420746f20746861742076616c60208201527f7565000000000000000000000000000000000000000000000000000000000000604082015250565b600061422c60428361387f565b9150614237826141aa565b606082019050919050565b6000602082019050818103600083015261425b8161421f565b9050919050565b7f4d6178207472616e73616374696f6e206c696d697420697320616c726561647960008201527f2074686174207374617465000000000000000000000000000000000000000000602082015250565b60006142be602b8361387f565b91506142c982614262565b604082019050919050565b600060208201905081810360008301526142ed816142b1565b9050919050565b7f4d61726b6574696e672077616c6c657420697320616c7265616479207468617460008201527f2061646472657373000000000000000000000000000000000000000000000000602082015250565b600061435060288361387f565b915061435b826142f4565b604082019050919050565b6000602082019050818103600083015261437f81614343565b9050919050565b7f4d61726b6574696e672077616c6c65742063616e6e6f74206265206120636f6e60008201527f7472616374000000000000000000000000000000000000000000000000000000602082015250565b60006143e260258361387f565b91506143ed82614386565b604082019050919050565b60006020820190508181036000830152614411816143d5565b9050919050565b7f4d6178206275792066656520697320322520616e64206d61782073656c6c206660008201527f65652069732033252e0000000000000000000000000000000000000000000000602082015250565b600061447460298361387f565b915061447f82614418565b604082019050919050565b600060208201905081810360008301526144a381614467565b9050919050565b60006040820190506144bf6000830185613b4d565b6144cc6020830184613b4d565b9392505050565b7f5468652073616c6520666f7220706172746e657273207761732066696e69736860008201527f65642e0000000000000000000000000000000000000000000000000000000000602082015250565b600061452f60238361387f565b915061453a826144d3565b604082019050919050565b6000602082019050818103600083015261455e81614522565b9050919050565b7f526571756972656420616d6f756e74206973206f766572206f66206d696e746160008201527f626c6520616d6f756e742e000000000000000000000000000000000000000000602082015250565b60006145c1602b8361387f565b91506145cc82614565565b604082019050919050565b600060208201905081810360008301526145f0816145b4565b9050919050565b7f4e6f7420456e6f7567682046756e647300000000000000000000000000000000600082015250565b600061462d60108361387f565b9150614638826145f7565b602082019050919050565b6000602082019050818103600083015261465c81614620565b9050919050565b60008160601b9050919050565b600061467b82614663565b9050919050565b600061468d82614670565b9050919050565b6146a56146a082613950565b614682565b82525050565b60006146b78284614694565b60148201915081905092915050565b7f596f7520617265206e6f74206f757220706172746e65722e0000000000000000600082015250565b60006146fc60188361387f565b9150614707826146c6565b602082019050919050565b6000602082019050818103600083015261472b816146ef565b9050919050565b600061473d8261398e565b91506147488361398e565b92508282039050818111156147605761475f613f1e565b5b92915050565b7f54726164696e6720616c726561647920656e61626c6564000000000000000000600082015250565b600061479c60178361387f565b91506147a782614766565b602082019050919050565b600060208201905081810360008301526147cb8161478f565b9050919050565b7f4d6178205472616e73616374696f6e206c696d69742063616e6e6f742062652060008201527f6c6f776572207468616e20302e3125206f6620746f74616c20737570706c7900602082015250565b600061482e603f8361387f565b9150614839826147d2565b604082019050919050565b6000602082019050818103600083015261485d81614821565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b60006148c060258361387f565b91506148cb82614864565b604082019050919050565b600060208201905081810360008301526148ef816148b3565b9050919050565b7f546865207075626c69632073616c65207761732066696e69736865642e000000600082015250565b600061492c601d8361387f565b9150614937826148f6565b602082019050919050565b6000602082019050818103600083015261495b8161491f565b9050919050565b7f54686520707269766174652073616c65207761732066696e69736865642e0000600082015250565b6000614998601e8361387f565b91506149a382614962565b602082019050919050565b600060208201905081810360008301526149c78161498b565b9050919050565b7f4163636f756e7420697320616c7265616479207468652076616c7565206f662060008201527f276578636c756465642700000000000000000000000000000000000000000000602082015250565b6000614a2a602a8361387f565b9150614a35826149ce565b604082019050919050565b60006020820190508181036000830152614a5981614a1d565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000614abc60268361387f565b9150614ac782614a60565b604082019050919050565b60006020820190508181036000830152614aeb81614aaf565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000614b4e60248361387f565b9150614b5982614af2565b604082019050919050565b60006020820190508181036000830152614b7d81614b41565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000614be060228361387f565b9150614beb82614b84565b604082019050919050565b60006020820190508181036000830152614c0f81614bd3565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000614c4c60208361387f565b9150614c5782614c16565b602082019050919050565b60006020820190508181036000830152614c7b81614c3f565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000614cb8601d8361387f565b9150614cc382614c82565b602082019050919050565b60006020820190508181036000830152614ce781614cab565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000614d4a60258361387f565b9150614d5582614cee565b604082019050919050565b60006020820190508181036000830152614d7981614d3d565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000614ddc60238361387f565b9150614de782614d80565b604082019050919050565b60006020820190508181036000830152614e0b81614dcf565b9050919050565b7f54726164696e67206973206e6f7420656e61626c656420796574000000000000600082015250565b6000614e48601a8361387f565b9150614e5382614e12565b602082019050919050565b60006020820190508181036000830152614e7781614e3b565b9050919050565b7f416e74695768616c653a205472616e7366657220616d6f756e7420657863656560008201527f647320746865206d61785472616e73666572416d6f756e740000000000000000602082015250565b6000614eda60388361387f565b9150614ee582614e7e565b604082019050919050565b60006020820190508181036000830152614f0981614ecd565b9050919050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b6000614f46601f8361387f565b9150614f5182614f10565b602082019050919050565b60006020820190508181036000830152614f7581614f39565b9050919050565b7f416464726573733a20696e73756666696369656e742062616c616e6365000000600082015250565b6000614fb2601d8361387f565b9150614fbd82614f7c565b602082019050919050565b60006020820190508181036000830152614fe181614fa5565b9050919050565b600081905092915050565b50565b6000615003600083614fe8565b915061500e82614ff3565b600082019050919050565b600061502482614ff6565b9150819050919050565b7f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260008201527f6563697069656e74206d61792068617665207265766572746564000000000000602082015250565b600061508a603a8361387f565b91506150958261502e565b604082019050919050565b600060208201905081810360008301526150b98161507d565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b600061511c60268361387f565b9150615127826150c0565b604082019050919050565b6000602082019050818103600083015261514b8161510f565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000815190506151bf81613962565b92915050565b6000602082840312156151db576151da613926565b5b60006151e9848285016151b0565b91505092915050565b6000819050919050565b600061521761521261520d846151f2565b613ad3565b61398e565b9050919050565b615227816151fc565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b61526281613950565b82525050565b60006152748383615259565b60208301905092915050565b6000602082019050919050565b60006152988261522d565b6152a28185615238565b93506152ad83615249565b8060005b838110156152de5781516152c58882615268565b97506152d083615280565b9250506001810190506152b1565b5085935050505092915050565b600060a0820190506153006000830188613b4d565b61530d602083018761521e565b818103604083015261531f818661528d565b905061532e6060830185613c2e565b61533b6080830184613b4d565b9695505050505050565b60006153508261398e565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff820361538257615381613f1e565b5b60018201905091905056fea264697066735822122014c316c32e24804b19ab6fb2c4e66f12669204615c860ab6ade240b711a0f00064736f6c63430008130033

Block Transaction Difficulty Gas Used Reward
View All Blocks Produced

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

Validator Index Block Amount
View All Withdrawals

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

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