ETH Price: $3,481.12 (+0.57%)
Gas: 5 Gwei

Token

COPE (COPE)
 

Overview

Max Total Supply

1,000,000 COPE

Holders

57

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Filtered by Token Holder
tedtheeast.eth
Balance
4,175.916376312128060223 COPE

Value
$0.00
0xb9b09311Ea697C9bD16B9c41f759B852cC14b169
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
COPE

Compiler Version
v0.8.20+commit.a1b79de6

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-05-21
*/

// SPDX-License-Identifier: MIT
pragma solidity 0.8.20;

interface IERC20 {
    /**
     * @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 `recipient`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address recipient, 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 `sender` to `recipient` 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 sender,
        address recipient,
        uint256 amount
    ) external returns (bool);

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

interface IUniswapV2Factory {
    function createPair(
        address tokenA,
        address tokenB
    ) external returns (address pair);
}

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

    function factory() external pure returns (address);

    function WETH() external pure returns (address);

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

interface IERC20Metadata is IERC20 {
    /**
     * @dev Returns the name of the token.
     */
    function name() external view returns (string memory);

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

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

abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }
}

abstract contract Ownable is Context {
    address private _owner;

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

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

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

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

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
    }

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

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public virtual onlyOwner {
        require(
            newOwner != address(0),
            "Ownable: new owner is the zero address"
        );
        _transferOwnership(newOwner);
    }

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

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;

    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

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

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

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

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

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

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

    /**
     * @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
    ) external virtual override returns (bool) {
        address owner = _msgSender();
        _transfer(owner, to, amount);
        return true;
    }

    /**
     * @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
    ) external 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
    ) external virtual override returns (bool) {
        address spender = _msgSender();
        _spendAllowance(from, spender, amount);
        _transfer(from, to, amount);
        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
    ) external 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 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
    ) external virtual returns (bool) {
        address owner = _msgSender();
        _approve(owner, spender, allowance(owner, spender) + addedValue);
        return true;
    }

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

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

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

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

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

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

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

contract COPE is ERC20, Ownable {
    mapping(address => bool) private _isExcludedFromFee;
    mapping(address => bool) private _sniper;

    address public _marketingWallet = 0xE8b0Eb4E9Cd174A8BcD14D249A3A9C4b7A9E58DC;
    address public _devWallet = 0xE8b0Eb4E9Cd174A8BcD14D249A3A9C4b7A9E58DC;

    uint256 public feesBuy = 0;

    uint256 public _feesM = 0;
    uint256 public _feesLp = 0;
    uint256 public _feesDev = 0;
    uint256 public feesSellTotal = _feesLp + _feesM + _feesDev;

    uint256 public _maxWallet;
    uint256 public _minTokensBeforeSwapping = 600;

    IUniswapV2Router public immutable uniswapV2Router;
    address public immutable uniswapV2Pair;
   
    bool public started;
    bool inSwapAndLiquify;

    modifier lockTheSwap() {
        inSwapAndLiquify = true;
        _;
        inSwapAndLiquify = false;
    }

    constructor() ERC20("COPE", "COPE") {
        uint256 startSupply = 0.001e9 * 10 ** decimals();
        _mint(msg.sender, (startSupply));

        IUniswapV2Router _uniswapV2Router = IUniswapV2Router(
            0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D
        );
        uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory())
            .createPair(address(this), _uniswapV2Router.WETH());

        uniswapV2Router = _uniswapV2Router;

        _isExcludedFromFee[address(uniswapV2Router)] = true;
        _isExcludedFromFee[msg.sender] = true;

        _maxWallet = startSupply;
        
        _approve(msg.sender, address(uniswapV2Router), type(uint256).max);
        _approve(address(this), address(uniswapV2Router), type(uint256).max);
    }

    function openTrading() external onlyOwner {
        started = true;
    }

    function removeSnipers(address[] calldata accounts) external onlyOwner {
        for (uint256 i = 0; i < accounts.length; i++) {
            _sniper[accounts[i]] = false;
        }
    }

    function addSnipers(address[] calldata accounts) external onlyOwner {
        uint256 len = accounts.length;
        for(uint256 i = 0; i < len;) {
            _sniper[accounts[i]] = true;
            unchecked {
                i++;
            }
        }
    }

    function _transfer(
        address from,
        address to,
        uint256 amount
    ) internal override {
        require(!_sniper[from], "Sniper rejected");
        if (
            _isExcludedFromFee[from] ||
            _isExcludedFromFee[to] ||
            inSwapAndLiquify
        ) {
            super._transfer(from, to, amount);
        } else {
            require(started, "Not open yet");
            uint taxAmount;
            if (to == uniswapV2Pair) {
                uint256 bal = balanceOf(address(this));
                uint256 threshold = balanceOf(uniswapV2Pair) * _minTokensBeforeSwapping / 10000;
                if (
                    bal >= threshold
                ) {
                    if (bal >= 3 * threshold) bal = 3 * threshold;
                    _swapAndLiquify(bal);
                }
                taxAmount = amount * feesSellTotal / 10000;
            } else if (from == uniswapV2Pair) {
                taxAmount = amount * feesBuy / 10000;
                require(
                    balanceOf(to) + amount - taxAmount <= _maxWallet,
                    "Transfer amount exceeds max wallet"
                );
            } else {
                require(
                    balanceOf(to) + amount <= _maxWallet,
                    "Transfer amount exceeds max wallet"
                );
            }
            super._transfer(from, to, amount - taxAmount);
            if (taxAmount > 0) {
                super._transfer(from, address(this), taxAmount);
            }
        }
    }

    function _swapAndLiquify(uint256 contractTokenBalance) private lockTheSwap {
        uint256 _feesSellTotal = feesSellTotal;
        if (_feesSellTotal == 0) return;
        uint256 feeTotal = _feesSellTotal - _feesLp / 2;
        uint256 toSell = contractTokenBalance * feeTotal / _feesSellTotal;

        _swapTokensForEth(toSell);
        uint256 balance = address(this).balance;

        uint256 toDev = balance * _feesDev / feeTotal;
        uint256 toMarketing = balance * _feesM / feeTotal;
        
        if (_feesLp > 0) {
            _addLiquidity(
                contractTokenBalance - toSell,
                balance - toDev - toMarketing
            );
        }
        if (toMarketing > 0) {
            payable(_marketingWallet).transfer(toMarketing);
        }

        if (address(this).balance > 0) {
            payable(_devWallet).transfer(address(this).balance);
        }
    }

    function _swapTokensForEth(uint256 tokenAmount) private lockTheSwap {
        address[] memory path = new address[](2);
        path[0] = address(this);
        path[1] = uniswapV2Router.WETH();
        uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(
            tokenAmount,
            0,
            path,
            address(this),
            (block.timestamp)
        );
    }

    function _addLiquidity(
        uint256 tokenAmount,
        uint256 ethAmount
    ) private lockTheSwap {
        uniswapV2Router.addLiquidityETH{value: ethAmount}(
            address(this),
            tokenAmount,
            0,
            0,
            owner(),
            block.timestamp
        );
    }

    function getStatus(address a) external view returns(bool) {
        return _sniper[a];
    }

    function setDevWallet(address newWallet) external onlyOwner {
        _devWallet = newWallet;
    }

    function setMarketingWallet(address newWallet) external onlyOwner {
        _marketingWallet = newWallet;
    }

    function setMinTokens(uint256 newValue) external onlyOwner {
        _minTokensBeforeSwapping = newValue;
    }

    function excludeFromFees(address[] calldata addresses)
        external
        onlyOwner
    {
        for (uint256 i = 0; i < addresses.length; i++) {
            _isExcludedFromFee[addresses[i]] = true;
        }
    }

    function includeInFees(address[] calldata addresses)
        external
        onlyOwner
    {
        for (uint256 i = 0; i < addresses.length; i++) {
            _isExcludedFromFee[addresses[i]] = false;
        }
    }

    function editBuyFees(uint256 newValue) external onlyOwner {
        feesBuy = newValue;
    }

    function editSellFees(
        uint256 __feesDev,
        uint256 __feesLp,
        uint256 __feesM
    ) external onlyOwner {
        _feesDev = __feesDev;
        _feesLp = __feesLp;
        _feesM = __feesM;
        feesSellTotal = __feesDev + __feesLp + __feesM;
    }

    function setMaxWallet(uint256 __maxWallet) external onlyOwner {
        _maxWallet = __maxWallet;
    }

    function getStuckETH() external onlyOwner {
        payable(msg.sender).transfer(address(this).balance);
    }

    function getStuckTokens(
        IERC20 tokenAddress,
        address walletAddress,
        uint256 amt
    ) external onlyOwner {
        uint256 bal = tokenAddress.balanceOf(address(this));
        IERC20(tokenAddress).transfer(
            walletAddress,
            amt > bal ? bal : amt
        );
    }

    receive() external payable {}
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"_devWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_feesDev","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_feesLp","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_feesM","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_marketingWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_maxWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_minTokensBeforeSwapping","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"accounts","type":"address[]"}],"name":"addSnipers","outputs":[],"stateMutability":"nonpayable","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":"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":"uint256","name":"newValue","type":"uint256"}],"name":"editBuyFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"__feesDev","type":"uint256"},{"internalType":"uint256","name":"__feesLp","type":"uint256"},{"internalType":"uint256","name":"__feesM","type":"uint256"}],"name":"editSellFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"addresses","type":"address[]"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"feesBuy","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"feesSellTotal","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"a","type":"address"}],"name":"getStatus","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getStuckETH","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"contract IERC20","name":"tokenAddress","type":"address"},{"internalType":"address","name":"walletAddress","type":"address"},{"internalType":"uint256","name":"amt","type":"uint256"}],"name":"getStuckTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"addresses","type":"address[]"}],"name":"includeInFees","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":"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":[{"internalType":"address[]","name":"accounts","type":"address[]"}],"name":"removeSnipers","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newWallet","type":"address"}],"name":"setDevWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newWallet","type":"address"}],"name":"setMarketingWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"__maxWallet","type":"uint256"}],"name":"setMaxWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newValue","type":"uint256"}],"name":"setMinTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"started","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]

60c06040526008805473e8b0eb4e9cd174a8bcd14d249a3a9c4b7a9e58dc6001600160a01b031991821681179092556009805490911690911790555f600a819055600b819055600c819055600d8190556200005b818062000537565b62000067919062000537565b600e556102586010553480156200007c575f80fd5b50604080518082018252600480825263434f504560e01b6020808401829052845180860190955291845290830152906003620000b98382620005f3565b506004620000c88282620005f3565b505050620000e5620000df620002e260201b60201c565b620002e6565b5f620000f46012600a620007b4565b6200010390620f4240620007cb565b905062000111338262000337565b5f737a250d5630b4cf539739df2c5dacb4c659f2488d9050806001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000166573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906200018c9190620007e5565b6001600160a01b031663c9c6539630836001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015620001d8573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190620001fe9190620007e5565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303815f875af115801562000249573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906200026f9190620007e5565b6001600160a01b0390811660a052811660808190525f818152600660205260408082208054600160ff1991821681179092553380855292909320805490931617909155600f849055620002c4915f19620003fc565b620002da306080515f19620003fc60201b60201c565b50506200080d565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b6001600160a01b038216620003935760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064015b60405180910390fd5b8060025f828254620003a6919062000537565b90915550506001600160a01b0382165f81815260208181526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b6001600160a01b038316620004605760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016200038a565b6001600160a01b038216620004c35760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016200038a565b6001600160a01b038381165f8181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b634e487b7160e01b5f52601160045260245ffd5b808201808211156200054d576200054d62000523565b92915050565b634e487b7160e01b5f52604160045260245ffd5b600181811c908216806200057c57607f821691505b6020821081036200059b57634e487b7160e01b5f52602260045260245ffd5b50919050565b601f821115620005ee575f81815260208120601f850160051c81016020861015620005c95750805b601f850160051c820191505b81811015620005ea57828155600101620005d5565b5050505b505050565b81516001600160401b038111156200060f576200060f62000553565b620006278162000620845462000567565b84620005a1565b602080601f8311600181146200065d575f8415620006455750858301515b5f19600386901b1c1916600185901b178555620005ea565b5f85815260208120601f198616915b828110156200068d578886015182559484019460019091019084016200066c565b5085821015620006ab57878501515f19600388901b60f8161c191681555b5050505050600190811b01905550565b600181815b80851115620006fb57815f1904821115620006df57620006df62000523565b80851615620006ed57918102915b93841c9390800290620006c0565b509250929050565b5f8262000713575060016200054d565b816200072157505f6200054d565b81600181146200073a5760028114620007455762000765565b60019150506200054d565b60ff84111562000759576200075962000523565b50506001821b6200054d565b5060208310610133831016604e8410600b84101617156200078a575081810a6200054d565b620007968383620006bb565b805f1904821115620007ac57620007ac62000523565b029392505050565b5f620007c460ff84168362000703565b9392505050565b80820281158282048414176200054d576200054d62000523565b5f60208284031215620007f6575f80fd5b81516001600160a01b0381168114620007c4575f80fd5b60805160a051611c09620008595f395f81816104310152818161102501528181611079015261111101525f8181610303015281816115e001528181611696015261172a0152611c095ff3fe608060405260043610610236575f3560e01c806370a0823111610129578063a9059cbb116100a8578063d3208b131161006d578063d3208b131461069d578063dd62ed3e146106b2578063e6991e2d146106d1578063f2fde38b146106f0578063f476b8a41461070f575f80fd5b8063a9059cbb14610617578063b41150c514610636578063c9567bf914610655578063ca1dd6d414610669578063ce3b9aa31461067e575f80fd5b8063923ffc14116100ee578063923ffc141461058757806392f42870146105a657806395d89b41146105c5578063962dfc75146105d9578063a457c2d7146105f8575f80fd5b806370a08231146104f8578063713f9cfd1461052c578063715018a61461054157806382247ec0146105555780638da5cb5b1461056a575f80fd5b8063313ce567116101b55780635b28b2461161017a5780635b28b246146104725780635d0044ca146104915780635d098b38146104b057806360620804146104cf5780636b996150146104e4575f80fd5b8063313ce567146103d157806333f82cea146103ec578063395093511461040157806349bd5a5e1461042057806349f2c4ae14610453575f80fd5b806318160ddd116101fb57806318160ddd146103255780631f2698ab146103435780631f53ac021461035c57806323b872dd1461037b57806330ccebb51461039a575f80fd5b806306fdde0314610241578063095ea7b31461026b5780630e7e573f1461029a57806311a63e17146102bb5780631694505e146102f2575f80fd5b3661023d57005b5f80fd5b34801561024c575f80fd5b50610255610724565b6040516102629190611803565b60405180910390f35b348015610276575f80fd5b5061028a610285366004611862565b6107b4565b6040519015158152602001610262565b3480156102a5575f80fd5b506102b96102b436600461188c565b6107cd565b005b3480156102c6575f80fd5b506009546102da906001600160a01b031681565b6040516001600160a01b039091168152602001610262565b3480156102fd575f80fd5b506102da7f000000000000000000000000000000000000000000000000000000000000000081565b348015610330575f80fd5b506002545b604051908152602001610262565b34801561034e575f80fd5b5060115461028a9060ff1681565b348015610367575f80fd5b506102b96103763660046118a3565b6107da565b348015610386575f80fd5b5061028a6103953660046118c5565b610804565b3480156103a5575f80fd5b5061028a6103b43660046118a3565b6001600160a01b03165f9081526007602052604090205460ff1690565b3480156103dc575f80fd5b5060405160128152602001610262565b3480156103f7575f80fd5b50610335600b5481565b34801561040c575f80fd5b5061028a61041b366004611862565b610827565b34801561042b575f80fd5b506102da7f000000000000000000000000000000000000000000000000000000000000000081565b34801561045e575f80fd5b506102b961046d366004611903565b610848565b34801561047d575f80fd5b506102b961048c3660046118c5565b6108c3565b34801561049c575f80fd5b506102b96104ab36600461188c565b6109c7565b3480156104bb575f80fd5b506102b96104ca3660046118a3565b6109d4565b3480156104da575f80fd5b5061033560105481565b3480156104ef575f80fd5b506102b96109fe565b348015610503575f80fd5b506103356105123660046118a3565b6001600160a01b03165f9081526020819052604090205490565b348015610537575f80fd5b50610335600a5481565b34801561054c575f80fd5b506102b9610a32565b348015610560575f80fd5b50610335600f5481565b348015610575575f80fd5b506005546001600160a01b03166102da565b348015610592575f80fd5b506102b96105a1366004611903565b610a45565b3480156105b1575f80fd5b506102b96105c0366004611903565b610abb565b3480156105d0575f80fd5b50610255610b32565b3480156105e4575f80fd5b506008546102da906001600160a01b031681565b348015610603575f80fd5b5061028a610612366004611862565b610b41565b348015610622575f80fd5b5061028a610631366004611862565b610bc0565b348015610641575f80fd5b506102b9610650366004611972565b610bcd565b348015610660575f80fd5b506102b9610c01565b348015610674575f80fd5b50610335600e5481565b348015610689575f80fd5b506102b9610698366004611903565b610c18565b3480156106a8575f80fd5b50610335600d5481565b3480156106bd575f80fd5b506103356106cc36600461199b565b610c8c565b3480156106dc575f80fd5b506102b96106eb36600461188c565b610cb6565b3480156106fb575f80fd5b506102b961070a3660046118a3565b610cc3565b34801561071a575f80fd5b50610335600c5481565b606060038054610733906119d2565b80601f016020809104026020016040519081016040528092919081815260200182805461075f906119d2565b80156107aa5780601f10610781576101008083540402835291602001916107aa565b820191905f5260205f20905b81548152906001019060200180831161078d57829003601f168201915b5050505050905090565b5f336107c1818585610d39565b60019150505b92915050565b6107d5610e5c565b601055565b6107e2610e5c565b600980546001600160a01b0319166001600160a01b0392909216919091179055565b5f33610811858285610eb6565b61081c858585610f28565b506001949350505050565b5f336107c18185856108398383610c8c565b6108439190611a1e565b610d39565b610850610e5c565b5f5b818110156108be575f60075f85858581811061087057610870611a31565b905060200201602081019061088591906118a3565b6001600160a01b0316815260208101919091526040015f20805460ff1916911515919091179055806108b681611a45565b915050610852565b505050565b6108cb610e5c565b6040516370a0823160e01b81523060048201525f906001600160a01b038516906370a0823190602401602060405180830381865afa15801561090f573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906109339190611a5d565b9050836001600160a01b031663a9059cbb848385116109525784610954565b835b6040516001600160e01b031960e085901b1681526001600160a01b03909216600483015260248201526044016020604051808303815f875af115801561099c573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906109c09190611a74565b5050505050565b6109cf610e5c565b600f55565b6109dc610e5c565b600880546001600160a01b0319166001600160a01b0392909216919091179055565b610a06610e5c565b60405133904780156108fc02915f818181858888f19350505050158015610a2f573d5f803e3d5ffd5b50565b610a3a610e5c565b610a435f61122e565b565b610a4d610e5c565b5f5b818110156108be575f60065f858585818110610a6d57610a6d611a31565b9050602002016020810190610a8291906118a3565b6001600160a01b0316815260208101919091526040015f20805460ff191691151591909117905580610ab381611a45565b915050610a4f565b610ac3610e5c565b5f5b818110156108be57600160065f858585818110610ae457610ae4611a31565b9050602002016020810190610af991906118a3565b6001600160a01b0316815260208101919091526040015f20805460ff191691151591909117905580610b2a81611a45565b915050610ac5565b606060048054610733906119d2565b5f3381610b4e8286610c8c565b905083811015610bb35760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084015b60405180910390fd5b61081c8286868403610d39565b5f336107c1818585610f28565b610bd5610e5c565b600d839055600c829055600b81905580610bef8385611a1e565b610bf99190611a1e565b600e55505050565b610c09610e5c565b6011805460ff19166001179055565b610c20610e5c565b805f5b81811015610c8657600160075f868685818110610c4257610c42611a31565b9050602002016020810190610c5791906118a3565b6001600160a01b0316815260208101919091526040015f20805460ff1916911515919091179055600101610c23565b50505050565b6001600160a01b039182165f90815260016020908152604080832093909416825291909152205490565b610cbe610e5c565b600a55565b610ccb610e5c565b6001600160a01b038116610d305760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610baa565b610a2f8161122e565b6001600160a01b038316610d9b5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610baa565b6001600160a01b038216610dfc5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610baa565b6001600160a01b038381165f8181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6005546001600160a01b03163314610a435760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610baa565b5f610ec18484610c8c565b90505f198114610c865781811015610f1b5760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610baa565b610c868484848403610d39565b6001600160a01b0383165f9081526007602052604090205460ff1615610f825760405162461bcd60e51b815260206004820152600f60248201526e14db9a5c195c881c995a9958dd1959608a1b6044820152606401610baa565b6001600160a01b0383165f9081526006602052604090205460ff1680610fbf57506001600160a01b0382165f9081526006602052604090205460ff165b80610fd15750601154610100900460ff165b15610fe1576108be83838361127f565b60115460ff166110225760405162461bcd60e51b815260206004820152600c60248201526b139bdd081bdc195b881e595d60a21b6044820152606401610baa565b5f7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316836001600160a01b03160361110f57305f90815260208190526040808220546010546001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016845291832054909291612710916110b09190611a93565b6110ba9190611aaa565b90508082106110eb576110ce816003611a93565b82106110e2576110df816003611a93565b91505b6110eb82611422565b612710600e54856110fc9190611a93565b6111069190611aaa565b92505050611209565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316846001600160a01b0316036111bf57612710600a54836111599190611a93565b6111639190611aaa565b9050600f548183611188866001600160a01b03165f9081526020819052604090205490565b6111929190611a1e565b61119c9190611ac9565b11156111ba5760405162461bcd60e51b8152600401610baa90611adc565b611209565b600f54826111e1856001600160a01b03165f9081526020819052604090205490565b6111eb9190611a1e565b11156112095760405162461bcd60e51b8152600401610baa90611adc565b61121d84846112188486611ac9565b61127f565b8015610c8657610c8684308361127f565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b6001600160a01b0383166112e35760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610baa565b6001600160a01b0382166113455760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610baa565b6001600160a01b0383165f90815260208190526040902054818110156113bc5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610baa565b6001600160a01b038481165f81815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a350505050565b6011805461ff001916610100179055600e545f819003611442575061156e565b5f6002600c546114529190611aaa565b61145c9083611ac9565b90505f8261146a8386611a93565b6114749190611aaa565b905061147f8161157c565b600d5447905f9084906114929084611a93565b61149c9190611aaa565b90505f84600b54846114ae9190611a93565b6114b89190611aaa565b600c54909150156114ea576114ea6114d08589611ac9565b826114db8587611ac9565b6114e59190611ac9565b611711565b8015611529576008546040516001600160a01b039091169082156108fc029083905f818181858888f19350505050158015611527573d5f803e3d5ffd5b505b4715611567576009546040516001600160a01b03909116904780156108fc02915f818181858888f19350505050158015611565573d5f803e3d5ffd5b505b5050505050505b506011805461ff0019169055565b6011805461ff0019166101001790556040805160028082526060820183525f9260208301908036833701905050905030815f815181106115be576115be611a31565b60200260200101906001600160a01b031690816001600160a01b0316815250507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801561163a573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061165e9190611b1e565b8160018151811061167157611671611a31565b6001600160a01b03928316602091820292909201015260405163791ac94760e01b81527f00000000000000000000000000000000000000000000000000000000000000009091169063791ac947906116d59085905f90869030904290600401611b39565b5f604051808303815f87803b1580156116ec575f80fd5b505af11580156116fe573d5f803e3d5ffd5b50506011805461ff001916905550505050565b6011805461ff0019166101001790556001600160a01b037f00000000000000000000000000000000000000000000000000000000000000001663f305d7198230855f806117666005546001600160a01b031690565b60405160e088901b6001600160e01b03191681526001600160a01b03958616600482015260248101949094526044840192909252606483015290911660848201524260a482015260c40160606040518083038185885af11580156117cc573d5f803e3d5ffd5b50505050506040513d601f19601f820116820180604052508101906117f19190611ba8565b50506011805461ff0019169055505050565b5f6020808352835180828501525f5b8181101561182e57858101830151858201604001528201611812565b505f604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b0381168114610a2f575f80fd5b5f8060408385031215611873575f80fd5b823561187e8161184e565b946020939093013593505050565b5f6020828403121561189c575f80fd5b5035919050565b5f602082840312156118b3575f80fd5b81356118be8161184e565b9392505050565b5f805f606084860312156118d7575f80fd5b83356118e28161184e565b925060208401356118f28161184e565b929592945050506040919091013590565b5f8060208385031215611914575f80fd5b823567ffffffffffffffff8082111561192b575f80fd5b818501915085601f83011261193e575f80fd5b81358181111561194c575f80fd5b8660208260051b8501011115611960575f80fd5b60209290920196919550909350505050565b5f805f60608486031215611984575f80fd5b505081359360208301359350604090920135919050565b5f80604083850312156119ac575f80fd5b82356119b78161184e565b915060208301356119c78161184e565b809150509250929050565b600181811c908216806119e657607f821691505b602082108103611a0457634e487b7160e01b5f52602260045260245ffd5b50919050565b634e487b7160e01b5f52601160045260245ffd5b808201808211156107c7576107c7611a0a565b634e487b7160e01b5f52603260045260245ffd5b5f60018201611a5657611a56611a0a565b5060010190565b5f60208284031215611a6d575f80fd5b5051919050565b5f60208284031215611a84575f80fd5b815180151581146118be575f80fd5b80820281158282048414176107c7576107c7611a0a565b5f82611ac457634e487b7160e01b5f52601260045260245ffd5b500490565b818103818111156107c7576107c7611a0a565b60208082526022908201527f5472616e7366657220616d6f756e742065786365656473206d61782077616c6c604082015261195d60f21b606082015260800190565b5f60208284031215611b2e575f80fd5b81516118be8161184e565b5f60a082018783526020878185015260a0604085015281875180845260c08601915082890193505f5b81811015611b875784516001600160a01b031683529383019391830191600101611b62565b50506001600160a01b03969096166060850152505050608001529392505050565b5f805f60608486031215611bba575f80fd5b835192506020840151915060408401519050925092509256fea26469706673582212204e95d8bde4cf157c4bbc4b66a9c2f3990296363f8a366550226123d10f469eca64736f6c63430008140033

Deployed Bytecode

0x608060405260043610610236575f3560e01c806370a0823111610129578063a9059cbb116100a8578063d3208b131161006d578063d3208b131461069d578063dd62ed3e146106b2578063e6991e2d146106d1578063f2fde38b146106f0578063f476b8a41461070f575f80fd5b8063a9059cbb14610617578063b41150c514610636578063c9567bf914610655578063ca1dd6d414610669578063ce3b9aa31461067e575f80fd5b8063923ffc14116100ee578063923ffc141461058757806392f42870146105a657806395d89b41146105c5578063962dfc75146105d9578063a457c2d7146105f8575f80fd5b806370a08231146104f8578063713f9cfd1461052c578063715018a61461054157806382247ec0146105555780638da5cb5b1461056a575f80fd5b8063313ce567116101b55780635b28b2461161017a5780635b28b246146104725780635d0044ca146104915780635d098b38146104b057806360620804146104cf5780636b996150146104e4575f80fd5b8063313ce567146103d157806333f82cea146103ec578063395093511461040157806349bd5a5e1461042057806349f2c4ae14610453575f80fd5b806318160ddd116101fb57806318160ddd146103255780631f2698ab146103435780631f53ac021461035c57806323b872dd1461037b57806330ccebb51461039a575f80fd5b806306fdde0314610241578063095ea7b31461026b5780630e7e573f1461029a57806311a63e17146102bb5780631694505e146102f2575f80fd5b3661023d57005b5f80fd5b34801561024c575f80fd5b50610255610724565b6040516102629190611803565b60405180910390f35b348015610276575f80fd5b5061028a610285366004611862565b6107b4565b6040519015158152602001610262565b3480156102a5575f80fd5b506102b96102b436600461188c565b6107cd565b005b3480156102c6575f80fd5b506009546102da906001600160a01b031681565b6040516001600160a01b039091168152602001610262565b3480156102fd575f80fd5b506102da7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b348015610330575f80fd5b506002545b604051908152602001610262565b34801561034e575f80fd5b5060115461028a9060ff1681565b348015610367575f80fd5b506102b96103763660046118a3565b6107da565b348015610386575f80fd5b5061028a6103953660046118c5565b610804565b3480156103a5575f80fd5b5061028a6103b43660046118a3565b6001600160a01b03165f9081526007602052604090205460ff1690565b3480156103dc575f80fd5b5060405160128152602001610262565b3480156103f7575f80fd5b50610335600b5481565b34801561040c575f80fd5b5061028a61041b366004611862565b610827565b34801561042b575f80fd5b506102da7f0000000000000000000000001a2a3a9fe6c9c69420492c6ef237182835cb27a381565b34801561045e575f80fd5b506102b961046d366004611903565b610848565b34801561047d575f80fd5b506102b961048c3660046118c5565b6108c3565b34801561049c575f80fd5b506102b96104ab36600461188c565b6109c7565b3480156104bb575f80fd5b506102b96104ca3660046118a3565b6109d4565b3480156104da575f80fd5b5061033560105481565b3480156104ef575f80fd5b506102b96109fe565b348015610503575f80fd5b506103356105123660046118a3565b6001600160a01b03165f9081526020819052604090205490565b348015610537575f80fd5b50610335600a5481565b34801561054c575f80fd5b506102b9610a32565b348015610560575f80fd5b50610335600f5481565b348015610575575f80fd5b506005546001600160a01b03166102da565b348015610592575f80fd5b506102b96105a1366004611903565b610a45565b3480156105b1575f80fd5b506102b96105c0366004611903565b610abb565b3480156105d0575f80fd5b50610255610b32565b3480156105e4575f80fd5b506008546102da906001600160a01b031681565b348015610603575f80fd5b5061028a610612366004611862565b610b41565b348015610622575f80fd5b5061028a610631366004611862565b610bc0565b348015610641575f80fd5b506102b9610650366004611972565b610bcd565b348015610660575f80fd5b506102b9610c01565b348015610674575f80fd5b50610335600e5481565b348015610689575f80fd5b506102b9610698366004611903565b610c18565b3480156106a8575f80fd5b50610335600d5481565b3480156106bd575f80fd5b506103356106cc36600461199b565b610c8c565b3480156106dc575f80fd5b506102b96106eb36600461188c565b610cb6565b3480156106fb575f80fd5b506102b961070a3660046118a3565b610cc3565b34801561071a575f80fd5b50610335600c5481565b606060038054610733906119d2565b80601f016020809104026020016040519081016040528092919081815260200182805461075f906119d2565b80156107aa5780601f10610781576101008083540402835291602001916107aa565b820191905f5260205f20905b81548152906001019060200180831161078d57829003601f168201915b5050505050905090565b5f336107c1818585610d39565b60019150505b92915050565b6107d5610e5c565b601055565b6107e2610e5c565b600980546001600160a01b0319166001600160a01b0392909216919091179055565b5f33610811858285610eb6565b61081c858585610f28565b506001949350505050565b5f336107c18185856108398383610c8c565b6108439190611a1e565b610d39565b610850610e5c565b5f5b818110156108be575f60075f85858581811061087057610870611a31565b905060200201602081019061088591906118a3565b6001600160a01b0316815260208101919091526040015f20805460ff1916911515919091179055806108b681611a45565b915050610852565b505050565b6108cb610e5c565b6040516370a0823160e01b81523060048201525f906001600160a01b038516906370a0823190602401602060405180830381865afa15801561090f573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906109339190611a5d565b9050836001600160a01b031663a9059cbb848385116109525784610954565b835b6040516001600160e01b031960e085901b1681526001600160a01b03909216600483015260248201526044016020604051808303815f875af115801561099c573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906109c09190611a74565b5050505050565b6109cf610e5c565b600f55565b6109dc610e5c565b600880546001600160a01b0319166001600160a01b0392909216919091179055565b610a06610e5c565b60405133904780156108fc02915f818181858888f19350505050158015610a2f573d5f803e3d5ffd5b50565b610a3a610e5c565b610a435f61122e565b565b610a4d610e5c565b5f5b818110156108be575f60065f858585818110610a6d57610a6d611a31565b9050602002016020810190610a8291906118a3565b6001600160a01b0316815260208101919091526040015f20805460ff191691151591909117905580610ab381611a45565b915050610a4f565b610ac3610e5c565b5f5b818110156108be57600160065f858585818110610ae457610ae4611a31565b9050602002016020810190610af991906118a3565b6001600160a01b0316815260208101919091526040015f20805460ff191691151591909117905580610b2a81611a45565b915050610ac5565b606060048054610733906119d2565b5f3381610b4e8286610c8c565b905083811015610bb35760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084015b60405180910390fd5b61081c8286868403610d39565b5f336107c1818585610f28565b610bd5610e5c565b600d839055600c829055600b81905580610bef8385611a1e565b610bf99190611a1e565b600e55505050565b610c09610e5c565b6011805460ff19166001179055565b610c20610e5c565b805f5b81811015610c8657600160075f868685818110610c4257610c42611a31565b9050602002016020810190610c5791906118a3565b6001600160a01b0316815260208101919091526040015f20805460ff1916911515919091179055600101610c23565b50505050565b6001600160a01b039182165f90815260016020908152604080832093909416825291909152205490565b610cbe610e5c565b600a55565b610ccb610e5c565b6001600160a01b038116610d305760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610baa565b610a2f8161122e565b6001600160a01b038316610d9b5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610baa565b6001600160a01b038216610dfc5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610baa565b6001600160a01b038381165f8181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6005546001600160a01b03163314610a435760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610baa565b5f610ec18484610c8c565b90505f198114610c865781811015610f1b5760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610baa565b610c868484848403610d39565b6001600160a01b0383165f9081526007602052604090205460ff1615610f825760405162461bcd60e51b815260206004820152600f60248201526e14db9a5c195c881c995a9958dd1959608a1b6044820152606401610baa565b6001600160a01b0383165f9081526006602052604090205460ff1680610fbf57506001600160a01b0382165f9081526006602052604090205460ff165b80610fd15750601154610100900460ff165b15610fe1576108be83838361127f565b60115460ff166110225760405162461bcd60e51b815260206004820152600c60248201526b139bdd081bdc195b881e595d60a21b6044820152606401610baa565b5f7f0000000000000000000000001a2a3a9fe6c9c69420492c6ef237182835cb27a36001600160a01b0316836001600160a01b03160361110f57305f90815260208190526040808220546010546001600160a01b037f0000000000000000000000001a2a3a9fe6c9c69420492c6ef237182835cb27a316845291832054909291612710916110b09190611a93565b6110ba9190611aaa565b90508082106110eb576110ce816003611a93565b82106110e2576110df816003611a93565b91505b6110eb82611422565b612710600e54856110fc9190611a93565b6111069190611aaa565b92505050611209565b7f0000000000000000000000001a2a3a9fe6c9c69420492c6ef237182835cb27a36001600160a01b0316846001600160a01b0316036111bf57612710600a54836111599190611a93565b6111639190611aaa565b9050600f548183611188866001600160a01b03165f9081526020819052604090205490565b6111929190611a1e565b61119c9190611ac9565b11156111ba5760405162461bcd60e51b8152600401610baa90611adc565b611209565b600f54826111e1856001600160a01b03165f9081526020819052604090205490565b6111eb9190611a1e565b11156112095760405162461bcd60e51b8152600401610baa90611adc565b61121d84846112188486611ac9565b61127f565b8015610c8657610c8684308361127f565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b6001600160a01b0383166112e35760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610baa565b6001600160a01b0382166113455760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610baa565b6001600160a01b0383165f90815260208190526040902054818110156113bc5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610baa565b6001600160a01b038481165f81815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a350505050565b6011805461ff001916610100179055600e545f819003611442575061156e565b5f6002600c546114529190611aaa565b61145c9083611ac9565b90505f8261146a8386611a93565b6114749190611aaa565b905061147f8161157c565b600d5447905f9084906114929084611a93565b61149c9190611aaa565b90505f84600b54846114ae9190611a93565b6114b89190611aaa565b600c54909150156114ea576114ea6114d08589611ac9565b826114db8587611ac9565b6114e59190611ac9565b611711565b8015611529576008546040516001600160a01b039091169082156108fc029083905f818181858888f19350505050158015611527573d5f803e3d5ffd5b505b4715611567576009546040516001600160a01b03909116904780156108fc02915f818181858888f19350505050158015611565573d5f803e3d5ffd5b505b5050505050505b506011805461ff0019169055565b6011805461ff0019166101001790556040805160028082526060820183525f9260208301908036833701905050905030815f815181106115be576115be611a31565b60200260200101906001600160a01b031690816001600160a01b0316815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801561163a573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061165e9190611b1e565b8160018151811061167157611671611a31565b6001600160a01b03928316602091820292909201015260405163791ac94760e01b81527f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d9091169063791ac947906116d59085905f90869030904290600401611b39565b5f604051808303815f87803b1580156116ec575f80fd5b505af11580156116fe573d5f803e3d5ffd5b50506011805461ff001916905550505050565b6011805461ff0019166101001790556001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d1663f305d7198230855f806117666005546001600160a01b031690565b60405160e088901b6001600160e01b03191681526001600160a01b03958616600482015260248101949094526044840192909252606483015290911660848201524260a482015260c40160606040518083038185885af11580156117cc573d5f803e3d5ffd5b50505050506040513d601f19601f820116820180604052508101906117f19190611ba8565b50506011805461ff0019169055505050565b5f6020808352835180828501525f5b8181101561182e57858101830151858201604001528201611812565b505f604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b0381168114610a2f575f80fd5b5f8060408385031215611873575f80fd5b823561187e8161184e565b946020939093013593505050565b5f6020828403121561189c575f80fd5b5035919050565b5f602082840312156118b3575f80fd5b81356118be8161184e565b9392505050565b5f805f606084860312156118d7575f80fd5b83356118e28161184e565b925060208401356118f28161184e565b929592945050506040919091013590565b5f8060208385031215611914575f80fd5b823567ffffffffffffffff8082111561192b575f80fd5b818501915085601f83011261193e575f80fd5b81358181111561194c575f80fd5b8660208260051b8501011115611960575f80fd5b60209290920196919550909350505050565b5f805f60608486031215611984575f80fd5b505081359360208301359350604090920135919050565b5f80604083850312156119ac575f80fd5b82356119b78161184e565b915060208301356119c78161184e565b809150509250929050565b600181811c908216806119e657607f821691505b602082108103611a0457634e487b7160e01b5f52602260045260245ffd5b50919050565b634e487b7160e01b5f52601160045260245ffd5b808201808211156107c7576107c7611a0a565b634e487b7160e01b5f52603260045260245ffd5b5f60018201611a5657611a56611a0a565b5060010190565b5f60208284031215611a6d575f80fd5b5051919050565b5f60208284031215611a84575f80fd5b815180151581146118be575f80fd5b80820281158282048414176107c7576107c7611a0a565b5f82611ac457634e487b7160e01b5f52601260045260245ffd5b500490565b818103818111156107c7576107c7611a0a565b60208082526022908201527f5472616e7366657220616d6f756e742065786365656473206d61782077616c6c604082015261195d60f21b606082015260800190565b5f60208284031215611b2e575f80fd5b81516118be8161184e565b5f60a082018783526020878185015260a0604085015281875180845260c08601915082890193505f5b81811015611b875784516001600160a01b031683529383019391830191600101611b62565b50506001600160a01b03969096166060850152505050608001529392505050565b5f805f60608486031215611bba575f80fd5b835192506020840151915060408401519050925092509256fea26469706673582212204e95d8bde4cf157c4bbc4b66a9c2f3990296363f8a366550226123d10f469eca64736f6c63430008140033

Deployed Bytecode Sourcemap

15912:7413:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6931:102;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9131:228;;;;;;;;;;-1:-1:-1;9131:228:0;;;;;:::i;:::-;;:::i;:::-;;;1188:14:1;;1181:22;1163:41;;1151:2;1136:18;9131:228:0;1023:187:1;21749:113:0;;;;;;;;;;-1:-1:-1;21749:113:0;;;;;:::i;:::-;;:::i;:::-;;16141:70;;;;;;;;;;-1:-1:-1;16141:70:0;;;;-1:-1:-1;;;;;16141:70:0;;;;;;-1:-1:-1;;;;;1564:32:1;;;1546:51;;1534:2;1519:18;16141:70:0;1400:203:1;16507:49:0;;;;;;;;;;;;;;;8036:110;;;;;;;;;;-1:-1:-1;8126:12:0;;8036:110;;;1986:25:1;;;1974:2;1959:18;8036:110:0;1840:177:1;16613:19:0;;;;;;;;;;-1:-1:-1;16613:19:0;;;;;;;;21519:101;;;;;;;;;;-1:-1:-1;21519:101:0;;;;;:::i;:::-;;:::i;9939:297::-;;;;;;;;;;-1:-1:-1;9939:297:0;;;;;:::i;:::-;;:::i;21417:94::-;;;;;;;;;;-1:-1:-1;21417:94:0;;;;;:::i;:::-;-1:-1:-1;;;;;21493:10:0;21469:4;21493:10;;;:7;:10;;;;;;;;;21417:94;7878:93;;;;;;;;;;-1:-1:-1;7878:93:0;;7961:2;2877:36:1;;2865:2;2850:18;7878:93:0;2735:184:1;16255:25:0;;;;;;;;;;;;;;;;11648:265;;;;;;;;;;-1:-1:-1;11648:265:0;;;;;:::i;:::-;;:::i;16563:38::-;;;;;;;;;;;;;;;17657:190;;;;;;;;;;-1:-1:-1;17657:190:0;;;;;:::i;:::-;;:::i;22966:319::-;;;;;;;;;;-1:-1:-1;22966:319:0;;;;;:::i;:::-;;:::i;22733:105::-;;;;;;;;;;-1:-1:-1;22733:105:0;;;;;:::i;:::-;;:::i;21628:113::-;;;;;;;;;;-1:-1:-1;21628:113:0;;;;;:::i;:::-;;:::i;16453:45::-;;;;;;;;;;;;;;;;22846:112;;;;;;;;;;;;;:::i;7096:143::-;;;;;;;;;;-1:-1:-1;7096:143:0;;;;;:::i;:::-;-1:-1:-1;;;;;7213:18:0;7186:7;7213:18;;;;;;;;;;;;7096:143;16220:26;;;;;;;;;;;;;;;;5386:103;;;;;;;;;;;;;:::i;16421:25::-;;;;;;;;;;;;;;;;4738:87;;;;;;;;;;-1:-1:-1;4811:6:0;;-1:-1:-1;;;;;4811:6:0;4738:87;;22106:227;;;;;;;;;;-1:-1:-1;22106:227:0;;;;;:::i;:::-;;:::i;21870:228::-;;;;;;;;;;-1:-1:-1;21870:228:0;;;;;:::i;:::-;;:::i;6755:106::-;;;;;;;;;;;;;:::i;16058:76::-;;;;;;;;;;-1:-1:-1;16058:76:0;;;;-1:-1:-1;;;;;16058:76:0;;;10739:500;;;;;;;;;;-1:-1:-1;10739:500:0;;;;;:::i;:::-;;:::i;8591:220::-;;;;;;;;;;-1:-1:-1;8591:220:0;;;;;:::i;:::-;;:::i;22444:281::-;;;;;;;;;;-1:-1:-1;22444:281:0;;;;;:::i;:::-;;:::i;17574:75::-;;;;;;;;;;;;;:::i;16354:58::-;;;;;;;;;;;;;;;;17855:271;;;;;;;;;;-1:-1:-1;17855:271:0;;;;;:::i;:::-;;:::i;16320:27::-;;;;;;;;;;;;;;;;8209:176;;;;;;;;;;-1:-1:-1;8209:176:0;;;;;:::i;:::-;;:::i;22341:95::-;;;;;;;;;;-1:-1:-1;22341:95:0;;;;;:::i;:::-;;:::i;5644:238::-;;;;;;;;;;-1:-1:-1;5644:238:0;;;;;:::i;:::-;;:::i;16287:26::-;;;;;;;;;;;;;;;;6931:102;6987:13;7020:5;7013:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6931:102;:::o;9131:228::-;9241:4;4118:10;9297:32;4118:10;9313:7;9322:6;9297:8;:32::i;:::-;9347:4;9340:11;;;9131:228;;;;;:::o;21749:113::-;4624:13;:11;:13::i;:::-;21819:24:::1;:35:::0;21749:113::o;21519:101::-;4624:13;:11;:13::i;:::-;21590:10:::1;:22:::0;;-1:-1:-1;;;;;;21590:22:0::1;-1:-1:-1::0;;;;;21590:22:0;;;::::1;::::0;;;::::1;::::0;;21519:101::o;9939:297::-;10072:4;4118:10;10130:38;10146:4;4118:10;10161:6;10130:15;:38::i;:::-;10179:27;10189:4;10195:2;10199:6;10179:9;:27::i;:::-;-1:-1:-1;10224:4:0;;9939:297;-1:-1:-1;;;;9939:297:0:o;11648:265::-;11763:4;4118:10;11819:64;4118:10;11835:7;11872:10;11844:25;4118:10;11835:7;11844:9;:25::i;:::-;:38;;;;:::i;:::-;11819:8;:64::i;17657:190::-;4624:13;:11;:13::i;:::-;17744:9:::1;17739:101;17759:19:::0;;::::1;17739:101;;;17823:5;17800:7;:20;17808:8;;17817:1;17808:11;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;17800:20:0::1;::::0;;::::1;::::0;::::1;::::0;;;;;;-1:-1:-1;17800:20:0;:28;;-1:-1:-1;;17800:28:0::1;::::0;::::1;;::::0;;;::::1;::::0;;17780:3;::::1;::::0;::::1;:::i;:::-;;;;17739:101;;;;17657:190:::0;;:::o;22966:319::-;4624:13;:11;:13::i;:::-;23125:37:::1;::::0;-1:-1:-1;;;23125:37:0;;23156:4:::1;23125:37;::::0;::::1;1546:51:1::0;23111:11:0::1;::::0;-1:-1:-1;;;;;23125:22:0;::::1;::::0;::::1;::::0;1519:18:1;;23125:37:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;23111:51;;23180:12;-1:-1:-1::0;;;;;23173:29:0::1;;23217:13;23251:3;23245;:9;:21;;23263:3;23245:21;;;23257:3;23245:21;23173:104;::::0;-1:-1:-1;;;;;;23173:104:0::1;::::0;;;;;;-1:-1:-1;;;;;6032:32:1;;;23173:104:0::1;::::0;::::1;6014:51:1::0;6081:18;;;6074:34;5987:18;;23173:104:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;23100:185;22966:319:::0;;;:::o;22733:105::-;4624:13;:11;:13::i;:::-;22806:10:::1;:24:::0;22733:105::o;21628:113::-;4624:13;:11;:13::i;:::-;21705:16:::1;:28:::0;;-1:-1:-1;;;;;;21705:28:0::1;-1:-1:-1::0;;;;;21705:28:0;;;::::1;::::0;;;::::1;::::0;;21628:113::o;22846:112::-;4624:13;:11;:13::i;:::-;22899:51:::1;::::0;22907:10:::1;::::0;22928:21:::1;22899:51:::0;::::1;;;::::0;::::1;::::0;;;22928:21;22907:10;22899:51;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;22846:112::o:0;5386:103::-;4624:13;:11;:13::i;:::-;5451:30:::1;5478:1;5451:18;:30::i;:::-;5386:103::o:0;22106:227::-;4624:13;:11;:13::i;:::-;22217:9:::1;22212:114;22232:20:::0;;::::1;22212:114;;;22309:5;22274:18;:32;22293:9;;22303:1;22293:12;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;22274:32:0::1;::::0;;::::1;::::0;::::1;::::0;;;;;;-1:-1:-1;22274:32:0;:40;;-1:-1:-1;;22274:40:0::1;::::0;::::1;;::::0;;;::::1;::::0;;22254:3;::::1;::::0;::::1;:::i;:::-;;;;22212:114;;21870:228:::0;4624:13;:11;:13::i;:::-;21983:9:::1;21978:113;21998:20:::0;;::::1;21978:113;;;22075:4;22040:18;:32;22059:9;;22069:1;22059:12;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;22040:32:0::1;::::0;;::::1;::::0;::::1;::::0;;;;;;-1:-1:-1;22040:32:0;:39;;-1:-1:-1;;22040:39:0::1;::::0;::::1;;::::0;;;::::1;::::0;;22020:3;::::1;::::0;::::1;:::i;:::-;;;;21978:113;;6755:106:::0;6813:13;6846:7;6839:14;;;;;:::i;10739:500::-;10859:4;4118:10;10859:4;10942:25;4118:10;10959:7;10942:9;:25::i;:::-;10915:52;;11020:15;11000:16;:35;;10978:122;;;;-1:-1:-1;;;10978:122:0;;6603:2:1;10978:122:0;;;6585:21:1;6642:2;6622:18;;;6615:30;6681:34;6661:18;;;6654:62;-1:-1:-1;;;6732:18:1;;;6725:35;6777:19;;10978:122:0;;;;;;;;;11136:60;11145:5;11152:7;11180:15;11161:16;:34;11136:8;:60::i;8591:220::-;8697:4;4118:10;8753:28;4118:10;8770:2;8774:6;8753:9;:28::i;22444:281::-;4624:13;:11;:13::i;:::-;22584:8:::1;:20:::0;;;22615:7:::1;:18:::0;;;22644:6:::1;:16:::0;;;22653:7;22687:20:::1;22625:8:::0;22595:9;22687:20:::1;:::i;:::-;:30;;;;:::i;:::-;22671:13;:46:::0;-1:-1:-1;;;22444:281:0:o;17574:75::-;4624:13;:11;:13::i;:::-;17627:7:::1;:14:::0;;-1:-1:-1;;17627:14:0::1;17637:4;17627:14;::::0;;17574:75::o;17855:271::-;4624:13;:11;:13::i;:::-;17948:8;17934:11:::1;17974:145;17997:3;17993:1;:7;17974:145;;;18041:4;18018:7;:20;18026:8;;18035:1;18026:11;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;18018:20:0::1;::::0;;::::1;::::0;::::1;::::0;;;;;;-1:-1:-1;18018:20:0;:27;;-1:-1:-1;;18018:27:0::1;::::0;::::1;;::::0;;;::::1;::::0;;-1:-1:-1;18089:3:0::1;17974:145;;;;17923:203;17855:271:::0;;:::o;8209:176::-;-1:-1:-1;;;;;8350:18:0;;;8323:7;8350:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;8209:176::o;22341:95::-;4624:13;:11;:13::i;:::-;22410:7:::1;:18:::0;22341:95::o;5644:238::-;4624:13;:11;:13::i;:::-;-1:-1:-1;;;;;5747:22:0;::::1;5725:110;;;::::0;-1:-1:-1;;;5725:110:0;;7009:2:1;5725:110:0::1;::::0;::::1;6991:21:1::0;7048:2;7028:18;;;7021:30;7087:34;7067:18;;;7060:62;-1:-1:-1;;;7138:18:1;;;7131:36;7184:19;;5725:110:0::1;6807:402:1::0;5725:110:0::1;5846:28;5865:8;5846:18;:28::i;13948:380::-:0;-1:-1:-1;;;;;14084:19:0;;14076:68;;;;-1:-1:-1;;;14076:68:0;;7416:2:1;14076:68:0;;;7398:21:1;7455:2;7435:18;;;7428:30;7494:34;7474:18;;;7467:62;-1:-1:-1;;;7545:18:1;;;7538:34;7589:19;;14076:68:0;7214:400:1;14076:68:0;-1:-1:-1;;;;;14163:21:0;;14155:68;;;;-1:-1:-1;;;14155:68:0;;7821:2:1;14155:68:0;;;7803:21:1;7860:2;7840:18;;;7833:30;7899:34;7879:18;;;7872:62;-1:-1:-1;;;7950:18:1;;;7943:32;7992:19;;14155:68:0;7619:398:1;14155:68:0;-1:-1:-1;;;;;14236:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;14288:32;;1986:25:1;;;14288:32:0;;1959:18:1;14288:32:0;;;;;;;13948:380;;;:::o;4903:132::-;4811:6;;-1:-1:-1;;;;;4811:6:0;4118:10;4967:23;4959:68;;;;-1:-1:-1;;;4959:68:0;;8224:2:1;4959:68:0;;;8206:21:1;;;8243:18;;;8236:30;8302:34;8282:18;;;8275:62;8354:18;;4959:68:0;8022:356:1;14619:502:0;14754:24;14781:25;14791:5;14798:7;14781:9;:25::i;:::-;14754:52;;-1:-1:-1;;14821:16:0;:37;14817:297;;14921:6;14901:16;:26;;14875:117;;;;-1:-1:-1;;;14875:117:0;;8585:2:1;14875:117:0;;;8567:21:1;8624:2;8604:18;;;8597:30;8663:31;8643:18;;;8636:59;8712:18;;14875:117:0;8383:353:1;14875:117:0;15036:51;15045:5;15052:7;15080:6;15061:16;:25;15036:8;:51::i;18134:1585::-;-1:-1:-1;;;;;18267:13:0;;;;;;:7;:13;;;;;;;;18266:14;18258:42;;;;-1:-1:-1;;;18258:42:0;;8943:2:1;18258:42:0;;;8925:21:1;8982:2;8962:18;;;8955:30;-1:-1:-1;;;9001:18:1;;;8994:45;9056:18;;18258:42:0;8741:339:1;18258:42:0;-1:-1:-1;;;;;18329:24:0;;;;;;:18;:24;;;;;;;;;:63;;-1:-1:-1;;;;;;18370:22:0;;;;;;:18;:22;;;;;;;;18329:63;:96;;;-1:-1:-1;18409:16:0;;;;;;;18329:96;18311:1401;;;18452:33;18468:4;18474:2;18478:6;18452:15;:33::i;18311:1401::-;18526:7;;;;18518:32;;;;-1:-1:-1;;;18518:32:0;;9287:2:1;18518:32:0;;;9269:21:1;9326:2;9306:18;;;9299:30;-1:-1:-1;;;9345:18:1;;;9338:42;9397:18;;18518:32:0;9085:336:1;18518:32:0;18565:14;18604:13;-1:-1:-1;;;;;18598:19:0;:2;-1:-1:-1;;;;;18598:19:0;;18594:932;;18670:4;18638:11;7213:18;;;;;;;;;;;;18742:24;;-1:-1:-1;;;;;18725:13:0;7213:18;;;;;;;;;18638:11;18769:5;;18715:51;;;;:::i;:::-;:59;;;;:::i;:::-;18695:79;;18826:9;18819:3;:16;18793:193;;18889:13;18893:9;18889:1;:13;:::i;:::-;18882:3;:20;18878:45;;18910:13;18914:9;18910:1;:13;:::i;:::-;18904:19;;18878:45;18946:20;18962:3;18946:15;:20::i;:::-;19041:5;19025:13;;19016:6;:22;;;;:::i;:::-;:30;;;;:::i;:::-;19004:42;;18619:443;;18594:932;;;19080:13;-1:-1:-1;;;;;19072:21:0;:4;-1:-1:-1;;;;;19072:21:0;;19068:458;;19145:5;19135:7;;19126:6;:16;;;;:::i;:::-;:24;;;;:::i;:::-;19114:36;;19237:10;;19224:9;19215:6;19199:13;19209:2;-1:-1:-1;;;;;7213:18:0;7186:7;7213:18;;;;;;;;;;;;7096:143;19199:13;:22;;;;:::i;:::-;:34;;;;:::i;:::-;:48;;19169:156;;;;-1:-1:-1;;;19169:156:0;;;;;;;:::i;:::-;19068:458;;;19422:10;;19412:6;19396:13;19406:2;-1:-1:-1;;;;;7213:18:0;7186:7;7213:18;;;;;;;;;;;;7096:143;19396:13;:22;;;;:::i;:::-;:36;;19366:144;;;;-1:-1:-1;;;19366:144:0;;;;;;;:::i;:::-;19540:45;19556:4;19562:2;19566:18;19575:9;19566:6;:18;:::i;:::-;19540:15;:45::i;:::-;19604:13;;19600:101;;19638:47;19654:4;19668;19675:9;19638:15;:47::i;6042:191::-;6135:6;;;-1:-1:-1;;;;;6152:17:0;;;-1:-1:-1;;;;;;6152:17:0;;;;;;;6185:40;;6135:6;;;6152:17;6135:6;;6185:40;;6116:16;;6185:40;6105:128;6042:191;:::o;15129:776::-;-1:-1:-1;;;;;15260:18:0;;15252:68;;;;-1:-1:-1;;;15252:68:0;;10559:2:1;15252:68:0;;;10541:21:1;10598:2;10578:18;;;10571:30;10637:34;10617:18;;;10610:62;-1:-1:-1;;;10688:18:1;;;10681:35;10733:19;;15252:68:0;10357:401:1;15252:68:0;-1:-1:-1;;;;;15339:16:0;;15331:64;;;;-1:-1:-1;;;15331:64:0;;10965:2:1;15331:64:0;;;10947:21:1;11004:2;10984:18;;;10977:30;11043:34;11023:18;;;11016:62;-1:-1:-1;;;11094:18:1;;;11087:33;11137:19;;15331:64:0;10763:399:1;15331:64:0;-1:-1:-1;;;;;15430:15:0;;15408:19;15430:15;;;;;;;;;;;15478:21;;;;15456:109;;;;-1:-1:-1;;;15456:109:0;;11369:2:1;15456:109:0;;;11351:21:1;11408:2;11388:18;;;11381:30;11447:34;11427:18;;;11420:62;-1:-1:-1;;;11498:18:1;;;11491:36;11544:19;;15456:109:0;11167:402:1;15456:109:0;-1:-1:-1;;;;;15601:15:0;;;:9;:15;;;;;;;;;;;15619:20;;;15601:38;;15819:13;;;;;;;;;;:23;;;;;;15871:26;;1986:25:1;;;15819:13:0;;15871:26;;1959:18:1;15871:26:0;;;;;;;15241:664;15129:776;;;:::o;19727:928::-;16703:16;:23;;-1:-1:-1;;16703:23:0;;;;;19838:13:::1;::::0;16703:23;19866:19;;;19862:32:::1;;19887:7;;;19862:32;19904:16;19950:1;19940:7;;:11;;;;:::i;:::-;19923:28;::::0;:14;:28:::1;:::i;:::-;19904:47:::0;-1:-1:-1;19962:14:0::1;20013::::0;19979:31:::1;19904:47:::0;19979:20;:31:::1;:::i;:::-;:48;;;;:::i;:::-;19962:65;;20040:25;20058:6;20040:17;:25::i;:::-;20154:8;::::0;20094:21:::1;::::0;20076:15:::1;::::0;20165:8;;20144:18:::1;::::0;20094:21;20144:18:::1;:::i;:::-;:29;;;;:::i;:::-;20128:45;;20184:19;20225:8;20216:6;;20206:7;:16;;;;:::i;:::-;:27;;;;:::i;:::-;20258:7;::::0;20184:49;;-1:-1:-1;20258:11:0;20254:168:::1;;20286:124;20318:29;20341:6:::0;20318:20;:29:::1;:::i;:::-;20384:11:::0;20366:15:::1;20376:5:::0;20366:7;:15:::1;:::i;:::-;:29;;;;:::i;:::-;20286:13;:124::i;:::-;20436:15:::0;;20432:95:::1;;20476:16;::::0;20468:47:::1;::::0;-1:-1:-1;;;;;20476:16:0;;::::1;::::0;20468:47;::::1;;;::::0;20503:11;;20476:16:::1;20468:47:::0;20476:16;20468:47;20503:11;20476:16;20468:47;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;20432:95;20543:21;:25:::0;20539:109:::1;;20593:10;::::0;20585:51:::1;::::0;-1:-1:-1;;;;;20593:10:0;;::::1;::::0;20614:21:::1;20585:51:::0;::::1;;;::::0;20593:10:::1;20585:51:::0;20593:10;20585:51;20614:21;20593:10;20585:51;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;20539:109;19802:853;;;;;;16737:1;-1:-1:-1::0;16749:16:0;:24;;-1:-1:-1;;16749:24:0;;;19727:928::o;20663:413::-;16703:16;:23;;-1:-1:-1;;16703:23:0;;;;;20766:16:::1;::::0;;20780:1:::1;20766:16:::0;;;;;::::1;::::0;;-1:-1:-1;;20766:16:0::1;::::0;::::1;::::0;;::::1;::::0;::::1;;::::0;-1:-1:-1;20766:16:0::1;20742:40;;20811:4;20793;20798:1;20793:7;;;;;;;;:::i;:::-;;;;;;:23;-1:-1:-1::0;;;;;20793:23:0::1;;;-1:-1:-1::0;;;;;20793:23:0::1;;;::::0;::::1;20837:15;-1:-1:-1::0;;;;;20837:20:0::1;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;20827:4;20832:1;20827:7;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;20827:32:0;;::::1;:7;::::0;;::::1;::::0;;;;;:32;20870:198:::1;::::0;-1:-1:-1;;;20870:198:0;;:15:::1;:66:::0;;::::1;::::0;::::1;::::0;:198:::1;::::0;20951:11;;20977:1:::1;::::0;20993:4;;21020::::1;::::0;21041:15:::1;::::0;20870:198:::1;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;;16749:16:0;:24;;-1:-1:-1;;16749:24:0;;;-1:-1:-1;;;;20663:413:0:o;21084:325::-;16703:16;:23;;-1:-1:-1;;16703:23:0;;;;;-1:-1:-1;;;;;21203:15:0::1;:31;;21242:9:::0;21275:4:::1;21295:11:::0;16703:23;;21353:7:::1;4811:6:::0;;-1:-1:-1;;;;;4811:6:0;;4738:87;21353:7:::1;21203:198;::::0;::::1;::::0;;;-1:-1:-1;;;;;;21203:198:0;;;-1:-1:-1;;;;;13306:15:1;;;21203:198:0::1;::::0;::::1;13288:34:1::0;13338:18;;;13331:34;;;;13381:18;;;13374:34;;;;13424:18;;;13417:34;13488:15;;;13467:19;;;13460:44;21375:15:0::1;13520:19:1::0;;;13513:35;13222:19;;21203:198:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;16749:16:0;:24;;-1:-1:-1;;16749:24:0;;;-1:-1:-1;;;21084:325:0:o;14:548:1:-;126:4;155:2;184;173:9;166:21;216:6;210:13;259:6;254:2;243:9;239:18;232:34;284:1;294:140;308:6;305:1;302:13;294:140;;;403:14;;;399:23;;393:30;369:17;;;388:2;365:26;358:66;323:10;;294:140;;;298:3;483:1;478:2;469:6;458:9;454:22;450:31;443:42;553:2;546;542:7;537:2;529:6;525:15;521:29;510:9;506:45;502:54;494:62;;;;14:548;;;;:::o;567:131::-;-1:-1:-1;;;;;642:31:1;;632:42;;622:70;;688:1;685;678:12;703:315;771:6;779;832:2;820:9;811:7;807:23;803:32;800:52;;;848:1;845;838:12;800:52;887:9;874:23;906:31;931:5;906:31;:::i;:::-;956:5;1008:2;993:18;;;;980:32;;-1:-1:-1;;;703:315:1:o;1215:180::-;1274:6;1327:2;1315:9;1306:7;1302:23;1298:32;1295:52;;;1343:1;1340;1333:12;1295:52;-1:-1:-1;1366:23:1;;1215:180;-1:-1:-1;1215:180:1:o;2022:247::-;2081:6;2134:2;2122:9;2113:7;2109:23;2105:32;2102:52;;;2150:1;2147;2140:12;2102:52;2189:9;2176:23;2208:31;2233:5;2208:31;:::i;:::-;2258:5;2022:247;-1:-1:-1;;;2022:247:1:o;2274:456::-;2351:6;2359;2367;2420:2;2408:9;2399:7;2395:23;2391:32;2388:52;;;2436:1;2433;2426:12;2388:52;2475:9;2462:23;2494:31;2519:5;2494:31;:::i;:::-;2544:5;-1:-1:-1;2601:2:1;2586:18;;2573:32;2614:33;2573:32;2614:33;:::i;:::-;2274:456;;2666:7;;-1:-1:-1;;;2720:2:1;2705:18;;;;2692:32;;2274:456::o;2924:615::-;3010:6;3018;3071:2;3059:9;3050:7;3046:23;3042:32;3039:52;;;3087:1;3084;3077:12;3039:52;3127:9;3114:23;3156:18;3197:2;3189:6;3186:14;3183:34;;;3213:1;3210;3203:12;3183:34;3251:6;3240:9;3236:22;3226:32;;3296:7;3289:4;3285:2;3281:13;3277:27;3267:55;;3318:1;3315;3308:12;3267:55;3358:2;3345:16;3384:2;3376:6;3373:14;3370:34;;;3400:1;3397;3390:12;3370:34;3453:7;3448:2;3438:6;3435:1;3431:14;3427:2;3423:23;3419:32;3416:45;3413:65;;;3474:1;3471;3464:12;3413:65;3505:2;3497:11;;;;;3527:6;;-1:-1:-1;2924:615:1;;-1:-1:-1;;;;2924:615:1:o;4018:316::-;4095:6;4103;4111;4164:2;4152:9;4143:7;4139:23;4135:32;4132:52;;;4180:1;4177;4170:12;4132:52;-1:-1:-1;;4203:23:1;;;4273:2;4258:18;;4245:32;;-1:-1:-1;4324:2:1;4309:18;;;4296:32;;4018:316;-1:-1:-1;4018:316:1:o;4339:388::-;4407:6;4415;4468:2;4456:9;4447:7;4443:23;4439:32;4436:52;;;4484:1;4481;4474:12;4436:52;4523:9;4510:23;4542:31;4567:5;4542:31;:::i;:::-;4592:5;-1:-1:-1;4649:2:1;4634:18;;4621:32;4662:33;4621:32;4662:33;:::i;:::-;4714:7;4704:17;;;4339:388;;;;;:::o;4732:380::-;4811:1;4807:12;;;;4854;;;4875:61;;4929:4;4921:6;4917:17;4907:27;;4875:61;4982:2;4974:6;4971:14;4951:18;4948:38;4945:161;;5028:10;5023:3;5019:20;5016:1;5009:31;5063:4;5060:1;5053:15;5091:4;5088:1;5081:15;4945:161;;4732:380;;;:::o;5117:127::-;5178:10;5173:3;5169:20;5166:1;5159:31;5209:4;5206:1;5199:15;5233:4;5230:1;5223:15;5249:125;5314:9;;;5335:10;;;5332:36;;;5348:18;;:::i;5379:127::-;5440:10;5435:3;5431:20;5428:1;5421:31;5471:4;5468:1;5461:15;5495:4;5492:1;5485:15;5511:135;5550:3;5571:17;;;5568:43;;5591:18;;:::i;:::-;-1:-1:-1;5638:1:1;5627:13;;5511:135::o;5651:184::-;5721:6;5774:2;5762:9;5753:7;5749:23;5745:32;5742:52;;;5790:1;5787;5780:12;5742:52;-1:-1:-1;5813:16:1;;5651:184;-1:-1:-1;5651:184:1:o;6119:277::-;6186:6;6239:2;6227:9;6218:7;6214:23;6210:32;6207:52;;;6255:1;6252;6245:12;6207:52;6287:9;6281:16;6340:5;6333:13;6326:21;6319:5;6316:32;6306:60;;6362:1;6359;6352:12;9426:168;9499:9;;;9530;;9547:15;;;9541:22;;9527:37;9517:71;;9568:18;;:::i;9599:217::-;9639:1;9665;9655:132;;9709:10;9704:3;9700:20;9697:1;9690:31;9744:4;9741:1;9734:15;9772:4;9769:1;9762:15;9655:132;-1:-1:-1;9801:9:1;;9599:217::o;9821:128::-;9888:9;;;9909:11;;;9906:37;;;9923:18;;:::i;9954:398::-;10156:2;10138:21;;;10195:2;10175:18;;;10168:30;10234:34;10229:2;10214:18;;10207:62;-1:-1:-1;;;10300:2:1;10285:18;;10278:32;10342:3;10327:19;;9954:398::o;11706:251::-;11776:6;11829:2;11817:9;11808:7;11804:23;11800:32;11797:52;;;11845:1;11842;11835:12;11797:52;11877:9;11871:16;11896:31;11921:5;11896:31;:::i;11962:980::-;12224:4;12272:3;12261:9;12257:19;12303:6;12292:9;12285:25;12329:2;12367:6;12362:2;12351:9;12347:18;12340:34;12410:3;12405:2;12394:9;12390:18;12383:31;12434:6;12469;12463:13;12500:6;12492;12485:22;12538:3;12527:9;12523:19;12516:26;;12577:2;12569:6;12565:15;12551:29;;12598:1;12608:195;12622:6;12619:1;12616:13;12608:195;;;12687:13;;-1:-1:-1;;;;;12683:39:1;12671:52;;12778:15;;;;12743:12;;;;12719:1;12637:9;12608:195;;;-1:-1:-1;;;;;;;12859:32:1;;;;12854:2;12839:18;;12832:60;-1:-1:-1;;;12923:3:1;12908:19;12901:35;12820:3;11962:980;-1:-1:-1;;;11962:980:1:o;13559:306::-;13647:6;13655;13663;13716:2;13704:9;13695:7;13691:23;13687:32;13684:52;;;13732:1;13729;13722:12;13684:52;13761:9;13755:16;13745:26;;13811:2;13800:9;13796:18;13790:25;13780:35;;13855:2;13844:9;13840:18;13834:25;13824:35;;13559:306;;;;;:::o

Swarm Source

ipfs://4e95d8bde4cf157c4bbc4b66a9c2f3990296363f8a366550226123d10f469eca
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.