Abstract Testnet

Token

FakeUSDC (USDC)
ERC-20

Overview

Max Total Supply

200,000,000 USDC

Holders

4

Market

Price

$0.00 @ 0.000000 ETH

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 6 Decimals)

Balance
50,000,000 USDC
0xc3799a68f691ed35ed8c9f7dd71f4066b6a62b2c
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
This contract may be a proxy contract. Click on More Options and select Is this a proxy? to confirm and enable the "Read as Proxy" & "Write as Proxy" tabs.

Contract Source Code Verified (Exact Match)

Contract Name:
FakeUSDC

Compiler Version
v0.8.24+commit.e11b9ed9

ZkSolc Version
v1.5.7

Optimization Enabled:
Yes with Mode 3

Other Settings:
paris EvmVersion

Contract Source Code (Solidity Standard Json-Input format)

File 1 of 5 : fakeUSDC.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.24;

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

contract FakeUSDC is ERC20 {
    constructor() ERC20("FakeUSDC", "USDC") { }

    function giveMoney(address to, uint256 amount) external {
        _mint(to, amount);
        emit Test(msg.sender);
    }
    
    function decimals() public view virtual override returns (uint8) {
        return 6;
    }
    event Test(address from);
}

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

pragma solidity ^0.8.0;

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

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

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

        return true;
    }

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

        _beforeTokenTransfer(from, to, amount);

        uint256 fromBalance = _balances[from];
        require(fromBalance >= amount, "ERC20: transfer amount exceeds balance");
        unchecked {
            _balances[from] = fromBalance - amount;
        }
        _balances[to] += amount;

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, amount);
    }

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

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

        _totalSupply += amount;
        _balances[account] += amount;
        emit Transfer(address(0), account, amount);

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

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

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

        uint256 accountBalance = _balances[account];
        require(accountBalance >= amount, "ERC20: burn amount exceeds balance");
        unchecked {
            _balances[account] = accountBalance - amount;
        }
        _totalSupply -= amount;

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

pragma solidity ^0.8.0;

import "../IERC20.sol";

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

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

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

Settings
{
  "evmVersion": "paris",
  "optimizer": {
    "enabled": true,
    "mode": "3"
  },
  "outputSelection": {
    "*": {
      "*": [
        "abi",
        "metadata"
      ],
      "": [
        "ast"
      ]
    }
  },
  "detectMissingLibraries": false,
  "forceEVMLA": false,
  "enableEraVMExtensions": false,
  "libraries": {}
}

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"from","type":"address"}],"name":"Test","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":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"giveMoney","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":"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":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"}]

9c4d535b000000000000000000000000000000000000000000000000000000000000000001000129b63c5ffd04b90fea95397553315e4ce8ace4bf76e77f4485c7c6e8bd00000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x000300000000000200000001002001900000001b0000c13d000000000301034f0000006001100270000000ef011001970000008002000039000000400020043f000000040010008c0000025c0000413d000000000203043b000000e002200270000000f60020009c000000380000213d000000fe0020009c000000a60000213d000001020020009c000001400000613d000001030020009c000001bf0000613d000001040020009c0000025c0000c13d0000000001000416000000000001004b0000025c0000c13d00000002010000390000020d0000013d0000000001000416000000000001004b0000025c0000c13d0000000801000039000000800010043f000000f001000041000000a00010043f0000010001000039000000400010043f0000000404000039000000c00040043f000000f101000041000000e00010043f0000000303000039000000000103041a000000010210019000000001051002700000007f0550618f0000001f0050008c00000000010000390000000101002039000000000012004b0000007f0000613d0000011301000041000000000010043f0000002201000039000000040010043f0000011401000041000003b900010430000000f70020009c000000e60000213d000000fb0020009c000001600000613d000000fc0020009c000001d40000613d000000fd0020009c0000025c0000c13d000000440010008c0000025c0000413d0000000001000416000000000001004b0000025c0000c13d0000000401300370000000000101043b000300000001001d000001050010009c0000025c0000213d0000002401300370000000000101043b000200000001001d0000000001000411000000000010043f0000000101000039000000200010043f0000000001000414000000ef0010009c000000ef01008041000000c00110021000000106011001c7000080100200003903b703b20000040f00000001002001900000025c0000613d000000000101043b0000000302000029000000000020043f000000200010043f0000000001000414000000ef0010009c000000ef01008041000000c00110021000000106011001c7000080100200003903b703b20000040f00000001002001900000025c0000613d000000000101043b000000000101041a000000020310006c000000db0000813d000000400100043d00000064021000390000010e03000041000000000032043500000044021000390000010f03000041000000000032043500000024021000390000002503000039000000000032043500000109020000410000000000210435000000040210003900000020030000390000000000320435000000ef0010009c000000ef01008041000000400110021000000110011001c7000003b900010430000000200050008c000000990000413d000300000005001d000000000030043f0000000001000414000000ef0010009c000000ef01008041000000c001100210000000f2011001c7000080100200003903b703b20000040f00000001002001900000025c0000613d000000000101043b00000003020000290000001f0220003900000005022002700000000002210019000000000021004b00000004040000390000000303000039000000990000813d000000000001041b0000000101100039000000000021004b000000950000413d000000a00100043d000000f30110019700000010011001bf000000000013041b000000c00500043d000000f40050009c000001030000413d0000011301000041000000000010043f0000004101000039000000040010043f0000011401000041000003b900010430000000ff0020009c0000016e0000613d000001000020009c000001ec0000613d000001010020009c0000025c0000c13d000000440010008c0000025c0000413d0000000001000416000000000001004b0000025c0000c13d0000000401300370000000000101043b000300000001001d000001050010009c0000025c0000213d0000000001000411000000000010043f0000000101000039000000200010043f0000000001000414000000ef0010009c000000ef01008041000000c00110021000000106011001c70000801002000039000200000003035303b703b20000040f000000020300035f00000001002001900000025c0000613d000000000101043b0000000302000029000000000020043f000000200010043f0000002401300370000000000101043b000200000001001d0000000001000414000000ef0010009c000000ef01008041000000c00110021000000106011001c7000080100200003903b703b20000040f00000001002001900000025c0000613d000000000101043b000000000101041a0000000202000029000000000021001a000002ab0000413d00000000032100190000000001000411000000030200002903b702c60000040f000000400100043d00000001020000390000000000210435000000ef0010009c000000ef0100804100000040011002100000010d011001c7000003b80001042e000000f80020009c000001b10000613d000000f90020009c000001f30000613d000000fa0020009c0000025c0000c13d000000440010008c0000025c0000413d0000000001000416000000000001004b0000025c0000c13d0000000401300370000000000401043b000001050040009c0000025c0000213d0000002401300370000000000301043b000000000004004b0000021b0000c13d0000010901000041000000800010043f0000002001000039000000840010043f0000001f01000039000000a40010043f0000010a01000041000000c40010043f0000010b01000041000003b900010430000000000104041a000000010010019000000001031002700000007f0330618f0000001f0030008c00000000020000390000000102002039000000000121013f0000000100100190000000320000c13d000000200030008c0000012d0000413d000200000003001d000300000005001d000000000040043f0000000001000414000000ef0010009c000000ef01008041000000c001100210000000f2011001c7000080100200003903b703b20000040f00000001002001900000025c0000613d00000003050000290000001f025000390000000502200270000000200050008c0000000002004019000000000301043b00000002010000290000001f01100039000000050110027000000000011300190000000002230019000000000012004b00000004040000390000012d0000813d000000000002041b0000000102200039000000000012004b000001290000413d0000001f0050008c000002110000a13d000300000005001d000000000040043f0000000001000414000000ef0010009c000000ef01008041000000c001100210000000f2011001c7000080100200003903b703b20000040f00000001002001900000025c0000613d00000003060000290000011802600198000000000101043b000002630000c13d000000e003000039000002710000013d0000000001000416000000000001004b0000025c0000c13d0000000303000039000000000203041a000000010520019000000001012002700000007f0410018f00000000010460190000001f0010008c00000000060000390000000106002039000000000662013f0000000100600190000000320000c13d000000800010043f000000000005004b000001e60000613d000000000030043f000000020020008c000002610000413d000001170200004100000000040000190000000003040019000000000402041a000000a005300039000000000045043500000001022000390000002004300039000000000014004b000001570000413d0000028e0000013d000000240010008c0000025c0000413d0000000001000416000000000001004b0000025c0000c13d0000000401300370000000000101043b000001050010009c0000025c0000213d000000000010043f000000200000043f000000400200003900000000010000190000020c0000013d000000640010008c0000025c0000413d0000000001000416000000000001004b0000025c0000c13d0000000401300370000000000401043b000001050040009c0000025c0000213d0000002401300370000000000101043b000300000001001d000001050010009c0000025c0000213d0000004401300370000000000101043b000100000001001d000000000040043f0000000101000039000000200010043f0000000001000414000000ef0010009c000000ef01008041000000c00110021000000106011001c70000801002000039000200000004001d03b703b20000040f00000001002001900000025c0000613d000000000101043b0000000002000411000000000020043f000000200010043f0000000001000414000000ef0010009c000000ef01008041000000c00110021000000106011001c7000080100200003903b703b20000040f000000020400002900000001002001900000025c0000613d000000000101043b000000000101041a000001190010009c000002a60000613d000000010310006c000002a20000813d000000400100043d00000044021000390000011503000041000000000032043500000024021000390000001d03000039000000000032043500000109020000410000000000210435000000040210003900000020030000390000000000320435000000ef0010009c000000ef01008041000000400110021000000116011001c7000003b900010430000000440010008c0000025c0000413d0000000001000416000000000001004b0000025c0000c13d0000000401300370000000000201043b000001050020009c0000025c0000213d0000002401300370000000000301043b000000000100041103b7031d0000040f000001cc0000013d000000440010008c0000025c0000413d0000000001000416000000000001004b0000025c0000c13d0000000401300370000000000201043b000001050020009c0000025c0000213d0000002401300370000000000301043b000000000100041103b702c60000040f0000000101000039000000400200043d0000000000120435000000ef0020009c000000ef0200804100000040012002100000010d011001c7000003b80001042e0000000001000416000000000001004b0000025c0000c13d0000000403000039000000000203041a000000010520019000000001012002700000007f0410018f00000000010460190000001f0010008c00000000060000390000000106002039000000000662013f0000000100600190000000320000c13d000000800010043f000000000005004b0000025e0000c13d0000011a01200197000000a00010043f000000000004004b000000c001000039000000a0010060390000028f0000013d0000000001000416000000000001004b0000025c0000c13d0000000601000039000000800010043f0000010c01000041000003b80001042e000000440010008c0000025c0000413d0000000001000416000000000001004b0000025c0000c13d0000000401300370000000000101043b000001050010009c0000025c0000213d0000002402300370000000000302043b000001050030009c0000025c0000213d000000000010043f0000000101000039000000200010043f00000040020000390000000001000019000300000003001d03b703980000040f0000000302000029000000000020043f000000200010043f0000000001000019000000400200003903b703980000040f000000000101041a000000800010043f0000010c01000041000003b80001042e000000000005004b0000000001000019000002150000613d000000e00100043d0000000302500210000001190220027f0000011902200167000000000221016f00000001015002100000027d0000013d0000000201000039000000000201041a000000000032001a000002ab0000413d000200000003001d0000000002320019000000000021041b000000000040043f000000200000043f0000000001000414000000ef0010009c000000ef01008041000000c00110021000000106011001c70000801002000039000300000004001d03b703b20000040f000000030600002900000001002001900000025c0000613d000000000101043b000000000201041a0000000203000029000000000032001a000002ab0000413d0000000002320019000000000021041b000000400100043d0000000000310435000000ef0010009c000000ef0100804100000040011002100000000002000414000000ef0020009c000000ef02008041000000c002200210000000000112019f000000f2011001c70000800d0200003900000003030000390000010704000041000000000500001903b703ad0000040f00000001002001900000025c0000613d000000400100043d00000000020004110000000000210435000000ef0010009c000000ef0100804100000040011002100000000002000414000000ef0020009c000000ef02008041000000c002200210000000000112019f000000f2011001c70000800d020000390000000103000039000001080400004103b703ad0000040f00000001002001900000025c0000613d0000000001000019000003b80001042e0000000001000019000003b900010430000000000030043f000000020020008c000002840000813d0000002001000039000002930000013d000000010320008a00000005033002700000000003310019000000200400003900000001033000390000000005040019000000c0044000390000000004040433000000000041041b00000020045000390000000101100039000000000031004b000002680000c13d000000e003500039000000000062004b0000027a0000813d0000000302600210000000f80220018f000001190220027f00000119022001670000000003030433000000000223016f000000000021041b000000010100003900000001026002100000000404000039000000000112019f000000000014041b000000200100003900000100001004430000012000000443000000f501000041000003b80001042e000001110200004100000000040000190000000003040019000000000402041a000000a005300039000000000045043500000001022000390000002004300039000000000014004b000002860000413d000000c001300039000000610110008a0000011801100197000001120010009c000000a00000213d0000008001100039000300000001001d000000400010043f000000800200003903b702b10000040f00000003020000290000000001210049000000ef0010009c000000ef010080410000006001100210000000ef0020009c000000ef020080410000004002200210000000000121019f000003b80001042e0000000001040019000000000200041103b702c60000040f000000020400002900000000010400190000000302000029000000010300002903b7031d0000040f000000de0000013d0000011301000041000000000010043f0000001101000039000000040010043f0000011401000041000003b90001043000000020030000390000000004310436000000003202043400000000002404350000004001100039000000000002004b000002c00000613d000000000400001900000000054100190000000006430019000000000606043300000000006504350000002004400039000000000024004b000002b90000413d000000000321001900000000000304350000001f0220003900000118022001970000000001210019000000000001042d00030000000000020000010501100198000002ff0000613d000200000003001d000301050020019c000003090000613d000100000001001d000000000010043f0000000101000039000000200010043f0000000001000414000000ef0010009c000000ef01008041000000c00110021000000106011001c7000080100200003903b703b20000040f00000001002001900000000303000029000002fd0000613d000000000101043b000000000030043f000000200010043f0000000001000414000000ef0010009c000000ef01008041000000c00110021000000106011001c7000080100200003903b703b20000040f00000003060000290000000100200190000002fd0000613d000000000101043b0000000202000029000000000021041b000000400100043d0000000000210435000000ef0010009c000000ef0100804100000040011002100000000002000414000000ef0020009c000000ef02008041000000c002200210000000000112019f000000f2011001c70000800d0200003900000003030000390000011b04000041000000010500002903b703ad0000040f0000000100200190000002fd0000613d000000000001042d0000000001000019000003b900010430000000400100043d00000064021000390000011e03000041000000000032043500000044021000390000011f03000041000000000032043500000024021000390000002403000039000003120000013d000000400100043d00000064021000390000011c03000041000000000032043500000044021000390000011d03000041000000000032043500000024021000390000002203000039000000000032043500000109020000410000000000210435000000040210003900000020030000390000000000320435000000ef0010009c000000ef01008041000000400110021000000110011001c7000003b900010430000400000000000200000105011001980000036a0000613d000400000003001d000201050020019c000003740000613d000300000001001d000000000010043f000000200000043f0000000001000414000000ef0010009c000000ef01008041000000c00110021000000106011001c7000080100200003903b703b20000040f0000000100200190000003680000613d000000000101043b000000000101041a00010004001000740000037e0000413d0000000301000029000000000010043f000000200000043f0000000001000414000000ef0010009c000000ef01008041000000c00110021000000106011001c7000080100200003903b703b20000040f0000000100200190000003680000613d000000000101043b0000000102000029000000000021041b0000000201000029000000000010043f0000000001000414000000ef0010009c000000ef01008041000000c00110021000000106011001c7000080100200003903b703b20000040f0000000100200190000003680000613d000000000101043b000000000201041a0000000403000029000000000032001a000003920000413d0000000002320019000000000021041b000000400100043d0000000000310435000000ef0010009c000000ef0100804100000040011002100000000002000414000000ef0020009c000000ef02008041000000c002200210000000000112019f000000f2011001c70000800d02000039000000030300003900000107040000410000000305000029000000020600002903b703ad0000040f0000000100200190000003680000613d000000000001042d0000000001000019000003b900010430000000400100043d00000064021000390000012403000041000000000032043500000044021000390000012503000041000000000032043500000024021000390000002503000039000003870000013d000000400100043d00000064021000390000012203000041000000000032043500000044021000390000012303000041000000000032043500000024021000390000002303000039000003870000013d000000400100043d00000064021000390000012003000041000000000032043500000044021000390000012103000041000000000032043500000024021000390000002603000039000000000032043500000109020000410000000000210435000000040210003900000020030000390000000000320435000000ef0010009c000000ef01008041000000400110021000000110011001c7000003b9000104300000011301000041000000000010043f0000001101000039000000040010043f0000011401000041000003b900010430000000ef0010009c000000ef010080410000004001100210000000ef0020009c000000ef020080410000006002200210000000000112019f0000000002000414000000ef0020009c000000ef02008041000000c002200210000000000112019f00000126011001c7000080100200003903b703b20000040f0000000100200190000003ab0000613d000000000101043b000000000001042d0000000001000019000003b900010430000003b0002104210000000102000039000000000001042d0000000002000019000000000001042d000003b5002104230000000102000039000000000001042d0000000002000019000000000001042d000003b700000432000003b80001042e000003b9000104300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffff46616b655553444300000000000000000000000000000000000000000000000055534443000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000020000000000000000000000000ffffffffffffffff000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000002000000000000000000000000000000400000010000000000000000000000000000000000000000000000000000000000000000000000000070a0823000000000000000000000000000000000000000000000000000000000a9059cba00000000000000000000000000000000000000000000000000000000a9059cbb00000000000000000000000000000000000000000000000000000000dd62ed3e00000000000000000000000000000000000000000000000000000000ec69b9d30000000000000000000000000000000000000000000000000000000070a082310000000000000000000000000000000000000000000000000000000095d89b4100000000000000000000000000000000000000000000000000000000a457c2d70000000000000000000000000000000000000000000000000000000023b872dc0000000000000000000000000000000000000000000000000000000023b872dd00000000000000000000000000000000000000000000000000000000313ce56700000000000000000000000000000000000000000000000000000000395093510000000000000000000000000000000000000000000000000000000006fdde0300000000000000000000000000000000000000000000000000000000095ea7b30000000000000000000000000000000000000000000000000000000018160ddd000000000000000000000000ffffffffffffffffffffffffffffffffffffffff0200000000000000000000000000000000000040000000000000000000000000ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efaa9449f2bca09a7b28319d46fd3f3b58a1bb7d94039fc4b69b7bfe5d8535d52708c379a00000000000000000000000000000000000000000000000000000000045524332303a206d696e7420746f20746865207a65726f206164647265737300000000000000000000000000000000000000006400000080000000000000000000000000000000000000000000000000000000200000008000000000000000000000000000000000000000000000000000000020000000000000000000000000207a65726f00000000000000000000000000000000000000000000000000000045524332303a2064656372656173656420616c6c6f77616e63652062656c6f7700000000000000000000000000000000000000840000000000000000000000008a35acfbc15ff81a39ae7d344fd709f28e8600b4aa8c65c6b64bfe7fe36bd19b000000000000000000000000000000000000000000000000ffffffffffffff7f4e487b7100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002400000000000000000000000045524332303a20696e73756666696369656e7420616c6c6f77616e63650000000000000000000000000000000000000000000064000000000000000000000000c2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85bffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff008c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925737300000000000000000000000000000000000000000000000000000000000045524332303a20617070726f766520746f20746865207a65726f206164647265726573730000000000000000000000000000000000000000000000000000000045524332303a20617070726f76652066726f6d20746865207a65726f20616464616c616e6365000000000000000000000000000000000000000000000000000045524332303a207472616e7366657220616d6f756e7420657863656564732062657373000000000000000000000000000000000000000000000000000000000045524332303a207472616e7366657220746f20746865207a65726f2061646472647265737300000000000000000000000000000000000000000000000000000045524332303a207472616e736665722066726f6d20746865207a65726f20616402000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000bf7b558752956e3e5240e5642a7d77b45fe545de448f9e3d403bda8af27ba081

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