ETH Price: $3,168.85 (-5.46%)
 

Overview

Max Total Supply

1,000,000,000 TAGO

Holders

2

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
10,000,000 TAGO

Value
$0.00
0x35ac13efaab970f32269b61e4704f4377ce7a0ad
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:
TAGO

Compiler Version
v0.8.21+commit.d9974bed

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 1 : TagoVerse.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.19;

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

/**
 * @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) {
        _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);
    }
}

/**
 * @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);
}

/**
 * @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);
}

/**
 * @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 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.
 *
 * Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
 * functions have been added to mitigate the well-known issues around setting
 * allowances. See {IERC20-approve}.
 */
abstract contract ERC20 is Context, IERC20, IERC20Metadata, IERC20Errors {
    mapping(address => uint256) private _balances;

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

    /**
     * @dev Indicates a failed `decreaseAllowance` request.
     */
    error ERC20FailedDecreaseAllowance(
        address spender,
        uint256 currentAllowance,
        uint256 requestedDecrease
    );

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

    /**
     * @dev Atomically decreases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     * - `spender` must have allowance for the caller of at least
     * `requestedDecrease`.
     *
     * NOTE: Although this function is designed to avoid double spending with {approval},
     * it can still be frontrunned, preventing any attempt of allowance reduction.
     */
    function decreaseAllowance(
        address spender,
        uint256 requestedDecrease
    ) public virtual returns (bool) {
        address owner = _msgSender();
        uint256 currentAllowance = allowance(owner, spender);
        if (currentAllowance < requestedDecrease) {
            revert ERC20FailedDecreaseAllowance(
                spender,
                currentAllowance,
                requestedDecrease
            );
        }
        unchecked {
            _approve(owner, spender, currentAllowance - requestedDecrease);
        }

        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`, by transferring it to address(0).
     * 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.
     */
    function _approve(
        address owner,
        address spender,
        uint256 value
    ) internal virtual {
        _approve(owner, spender, value, true);
    }

    /**
     * @dev Alternative version of {_approve} with an optional flag that can 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.
     *
     * Might 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);
            }
        }
    }
}

contract TAGO is ERC20, Ownable {
    /**
     * @dev Indicates a failure with the token `receiver`. Used in transfers.
     * @param receiver Address to which tokens are being transferred.
     */
    error ReceiverExceedsMaxWallet(address receiver);

    uint256 private _totalSupply;

    uint256 private _maxWalletAmount;
    mapping(address => bool) private _isExcludedFromMaxWallet;

    constructor() ERC20("Tago Verse", "TAGO") Ownable(_msgSender()) {
        _totalSupply = 10 ** 9 * 10 ** decimals();
        _maxWalletAmount = 2 * 10 ** 7 * 10 ** decimals(); // 2% of total supply

        _isExcludedFromMaxWallet[owner()] = true;
        _isExcludedFromMaxWallet[address(this)] = true;
        _isExcludedFromMaxWallet[address(0)] = true;

        _mint(owner(), _totalSupply);
    }

    function _update(
        address from,
        address to,
        uint256 value
    ) internal override {
        if (!_isExcludedFromMaxWallet[to]) {
            uint256 newBalance = balanceOf(to) + value;
            if (newBalance > _maxWalletAmount) {
                revert ReceiverExceedsMaxWallet(to);
            }
        }
        super._update(from, to, value);
    }

    // External functions

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

    function excludeFromMaxWallet(address account) external onlyOwner {
        _isExcludedFromMaxWallet[account] = true;
    }

    function includeInMaxWallet(address account) external onlyOwner {
        _isExcludedFromMaxWallet[account] = false;
    }
}

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"currentAllowance","type":"uint256"},{"internalType":"uint256","name":"requestedDecrease","type":"uint256"}],"name":"ERC20FailedDecreaseAllowance","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":[{"internalType":"address","name":"owner","type":"address"}],"name":"OwnableInvalidOwner","type":"error"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"OwnableUnauthorizedAccount","type":"error"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"}],"name":"ReceiverExceedsMaxWallet","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":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"requestedDecrease","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"excludeFromMaxWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"includeInMaxWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"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"}]

608060405234801562000010575f80fd5b50620000216200026660201b60201c565b6040518060400160405280600a81526020017f5461676f205665727365000000000000000000000000000000000000000000008152506040518060400160405280600481526020017f5441474f0000000000000000000000000000000000000000000000000000000081525081600390816200009e91906200098b565b508060049081620000b091906200098b565b505050620000c4816200026d60201b60201c565b50620000d56200033060201b60201c565b600a620000e3919062000bf8565b633b9aca00620000f4919062000c48565b6006819055506200010a6200033060201b60201c565b600a62000118919062000bf8565b6301312d0062000129919062000c48565b600781905550600160085f620001446200033860201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff021916908315150217905550600160085f3073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff021916908315150217905550600160085f8073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff02191690831515021790555062000260620002516200033860201b60201c565b6006546200036060201b60201c565b62000d91565b5f33905090565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f6012905090565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603620003d3575f6040517fec442f05000000000000000000000000000000000000000000000000000000008152600401620003ca919062000cd5565b60405180910390fd5b620003e65f8383620003ea60201b60201c565b5050565b60085f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16620004a6575f816200044c84620004be60201b60201c565b62000458919062000cf0565b9050600754811115620004a457826040517f208da71d0000000000000000000000000000000000000000000000000000000081526004016200049b919062000cd5565b60405180910390fd5b505b620004b98383836200050360201b60201c565b505050565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160362000557578060025f8282546200054a919062000cf0565b9250508190555062000628565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015620005e3578381836040517fe450d38c000000000000000000000000000000000000000000000000000000008152600401620005da9392919062000d3b565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550505b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000671578060025f8282540392505081905550620006bb565b805f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516200071a919062000d76565b60405180910390a3505050565b5f81519050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f6002820490506001821680620007a357607f821691505b602082108103620007b957620007b86200075e565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f600883026200081d7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82620007e0565b620008298683620007e0565b95508019841693508086168417925050509392505050565b5f819050919050565b5f819050919050565b5f620008736200086d620008678462000841565b6200084a565b62000841565b9050919050565b5f819050919050565b6200088e8362000853565b620008a66200089d826200087a565b848454620007ec565b825550505050565b5f90565b620008bc620008ae565b620008c981848462000883565b505050565b5b81811015620008f057620008e45f82620008b2565b600181019050620008cf565b5050565b601f8211156200093f576200090981620007bf565b6200091484620007d1565b8101602085101562000924578190505b6200093c6200093385620007d1565b830182620008ce565b50505b505050565b5f82821c905092915050565b5f620009615f198460080262000944565b1980831691505092915050565b5f6200097b838362000950565b9150826002028217905092915050565b620009968262000727565b67ffffffffffffffff811115620009b257620009b162000731565b5b620009be82546200078b565b620009cb828285620008f4565b5f60209050601f83116001811462000a01575f8415620009ec578287015190505b620009f885826200096e565b86555062000a67565b601f19841662000a1186620007bf565b5f5b8281101562000a3a5784890151825560018201915060208501945060208101905062000a13565b8683101562000a5a578489015162000a56601f89168262000950565b8355505b6001600288020188555050505b505050505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f8160011c9050919050565b5f808291508390505b600185111562000af95780860481111562000ad15762000ad062000a6f565b5b600185161562000ae15780820291505b808102905062000af18562000a9c565b945062000ab1565b94509492505050565b5f8262000b13576001905062000be5565b8162000b22575f905062000be5565b816001811462000b3b576002811462000b465762000b7c565b600191505062000be5565b60ff84111562000b5b5762000b5a62000a6f565b5b8360020a91508482111562000b755762000b7462000a6f565b5b5062000be5565b5060208310610133831016604e8410600b841016171562000bb65782820a90508381111562000bb05762000baf62000a6f565b5b62000be5565b62000bc5848484600162000aa8565b9250905081840481111562000bdf5762000bde62000a6f565b5b81810290505b9392505050565b5f60ff82169050919050565b5f62000c048262000841565b915062000c118362000bec565b925062000c407fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff848462000b02565b905092915050565b5f62000c548262000841565b915062000c618362000841565b925082820262000c718162000841565b9150828204841483151762000c8b5762000c8a62000a6f565b5b5092915050565b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f62000cbd8262000c92565b9050919050565b62000ccf8162000cb1565b82525050565b5f60208201905062000cea5f83018462000cc4565b92915050565b5f62000cfc8262000841565b915062000d098362000841565b925082820190508082111562000d245762000d2362000a6f565b5b92915050565b62000d358162000841565b82525050565b5f60608201905062000d505f83018662000cc4565b62000d5f602083018562000d2a565b62000d6e604083018462000d2a565b949350505050565b5f60208201905062000d8b5f83018462000d2a565b92915050565b6114598062000d9f5f395ff3fe608060405234801561000f575f80fd5b5060043610610109575f3560e01c80635b700d91116100a057806395d89b411161006f57806395d89b41146102a3578063a457c2d7146102c1578063a9059cbb146102f1578063dd62ed3e14610321578063f2fde38b1461035157610109565b80635b700d911461022f57806370a082311461024b578063715018a61461027b5780638da5cb5b1461028557610109565b8063313ce567116100dc578063313ce567146101a957806339509351146101c75780633f33e909146101f757806342966c681461021357610109565b806306fdde031461010d578063095ea7b31461012b57806318160ddd1461015b57806323b872dd14610179575b5f80fd5b61011561036d565b60405161012291906110a7565b60405180910390f35b61014560048036038101906101409190611158565b6103fd565b60405161015291906111b0565b60405180910390f35b61016361041f565b60405161017091906111d8565b60405180910390f35b610193600480360381019061018e91906111f1565b610428565b6040516101a091906111b0565b60405180910390f35b6101b1610456565b6040516101be919061125c565b60405180910390f35b6101e160048036038101906101dc9190611158565b61045e565b6040516101ee91906111b0565b60405180910390f35b610211600480360381019061020c9190611275565b610494565b005b61022d600480360381019061022891906112a0565b6104f3565b005b61024960048036038101906102449190611275565b610500565b005b61026560048036038101906102609190611275565b610560565b60405161027291906111d8565b60405180910390f35b6102836105a5565b005b61028d6105b8565b60405161029a91906112da565b60405180910390f35b6102ab6105e0565b6040516102b891906110a7565b60405180910390f35b6102db60048036038101906102d69190611158565b610670565b6040516102e891906111b0565b60405180910390f35b61030b60048036038101906103069190611158565b6106eb565b60405161031891906111b0565b60405180910390f35b61033b600480360381019061033691906112f3565b61070d565b60405161034891906111d8565b60405180910390f35b61036b60048036038101906103669190611275565b61078f565b005b60606003805461037c9061135e565b80601f01602080910402602001604051908101604052809291908181526020018280546103a89061135e565b80156103f35780601f106103ca576101008083540402835291602001916103f3565b820191905f5260205f20905b8154815290600101906020018083116103d657829003601f168201915b5050505050905090565b5f80610407610813565b905061041481858561081a565b600191505092915050565b5f600254905090565b5f80610432610813565b905061043f85828561082c565b61044a8585856108be565b60019150509392505050565b5f6012905090565b5f80610468610813565b905061048981858561047a858961070d565b61048491906113bb565b61081a565b600191505092915050565b61049c6109ae565b5f60085f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff02191690831515021790555050565b6104fd3382610a35565b50565b6105086109ae565b600160085f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff02191690831515021790555050565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b6105ad6109ae565b6105b65f610ab4565b565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600480546105ef9061135e565b80601f016020809104026020016040519081016040528092919081815260200182805461061b9061135e565b80156106665780601f1061063d57610100808354040283529160200191610666565b820191905f5260205f20905b81548152906001019060200180831161064957829003601f168201915b5050505050905090565b5f8061067a610813565b90505f610687828661070d565b9050838110156106d2578481856040517fa60f030c0000000000000000000000000000000000000000000000000000000081526004016106c9939291906113ee565b60405180910390fd5b6106df828686840361081a565b60019250505092915050565b5f806106f5610813565b90506107028185856108be565b600191505092915050565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b6107976109ae565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610807575f6040517f1e4fbdf70000000000000000000000000000000000000000000000000000000081526004016107fe91906112da565b60405180910390fd5b61081081610ab4565b50565b5f33905090565b6108278383836001610b77565b505050565b5f610837848461070d565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146108b857818110156108a9578281836040517ffb8f41b20000000000000000000000000000000000000000000000000000000081526004016108a0939291906113ee565b60405180910390fd5b6108b784848484035f610b77565b5b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361092e575f6040517f96c6fd1e00000000000000000000000000000000000000000000000000000000815260040161092591906112da565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361099e575f6040517fec442f0500000000000000000000000000000000000000000000000000000000815260040161099591906112da565b60405180910390fd5b6109a9838383610d46565b505050565b6109b6610813565b73ffffffffffffffffffffffffffffffffffffffff166109d46105b8565b73ffffffffffffffffffffffffffffffffffffffff1614610a33576109f7610813565b6040517f118cdaa7000000000000000000000000000000000000000000000000000000008152600401610a2a91906112da565b60405180910390fd5b565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610aa5575f6040517f96c6fd1e000000000000000000000000000000000000000000000000000000008152600401610a9c91906112da565b60405180910390fd5b610ab0825f83610d46565b5050565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603610be7575f6040517fe602df05000000000000000000000000000000000000000000000000000000008152600401610bde91906112da565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610c57575f6040517f94280d62000000000000000000000000000000000000000000000000000000008152600401610c4e91906112da565b60405180910390fd5b8160015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508015610d40578273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92584604051610d3791906111d8565b60405180910390a35b50505050565b60085f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16610df4575f81610d9f84610560565b610da991906113bb565b9050600754811115610df257826040517f208da71d000000000000000000000000000000000000000000000000000000008152600401610de991906112da565b60405180910390fd5b505b610dff838383610e04565b505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610e54578060025f828254610e4891906113bb565b92505081905550610f22565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015610edd578381836040517fe450d38c000000000000000000000000000000000000000000000000000000008152600401610ed4939291906113ee565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550505b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610f69578060025f8282540392505081905550610fb3565b805f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161101091906111d8565b60405180910390a3505050565b5f81519050919050565b5f82825260208201905092915050565b5f5b83811015611054578082015181840152602081019050611039565b5f8484015250505050565b5f601f19601f8301169050919050565b5f6110798261101d565b6110838185611027565b9350611093818560208601611037565b61109c8161105f565b840191505092915050565b5f6020820190508181035f8301526110bf818461106f565b905092915050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f6110f4826110cb565b9050919050565b611104816110ea565b811461110e575f80fd5b50565b5f8135905061111f816110fb565b92915050565b5f819050919050565b61113781611125565b8114611141575f80fd5b50565b5f813590506111528161112e565b92915050565b5f806040838503121561116e5761116d6110c7565b5b5f61117b85828601611111565b925050602061118c85828601611144565b9150509250929050565b5f8115159050919050565b6111aa81611196565b82525050565b5f6020820190506111c35f8301846111a1565b92915050565b6111d281611125565b82525050565b5f6020820190506111eb5f8301846111c9565b92915050565b5f805f60608486031215611208576112076110c7565b5b5f61121586828701611111565b935050602061122686828701611111565b925050604061123786828701611144565b9150509250925092565b5f60ff82169050919050565b61125681611241565b82525050565b5f60208201905061126f5f83018461124d565b92915050565b5f6020828403121561128a576112896110c7565b5b5f61129784828501611111565b91505092915050565b5f602082840312156112b5576112b46110c7565b5b5f6112c284828501611144565b91505092915050565b6112d4816110ea565b82525050565b5f6020820190506112ed5f8301846112cb565b92915050565b5f8060408385031215611309576113086110c7565b5b5f61131685828601611111565b925050602061132785828601611111565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061137557607f821691505b60208210810361138857611387611331565b5b50919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f6113c582611125565b91506113d083611125565b92508282019050808211156113e8576113e761138e565b5b92915050565b5f6060820190506114015f8301866112cb565b61140e60208301856111c9565b61141b60408301846111c9565b94935050505056fea26469706673582212200f166490f138bfe9566df039d6b876733a6d0647feba100405601e79c133d44764736f6c63430008150033

Deployed Bytecode

0x608060405234801561000f575f80fd5b5060043610610109575f3560e01c80635b700d91116100a057806395d89b411161006f57806395d89b41146102a3578063a457c2d7146102c1578063a9059cbb146102f1578063dd62ed3e14610321578063f2fde38b1461035157610109565b80635b700d911461022f57806370a082311461024b578063715018a61461027b5780638da5cb5b1461028557610109565b8063313ce567116100dc578063313ce567146101a957806339509351146101c75780633f33e909146101f757806342966c681461021357610109565b806306fdde031461010d578063095ea7b31461012b57806318160ddd1461015b57806323b872dd14610179575b5f80fd5b61011561036d565b60405161012291906110a7565b60405180910390f35b61014560048036038101906101409190611158565b6103fd565b60405161015291906111b0565b60405180910390f35b61016361041f565b60405161017091906111d8565b60405180910390f35b610193600480360381019061018e91906111f1565b610428565b6040516101a091906111b0565b60405180910390f35b6101b1610456565b6040516101be919061125c565b60405180910390f35b6101e160048036038101906101dc9190611158565b61045e565b6040516101ee91906111b0565b60405180910390f35b610211600480360381019061020c9190611275565b610494565b005b61022d600480360381019061022891906112a0565b6104f3565b005b61024960048036038101906102449190611275565b610500565b005b61026560048036038101906102609190611275565b610560565b60405161027291906111d8565b60405180910390f35b6102836105a5565b005b61028d6105b8565b60405161029a91906112da565b60405180910390f35b6102ab6105e0565b6040516102b891906110a7565b60405180910390f35b6102db60048036038101906102d69190611158565b610670565b6040516102e891906111b0565b60405180910390f35b61030b60048036038101906103069190611158565b6106eb565b60405161031891906111b0565b60405180910390f35b61033b600480360381019061033691906112f3565b61070d565b60405161034891906111d8565b60405180910390f35b61036b60048036038101906103669190611275565b61078f565b005b60606003805461037c9061135e565b80601f01602080910402602001604051908101604052809291908181526020018280546103a89061135e565b80156103f35780601f106103ca576101008083540402835291602001916103f3565b820191905f5260205f20905b8154815290600101906020018083116103d657829003601f168201915b5050505050905090565b5f80610407610813565b905061041481858561081a565b600191505092915050565b5f600254905090565b5f80610432610813565b905061043f85828561082c565b61044a8585856108be565b60019150509392505050565b5f6012905090565b5f80610468610813565b905061048981858561047a858961070d565b61048491906113bb565b61081a565b600191505092915050565b61049c6109ae565b5f60085f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff02191690831515021790555050565b6104fd3382610a35565b50565b6105086109ae565b600160085f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff02191690831515021790555050565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b6105ad6109ae565b6105b65f610ab4565b565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600480546105ef9061135e565b80601f016020809104026020016040519081016040528092919081815260200182805461061b9061135e565b80156106665780601f1061063d57610100808354040283529160200191610666565b820191905f5260205f20905b81548152906001019060200180831161064957829003601f168201915b5050505050905090565b5f8061067a610813565b90505f610687828661070d565b9050838110156106d2578481856040517fa60f030c0000000000000000000000000000000000000000000000000000000081526004016106c9939291906113ee565b60405180910390fd5b6106df828686840361081a565b60019250505092915050565b5f806106f5610813565b90506107028185856108be565b600191505092915050565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b6107976109ae565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610807575f6040517f1e4fbdf70000000000000000000000000000000000000000000000000000000081526004016107fe91906112da565b60405180910390fd5b61081081610ab4565b50565b5f33905090565b6108278383836001610b77565b505050565b5f610837848461070d565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146108b857818110156108a9578281836040517ffb8f41b20000000000000000000000000000000000000000000000000000000081526004016108a0939291906113ee565b60405180910390fd5b6108b784848484035f610b77565b5b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361092e575f6040517f96c6fd1e00000000000000000000000000000000000000000000000000000000815260040161092591906112da565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361099e575f6040517fec442f0500000000000000000000000000000000000000000000000000000000815260040161099591906112da565b60405180910390fd5b6109a9838383610d46565b505050565b6109b6610813565b73ffffffffffffffffffffffffffffffffffffffff166109d46105b8565b73ffffffffffffffffffffffffffffffffffffffff1614610a33576109f7610813565b6040517f118cdaa7000000000000000000000000000000000000000000000000000000008152600401610a2a91906112da565b60405180910390fd5b565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610aa5575f6040517f96c6fd1e000000000000000000000000000000000000000000000000000000008152600401610a9c91906112da565b60405180910390fd5b610ab0825f83610d46565b5050565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603610be7575f6040517fe602df05000000000000000000000000000000000000000000000000000000008152600401610bde91906112da565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610c57575f6040517f94280d62000000000000000000000000000000000000000000000000000000008152600401610c4e91906112da565b60405180910390fd5b8160015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508015610d40578273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92584604051610d3791906111d8565b60405180910390a35b50505050565b60085f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16610df4575f81610d9f84610560565b610da991906113bb565b9050600754811115610df257826040517f208da71d000000000000000000000000000000000000000000000000000000008152600401610de991906112da565b60405180910390fd5b505b610dff838383610e04565b505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610e54578060025f828254610e4891906113bb565b92505081905550610f22565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015610edd578381836040517fe450d38c000000000000000000000000000000000000000000000000000000008152600401610ed4939291906113ee565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550505b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610f69578060025f8282540392505081905550610fb3565b805f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161101091906111d8565b60405180910390a3505050565b5f81519050919050565b5f82825260208201905092915050565b5f5b83811015611054578082015181840152602081019050611039565b5f8484015250505050565b5f601f19601f8301169050919050565b5f6110798261101d565b6110838185611027565b9350611093818560208601611037565b61109c8161105f565b840191505092915050565b5f6020820190508181035f8301526110bf818461106f565b905092915050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f6110f4826110cb565b9050919050565b611104816110ea565b811461110e575f80fd5b50565b5f8135905061111f816110fb565b92915050565b5f819050919050565b61113781611125565b8114611141575f80fd5b50565b5f813590506111528161112e565b92915050565b5f806040838503121561116e5761116d6110c7565b5b5f61117b85828601611111565b925050602061118c85828601611144565b9150509250929050565b5f8115159050919050565b6111aa81611196565b82525050565b5f6020820190506111c35f8301846111a1565b92915050565b6111d281611125565b82525050565b5f6020820190506111eb5f8301846111c9565b92915050565b5f805f60608486031215611208576112076110c7565b5b5f61121586828701611111565b935050602061122686828701611111565b925050604061123786828701611144565b9150509250925092565b5f60ff82169050919050565b61125681611241565b82525050565b5f60208201905061126f5f83018461124d565b92915050565b5f6020828403121561128a576112896110c7565b5b5f61129784828501611111565b91505092915050565b5f602082840312156112b5576112b46110c7565b5b5f6112c284828501611144565b91505092915050565b6112d4816110ea565b82525050565b5f6020820190506112ed5f8301846112cb565b92915050565b5f8060408385031215611309576113086110c7565b5b5f61131685828601611111565b925050602061132785828601611111565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061137557607f821691505b60208210810361138857611387611331565b5b50919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f6113c582611125565b91506113d083611125565b92508282019050808211156113e8576113e761138e565b5b92915050565b5f6060820190506114015f8301866112cb565b61140e60208301856111c9565b61141b60408301846111c9565b94935050505056fea26469706673582212200f166490f138bfe9566df039d6b876733a6d0647feba100405601e79c133d44764736f6c63430008150033

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.