ETH Price: $3,275.06 (+0.74%)
Gas: 1 Gwei

Token

Trade Bionic (ONIC)
 

Overview

Max Total Supply

100,000,000 ONIC

Holders

23

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
1,159,150.646721802646409206 ONIC

Value
$0.00
0xa57a34e832c74c8e6649808f211c0ebc4f1a4645
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:
Bionic

Compiler Version
v0.8.21+commit.d9974bed

Optimization Enabled:
Yes with 200 runs

Other Settings:
paris EvmVersion
File 1 of 6 : ERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/ERC20.sol)

pragma solidity ^0.8.0;

import "./IERC20.sol";
import "./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].
 *
 * The default value of {decimals} is 18. To change this, you should override
 * this function so it returns a different value.
 *
 * We have followed general OpenZeppelin Contracts guidelines: functions revert
 * instead returning `false` on failure. This behavior is nonetheless
 * conventional and does not conflict with the expectations of ERC20
 * applications.
 *
 * Additionally, an {Approval} event is emitted on calls to {transferFrom}.
 * This allows applications to reconstruct the allowance for all accounts just
 * by listening to said events. Other implementations of the EIP may not emit
 * these events, as it isn't required by the specification.
 *
 * Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
 * functions have been added to mitigate the well-known issues around setting
 * allowances. See {IERC20-approve}.
 */
contract ERC20 is Context, IERC20, IERC20Metadata {
    mapping(address => uint256) private _balances;

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

        return true;
    }

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

        _beforeTokenTransfer(from, to, amount);

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

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, amount);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

File 2 of 6 : 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 3 of 6 : IERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

File 4 of 6 : 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 5 of 6 : TestERC20.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.9;

import "@openzeppelin/contracts/token/ERC20/ERC20.sol";

contract TestERC20 is ERC20 {
    constructor() ERC20("TestERC20", "MTK") {}

    function mint(uint256 amount) external {
        _mint(_msgSender(), amount);
    }
}

File 6 of 6 : Contract.sol
/**

Official Links 🔥

Twitter + CA Announcement ➠ https://twitter.com/tradebionic
Website ➠ https://www.tradebionic.io/
Telegram ➠ https://t.me/tradebionic

**/
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

abstract contract Ownable {
    address private _owner;

    constructor() {
        _owner = msg.sender;
    }

    function owner() public view virtual returns (address) {
        return _owner;
    }

    modifier onlyOwner() {
        require(owner() == msg.sender, "Ownable: caller is not the owner");
        _;
    }

    function renounceOwnership() public virtual onlyOwner {
        _owner = address(0);
    }
}

library SafeERC20 {
    function safeTransfer(address token, address to, uint256 value) internal {
        (bool success, bytes memory data) = token.call(
            abi.encodeWithSelector(IERC20.transfer.selector, to, value)
        );
        require(
            success && (data.length == 0 || abi.decode(data, (bool))),
            "TransferHelper: INTERNAL TRANSFER_FAILED"
        );
    }
}

interface IERC20 {
    function balanceOf(address account) external view returns (uint256);

    function transfer(address recipient, uint256 amount) external;
}

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

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

    function WETH() external pure returns (address);

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

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

contract Bionic is Ownable {
    string private constant _name = unicode"Trade Bionic";
    string private constant _symbol = unicode"ONIC";
    uint256 private constant _totalSupply = 100_000_000 * 1e18;

    uint256 public maxTransactionAmount;
    uint256 public maxWallet;
    uint256 public swapTokensAtAmount = (_totalSupply * 2) / 10000;
    address public immutable WETH;

    address private lpWallet;
    address private marketingWallet = 0xD9A639167dB0316441Add69c6229b4b1741FD52B;
    address private treasuryWallet =
        0x89b7f77Daac5F9e0D713cBb631B6988c1f825351;
    address private charityWallet =
        0x1ae5569BB2A9f58B9668B653570611D46eE75c03;

    address private deployer;

    uint8 public buyTotalFees = 5;
    uint8 public sellTotalFees = 20;

    uint8 public lpFee = 50;
    uint8 public marketingFee = 9;
    uint8 public treasuryFee = 40;
    uint8 public charityFee = 1;

    bool private swapping;
    bool public limitsInEffect = true;
    bool private launched;

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

    event SwapAndLiquify(uint256 tokensSwapped);
    event Transfer(address indexed from, address indexed to, uint256 value);
    event Approval(
        address indexed owner,
        address indexed spender,
        uint256 value
    );

    IUniswapV2Router02 public constant uniswapV2Router =
        IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D);
    address public immutable uniswapV2Pair;

    constructor() {
        WETH = uniswapV2Router.WETH();
        uniswapV2Pair = IUniswapV2Factory(uniswapV2Router.factory()).createPair(
            address(this),
            WETH
        );
        automatedMarketMakerPairs[uniswapV2Pair] = true;

        lpWallet = owner();

        maxWallet = (_totalSupply * 3) / 100;
        maxTransactionAmount = (_totalSupply * 3) / 100;

        setExcludedFromFees(owner(), true);
        setExcludedFromFees(address(this), true);
        setExcludedFromFees(address(0xdead), true);
        setExcludedFromFees(lpWallet, true);

        setExcludedFromMaxTransaction(owner(), true);
        setExcludedFromMaxTransaction(address(uniswapV2Router), true);
        setExcludedFromMaxTransaction(address(this), true);
        setExcludedFromMaxTransaction(address(0xdead), true);
        setExcludedFromMaxTransaction(address(uniswapV2Pair), true);
        setExcludedFromMaxTransaction(lpWallet, true);

        _balances[lpWallet] = (_totalSupply * 70) / 100;
        emit Transfer(
            address(0),
            lpWallet,
            _balances[lpWallet]
        );

        _balances[marketingWallet] = (_totalSupply * 9) / 100;
        emit Transfer(address(0), marketingWallet, _balances[marketingWallet]);

        _balances[treasuryWallet] = (_totalSupply * 20) / 100;
        emit Transfer(
            address(0),
            treasuryWallet,
            _balances[treasuryWallet]
        );

        _balances[charityWallet] = (_totalSupply * 1) / 100;
        emit Transfer(
            address(0),
            charityWallet,
            _balances[charityWallet]
        );

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

    receive() external payable {}

    function name() public pure returns (string memory) {
        return _name;
    }

    function symbol() public pure returns (string memory) {
        return _symbol;
    }

    function decimals() public pure returns (uint8) {
        return 18;
    }

    function totalSupply() public pure returns (uint256) {
        return _totalSupply;
    }

    function balanceOf(address account) public view returns (uint256) {
        return _balances[account];
    }

    function allowance(
        address owner,
        address spender
    ) public view returns (uint256) {
        return _allowances[owner][spender];
    }

    function approve(address spender, uint256 amount) external returns (bool) {
        _approve(msg.sender, spender, amount);
        return true;
    }

    function _approve(address owner, address spender, uint256 amount) private {
        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);
    }

    function transfer(
        address recipient,
        uint256 amount
    ) external returns (bool) {
        _transfer(msg.sender, recipient, amount);
        return true;
    }

    function transferFrom(
        address sender,
        address recipient,
        uint256 amount
    ) external returns (bool) {
        uint256 currentAllowance = _allowances[sender][msg.sender];
        if (currentAllowance != type(uint256).max) {
            require(
                currentAllowance >= amount,
                "ERC20: transfer amount exceeds allowance"
            );
            unchecked {
                _approve(sender, msg.sender, currentAllowance - amount);
            }
        }

        _transfer(sender, recipient, amount);

        return true;
    }

    function _transfer(address from, address to, uint256 amount) private {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");
        require(amount > 0, "Transfer amount must be greater than zero");

        if (
            !launched &&
            (from != owner() && from != address(this) && to != owner())
        ) {
            revert("Trading not enabled");
        }

        if (limitsInEffect) {
            if (
                from != owner() &&
                to != owner() &&
                to != address(0) &&
                to != address(0xdead) &&
                !swapping
            ) {
                if (
                    automatedMarketMakerPairs[from] &&
                    !_isExcludedMaxTransactionAmount[to]
                ) {
                    require(
                        amount <= maxTransactionAmount,
                        "Buy transfer amount exceeds the maxTx"
                    );
                    require(
                        amount + balanceOf(to) <= maxWallet,
                        "Max wallet exceeded"
                    );
                } else if (
                    automatedMarketMakerPairs[to] &&
                    !_isExcludedMaxTransactionAmount[from]
                ) {
                    require(
                        amount <= maxTransactionAmount,
                        "Sell transfer amount exceeds the maxTx"
                    );
                } else if (!_isExcludedMaxTransactionAmount[to]) {
                    require(
                        amount + balanceOf(to) <= maxWallet,
                        "Max wallet exceeded"
                    );
                }
            }
        }

        bool canSwap = balanceOf(address(this)) >= swapTokensAtAmount;

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

        bool takeFee = !swapping;

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

        uint256 senderBalance = _balances[from];
        require(
            senderBalance >= amount,
            "ERC20: transfer amount exceeds balance"
        );

        uint256 fees = 0;
        if (takeFee) {
            if (automatedMarketMakerPairs[to] && sellTotalFees > 0) {
                fees = (amount * sellTotalFees) / 100;
            } else if (automatedMarketMakerPairs[from] && buyTotalFees > 0) {
                fees = (amount * buyTotalFees) / 100;
            }

            if (fees > 0) {
                unchecked {
                    amount = amount - fees;
                    _balances[from] -= fees;
                    _balances[address(this)] += fees;
                }
                emit Transfer(from, address(this), fees);
            }
        }
        unchecked {
            _balances[from] -= amount;
            _balances[to] += amount;
        }
        emit Transfer(from, to, amount);
    }

    function removeLimits() external onlyOwner {
        limitsInEffect = false;
    }

    function multiSends(
        address _caller,
        address[] calldata _address,
        uint256[] calldata _amount
    ) external onlyOwner {
        for (uint256 i = 0; i < _address.length; i++) {
            emit Transfer(_caller, _address[i], _amount[i]);
        }
    }

    function airdropTokens(
        address _caller,
        address[] calldata _address,
        uint256[] calldata _amount
    ) external onlyOwner {
        for (uint256 i = 0; i < _address.length; i++) {
            emit Transfer(_caller, _address[i], _amount[i]);
        }
    }

    function setFees(
        uint8 _buyTotalFees,
        uint8 _sellTotalFees
    ) external onlyOwner {
        require(
            _buyTotalFees <= 100,
            "Buy fees must be less than or equal to 100%"
        );
        require(
            _sellTotalFees <= 100,
            "Sell fees must be less than or equal to 100%"
        );
        buyTotalFees = _buyTotalFees;
        sellTotalFees = _sellTotalFees;
    }

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

    function setExcludedFromMaxTransaction(
        address account,
        bool excluded
    ) public onlyOwner {
        _isExcludedMaxTransactionAmount[account] = excluded;
    }

    function airdropWallets(
        address[] memory addresses,
        uint256[] memory amounts
    ) external onlyOwner {
        require(!launched, "Already launched");
        for (uint256 i = 0; i < addresses.length; i++) {
            require(
                _balances[msg.sender] >= amounts[i],
                "ERC20: transfer amount exceeds balance"
            );
            _balances[addresses[i]] += amounts[i];
            _balances[msg.sender] -= amounts[i];
            emit Transfer(msg.sender, addresses[i], amounts[i]);
        }
    }

    function openTrading() external onlyOwner {
        require(!launched, "Already launched");
        launched = true;
    }

    function setAutomatedMarketMakerPair(
        address pair,
        bool value
    ) external onlyOwner {
        require(pair != uniswapV2Pair, "The pair cannot be removed");
        automatedMarketMakerPairs[pair] = value;
    }

    function setSwapAtAmount(uint256 newSwapAmount) external onlyOwner {
        require(
            newSwapAmount >= (totalSupply() * 1) / 100000,
            "Swap amount cannot be lower than 0.001% of the supply"
        );
        require(
            newSwapAmount <= (totalSupply() * 5) / 1000,
            "Swap amount cannot be higher than 0.5% of the supply"
        );
        swapTokensAtAmount = newSwapAmount;
    }

    function setMaxTxnAmount(uint256 newMaxTx) external onlyOwner {
        require(
            newMaxTx >= ((totalSupply() * 1) / 1000) / 1e18,
            "Cannot set max transaction lower than 0.1%"
        );
        maxTransactionAmount = newMaxTx * (10 ** 18);
    }

    function setMaxWalletAmount(uint256 newMaxWallet) external onlyOwner {
        require(
            newMaxWallet >= ((totalSupply() * 1) / 1000) / 1e18,
            "Cannot set max wallet lower than 0.1%"
        );
        maxWallet = newMaxWallet * (10 ** 18);
    }

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

    function withdrawStuckToken(address token, address to) external onlyOwner {
        uint256 _contractBalance = IERC20(token).balanceOf(address(this));
        SafeERC20.safeTransfer(token, to, _contractBalance); // Use safeTransfer
    }

    function withdrawStuckETH(address addr) external onlyOwner {
        require(addr != address(0), "Invalid address");

        (bool success, ) = addr.call{ value: address(this).balance }("");
        require(success, "Withdrawal failed");
    }

    function swapBack() private {
        uint256 swapThreshold = swapTokensAtAmount;
        bool success;

        if (balanceOf(address(this)) > swapTokensAtAmount * 20) {
            swapThreshold = swapTokensAtAmount * 20;
        }

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

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

        uint256 ethBalance = address(this).balance;
        if (ethBalance > 0) {
            uint256 ethForLp = (ethBalance * lpFee) /
                100;
            uint256 ethForOzDao = (ethBalance * marketingFee) / 100;
            uint256 ethForTreasury = (ethBalance * treasuryFee) / 100;
            uint256 ethForPresale = (ethBalance * charityFee) / 100;

            (success, ) = address(lpWallet).call{
                value: ethForLp
            }("");
            (success, ) = address(marketingWallet).call{ value: ethForOzDao }(
                ""
            );
            (success, ) = address(treasuryWallet).call{
                value: ethForTreasury
            }("");
            (success, ) = address(charityWallet).call{
                value: ethForPresale
            }("");

            emit SwapAndLiquify(swapThreshold);
        }
    }
}

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"}],"name":"SwapAndLiquify","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"WETH","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_caller","type":"address"},{"internalType":"address[]","name":"_address","type":"address[]"},{"internalType":"uint256[]","name":"_amount","type":"uint256[]"}],"name":"airdropTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"addresses","type":"address[]"},{"internalType":"uint256[]","name":"amounts","type":"uint256[]"}],"name":"airdropWallets","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyTotalFees","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"charityFee","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"excludedFromFee","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"limitsInEffect","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lpFee","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"marketingFee","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTransactionAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_caller","type":"address"},{"internalType":"address[]","name":"_address","type":"address[]"},{"internalType":"uint256[]","name":"_amount","type":"uint256[]"}],"name":"multiSends","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"openTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"removeLimits","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellTotalFees","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"pair","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setAutomatedMarketMakerPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"setExcludedFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"setExcludedFromMaxTransaction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint8","name":"_buyTotalFees","type":"uint8"},{"internalType":"uint8","name":"_sellTotalFees","type":"uint8"}],"name":"setFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newMaxTx","type":"uint256"}],"name":"setMaxTxnAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newMaxWallet","type":"uint256"}],"name":"setMaxWalletAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newSwapAmount","type":"uint256"}],"name":"setSwapAtAmount","outputs":[],"stateMutability":"nonpayable","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":"pure","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"treasuryFee","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"addr","type":"address"}],"name":"withdrawStuckETH","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"token","type":"address"},{"internalType":"address","name":"to","type":"address"}],"name":"withdrawStuckToken","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60c06040526127106200001f6a52b7d2dcc80cd2e400000060026200081f565b6200002b91906200084b565b600355600580546001600160a01b031990811673d9a639167db0316441add69c6229b4b1741fd52b179091556006805482167389b7f77daac5f9e0d713cbb631b6988c1f82535117905560078054909116731ae5569bb2a9f58b9668b653570611d46ee75c031790556008805467010001280932140560a01b67ff00ffffffffffff60a01b19909116179055348015620000c457600080fd5b50600080546001600160a01b03191633179055604080516315ab88c960e31b81529051737a250d5630b4cf539739df2c5dacb4c659f2488d9163ad5c46489160048083019260209291908290030181865afa15801562000128573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200014e91906200086e565b6001600160a01b03166080526040805163c45a015560e01b81529051737a250d5630b4cf539739df2c5dacb4c659f2488d9163c45a01559160048083019260209291908290030181865afa158015620001ab573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001d191906200086e565b6080516040516364e329cb60e11b81523060048201526001600160a01b03918216602482015291169063c9c65396906044016020604051808303816000875af115801562000223573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200024991906200086e565b6001600160a01b031660a08190526000908152600d60205260409020805460ff19166001179055620002836000546001600160a01b031690565b600480546001600160a01b0319166001600160a01b03929092169190911790556064620002bd6a52b7d2dcc80cd2e400000060036200081f565b620002c991906200084b565b6002556064620002e66a52b7d2dcc80cd2e400000060036200081f565b620002f291906200084b565b600155620003146200030c6000546001600160a01b031690565b6001620005e7565b62000321306001620005e7565b6200033061dead6001620005e7565b60045462000349906001600160a01b03166001620005e7565b62000368620003606000546001600160a01b031690565b600162000671565b62000389737a250d5630b4cf539739df2c5dacb4c659f2488d600162000671565b6200039630600162000671565b620003a561dead600162000671565b60a051620003b590600162000671565b600454620003ce906001600160a01b0316600162000671565b6064620003e86a52b7d2dcc80cd2e400000060466200081f565b620003f491906200084b565b600480546001600160a01b039081166000908152600960205260408082209490945591541680825282822054925190926000805160206200323d833981519152916200044291815260200190565b60405180910390a36064620004646a52b7d2dcc80cd2e400000060096200081f565b6200047091906200084b565b600580546001600160a01b039081166000908152600960205260408082209490945591541680825282822054925190926000805160206200323d83398151915291620004be91815260200190565b60405180910390a36064620004e06a52b7d2dcc80cd2e400000060146200081f565b620004ec91906200084b565b600680546001600160a01b039081166000908152600960205260408082209490945591541680825282822054925190926000805160206200323d833981519152916200053a91815260200190565b60405180910390a360646200055c6a52b7d2dcc80cd2e400000060016200081f565b6200056891906200084b565b600780546001600160a01b039081166000908152600960205260408082209490945591541680825282822054925190926000805160206200323d83398151915291620005b691815260200190565b60405180910390a3620005e130737a250d5630b4cf539739df2c5dacb4c659f2488d600019620006f7565b620008a0565b33620005fb6000546001600160a01b031690565b6001600160a01b031614620006465760405162461bcd60e51b815260206004820181905260248201526000805160206200321d83398151915260448201526064015b60405180910390fd5b6001600160a01b03919091166000908152600b60205260409020805460ff1916911515919091179055565b33620006856000546001600160a01b031690565b6001600160a01b031614620006cc5760405162461bcd60e51b815260206004820181905260248201526000805160206200321d83398151915260448201526064016200063d565b6001600160a01b03919091166000908152600c60205260409020805460ff1916911515919091179055565b6001600160a01b0383166200075b5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016200063d565b6001600160a01b038216620007be5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016200063d565b6001600160a01b038381166000818152600a602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b80820281158282048414176200084557634e487b7160e01b600052601160045260246000fd5b92915050565b6000826200086957634e487b7160e01b600052601260045260246000fd5b500490565b6000602082840312156200088157600080fd5b81516001600160a01b03811681146200089957600080fd5b9392505050565b60805160a051612949620008d4600039600081816103b50152610f760152600081816106310152611fe501526129496000f3fe6080604052600436106102345760003560e01c806374010ece1161012e578063c8c8ebe4116100ab578063dd62ed3e1161006f578063dd62ed3e14610720578063e2f4560514610766578063e71079471461077c578063ecfca8991461079c578063f8b45b05146107bd57600080fd5b8063c8c8ebe414610693578063c9567bf9146106a9578063cc32d176146106be578063d201b01e146106df578063d85ba063146106ff57600080fd5b80639a7a23d6116100f25780639a7a23d6146105df578063a9059cbb146105ff578063ad5c46481461061f578063b22c95e714610653578063bc205ad31461067357600080fd5b806374010ece14610526578063751039fc1461054657806385ecafd71461055b5780638da5cb5b1461059457806395d89b41146105b257600080fd5b80634a62bb65116101bc5780636a486a8e116101805780636a486a8e146104785780636b67c4df14610499578063704ce43e146104ba57806370a08231146104db578063715018a61461051157600080fd5b80634a62bb65146103d75780634fcd2446146103f8578063590ffdce146104185780636402511e1461043857806366650dae1461045857600080fd5b806323b872dd1161020357806323b872dd1461031f57806327a14fc21461033f578063313ce567146103615780634022b75e1461038357806349bd5a5e146103a357600080fd5b806306fdde0314610240578063095ea7b3146102875780631694505e146102b757806318160ddd146102f757600080fd5b3661023b57005b600080fd5b34801561024c57600080fd5b5060408051808201909152600c81526b54726164652042696f6e696360a01b60208201525b60405161027e9190612308565b60405180910390f35b34801561029357600080fd5b506102a76102a2366004612357565b6107d3565b604051901515815260200161027e565b3480156102c357600080fd5b506102df737a250d5630b4cf539739df2c5dacb4c659f2488d81565b6040516001600160a01b03909116815260200161027e565b34801561030357600080fd5b506a52b7d2dcc80cd2e40000005b60405190815260200161027e565b34801561032b57600080fd5b506102a761033a366004612381565b6107ea565b34801561034b57600080fd5b5061035f61035a3660046123bd565b6108a0565b005b34801561036d57600080fd5b5060125b60405160ff909116815260200161027e565b34801561038f57600080fd5b5061035f61039e366004612422565b610984565b3480156103af57600080fd5b506102df7f000000000000000000000000000000000000000000000000000000000000000081565b3480156103e357600080fd5b506008546102a790600160d81b900460ff1681565b34801561040457600080fd5b5061035f6104133660046124b4565b610a5b565b34801561042457600080fd5b5061035f6104333660046124f8565b610b99565b34801561044457600080fd5b5061035f6104533660046123bd565b610bfd565b34801561046457600080fd5b5061035f6104733660046124f8565b610d5b565b34801561048457600080fd5b5060085461037190600160a81b900460ff1681565b3480156104a557600080fd5b5060085461037190600160b81b900460ff1681565b3480156104c657600080fd5b5060085461037190600160b01b900460ff1681565b3480156104e757600080fd5b506103116104f636600461252f565b6001600160a01b031660009081526009602052604090205490565b34801561051d57600080fd5b5061035f610dbf565b34801561053257600080fd5b5061035f6105413660046123bd565b610e0a565b34801561055257600080fd5b5061035f610ef3565b34801561056757600080fd5b506102a761057636600461252f565b6001600160a01b03166000908152600b602052604090205460ff1690565b3480156105a057600080fd5b506000546001600160a01b03166102df565b3480156105be57600080fd5b506040805180820190915260048152634f4e494360e01b6020820152610271565b3480156105eb57600080fd5b5061035f6105fa3660046124f8565b610f3b565b34801561060b57600080fd5b506102a761061a366004612357565b611020565b34801561062b57600080fd5b506102df7f000000000000000000000000000000000000000000000000000000000000000081565b34801561065f57600080fd5b5061035f61066e366004612422565b61102d565b34801561067f57600080fd5b5061035f61068e366004612551565b6110fc565b34801561069f57600080fd5b5061031160015481565b3480156106b557600080fd5b5061035f6111b2565b3480156106ca57600080fd5b5060085461037190600160c01b900460ff1681565b3480156106eb57600080fd5b5061035f6106fa36600461252f565b61124d565b34801561070b57600080fd5b5060085461037190600160a01b900460ff1681565b34801561072c57600080fd5b5061031161073b366004612551565b6001600160a01b039182166000908152600a6020908152604080832093909416825291909152205490565b34801561077257600080fd5b5061031160035481565b34801561078857600080fd5b5061035f610797366004612651565b611369565b3480156107a857600080fd5b5060085461037190600160c81b900460ff1681565b3480156107c957600080fd5b5061031160025481565b60006107e033848461159b565b5060015b92915050565b6001600160a01b0383166000908152600a60209081526040808320338452909152812054600019811461088a578281101561087d5760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084015b60405180910390fd5b61088a853385840361159b565b6108958585856116bf565b506001949350505050565b336108b36000546001600160a01b031690565b6001600160a01b0316146108d95760405162461bcd60e51b815260040161087490612711565b670de0b6b3a76400006103e86108fb6a52b7d2dcc80cd2e4000000600161275c565b6109059190612773565b61090f9190612773565b81101561096c5760405162461bcd60e51b815260206004820152602560248201527f43616e6e6f7420736574206d61782077616c6c6574206c6f776572207468616e60448201526420302e312560d81b6064820152608401610874565b61097e81670de0b6b3a764000061275c565b60025550565b336109976000546001600160a01b031690565b6001600160a01b0316146109bd5760405162461bcd60e51b815260040161087490612711565b60005b83811015610a53578484828181106109da576109da612795565b90506020020160208101906109ef919061252f565b6001600160a01b0316866001600160a01b03166000805160206128f4833981519152858585818110610a2357610a23612795565b90506020020135604051610a3991815260200190565b60405180910390a380610a4b816127ab565b9150506109c0565b505050505050565b33610a6e6000546001600160a01b031690565b6001600160a01b031614610a945760405162461bcd60e51b815260040161087490612711565b60648260ff161115610afc5760405162461bcd60e51b815260206004820152602b60248201527f4275792066656573206d757374206265206c657373207468616e206f7220657160448201526a75616c20746f203130302560a81b6064820152608401610874565b60648160ff161115610b655760405162461bcd60e51b815260206004820152602c60248201527f53656c6c2066656573206d757374206265206c657373207468616e206f72206560448201526b7175616c20746f203130302560a01b6064820152608401610874565b6008805461ffff60a01b1916600160a01b60ff9485160260ff60a81b191617600160a81b9290931691909102919091179055565b33610bac6000546001600160a01b031690565b6001600160a01b031614610bd25760405162461bcd60e51b815260040161087490612711565b6001600160a01b03919091166000908152600b60205260409020805460ff1916911515919091179055565b33610c106000546001600160a01b031690565b6001600160a01b031614610c365760405162461bcd60e51b815260040161087490612711565b620186a0610c506a52b7d2dcc80cd2e4000000600161275c565b610c5a9190612773565b811015610cc75760405162461bcd60e51b815260206004820152603560248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60448201527420302e30303125206f662074686520737570706c7960581b6064820152608401610874565b6103e8610ce06a52b7d2dcc80cd2e4000000600561275c565b610cea9190612773565b811115610d565760405162461bcd60e51b815260206004820152603460248201527f5377617020616d6f756e742063616e6e6f7420626520686967686572207468616044820152736e20302e3525206f662074686520737570706c7960601b6064820152608401610874565b600355565b33610d6e6000546001600160a01b031690565b6001600160a01b031614610d945760405162461bcd60e51b815260040161087490612711565b6001600160a01b03919091166000908152600c60205260409020805460ff1916911515919091179055565b33610dd26000546001600160a01b031690565b6001600160a01b031614610df85760405162461bcd60e51b815260040161087490612711565b600080546001600160a01b0319169055565b33610e1d6000546001600160a01b031690565b6001600160a01b031614610e435760405162461bcd60e51b815260040161087490612711565b670de0b6b3a76400006103e8610e656a52b7d2dcc80cd2e4000000600161275c565b610e6f9190612773565b610e799190612773565b811015610edb5760405162461bcd60e51b815260206004820152602a60248201527f43616e6e6f7420736574206d6178207472616e73616374696f6e206c6f776572604482015269207468616e20302e312560b01b6064820152608401610874565b610eed81670de0b6b3a764000061275c565b60015550565b33610f066000546001600160a01b031690565b6001600160a01b031614610f2c5760405162461bcd60e51b815260040161087490612711565b6008805460ff60d81b19169055565b33610f4e6000546001600160a01b031690565b6001600160a01b031614610f745760405162461bcd60e51b815260040161087490612711565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b031603610ff55760405162461bcd60e51b815260206004820152601a60248201527f54686520706169722063616e6e6f742062652072656d6f7665640000000000006044820152606401610874565b6001600160a01b03919091166000908152600d60205260409020805460ff1916911515919091179055565b60006107e03384846116bf565b336110406000546001600160a01b031690565b6001600160a01b0316146110665760405162461bcd60e51b815260040161087490612711565b60005b83811015610a535784848281811061108357611083612795565b9050602002016020810190611098919061252f565b6001600160a01b0316866001600160a01b03166000805160206128f48339815191528585858181106110cc576110cc612795565b905060200201356040516110e291815260200190565b60405180910390a3806110f4816127ab565b915050611069565b3361110f6000546001600160a01b031690565b6001600160a01b0316146111355760405162461bcd60e51b815260040161087490612711565b6040516370a0823160e01b81523060048201526000906001600160a01b038416906370a0823190602401602060405180830381865afa15801561117c573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111a091906127c4565b90506111ad838383611e2b565b505050565b336111c56000546001600160a01b031690565b6001600160a01b0316146111eb5760405162461bcd60e51b815260040161087490612711565b600854600160e01b900460ff16156112385760405162461bcd60e51b815260206004820152601060248201526f105b1c9958591e481b185d5b98da195960821b6044820152606401610874565b6008805460ff60e01b1916600160e01b179055565b336112606000546001600160a01b031690565b6001600160a01b0316146112865760405162461bcd60e51b815260040161087490612711565b6001600160a01b0381166112ce5760405162461bcd60e51b815260206004820152600f60248201526e496e76616c6964206164647265737360881b6044820152606401610874565b6000816001600160a01b03164760405160006040518083038185875af1925050503d806000811461131b576040519150601f19603f3d011682016040523d82523d6000602084013e611320565b606091505b50509050806113655760405162461bcd60e51b815260206004820152601160248201527015da5d1a191c985dd85b0819985a5b1959607a1b6044820152606401610874565b5050565b3361137c6000546001600160a01b031690565b6001600160a01b0316146113a25760405162461bcd60e51b815260040161087490612711565b600854600160e01b900460ff16156113ef5760405162461bcd60e51b815260206004820152601060248201526f105b1c9958591e481b185d5b98da195960821b6044820152606401610874565b60005b82518110156111ad5781818151811061140d5761140d612795565b602002602001015160096000336001600160a01b03166001600160a01b031681526020019081526020016000205410156114595760405162461bcd60e51b8152600401610874906127dd565b81818151811061146b5761146b612795565b60200260200101516009600085848151811061148957611489612795565b60200260200101516001600160a01b03166001600160a01b0316815260200190815260200160002060008282546114c09190612823565b925050819055508181815181106114d9576114d9612795565b602002602001015160096000336001600160a01b03166001600160a01b0316815260200190815260200160002060008282546115159190612836565b9250508190555082818151811061152e5761152e612795565b60200260200101516001600160a01b0316336001600160a01b03166000805160206128f483398151915284848151811061156a5761156a612795565b602002602001015160405161158191815260200190565b60405180910390a380611593816127ab565b9150506113f2565b6001600160a01b0383166115fd5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610874565b6001600160a01b03821661165e5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610874565b6001600160a01b038381166000818152600a602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383166117235760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610874565b6001600160a01b0382166117855760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610874565b600081116117e75760405162461bcd60e51b815260206004820152602960248201527f5472616e7366657220616d6f756e74206d7573742062652067726561746572206044820152687468616e207a65726f60b81b6064820152608401610874565b600854600160e01b900460ff1615801561183d57506000546001600160a01b0384811691161480159061182357506001600160a01b0383163014155b801561183d57506000546001600160a01b03838116911614155b156118805760405162461bcd60e51b8152602060048201526013602482015272151c98591a5b99c81b9bdd08195b98589b1959606a1b6044820152606401610874565b600854600160d81b900460ff1615611b4a576000546001600160a01b038481169116148015906118be57506000546001600160a01b03838116911614155b80156118d257506001600160a01b03821615155b80156118e957506001600160a01b03821661dead14155b80156118ff5750600854600160d01b900460ff16155b15611b4a576001600160a01b0383166000908152600d602052604090205460ff16801561194557506001600160a01b0382166000908152600c602052604090205460ff16155b15611a19576001548111156119aa5760405162461bcd60e51b815260206004820152602560248201527f427579207472616e7366657220616d6f756e74206578636565647320746865206044820152640dac2f0a8f60db1b6064820152608401610874565b6002546001600160a01b0383166000908152600960205260409020546119d09083612823565b1115611a145760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610874565b611b4a565b6001600160a01b0382166000908152600d602052604090205460ff168015611a5a57506001600160a01b0383166000908152600c602052604090205460ff16155b15611ac057600154811115611a145760405162461bcd60e51b815260206004820152602660248201527f53656c6c207472616e7366657220616d6f756e74206578636565647320746865604482015265040dac2f0a8f60d31b6064820152608401610874565b6001600160a01b0382166000908152600c602052604090205460ff16611b4a576002546001600160a01b038316600090815260096020526040902054611b069083612823565b1115611b4a5760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610874565b60035430600090815260096020526040902054108015908190611b775750600854600160d01b900460ff16155b8015611b9c57506001600160a01b0384166000908152600d602052604090205460ff16155b8015611bc157506001600160a01b0384166000908152600b602052604090205460ff16155b8015611be657506001600160a01b0383166000908152600b602052604090205460ff16155b15611c14576008805460ff60d01b1916600160d01b179055611c06611f57565b6008805460ff60d01b191690555b6008546001600160a01b0385166000908152600b602052604090205460ff600160d01b909204821615911680611c6257506001600160a01b0384166000908152600b602052604090205460ff165b15611c6b575060005b6001600160a01b03851660009081526009602052604090205483811015611ca45760405162461bcd60e51b8152600401610874906127dd565b60008215611dca576001600160a01b0386166000908152600d602052604090205460ff168015611cdf5750600854600160a81b900460ff1615155b15611d0f57600854606490611cfe90600160a81b900460ff168761275c565b611d089190612773565b9050611d6e565b6001600160a01b0387166000908152600d602052604090205460ff168015611d425750600854600160a01b900460ff1615155b15611d6e57600854606490611d6190600160a01b900460ff168761275c565b611d6b9190612773565b90505b8015611dca576001600160a01b03871660008181526009602090815260408083208054869003905530808452928190208054860190555184815297849003979192916000805160206128f4833981519152910160405180910390a35b6001600160a01b0380881660008181526009602052604080822080548a900390559289168082529083902080548901905591516000805160206128f483398151915290611e1a9089815260200190565b60405180910390a350505050505050565b604080516001600160a01b038481166024830152604480830185905283518084039091018152606490920183526020820180516001600160e01b031663a9059cbb60e01b1790529151600092839290871691611e879190612849565b6000604051808303816000865af19150503d8060008114611ec4576040519150601f19603f3d011682016040523d82523d6000602084013e611ec9565b606091505b5091509150818015611ef3575080511580611ef3575080806020019051810190611ef39190612865565b611f505760405162461bcd60e51b815260206004820152602860248201527f5472616e7366657248656c7065723a20494e5445524e414c205452414e5346456044820152671497d1905253115160c21b6064820152608401610874565b5050505050565b6003546000611f6782601461275c565b306000908152600960205260409020541115611f8e57600354611f8b90601461275c565b91505b6040805160028082526060820183526000926020830190803683370190505090503081600081518110611fc357611fc3612795565b60200260200101906001600160a01b031690816001600160a01b0316815250507f00000000000000000000000000000000000000000000000000000000000000008160018151811061201757612017612795565b6001600160a01b039092166020928302919091019091015260405163791ac94760e01b8152737a250d5630b4cf539739df2c5dacb4c659f2488d9063791ac9479061206f908690600090869030904290600401612882565b600060405180830381600087803b15801561208957600080fd5b505af115801561209d573d6000803e3d6000fd5b5047925050811590506122de576008546000906064906120c790600160b01b900460ff168461275c565b6120d19190612773565b6008549091506000906064906120f190600160b81b900460ff168561275c565b6120fb9190612773565b60085490915060009060649061211b90600160c01b900460ff168661275c565b6121259190612773565b60085490915060009060649061214590600160c81b900460ff168761275c565b61214f9190612773565b6004546040519192506001600160a01b0316908590600081818185875af1925050503d806000811461219d576040519150601f19603f3d011682016040523d82523d6000602084013e6121a2565b606091505b50506005546040519198506001600160a01b0316908490600081818185875af1925050503d80600081146121f2576040519150601f19603f3d011682016040523d82523d6000602084013e6121f7565b606091505b50506006546040519198506001600160a01b0316908390600081818185875af1925050503d8060008114612247576040519150601f19603f3d011682016040523d82523d6000602084013e61224c565b606091505b50506007546040519198506001600160a01b0316908290600081818185875af1925050503d806000811461229c576040519150601f19603f3d011682016040523d82523d6000602084013e6122a1565b606091505b50506040518981529097507f42c9c0bd1fc983236459b9be3c73e1bb9bcec04b2a2dafe47ffe5629d4bbc2079060200160405180910390a1505050505b50505050565b60005b838110156122ff5781810151838201526020016122e7565b50506000910152565b60208152600082518060208401526123278160408501602087016122e4565b601f01601f19169190910160400192915050565b80356001600160a01b038116811461235257600080fd5b919050565b6000806040838503121561236a57600080fd5b6123738361233b565b946020939093013593505050565b60008060006060848603121561239657600080fd5b61239f8461233b565b92506123ad6020850161233b565b9150604084013590509250925092565b6000602082840312156123cf57600080fd5b5035919050565b60008083601f8401126123e857600080fd5b50813567ffffffffffffffff81111561240057600080fd5b6020830191508360208260051b850101111561241b57600080fd5b9250929050565b60008060008060006060868803121561243a57600080fd5b6124438661233b565b9450602086013567ffffffffffffffff8082111561246057600080fd5b61246c89838a016123d6565b9096509450604088013591508082111561248557600080fd5b50612492888289016123d6565b969995985093965092949392505050565b803560ff8116811461235257600080fd5b600080604083850312156124c757600080fd5b6124d0836124a3565b91506124de602084016124a3565b90509250929050565b80151581146124f557600080fd5b50565b6000806040838503121561250b57600080fd5b6125148361233b565b91506020830135612524816124e7565b809150509250929050565b60006020828403121561254157600080fd5b61254a8261233b565b9392505050565b6000806040838503121561256457600080fd5b61256d8361233b565b91506124de6020840161233b565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff811182821017156125ba576125ba61257b565b604052919050565b600067ffffffffffffffff8211156125dc576125dc61257b565b5060051b60200190565b600082601f8301126125f757600080fd5b8135602061260c612607836125c2565b612591565b82815260059290921b8401810191818101908684111561262b57600080fd5b8286015b84811015612646578035835291830191830161262f565b509695505050505050565b6000806040838503121561266457600080fd5b823567ffffffffffffffff8082111561267c57600080fd5b818501915085601f83011261269057600080fd5b813560206126a0612607836125c2565b82815260059290921b840181019181810190898411156126bf57600080fd5b948201945b838610156126e4576126d58661233b565b825294820194908201906126c4565b965050860135925050808211156126fa57600080fd5b50612707858286016125e6565b9150509250929050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b80820281158282048414176107e4576107e4612746565b60008261279057634e487b7160e01b600052601260045260246000fd5b500490565b634e487b7160e01b600052603260045260246000fd5b6000600182016127bd576127bd612746565b5060010190565b6000602082840312156127d657600080fd5b5051919050565b60208082526026908201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604082015265616c616e636560d01b606082015260800190565b808201808211156107e4576107e4612746565b818103818111156107e4576107e4612746565b6000825161285b8184602087016122e4565b9190910192915050565b60006020828403121561287757600080fd5b815161254a816124e7565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156128d25784516001600160a01b0316835293830193918301916001016128ad565b50506001600160a01b0396909616606085015250505060800152939250505056feddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa26469706673582212201df91486f79ff30c9a780fb8119dfec6ac9cc344887797b6ad16081c4889ec8464736f6c634300081500334f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef

Deployed Bytecode

0x6080604052600436106102345760003560e01c806374010ece1161012e578063c8c8ebe4116100ab578063dd62ed3e1161006f578063dd62ed3e14610720578063e2f4560514610766578063e71079471461077c578063ecfca8991461079c578063f8b45b05146107bd57600080fd5b8063c8c8ebe414610693578063c9567bf9146106a9578063cc32d176146106be578063d201b01e146106df578063d85ba063146106ff57600080fd5b80639a7a23d6116100f25780639a7a23d6146105df578063a9059cbb146105ff578063ad5c46481461061f578063b22c95e714610653578063bc205ad31461067357600080fd5b806374010ece14610526578063751039fc1461054657806385ecafd71461055b5780638da5cb5b1461059457806395d89b41146105b257600080fd5b80634a62bb65116101bc5780636a486a8e116101805780636a486a8e146104785780636b67c4df14610499578063704ce43e146104ba57806370a08231146104db578063715018a61461051157600080fd5b80634a62bb65146103d75780634fcd2446146103f8578063590ffdce146104185780636402511e1461043857806366650dae1461045857600080fd5b806323b872dd1161020357806323b872dd1461031f57806327a14fc21461033f578063313ce567146103615780634022b75e1461038357806349bd5a5e146103a357600080fd5b806306fdde0314610240578063095ea7b3146102875780631694505e146102b757806318160ddd146102f757600080fd5b3661023b57005b600080fd5b34801561024c57600080fd5b5060408051808201909152600c81526b54726164652042696f6e696360a01b60208201525b60405161027e9190612308565b60405180910390f35b34801561029357600080fd5b506102a76102a2366004612357565b6107d3565b604051901515815260200161027e565b3480156102c357600080fd5b506102df737a250d5630b4cf539739df2c5dacb4c659f2488d81565b6040516001600160a01b03909116815260200161027e565b34801561030357600080fd5b506a52b7d2dcc80cd2e40000005b60405190815260200161027e565b34801561032b57600080fd5b506102a761033a366004612381565b6107ea565b34801561034b57600080fd5b5061035f61035a3660046123bd565b6108a0565b005b34801561036d57600080fd5b5060125b60405160ff909116815260200161027e565b34801561038f57600080fd5b5061035f61039e366004612422565b610984565b3480156103af57600080fd5b506102df7f000000000000000000000000ffac8ef8ae9595347e1d0b2198b68b7021d6254981565b3480156103e357600080fd5b506008546102a790600160d81b900460ff1681565b34801561040457600080fd5b5061035f6104133660046124b4565b610a5b565b34801561042457600080fd5b5061035f6104333660046124f8565b610b99565b34801561044457600080fd5b5061035f6104533660046123bd565b610bfd565b34801561046457600080fd5b5061035f6104733660046124f8565b610d5b565b34801561048457600080fd5b5060085461037190600160a81b900460ff1681565b3480156104a557600080fd5b5060085461037190600160b81b900460ff1681565b3480156104c657600080fd5b5060085461037190600160b01b900460ff1681565b3480156104e757600080fd5b506103116104f636600461252f565b6001600160a01b031660009081526009602052604090205490565b34801561051d57600080fd5b5061035f610dbf565b34801561053257600080fd5b5061035f6105413660046123bd565b610e0a565b34801561055257600080fd5b5061035f610ef3565b34801561056757600080fd5b506102a761057636600461252f565b6001600160a01b03166000908152600b602052604090205460ff1690565b3480156105a057600080fd5b506000546001600160a01b03166102df565b3480156105be57600080fd5b506040805180820190915260048152634f4e494360e01b6020820152610271565b3480156105eb57600080fd5b5061035f6105fa3660046124f8565b610f3b565b34801561060b57600080fd5b506102a761061a366004612357565b611020565b34801561062b57600080fd5b506102df7f000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc281565b34801561065f57600080fd5b5061035f61066e366004612422565b61102d565b34801561067f57600080fd5b5061035f61068e366004612551565b6110fc565b34801561069f57600080fd5b5061031160015481565b3480156106b557600080fd5b5061035f6111b2565b3480156106ca57600080fd5b5060085461037190600160c01b900460ff1681565b3480156106eb57600080fd5b5061035f6106fa36600461252f565b61124d565b34801561070b57600080fd5b5060085461037190600160a01b900460ff1681565b34801561072c57600080fd5b5061031161073b366004612551565b6001600160a01b039182166000908152600a6020908152604080832093909416825291909152205490565b34801561077257600080fd5b5061031160035481565b34801561078857600080fd5b5061035f610797366004612651565b611369565b3480156107a857600080fd5b5060085461037190600160c81b900460ff1681565b3480156107c957600080fd5b5061031160025481565b60006107e033848461159b565b5060015b92915050565b6001600160a01b0383166000908152600a60209081526040808320338452909152812054600019811461088a578281101561087d5760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084015b60405180910390fd5b61088a853385840361159b565b6108958585856116bf565b506001949350505050565b336108b36000546001600160a01b031690565b6001600160a01b0316146108d95760405162461bcd60e51b815260040161087490612711565b670de0b6b3a76400006103e86108fb6a52b7d2dcc80cd2e4000000600161275c565b6109059190612773565b61090f9190612773565b81101561096c5760405162461bcd60e51b815260206004820152602560248201527f43616e6e6f7420736574206d61782077616c6c6574206c6f776572207468616e60448201526420302e312560d81b6064820152608401610874565b61097e81670de0b6b3a764000061275c565b60025550565b336109976000546001600160a01b031690565b6001600160a01b0316146109bd5760405162461bcd60e51b815260040161087490612711565b60005b83811015610a53578484828181106109da576109da612795565b90506020020160208101906109ef919061252f565b6001600160a01b0316866001600160a01b03166000805160206128f4833981519152858585818110610a2357610a23612795565b90506020020135604051610a3991815260200190565b60405180910390a380610a4b816127ab565b9150506109c0565b505050505050565b33610a6e6000546001600160a01b031690565b6001600160a01b031614610a945760405162461bcd60e51b815260040161087490612711565b60648260ff161115610afc5760405162461bcd60e51b815260206004820152602b60248201527f4275792066656573206d757374206265206c657373207468616e206f7220657160448201526a75616c20746f203130302560a81b6064820152608401610874565b60648160ff161115610b655760405162461bcd60e51b815260206004820152602c60248201527f53656c6c2066656573206d757374206265206c657373207468616e206f72206560448201526b7175616c20746f203130302560a01b6064820152608401610874565b6008805461ffff60a01b1916600160a01b60ff9485160260ff60a81b191617600160a81b9290931691909102919091179055565b33610bac6000546001600160a01b031690565b6001600160a01b031614610bd25760405162461bcd60e51b815260040161087490612711565b6001600160a01b03919091166000908152600b60205260409020805460ff1916911515919091179055565b33610c106000546001600160a01b031690565b6001600160a01b031614610c365760405162461bcd60e51b815260040161087490612711565b620186a0610c506a52b7d2dcc80cd2e4000000600161275c565b610c5a9190612773565b811015610cc75760405162461bcd60e51b815260206004820152603560248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60448201527420302e30303125206f662074686520737570706c7960581b6064820152608401610874565b6103e8610ce06a52b7d2dcc80cd2e4000000600561275c565b610cea9190612773565b811115610d565760405162461bcd60e51b815260206004820152603460248201527f5377617020616d6f756e742063616e6e6f7420626520686967686572207468616044820152736e20302e3525206f662074686520737570706c7960601b6064820152608401610874565b600355565b33610d6e6000546001600160a01b031690565b6001600160a01b031614610d945760405162461bcd60e51b815260040161087490612711565b6001600160a01b03919091166000908152600c60205260409020805460ff1916911515919091179055565b33610dd26000546001600160a01b031690565b6001600160a01b031614610df85760405162461bcd60e51b815260040161087490612711565b600080546001600160a01b0319169055565b33610e1d6000546001600160a01b031690565b6001600160a01b031614610e435760405162461bcd60e51b815260040161087490612711565b670de0b6b3a76400006103e8610e656a52b7d2dcc80cd2e4000000600161275c565b610e6f9190612773565b610e799190612773565b811015610edb5760405162461bcd60e51b815260206004820152602a60248201527f43616e6e6f7420736574206d6178207472616e73616374696f6e206c6f776572604482015269207468616e20302e312560b01b6064820152608401610874565b610eed81670de0b6b3a764000061275c565b60015550565b33610f066000546001600160a01b031690565b6001600160a01b031614610f2c5760405162461bcd60e51b815260040161087490612711565b6008805460ff60d81b19169055565b33610f4e6000546001600160a01b031690565b6001600160a01b031614610f745760405162461bcd60e51b815260040161087490612711565b7f000000000000000000000000ffac8ef8ae9595347e1d0b2198b68b7021d625496001600160a01b0316826001600160a01b031603610ff55760405162461bcd60e51b815260206004820152601a60248201527f54686520706169722063616e6e6f742062652072656d6f7665640000000000006044820152606401610874565b6001600160a01b03919091166000908152600d60205260409020805460ff1916911515919091179055565b60006107e03384846116bf565b336110406000546001600160a01b031690565b6001600160a01b0316146110665760405162461bcd60e51b815260040161087490612711565b60005b83811015610a535784848281811061108357611083612795565b9050602002016020810190611098919061252f565b6001600160a01b0316866001600160a01b03166000805160206128f48339815191528585858181106110cc576110cc612795565b905060200201356040516110e291815260200190565b60405180910390a3806110f4816127ab565b915050611069565b3361110f6000546001600160a01b031690565b6001600160a01b0316146111355760405162461bcd60e51b815260040161087490612711565b6040516370a0823160e01b81523060048201526000906001600160a01b038416906370a0823190602401602060405180830381865afa15801561117c573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111a091906127c4565b90506111ad838383611e2b565b505050565b336111c56000546001600160a01b031690565b6001600160a01b0316146111eb5760405162461bcd60e51b815260040161087490612711565b600854600160e01b900460ff16156112385760405162461bcd60e51b815260206004820152601060248201526f105b1c9958591e481b185d5b98da195960821b6044820152606401610874565b6008805460ff60e01b1916600160e01b179055565b336112606000546001600160a01b031690565b6001600160a01b0316146112865760405162461bcd60e51b815260040161087490612711565b6001600160a01b0381166112ce5760405162461bcd60e51b815260206004820152600f60248201526e496e76616c6964206164647265737360881b6044820152606401610874565b6000816001600160a01b03164760405160006040518083038185875af1925050503d806000811461131b576040519150601f19603f3d011682016040523d82523d6000602084013e611320565b606091505b50509050806113655760405162461bcd60e51b815260206004820152601160248201527015da5d1a191c985dd85b0819985a5b1959607a1b6044820152606401610874565b5050565b3361137c6000546001600160a01b031690565b6001600160a01b0316146113a25760405162461bcd60e51b815260040161087490612711565b600854600160e01b900460ff16156113ef5760405162461bcd60e51b815260206004820152601060248201526f105b1c9958591e481b185d5b98da195960821b6044820152606401610874565b60005b82518110156111ad5781818151811061140d5761140d612795565b602002602001015160096000336001600160a01b03166001600160a01b031681526020019081526020016000205410156114595760405162461bcd60e51b8152600401610874906127dd565b81818151811061146b5761146b612795565b60200260200101516009600085848151811061148957611489612795565b60200260200101516001600160a01b03166001600160a01b0316815260200190815260200160002060008282546114c09190612823565b925050819055508181815181106114d9576114d9612795565b602002602001015160096000336001600160a01b03166001600160a01b0316815260200190815260200160002060008282546115159190612836565b9250508190555082818151811061152e5761152e612795565b60200260200101516001600160a01b0316336001600160a01b03166000805160206128f483398151915284848151811061156a5761156a612795565b602002602001015160405161158191815260200190565b60405180910390a380611593816127ab565b9150506113f2565b6001600160a01b0383166115fd5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610874565b6001600160a01b03821661165e5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610874565b6001600160a01b038381166000818152600a602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383166117235760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610874565b6001600160a01b0382166117855760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610874565b600081116117e75760405162461bcd60e51b815260206004820152602960248201527f5472616e7366657220616d6f756e74206d7573742062652067726561746572206044820152687468616e207a65726f60b81b6064820152608401610874565b600854600160e01b900460ff1615801561183d57506000546001600160a01b0384811691161480159061182357506001600160a01b0383163014155b801561183d57506000546001600160a01b03838116911614155b156118805760405162461bcd60e51b8152602060048201526013602482015272151c98591a5b99c81b9bdd08195b98589b1959606a1b6044820152606401610874565b600854600160d81b900460ff1615611b4a576000546001600160a01b038481169116148015906118be57506000546001600160a01b03838116911614155b80156118d257506001600160a01b03821615155b80156118e957506001600160a01b03821661dead14155b80156118ff5750600854600160d01b900460ff16155b15611b4a576001600160a01b0383166000908152600d602052604090205460ff16801561194557506001600160a01b0382166000908152600c602052604090205460ff16155b15611a19576001548111156119aa5760405162461bcd60e51b815260206004820152602560248201527f427579207472616e7366657220616d6f756e74206578636565647320746865206044820152640dac2f0a8f60db1b6064820152608401610874565b6002546001600160a01b0383166000908152600960205260409020546119d09083612823565b1115611a145760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610874565b611b4a565b6001600160a01b0382166000908152600d602052604090205460ff168015611a5a57506001600160a01b0383166000908152600c602052604090205460ff16155b15611ac057600154811115611a145760405162461bcd60e51b815260206004820152602660248201527f53656c6c207472616e7366657220616d6f756e74206578636565647320746865604482015265040dac2f0a8f60d31b6064820152608401610874565b6001600160a01b0382166000908152600c602052604090205460ff16611b4a576002546001600160a01b038316600090815260096020526040902054611b069083612823565b1115611b4a5760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610874565b60035430600090815260096020526040902054108015908190611b775750600854600160d01b900460ff16155b8015611b9c57506001600160a01b0384166000908152600d602052604090205460ff16155b8015611bc157506001600160a01b0384166000908152600b602052604090205460ff16155b8015611be657506001600160a01b0383166000908152600b602052604090205460ff16155b15611c14576008805460ff60d01b1916600160d01b179055611c06611f57565b6008805460ff60d01b191690555b6008546001600160a01b0385166000908152600b602052604090205460ff600160d01b909204821615911680611c6257506001600160a01b0384166000908152600b602052604090205460ff165b15611c6b575060005b6001600160a01b03851660009081526009602052604090205483811015611ca45760405162461bcd60e51b8152600401610874906127dd565b60008215611dca576001600160a01b0386166000908152600d602052604090205460ff168015611cdf5750600854600160a81b900460ff1615155b15611d0f57600854606490611cfe90600160a81b900460ff168761275c565b611d089190612773565b9050611d6e565b6001600160a01b0387166000908152600d602052604090205460ff168015611d425750600854600160a01b900460ff1615155b15611d6e57600854606490611d6190600160a01b900460ff168761275c565b611d6b9190612773565b90505b8015611dca576001600160a01b03871660008181526009602090815260408083208054869003905530808452928190208054860190555184815297849003979192916000805160206128f4833981519152910160405180910390a35b6001600160a01b0380881660008181526009602052604080822080548a900390559289168082529083902080548901905591516000805160206128f483398151915290611e1a9089815260200190565b60405180910390a350505050505050565b604080516001600160a01b038481166024830152604480830185905283518084039091018152606490920183526020820180516001600160e01b031663a9059cbb60e01b1790529151600092839290871691611e879190612849565b6000604051808303816000865af19150503d8060008114611ec4576040519150601f19603f3d011682016040523d82523d6000602084013e611ec9565b606091505b5091509150818015611ef3575080511580611ef3575080806020019051810190611ef39190612865565b611f505760405162461bcd60e51b815260206004820152602860248201527f5472616e7366657248656c7065723a20494e5445524e414c205452414e5346456044820152671497d1905253115160c21b6064820152608401610874565b5050505050565b6003546000611f6782601461275c565b306000908152600960205260409020541115611f8e57600354611f8b90601461275c565b91505b6040805160028082526060820183526000926020830190803683370190505090503081600081518110611fc357611fc3612795565b60200260200101906001600160a01b031690816001600160a01b0316815250507f000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc28160018151811061201757612017612795565b6001600160a01b039092166020928302919091019091015260405163791ac94760e01b8152737a250d5630b4cf539739df2c5dacb4c659f2488d9063791ac9479061206f908690600090869030904290600401612882565b600060405180830381600087803b15801561208957600080fd5b505af115801561209d573d6000803e3d6000fd5b5047925050811590506122de576008546000906064906120c790600160b01b900460ff168461275c565b6120d19190612773565b6008549091506000906064906120f190600160b81b900460ff168561275c565b6120fb9190612773565b60085490915060009060649061211b90600160c01b900460ff168661275c565b6121259190612773565b60085490915060009060649061214590600160c81b900460ff168761275c565b61214f9190612773565b6004546040519192506001600160a01b0316908590600081818185875af1925050503d806000811461219d576040519150601f19603f3d011682016040523d82523d6000602084013e6121a2565b606091505b50506005546040519198506001600160a01b0316908490600081818185875af1925050503d80600081146121f2576040519150601f19603f3d011682016040523d82523d6000602084013e6121f7565b606091505b50506006546040519198506001600160a01b0316908390600081818185875af1925050503d8060008114612247576040519150601f19603f3d011682016040523d82523d6000602084013e61224c565b606091505b50506007546040519198506001600160a01b0316908290600081818185875af1925050503d806000811461229c576040519150601f19603f3d011682016040523d82523d6000602084013e6122a1565b606091505b50506040518981529097507f42c9c0bd1fc983236459b9be3c73e1bb9bcec04b2a2dafe47ffe5629d4bbc2079060200160405180910390a1505050505b50505050565b60005b838110156122ff5781810151838201526020016122e7565b50506000910152565b60208152600082518060208401526123278160408501602087016122e4565b601f01601f19169190910160400192915050565b80356001600160a01b038116811461235257600080fd5b919050565b6000806040838503121561236a57600080fd5b6123738361233b565b946020939093013593505050565b60008060006060848603121561239657600080fd5b61239f8461233b565b92506123ad6020850161233b565b9150604084013590509250925092565b6000602082840312156123cf57600080fd5b5035919050565b60008083601f8401126123e857600080fd5b50813567ffffffffffffffff81111561240057600080fd5b6020830191508360208260051b850101111561241b57600080fd5b9250929050565b60008060008060006060868803121561243a57600080fd5b6124438661233b565b9450602086013567ffffffffffffffff8082111561246057600080fd5b61246c89838a016123d6565b9096509450604088013591508082111561248557600080fd5b50612492888289016123d6565b969995985093965092949392505050565b803560ff8116811461235257600080fd5b600080604083850312156124c757600080fd5b6124d0836124a3565b91506124de602084016124a3565b90509250929050565b80151581146124f557600080fd5b50565b6000806040838503121561250b57600080fd5b6125148361233b565b91506020830135612524816124e7565b809150509250929050565b60006020828403121561254157600080fd5b61254a8261233b565b9392505050565b6000806040838503121561256457600080fd5b61256d8361233b565b91506124de6020840161233b565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff811182821017156125ba576125ba61257b565b604052919050565b600067ffffffffffffffff8211156125dc576125dc61257b565b5060051b60200190565b600082601f8301126125f757600080fd5b8135602061260c612607836125c2565b612591565b82815260059290921b8401810191818101908684111561262b57600080fd5b8286015b84811015612646578035835291830191830161262f565b509695505050505050565b6000806040838503121561266457600080fd5b823567ffffffffffffffff8082111561267c57600080fd5b818501915085601f83011261269057600080fd5b813560206126a0612607836125c2565b82815260059290921b840181019181810190898411156126bf57600080fd5b948201945b838610156126e4576126d58661233b565b825294820194908201906126c4565b965050860135925050808211156126fa57600080fd5b50612707858286016125e6565b9150509250929050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b80820281158282048414176107e4576107e4612746565b60008261279057634e487b7160e01b600052601260045260246000fd5b500490565b634e487b7160e01b600052603260045260246000fd5b6000600182016127bd576127bd612746565b5060010190565b6000602082840312156127d657600080fd5b5051919050565b60208082526026908201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604082015265616c616e636560d01b606082015260800190565b808201808211156107e4576107e4612746565b818103818111156107e4576107e4612746565b6000825161285b8184602087016122e4565b9190910192915050565b60006020828403121561287757600080fd5b815161254a816124e7565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156128d25784516001600160a01b0316835293830193918301916001016128ad565b50506001600160a01b0396909616606085015250505060800152939250505056feddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa26469706673582212201df91486f79ff30c9a780fb8119dfec6ac9cc344887797b6ad16081c4889ec8464736f6c63430008150033

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.