ETH Price: $3,482.50 (+0.61%)
Gas: 5 Gwei

Token

CHAD (CHAD)
 

Overview

Max Total Supply

1,000,000 CHAD

Holders

573

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
98.4 CHAD

Value
$0.00
0xe04e8afeae36d99dc370630f1333d43f87f52173
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:
Chad

Compiler Version
v0.8.20+commit.a1b79de6

Optimization Enabled:
Yes with 200 runs

Other Settings:
paris EvmVersion
File 1 of 9 : Chad.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.20;

import {ERC20} from "openzeppelin-contracts/contracts/token/ERC20/ERC20.sol";
import {IUniswapV2Router02} from "../lib/IUniswapV2Router02.sol";
import {IUniswapV2Factory} from "../lib/IUniswapV2Factory.sol";
import {Governable} from "../access/Governable.sol";

contract Chad is ERC20, Governable {
    IUniswapV2Router02 public uniswapV2Router;

    //address data-sets
    address public unibotAddress = address(0xf819d9Cb1c2A819Fd991781A822dE3ca8607c3C9);
    address public teamWallet = address(0x76Fa3D6bf5560231C96f66b7c0623565B3511a6A);
    address public prizePoolWallet = address(0xEe79ce770607e84484651509ACae81E99a8679ee);
    address public unibotBuyWallet = address(0x76Fa3D6bf5560231C96f66b7c0623565B3511a6A);
    address public uniswapV2Pair;

    //bool data-sets
    bool public isLimitActive = true;
    bool public isTradingOpen = false;
    bool public swapEnabled = false;
    bool public isAutoBuyUnibotActive = false;
    bool private swapping;
    bool public isInitialized;

    //int data-sets
    uint256 public _buyUnibotBuyFee = 10; // 1%
    uint256 public _buyPrizePoolFee = 20; // 2%
    uint256 public _buyLpFee = 5; // 0.5%
    uint256 public _buyTeamFee = 5; // 0.5%
    uint256 public buyTotalFees = _buyLpFee + _buyTeamFee + _buyUnibotBuyFee + _buyPrizePoolFee;

    uint256 public _sellUnibotBuyFee = 10; // 1%
    uint256 public _sellPrizePoolFee = 20; // 2%
    uint256 public _sellLpFee = 5; // 0.5%
    uint256 public _sellTeamFee = 5; // 0.5%
    uint256 public sellTotalFees = _sellLpFee + _sellTeamFee + _sellUnibotBuyFee + _sellPrizePoolFee;

    uint256 public _unibotBuyTokenShare;
    uint256 public _prizeTokenShare;
    uint256 public _lpTokenShare;
    uint256 public _teamTokenShare;

    uint256 public swapTokensAtAmount;

    uint256 public competitionStart;

    //mapping data-sets
    mapping(address => bool) public blacklisted;
    mapping(address => bool) public isExcludedFromFees;
    mapping(address => bool) public automatedMarketMakerPairs;

    event CollectedTax(uint256 ethBalance, uint256 ethForLiquiity, uint256 ethForPrizePool);
    event ExcludeFromFees(address indexed account, bool isExcluded);
    event SetAutomatedMarketMakerPair(address indexed pair, bool indexed value);
    event SwapAndLiquify(uint256 tokensSwapped, uint256 ethReceived, uint256 tokensIntoLiquidity);

    constructor() ERC20("CHAD", "CHAD") {
        uint256 totalSupply = 1_000_000 * 1e18;
        _mint(msg.sender, totalSupply);
    }

    // dataset
    function initContract() external onlyGov {
        require(!isInitialized, "Contract already initialised");

        //DEX data-sets
        uniswapV2Router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D);

        uniswapV2Pair = IUniswapV2Factory(uniswapV2Router.factory()).createPair(address(this), uniswapV2Router.WETH());
        _setAutomatedMarketMakerPair(address(uniswapV2Pair), true);

        swapTokensAtAmount = (this.totalSupply() * 5) / 10000;
        competitionStart = 1702911600; // 10am EST 18th DEC first competition

        excludeFromFees(this.gov(), true);
        excludeFromFees(address(this), true);
        excludeFromFees(address(0xdead), true);

        isInitialized = true;
    }

    function launchChad() external onlyGov {
        isTradingOpen = true;
        swapEnabled = true;
    }

    function setIsLimitActive(bool _isActive) external onlyGov {
        isLimitActive = _isActive;
    }

    function setIsTradingOpen(bool _isOpen) external onlyGov {
        isTradingOpen = _isOpen;
    }

    function setSwapEnabled(bool _swapEnabled) external onlyGov {
        swapEnabled = _swapEnabled;
    }

    function setIsAutoBuyUnibotActive(bool _isActive) external onlyGov {
        isAutoBuyUnibotActive = _isActive;
    }

    function setUniswapRouterv2(address _uniswapV2Router) public onlyGov {
        uniswapV2Router = IUniswapV2Router02(_uniswapV2Router);
    }

    function setUnibotAddress(address _unibotAddress) public onlyGov {
        unibotAddress = _unibotAddress;
    }

    function setCompetitionStart(uint256 _competitionStart) public onlyGov {
        competitionStart = _competitionStart;
    }

    function setSwapTokensAtAmount(uint256 _amount) external onlyGov {
        require(_amount <= (totalSupply() * 5) / 1000, "Swap limit cannot be higher than 0.5% total supply.");
        swapTokensAtAmount = _amount;
    }

    function setBuyFees(uint256 _lpFee, uint256 _unibotFee, uint256 _prizePoolFee, uint256 _teamFee) external onlyGov {
        _buyPrizePoolFee = _prizePoolFee;
        _buyUnibotBuyFee = _unibotFee;
        _buyLpFee = _lpFee;
        _buyTeamFee = _teamFee;
        buyTotalFees = _buyLpFee + _buyTeamFee + _buyPrizePoolFee + _buyUnibotBuyFee;
        require(buyTotalFees <= 40, "Buy fee max should 4%");
    }

    function setSellFees(uint256 _lpFee, uint256 _unibotFee, uint256 _prizePoolFee, uint256 _teamFee)
        external
        onlyGov
    {
        _sellPrizePoolFee = _prizePoolFee;
        _sellUnibotBuyFee = _unibotFee;
        _sellLpFee = _lpFee;
        _sellTeamFee = _teamFee;
        sellTotalFees = _sellLpFee + _sellTeamFee + _sellPrizePoolFee + _sellUnibotBuyFee;
        require(sellTotalFees <= 40, "Sell Max must be 4%");
    }

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

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

        _setAutomatedMarketMakerPair(pair, value);
    }

    function setTeamWallet(address _account) external onlyGov {
        teamWallet = _account;
    }

    function setUnibotBuyWallet(address _account) external onlyGov {
        unibotBuyWallet = _account;
    }

    function setPrizePoolWallet(address _account) external onlyGov {
        prizePoolWallet = _account;
    }

    function blacklist(address account) public onlyGov {
        blacklisted[account] = true;
    }

    function unblacklist(address account) public onlyGov {
        blacklisted[account] = false;
    }

    function withdrawEth(address _to) external onlyGov {
        (bool success,) = address(_to).call{value: address(this).balance}("");
        require(success);
    }

    function withdrawTaxesEarly(address _to) external onlyGov {
        uint256 totalTaxes = taxedTokens();
        super._transfer(address(this), _to, totalTaxes);

        _lpTokenShare = 0;
        _unibotBuyTokenShare = 0;
        _teamTokenShare = 0;
        _prizeTokenShare = 0;
    }

    function taxedTokens() public view returns (uint256) {
        return (_lpTokenShare + _unibotBuyTokenShare + _teamTokenShare + _prizeTokenShare);
    }

    function _transfer(address from, address to, uint256 amount) internal virtual override {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");
        require(!blacklisted[from], "Sender blacklisted");
        require(!blacklisted[to], "Receiver blacklisted");

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

        if (isLimitActive) {
            if (from != this.gov() && to != this.gov() && to != address(0) && to != address(0xdead) && !swapping) {
                if (!isTradingOpen) {
                    require(isExcludedFromFees[from] || isExcludedFromFees[to], "Trading is not active.");
                }

                if (block.timestamp < competitionStart) {
                    require(isExcludedFromFees[from] || isExcludedFromFees[to], "Trading has not started.");
                }
            }
        }

        uint256 contractTokenBalance = this.balanceOf(address(this));
        bool canSwap = contractTokenBalance >= swapTokensAtAmount;
        if (
            canSwap && swapEnabled && !swapping && !automatedMarketMakerPairs[from] && !isExcludedFromFees[from]
                && !isExcludedFromFees[to]
        ) {
            swapping = true;
            _swapNow();
            swapping = false;
        }

        bool takeFee = true;
        if (isExcludedFromFees[from] || isExcludedFromFees[to]) {
            takeFee = false;
        }

        if (takeFee) {
            uint256 fees = 0;
            // on sell
            if (automatedMarketMakerPairs[to] && sellTotalFees > 0) {
                fees = amount * sellTotalFees / 1000;
                _lpTokenShare += (fees * _sellLpFee) / sellTotalFees;
                _prizeTokenShare += (fees * _sellPrizePoolFee) / sellTotalFees;
                _teamTokenShare += (fees * _sellTeamFee) / sellTotalFees;
                _unibotBuyTokenShare += (fees * _sellUnibotBuyFee) / sellTotalFees;
            }
            // on buy
            else if (automatedMarketMakerPairs[from] && buyTotalFees > 0) {
                fees = amount * buyTotalFees / 1000;
                _lpTokenShare += (fees * _buyLpFee) / buyTotalFees;
                _prizeTokenShare += (fees * _buyPrizePoolFee) / buyTotalFees;
                _teamTokenShare += (fees * _buyTeamFee) / buyTotalFees;
                _unibotBuyTokenShare += (fees * _buyUnibotBuyFee) / buyTotalFees;
            }

            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, address(this), block.timestamp
        );
    }

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

    function _unibotAutoBuy(uint256 ethAmount) private {
        if (ethAmount > 0) {
            address[] memory path = new address[](2);
            path[0] = uniswapV2Router.WETH();
            path[1] = unibotAddress;
            uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: ethAmount}(
                0, path, teamWallet, block.timestamp
            );
        }
    }

    function _swapNow() private {
        uint256 contractBalance = this.balanceOf(address(this));
        uint256 totalTokensToSwap = taxedTokens();
        bool success;

        if (contractBalance == 0 || totalTokensToSwap == 0) {
            return;
        }

        if (contractBalance > swapTokensAtAmount * 20) {
            contractBalance = swapTokensAtAmount * 20;
        }

        uint256 liquidityTokens = (contractBalance * _lpTokenShare) / totalTokensToSwap / 2;
        uint256 amountToSwapForETH = contractBalance - liquidityTokens;

        uint256 initialETHBalance = address(this).balance;

        _swapTokensForEth(amountToSwapForETH);

        uint256 chadLp = _lpTokenShare / 2;

        uint256 ethBalance = address(this).balance - initialETHBalance;
        uint256 ethForTeam = ethBalance * _teamTokenShare / (totalTokensToSwap - chadLp);
        uint256 ethForPrizePool = ethBalance * _prizeTokenShare / (totalTokensToSwap - chadLp);
        uint256 ethForBuyback = ethBalance * _unibotBuyTokenShare / (totalTokensToSwap - chadLp);

        uint256 ethForLiquidity = ethBalance - ethForTeam - ethForPrizePool - ethForBuyback;

        emit CollectedTax(ethBalance, ethForLiquidity, ethForPrizePool);

        (success,) = address(teamWallet).call{value: ethForTeam}("");
        (success,) = address(prizePoolWallet).call{value: ethForPrizePool}("");

        if (liquidityTokens > 0 && ethForLiquidity > 0) {
            _addLiquidity(liquidityTokens, ethForLiquidity);
            emit SwapAndLiquify(liquidityTokens, ethForLiquidity, _lpTokenShare);
        }

        if (isAutoBuyUnibotActive) {
            _unibotAutoBuy(ethForBuyback);
        } else {
            (success,) = address(unibotBuyWallet).call{value: ethForBuyback}("");
        }

        _lpTokenShare = 0;
        _prizeTokenShare = 0;
        _unibotBuyTokenShare = 0;
        _teamTokenShare = 0;
    }

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

    receive() external payable {}
}

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

pragma solidity ^0.8.20;

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

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

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

        emit Transfer(from, to, value);
    }

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

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

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

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

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

File 3 of 9 : IUniswapV2Router02.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.20;

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 swapExactTokensForTokensSupportingFeeOnTransferTokens(
        uint256 amountIn,
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external;

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

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

File 4 of 9 : IUniswapV2Factory.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.20;

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 5 of 9 : Governable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.20;

contract Governable {
    address public gov;

    constructor() {
        gov = msg.sender;
    }

    modifier onlyGov() {
        require(msg.sender == gov, "Governable: forbidden");
        _;
    }

    function setGov(address _gov) external onlyGov {
        gov = _gov;
    }
}

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

pragma solidity ^0.8.20;

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.20;

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

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

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

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

File 8 of 9 : Context.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (utils/Context.sol)

pragma solidity ^0.8.20;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

Settings
{
  "remappings": [
    "/lib/openzeppelin-contracts/contracts/=@openzeppelin/contracts/",
    "@openzeppelin/contracts-upgradeable/=contracts/lib/openzeppelin-contracts-upgradeable/contracts/",
    "@openzeppelin/contracts/=contracts/lib/openzeppelin-contracts/contracts/",
    "ds-test/=contracts/lib/forge-std/lib/ds-test/src/",
    "erc4626-tests/=contracts/lib/openzeppelin-contracts-upgradeable/lib/erc4626-tests/",
    "forge-std/=contracts/lib/forge-std/src/",
    "openzeppelin-contracts-upgradeable/=contracts/lib/openzeppelin-contracts-upgradeable/",
    "openzeppelin-contracts/=contracts/lib/openzeppelin-contracts/",
    "solmate/=contracts/lib/solmate/src/"
  ],
  "optimizer": {
    "enabled": true,
    "runs": 200
  },
  "metadata": {
    "useLiteralContent": false,
    "bytecodeHash": "ipfs",
    "appendCBOR": true
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "devdoc",
        "userdoc",
        "metadata",
        "abi"
      ]
    }
  },
  "evmVersion": "paris",
  "libraries": {}
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"allowance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientAllowance","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"uint256","name":"balance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientBalance","type":"error"},{"inputs":[{"internalType":"address","name":"approver","type":"address"}],"name":"ERC20InvalidApprover","type":"error"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"}],"name":"ERC20InvalidReceiver","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"}],"name":"ERC20InvalidSender","type":"error"},{"inputs":[{"internalType":"address","name":"spender","type":"address"}],"name":"ERC20InvalidSpender","type":"error"},{"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":false,"internalType":"uint256","name":"ethBalance","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethForLiquiity","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethForPrizePool","type":"uint256"}],"name":"CollectedTax","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":"pair","type":"address"},{"indexed":true,"internalType":"bool","name":"value","type":"bool"}],"name":"SetAutomatedMarketMakerPair","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethReceived","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokensIntoLiquidity","type":"uint256"}],"name":"SwapAndLiquify","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":"_buyLpFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_buyPrizePoolFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_buyTeamFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_buyUnibotBuyFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_lpTokenShare","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_prizeTokenShare","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_sellLpFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_sellPrizePoolFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_sellTeamFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_sellUnibotBuyFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_teamTokenShare","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_unibotBuyTokenShare","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"automatedMarketMakerPairs","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"blacklist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"blacklisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"competitionStart","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":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"gov","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"initContract","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"isAutoBuyUnibotActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isInitialized","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isLimitActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isTradingOpen","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"launchChad","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"prizePoolWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellTotalFees","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":"_lpFee","type":"uint256"},{"internalType":"uint256","name":"_unibotFee","type":"uint256"},{"internalType":"uint256","name":"_prizePoolFee","type":"uint256"},{"internalType":"uint256","name":"_teamFee","type":"uint256"}],"name":"setBuyFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_competitionStart","type":"uint256"}],"name":"setCompetitionStart","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_gov","type":"address"}],"name":"setGov","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_isActive","type":"bool"}],"name":"setIsAutoBuyUnibotActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_isActive","type":"bool"}],"name":"setIsLimitActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_isOpen","type":"bool"}],"name":"setIsTradingOpen","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_account","type":"address"}],"name":"setPrizePoolWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_lpFee","type":"uint256"},{"internalType":"uint256","name":"_unibotFee","type":"uint256"},{"internalType":"uint256","name":"_prizePoolFee","type":"uint256"},{"internalType":"uint256","name":"_teamFee","type":"uint256"}],"name":"setSellFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_swapEnabled","type":"bool"}],"name":"setSwapEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"setSwapTokensAtAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_account","type":"address"}],"name":"setTeamWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_unibotAddress","type":"address"}],"name":"setUnibotAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_account","type":"address"}],"name":"setUnibotBuyWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_uniswapV2Router","type":"address"}],"name":"setUniswapRouterv2","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":"taxedTokens","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"teamWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"unblacklist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unibotAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"unibotBuyWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"}],"name":"withdrawEth","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"}],"name":"withdrawTaxesEarly","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

6080604052600780546001600160a01b031990811673f819d9cb1c2a819fd991781a822de3ca8607c3c9179091556008805482167376fa3d6bf5560231c96f66b7c0623565b3511a6a90811790915560098054831673ee79ce770607e84484651509acae81e99a8679ee179055600a8054909216178155600b805463ffffffff60a01b1916600160a01b179055600c8190556014600d8190556005600e819055600f819055909190620000b390806200031a565b620000bf91906200031a565b620000cb91906200031a565b601055600a601155601460125560056013556005601455601254601154601454601354620000fa91906200031a565b6200010691906200031a565b6200011291906200031a565b6015553480156200012257600080fd5b5060408051808201825260048082526310d2105160e21b60208084018290528451808601909552918452908301529060036200015f8382620003e7565b5060046200016e8282620003e7565b5050600580546001600160a01b0319163390811790915569d3c21bcecceda100000091506200019e9082620001a5565b50620004b3565b6001600160a01b038216620001d55760405163ec442f0560e01b8152600060048201526024015b60405180910390fd5b620001e360008383620001e7565b5050565b6001600160a01b038316620002165780600260008282546200020a91906200031a565b909155506200028a9050565b6001600160a01b038316600090815260208190526040902054818110156200026b5760405163391434e360e21b81526001600160a01b03851660048201526024810182905260448101839052606401620001cc565b6001600160a01b03841660009081526020819052604090209082900390555b6001600160a01b038216620002a857600280548290039055620002c7565b6001600160a01b03821660009081526020819052604090208054820190555b816001600160a01b0316836001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516200030d91815260200190565b60405180910390a3505050565b808201808211156200033c57634e487b7160e01b600052601160045260246000fd5b92915050565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200036d57607f821691505b6020821081036200038e57634e487b7160e01b600052602260045260246000fd5b50919050565b601f821115620003e257600081815260208120601f850160051c81016020861015620003bd5750805b601f850160051c820191505b81811015620003de57828155600101620003c9565b5050505b505050565b81516001600160401b0381111562000403576200040362000342565b6200041b8162000414845462000358565b8462000394565b602080601f8311600181146200045357600084156200043a5750858301515b600019600386901b1c1916600185901b178555620003de565b600085815260208120601f198616915b82811015620004845788860151825594840194600190910190840162000463565b5085821015620004a35787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b612e5680620004c36000396000f3fe6080604052600436106103bc5760003560e01c80636ddd1713116101f2578063c02466681161010d578063d7f8a700116100a0578063e01af92c1161006f578063e01af92c14610b07578063e2f4560514610b27578063f02edbaf14610b3d578063f9f92be414610b5d57600080fd5b8063d7f8a70014610a5b578063d85ba06314610a7b578063dbac26e914610a91578063dd62ed3e14610ac157600080fd5b8063cab03471116100dc578063cab03471146109ef578063cbe4e68114610a05578063cead2ec314610a1b578063cfad57a214610a3b57600080fd5b8063c02466681461098d578063c1a04c14146109ad578063c469b6dd146109c3578063c85f4d15146109d957600080fd5b806395d89b4111610185578063a9059cbb11610154578063a9059cbb14610907578063aa1e710b14610927578063afa4f3b21461093d578063b62496f51461095d57600080fd5b806395d89b41146108915780639a7a23d6146108a6578063a5bbce6b146108c6578063a650f575146108e657600080fd5b806375e3661e116101c157806375e3661e1461083257806376d628b7146108525780638203f5fe1461086757806393a6850c1461087c57600080fd5b80636ddd17131461079a5780636f7fe7e5146107bb57806370a08231146107db5780637220aa321461081157600080fd5b80632aa746e3116102e257806356a060a2116102755780635e168af5116102445780635e168af51461072e57806362d2adb8146107445780636a486a8e146107645780636c5b28551461077a57600080fd5b806356a060a2146106c15780635962a0a7146106e257806359927044146106f85780635adbde471461071857600080fd5b80633a092294116102b15780633a0922941461063157806344e180841461065157806349bd5a5e146106715780634fbee1931461069157600080fd5b80632aa746e3146105b45780632cce4bd3146105d4578063313ce567146105f4578063392e53cd1461061057600080fd5b8063178d9b8e1161035a578063232fbda111610329578063232fbda1146105345780632385a43d1461055457806323b872dd1461057457806325e160631461059457600080fd5b8063178d9b8e146104d357806318160ddd146104f3578063182c425c146105085780631a0be1201461051e57600080fd5b8063095ea7b311610396578063095ea7b31461042957806312d43a51146104595780631525ff7d146104915780631694505e146104b357600080fd5b80630178bcf3146103c85780630615102d146103f157806306fdde031461040757600080fd5b366103c357005b600080fd5b3480156103d457600080fd5b506103de60195481565b6040519081526020015b60405180910390f35b3480156103fd57600080fd5b506103de60135481565b34801561041357600080fd5b5061041c610b7d565b6040516103e89190612a36565b34801561043557600080fd5b50610449610444366004612a99565b610c0f565b60405190151581526020016103e8565b34801561046557600080fd5b50600554610479906001600160a01b031681565b6040516001600160a01b0390911681526020016103e8565b34801561049d57600080fd5b506104b16104ac366004612ac5565b610c29565b005b3480156104bf57600080fd5b50600654610479906001600160a01b031681565b3480156104df57600080fd5b506104b16104ee366004612ae9565b610c7e565b3480156104ff57600080fd5b506002546103de565b34801561051457600080fd5b506103de600e5481565b34801561052a57600080fd5b506103de60165481565b34801561054057600080fd5b506104b161054f366004612ac5565b610d2f565b34801561056057600080fd5b506104b161056f366004612b1b565b610d7b565b34801561058057600080fd5b5061044961058f366004612b34565b610daa565b3480156105a057600080fd5b506104b16105af366004612ac5565b610dce565b3480156105c057600080fd5b506104b16105cf366004612b8a565b610e5c565b3480156105e057600080fd5b506104b16105ef366004612ac5565b610ea4565b34801561060057600080fd5b50604051601281526020016103e8565b34801561061c57600080fd5b50600b5461044990600160c81b900460ff1681565b34801561063d57600080fd5b506104b161064c366004612b8a565b610ef0565b34801561065d57600080fd5b506104b161066c366004612b8a565b610f38565b34801561067d57600080fd5b50600b54610479906001600160a01b031681565b34801561069d57600080fd5b506104496106ac366004612ac5565b601d6020526000908152604090205460ff1681565b3480156106cd57600080fd5b50600b5461044990600160a81b900460ff1681565b3480156106ee57600080fd5b506103de60125481565b34801561070457600080fd5b50600854610479906001600160a01b031681565b34801561072457600080fd5b506103de60175481565b34801561073a57600080fd5b506103de60115481565b34801561075057600080fd5b50600754610479906001600160a01b031681565b34801561077057600080fd5b506103de60155481565b34801561078657600080fd5b506104b1610795366004612ae9565b610f80565b3480156107a657600080fd5b50600b5461044990600160b01b900460ff1681565b3480156107c757600080fd5b506104b16107d6366004612ac5565b611029565b3480156107e757600080fd5b506103de6107f6366004612ac5565b6001600160a01b031660009081526020819052604090205490565b34801561081d57600080fd5b50600b5461044990600160b81b900460ff1681565b34801561083e57600080fd5b506104b161084d366004612ac5565b611082565b34801561085e57600080fd5b506103de6110cd565b34801561087357600080fd5b506104b16110fe565b34801561088857600080fd5b506104b161144f565b34801561089d57600080fd5b5061041c611490565b3480156108b257600080fd5b506104b16108c1366004612ba5565b61149f565b3480156108d257600080fd5b506104b16108e1366004612ac5565b611557565b3480156108f257600080fd5b50600b5461044990600160a01b900460ff1681565b34801561091357600080fd5b50610449610922366004612a99565b6115a3565b34801561093357600080fd5b506103de60185481565b34801561094957600080fd5b506104b1610958366004612b1b565b6115b1565b34801561096957600080fd5b50610449610978366004612ac5565b601e6020526000908152604090205460ff1681565b34801561099957600080fd5b506104b16109a8366004612ba5565b61166c565b3480156109b957600080fd5b506103de600d5481565b3480156109cf57600080fd5b506103de600f5481565b3480156109e557600080fd5b506103de601b5481565b3480156109fb57600080fd5b506103de60145481565b348015610a1157600080fd5b506103de600c5481565b348015610a2757600080fd5b50600a54610479906001600160a01b031681565b348015610a4757600080fd5b506104b1610a56366004612ac5565b6116f5565b348015610a6757600080fd5b506104b1610a76366004612ac5565b611741565b348015610a8757600080fd5b506103de60105481565b348015610a9d57600080fd5b50610449610aac366004612ac5565b601c6020526000908152604090205460ff1681565b348015610acd57600080fd5b506103de610adc366004612bda565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b348015610b1357600080fd5b506104b1610b22366004612b8a565b61178d565b348015610b3357600080fd5b506103de601a5481565b348015610b4957600080fd5b50600954610479906001600160a01b031681565b348015610b6957600080fd5b506104b1610b78366004612ac5565b6117d5565b606060038054610b8c90612c13565b80601f0160208091040260200160405190810160405280929190818152602001828054610bb890612c13565b8015610c055780601f10610bda57610100808354040283529160200191610c05565b820191906000526020600020905b815481529060010190602001808311610be857829003601f168201915b5050505050905090565b600033610c1d818585611823565b60019150505b92915050565b6005546001600160a01b03163314610c5c5760405162461bcd60e51b8152600401610c5390612c4d565b60405180910390fd5b600880546001600160a01b0319166001600160a01b0392909216919091179055565b6005546001600160a01b03163314610ca85760405162461bcd60e51b8152600401610c5390612c4d565b600d829055600c839055600e849055600f8190558282610cc88387612c92565b610cd29190612c92565b610cdc9190612c92565b601081905560281015610d295760405162461bcd60e51b815260206004820152601560248201527442757920666565206d61782073686f756c6420342560581b6044820152606401610c53565b50505050565b6005546001600160a01b03163314610d595760405162461bcd60e51b8152600401610c5390612c4d565b600980546001600160a01b0319166001600160a01b0392909216919091179055565b6005546001600160a01b03163314610da55760405162461bcd60e51b8152600401610c5390612c4d565b601b55565b600033610db8858285611835565b610dc38585856118ad565b506001949350505050565b6005546001600160a01b03163314610df85760405162461bcd60e51b8152600401610c5390612c4d565b6000816001600160a01b03164760405160006040518083038185875af1925050503d8060008114610e45576040519150601f19603f3d011682016040523d82523d6000602084013e610e4a565b606091505b5050905080610e5857600080fd5b5050565b6005546001600160a01b03163314610e865760405162461bcd60e51b8152600401610c5390612c4d565b600b8054911515600160a01b0260ff60a01b19909216919091179055565b6005546001600160a01b03163314610ece5760405162461bcd60e51b8152600401610c5390612c4d565b600680546001600160a01b0319166001600160a01b0392909216919091179055565b6005546001600160a01b03163314610f1a5760405162461bcd60e51b8152600401610c5390612c4d565b600b8054911515600160b81b0260ff60b81b19909216919091179055565b6005546001600160a01b03163314610f625760405162461bcd60e51b8152600401610c5390612c4d565b600b8054911515600160a81b0260ff60a81b19909216919091179055565b6005546001600160a01b03163314610faa5760405162461bcd60e51b8152600401610c5390612c4d565b60128290556011839055601384905560148190558282610fca8387612c92565b610fd49190612c92565b610fde9190612c92565b601581905560281015610d295760405162461bcd60e51b815260206004820152601360248201527253656c6c204d6178206d75737420626520342560681b6044820152606401610c53565b6005546001600160a01b031633146110535760405162461bcd60e51b8152600401610c5390612c4d565b600061105d6110cd565b905061106a308383612097565b50506000601881905560168190556019819055601755565b6005546001600160a01b031633146110ac5760405162461bcd60e51b8152600401610c5390612c4d565b6001600160a01b03166000908152601c60205260409020805460ff19169055565b60006017546019546016546018546110e59190612c92565b6110ef9190612c92565b6110f99190612c92565b905090565b6005546001600160a01b031633146111285760405162461bcd60e51b8152600401610c5390612c4d565b600b54600160c81b900460ff16156111825760405162461bcd60e51b815260206004820152601c60248201527f436f6e747261637420616c726561647920696e697469616c69736564000000006044820152606401610c53565b600680546001600160a01b031916737a250d5630b4cf539739df2c5dacb4c659f2488d9081179091556040805163c45a015560e01b8152905163c45a0155916004808201926020929091908290030181865afa1580156111e6573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061120a9190612ca5565b6001600160a01b031663c9c6539630600660009054906101000a90046001600160a01b03166001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801561126c573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112909190612ca5565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af11580156112dd573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906113019190612ca5565b600b80546001600160a01b0319166001600160a01b0392909216918217905561132b9060016120f6565b612710306001600160a01b03166318160ddd6040518163ffffffff1660e01b8152600401602060405180830381865afa15801561136c573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906113909190612cc2565b61139b906005612cdb565b6113a59190612cf2565b601a819055506365805e70601b81905550611422306001600160a01b03166312d43a516040518163ffffffff1660e01b8152600401602060405180830381865afa1580156113f7573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061141b9190612ca5565b600161166c565b61142d30600161166c565b61143a61dead600161166c565b600b805460ff60c81b1916600160c81b179055565b6005546001600160a01b031633146114795760405162461bcd60e51b8152600401610c5390612c4d565b600b805461ffff60a81b191661010160a81b179055565b606060048054610b8c90612c13565b6005546001600160a01b031633146114c95760405162461bcd60e51b8152600401610c5390612c4d565b600b546001600160a01b039081169083160361154d5760405162461bcd60e51b815260206004820152603960248201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060448201527f6175746f6d617465644d61726b65744d616b65725061697273000000000000006064820152608401610c53565b610e5882826120f6565b6005546001600160a01b031633146115815760405162461bcd60e51b8152600401610c5390612c4d565b600a80546001600160a01b0319166001600160a01b0392909216919091179055565b600033610c1d8185856118ad565b6005546001600160a01b031633146115db5760405162461bcd60e51b8152600401610c5390612c4d565b6103e86115e760025490565b6115f2906005612cdb565b6115fc9190612cf2565b8111156116675760405162461bcd60e51b815260206004820152603360248201527f53776170206c696d69742063616e6e6f7420626520686967686572207468616e6044820152721018171a92903a37ba30b61039bab838363c9760691b6064820152608401610c53565b601a55565b6005546001600160a01b031633146116965760405162461bcd60e51b8152600401610c5390612c4d565b6001600160a01b0382166000818152601d6020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6005546001600160a01b0316331461171f5760405162461bcd60e51b8152600401610c5390612c4d565b600580546001600160a01b0319166001600160a01b0392909216919091179055565b6005546001600160a01b0316331461176b5760405162461bcd60e51b8152600401610c5390612c4d565b600780546001600160a01b0319166001600160a01b0392909216919091179055565b6005546001600160a01b031633146117b75760405162461bcd60e51b8152600401610c5390612c4d565b600b8054911515600160b01b0260ff60b01b19909216919091179055565b6005546001600160a01b031633146117ff5760405162461bcd60e51b8152600401610c5390612c4d565b6001600160a01b03166000908152601c60205260409020805460ff19166001179055565b611830838383600161214a565b505050565b6001600160a01b038381166000908152600160209081526040808320938616835292905220546000198114610d29578181101561189e57604051637dc7a0d960e11b81526001600160a01b03841660048201526024810182905260448101839052606401610c53565b610d298484848403600061214a565b6001600160a01b0383166119115760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610c53565b6001600160a01b0382166119735760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610c53565b6001600160a01b0383166000908152601c602052604090205460ff16156119d15760405162461bcd60e51b815260206004820152601260248201527114d95b99195c88189b1858dadb1a5cdd195960721b6044820152606401610c53565b6001600160a01b0382166000908152601c602052604090205460ff1615611a315760405162461bcd60e51b8152602060048201526014602482015273149958d95a5d995c88189b1858dadb1a5cdd195960621b6044820152606401610c53565b80600003611a4557611a4583836000612097565b600b54600160a01b900460ff1615611cbd57306001600160a01b03166312d43a516040518163ffffffff1660e01b8152600401602060405180830381865afa158015611a95573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611ab99190612ca5565b6001600160a01b0316836001600160a01b031614158015611b4d5750306001600160a01b03166312d43a516040518163ffffffff1660e01b8152600401602060405180830381865afa158015611b13573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611b379190612ca5565b6001600160a01b0316826001600160a01b031614155b8015611b6157506001600160a01b03821615155b8015611b7857506001600160a01b03821661dead14155b8015611b8e5750600b54600160c01b900460ff16155b15611cbd57600b54600160a81b900460ff16611c28576001600160a01b0383166000908152601d602052604090205460ff1680611be357506001600160a01b0382166000908152601d602052604090205460ff165b611c285760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b6044820152606401610c53565b601b54421015611cbd576001600160a01b0383166000908152601d602052604090205460ff1680611c7157506001600160a01b0382166000908152601d602052604090205460ff165b611cbd5760405162461bcd60e51b815260206004820152601860248201527f54726164696e6720686173206e6f7420737461727465642e00000000000000006044820152606401610c53565b6040516370a0823160e01b815230600482018190526000916370a0823190602401602060405180830381865afa158015611cfb573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611d1f9190612cc2565b601a5490915081108015908190611d3f5750600b54600160b01b900460ff165b8015611d555750600b54600160c01b900460ff16155b8015611d7a57506001600160a01b0385166000908152601e602052604090205460ff16155b8015611d9f57506001600160a01b0385166000908152601d602052604090205460ff16155b8015611dc457506001600160a01b0384166000908152601d602052604090205460ff16155b15611df257600b805460ff60c01b1916600160c01b179055611de461221f565b600b805460ff60c01b191690555b6001600160a01b0385166000908152601d602052604090205460019060ff1680611e3457506001600160a01b0385166000908152601d602052604090205460ff165b15611e3d575060005b8015612084576001600160a01b0385166000908152601e602052604081205460ff168015611e6d57506000601554115b15611f56576103e860155486611e839190612cdb565b611e8d9190612cf2565b905060155460135482611ea09190612cdb565b611eaa9190612cf2565b60186000828254611ebb9190612c92565b9091555050601554601254611ed09083612cdb565b611eda9190612cf2565b60176000828254611eeb9190612c92565b9091555050601554601454611f009083612cdb565b611f0a9190612cf2565b60196000828254611f1b9190612c92565b9091555050601554601154611f309083612cdb565b611f3a9190612cf2565b60166000828254611f4b9190612c92565b909155506120649050565b6001600160a01b0387166000908152601e602052604090205460ff168015611f8057506000601054115b15612064576103e860105486611f969190612cdb565b611fa09190612cf2565b9050601054600e5482611fb39190612cdb565b611fbd9190612cf2565b60186000828254611fce9190612c92565b9091555050601054600d54611fe39083612cdb565b611fed9190612cf2565b60176000828254611ffe9190612c92565b9091555050601054600f546120139083612cdb565b61201d9190612cf2565b6019600082825461202e9190612c92565b9091555050601054600c546120439083612cdb565b61204d9190612cf2565b6016600082825461205e9190612c92565b90915550505b801561208257612075873083612097565b61207f8186612d14565b94505b505b61208f868686612097565b505050505050565b6001600160a01b0383166120c157604051634b637e8f60e11b815260006004820152602401610c53565b6001600160a01b0382166120eb5760405163ec442f0560e01b815260006004820152602401610c53565b6118308383836125ab565b6001600160a01b0382166000818152601e6020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6001600160a01b0384166121745760405163e602df0560e01b815260006004820152602401610c53565b6001600160a01b03831661219e57604051634a1406b160e11b815260006004820152602401610c53565b6001600160a01b0380851660009081526001602090815260408083209387168352929052208290558015610d2957826001600160a01b0316846001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258460405161221191815260200190565b60405180910390a350505050565b6040516370a0823160e01b815230600482018190526000916370a0823190602401602060405180830381865afa15801561225d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906122819190612cc2565b9050600061228d6110cd565b9050600082158061229c575081155b156122a657505050565b601a546122b4906014612cdb565b8311156122cc57601a546122c9906014612cdb565b92505b6000600283601854866122df9190612cdb565b6122e99190612cf2565b6122f39190612cf2565b905060006123018286612d14565b90504761230d826126d5565b6000600260185461231e9190612cf2565b9050600061232c8347612d14565b9050600061233a8389612d14565b6019546123479084612cdb565b6123519190612cf2565b9050600061235f848a612d14565b60175461236c9085612cdb565b6123769190612cf2565b90506000612384858b612d14565b6016546123919086612cdb565b61239b9190612cf2565b9050600081836123ab8688612d14565b6123b59190612d14565b6123bf9190612d14565b60408051878152602081018390529081018590529091507fd6deef71a3a3d1cc25ae5358efd62164fd69fa4817547e58e34334655fc3816a9060600160405180910390a16008546040516001600160a01b03909116908590600081818185875af1925050503d8060008114612450576040519150601f19603f3d011682016040523d82523d6000602084013e612455565b606091505b5050600954604051919b506001600160a01b0316908490600081818185875af1925050503d80600081146124a5576040519150601f19603f3d011682016040523d82523d6000602084013e6124aa565b606091505b50909a505088158015906124be5750600081115b15612511576124cd8982612827565b601854604080518b81526020810184905280820192909252517f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619181900360600190a15b600b54600160b81b900460ff16156125315761252c826128db565b612589565b600a546040516001600160a01b03909116908390600081818185875af1925050503d806000811461257e576040519150601f19603f3d011682016040523d82523d6000602084013e612583565b606091505b50909a50505b5050600060188190556017819055601681905560195550505050505050505050565b6001600160a01b0383166125d65780600260008282546125cb9190612c92565b909155506126489050565b6001600160a01b038316600090815260208190526040902054818110156126295760405163391434e360e21b81526001600160a01b03851660048201526024810182905260448101839052606401610c53565b6001600160a01b03841660009081526020819052604090209082900390555b6001600160a01b03821661266457600280548290039055612683565b6001600160a01b03821660009081526020819052604090208054820190555b816001600160a01b0316836001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516126c891815260200190565b60405180910390a3505050565b604080516002808252606082018352600092602083019080368337019050509050308160008151811061270a5761270a612d27565b6001600160a01b03928316602091820292909201810191909152600654604080516315ab88c960e31b81529051919093169263ad5c46489260048083019391928290030181865afa158015612763573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906127879190612ca5565b8160018151811061279a5761279a612d27565b6001600160a01b0392831660209182029290920101526006546127c09130911684611823565b60065460405163791ac94760e01b81526001600160a01b039091169063791ac947906127f9908590600090869030904290600401612d81565b600060405180830381600087803b15801561281357600080fd5b505af115801561208f573d6000803e3d6000fd5b60065461283f9030906001600160a01b031684611823565b60065460085460405163f305d71960e01b81523060048201526024810185905260006044820181905260648201526001600160a01b0391821660848201524260a482015291169063f305d71990839060c40160606040518083038185885af11580156128af573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906128d49190612dbd565b5050505050565b8015612a33576040805160028082526060820183526000926020830190803683375050600654604080516315ab88c960e31b815290519394506001600160a01b039091169263ad5c4648925060048083019260209291908290030181865afa15801561294b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061296f9190612ca5565b8160008151811061298257612982612d27565b6001600160a01b0392831660209182029290920101526007548251911690829060019081106129b3576129b3612d27565b6001600160a01b03928316602091820292909201015260065460085460405163b6f9de9560e01b81529183169263b6f9de959286926129ff926000928892909116904290600401612deb565b6000604051808303818588803b158015612a1857600080fd5b505af1158015612a2c573d6000803e3d6000fd5b5050505050505b50565b600060208083528351808285015260005b81811015612a6357858101830151858201604001528201612a47565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b0381168114612a3357600080fd5b60008060408385031215612aac57600080fd5b8235612ab781612a84565b946020939093013593505050565b600060208284031215612ad757600080fd5b8135612ae281612a84565b9392505050565b60008060008060808587031215612aff57600080fd5b5050823594602084013594506040840135936060013592509050565b600060208284031215612b2d57600080fd5b5035919050565b600080600060608486031215612b4957600080fd5b8335612b5481612a84565b92506020840135612b6481612a84565b929592945050506040919091013590565b80358015158114612b8557600080fd5b919050565b600060208284031215612b9c57600080fd5b612ae282612b75565b60008060408385031215612bb857600080fd5b8235612bc381612a84565b9150612bd160208401612b75565b90509250929050565b60008060408385031215612bed57600080fd5b8235612bf881612a84565b91506020830135612c0881612a84565b809150509250929050565b600181811c90821680612c2757607f821691505b602082108103612c4757634e487b7160e01b600052602260045260246000fd5b50919050565b60208082526015908201527423b7bb32b93730b136329d103337b93134b23232b760591b604082015260600190565b634e487b7160e01b600052601160045260246000fd5b80820180821115610c2357610c23612c7c565b600060208284031215612cb757600080fd5b8151612ae281612a84565b600060208284031215612cd457600080fd5b5051919050565b8082028115828204841417610c2357610c23612c7c565b600082612d0f57634e487b7160e01b600052601260045260246000fd5b500490565b81810381811115610c2357610c23612c7c565b634e487b7160e01b600052603260045260246000fd5b600081518084526020808501945080840160005b83811015612d765781516001600160a01b031687529582019590820190600101612d51565b509495945050505050565b85815284602082015260a060408201526000612da060a0830186612d3d565b6001600160a01b0394909416606083015250608001529392505050565b600080600060608486031215612dd257600080fd5b8351925060208401519150604084015190509250925092565b848152608060208201526000612e046080830186612d3d565b6001600160a01b0394909416604083015250606001529291505056fea2646970667358221220d41e0e0957aa26f151eea6cb1623e37983d2035d75594786b3ab12b97067b07264736f6c63430008140033

Deployed Bytecode

0x6080604052600436106103bc5760003560e01c80636ddd1713116101f2578063c02466681161010d578063d7f8a700116100a0578063e01af92c1161006f578063e01af92c14610b07578063e2f4560514610b27578063f02edbaf14610b3d578063f9f92be414610b5d57600080fd5b8063d7f8a70014610a5b578063d85ba06314610a7b578063dbac26e914610a91578063dd62ed3e14610ac157600080fd5b8063cab03471116100dc578063cab03471146109ef578063cbe4e68114610a05578063cead2ec314610a1b578063cfad57a214610a3b57600080fd5b8063c02466681461098d578063c1a04c14146109ad578063c469b6dd146109c3578063c85f4d15146109d957600080fd5b806395d89b4111610185578063a9059cbb11610154578063a9059cbb14610907578063aa1e710b14610927578063afa4f3b21461093d578063b62496f51461095d57600080fd5b806395d89b41146108915780639a7a23d6146108a6578063a5bbce6b146108c6578063a650f575146108e657600080fd5b806375e3661e116101c157806375e3661e1461083257806376d628b7146108525780638203f5fe1461086757806393a6850c1461087c57600080fd5b80636ddd17131461079a5780636f7fe7e5146107bb57806370a08231146107db5780637220aa321461081157600080fd5b80632aa746e3116102e257806356a060a2116102755780635e168af5116102445780635e168af51461072e57806362d2adb8146107445780636a486a8e146107645780636c5b28551461077a57600080fd5b806356a060a2146106c15780635962a0a7146106e257806359927044146106f85780635adbde471461071857600080fd5b80633a092294116102b15780633a0922941461063157806344e180841461065157806349bd5a5e146106715780634fbee1931461069157600080fd5b80632aa746e3146105b45780632cce4bd3146105d4578063313ce567146105f4578063392e53cd1461061057600080fd5b8063178d9b8e1161035a578063232fbda111610329578063232fbda1146105345780632385a43d1461055457806323b872dd1461057457806325e160631461059457600080fd5b8063178d9b8e146104d357806318160ddd146104f3578063182c425c146105085780631a0be1201461051e57600080fd5b8063095ea7b311610396578063095ea7b31461042957806312d43a51146104595780631525ff7d146104915780631694505e146104b357600080fd5b80630178bcf3146103c85780630615102d146103f157806306fdde031461040757600080fd5b366103c357005b600080fd5b3480156103d457600080fd5b506103de60195481565b6040519081526020015b60405180910390f35b3480156103fd57600080fd5b506103de60135481565b34801561041357600080fd5b5061041c610b7d565b6040516103e89190612a36565b34801561043557600080fd5b50610449610444366004612a99565b610c0f565b60405190151581526020016103e8565b34801561046557600080fd5b50600554610479906001600160a01b031681565b6040516001600160a01b0390911681526020016103e8565b34801561049d57600080fd5b506104b16104ac366004612ac5565b610c29565b005b3480156104bf57600080fd5b50600654610479906001600160a01b031681565b3480156104df57600080fd5b506104b16104ee366004612ae9565b610c7e565b3480156104ff57600080fd5b506002546103de565b34801561051457600080fd5b506103de600e5481565b34801561052a57600080fd5b506103de60165481565b34801561054057600080fd5b506104b161054f366004612ac5565b610d2f565b34801561056057600080fd5b506104b161056f366004612b1b565b610d7b565b34801561058057600080fd5b5061044961058f366004612b34565b610daa565b3480156105a057600080fd5b506104b16105af366004612ac5565b610dce565b3480156105c057600080fd5b506104b16105cf366004612b8a565b610e5c565b3480156105e057600080fd5b506104b16105ef366004612ac5565b610ea4565b34801561060057600080fd5b50604051601281526020016103e8565b34801561061c57600080fd5b50600b5461044990600160c81b900460ff1681565b34801561063d57600080fd5b506104b161064c366004612b8a565b610ef0565b34801561065d57600080fd5b506104b161066c366004612b8a565b610f38565b34801561067d57600080fd5b50600b54610479906001600160a01b031681565b34801561069d57600080fd5b506104496106ac366004612ac5565b601d6020526000908152604090205460ff1681565b3480156106cd57600080fd5b50600b5461044990600160a81b900460ff1681565b3480156106ee57600080fd5b506103de60125481565b34801561070457600080fd5b50600854610479906001600160a01b031681565b34801561072457600080fd5b506103de60175481565b34801561073a57600080fd5b506103de60115481565b34801561075057600080fd5b50600754610479906001600160a01b031681565b34801561077057600080fd5b506103de60155481565b34801561078657600080fd5b506104b1610795366004612ae9565b610f80565b3480156107a657600080fd5b50600b5461044990600160b01b900460ff1681565b3480156107c757600080fd5b506104b16107d6366004612ac5565b611029565b3480156107e757600080fd5b506103de6107f6366004612ac5565b6001600160a01b031660009081526020819052604090205490565b34801561081d57600080fd5b50600b5461044990600160b81b900460ff1681565b34801561083e57600080fd5b506104b161084d366004612ac5565b611082565b34801561085e57600080fd5b506103de6110cd565b34801561087357600080fd5b506104b16110fe565b34801561088857600080fd5b506104b161144f565b34801561089d57600080fd5b5061041c611490565b3480156108b257600080fd5b506104b16108c1366004612ba5565b61149f565b3480156108d257600080fd5b506104b16108e1366004612ac5565b611557565b3480156108f257600080fd5b50600b5461044990600160a01b900460ff1681565b34801561091357600080fd5b50610449610922366004612a99565b6115a3565b34801561093357600080fd5b506103de60185481565b34801561094957600080fd5b506104b1610958366004612b1b565b6115b1565b34801561096957600080fd5b50610449610978366004612ac5565b601e6020526000908152604090205460ff1681565b34801561099957600080fd5b506104b16109a8366004612ba5565b61166c565b3480156109b957600080fd5b506103de600d5481565b3480156109cf57600080fd5b506103de600f5481565b3480156109e557600080fd5b506103de601b5481565b3480156109fb57600080fd5b506103de60145481565b348015610a1157600080fd5b506103de600c5481565b348015610a2757600080fd5b50600a54610479906001600160a01b031681565b348015610a4757600080fd5b506104b1610a56366004612ac5565b6116f5565b348015610a6757600080fd5b506104b1610a76366004612ac5565b611741565b348015610a8757600080fd5b506103de60105481565b348015610a9d57600080fd5b50610449610aac366004612ac5565b601c6020526000908152604090205460ff1681565b348015610acd57600080fd5b506103de610adc366004612bda565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b348015610b1357600080fd5b506104b1610b22366004612b8a565b61178d565b348015610b3357600080fd5b506103de601a5481565b348015610b4957600080fd5b50600954610479906001600160a01b031681565b348015610b6957600080fd5b506104b1610b78366004612ac5565b6117d5565b606060038054610b8c90612c13565b80601f0160208091040260200160405190810160405280929190818152602001828054610bb890612c13565b8015610c055780601f10610bda57610100808354040283529160200191610c05565b820191906000526020600020905b815481529060010190602001808311610be857829003601f168201915b5050505050905090565b600033610c1d818585611823565b60019150505b92915050565b6005546001600160a01b03163314610c5c5760405162461bcd60e51b8152600401610c5390612c4d565b60405180910390fd5b600880546001600160a01b0319166001600160a01b0392909216919091179055565b6005546001600160a01b03163314610ca85760405162461bcd60e51b8152600401610c5390612c4d565b600d829055600c839055600e849055600f8190558282610cc88387612c92565b610cd29190612c92565b610cdc9190612c92565b601081905560281015610d295760405162461bcd60e51b815260206004820152601560248201527442757920666565206d61782073686f756c6420342560581b6044820152606401610c53565b50505050565b6005546001600160a01b03163314610d595760405162461bcd60e51b8152600401610c5390612c4d565b600980546001600160a01b0319166001600160a01b0392909216919091179055565b6005546001600160a01b03163314610da55760405162461bcd60e51b8152600401610c5390612c4d565b601b55565b600033610db8858285611835565b610dc38585856118ad565b506001949350505050565b6005546001600160a01b03163314610df85760405162461bcd60e51b8152600401610c5390612c4d565b6000816001600160a01b03164760405160006040518083038185875af1925050503d8060008114610e45576040519150601f19603f3d011682016040523d82523d6000602084013e610e4a565b606091505b5050905080610e5857600080fd5b5050565b6005546001600160a01b03163314610e865760405162461bcd60e51b8152600401610c5390612c4d565b600b8054911515600160a01b0260ff60a01b19909216919091179055565b6005546001600160a01b03163314610ece5760405162461bcd60e51b8152600401610c5390612c4d565b600680546001600160a01b0319166001600160a01b0392909216919091179055565b6005546001600160a01b03163314610f1a5760405162461bcd60e51b8152600401610c5390612c4d565b600b8054911515600160b81b0260ff60b81b19909216919091179055565b6005546001600160a01b03163314610f625760405162461bcd60e51b8152600401610c5390612c4d565b600b8054911515600160a81b0260ff60a81b19909216919091179055565b6005546001600160a01b03163314610faa5760405162461bcd60e51b8152600401610c5390612c4d565b60128290556011839055601384905560148190558282610fca8387612c92565b610fd49190612c92565b610fde9190612c92565b601581905560281015610d295760405162461bcd60e51b815260206004820152601360248201527253656c6c204d6178206d75737420626520342560681b6044820152606401610c53565b6005546001600160a01b031633146110535760405162461bcd60e51b8152600401610c5390612c4d565b600061105d6110cd565b905061106a308383612097565b50506000601881905560168190556019819055601755565b6005546001600160a01b031633146110ac5760405162461bcd60e51b8152600401610c5390612c4d565b6001600160a01b03166000908152601c60205260409020805460ff19169055565b60006017546019546016546018546110e59190612c92565b6110ef9190612c92565b6110f99190612c92565b905090565b6005546001600160a01b031633146111285760405162461bcd60e51b8152600401610c5390612c4d565b600b54600160c81b900460ff16156111825760405162461bcd60e51b815260206004820152601c60248201527f436f6e747261637420616c726561647920696e697469616c69736564000000006044820152606401610c53565b600680546001600160a01b031916737a250d5630b4cf539739df2c5dacb4c659f2488d9081179091556040805163c45a015560e01b8152905163c45a0155916004808201926020929091908290030181865afa1580156111e6573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061120a9190612ca5565b6001600160a01b031663c9c6539630600660009054906101000a90046001600160a01b03166001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801561126c573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112909190612ca5565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af11580156112dd573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906113019190612ca5565b600b80546001600160a01b0319166001600160a01b0392909216918217905561132b9060016120f6565b612710306001600160a01b03166318160ddd6040518163ffffffff1660e01b8152600401602060405180830381865afa15801561136c573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906113909190612cc2565b61139b906005612cdb565b6113a59190612cf2565b601a819055506365805e70601b81905550611422306001600160a01b03166312d43a516040518163ffffffff1660e01b8152600401602060405180830381865afa1580156113f7573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061141b9190612ca5565b600161166c565b61142d30600161166c565b61143a61dead600161166c565b600b805460ff60c81b1916600160c81b179055565b6005546001600160a01b031633146114795760405162461bcd60e51b8152600401610c5390612c4d565b600b805461ffff60a81b191661010160a81b179055565b606060048054610b8c90612c13565b6005546001600160a01b031633146114c95760405162461bcd60e51b8152600401610c5390612c4d565b600b546001600160a01b039081169083160361154d5760405162461bcd60e51b815260206004820152603960248201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060448201527f6175746f6d617465644d61726b65744d616b65725061697273000000000000006064820152608401610c53565b610e5882826120f6565b6005546001600160a01b031633146115815760405162461bcd60e51b8152600401610c5390612c4d565b600a80546001600160a01b0319166001600160a01b0392909216919091179055565b600033610c1d8185856118ad565b6005546001600160a01b031633146115db5760405162461bcd60e51b8152600401610c5390612c4d565b6103e86115e760025490565b6115f2906005612cdb565b6115fc9190612cf2565b8111156116675760405162461bcd60e51b815260206004820152603360248201527f53776170206c696d69742063616e6e6f7420626520686967686572207468616e6044820152721018171a92903a37ba30b61039bab838363c9760691b6064820152608401610c53565b601a55565b6005546001600160a01b031633146116965760405162461bcd60e51b8152600401610c5390612c4d565b6001600160a01b0382166000818152601d6020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6005546001600160a01b0316331461171f5760405162461bcd60e51b8152600401610c5390612c4d565b600580546001600160a01b0319166001600160a01b0392909216919091179055565b6005546001600160a01b0316331461176b5760405162461bcd60e51b8152600401610c5390612c4d565b600780546001600160a01b0319166001600160a01b0392909216919091179055565b6005546001600160a01b031633146117b75760405162461bcd60e51b8152600401610c5390612c4d565b600b8054911515600160b01b0260ff60b01b19909216919091179055565b6005546001600160a01b031633146117ff5760405162461bcd60e51b8152600401610c5390612c4d565b6001600160a01b03166000908152601c60205260409020805460ff19166001179055565b611830838383600161214a565b505050565b6001600160a01b038381166000908152600160209081526040808320938616835292905220546000198114610d29578181101561189e57604051637dc7a0d960e11b81526001600160a01b03841660048201526024810182905260448101839052606401610c53565b610d298484848403600061214a565b6001600160a01b0383166119115760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610c53565b6001600160a01b0382166119735760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610c53565b6001600160a01b0383166000908152601c602052604090205460ff16156119d15760405162461bcd60e51b815260206004820152601260248201527114d95b99195c88189b1858dadb1a5cdd195960721b6044820152606401610c53565b6001600160a01b0382166000908152601c602052604090205460ff1615611a315760405162461bcd60e51b8152602060048201526014602482015273149958d95a5d995c88189b1858dadb1a5cdd195960621b6044820152606401610c53565b80600003611a4557611a4583836000612097565b600b54600160a01b900460ff1615611cbd57306001600160a01b03166312d43a516040518163ffffffff1660e01b8152600401602060405180830381865afa158015611a95573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611ab99190612ca5565b6001600160a01b0316836001600160a01b031614158015611b4d5750306001600160a01b03166312d43a516040518163ffffffff1660e01b8152600401602060405180830381865afa158015611b13573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611b379190612ca5565b6001600160a01b0316826001600160a01b031614155b8015611b6157506001600160a01b03821615155b8015611b7857506001600160a01b03821661dead14155b8015611b8e5750600b54600160c01b900460ff16155b15611cbd57600b54600160a81b900460ff16611c28576001600160a01b0383166000908152601d602052604090205460ff1680611be357506001600160a01b0382166000908152601d602052604090205460ff165b611c285760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b6044820152606401610c53565b601b54421015611cbd576001600160a01b0383166000908152601d602052604090205460ff1680611c7157506001600160a01b0382166000908152601d602052604090205460ff165b611cbd5760405162461bcd60e51b815260206004820152601860248201527f54726164696e6720686173206e6f7420737461727465642e00000000000000006044820152606401610c53565b6040516370a0823160e01b815230600482018190526000916370a0823190602401602060405180830381865afa158015611cfb573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611d1f9190612cc2565b601a5490915081108015908190611d3f5750600b54600160b01b900460ff165b8015611d555750600b54600160c01b900460ff16155b8015611d7a57506001600160a01b0385166000908152601e602052604090205460ff16155b8015611d9f57506001600160a01b0385166000908152601d602052604090205460ff16155b8015611dc457506001600160a01b0384166000908152601d602052604090205460ff16155b15611df257600b805460ff60c01b1916600160c01b179055611de461221f565b600b805460ff60c01b191690555b6001600160a01b0385166000908152601d602052604090205460019060ff1680611e3457506001600160a01b0385166000908152601d602052604090205460ff165b15611e3d575060005b8015612084576001600160a01b0385166000908152601e602052604081205460ff168015611e6d57506000601554115b15611f56576103e860155486611e839190612cdb565b611e8d9190612cf2565b905060155460135482611ea09190612cdb565b611eaa9190612cf2565b60186000828254611ebb9190612c92565b9091555050601554601254611ed09083612cdb565b611eda9190612cf2565b60176000828254611eeb9190612c92565b9091555050601554601454611f009083612cdb565b611f0a9190612cf2565b60196000828254611f1b9190612c92565b9091555050601554601154611f309083612cdb565b611f3a9190612cf2565b60166000828254611f4b9190612c92565b909155506120649050565b6001600160a01b0387166000908152601e602052604090205460ff168015611f8057506000601054115b15612064576103e860105486611f969190612cdb565b611fa09190612cf2565b9050601054600e5482611fb39190612cdb565b611fbd9190612cf2565b60186000828254611fce9190612c92565b9091555050601054600d54611fe39083612cdb565b611fed9190612cf2565b60176000828254611ffe9190612c92565b9091555050601054600f546120139083612cdb565b61201d9190612cf2565b6019600082825461202e9190612c92565b9091555050601054600c546120439083612cdb565b61204d9190612cf2565b6016600082825461205e9190612c92565b90915550505b801561208257612075873083612097565b61207f8186612d14565b94505b505b61208f868686612097565b505050505050565b6001600160a01b0383166120c157604051634b637e8f60e11b815260006004820152602401610c53565b6001600160a01b0382166120eb5760405163ec442f0560e01b815260006004820152602401610c53565b6118308383836125ab565b6001600160a01b0382166000818152601e6020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6001600160a01b0384166121745760405163e602df0560e01b815260006004820152602401610c53565b6001600160a01b03831661219e57604051634a1406b160e11b815260006004820152602401610c53565b6001600160a01b0380851660009081526001602090815260408083209387168352929052208290558015610d2957826001600160a01b0316846001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258460405161221191815260200190565b60405180910390a350505050565b6040516370a0823160e01b815230600482018190526000916370a0823190602401602060405180830381865afa15801561225d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906122819190612cc2565b9050600061228d6110cd565b9050600082158061229c575081155b156122a657505050565b601a546122b4906014612cdb565b8311156122cc57601a546122c9906014612cdb565b92505b6000600283601854866122df9190612cdb565b6122e99190612cf2565b6122f39190612cf2565b905060006123018286612d14565b90504761230d826126d5565b6000600260185461231e9190612cf2565b9050600061232c8347612d14565b9050600061233a8389612d14565b6019546123479084612cdb565b6123519190612cf2565b9050600061235f848a612d14565b60175461236c9085612cdb565b6123769190612cf2565b90506000612384858b612d14565b6016546123919086612cdb565b61239b9190612cf2565b9050600081836123ab8688612d14565b6123b59190612d14565b6123bf9190612d14565b60408051878152602081018390529081018590529091507fd6deef71a3a3d1cc25ae5358efd62164fd69fa4817547e58e34334655fc3816a9060600160405180910390a16008546040516001600160a01b03909116908590600081818185875af1925050503d8060008114612450576040519150601f19603f3d011682016040523d82523d6000602084013e612455565b606091505b5050600954604051919b506001600160a01b0316908490600081818185875af1925050503d80600081146124a5576040519150601f19603f3d011682016040523d82523d6000602084013e6124aa565b606091505b50909a505088158015906124be5750600081115b15612511576124cd8982612827565b601854604080518b81526020810184905280820192909252517f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619181900360600190a15b600b54600160b81b900460ff16156125315761252c826128db565b612589565b600a546040516001600160a01b03909116908390600081818185875af1925050503d806000811461257e576040519150601f19603f3d011682016040523d82523d6000602084013e612583565b606091505b50909a50505b5050600060188190556017819055601681905560195550505050505050505050565b6001600160a01b0383166125d65780600260008282546125cb9190612c92565b909155506126489050565b6001600160a01b038316600090815260208190526040902054818110156126295760405163391434e360e21b81526001600160a01b03851660048201526024810182905260448101839052606401610c53565b6001600160a01b03841660009081526020819052604090209082900390555b6001600160a01b03821661266457600280548290039055612683565b6001600160a01b03821660009081526020819052604090208054820190555b816001600160a01b0316836001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516126c891815260200190565b60405180910390a3505050565b604080516002808252606082018352600092602083019080368337019050509050308160008151811061270a5761270a612d27565b6001600160a01b03928316602091820292909201810191909152600654604080516315ab88c960e31b81529051919093169263ad5c46489260048083019391928290030181865afa158015612763573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906127879190612ca5565b8160018151811061279a5761279a612d27565b6001600160a01b0392831660209182029290920101526006546127c09130911684611823565b60065460405163791ac94760e01b81526001600160a01b039091169063791ac947906127f9908590600090869030904290600401612d81565b600060405180830381600087803b15801561281357600080fd5b505af115801561208f573d6000803e3d6000fd5b60065461283f9030906001600160a01b031684611823565b60065460085460405163f305d71960e01b81523060048201526024810185905260006044820181905260648201526001600160a01b0391821660848201524260a482015291169063f305d71990839060c40160606040518083038185885af11580156128af573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906128d49190612dbd565b5050505050565b8015612a33576040805160028082526060820183526000926020830190803683375050600654604080516315ab88c960e31b815290519394506001600160a01b039091169263ad5c4648925060048083019260209291908290030181865afa15801561294b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061296f9190612ca5565b8160008151811061298257612982612d27565b6001600160a01b0392831660209182029290920101526007548251911690829060019081106129b3576129b3612d27565b6001600160a01b03928316602091820292909201015260065460085460405163b6f9de9560e01b81529183169263b6f9de959286926129ff926000928892909116904290600401612deb565b6000604051808303818588803b158015612a1857600080fd5b505af1158015612a2c573d6000803e3d6000fd5b5050505050505b50565b600060208083528351808285015260005b81811015612a6357858101830151858201604001528201612a47565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b0381168114612a3357600080fd5b60008060408385031215612aac57600080fd5b8235612ab781612a84565b946020939093013593505050565b600060208284031215612ad757600080fd5b8135612ae281612a84565b9392505050565b60008060008060808587031215612aff57600080fd5b5050823594602084013594506040840135936060013592509050565b600060208284031215612b2d57600080fd5b5035919050565b600080600060608486031215612b4957600080fd5b8335612b5481612a84565b92506020840135612b6481612a84565b929592945050506040919091013590565b80358015158114612b8557600080fd5b919050565b600060208284031215612b9c57600080fd5b612ae282612b75565b60008060408385031215612bb857600080fd5b8235612bc381612a84565b9150612bd160208401612b75565b90509250929050565b60008060408385031215612bed57600080fd5b8235612bf881612a84565b91506020830135612c0881612a84565b809150509250929050565b600181811c90821680612c2757607f821691505b602082108103612c4757634e487b7160e01b600052602260045260246000fd5b50919050565b60208082526015908201527423b7bb32b93730b136329d103337b93134b23232b760591b604082015260600190565b634e487b7160e01b600052601160045260246000fd5b80820180821115610c2357610c23612c7c565b600060208284031215612cb757600080fd5b8151612ae281612a84565b600060208284031215612cd457600080fd5b5051919050565b8082028115828204841417610c2357610c23612c7c565b600082612d0f57634e487b7160e01b600052601260045260246000fd5b500490565b81810381811115610c2357610c23612c7c565b634e487b7160e01b600052603260045260246000fd5b600081518084526020808501945080840160005b83811015612d765781516001600160a01b031687529582019590820190600101612d51565b509495945050505050565b85815284602082015260a060408201526000612da060a0830186612d3d565b6001600160a01b0394909416606083015250608001529392505050565b600080600060608486031215612dd257600080fd5b8351925060208401519150604084015190509250925092565b848152608060208201526000612e046080830186612d3d565b6001600160a01b0394909416604083015250606001529291505056fea2646970667358221220d41e0e0957aa26f151eea6cb1623e37983d2035d75594786b3ab12b97067b07264736f6c63430008140033

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.