ETH Price: $3,321.31 (-4.30%)
Gas: 5.55 Gwei

Token

Anonymous AI (ANON)
 

Overview

Max Total Supply

1,000,000 ANON

Holders

107

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
454.567561373351857057 ANON

Value
$0.00
0xb5b2ce798f55c4843befe2dd5d629d53f56d464d
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:
ANON

Compiler Version
v0.8.28+commit.7893614a

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2024-10-30
*/

// SPDX-License-Identifier: MIT

// Twitter: https://x.com/AnonymousAIxyz
// Website: https://anonymousai.io/

pragma solidity ^0.8.28;

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

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

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

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

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

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

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

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

// File: @openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol


// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/extensions/IERC20Metadata.sol)

pragma solidity ^0.8.20;


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

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

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

// File: @openzeppelin/contracts/utils/Context.sol


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

// File: @openzeppelin/contracts/interfaces/draft-IERC6093.sol


// OpenZeppelin Contracts (last updated v5.0.0) (interfaces/draft-IERC6093.sol)
pragma solidity ^0.8.20;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: @openzeppelin/contracts/token/ERC20/ERC20.sol


// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/ERC20.sol)

pragma solidity ^0.8.20;





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

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

        emit Transfer(from, to, value);
    }

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

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

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

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

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


/**
 * @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);
    }
}
// anon.sol
pragma solidity ^0.8.28;
interface IDEXRouter {
    function WETH() external pure returns (address);
}

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

contract ANON is ERC20, Ownable {
    IDEXRouter public dexRouter;
    address public liquidityPair;

    uint256 private constant TOTAL_SUPPLY = 1_000_000 * 10 ** 18;
    uint256 public maxWalletBalance;

    constructor() 
    Ownable(tx.origin)
    ERC20("Anonymous AI", "ANON") {
        _mint(tx.origin, TOTAL_SUPPLY);
        maxWalletBalance = TOTAL_SUPPLY / 50; // %2
    }

    function _transfer(address sender, address recipient, uint256 amount) internal override {
        if (sender != owner() && recipient != liquidityPair && recipient != address(dexRouter)) {
            require(balanceOf(recipient) + amount <= maxWalletBalance, "Transfer exceeds wallet balance limit");
        }
        super._transfer(sender, recipient, amount);
    }

    function disablexWalletLimit() external onlyOwner {
        maxWalletBalance = TOTAL_SUPPLY;
    }

    function initializeRouter(address router, address factory) external onlyOwner {
        dexRouter = IDEXRouter(router);
        liquidityPair = IDEXFactory(factory).createPair(address(this), dexRouter.WETH());
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"allowance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientAllowance","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"uint256","name":"balance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientBalance","type":"error"},{"inputs":[{"internalType":"address","name":"approver","type":"address"}],"name":"ERC20InvalidApprover","type":"error"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"}],"name":"ERC20InvalidReceiver","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"}],"name":"ERC20InvalidSender","type":"error"},{"inputs":[{"internalType":"address","name":"spender","type":"address"}],"name":"ERC20InvalidSpender","type":"error"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"OwnableInvalidOwner","type":"error"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"OwnableUnauthorizedAccount","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":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"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":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"dexRouter","outputs":[{"internalType":"contract IDEXRouter","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"disablexWalletLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"router","type":"address"},{"internalType":"address","name":"factory","type":"address"}],"name":"initializeRouter","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"liquidityPair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWalletBalance","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":[],"name":"renounceOwnership","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":[{"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"}]

608060405234801561000f575f5ffd5b50326040518060400160405280600c81526020016b416e6f6e796d6f757320414960a01b8152506040518060400160405280600481526020016320a727a760e11b81525081600390816100629190610322565b50600461006f8282610322565b5050506001600160a01b0381166100a057604051631e4fbdf760e01b81525f60048201526024015b60405180910390fd5b6100a9816100db565b506100be3269d3c21bcecceda100000061012c565b6100d3603269d3c21bcecceda10000006103dc565b600855610420565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b6001600160a01b0382166101555760405163ec442f0560e01b81525f6004820152602401610097565b6101605f8383610164565b5050565b6001600160a01b03831661018e578060025f82825461018391906103fb565b909155506101fe9050565b6001600160a01b0383165f90815260208190526040902054818110156101e05760405163391434e360e21b81526001600160a01b03851660048201526024810182905260448101839052606401610097565b6001600160a01b0384165f9081526020819052604090209082900390555b6001600160a01b03821661021a57600280548290039055610238565b6001600160a01b0382165f9081526020819052604090208054820190555b816001600160a01b0316836001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161027d91815260200190565b60405180910390a3505050565b634e487b7160e01b5f52604160045260245ffd5b600181811c908216806102b257607f821691505b6020821081036102d057634e487b7160e01b5f52602260045260245ffd5b50919050565b601f82111561031d57805f5260205f20601f840160051c810160208510156102fb5750805b601f840160051c820191505b8181101561031a575f8155600101610307565b50505b505050565b81516001600160401b0381111561033b5761033b61028a565b61034f81610349845461029e565b846102d6565b6020601f821160018114610381575f831561036a5750848201515b5f19600385901b1c1916600184901b17845561031a565b5f84815260208120601f198516915b828110156103b05787850151825560209485019460019092019101610390565b50848210156103cd57868401515f19600387901b60f8161c191681555b50505050600190811b01905550565b5f826103f657634e487b7160e01b5f52601260045260245ffd5b500490565b8082018082111561041a57634e487b7160e01b5f52601160045260245ffd5b92915050565b610aee8061042d5f395ff3fe608060405234801561000f575f5ffd5b5060043610610106575f3560e01c8063808a54571161009e578063b214c9011161006e578063b214c9011461021b578063bbde77c11461022e578063dd62ed3e14610237578063f2fde38b1461026f578063f65a8a5814610282575f5ffd5b8063808a5457146101dc5780638da5cb5b146101ef57806395d89b4114610200578063a9059cbb14610208575f5ffd5b806323b872dd116100d957806323b872dd14610188578063313ce5671461019b57806370a08231146101aa578063715018a6146101d2575f5ffd5b806306fdde031461010a5780630758d92414610128578063095ea7b31461015357806318160ddd14610176575b5f5ffd5b61011261028a565b60405161011f919061093c565b60405180910390f35b60065461013b906001600160a01b031681565b6040516001600160a01b03909116815260200161011f565b610166610161366004610985565b61031a565b604051901515815260200161011f565b6002545b60405190815260200161011f565b6101666101963660046109af565b610333565b6040516012815260200161011f565b61017a6101b83660046109ed565b6001600160a01b03165f9081526020819052604090205490565b6101da610356565b005b60075461013b906001600160a01b031681565b6005546001600160a01b031661013b565b610112610369565b610166610216366004610985565b610378565b6101da610229366004610a0f565b610385565b61017a60085481565b61017a610245366004610a0f565b6001600160a01b039182165f90815260016020908152604080832093909416825291909152205490565b6101da61027d3660046109ed565b6104a9565b6101da6104eb565b60606003805461029990610a46565b80601f01602080910402602001604051908101604052809291908181526020018280546102c590610a46565b80156103105780601f106102e757610100808354040283529160200191610310565b820191905f5260205f20905b8154815290600101906020018083116102f357829003601f168201915b5050505050905090565b5f33610327818585610503565b60019150505b92915050565b5f33610340858285610515565b61034b858585610590565b506001949350505050565b61035e61066e565b6103675f61069b565b565b60606004805461029990610a46565b5f33610327818585610590565b61038d61066e565b600680546001600160a01b0319166001600160a01b03848116918217909255604080516315ab88c960e31b815290519284169263c9c65396923092909163ad5c4648916004808201926020929091908290030181865afa1580156103f3573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906104179190610a7e565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303815f875af1158015610461573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906104859190610a7e565b600780546001600160a01b0319166001600160a01b03929092169190911790555050565b6104b161066e565b6001600160a01b0381166104df57604051631e4fbdf760e01b81525f60048201526024015b60405180910390fd5b6104e88161069b565b50565b6104f361066e565b69d3c21bcecceda1000000600855565b61051083838360016106ec565b505050565b6001600160a01b038381165f908152600160209081526040808320938616835292905220545f19811461058a578181101561057c57604051637dc7a0d960e11b81526001600160a01b038416600482015260248101829052604481018390526064016104d6565b61058a84848484035f6106ec565b50505050565b6005546001600160a01b038481169116148015906105bc57506007546001600160a01b03838116911614155b80156105d657506006546001600160a01b03838116911614155b1561066357600854816105fd846001600160a01b03165f9081526020819052604090205490565b6106079190610a99565b11156106635760405162461bcd60e51b815260206004820152602560248201527f5472616e7366657220657863656564732077616c6c65742062616c616e6365206044820152641b1a5b5a5d60da1b60648201526084016104d6565b6105108383836107be565b6005546001600160a01b031633146103675760405163118cdaa760e01b81523360048201526024016104d6565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b6001600160a01b0384166107155760405163e602df0560e01b81525f60048201526024016104d6565b6001600160a01b03831661073e57604051634a1406b160e11b81525f60048201526024016104d6565b6001600160a01b038085165f908152600160209081526040808320938716835292905220829055801561058a57826001600160a01b0316846001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925846040516107b091815260200190565b60405180910390a350505050565b6001600160a01b0383166107e757604051634b637e8f60e11b81525f60048201526024016104d6565b6001600160a01b0382166108105760405163ec442f0560e01b81525f60048201526024016104d6565b6105108383836001600160a01b038316610840578060025f8282546108359190610a99565b909155506108b09050565b6001600160a01b0383165f90815260208190526040902054818110156108925760405163391434e360e21b81526001600160a01b038516600482015260248101829052604481018390526064016104d6565b6001600160a01b0384165f9081526020819052604090209082900390555b6001600160a01b0382166108cc576002805482900390556108ea565b6001600160a01b0382165f9081526020819052604090208054820190555b816001600160a01b0316836001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161092f91815260200190565b60405180910390a3505050565b602081525f82518060208401528060208501604085015e5f604082850101526040601f19601f83011684010191505092915050565b6001600160a01b03811681146104e8575f5ffd5b5f5f60408385031215610996575f5ffd5b82356109a181610971565b946020939093013593505050565b5f5f5f606084860312156109c1575f5ffd5b83356109cc81610971565b925060208401356109dc81610971565b929592945050506040919091013590565b5f602082840312156109fd575f5ffd5b8135610a0881610971565b9392505050565b5f5f60408385031215610a20575f5ffd5b8235610a2b81610971565b91506020830135610a3b81610971565b809150509250929050565b600181811c90821680610a5a57607f821691505b602082108103610a7857634e487b7160e01b5f52602260045260245ffd5b50919050565b5f60208284031215610a8e575f5ffd5b8151610a0881610971565b8082018082111561032d57634e487b7160e01b5f52601160045260245ffdfea26469706673582212206e41c2fffeee65ae31094c75bb55167ca6e265e181b3f63c80e5aa0b716a4a6264736f6c634300081c0033

Deployed Bytecode

0x608060405234801561000f575f5ffd5b5060043610610106575f3560e01c8063808a54571161009e578063b214c9011161006e578063b214c9011461021b578063bbde77c11461022e578063dd62ed3e14610237578063f2fde38b1461026f578063f65a8a5814610282575f5ffd5b8063808a5457146101dc5780638da5cb5b146101ef57806395d89b4114610200578063a9059cbb14610208575f5ffd5b806323b872dd116100d957806323b872dd14610188578063313ce5671461019b57806370a08231146101aa578063715018a6146101d2575f5ffd5b806306fdde031461010a5780630758d92414610128578063095ea7b31461015357806318160ddd14610176575b5f5ffd5b61011261028a565b60405161011f919061093c565b60405180910390f35b60065461013b906001600160a01b031681565b6040516001600160a01b03909116815260200161011f565b610166610161366004610985565b61031a565b604051901515815260200161011f565b6002545b60405190815260200161011f565b6101666101963660046109af565b610333565b6040516012815260200161011f565b61017a6101b83660046109ed565b6001600160a01b03165f9081526020819052604090205490565b6101da610356565b005b60075461013b906001600160a01b031681565b6005546001600160a01b031661013b565b610112610369565b610166610216366004610985565b610378565b6101da610229366004610a0f565b610385565b61017a60085481565b61017a610245366004610a0f565b6001600160a01b039182165f90815260016020908152604080832093909416825291909152205490565b6101da61027d3660046109ed565b6104a9565b6101da6104eb565b60606003805461029990610a46565b80601f01602080910402602001604051908101604052809291908181526020018280546102c590610a46565b80156103105780601f106102e757610100808354040283529160200191610310565b820191905f5260205f20905b8154815290600101906020018083116102f357829003601f168201915b5050505050905090565b5f33610327818585610503565b60019150505b92915050565b5f33610340858285610515565b61034b858585610590565b506001949350505050565b61035e61066e565b6103675f61069b565b565b60606004805461029990610a46565b5f33610327818585610590565b61038d61066e565b600680546001600160a01b0319166001600160a01b03848116918217909255604080516315ab88c960e31b815290519284169263c9c65396923092909163ad5c4648916004808201926020929091908290030181865afa1580156103f3573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906104179190610a7e565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303815f875af1158015610461573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906104859190610a7e565b600780546001600160a01b0319166001600160a01b03929092169190911790555050565b6104b161066e565b6001600160a01b0381166104df57604051631e4fbdf760e01b81525f60048201526024015b60405180910390fd5b6104e88161069b565b50565b6104f361066e565b69d3c21bcecceda1000000600855565b61051083838360016106ec565b505050565b6001600160a01b038381165f908152600160209081526040808320938616835292905220545f19811461058a578181101561057c57604051637dc7a0d960e11b81526001600160a01b038416600482015260248101829052604481018390526064016104d6565b61058a84848484035f6106ec565b50505050565b6005546001600160a01b038481169116148015906105bc57506007546001600160a01b03838116911614155b80156105d657506006546001600160a01b03838116911614155b1561066357600854816105fd846001600160a01b03165f9081526020819052604090205490565b6106079190610a99565b11156106635760405162461bcd60e51b815260206004820152602560248201527f5472616e7366657220657863656564732077616c6c65742062616c616e6365206044820152641b1a5b5a5d60da1b60648201526084016104d6565b6105108383836107be565b6005546001600160a01b031633146103675760405163118cdaa760e01b81523360048201526024016104d6565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b6001600160a01b0384166107155760405163e602df0560e01b81525f60048201526024016104d6565b6001600160a01b03831661073e57604051634a1406b160e11b81525f60048201526024016104d6565b6001600160a01b038085165f908152600160209081526040808320938716835292905220829055801561058a57826001600160a01b0316846001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925846040516107b091815260200190565b60405180910390a350505050565b6001600160a01b0383166107e757604051634b637e8f60e11b81525f60048201526024016104d6565b6001600160a01b0382166108105760405163ec442f0560e01b81525f60048201526024016104d6565b6105108383836001600160a01b038316610840578060025f8282546108359190610a99565b909155506108b09050565b6001600160a01b0383165f90815260208190526040902054818110156108925760405163391434e360e21b81526001600160a01b038516600482015260248101829052604481018390526064016104d6565b6001600160a01b0384165f9081526020819052604090209082900390555b6001600160a01b0382166108cc576002805482900390556108ea565b6001600160a01b0382165f9081526020819052604090208054820190555b816001600160a01b0316836001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161092f91815260200190565b60405180910390a3505050565b602081525f82518060208401528060208501604085015e5f604082850101526040601f19601f83011684010191505092915050565b6001600160a01b03811681146104e8575f5ffd5b5f5f60408385031215610996575f5ffd5b82356109a181610971565b946020939093013593505050565b5f5f5f606084860312156109c1575f5ffd5b83356109cc81610971565b925060208401356109dc81610971565b929592945050506040919091013590565b5f602082840312156109fd575f5ffd5b8135610a0881610971565b9392505050565b5f5f60408385031215610a20575f5ffd5b8235610a2b81610971565b91506020830135610a3b81610971565b809150509250929050565b600181811c90821680610a5a57607f821691505b602082108103610a7857634e487b7160e01b5f52602260045260245ffd5b50919050565b5f60208284031215610a8e575f5ffd5b8151610a0881610971565b8082018082111561032d57634e487b7160e01b5f52601160045260245ffdfea26469706673582212206e41c2fffeee65ae31094c75bb55167ca6e265e181b3f63c80e5aa0b716a4a6264736f6c634300081c0033

Deployed Bytecode Sourcemap

25899:1111:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13276:91;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25938:27;;;;;-1:-1:-1;;;;;25938:27:0;;;;;;-1:-1:-1;;;;;619:32:1;;;601:51;;589:2;574:18;25938:27:0;437:221:1;15569:190:0;;;;;;:::i;:::-;;:::i;:::-;;;1336:14:1;;1329:22;1311:41;;1299:2;1284:18;15569:190:0;1171:187:1;14378:99:0;14457:12;;14378:99;;;1509:25:1;;;1497:2;1482:18;14378:99:0;1363:177:1;16337:249:0;;;;;;:::i;:::-;;:::i;14229:84::-;;;14303:2;2200:36:1;;2188:2;2173:18;14229:84:0;2058:184:1;14540:118:0;;;;;;:::i;:::-;-1:-1:-1;;;;;14632:18:0;14605:7;14632:18;;;;;;;;;;;;14540:118;24828:103;;;:::i;:::-;;25972:28;;;;;-1:-1:-1;;;;;25972:28:0;;;24153:87;24226:6;;-1:-1:-1;;;;;24226:6:0;24153:87;;13486:95;;;:::i;14863:182::-;;;;;;:::i;:::-;;:::i;26789:218::-;;;;;;:::i;:::-;;:::i;26076:31::-;;;;;;15108:142;;;;;;:::i;:::-;-1:-1:-1;;;;;15215:18:0;;;15188:7;15215:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;15108:142;25086:220;;;;;;:::i;:::-;;:::i;26681:100::-;;;:::i;13276:91::-;13321:13;13354:5;13347:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13276:91;:::o;15569:190::-;15642:4;4361:10;15698:31;4361:10;15714:7;15723:5;15698:8;:31::i;:::-;15747:4;15740:11;;;15569:190;;;;;:::o;16337:249::-;16424:4;4361:10;16482:37;16498:4;4361:10;16513:5;16482:15;:37::i;:::-;16530:26;16540:4;16546:2;16550:5;16530:9;:26::i;:::-;-1:-1:-1;16574:4:0;;16337:249;-1:-1:-1;;;;16337:249:0:o;24828:103::-;24039:13;:11;:13::i;:::-;24893:30:::1;24920:1;24893:18;:30::i;:::-;24828:103::o:0;13486:95::-;13533:13;13566:7;13559:14;;;;;:::i;14863:182::-;14932:4;4361:10;14988:27;4361:10;15005:2;15009:5;14988:9;:27::i;26789:218::-;24039:13;:11;:13::i;:::-;26878:9:::1;:30:::0;;-1:-1:-1;;;;;;26878:30:0::1;-1:-1:-1::0;;;;;26878:30:0;;::::1;::::0;;::::1;::::0;;;26982:16:::1;::::0;;-1:-1:-1;;;26982:16:0;;;;26935:31;;::::1;::::0;::::1;::::0;26975:4:::1;::::0;26878:30;;26982:14:::1;::::0;:16:::1;::::0;;::::1;::::0;::::1;::::0;;;;;;;;;26878:30;26982:16:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;26935:64;::::0;-1:-1:-1;;;;;;26935:64:0::1;::::0;;;;;;-1:-1:-1;;;;;3933:32:1;;;26935:64:0::1;::::0;::::1;3915:51:1::0;4002:32;;3982:18;;;3975:60;3888:18;;26935:64:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;26919:13;:80:::0;;-1:-1:-1;;;;;;26919:80:0::1;-1:-1:-1::0;;;;;26919:80:0;;;::::1;::::0;;;::::1;::::0;;-1:-1:-1;;26789:218:0:o;25086:220::-;24039:13;:11;:13::i;:::-;-1:-1:-1;;;;;25171:22:0;::::1;25167:93;;25217:31;::::0;-1:-1:-1;;;25217:31:0;;25245:1:::1;25217:31;::::0;::::1;601:51:1::0;574:18;;25217:31:0::1;;;;;;;;25167:93;25270:28;25289:8;25270:18;:28::i;:::-;25086:220:::0;:::o;26681:100::-;24039:13;:11;:13::i;:::-;26049:20:::1;26742:16;:31:::0;26681:100::o;20404:130::-;20489:37;20498:5;20505:7;20514:5;20521:4;20489:8;:37::i;:::-;20404:130;;;:::o;22120:487::-;-1:-1:-1;;;;;15215:18:0;;;22220:24;15215:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;-1:-1:-1;;22287:37:0;;22283:317;;22364:5;22345:16;:24;22341:132;;;22397:60;;-1:-1:-1;;;22397:60:0;;-1:-1:-1;;;;;4266:32:1;;22397:60:0;;;4248:51:1;4315:18;;;4308:34;;;4358:18;;;4351:34;;;4221:18;;22397:60:0;4046:345:1;22341:132:0;22516:57;22525:5;22532:7;22560:5;22541:16;:24;22567:5;22516:8;:57::i;:::-;22209:398;22120:487;;;:::o;26300:373::-;24226:6;;-1:-1:-1;;;;;26403:17:0;;;24226:6;;26403:17;;;;:47;;-1:-1:-1;26437:13:0;;-1:-1:-1;;;;;26424:26:0;;;26437:13;;26424:26;;26403:47;:82;;;;-1:-1:-1;26475:9:0;;-1:-1:-1;;;;;26454:31:0;;;26475:9;;26454:31;;26403:82;26399:214;;;26543:16;;26533:6;26510:20;26520:9;-1:-1:-1;;;;;14632:18:0;14605:7;14632:18;;;;;;;;;;;;14540:118;26510:20;:29;;;;:::i;:::-;:49;;26502:99;;;;-1:-1:-1;;;26502:99:0;;4825:2:1;26502:99:0;;;4807:21:1;4864:2;4844:18;;;4837:30;4903:34;4883:18;;;4876:62;-1:-1:-1;;;4954:18:1;;;4947:35;4999:19;;26502:99:0;4623:401:1;26502:99:0;26623:42;26639:6;26647:9;26658:6;26623:15;:42::i;24318:166::-;24226:6;;-1:-1:-1;;;;;24226:6:0;4361:10;24378:23;24374:103;;24425:40;;-1:-1:-1;;;24425:40:0;;4361:10;24425:40;;;601:51:1;574:18;;24425:40:0;437:221:1;25466:191:0;25559:6;;;-1:-1:-1;;;;;25576:17:0;;;-1:-1:-1;;;;;;25576:17:0;;;;;;;25609:40;;25559:6;;;25576:17;25559:6;;25609:40;;25540:16;;25609:40;25529:128;25466:191;:::o;21385:443::-;-1:-1:-1;;;;;21498:19:0;;21494:91;;21541:32;;-1:-1:-1;;;21541:32:0;;21570:1;21541:32;;;601:51:1;574:18;;21541:32:0;437:221:1;21494:91:0;-1:-1:-1;;;;;21599:21:0;;21595:92;;21644:31;;-1:-1:-1;;;21644:31:0;;21672:1;21644:31;;;601:51:1;574:18;;21644:31:0;437:221:1;21595:92:0;-1:-1:-1;;;;;21697:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;:35;;;21743:78;;;;21794:7;-1:-1:-1;;;;;21778:31:0;21787:5;-1:-1:-1;;;;;21778:31:0;;21803:5;21778:31;;;;1509:25:1;;1497:2;1482:18;;1363:177;21778:31:0;;;;;;;;21385:443;;;;:::o;16971:316::-;-1:-1:-1;;;;;17063:18:0;;17059:88;;17105:30;;-1:-1:-1;;;17105:30:0;;17132:1;17105:30;;;601:51:1;574:18;;17105:30:0;437:221:1;17059:88:0;-1:-1:-1;;;;;17161:16:0;;17157:88;;17201:32;;-1:-1:-1;;;17201:32:0;;17230:1;17201:32;;;601:51:1;574:18;;17201:32:0;437:221:1;17157:88:0;17255:24;17263:4;17269:2;17273:5;-1:-1:-1;;;;;17701:18:0;;17697:552;;17855:5;17839:12;;:21;;;;;;;:::i;:::-;;;;-1:-1:-1;17697:552:0;;-1:-1:-1;17697:552:0;;-1:-1:-1;;;;;17915:15:0;;17893:19;17915:15;;;;;;;;;;;17949:19;;;17945:117;;;17996:50;;-1:-1:-1;;;17996:50:0;;-1:-1:-1;;;;;4266:32:1;;17996:50:0;;;4248:51:1;4315:18;;;4308:34;;;4358:18;;;4351:34;;;4221:18;;17996:50:0;4046:345:1;17945:117:0;-1:-1:-1;;;;;18185:15:0;;:9;:15;;;;;;;;;;18203:19;;;;18185:37;;17697:552;-1:-1:-1;;;;;18265:16:0;;18261:435;;18431:12;:21;;;;;;;18261:435;;;-1:-1:-1;;;;;18647:13:0;;:9;:13;;;;;;;;;;:22;;;;;;18261:435;18728:2;-1:-1:-1;;;;;18713:25:0;18722:4;-1:-1:-1;;;;;18713:25:0;;18732:5;18713:25;;;;1509::1;;1497:2;1482:18;;1363:177;18713:25:0;;;;;;;;17611:1135;;;:::o;14:418:1:-;163:2;152:9;145:21;126:4;195:6;189:13;238:6;233:2;222:9;218:18;211:34;297:6;292:2;284:6;280:15;275:2;264:9;260:18;254:50;353:1;348:2;339:6;328:9;324:22;320:31;313:42;423:2;416;412:7;407:2;399:6;395:15;391:29;380:9;376:45;372:54;364:62;;;14:418;;;;:::o;663:131::-;-1:-1:-1;;;;;738:31:1;;728:42;;718:70;;784:1;781;774:12;799:367;867:6;875;928:2;916:9;907:7;903:23;899:32;896:52;;;944:1;941;934:12;896:52;983:9;970:23;1002:31;1027:5;1002:31;:::i;:::-;1052:5;1130:2;1115:18;;;;1102:32;;-1:-1:-1;;;799:367:1:o;1545:508::-;1622:6;1630;1638;1691:2;1679:9;1670:7;1666:23;1662:32;1659:52;;;1707:1;1704;1697:12;1659:52;1746:9;1733:23;1765:31;1790:5;1765:31;:::i;:::-;1815:5;-1:-1:-1;1872:2:1;1857:18;;1844:32;1885:33;1844:32;1885:33;:::i;:::-;1545:508;;1937:7;;-1:-1:-1;;;2017:2:1;2002:18;;;;1989:32;;1545:508::o;2247:247::-;2306:6;2359:2;2347:9;2338:7;2334:23;2330:32;2327:52;;;2375:1;2372;2365:12;2327:52;2414:9;2401:23;2433:31;2458:5;2433:31;:::i;:::-;2483:5;2247:247;-1:-1:-1;;;2247:247:1:o;2707:388::-;2775:6;2783;2836:2;2824:9;2815:7;2811:23;2807:32;2804:52;;;2852:1;2849;2842:12;2804:52;2891:9;2878:23;2910:31;2935:5;2910:31;:::i;:::-;2960:5;-1:-1:-1;3017:2:1;3002:18;;2989:32;3030:33;2989:32;3030:33;:::i;:::-;3082:7;3072:17;;;2707:388;;;;;:::o;3100:380::-;3179:1;3175:12;;;;3222;;;3243:61;;3297:4;3289:6;3285:17;3275:27;;3243:61;3350:2;3342:6;3339:14;3319:18;3316:38;3313:161;;3396:10;3391:3;3387:20;3384:1;3377:31;3431:4;3428:1;3421:15;3459:4;3456:1;3449:15;3313:161;;3100:380;;;:::o;3485:251::-;3555:6;3608:2;3596:9;3587:7;3583:23;3579:32;3576:52;;;3624:1;3621;3614:12;3576:52;3656:9;3650:16;3675:31;3700:5;3675:31;:::i;4396:222::-;4461:9;;;4482:10;;;4479:133;;;4534:10;4529:3;4525:20;4522:1;4515:31;4569:4;4566:1;4559:15;4597:4;4594:1;4587:15

Swarm Source

ipfs://6e41c2fffeee65ae31094c75bb55167ca6e265e181b3f63c80e5aa0b716a4a62
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.