ETH Price: $2,039.72 (+4.79%)
 

Overview

Max Total Supply

0 AIB

Holders

0

Transfers

-
0

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

AIBOT IYI: AI-powered DeFi platform combining trading bots (87.3% win rate), GPU mining, and yield farming. Multi-chain ecosystem with guaranteed returns, professional infrastructure, and deflationary tokenomics. Democratizing intelligent investment technology.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
AIBToken

Compiler Version
v0.8.28+commit.7893614a

Optimization Enabled:
Yes with 200 runs

Other Settings:
paris EvmVersion
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.19;

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

contract AIBToken is ERC20, Ownable {
    uint256 private constant BASIS_POINTS = 10_000;
    uint256 private constant MIN_FEE_BPS = 100; // 1%
    uint256 private constant MAX_FEE_BPS = 1_000; // 10%
    uint256 private constant MIN_MAX_SELL_PERCENT = 50; // 0.5%
    uint256 private constant MAX_MAX_SELL_PERCENT = 1_000; // 10%

    mapping(address => bool) public isWhitelisted;
    mapping(address => bool) public isBlacklisted;

    address public feeReceiver;
    address public bridgeMinter;

    uint256 public buyFee = 300; // 3% (in basis points, 100 = 1%)
    uint256 public sellFee = 500; // 5% (in basis points)
    uint256 public maxSellPercent = 200; // 2% (in basis points)

    bool public tradingEnabled = false;

    uint256 public constant BRIDGE_CHAIN_ID = 1; // Ethereum mainnet

    error SenderBlacklisted();
    error RecipientBlacklisted();
    error TradingNotEnabled();
    error SellAmountExceedsLimit();
    error BuyFeeOutOfBounds(uint256 fee); // Fee denominated in basis points
    error SellFeeOutOfBounds(uint256 fee);
    error MaxSellPercentOutOfBounds(uint256 percent);
    error InvalidAddress();
    error UnauthorizedBridgeCaller();
    error BridgeMintDisabled();

    event FeeUpdated(uint256 newBuyFee, uint256 newSellFee);
    event WhitelistUpdated(address indexed account, bool isWhitelisted);
    event TradingUpdated(bool isTrading);
    event MaxSellPercentUpdated(uint256 newPercent);
    event BlacklistUpdated(address indexed account, bool isBlacklisted);
    event BridgeMinterUpdated(address indexed newBridge);
    event BridgeMint(address indexed to, uint256 amount);

    constructor(
        string memory _name,
        string memory _symbol,
        uint256 _totalSupply,
        address _feeReceiver,
        address _owner
    ) ERC20(_name, _symbol) Ownable(_owner) {
        feeReceiver = _feeReceiver;

        uint256 supply = _totalSupply * 10**decimals();
        _mint(_owner, supply);

        // Whitelist owner
        isWhitelisted[_owner] = true;
        isWhitelisted[address(this)] = true;
        isWhitelisted[_feeReceiver] = true;
    }

    function _isContract(address account) internal view returns (bool) {
        uint256 size;
        assembly {
            size := extcodesize(account)
        }
        return size > 0;
    }

    function _isLiquidityPool(address account) internal view returns (bool) {
        return _isContract(account) && account != address(this) && !isWhitelisted[account];
    }

    function _update(address from, address to, uint256 value) internal override {
        _enforceBlacklist(from, to);
        _enforceTradingWindow(from, to);
        _enforceSellLimit(from, to, value);

        (uint256 netAmount, uint256 feeAmount) = _splitTransferAmount(from, to, value);

        if (feeAmount > 0) {
            super._update(from, feeReceiver, feeAmount);
        }

        super._update(from, to, netAmount);
    }

    // Owner functions
    function setFees(uint256 _buyFee, uint256 _sellFee) external onlyOwner {
        if (_buyFee < MIN_FEE_BPS || _buyFee > MAX_FEE_BPS) {
            revert BuyFeeOutOfBounds(_buyFee);
        }
        if (_sellFee < MIN_FEE_BPS || _sellFee > MAX_FEE_BPS) {
            revert SellFeeOutOfBounds(_sellFee);
        }

        buyFee = _buyFee;
        sellFee = _sellFee;

        emit FeeUpdated(_buyFee, _sellFee);
    }

    function setMaxSellPercent(uint256 _maxSellPercent) external onlyOwner {
        if (_maxSellPercent < MIN_MAX_SELL_PERCENT || _maxSellPercent > MAX_MAX_SELL_PERCENT) {
            revert MaxSellPercentOutOfBounds(_maxSellPercent);
        }
        maxSellPercent = _maxSellPercent;
        emit MaxSellPercentUpdated(_maxSellPercent);
    }

    function addToWhitelist(address account) external onlyOwner {
        isWhitelisted[account] = true;
        isBlacklisted[account] = false;
        emit WhitelistUpdated(account, true);
    }

    function removeFromWhitelist(address account) external onlyOwner {
        isWhitelisted[account] = false;
        emit WhitelistUpdated(account, false);
    }

    function setTrading(bool _isTrading) external onlyOwner {
        tradingEnabled = _isTrading;
        emit TradingUpdated(_isTrading);
    }

    function setBlacklist(address account, bool blacklisted) external onlyOwner {
        if (account == address(0)) {
            revert InvalidAddress();
        }
        isBlacklisted[account] = blacklisted;
        emit BlacklistUpdated(account, blacklisted);
    }

    function updateFeeReceiver(address _feeReceiver) external onlyOwner {
        if (_feeReceiver == address(0)) {
            revert InvalidAddress();
        }
        feeReceiver = _feeReceiver;
        isWhitelisted[_feeReceiver] = true;
    }

    // Emergency functions
    function withdrawStuckTokens(address token, uint256 amount) external onlyOwner {
        IERC20(token).transfer(owner(), amount);
    }

    function withdrawStuckETH() external onlyOwner {
        payable(owner()).transfer(address(this).balance);
    }

    // View functions
    function isLiquidityPool(address account) external view returns (bool) {
        return _isLiquidityPool(account);
    }

    function isContract(address account) external view returns (bool) {
        return _isContract(account);
    }

    function getMaxSellAmount() external view returns (uint256) {
        return (totalSupply() * maxSellPercent) / BASIS_POINTS;
    }

    function calculateFee(uint256 amount, bool isBuy) external view returns (uint256) {
        uint256 fee = isBuy ? buyFee : sellFee;
        return (amount * fee) / BASIS_POINTS;
    }

    function updateBridgeMinter(address bridge) external onlyOwner {
        if (bridge == address(0)) {
            revert InvalidAddress();
        }
        bridgeMinter = bridge;
        emit BridgeMinterUpdated(bridge);
    }

    function bridgeMint(address to, uint256 amount) external {
        if (msg.sender != bridgeMinter) {
            revert UnauthorizedBridgeCaller();
        }
        if (block.chainid != BRIDGE_CHAIN_ID) {
            revert BridgeMintDisabled();
        }
        _mint(to, amount);
        emit BridgeMint(to, amount);
    }

    function _enforceBlacklist(address from, address to) private view {
        if (from != address(0) && isBlacklisted[from]) {
            revert SenderBlacklisted();
        }
        if (to != address(0) && isBlacklisted[to]) {
            revert RecipientBlacklisted();
        }
    }

    function _enforceTradingWindow(address from, address to) private view {
        if (tradingEnabled || from == address(0) || to == address(0)) {
            return;
        }

        if (_isLiquidityPool(to) || _isLiquidityPool(from)) {
            revert TradingNotEnabled();
        }
    }

    function _enforceSellLimit(address from, address to, uint256 value) private view {
        if (from == address(0) || !_isLiquidityPool(to) || isWhitelisted[from]) {
            return;
        }

        uint256 maxSellAmount = (totalSupply() * maxSellPercent) / BASIS_POINTS;
        if (value > maxSellAmount) {
            revert SellAmountExceedsLimit();
        }
    }

    function _splitTransferAmount(address from, address to, uint256 value)
        private
        view
        returns (uint256 netAmount, uint256 feeAmount)
    {
        if (from == address(0) || to == address(0) || isWhitelisted[from] || isWhitelisted[to]) {
            return (value, 0);
        }

        uint256 currentFee;
        if (_isLiquidityPool(from)) {
            currentFee = buyFee;
        } else if (_isLiquidityPool(to)) {
            currentFee = sellFee;
        }

        if (currentFee == 0) {
            return (value, 0);
        }

        feeAmount = (value * currentFee) / BASIS_POINTS;
        netAmount = value - feeAmount;
    }
}

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (access/Ownable.sol)

pragma solidity ^0.8.20;

import {Context} from "../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.
 *
 * The initial owner is set to the address provided by the deployer. 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;

    /**
     * @dev The caller account is not authorized to perform an operation.
     */
    error OwnableUnauthorizedAccount(address account);

    /**
     * @dev The owner is not a valid owner account. (eg. `address(0)`)
     */
    error OwnableInvalidOwner(address owner);

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

    /**
     * @dev Initializes the contract setting the address provided by the deployer as the initial owner.
     */
    constructor(address initialOwner) {
        if (initialOwner == address(0)) {
            revert OwnableInvalidOwner(address(0));
        }
        _transferOwnership(initialOwner);
    }

    /**
     * @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 {
        if (owner() != _msgSender()) {
            revert OwnableUnauthorizedAccount(_msgSender());
        }
    }

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

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

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.4.0) (interfaces/draft-IERC6093.sol)
pragma solidity >=0.8.4;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.4.0) (token/ERC20/ERC20.sol)

pragma solidity ^0.8.20;

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

/**
 * @dev Implementation of the {IERC20} interface.
 *
 * This implementation is agnostic to the way tokens are created. This means
 * that a supply mechanism has to be added in a derived contract using {_mint}.
 *
 * TIP: For a detailed writeup see our guide
 * https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * The default value of {decimals} is 18. To change this, you should override
 * this function so it returns a different value.
 *
 * We have followed general OpenZeppelin Contracts guidelines: functions revert
 * instead returning `false` on failure. This behavior is nonetheless
 * conventional and does not conflict with the expectations of ERC-20
 * applications.
 */
abstract contract ERC20 is Context, IERC20, IERC20Metadata, IERC20Errors {
    mapping(address account => uint256) private _balances;

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

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

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

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

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

    /// @inheritdoc IERC20
    function totalSupply() public view virtual returns (uint256) {
        return _totalSupply;
    }

    /// @inheritdoc IERC20
    function balanceOf(address account) public view virtual returns (uint256) {
        return _balances[account];
    }

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

    /// @inheritdoc IERC20
    function allowance(address owner, address spender) public view virtual returns (uint256) {
        return _allowances[owner][spender];
    }

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

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

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

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

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

        emit Transfer(from, to, value);
    }

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

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

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

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

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

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.4.0) (token/ERC20/extensions/IERC20Metadata.sol)

pragma solidity >=0.6.2;

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

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

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

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

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.4.0) (token/ERC20/IERC20.sol)

pragma solidity >=0.4.16;

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

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

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

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

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

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

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

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

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.1) (utils/Context.sol)

pragma solidity ^0.8.20;

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

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

    function _contextSuffixLength() internal view virtual returns (uint256) {
        return 0;
    }
}

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

Contract Security Audit

Contract ABI

API
[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"uint256","name":"_totalSupply","type":"uint256"},{"internalType":"address","name":"_feeReceiver","type":"address"},{"internalType":"address","name":"_owner","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"BridgeMintDisabled","type":"error"},{"inputs":[{"internalType":"uint256","name":"fee","type":"uint256"}],"name":"BuyFeeOutOfBounds","type":"error"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"allowance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientAllowance","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"uint256","name":"balance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientBalance","type":"error"},{"inputs":[{"internalType":"address","name":"approver","type":"address"}],"name":"ERC20InvalidApprover","type":"error"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"}],"name":"ERC20InvalidReceiver","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"}],"name":"ERC20InvalidSender","type":"error"},{"inputs":[{"internalType":"address","name":"spender","type":"address"}],"name":"ERC20InvalidSpender","type":"error"},{"inputs":[],"name":"InvalidAddress","type":"error"},{"inputs":[{"internalType":"uint256","name":"percent","type":"uint256"}],"name":"MaxSellPercentOutOfBounds","type":"error"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"OwnableInvalidOwner","type":"error"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"OwnableUnauthorizedAccount","type":"error"},{"inputs":[],"name":"RecipientBlacklisted","type":"error"},{"inputs":[],"name":"SellAmountExceedsLimit","type":"error"},{"inputs":[{"internalType":"uint256","name":"fee","type":"uint256"}],"name":"SellFeeOutOfBounds","type":"error"},{"inputs":[],"name":"SenderBlacklisted","type":"error"},{"inputs":[],"name":"TradingNotEnabled","type":"error"},{"inputs":[],"name":"UnauthorizedBridgeCaller","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":"isBlacklisted","type":"bool"}],"name":"BlacklistUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"BridgeMint","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newBridge","type":"address"}],"name":"BridgeMinterUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"newBuyFee","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"newSellFee","type":"uint256"}],"name":"FeeUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"newPercent","type":"uint256"}],"name":"MaxSellPercentUpdated","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":"bool","name":"isTrading","type":"bool"}],"name":"TradingUpdated","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":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isWhitelisted","type":"bool"}],"name":"WhitelistUpdated","type":"event"},{"inputs":[],"name":"BRIDGE_CHAIN_ID","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"addToWhitelist","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":"value","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":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"bridgeMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"bridgeMinter","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"bool","name":"isBuy","type":"bool"}],"name":"calculateFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"feeReceiver","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getMaxSellAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"isBlacklisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isContract","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isLiquidityPool","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"isWhitelisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSellPercent","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"removeFromWhitelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"blacklisted","type":"bool"}],"name":"setBlacklist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_buyFee","type":"uint256"},{"internalType":"uint256","name":"_sellFee","type":"uint256"}],"name":"setFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxSellPercent","type":"uint256"}],"name":"setMaxSellPercent","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_isTrading","type":"bool"}],"name":"setTrading","outputs":[],"stateMutability":"nonpayable","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":"tradingEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"bridge","type":"address"}],"name":"updateBridgeMinter","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_feeReceiver","type":"address"}],"name":"updateFeeReceiver","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawStuckETH","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"token","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"withdrawStuckTokens","outputs":[],"stateMutability":"nonpayable","type":"function"}]

608060405261012c600a556101f4600b5560c8600c55600d805460ff1916905534801561002b57600080fd5b50604051611fc5380380611fc583398101604081905261004a916106f9565b80858560036100598382610813565b5060046100668282610813565b5050506001600160a01b03811661009857604051631e4fbdf760e01b8152600060048201526024015b60405180910390fd5b6100a181610139565b50600880546001600160a01b0319166001600160a01b03841617905560006100c7601290565b6100d290600a6109c6565b6100dc90856109dc565b90506100e8828261018b565b506001600160a01b039081166000908152600660205260408082208054600160ff19918216811790925530845282842080548216831790559490931682529020805490921617905550610a3b915050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b0382166101b55760405163ec442f0560e01b81526000600482015260240161008f565b6101c1600083836101c5565b5050565b6101cf8383610227565b6101d983836102c3565b6101e483838361032c565b6000806101f28585856103c8565b90925090508015610215576008546102159086906001600160a01b0316836104ae565b6102208585846104ae565b5050505050565b6001600160a01b0382161580159061025757506001600160a01b03821660009081526007602052604090205460ff165b15610275576040516301e120d160e31b815260040160405180910390fd5b6001600160a01b038116158015906102a557506001600160a01b03811660009081526007602052604090205460ff165b156101c15760405163a6add80360e01b815260040160405180910390fd5b600d5460ff16806102db57506001600160a01b038216155b806102ed57506001600160a01b038116155b156102f6575050565b6102ff816105d8565b8061030e575061030e826105d8565b156101c1576040516312f1f92360e01b815260040160405180910390fd5b6001600160a01b03831615806103485750610346826105d8565b155b8061036b57506001600160a01b03831660009081526006602052604090205460ff165b1561037557505050565b6000612710600c5461038b61061e60201b60201c565b61039591906109dc565b61039f91906109f3565b9050808211156103c25760405163310dbcdd60e21b815260040160405180910390fd5b50505050565b6000806001600160a01b03851615806103e857506001600160a01b038416155b8061040b57506001600160a01b03851660009081526006602052604090205460ff165b8061042e57506001600160a01b03841660009081526006602052604090205460ff165b1561043e575081905060006104a6565b6000610449866105d8565b156104575750600a5461046a565b610460856105d8565b1561046a5750600b545b8060000361047f5783600092509250506104a6565b61271061048c82866109dc565b61049691906109f3565b91506104a28285610a15565b9250505b935093915050565b6001600160a01b0383166104d95780600260008282546104ce9190610a28565b9091555061054b9050565b6001600160a01b0383166000908152602081905260409020548181101561052c5760405163391434e360e21b81526001600160a01b0385166004820152602481018290526044810183905260640161008f565b6001600160a01b03841660009081526020819052604090209082900390555b6001600160a01b03821661056757600280548290039055610586565b6001600160a01b03821660009081526020819052604090208054820190555b816001600160a01b0316836001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516105cb91815260200190565b60405180910390a3505050565b6000813b151580156105f357506001600160a01b0382163014155b801561061857506001600160a01b03821660009081526006602052604090205460ff16155b92915050565b60025490565b634e487b7160e01b600052604160045260246000fd5b600082601f83011261064b57600080fd5b81516001600160401b0381111561066457610664610624565b604051601f8201601f19908116603f011681016001600160401b038111828210171561069257610692610624565b6040528181528382016020018510156106aa57600080fd5b60005b828110156106c9576020818601810151838301820152016106ad565b506000918101602001919091529392505050565b80516001600160a01b03811681146106f457600080fd5b919050565b600080600080600060a0868803121561071157600080fd5b85516001600160401b0381111561072757600080fd5b6107338882890161063a565b602088015190965090506001600160401b0381111561075157600080fd5b61075d8882890161063a565b94505060408601519250610773606087016106dd565b9150610781608087016106dd565b90509295509295909350565b600181811c908216806107a157607f821691505b6020821081036107c157634e487b7160e01b600052602260045260246000fd5b50919050565b601f82111561080e57806000526020600020601f840160051c810160208510156107ee5750805b601f840160051c820191505b8181101561022057600081556001016107fa565b505050565b81516001600160401b0381111561082c5761082c610624565b6108408161083a845461078d565b846107c7565b6020601f821160018114610874576000831561085c5750848201515b600019600385901b1c1916600184901b178455610220565b600084815260208120601f198516915b828110156108a45787850151825560209485019460019092019101610884565b50848210156108c25786840151600019600387901b60f8161c191681555b50505050600190811b01905550565b634e487b7160e01b600052601160045260246000fd5b6001815b60018411156104a657808504811115610906576109066108d1565b600184161561091457908102905b60019390931c9280026108eb565b60008261093157506001610618565b8161093e57506000610618565b8160018114610954576002811461095e5761097a565b6001915050610618565b60ff84111561096f5761096f6108d1565b50506001821b610618565b5060208310610133831016604e8410600b841016171561099d575081810a610618565b6109aa60001984846108e7565b80600019048211156109be576109be6108d1565b029392505050565b60006109d560ff841683610922565b9392505050565b8082028115828204841417610618576106186108d1565b600082610a1057634e487b7160e01b600052601260045260246000fd5b500490565b81810381811115610618576106186108d1565b80820180821115610618576106186108d1565b61157b80610a4a6000396000f3fe608060405234801561001057600080fd5b506004361061021c5760003560e01c80638f70ccf711610125578063e43252d7116100ad578063e85455d71161007c578063e85455d71461049f578063f2aa959c146104b2578063f2fde38b146104ba578063f5648a4f146104cd578063fe575a87146104d557600080fd5b8063e43252d71461045e578063e4d8cbe514610471578063e5a9f4d214610484578063e63d2d5b1461049757600080fd5b8063bd61f0a6116100f4578063bd61f0a6146103e3578063c4998cf0146103f6578063c69bebe4146103ff578063d6b2eee814610412578063dd62ed3e1461042557600080fd5b80638f70ccf7146103a257806395d89b41146103b5578063a9059cbb146103bd578063b3f00674146103d057600080fd5b80633af32abf116101a857806370a082311161017757806370a0823114610326578063715018a61461034f5780638ab1d681146103575780638c2a993e1461036a5780638da5cb5b1461037d57600080fd5b80633af32abf146102da57806347062402146102fd5780634ada218b1461030657806359992dbc1461031357600080fd5b806316279055116101ef578063162790551461028a57806318160ddd1461029d57806323b872dd146102af5780632b14ca56146102c2578063313ce567146102cb57600080fd5b806306fdde0314610221578063095ea7b31461023f5780630b78f9c014610262578063153b0d1e14610277575b600080fd5b6102296104f8565b6040516102369190611291565b60405180910390f35b61025261024d3660046112fb565b61058a565b6040519015158152602001610236565b610275610270366004611325565b6105a4565b005b610275610285366004611355565b61065a565b61025261029836600461138c565b6106e9565b6002545b604051908152602001610236565b6102526102bd3660046113ae565b6106f4565b6102a1600b5481565b60405160128152602001610236565b6102526102e836600461138c565b60066020526000908152604090205460ff1681565b6102a1600a5481565b600d546102529060ff1681565b6102756103213660046113eb565b610718565b6102a161033436600461138c565b6001600160a01b031660009081526020819052604090205490565b61027561078d565b61027561036536600461138c565b6107a1565b6102756103783660046112fb565b6107ff565b6005546001600160a01b03165b6040516001600160a01b039091168152602001610236565b6102756103b0366004611404565b610890565b6102296108d9565b6102526103cb3660046112fb565b6108e8565b60085461038a906001600160a01b031681565b6102756103f13660046112fb565b6108f6565b6102a1600c5481565b61027561040d36600461138c565b610995565b60095461038a906001600160a01b031681565b6102a1610433366004611421565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b61027561046c36600461138c565b6109fe565b6102a161047f366004611454565b610a6c565b61027561049236600461138c565b610aa1565b6102a1610b1a565b6102526104ad36600461138c565b610b44565b6102a1600181565b6102756104c836600461138c565b610b4f565b610275610b8d565b6102526104e336600461138c565b60076020526000908152604090205460ff1681565b60606003805461050790611479565b80601f016020809104026020016040519081016040528092919081815260200182805461053390611479565b80156105805780601f1061055557610100808354040283529160200191610580565b820191906000526020600020905b81548152906001019060200180831161056357829003601f168201915b5050505050905090565b600033610598818585610bce565b60019150505b92915050565b6105ac610bdb565b60648210806105bc57506103e882115b156105e257604051639983c52960e01b8152600481018390526024015b60405180910390fd5b60648110806105f257506103e881115b1561061357604051630f2599bd60e21b8152600481018290526024016105d9565b600a829055600b81905560408051838152602081018390527f528d9479e9f9889a87a3c30c7f7ba537e5e59c4c85a37733b16e57c62df61302910160405180910390a15050565b610662610bdb565b6001600160a01b0382166106895760405163e6c4247b60e01b815260040160405180910390fd5b6001600160a01b038216600081815260076020908152604091829020805460ff191685151590811790915591519182527f6a12b3df6cba4203bd7fd06b816789f87de8c594299aed5717ae070fac781bac91015b60405180910390a25050565b6000813b151561059e565b600033610702858285610c08565b61070d858585610c87565b506001949350505050565b610720610bdb565b603281108061073057506103e881115b156107515760405163b599aa8960e01b8152600481018290526024016105d9565b600c8190556040518181527f71f7e2ca5cdf6da98e205a02f2dc28ec756377670276cc64097b0ba1a830434a906020015b60405180910390a150565b610795610bdb565b61079f6000610ce6565b565b6107a9610bdb565b6001600160a01b0381166000818152600660209081526040808320805460ff19169055519182527ff93f9a76c1bf3444d22400a00cb9fe990e6abe9dbb333fda48859cfee864543d91015b60405180910390a250565b6009546001600160a01b0316331461082a5760405163ea83a29960e01b815260040160405180910390fd5b6001461461084b576040516390b11e3160e01b815260040160405180910390fd5b6108558282610d38565b816001600160a01b03167f397b33b307fc137878ebfc75b295289ec0ee25a31bb5bf034f33256fe8ea2aa6826040516106dd91815260200190565b610898610bdb565b600d805460ff19168215159081179091556040519081527f43a9ede4a950016f2118d687a4d238250e8bb52ba2381bcf4065e8c4110b8c0f90602001610782565b60606004805461050790611479565b600033610598818585610c87565b6108fe610bdb565b816001600160a01b031663a9059cbb61091f6005546001600160a01b031690565b6040516001600160e01b031960e084901b1681526001600160a01b039091166004820152602481018490526044016020604051808303816000875af115801561096c573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061099091906114b3565b505050565b61099d610bdb565b6001600160a01b0381166109c45760405163e6c4247b60e01b815260040160405180910390fd5b600880546001600160a01b039092166001600160a01b0319909216821790556000908152600660205260409020805460ff19166001179055565b610a06610bdb565b6001600160a01b03811660008181526006602090815260408083208054600160ff19918216811790925560078452938290208054909416909355519182527ff93f9a76c1bf3444d22400a00cb9fe990e6abe9dbb333fda48859cfee864543d91016107f4565b60008082610a7c57600b54610a80565b600a545b9050612710610a8f82866114e6565b610a9991906114fd565b949350505050565b610aa9610bdb565b6001600160a01b038116610ad05760405163e6c4247b60e01b815260040160405180910390fd5b600980546001600160a01b0319166001600160a01b0383169081179091556040517fa8bf368f05b6f090157a279ffe9ab908b619c17c4f0541398922710e918a478e90600090a250565b6000612710600c54610b2b60025490565b610b3591906114e6565b610b3f91906114fd565b905090565b600061059e82610d72565b610b57610bdb565b6001600160a01b038116610b8157604051631e4fbdf760e01b8152600060048201526024016105d9565b610b8a81610ce6565b50565b610b95610bdb565b6005546040516001600160a01b03909116904780156108fc02916000818181858888f19350505050158015610b8a573d6000803e3d6000fd5b6109908383836001610db4565b6005546001600160a01b0316331461079f5760405163118cdaa760e01b81523360048201526024016105d9565b6001600160a01b03838116600090815260016020908152604080832093861683529290522054600019811015610c815781811015610c7257604051637dc7a0d960e11b81526001600160a01b038416600482015260248101829052604481018390526064016105d9565b610c8184848484036000610db4565b50505050565b6001600160a01b038316610cb157604051634b637e8f60e11b8152600060048201526024016105d9565b6001600160a01b038216610cdb5760405163ec442f0560e01b8152600060048201526024016105d9565b610990838383610e89565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038216610d625760405163ec442f0560e01b8152600060048201526024016105d9565b610d6e60008383610e89565b5050565b6000813b15158015610d8d57506001600160a01b0382163014155b801561059e5750506001600160a01b031660009081526006602052604090205460ff161590565b6001600160a01b038416610dde5760405163e602df0560e01b8152600060048201526024016105d9565b6001600160a01b038316610e0857604051634a1406b160e11b8152600060048201526024016105d9565b6001600160a01b0380851660009081526001602090815260408083209387168352929052208290558015610c8157826001600160a01b0316846001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92584604051610e7b91815260200190565b60405180910390a350505050565b610e938383610eeb565b610e9d8383610f87565b610ea8838383610ff0565b600080610eb6858585611081565b90925090508015610ed957600854610ed99086906001600160a01b031683611167565b610ee4858584611167565b5050505050565b6001600160a01b03821615801590610f1b57506001600160a01b03821660009081526007602052604090205460ff165b15610f39576040516301e120d160e31b815260040160405180910390fd5b6001600160a01b03811615801590610f6957506001600160a01b03811660009081526007602052604090205460ff165b15610d6e5760405163a6add80360e01b815260040160405180910390fd5b600d5460ff1680610f9f57506001600160a01b038216155b80610fb157506001600160a01b038116155b15610fba575050565b610fc381610d72565b80610fd25750610fd282610d72565b15610d6e576040516312f1f92360e01b815260040160405180910390fd5b6001600160a01b038316158061100c575061100a82610d72565b155b8061102f57506001600160a01b03831660009081526006602052604090205460ff165b1561103957505050565b6000612710600c5461104a60025490565b61105491906114e6565b61105e91906114fd565b905080821115610c815760405163310dbcdd60e21b815260040160405180910390fd5b6000806001600160a01b03851615806110a157506001600160a01b038416155b806110c457506001600160a01b03851660009081526006602052604090205460ff165b806110e757506001600160a01b03841660009081526006602052604090205460ff165b156110f75750819050600061115f565b600061110286610d72565b156111105750600a54611123565b61111985610d72565b156111235750600b545b8060000361113857836000925092505061115f565b61271061114582866114e6565b61114f91906114fd565b915061115b828561151f565b9250505b935093915050565b6001600160a01b0383166111925780600260008282546111879190611532565b909155506112049050565b6001600160a01b038316600090815260208190526040902054818110156111e55760405163391434e360e21b81526001600160a01b038516600482015260248101829052604481018390526064016105d9565b6001600160a01b03841660009081526020819052604090209082900390555b6001600160a01b0382166112205760028054829003905561123f565b6001600160a01b03821660009081526020819052604090208054820190555b816001600160a01b0316836001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161128491815260200190565b60405180910390a3505050565b602081526000825180602084015260005b818110156112bf57602081860181015160408684010152016112a2565b506000604082850101526040601f19601f83011684010191505092915050565b80356001600160a01b03811681146112f657600080fd5b919050565b6000806040838503121561130e57600080fd5b611317836112df565b946020939093013593505050565b6000806040838503121561133857600080fd5b50508035926020909101359150565b8015158114610b8a57600080fd5b6000806040838503121561136857600080fd5b611371836112df565b9150602083013561138181611347565b809150509250929050565b60006020828403121561139e57600080fd5b6113a7826112df565b9392505050565b6000806000606084860312156113c357600080fd5b6113cc846112df565b92506113da602085016112df565b929592945050506040919091013590565b6000602082840312156113fd57600080fd5b5035919050565b60006020828403121561141657600080fd5b81356113a781611347565b6000806040838503121561143457600080fd5b61143d836112df565b915061144b602084016112df565b90509250929050565b6000806040838503121561146757600080fd5b82359150602083013561138181611347565b600181811c9082168061148d57607f821691505b6020821081036114ad57634e487b7160e01b600052602260045260246000fd5b50919050565b6000602082840312156114c557600080fd5b81516113a781611347565b634e487b7160e01b600052601160045260246000fd5b808202811582820484141761059e5761059e6114d0565b60008261151a57634e487b7160e01b600052601260045260246000fd5b500490565b8181038181111561059e5761059e6114d0565b8082018082111561059e5761059e6114d056fea26469706673582212208c5bf7e61390afcf776f0d4a10aa240d935e3cc42b2fc8905ffa0bc241cb6efd64736f6c634300081c003300000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000d6a80568f173ec257f815cde11d7d78bce6852ba0000000000000000000000009c295eba071ef1687f829a6ccb0accb3a755ac6e00000000000000000000000000000000000000000000000000000000000000094149424f5420495949000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000034149420000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x608060405234801561001057600080fd5b506004361061021c5760003560e01c80638f70ccf711610125578063e43252d7116100ad578063e85455d71161007c578063e85455d71461049f578063f2aa959c146104b2578063f2fde38b146104ba578063f5648a4f146104cd578063fe575a87146104d557600080fd5b8063e43252d71461045e578063e4d8cbe514610471578063e5a9f4d214610484578063e63d2d5b1461049757600080fd5b8063bd61f0a6116100f4578063bd61f0a6146103e3578063c4998cf0146103f6578063c69bebe4146103ff578063d6b2eee814610412578063dd62ed3e1461042557600080fd5b80638f70ccf7146103a257806395d89b41146103b5578063a9059cbb146103bd578063b3f00674146103d057600080fd5b80633af32abf116101a857806370a082311161017757806370a0823114610326578063715018a61461034f5780638ab1d681146103575780638c2a993e1461036a5780638da5cb5b1461037d57600080fd5b80633af32abf146102da57806347062402146102fd5780634ada218b1461030657806359992dbc1461031357600080fd5b806316279055116101ef578063162790551461028a57806318160ddd1461029d57806323b872dd146102af5780632b14ca56146102c2578063313ce567146102cb57600080fd5b806306fdde0314610221578063095ea7b31461023f5780630b78f9c014610262578063153b0d1e14610277575b600080fd5b6102296104f8565b6040516102369190611291565b60405180910390f35b61025261024d3660046112fb565b61058a565b6040519015158152602001610236565b610275610270366004611325565b6105a4565b005b610275610285366004611355565b61065a565b61025261029836600461138c565b6106e9565b6002545b604051908152602001610236565b6102526102bd3660046113ae565b6106f4565b6102a1600b5481565b60405160128152602001610236565b6102526102e836600461138c565b60066020526000908152604090205460ff1681565b6102a1600a5481565b600d546102529060ff1681565b6102756103213660046113eb565b610718565b6102a161033436600461138c565b6001600160a01b031660009081526020819052604090205490565b61027561078d565b61027561036536600461138c565b6107a1565b6102756103783660046112fb565b6107ff565b6005546001600160a01b03165b6040516001600160a01b039091168152602001610236565b6102756103b0366004611404565b610890565b6102296108d9565b6102526103cb3660046112fb565b6108e8565b60085461038a906001600160a01b031681565b6102756103f13660046112fb565b6108f6565b6102a1600c5481565b61027561040d36600461138c565b610995565b60095461038a906001600160a01b031681565b6102a1610433366004611421565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b61027561046c36600461138c565b6109fe565b6102a161047f366004611454565b610a6c565b61027561049236600461138c565b610aa1565b6102a1610b1a565b6102526104ad36600461138c565b610b44565b6102a1600181565b6102756104c836600461138c565b610b4f565b610275610b8d565b6102526104e336600461138c565b60076020526000908152604090205460ff1681565b60606003805461050790611479565b80601f016020809104026020016040519081016040528092919081815260200182805461053390611479565b80156105805780601f1061055557610100808354040283529160200191610580565b820191906000526020600020905b81548152906001019060200180831161056357829003601f168201915b5050505050905090565b600033610598818585610bce565b60019150505b92915050565b6105ac610bdb565b60648210806105bc57506103e882115b156105e257604051639983c52960e01b8152600481018390526024015b60405180910390fd5b60648110806105f257506103e881115b1561061357604051630f2599bd60e21b8152600481018290526024016105d9565b600a829055600b81905560408051838152602081018390527f528d9479e9f9889a87a3c30c7f7ba537e5e59c4c85a37733b16e57c62df61302910160405180910390a15050565b610662610bdb565b6001600160a01b0382166106895760405163e6c4247b60e01b815260040160405180910390fd5b6001600160a01b038216600081815260076020908152604091829020805460ff191685151590811790915591519182527f6a12b3df6cba4203bd7fd06b816789f87de8c594299aed5717ae070fac781bac91015b60405180910390a25050565b6000813b151561059e565b600033610702858285610c08565b61070d858585610c87565b506001949350505050565b610720610bdb565b603281108061073057506103e881115b156107515760405163b599aa8960e01b8152600481018290526024016105d9565b600c8190556040518181527f71f7e2ca5cdf6da98e205a02f2dc28ec756377670276cc64097b0ba1a830434a906020015b60405180910390a150565b610795610bdb565b61079f6000610ce6565b565b6107a9610bdb565b6001600160a01b0381166000818152600660209081526040808320805460ff19169055519182527ff93f9a76c1bf3444d22400a00cb9fe990e6abe9dbb333fda48859cfee864543d91015b60405180910390a250565b6009546001600160a01b0316331461082a5760405163ea83a29960e01b815260040160405180910390fd5b6001461461084b576040516390b11e3160e01b815260040160405180910390fd5b6108558282610d38565b816001600160a01b03167f397b33b307fc137878ebfc75b295289ec0ee25a31bb5bf034f33256fe8ea2aa6826040516106dd91815260200190565b610898610bdb565b600d805460ff19168215159081179091556040519081527f43a9ede4a950016f2118d687a4d238250e8bb52ba2381bcf4065e8c4110b8c0f90602001610782565b60606004805461050790611479565b600033610598818585610c87565b6108fe610bdb565b816001600160a01b031663a9059cbb61091f6005546001600160a01b031690565b6040516001600160e01b031960e084901b1681526001600160a01b039091166004820152602481018490526044016020604051808303816000875af115801561096c573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061099091906114b3565b505050565b61099d610bdb565b6001600160a01b0381166109c45760405163e6c4247b60e01b815260040160405180910390fd5b600880546001600160a01b039092166001600160a01b0319909216821790556000908152600660205260409020805460ff19166001179055565b610a06610bdb565b6001600160a01b03811660008181526006602090815260408083208054600160ff19918216811790925560078452938290208054909416909355519182527ff93f9a76c1bf3444d22400a00cb9fe990e6abe9dbb333fda48859cfee864543d91016107f4565b60008082610a7c57600b54610a80565b600a545b9050612710610a8f82866114e6565b610a9991906114fd565b949350505050565b610aa9610bdb565b6001600160a01b038116610ad05760405163e6c4247b60e01b815260040160405180910390fd5b600980546001600160a01b0319166001600160a01b0383169081179091556040517fa8bf368f05b6f090157a279ffe9ab908b619c17c4f0541398922710e918a478e90600090a250565b6000612710600c54610b2b60025490565b610b3591906114e6565b610b3f91906114fd565b905090565b600061059e82610d72565b610b57610bdb565b6001600160a01b038116610b8157604051631e4fbdf760e01b8152600060048201526024016105d9565b610b8a81610ce6565b50565b610b95610bdb565b6005546040516001600160a01b03909116904780156108fc02916000818181858888f19350505050158015610b8a573d6000803e3d6000fd5b6109908383836001610db4565b6005546001600160a01b0316331461079f5760405163118cdaa760e01b81523360048201526024016105d9565b6001600160a01b03838116600090815260016020908152604080832093861683529290522054600019811015610c815781811015610c7257604051637dc7a0d960e11b81526001600160a01b038416600482015260248101829052604481018390526064016105d9565b610c8184848484036000610db4565b50505050565b6001600160a01b038316610cb157604051634b637e8f60e11b8152600060048201526024016105d9565b6001600160a01b038216610cdb5760405163ec442f0560e01b8152600060048201526024016105d9565b610990838383610e89565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038216610d625760405163ec442f0560e01b8152600060048201526024016105d9565b610d6e60008383610e89565b5050565b6000813b15158015610d8d57506001600160a01b0382163014155b801561059e5750506001600160a01b031660009081526006602052604090205460ff161590565b6001600160a01b038416610dde5760405163e602df0560e01b8152600060048201526024016105d9565b6001600160a01b038316610e0857604051634a1406b160e11b8152600060048201526024016105d9565b6001600160a01b0380851660009081526001602090815260408083209387168352929052208290558015610c8157826001600160a01b0316846001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92584604051610e7b91815260200190565b60405180910390a350505050565b610e938383610eeb565b610e9d8383610f87565b610ea8838383610ff0565b600080610eb6858585611081565b90925090508015610ed957600854610ed99086906001600160a01b031683611167565b610ee4858584611167565b5050505050565b6001600160a01b03821615801590610f1b57506001600160a01b03821660009081526007602052604090205460ff165b15610f39576040516301e120d160e31b815260040160405180910390fd5b6001600160a01b03811615801590610f6957506001600160a01b03811660009081526007602052604090205460ff165b15610d6e5760405163a6add80360e01b815260040160405180910390fd5b600d5460ff1680610f9f57506001600160a01b038216155b80610fb157506001600160a01b038116155b15610fba575050565b610fc381610d72565b80610fd25750610fd282610d72565b15610d6e576040516312f1f92360e01b815260040160405180910390fd5b6001600160a01b038316158061100c575061100a82610d72565b155b8061102f57506001600160a01b03831660009081526006602052604090205460ff165b1561103957505050565b6000612710600c5461104a60025490565b61105491906114e6565b61105e91906114fd565b905080821115610c815760405163310dbcdd60e21b815260040160405180910390fd5b6000806001600160a01b03851615806110a157506001600160a01b038416155b806110c457506001600160a01b03851660009081526006602052604090205460ff165b806110e757506001600160a01b03841660009081526006602052604090205460ff165b156110f75750819050600061115f565b600061110286610d72565b156111105750600a54611123565b61111985610d72565b156111235750600b545b8060000361113857836000925092505061115f565b61271061114582866114e6565b61114f91906114fd565b915061115b828561151f565b9250505b935093915050565b6001600160a01b0383166111925780600260008282546111879190611532565b909155506112049050565b6001600160a01b038316600090815260208190526040902054818110156111e55760405163391434e360e21b81526001600160a01b038516600482015260248101829052604481018390526064016105d9565b6001600160a01b03841660009081526020819052604090209082900390555b6001600160a01b0382166112205760028054829003905561123f565b6001600160a01b03821660009081526020819052604090208054820190555b816001600160a01b0316836001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161128491815260200190565b60405180910390a3505050565b602081526000825180602084015260005b818110156112bf57602081860181015160408684010152016112a2565b506000604082850101526040601f19601f83011684010191505092915050565b80356001600160a01b03811681146112f657600080fd5b919050565b6000806040838503121561130e57600080fd5b611317836112df565b946020939093013593505050565b6000806040838503121561133857600080fd5b50508035926020909101359150565b8015158114610b8a57600080fd5b6000806040838503121561136857600080fd5b611371836112df565b9150602083013561138181611347565b809150509250929050565b60006020828403121561139e57600080fd5b6113a7826112df565b9392505050565b6000806000606084860312156113c357600080fd5b6113cc846112df565b92506113da602085016112df565b929592945050506040919091013590565b6000602082840312156113fd57600080fd5b5035919050565b60006020828403121561141657600080fd5b81356113a781611347565b6000806040838503121561143457600080fd5b61143d836112df565b915061144b602084016112df565b90509250929050565b6000806040838503121561146757600080fd5b82359150602083013561138181611347565b600181811c9082168061148d57607f821691505b6020821081036114ad57634e487b7160e01b600052602260045260246000fd5b50919050565b6000602082840312156114c557600080fd5b81516113a781611347565b634e487b7160e01b600052601160045260246000fd5b808202811582820484141761059e5761059e6114d0565b60008261151a57634e487b7160e01b600052601260045260246000fd5b500490565b8181038181111561059e5761059e6114d0565b8082018082111561059e5761059e6114d056fea26469706673582212208c5bf7e61390afcf776f0d4a10aa240d935e3cc42b2fc8905ffa0bc241cb6efd64736f6c634300081c0033

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

00000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000d6a80568f173ec257f815cde11d7d78bce6852ba0000000000000000000000009c295eba071ef1687f829a6ccb0accb3a755ac6e00000000000000000000000000000000000000000000000000000000000000094149424f5420495949000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000034149420000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _name (string): AIBOT IYI
Arg [1] : _symbol (string): AIB
Arg [2] : _totalSupply (uint256): 0
Arg [3] : _feeReceiver (address): 0xd6A80568f173eC257F815CDE11D7d78bCE6852Ba
Arg [4] : _owner (address): 0x9C295EBA071EF1687F829A6cCb0aCcB3a755AC6E

-----Encoded View---------------
9 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [3] : 000000000000000000000000d6a80568f173ec257f815cde11d7d78bce6852ba
Arg [4] : 0000000000000000000000009c295eba071ef1687f829a6ccb0accb3a755ac6e
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000009
Arg [6] : 4149424f54204959490000000000000000000000000000000000000000000000
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [8] : 4149420000000000000000000000000000000000000000000000000000000000


Loading...
Loading
Loading...
Loading
[ 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.