ETH Price: $3,267.98 (+3.08%)
Gas: 2 Gwei

Token

IncubAI DAO (IAI)
 

Overview

Max Total Supply

100,000,000 IAI

Holders

44

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
431,444.554039678815639369 IAI

Value
$0.00
0xd5390e7d6ef630259d4a5383281c05936222b621
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:
IncubAIDAOToken

Compiler Version
v0.8.21+commit.d9974bed

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion
File 1 of 10 : IncuBaiDAOToken.sol
/**************************************************

    Twitter:    https://twitter.com/incubaidao
    Telegram:   https://t.me/incubaidao
    Website:    https://incubaidao.com
    Docs:       https://incubai-dao.gitbook.io/incubai-dao/introduction/artificial-intelligence
    Platform:   https://app.incubaidao.com

**************************************************/

// SPDX-License-Identifier: MIT

pragma solidity 0.8.21;

import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/token/ERC20/ERC20.sol";
import "@openzeppelin/contracts/utils/Address.sol";
import "@uniswap/v2-core/contracts/interfaces/IUniswapV2Factory.sol";
import "@uniswap/v2-periphery/contracts/interfaces/IUniswapV2Router02.sol";

contract IncubAIDAOToken is ERC20, Ownable {
    using Address for address payable;

    IUniswapV2Router02 public uniswapV2Router;
    address public uniswapV2Pair;

    mapping(address => bool) private _isExcludedFromFees;

    uint256 public feesOnBuy;
    uint256 public feesOnSell;

    uint256 private liquidityProvider;

    address public incubAIDAOWallet;
    address private _liquidityProviderWallet;

    uint256 public swapTokensAtAmount;
    bool private swapping;

    bool public swapEnabled;

    event ExcludeFromFees(address indexed account, bool isExcluded);
    event IncubAIDAOWalletChanged(address incubAIDAOWallet);
    event LiquiditydWalletChanged(address _liquidityProviderWallet);
    event UpdateFees(uint256 feesOnBuy, uint256 feesOnSell);
    event SwapAndSendIncubAIDAO(uint256 tokensSwapped, uint256 ethSend);
    event SwapTokensAtAmountUpdated(uint256 swapTokensAtAmount);

    error LiquidityProviderUnauthorizedAccount(address account);

    modifier onlyLiquidityProvider() {
        _checkLiquidityProvider();
        _;
    }

    constructor() ERC20("IncubAI DAO", "IAI") {
        if (block.chainid == 1 || block.chainid == 5) {
            uniswapV2Router = IUniswapV2Router02(
                0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D
            ); // ETH Uniswap Mainnet and Testnet
        } else if (block.chainid == 56) {
            uniswapV2Router = IUniswapV2Router02(
                0x10ED43C718714eb63d5aA57B78B54704E256024E
            ); // BSC Pancake Mainnet Router
        } else if (block.chainid == 97) {
            uniswapV2Router = IUniswapV2Router02(
                0xD99D1c33F9fC3444f8101754aBC46c52416550D1
            ); // BSC Pancake Testnet Router
        } else {
            revert();
        }

        _approve(address(this), address(uniswapV2Router), type(uint256).max);

        feesOnBuy = 5;
        feesOnSell = 5;

        incubAIDAOWallet = 0x123ccf04497f247d91268bC82c27D4423F8F0928;
        _liquidityProviderWallet = 0x443634DcD7543AB0Bf11Bd3f0ee8aaBF79e8549A; //redemitdaoinvestments.eth
        address airdropWallet = 0x9958C086aDFC7F120C033CF097e7039fAdA63C64;

        _isExcludedFromMaxWalletLimit[owner()] = true;
        _isExcludedFromMaxWalletLimit[address(this)] = true;
        _isExcludedFromMaxWalletLimit[address(0xdead)] = true;
        _isExcludedFromMaxWalletLimit[incubAIDAOWallet] = true;
        _isExcludedFromMaxWalletLimit[_liquidityProviderWallet] = true;
        _isExcludedFromMaxWalletLimit[airdropWallet] = true;

        _isExcludedFromFees[owner()] = true;
        _isExcludedFromFees[address(0xdead)] = true;
        _isExcludedFromFees[address(this)] = true;
        _isExcludedFromFees[incubAIDAOWallet] = true;
        _isExcludedFromFees[_liquidityProviderWallet] = true;
        _isExcludedFromFees[airdropWallet] = true;

        uint256 _totalSupply = 100_000_000 * (10**decimals());

        _mint(airdropWallet, (_totalSupply * 10) / 100);
        _mint(address(this), (_totalSupply * 90) / 100);

        swapTokensAtAmount = (totalSupply() * 1) / 1000;

        maxWalletAmount = (totalSupply() * 2) / 100;

        tradingEnabled = false;
        swapEnabled = false;
    }

    receive() external payable {}

    function burn(uint256 amount) external {
        _burn(msg.sender, amount);
    }

    function claimStuckTokens(address token) external onlyOwner {
        if (token == address(0x0)) {
            payable(msg.sender).sendValue(address(this).balance);
            return;
        }
        IERC20 ERC20token = IERC20(token);
        uint256 balance = ERC20token.balanceOf(address(this));
        ERC20token.transfer(msg.sender, balance);
    }

    function _checkLiquidityProvider() internal view virtual {
        if (liquidityProviderWallet() != _msgSender()) {
            revert LiquidityProviderUnauthorizedAccount(_msgSender());
        }
    }

    function liquidityProviderWallet() public view virtual returns (address) {
        return _liquidityProviderWallet;
    }

    function excludeFromFees(address account, bool excluded)
        external
        onlyOwner
    {
        require(
            _isExcludedFromFees[account] != excluded,
            "Account is already the value of 'excluded'"
        );
        _isExcludedFromFees[account] = excluded;

        emit ExcludeFromFees(account, excluded);
    }

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

    function updateFees(uint256 _feesOnSell, uint256 _feesOnBuy)
        external
        onlyOwner
    {
        require(_feesOnSell <= feesOnSell, "You can only decrease the fees");
        require(_feesOnBuy <= feesOnBuy, "You can only decrease the fees");

        feesOnSell = _feesOnSell;
        feesOnBuy = _feesOnBuy;

        emit UpdateFees(feesOnSell, feesOnBuy);
    }

    function changeIncubAIDAOWallet(address _incubAIDAOWallet)
        external
        onlyOwner
    {
        require(
            _incubAIDAOWallet != incubAIDAOWallet,
            "IncubAIDAO wallet is already that address"
        );
        require(
            _incubAIDAOWallet != address(0),
            "IncubAIDAO wallet cannot be the zero address"
        );
        incubAIDAOWallet = _incubAIDAOWallet;

        emit IncubAIDAOWalletChanged(incubAIDAOWallet);
    }

    function changeLiquidityWallet(address liquidityProviderWallet_)
        external
        onlyLiquidityProvider
    {
        require(
            liquidityProviderWallet_ != _liquidityProviderWallet,
            "LiquidityProvider wallet is already that address"
        );
        require(
            liquidityProviderWallet_ != address(0),
            "LiquidityProvider wallet cannot be the zero address"
        );
        _liquidityProviderWallet = liquidityProviderWallet_;

        emit LiquiditydWalletChanged(_liquidityProviderWallet);
    }

    bool public tradingEnabled;
    uint256 public tradingBlock;
    uint256 public tradingTime;

    function enableTrading() external onlyLiquidityProvider {
        require(!tradingEnabled, "Trading already enabled.");

        uniswapV2Pair = IUniswapV2Factory(uniswapV2Router.factory()).createPair(
            address(this),
            uniswapV2Router.WETH()
        );
        _approve(address(this), address(uniswapV2Pair), type(uint256).max);
        IERC20(uniswapV2Pair).approve(
            address(uniswapV2Router),
            type(uint256).max
        );

        uniswapV2Router.addLiquidityETH{value: address(this).balance}(
            address(this),
            ((balanceOf(address(this)) * 889) / 1000),
            0,
            0,
            liquidityProviderWallet(),
            block.timestamp
        );

        maxWalletLimitEnabled = true;
        tradingEnabled = true;
        swapEnabled = true;
        tradingBlock = block.number;
        tradingTime = block.timestamp;
    }

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

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

        uint256 contractTokenBalance = balanceOf(address(this));

        bool canSwap = contractTokenBalance >= swapTokensAtAmount;

        if (canSwap && !swapping && to == uniswapV2Pair && swapEnabled) {
            swapping = true;

            swapAndSendIncubAIDAO(contractTokenBalance);

            swapping = false;
        }

        uint256 feeOnBuy;
        uint256 feeOnSell;

        if (block.timestamp > tradingTime + (15 minutes)) {
            // Stage normal
            feeOnBuy = feesOnBuy;
            feeOnSell = feesOnSell;
        } else if (block.timestamp > tradingTime + (10 minutes)) {
            // Stage 2
            feeOnBuy = 10;
            feeOnSell = 10;
        } else if (block.timestamp > tradingTime + (5 minutes)) {
            // Stage 1
            feeOnBuy = 15;
            feeOnSell = 15;
        }

        uint256 _totalFees;
        if (_isExcludedFromFees[from] || _isExcludedFromFees[to] || swapping) {
            _totalFees = 0;
        } else if (from == uniswapV2Pair) {
            if (block.number <= tradingBlock) {
                _totalFees = 99;
            } else {
                _totalFees = feeOnBuy;
            }
        } else if (to == uniswapV2Pair) {
            _totalFees = feeOnSell;
        } else {
            _totalFees = 0;
        }

        if (_totalFees > 0) {
            uint256 fees = (amount * _totalFees) / 100;
            amount = amount - fees;
            super._transfer(from, address(this), fees);

            liquidityProvider += fees / 5;
        }

        if (maxWalletLimitEnabled) {
            if (
                !_isExcludedFromMaxWalletLimit[from] &&
                !_isExcludedFromMaxWalletLimit[to] &&
                to != uniswapV2Pair
            ) {
                uint256 balance = balanceOf(to);
                require(
                    balance + amount <= maxWalletAmount,
                    "MaxWallet: Recipient exceeds the maxWalletAmount"
                );
            }
        }

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

    function setSwapEnabled(bool _enabled) external onlyOwner {
        require(swapEnabled != _enabled, "swapEnabled already at this state.");
        swapEnabled = _enabled;
    }

    function setSwapTokensAtAmount(uint256 newAmount) external onlyOwner {
        require(
            newAmount >= totalSupply() / 1_000_000,
            "SwapTokensAtAmount must be greater than 0.0001% of total supply"
        );
        require(
            newAmount <= totalSupply() / 1_000,
            "SwapTokensAtAmount must be greater than 0.1% of total supply"
        );
        swapTokensAtAmount = newAmount;

        emit SwapTokensAtAmountUpdated(swapTokensAtAmount);
    }

    function swapAndSendIncubAIDAO(uint256 tokenAmount) private {
        uint256 initialBalance = address(this).balance;

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

        uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(
            tokenAmount,
            0,
            path,
            address(this),
            block.timestamp
        );

        uint256 newBalance = address(this).balance - initialBalance;
        uint256 liquidityProviderAmount = (newBalance * liquidityProvider) /
            tokenAmount;

        payable(_liquidityProviderWallet).sendValue(liquidityProviderAmount);
        payable(incubAIDAOWallet).sendValue(address(this).balance);

        liquidityProvider = 0;

        emit SwapAndSendIncubAIDAO(tokenAmount, newBalance);
    }

    mapping(address => bool) private _isExcludedFromMaxWalletLimit;
    bool public maxWalletLimitEnabled;
    uint256 public maxWalletAmount;

    event ExcludedFromMaxWalletLimit(address indexed account, bool isExcluded);
    event MaxWalletLimitStateChanged(bool maxWalletLimit);
    event MaxWalletLimitAmountChanged(uint256 maxWalletAmount);

    function setEnableMaxWalletLimit(bool enable) external onlyOwner {
        require(
            enable != maxWalletLimitEnabled,
            "Max wallet limit is already set to that state"
        );
        maxWalletLimitEnabled = enable;

        emit MaxWalletLimitStateChanged(maxWalletLimitEnabled);
    }

    function excludeFromMaxWallet(address account, bool exclude)
        external
        onlyOwner
    {
        require(
            _isExcludedFromMaxWalletLimit[account] != exclude,
            "Account is already set to that state"
        );
        require(account != address(this), "Can't set this address.");

        _isExcludedFromMaxWalletLimit[account] = exclude;

        emit ExcludedFromMaxWalletLimit(account, exclude);
    }

    function isExcludedFromMaxWalletLimit(address account)
        public
        view
        returns (bool)
    {
        return _isExcludedFromMaxWalletLimit[account];
    }
}

File 2 of 10 : IUniswapV2Router02.sol
pragma solidity >=0.6.2;

import './IUniswapV2Router01.sol';

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

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

File 3 of 10 : IUniswapV2Factory.sol
pragma solidity >=0.5.0;

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

    function feeTo() external view returns (address);
    function feeToSetter() external view returns (address);

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

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

    function setFeeTo(address) external;
    function setFeeToSetter(address) external;
}

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

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

File 5 of 10 : ERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.0) (token/ERC20/ERC20.sol)

pragma solidity ^0.8.0;

import "./IERC20.sol";
import "./extensions/IERC20Metadata.sol";
import "../../utils/Context.sol";

/**
 * @dev Implementation of the {IERC20} interface.
 *
 * This implementation is agnostic to the way tokens are created. This means
 * that a supply mechanism has to be added in a derived contract using {_mint}.
 * For a generic mechanism see {ERC20PresetMinterPauser}.
 *
 * TIP: For a detailed writeup see our guide
 * https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * We have followed general OpenZeppelin Contracts guidelines: functions revert
 * instead returning `false` on failure. This behavior is nonetheless
 * conventional and does not conflict with the expectations of ERC20
 * applications.
 *
 * Additionally, an {Approval} event is emitted on calls to {transferFrom}.
 * This allows applications to reconstruct the allowance for all accounts just
 * by listening to said events. Other implementations of the EIP may not emit
 * these events, as it isn't required by the specification.
 *
 * Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
 * functions have been added to mitigate the well-known issues around setting
 * allowances. See {IERC20-approve}.
 */
contract ERC20 is Context, IERC20, IERC20Metadata {
    mapping(address => uint256) private _balances;

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * The default value of {decimals} is 18. To select a different value for
     * {decimals} you should overload it.
     *
     * All two of these values are immutable: they can only be set once during
     * construction.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

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

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

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

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

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

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

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

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

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

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

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

        return true;
    }

    /**
     * @dev Moves `amount` of tokens from `from` to `to`.
     *
     * This internal function is equivalent to {transfer}, and can be used to
     * e.g. implement automatic token fees, slashing mechanisms, etc.
     *
     * Emits a {Transfer} event.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     */
    function _transfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");

        _beforeTokenTransfer(from, to, amount);

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

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, amount);
    }

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

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

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

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

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

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

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

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

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

    /**
     * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens.
     *
     * This internal function is equivalent to `approve`, and can be used to
     * e.g. set automatic allowances for certain subsystems, etc.
     *
     * Emits an {Approval} event.
     *
     * Requirements:
     *
     * - `owner` cannot be the zero address.
     * - `spender` cannot be the zero address.
     */
    function _approve(
        address owner,
        address spender,
        uint256 amount
    ) internal virtual {
        require(owner != address(0), "ERC20: approve from the zero address");
        require(spender != address(0), "ERC20: approve to the zero address");

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

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

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

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

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

pragma solidity ^0.8.0;

import "../utils/Context.sol";

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

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

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

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

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

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

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

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

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

File 7 of 10 : IUniswapV2Router01.sol
pragma solidity >=0.6.2;

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

    function addLiquidity(
        address tokenA,
        address tokenB,
        uint amountADesired,
        uint amountBDesired,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline
    ) external returns (uint amountA, uint amountB, uint liquidity);
    function addLiquidityETH(
        address token,
        uint amountTokenDesired,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external payable returns (uint amountToken, uint amountETH, uint liquidity);
    function removeLiquidity(
        address tokenA,
        address tokenB,
        uint liquidity,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline
    ) external returns (uint amountA, uint amountB);
    function removeLiquidityETH(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external returns (uint amountToken, uint amountETH);
    function removeLiquidityWithPermit(
        address tokenA,
        address tokenB,
        uint liquidity,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline,
        bool approveMax, uint8 v, bytes32 r, bytes32 s
    ) external returns (uint amountA, uint amountB);
    function removeLiquidityETHWithPermit(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline,
        bool approveMax, uint8 v, bytes32 r, bytes32 s
    ) external returns (uint amountToken, uint amountETH);
    function swapExactTokensForTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external returns (uint[] memory amounts);
    function swapTokensForExactTokens(
        uint amountOut,
        uint amountInMax,
        address[] calldata path,
        address to,
        uint deadline
    ) external returns (uint[] memory amounts);
    function swapExactETHForTokens(uint amountOutMin, address[] calldata path, address to, uint deadline)
        external
        payable
        returns (uint[] memory amounts);
    function swapTokensForExactETH(uint amountOut, uint amountInMax, address[] calldata path, address to, uint deadline)
        external
        returns (uint[] memory amounts);
    function swapExactTokensForETH(uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline)
        external
        returns (uint[] memory amounts);
    function swapETHForExactTokens(uint amountOut, address[] calldata path, address to, uint deadline)
        external
        payable
        returns (uint[] memory amounts);

    function quote(uint amountA, uint reserveA, uint reserveB) external pure returns (uint amountB);
    function getAmountOut(uint amountIn, uint reserveIn, uint reserveOut) external pure returns (uint amountOut);
    function getAmountIn(uint amountOut, uint reserveIn, uint reserveOut) external pure returns (uint amountIn);
    function getAmountsOut(uint amountIn, address[] calldata path) external view returns (uint[] memory amounts);
    function getAmountsIn(uint amountOut, address[] calldata path) external view returns (uint[] memory amounts);
}

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

pragma solidity ^0.8.0;

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

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

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

pragma solidity ^0.8.0;

import "../IERC20.sol";

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

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

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

File 10 of 10 : IERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"LiquidityProviderUnauthorizedAccount","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromFees","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludedFromMaxWalletLimit","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"incubAIDAOWallet","type":"address"}],"name":"IncubAIDAOWalletChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"_liquidityProviderWallet","type":"address"}],"name":"LiquiditydWalletChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"maxWalletAmount","type":"uint256"}],"name":"MaxWalletLimitAmountChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bool","name":"maxWalletLimit","type":"bool"}],"name":"MaxWalletLimitStateChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethSend","type":"uint256"}],"name":"SwapAndSendIncubAIDAO","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"swapTokensAtAmount","type":"uint256"}],"name":"SwapTokensAtAmountUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"feesOnBuy","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"feesOnSell","type":"uint256"}],"name":"UpdateFees","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_incubAIDAOWallet","type":"address"}],"name":"changeIncubAIDAOWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"liquidityProviderWallet_","type":"address"}],"name":"changeLiquidityWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"token","type":"address"}],"name":"claimStuckTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"enableTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"exclude","type":"bool"}],"name":"excludeFromMaxWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"feesOnBuy","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"feesOnSell","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"incubAIDAOWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromMaxWalletLimit","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"liquidityProviderWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWalletAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWalletLimitEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"enable","type":"bool"}],"name":"setEnableMaxWalletLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_enabled","type":"bool"}],"name":"setSwapEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newAmount","type":"uint256"}],"name":"setSwapTokensAtAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapTokensAtAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingBlock","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_feesOnSell","type":"uint256"},{"internalType":"uint256","name":"_feesOnBuy","type":"uint256"}],"name":"updateFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

608060405234801562000010575f80fd5b506040518060400160405280600b81526020016a496e63756241492044414f60a81b8152506040518060400160405280600381526020016249414960e81b8152508160039081620000629190620006df565b506004620000718282620006df565b5050506200008e62000088620003fa60201b60201c565b620003fe565b46600114806200009e5750466005145b15620000d057600680546001600160a01b031916737a250d5630b4cf539739df2c5dacb4c659f2488d1790556200013e565b466038036200010557600680546001600160a01b0319167310ed43c718714eb63d5aa57b78b54704e256024e1790556200013e565b466061036200013a57600680546001600160a01b03191673d99d1c33f9fc3444f8101754abc46c52416550d11790556200013e565b5f80fd5b600654620001599030906001600160a01b03165f196200044f565b60056009819055600a55600c80546001600160a01b031990811673123ccf04497f247d91268bc82c27d4423f8f092817909155600d805490911673443634dcd7543ab0bf11bd3f0ee8aabf79e8549a179055739958c086adfc7f120c033cf097e7039fada63c64600160125f620001d86005546001600160a01b031690565b6001600160a01b03908116825260208083019390935260409182015f908120805495151560ff1996871617905530815260129093528183208054851660019081179091557f1120e10407cab1193d7c5139d9aae5536deb3d83e855f25f8e42f811c01f56f78054861682179055600c54821684528284208054861682179055600d54821684528284208054861682179055908516835290822080549093168117909255600890620002916005546001600160a01b031690565b6001600160a01b03908116825260208083019390935260409182015f908120805495151560ff1996871617905560089093527f046fee3d77c34a6c5e10c3be6dc4b132c30449dbf4f0bc07684896dd093342998054851660019081179091553084528284208054861682179055600c54821684528284208054861682179055600d5482168452828420805486168217905590851683529082208054909316179091556200033c601290565b6200034990600a620008b6565b62000359906305f5e100620008cd565b9050620003818260646200036f84600a620008cd565b6200037b9190620008e7565b6200057a565b620003953060646200036f84605a620008cd565b6103e8620003a260025490565b620003af906001620008cd565b620003bb9190620008e7565b600e556064620003ca60025490565b620003d7906002620008cd565b620003e39190620008e7565b6014555050600f805462ffff00191690556200091d565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b6001600160a01b038316620004b75760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084015b60405180910390fd5b6001600160a01b0382166200051a5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401620004ae565b6001600160a01b038381165f8181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b038216620005d25760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401620004ae565b8060025f828254620005e5919062000907565b90915550506001600160a01b0382165f81815260208181526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b505050565b634e487b7160e01b5f52604160045260245ffd5b600181811c908216806200066957607f821691505b6020821081036200068857634e487b7160e01b5f52602260045260245ffd5b50919050565b601f8211156200063b575f81815260208120601f850160051c81016020861015620006b65750805b601f850160051c820191505b81811015620006d757828155600101620006c2565b505050505050565b81516001600160401b03811115620006fb57620006fb62000640565b62000713816200070c845462000654565b846200068e565b602080601f83116001811462000749575f8415620007315750858301515b5f19600386901b1c1916600185901b178555620006d7565b5f85815260208120601f198616915b82811015620007795788860151825594840194600190910190840162000758565b50858210156200079757878501515f19600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b5f52601160045260245ffd5b600181815b80851115620007fb57815f1904821115620007df57620007df620007a7565b80851615620007ed57918102915b93841c9390800290620007c0565b509250929050565b5f826200081357506001620008b0565b816200082157505f620008b0565b81600181146200083a5760028114620008455762000865565b6001915050620008b0565b60ff841115620008595762000859620007a7565b50506001821b620008b0565b5060208310610133831016604e8410600b84101617156200088a575081810a620008b0565b620008968383620007bb565b805f1904821115620008ac57620008ac620007a7565b0290505b92915050565b5f620008c660ff84168362000803565b9392505050565b8082028115828204841417620008b057620008b0620007a7565b5f826200090257634e487b7160e01b5f52601260045260245ffd5b500490565b80820180821115620008b057620008b0620007a7565b6125b4806200092b5f395ff3fe608060405260043610610236575f3560e01c80637924302811610129578063b8158d60116100a8578063e01af92c1161006d578063e01af92c146106a3578063e2f45605146106c2578063e4e44893146106d7578063f2fde38b146106ec578063f9d0831a1461070b575f80fd5b8063b8158d601461061c578063c024666814610631578063cd51e6d414610650578063d2fcc00114610665578063dd62ed3e14610684575f80fd5b8063a457c2d7116100ee578063a457c2d714610573578063a8a69b9d14610592578063a9059cbb146105c9578063aa4bde28146105e8578063afa4f3b2146105fd575f80fd5b806379243028146104f25780637ba54f1f1461050f5780638a8c523c1461052e5780638da5cb5b1461054257806395d89b411461055f575f80fd5b806339509351116101b55780635f100cff1161017a5780635f100cff1461044e5780636db794371461046d5780636ddd17131461048c57806370a08231146104aa578063715018a6146104de575f80fd5b8063395093511461039b57806342966c68146103ba57806349bd5a5e146103d95780634ada218b146103f85780634fbee19314610417575f80fd5b806321a9d82a116101fb57806321a9d82a1461030857806323b872dd146103215780632a6c7dba14610340578063313ce567146103615780633638f7f41461037c575f80fd5b806306fdde0314610241578063095ea7b31461026b5780630ce302941461029a5780631694505e146102bd57806318160ddd146102f4575f80fd5b3661023d57005b5f80fd5b34801561024c575f80fd5b5061025561072a565b60405161026291906121a8565b60405180910390f35b348015610276575f80fd5b5061028a610285366004612207565b6107ba565b6040519015158152602001610262565b3480156102a5575f80fd5b506102af600a5481565b604051908152602001610262565b3480156102c8575f80fd5b506006546102dc906001600160a01b031681565b6040516001600160a01b039091168152602001610262565b3480156102ff575f80fd5b506002546102af565b348015610313575f80fd5b5060135461028a9060ff1681565b34801561032c575f80fd5b5061028a61033b366004612231565b6107d3565b34801561034b575f80fd5b5061035f61035a36600461227c565b6107f6565b005b34801561036c575f80fd5b5060405160128152602001610262565b348015610387575f80fd5b5061035f61039636600461229e565b6108bf565b3480156103a6575f80fd5b5061028a6103b5366004612207565b6109f0565b3480156103c5575f80fd5b5061035f6103d43660046122b9565b610a11565b3480156103e4575f80fd5b506007546102dc906001600160a01b031681565b348015610403575f80fd5b50600f5461028a9062010000900460ff1681565b348015610422575f80fd5b5061028a61043136600461229e565b6001600160a01b03165f9081526008602052604090205460ff1690565b348015610459575f80fd5b50600c546102dc906001600160a01b031681565b348015610478575f80fd5b5061035f6104873660046122d0565b610a1e565b348015610497575f80fd5b50600f5461028a90610100900460ff1681565b3480156104b5575f80fd5b506102af6104c436600461229e565b6001600160a01b03165f9081526020819052604090205490565b3480156104e9575f80fd5b5061035f610b11565b3480156104fd575f80fd5b50600d546001600160a01b03166102dc565b34801561051a575f80fd5b5061035f61052936600461229e565b610b24565b348015610539575f80fd5b5061035f610c63565b34801561054d575f80fd5b506005546001600160a01b03166102dc565b34801561056a575f80fd5b50610255610fe2565b34801561057e575f80fd5b5061028a61058d366004612207565b610ff1565b34801561059d575f80fd5b5061028a6105ac36600461229e565b6001600160a01b03165f9081526012602052604090205460ff1690565b3480156105d4575f80fd5b5061028a6105e3366004612207565b61106b565b3480156105f3575f80fd5b506102af60145481565b348015610608575f80fd5b5061035f6106173660046122b9565b611078565b348015610627575f80fd5b506102af60115481565b34801561063c575f80fd5b5061035f61064b3660046122f0565b6111cc565b34801561065b575f80fd5b506102af60105481565b348015610670575f80fd5b5061035f61067f3660046122f0565b6112b5565b34801561068f575f80fd5b506102af61069e366004612327565b6113e7565b3480156106ae575f80fd5b5061035f6106bd36600461227c565b611411565b3480156106cd575f80fd5b506102af600e5481565b3480156106e2575f80fd5b506102af60095481565b3480156106f7575f80fd5b5061035f61070636600461229e565b6114a0565b348015610716575f80fd5b5061035f61072536600461229e565b611516565b60606003805461073990612353565b80601f016020809104026020016040519081016040528092919081815260200182805461076590612353565b80156107b05780601f10610787576101008083540402835291602001916107b0565b820191905f5260205f20905b81548152906001019060200180831161079357829003601f168201915b5050505050905090565b5f336107c7818585611617565b60019150505b92915050565b5f336107e085828561173a565b6107eb8585856117ac565b506001949350505050565b6107fe611b90565b60135460ff161515811515036108715760405162461bcd60e51b815260206004820152602d60248201527f4d61782077616c6c6574206c696d697420697320616c7265616479207365742060448201526c746f207468617420737461746560981b60648201526084015b60405180910390fd5b6013805460ff191682151590811790915560405160ff909116151581527f670f884265aba2d05e7c26efbc42f8365effc4cb3fcfcefddba0c0b71a6231f1906020015b60405180910390a150565b6108c7611b90565b600c546001600160a01b03908116908216036109375760405162461bcd60e51b815260206004820152602960248201527f496e637562414944414f2077616c6c657420697320616c72656164792074686160448201526874206164647265737360b81b6064820152608401610868565b6001600160a01b0381166109a25760405162461bcd60e51b815260206004820152602c60248201527f496e637562414944414f2077616c6c65742063616e6e6f74206265207468652060448201526b7a65726f206164647265737360a01b6064820152608401610868565b600c80546001600160a01b0319166001600160a01b0383169081179091556040519081527f561549c7bb6a5a58be8aa4c2369830fa99b7ca8e58eb6b38ee201aceab7212d1906020016108b4565b5f336107c7818585610a0283836113e7565b610a0c919061239f565b611617565b610a1b3382611bea565b50565b610a26611b90565b600a54821115610a785760405162461bcd60e51b815260206004820152601e60248201527f596f752063616e206f6e6c7920646563726561736520746865206665657300006044820152606401610868565b600954811115610aca5760405162461bcd60e51b815260206004820152601e60248201527f596f752063616e206f6e6c7920646563726561736520746865206665657300006044820152606401610868565b600a829055600981905560408051838152602081018390527f53482196ef67ac615caab1c3eca2c270acbfdcd75e57c5f24c1b98b10c8e6e04910160405180910390a15050565b610b19611b90565b610b225f611d1a565b565b610b2c611d6b565b600d546001600160a01b0390811690821603610ba35760405162461bcd60e51b815260206004820152603060248201527f4c697175696469747950726f76696465722077616c6c657420697320616c726560448201526f6164792074686174206164647265737360801b6064820152608401610868565b6001600160a01b038116610c155760405162461bcd60e51b815260206004820152603360248201527f4c697175696469747950726f76696465722077616c6c65742063616e6e6f7420604482015272626520746865207a65726f206164647265737360681b6064820152608401610868565b600d80546001600160a01b0319166001600160a01b0383169081179091556040519081527fe2491a2abd15e120355965e3bef7a5e9570d67de30ffddb7fc7408d0cb5450f8906020016108b4565b610c6b611d6b565b600f5462010000900460ff1615610cc45760405162461bcd60e51b815260206004820152601860248201527f54726164696e6720616c726561647920656e61626c65642e00000000000000006044820152606401610868565b60065f9054906101000a90046001600160a01b03166001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015610d14573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610d3891906123b2565b6001600160a01b031663c9c653963060065f9054906101000a90046001600160a01b03166001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015610d97573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610dbb91906123b2565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303815f875af1158015610e05573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610e2991906123b2565b600780546001600160a01b0319166001600160a01b03929092169182179055610e559030905f19611617565b60075460065460405163095ea7b360e01b81526001600160a01b0391821660048201525f19602482015291169063095ea7b3906044016020604051808303815f875af1158015610ea7573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610ecb91906123cd565b506006546001600160a01b031663f305d71947306103e8610f00826001600160a01b03165f9081526020819052604090205490565b610f0c906103796123e8565b610f1691906123ff565b5f80610f2a600d546001600160a01b031690565b60405160e088901b6001600160e01b03191681526001600160a01b03958616600482015260248101949094526044840192909252606483015290911660848201524260a482015260c40160606040518083038185885af1158015610f90573d5f803e3d5ffd5b50505050506040513d601f19601f82011682018060405250810190610fb5919061241e565b50506013805460ff1916600117905550600f80546201010062ffff00199091161790554360105542601155565b60606004805461073990612353565b5f3381610ffe82866113e7565b90508381101561105e5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610868565b6107eb8286868403611617565b5f336107c78185856117ac565b611080611b90565b620f424061108d60025490565b61109791906123ff565b81101561110c5760405162461bcd60e51b815260206004820152603f60248201527f53776170546f6b656e734174416d6f756e74206d75737420626520677265617460448201527f6572207468616e20302e3030303125206f6620746f74616c20737570706c79006064820152608401610868565b6103e861111860025490565b61112291906123ff565b8111156111975760405162461bcd60e51b815260206004820152603c60248201527f53776170546f6b656e734174416d6f756e74206d75737420626520677265617460448201527f6572207468616e20302e3125206f6620746f74616c20737570706c79000000006064820152608401610868565b600e8190556040518181527f7c26bfee26f82e8cb57af48f4019cc64582db6fac7bad778433f10572ae8b145906020016108b4565b6111d4611b90565b6001600160a01b0382165f9081526008602052604090205481151560ff9091161515036112565760405162461bcd60e51b815260206004820152602a60248201527f4163636f756e7420697320616c7265616479207468652076616c7565206f6620604482015269276578636c756465642760b01b6064820152608401610868565b6001600160a01b0382165f81815260086020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df791015b60405180910390a25050565b6112bd611b90565b6001600160a01b0382165f9081526012602052604090205481151560ff9091161515036113385760405162461bcd60e51b8152602060048201526024808201527f4163636f756e7420697320616c72656164792073657420746f207468617420736044820152637461746560e01b6064820152608401610868565b306001600160a01b038316036113905760405162461bcd60e51b815260206004820152601760248201527f43616e277420736574207468697320616464726573732e0000000000000000006044820152606401610868565b6001600160a01b0382165f81815260126020908152604091829020805460ff191685151590811790915591519182527f1d9a11e204b58ad56c619c61600e42167624659d218f0143f1f64956b0daae6c91016112a9565b6001600160a01b039182165f90815260016020908152604080832093909416825291909152205490565b611419611b90565b801515600f60019054906101000a900460ff161515036114865760405162461bcd60e51b815260206004820152602260248201527f73776170456e61626c656420616c726561647920617420746869732073746174604482015261329760f11b6064820152608401610868565b600f80549115156101000261ff0019909216919091179055565b6114a8611b90565b6001600160a01b03811661150d5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610868565b610a1b81611d1a565b61151e611b90565b6001600160a01b03811661153657610a1b3347611d98565b6040516370a0823160e01b815230600482015281905f906001600160a01b038316906370a0823190602401602060405180830381865afa15801561157c573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906115a09190612449565b60405163a9059cbb60e01b8152336004820152602481018290529091506001600160a01b0383169063a9059cbb906044016020604051808303815f875af11580156115ed573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061161191906123cd565b50505050565b6001600160a01b0383166116795760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610868565b6001600160a01b0382166116da5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610868565b6001600160a01b038381165f8181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b5f61174584846113e7565b90505f198114611611578181101561179f5760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610868565b6116118484848403611617565b6001600160a01b0383166117d25760405162461bcd60e51b815260040161086890612460565b6001600160a01b0382166117f85760405162461bcd60e51b8152600401610868906124a5565b600f5462010000900460ff168061182657506001600160a01b0383165f9081526008602052604090205460ff165b8061184857506001600160a01b0382165f9081526008602052604090205460ff165b6118945760405162461bcd60e51b815260206004820152601860248201527f54726164696e67206e6f742079657420656e61626c65642100000000000000006044820152606401610868565b805f036118ab576118a683835f611ead565b505050565b305f90815260208190526040902054600e54811080159081906118d15750600f5460ff16155b80156118ea57506007546001600160a01b038581169116145b80156118fd5750600f54610100900460ff165b1561192357600f805460ff1916600117905561191882611fd5565b600f805460ff191690555b5f80601154610384611935919061239f565b421115611949575050600954600a54611987565b6011546119589061025861239f565b42111561196a5750600a905080611987565b6011546119799061012c61239f565b4211156119875750600f9050805b6001600160a01b0387165f9081526008602052604081205460ff16806119c457506001600160a01b0387165f9081526008602052604090205460ff165b806119d15750600f5460ff165b156119dd57505f611a2b565b6007546001600160a01b0390811690891603611a0b576010544311611a0457506063611a2b565b5081611a2b565b6007546001600160a01b0390811690881603611a28575080611a2b565b505f5b8015611a83575f6064611a3e83896123e8565b611a4891906123ff565b9050611a5481886124e8565b9650611a61893083611ead565b611a6c6005826123ff565b600b5f828254611a7c919061239f565b9091555050505b60135460ff1615611b7b576001600160a01b0388165f9081526012602052604090205460ff16158015611ace57506001600160a01b0387165f9081526012602052604090205460ff16155b8015611ae857506007546001600160a01b03888116911614155b15611b7b576001600160a01b0387165f90815260208190526040902054601454611b12888361239f565b1115611b795760405162461bcd60e51b815260206004820152603060248201527f4d617857616c6c65743a20526563697069656e7420657863656564732074686560448201526f081b585e15d85b1b195d105b5bdd5b9d60821b6064820152608401610868565b505b611b86888888611ead565b5050505050505050565b6005546001600160a01b03163314610b225760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610868565b6001600160a01b038216611c4a5760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b6064820152608401610868565b6001600160a01b0382165f9081526020819052604090205481811015611cbd5760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b6064820152608401610868565b6001600160a01b0383165f818152602081815260408083208686039055600280548790039055518581529192917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b600d546001600160a01b03163314610b2257604051639eaab64360e01b8152336004820152602401610868565b80471015611de85760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a20696e73756666696369656e742062616c616e63650000006044820152606401610868565b5f826001600160a01b0316826040515f6040518083038185875af1925050503d805f8114611e31576040519150601f19603f3d011682016040523d82523d5f602084013e611e36565b606091505b50509050806118a65760405162461bcd60e51b815260206004820152603a60248201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260448201527f6563697069656e74206d617920686176652072657665727465640000000000006064820152608401610868565b6001600160a01b038316611ed35760405162461bcd60e51b815260040161086890612460565b6001600160a01b038216611ef95760405162461bcd60e51b8152600401610868906124a5565b6001600160a01b0383165f9081526020819052604090205481811015611f705760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610868565b6001600160a01b038481165f81815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3611611565b60408051600280825260608201835247925f92919060208301908036833701905050905030815f8151811061200c5761200c6124fb565b6001600160a01b03928316602091820292909201810191909152600654604080516315ab88c960e31b81529051919093169263ad5c46489260048083019391928290030181865afa158015612063573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061208791906123b2565b8160018151811061209a5761209a6124fb565b6001600160a01b03928316602091820292909201015260065460405163791ac94760e01b815291169063791ac947906120df9086905f9086903090429060040161250f565b5f604051808303815f87803b1580156120f6575f80fd5b505af1158015612108573d5f803e3d5ffd5b505050505f824761211991906124e8565b90505f84600b548361212b91906123e8565b61213591906123ff565b600d5490915061214e906001600160a01b031682611d98565b600c54612164906001600160a01b031647611d98565b5f600b5560408051868152602081018490527f698295c77bfcc9f50c92db88cd69c836a2bf48a7694ec2ecb7ccc99ca9846706910160405180910390a15050505050565b5f6020808352835180828501525f5b818110156121d3578581018301518582016040015282016121b7565b505f604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b0381168114610a1b575f80fd5b5f8060408385031215612218575f80fd5b8235612223816121f3565b946020939093013593505050565b5f805f60608486031215612243575f80fd5b833561224e816121f3565b9250602084013561225e816121f3565b929592945050506040919091013590565b8015158114610a1b575f80fd5b5f6020828403121561228c575f80fd5b81356122978161226f565b9392505050565b5f602082840312156122ae575f80fd5b8135612297816121f3565b5f602082840312156122c9575f80fd5b5035919050565b5f80604083850312156122e1575f80fd5b50508035926020909101359150565b5f8060408385031215612301575f80fd5b823561230c816121f3565b9150602083013561231c8161226f565b809150509250929050565b5f8060408385031215612338575f80fd5b8235612343816121f3565b9150602083013561231c816121f3565b600181811c9082168061236757607f821691505b60208210810361238557634e487b7160e01b5f52602260045260245ffd5b50919050565b634e487b7160e01b5f52601160045260245ffd5b808201808211156107cd576107cd61238b565b5f602082840312156123c2575f80fd5b8151612297816121f3565b5f602082840312156123dd575f80fd5b81516122978161226f565b80820281158282048414176107cd576107cd61238b565b5f8261241957634e487b7160e01b5f52601260045260245ffd5b500490565b5f805f60608486031215612430575f80fd5b8351925060208401519150604084015190509250925092565b5f60208284031215612459575f80fd5b5051919050565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b818103818111156107cd576107cd61238b565b634e487b7160e01b5f52603260045260245ffd5b5f60a082018783526020878185015260a0604085015281875180845260c08601915082890193505f5b8181101561255d5784516001600160a01b031683529383019391830191600101612538565b50506001600160a01b0396909616606085015250505060800152939250505056fea264697066735822122001bed174681b62a1e51b2864829422d8806eca48768892bfffa27cc405ce9f7c64736f6c63430008150033

Deployed Bytecode

0x608060405260043610610236575f3560e01c80637924302811610129578063b8158d60116100a8578063e01af92c1161006d578063e01af92c146106a3578063e2f45605146106c2578063e4e44893146106d7578063f2fde38b146106ec578063f9d0831a1461070b575f80fd5b8063b8158d601461061c578063c024666814610631578063cd51e6d414610650578063d2fcc00114610665578063dd62ed3e14610684575f80fd5b8063a457c2d7116100ee578063a457c2d714610573578063a8a69b9d14610592578063a9059cbb146105c9578063aa4bde28146105e8578063afa4f3b2146105fd575f80fd5b806379243028146104f25780637ba54f1f1461050f5780638a8c523c1461052e5780638da5cb5b1461054257806395d89b411461055f575f80fd5b806339509351116101b55780635f100cff1161017a5780635f100cff1461044e5780636db794371461046d5780636ddd17131461048c57806370a08231146104aa578063715018a6146104de575f80fd5b8063395093511461039b57806342966c68146103ba57806349bd5a5e146103d95780634ada218b146103f85780634fbee19314610417575f80fd5b806321a9d82a116101fb57806321a9d82a1461030857806323b872dd146103215780632a6c7dba14610340578063313ce567146103615780633638f7f41461037c575f80fd5b806306fdde0314610241578063095ea7b31461026b5780630ce302941461029a5780631694505e146102bd57806318160ddd146102f4575f80fd5b3661023d57005b5f80fd5b34801561024c575f80fd5b5061025561072a565b60405161026291906121a8565b60405180910390f35b348015610276575f80fd5b5061028a610285366004612207565b6107ba565b6040519015158152602001610262565b3480156102a5575f80fd5b506102af600a5481565b604051908152602001610262565b3480156102c8575f80fd5b506006546102dc906001600160a01b031681565b6040516001600160a01b039091168152602001610262565b3480156102ff575f80fd5b506002546102af565b348015610313575f80fd5b5060135461028a9060ff1681565b34801561032c575f80fd5b5061028a61033b366004612231565b6107d3565b34801561034b575f80fd5b5061035f61035a36600461227c565b6107f6565b005b34801561036c575f80fd5b5060405160128152602001610262565b348015610387575f80fd5b5061035f61039636600461229e565b6108bf565b3480156103a6575f80fd5b5061028a6103b5366004612207565b6109f0565b3480156103c5575f80fd5b5061035f6103d43660046122b9565b610a11565b3480156103e4575f80fd5b506007546102dc906001600160a01b031681565b348015610403575f80fd5b50600f5461028a9062010000900460ff1681565b348015610422575f80fd5b5061028a61043136600461229e565b6001600160a01b03165f9081526008602052604090205460ff1690565b348015610459575f80fd5b50600c546102dc906001600160a01b031681565b348015610478575f80fd5b5061035f6104873660046122d0565b610a1e565b348015610497575f80fd5b50600f5461028a90610100900460ff1681565b3480156104b5575f80fd5b506102af6104c436600461229e565b6001600160a01b03165f9081526020819052604090205490565b3480156104e9575f80fd5b5061035f610b11565b3480156104fd575f80fd5b50600d546001600160a01b03166102dc565b34801561051a575f80fd5b5061035f61052936600461229e565b610b24565b348015610539575f80fd5b5061035f610c63565b34801561054d575f80fd5b506005546001600160a01b03166102dc565b34801561056a575f80fd5b50610255610fe2565b34801561057e575f80fd5b5061028a61058d366004612207565b610ff1565b34801561059d575f80fd5b5061028a6105ac36600461229e565b6001600160a01b03165f9081526012602052604090205460ff1690565b3480156105d4575f80fd5b5061028a6105e3366004612207565b61106b565b3480156105f3575f80fd5b506102af60145481565b348015610608575f80fd5b5061035f6106173660046122b9565b611078565b348015610627575f80fd5b506102af60115481565b34801561063c575f80fd5b5061035f61064b3660046122f0565b6111cc565b34801561065b575f80fd5b506102af60105481565b348015610670575f80fd5b5061035f61067f3660046122f0565b6112b5565b34801561068f575f80fd5b506102af61069e366004612327565b6113e7565b3480156106ae575f80fd5b5061035f6106bd36600461227c565b611411565b3480156106cd575f80fd5b506102af600e5481565b3480156106e2575f80fd5b506102af60095481565b3480156106f7575f80fd5b5061035f61070636600461229e565b6114a0565b348015610716575f80fd5b5061035f61072536600461229e565b611516565b60606003805461073990612353565b80601f016020809104026020016040519081016040528092919081815260200182805461076590612353565b80156107b05780601f10610787576101008083540402835291602001916107b0565b820191905f5260205f20905b81548152906001019060200180831161079357829003601f168201915b5050505050905090565b5f336107c7818585611617565b60019150505b92915050565b5f336107e085828561173a565b6107eb8585856117ac565b506001949350505050565b6107fe611b90565b60135460ff161515811515036108715760405162461bcd60e51b815260206004820152602d60248201527f4d61782077616c6c6574206c696d697420697320616c7265616479207365742060448201526c746f207468617420737461746560981b60648201526084015b60405180910390fd5b6013805460ff191682151590811790915560405160ff909116151581527f670f884265aba2d05e7c26efbc42f8365effc4cb3fcfcefddba0c0b71a6231f1906020015b60405180910390a150565b6108c7611b90565b600c546001600160a01b03908116908216036109375760405162461bcd60e51b815260206004820152602960248201527f496e637562414944414f2077616c6c657420697320616c72656164792074686160448201526874206164647265737360b81b6064820152608401610868565b6001600160a01b0381166109a25760405162461bcd60e51b815260206004820152602c60248201527f496e637562414944414f2077616c6c65742063616e6e6f74206265207468652060448201526b7a65726f206164647265737360a01b6064820152608401610868565b600c80546001600160a01b0319166001600160a01b0383169081179091556040519081527f561549c7bb6a5a58be8aa4c2369830fa99b7ca8e58eb6b38ee201aceab7212d1906020016108b4565b5f336107c7818585610a0283836113e7565b610a0c919061239f565b611617565b610a1b3382611bea565b50565b610a26611b90565b600a54821115610a785760405162461bcd60e51b815260206004820152601e60248201527f596f752063616e206f6e6c7920646563726561736520746865206665657300006044820152606401610868565b600954811115610aca5760405162461bcd60e51b815260206004820152601e60248201527f596f752063616e206f6e6c7920646563726561736520746865206665657300006044820152606401610868565b600a829055600981905560408051838152602081018390527f53482196ef67ac615caab1c3eca2c270acbfdcd75e57c5f24c1b98b10c8e6e04910160405180910390a15050565b610b19611b90565b610b225f611d1a565b565b610b2c611d6b565b600d546001600160a01b0390811690821603610ba35760405162461bcd60e51b815260206004820152603060248201527f4c697175696469747950726f76696465722077616c6c657420697320616c726560448201526f6164792074686174206164647265737360801b6064820152608401610868565b6001600160a01b038116610c155760405162461bcd60e51b815260206004820152603360248201527f4c697175696469747950726f76696465722077616c6c65742063616e6e6f7420604482015272626520746865207a65726f206164647265737360681b6064820152608401610868565b600d80546001600160a01b0319166001600160a01b0383169081179091556040519081527fe2491a2abd15e120355965e3bef7a5e9570d67de30ffddb7fc7408d0cb5450f8906020016108b4565b610c6b611d6b565b600f5462010000900460ff1615610cc45760405162461bcd60e51b815260206004820152601860248201527f54726164696e6720616c726561647920656e61626c65642e00000000000000006044820152606401610868565b60065f9054906101000a90046001600160a01b03166001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015610d14573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610d3891906123b2565b6001600160a01b031663c9c653963060065f9054906101000a90046001600160a01b03166001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015610d97573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610dbb91906123b2565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303815f875af1158015610e05573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610e2991906123b2565b600780546001600160a01b0319166001600160a01b03929092169182179055610e559030905f19611617565b60075460065460405163095ea7b360e01b81526001600160a01b0391821660048201525f19602482015291169063095ea7b3906044016020604051808303815f875af1158015610ea7573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610ecb91906123cd565b506006546001600160a01b031663f305d71947306103e8610f00826001600160a01b03165f9081526020819052604090205490565b610f0c906103796123e8565b610f1691906123ff565b5f80610f2a600d546001600160a01b031690565b60405160e088901b6001600160e01b03191681526001600160a01b03958616600482015260248101949094526044840192909252606483015290911660848201524260a482015260c40160606040518083038185885af1158015610f90573d5f803e3d5ffd5b50505050506040513d601f19601f82011682018060405250810190610fb5919061241e565b50506013805460ff1916600117905550600f80546201010062ffff00199091161790554360105542601155565b60606004805461073990612353565b5f3381610ffe82866113e7565b90508381101561105e5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610868565b6107eb8286868403611617565b5f336107c78185856117ac565b611080611b90565b620f424061108d60025490565b61109791906123ff565b81101561110c5760405162461bcd60e51b815260206004820152603f60248201527f53776170546f6b656e734174416d6f756e74206d75737420626520677265617460448201527f6572207468616e20302e3030303125206f6620746f74616c20737570706c79006064820152608401610868565b6103e861111860025490565b61112291906123ff565b8111156111975760405162461bcd60e51b815260206004820152603c60248201527f53776170546f6b656e734174416d6f756e74206d75737420626520677265617460448201527f6572207468616e20302e3125206f6620746f74616c20737570706c79000000006064820152608401610868565b600e8190556040518181527f7c26bfee26f82e8cb57af48f4019cc64582db6fac7bad778433f10572ae8b145906020016108b4565b6111d4611b90565b6001600160a01b0382165f9081526008602052604090205481151560ff9091161515036112565760405162461bcd60e51b815260206004820152602a60248201527f4163636f756e7420697320616c7265616479207468652076616c7565206f6620604482015269276578636c756465642760b01b6064820152608401610868565b6001600160a01b0382165f81815260086020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df791015b60405180910390a25050565b6112bd611b90565b6001600160a01b0382165f9081526012602052604090205481151560ff9091161515036113385760405162461bcd60e51b8152602060048201526024808201527f4163636f756e7420697320616c72656164792073657420746f207468617420736044820152637461746560e01b6064820152608401610868565b306001600160a01b038316036113905760405162461bcd60e51b815260206004820152601760248201527f43616e277420736574207468697320616464726573732e0000000000000000006044820152606401610868565b6001600160a01b0382165f81815260126020908152604091829020805460ff191685151590811790915591519182527f1d9a11e204b58ad56c619c61600e42167624659d218f0143f1f64956b0daae6c91016112a9565b6001600160a01b039182165f90815260016020908152604080832093909416825291909152205490565b611419611b90565b801515600f60019054906101000a900460ff161515036114865760405162461bcd60e51b815260206004820152602260248201527f73776170456e61626c656420616c726561647920617420746869732073746174604482015261329760f11b6064820152608401610868565b600f80549115156101000261ff0019909216919091179055565b6114a8611b90565b6001600160a01b03811661150d5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610868565b610a1b81611d1a565b61151e611b90565b6001600160a01b03811661153657610a1b3347611d98565b6040516370a0823160e01b815230600482015281905f906001600160a01b038316906370a0823190602401602060405180830381865afa15801561157c573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906115a09190612449565b60405163a9059cbb60e01b8152336004820152602481018290529091506001600160a01b0383169063a9059cbb906044016020604051808303815f875af11580156115ed573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061161191906123cd565b50505050565b6001600160a01b0383166116795760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610868565b6001600160a01b0382166116da5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610868565b6001600160a01b038381165f8181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b5f61174584846113e7565b90505f198114611611578181101561179f5760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610868565b6116118484848403611617565b6001600160a01b0383166117d25760405162461bcd60e51b815260040161086890612460565b6001600160a01b0382166117f85760405162461bcd60e51b8152600401610868906124a5565b600f5462010000900460ff168061182657506001600160a01b0383165f9081526008602052604090205460ff165b8061184857506001600160a01b0382165f9081526008602052604090205460ff165b6118945760405162461bcd60e51b815260206004820152601860248201527f54726164696e67206e6f742079657420656e61626c65642100000000000000006044820152606401610868565b805f036118ab576118a683835f611ead565b505050565b305f90815260208190526040902054600e54811080159081906118d15750600f5460ff16155b80156118ea57506007546001600160a01b038581169116145b80156118fd5750600f54610100900460ff165b1561192357600f805460ff1916600117905561191882611fd5565b600f805460ff191690555b5f80601154610384611935919061239f565b421115611949575050600954600a54611987565b6011546119589061025861239f565b42111561196a5750600a905080611987565b6011546119799061012c61239f565b4211156119875750600f9050805b6001600160a01b0387165f9081526008602052604081205460ff16806119c457506001600160a01b0387165f9081526008602052604090205460ff165b806119d15750600f5460ff165b156119dd57505f611a2b565b6007546001600160a01b0390811690891603611a0b576010544311611a0457506063611a2b565b5081611a2b565b6007546001600160a01b0390811690881603611a28575080611a2b565b505f5b8015611a83575f6064611a3e83896123e8565b611a4891906123ff565b9050611a5481886124e8565b9650611a61893083611ead565b611a6c6005826123ff565b600b5f828254611a7c919061239f565b9091555050505b60135460ff1615611b7b576001600160a01b0388165f9081526012602052604090205460ff16158015611ace57506001600160a01b0387165f9081526012602052604090205460ff16155b8015611ae857506007546001600160a01b03888116911614155b15611b7b576001600160a01b0387165f90815260208190526040902054601454611b12888361239f565b1115611b795760405162461bcd60e51b815260206004820152603060248201527f4d617857616c6c65743a20526563697069656e7420657863656564732074686560448201526f081b585e15d85b1b195d105b5bdd5b9d60821b6064820152608401610868565b505b611b86888888611ead565b5050505050505050565b6005546001600160a01b03163314610b225760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610868565b6001600160a01b038216611c4a5760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b6064820152608401610868565b6001600160a01b0382165f9081526020819052604090205481811015611cbd5760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b6064820152608401610868565b6001600160a01b0383165f818152602081815260408083208686039055600280548790039055518581529192917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b600d546001600160a01b03163314610b2257604051639eaab64360e01b8152336004820152602401610868565b80471015611de85760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a20696e73756666696369656e742062616c616e63650000006044820152606401610868565b5f826001600160a01b0316826040515f6040518083038185875af1925050503d805f8114611e31576040519150601f19603f3d011682016040523d82523d5f602084013e611e36565b606091505b50509050806118a65760405162461bcd60e51b815260206004820152603a60248201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260448201527f6563697069656e74206d617920686176652072657665727465640000000000006064820152608401610868565b6001600160a01b038316611ed35760405162461bcd60e51b815260040161086890612460565b6001600160a01b038216611ef95760405162461bcd60e51b8152600401610868906124a5565b6001600160a01b0383165f9081526020819052604090205481811015611f705760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610868565b6001600160a01b038481165f81815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3611611565b60408051600280825260608201835247925f92919060208301908036833701905050905030815f8151811061200c5761200c6124fb565b6001600160a01b03928316602091820292909201810191909152600654604080516315ab88c960e31b81529051919093169263ad5c46489260048083019391928290030181865afa158015612063573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061208791906123b2565b8160018151811061209a5761209a6124fb565b6001600160a01b03928316602091820292909201015260065460405163791ac94760e01b815291169063791ac947906120df9086905f9086903090429060040161250f565b5f604051808303815f87803b1580156120f6575f80fd5b505af1158015612108573d5f803e3d5ffd5b505050505f824761211991906124e8565b90505f84600b548361212b91906123e8565b61213591906123ff565b600d5490915061214e906001600160a01b031682611d98565b600c54612164906001600160a01b031647611d98565b5f600b5560408051868152602081018490527f698295c77bfcc9f50c92db88cd69c836a2bf48a7694ec2ecb7ccc99ca9846706910160405180910390a15050505050565b5f6020808352835180828501525f5b818110156121d3578581018301518582016040015282016121b7565b505f604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b0381168114610a1b575f80fd5b5f8060408385031215612218575f80fd5b8235612223816121f3565b946020939093013593505050565b5f805f60608486031215612243575f80fd5b833561224e816121f3565b9250602084013561225e816121f3565b929592945050506040919091013590565b8015158114610a1b575f80fd5b5f6020828403121561228c575f80fd5b81356122978161226f565b9392505050565b5f602082840312156122ae575f80fd5b8135612297816121f3565b5f602082840312156122c9575f80fd5b5035919050565b5f80604083850312156122e1575f80fd5b50508035926020909101359150565b5f8060408385031215612301575f80fd5b823561230c816121f3565b9150602083013561231c8161226f565b809150509250929050565b5f8060408385031215612338575f80fd5b8235612343816121f3565b9150602083013561231c816121f3565b600181811c9082168061236757607f821691505b60208210810361238557634e487b7160e01b5f52602260045260245ffd5b50919050565b634e487b7160e01b5f52601160045260245ffd5b808201808211156107cd576107cd61238b565b5f602082840312156123c2575f80fd5b8151612297816121f3565b5f602082840312156123dd575f80fd5b81516122978161226f565b80820281158282048414176107cd576107cd61238b565b5f8261241957634e487b7160e01b5f52601260045260245ffd5b500490565b5f805f60608486031215612430575f80fd5b8351925060208401519150604084015190509250925092565b5f60208284031215612459575f80fd5b5051919050565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b818103818111156107cd576107cd61238b565b634e487b7160e01b5f52603260045260245ffd5b5f60a082018783526020878185015260a0604085015281875180845260c08601915082890193505f5b8181101561255d5784516001600160a01b031683529383019391830191600101612538565b50506001600160a01b0396909616606085015250505060800152939250505056fea264697066735822122001bed174681b62a1e51b2864829422d8806eca48768892bfffa27cc405ce9f7c64736f6c63430008150033

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.