ETH Price: $3,263.54 (-0.56%)
Gas: 3 Gwei

Token

ScoobyDoo (SCOOBY)
 

Overview

Max Total Supply

1,000,000,000 SCOOBY

Holders

208

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
124,075.18565051456 SCOOBY

Value
$0.00
0xb4de26257ebde90d01478e0a0fbd1d1dc0d46c67
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:
ScoobyDoo

Compiler Version
v0.8.15+commit.e14f2714

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license
/**
 *Submitted for verification at Etherscan.io on 2023-08-18
*/

// SPDX-License-Identifier: MIT

pragma solidity 0.8.15;

abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

    function _msgData() internal view virtual returns (bytes calldata) {
        return msg.data;
    }
}
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);
}

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



abstract contract Ownable is Context {
    address private _owner;

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

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        _transferOwnership(_msgSender());
    }

    /**
     * @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 {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
    }

    /**
     * @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 {
        require(
            newOwner != address(0),
            "Ownable: new owner is the zero address"
        );
        _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);
    }
}

contract ScoobyDoo is Context, IERC20Metadata, Ownable {
    mapping(address => uint256) private _balances;

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;
    uint8 private constant _decimals = 18;
    uint256 public constant hardCap = 1000_000_000 * (10 ** _decimals); 

    constructor() {
        _name = "ScoobyDoo";
        _symbol = "SCOOBY";
        _mint(msg.sender, hardCap);
    }

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

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

    /**
     * @dev Returns the number of decimals used for token display.
     * @return The number of decimals.
     */
    function decimals() public view virtual override returns (uint8) {
        return _decimals;
    }

    /**
     * @dev Returns the total supply of the token.
     * @return The total supply.
     */
    function totalSupply() public view virtual override returns (uint256) {
        return _totalSupply;
    }

    /**
     * @dev Returns the balance of the specified account.
     * @param account The address to check the balance for.
     * @return The balance of the account.
     */
    function balanceOf(
        address account
    ) public view virtual override returns (uint256) {
        return _balances[account];
    }

    /**
     * @dev Transfers tokens from the caller to a specified recipient.
     * @param recipient The address to transfer tokens to.
     * @param amount The amount of tokens to transfer.
     * @return A boolean value indicating whether the transfer was successful.
     */
    function transfer(
        address recipient,
        uint256 amount
    ) public virtual override returns (bool) {
        _transfer(_msgSender(), recipient, amount);
        return true;
    }

    /**
     * @dev Returns the amount of tokens that the spender is allowed to spend on behalf of the owner.
     * @param from The address that approves the spending.
     * @param to The address that is allowed to spend.
     * @return The remaining allowance for the spender.
     */
    function allowance(
        address from,
        address to
    ) public view virtual override returns (uint256) {
        return _allowances[from][to];
    }

    /**
     * @dev Approves the specified address to spend the specified amount of tokens on behalf of the caller.
     * @param to The address to approve the spending for.
     * @param amount The amount of tokens to approve.
     * @return A boolean value indicating whether the approval was successful.
     */
    function approve(
        address to,
        uint256 amount
    ) public virtual override returns (bool) {
        _approve(_msgSender(), to, amount);
        return true;
    }

    /**
     * @dev Transfers tokens from one address to another.
     * @param sender The address to transfer tokens from.
     * @param recipient The address to transfer tokens to.
     * @param amount The amount of tokens to transfer.
     * @return A boolean value indicating whether the transfer was successful.
     */
    function transferFrom(
        address sender,
        address recipient,
        uint256 amount
    ) public virtual override returns (bool) {
        _transfer(sender, recipient, amount);

        uint256 currentAllowance = _allowances[sender][_msgSender()];
        require(
            currentAllowance >= amount,
            "ERC20: transfer amount exceeds allowance"
        );
        unchecked {
            _approve(sender, _msgSender(), currentAllowance - amount);
        }

        return true;
    }

    /**
     * @dev Increases the allowance of the specified address to spend tokens on behalf of the caller.
     * @param to The address to increase the allowance for.
     * @param addedValue The amount of tokens to increase the allowance by.
     * @return A boolean value indicating whether the increase was successful.
     */
    function increaseAllowance(
        address to,
        uint256 addedValue
    ) public virtual returns (bool) {
        _approve(_msgSender(), to, _allowances[_msgSender()][to] + addedValue);
        return true;
    }

    /**
     * @dev Decreases the allowance granted by the owner of the tokens to `to` account.
     * @param to The account allowed to spend the tokens.
     * @param subtractedValue The amount of tokens to decrease the allowance by.
     * @return A boolean value indicating whether the operation succeeded.
     */
    function decreaseAllowance(
        address to,
        uint256 subtractedValue
    ) public virtual returns (bool) {
        uint256 currentAllowance = _allowances[_msgSender()][to];
        require(
            currentAllowance >= subtractedValue,
            "ERC20: decreased allowance below zero"
        );
        unchecked {
            _approve(_msgSender(), to, currentAllowance - subtractedValue);
        }

        return true;
    }

    /**
     * @dev Transfers `amount` tokens from `sender` to `recipient`.
     * @param sender The account to transfer tokens from.
     * @param recipient The account to transfer tokens to.
     * @param amount The amount of tokens to transfer.
     */
    function _transfer(
        address sender,
        address recipient,
        uint256 amount
    ) internal virtual {
        require(amount > 0, "ERC20: transfer amount zero");
        require(sender != address(0), "ERC20: transfer from the zero address");
        require(recipient != address(0), "ERC20: transfer to the zero address");

        uint256 senderBalance = _balances[sender];
        require(
            senderBalance >= amount,
            "ERC20: transfer amount exceeds balance"
        );
        unchecked {
            _balances[sender] = senderBalance - amount;
        }
        _balances[recipient] += amount;

        emit Transfer(sender, recipient, amount);
    }

    /**
     * @dev Creates `amount` tokens and assigns them to `account`.
     * @param account The account to assign the newly created tokens to.
     * @param amount The amount of tokens to create.
     */
    function _mint(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: mint to the zero address");

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

    /**
     * @dev Destroys `amount` tokens from `account`, reducing the total supply.
     * @param account The account to burn tokens from.
     * @param amount The amount of tokens to burn.
     */
    function _burn(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: burn from the zero address");

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

    /**
     * @dev Destroys `amount` tokens from the caller's account, reducing the total supply.
     * @param amount The amount of tokens to burn.
     */
    function burn(uint256 amount) external {
        _burn(_msgSender(), amount);
    }

    /**
     * @dev Sets `amount` as the allowance of `to` over the caller's tokens.
     * @param from The account granting the allowance.
     * @param to The account allowed to spend the tokens.
     * @param amount The amount of tokens to allow.
     */
    function _approve(
        address from,
        address to,
        uint256 amount
    ) internal virtual {
        require(from != address(0), "ERC20: approve from the zero address");
        require(to != address(0), "ERC20: approve to the zero address");

        _allowances[from][to] = amount;
        emit Approval(from, to, amount);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":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":"from","type":"address"},{"internalType":"address","name":"to","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","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":[{"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":"to","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"hardCap","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","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":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040523480156200001157600080fd5b506200001d33620000a9565b60408051808201909152600981526853636f6f6279446f6f60b81b60208201526004906200004c908262000286565b5060408051808201909152600681526553434f4f425960d01b602082015260059062000079908262000286565b50620000a3336200008d6012600a62000467565b6200009d90633b9aca006200047f565b620000f9565b620004bc565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b038216620001545760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640160405180910390fd5b8060036000828254620001689190620004a1565b90915550506001600160a01b0382166000908152600160205260408120805483929062000197908490620004a1565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200020c57607f821691505b6020821081036200022d57634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200028157600081815260208120601f850160051c810160208610156200025c5750805b601f850160051c820191505b818110156200027d5782815560010162000268565b5050505b505050565b81516001600160401b03811115620002a257620002a2620001e1565b620002ba81620002b38454620001f7565b8462000233565b602080601f831160018114620002f25760008415620002d95750858301515b600019600386901b1c1916600185901b1785556200027d565b600085815260208120601f198616915b82811015620003235788860151825594840194600190910190840162000302565b5085821015620003425787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b600052601160045260246000fd5b600181815b80851115620003a95781600019048211156200038d576200038d62000352565b808516156200039b57918102915b93841c93908002906200036d565b509250929050565b600082620003c25750600162000461565b81620003d15750600062000461565b8160018114620003ea5760028114620003f55762000415565b600191505062000461565b60ff84111562000409576200040962000352565b50506001821b62000461565b5060208310610133831016604e8410600b84101617156200043a575081810a62000461565b62000446838362000368565b80600019048211156200045d576200045d62000352565b0290505b92915050565b60006200047860ff841683620003b1565b9392505050565b60008160001904831182151516156200049c576200049c62000352565b500290565b60008219821115620004b757620004b762000352565b500190565b610dad80620004cc6000396000f3fe608060405234801561001057600080fd5b50600436106101005760003560e01c8063715018a611610097578063a9059cbb11610066578063a9059cbb14610209578063dd62ed3e1461021c578063f2fde38b14610255578063fb86a4041461026857600080fd5b8063715018a6146101cb5780638da5cb5b146101d357806395d89b41146101ee578063a457c2d7146101f657600080fd5b8063313ce567116100d3578063313ce5671461016b578063395093511461017a57806342966c681461018d57806370a08231146101a257600080fd5b806306fdde0314610105578063095ea7b31461012357806318160ddd1461014657806323b872dd14610158575b600080fd5b61010d610270565b60405161011a9190610aa1565b60405180910390f35b610136610131366004610b12565b610302565b604051901515815260200161011a565b6003545b60405190815260200161011a565b610136610166366004610b3c565b610319565b6040516012815260200161011a565b610136610188366004610b12565b6103c8565b6101a061019b366004610b78565b610404565b005b61014a6101b0366004610b91565b6001600160a01b031660009081526001602052604090205490565b6101a0610411565b6000546040516001600160a01b03909116815260200161011a565b61010d610425565b610136610204366004610b12565b610434565b610136610217366004610b12565b6104cd565b61014a61022a366004610bb3565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b6101a0610263366004610b91565b6104da565b61014a610550565b60606004805461027f90610be6565b80601f01602080910402602001604051908101604052809291908181526020018280546102ab90610be6565b80156102f85780601f106102cd576101008083540402835291602001916102f8565b820191906000526020600020905b8154815290600101906020018083116102db57829003601f168201915b5050505050905090565b600061030f33848461056d565b5060015b92915050565b6000610326848484610692565b6001600160a01b0384166000908152600260209081526040808320338452909152902054828110156103b05760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084015b60405180910390fd5b6103bd853385840361056d565b506001949350505050565b3360008181526002602090815260408083206001600160a01b0387168452909152812054909161030f9185906103ff908690610c36565b61056d565b61040e33826108b1565b50565b6104196109f7565b6104236000610a51565b565b60606005805461027f90610be6565b3360009081526002602090815260408083206001600160a01b0386168452909152812054828110156104b65760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016103a7565b6104c3338585840361056d565b5060019392505050565b600061030f338484610692565b6104e26109f7565b6001600160a01b0381166105475760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016103a7565b61040e81610a51565b61055c6012600a610d32565b61056a90633b9aca00610d41565b81565b6001600160a01b0383166105cf5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016103a7565b6001600160a01b0382166106305760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016103a7565b6001600160a01b0383811660008181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b600081116106e25760405162461bcd60e51b815260206004820152601b60248201527f45524332303a207472616e7366657220616d6f756e74207a65726f000000000060448201526064016103a7565b6001600160a01b0383166107465760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016103a7565b6001600160a01b0382166107a85760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016103a7565b6001600160a01b038316600090815260016020526040902054818110156108205760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016103a7565b6001600160a01b03808516600090815260016020526040808220858503905591851681529081208054849290610857908490610c36565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516108a391815260200190565b60405180910390a350505050565b6001600160a01b0382166109115760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b60648201526084016103a7565b6001600160a01b038216600090815260016020526040902054818110156109855760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b60648201526084016103a7565b6001600160a01b03831660009081526001602052604081208383039055600380548492906109b4908490610d60565b90915550506040518281526000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90602001610685565b6000546001600160a01b031633146104235760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016103a7565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b600060208083528351808285015260005b81811015610ace57858101830151858201604001528201610ab2565b81811115610ae0576000604083870101525b50601f01601f1916929092016040019392505050565b80356001600160a01b0381168114610b0d57600080fd5b919050565b60008060408385031215610b2557600080fd5b610b2e83610af6565b946020939093013593505050565b600080600060608486031215610b5157600080fd5b610b5a84610af6565b9250610b6860208501610af6565b9150604084013590509250925092565b600060208284031215610b8a57600080fd5b5035919050565b600060208284031215610ba357600080fd5b610bac82610af6565b9392505050565b60008060408385031215610bc657600080fd5b610bcf83610af6565b9150610bdd60208401610af6565b90509250929050565b600181811c90821680610bfa57607f821691505b602082108103610c1a57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b60008219821115610c4957610c49610c20565b500190565b600181815b80851115610c89578160001904821115610c6f57610c6f610c20565b80851615610c7c57918102915b93841c9390800290610c53565b509250929050565b600082610ca057506001610313565b81610cad57506000610313565b8160018114610cc35760028114610ccd57610ce9565b6001915050610313565b60ff841115610cde57610cde610c20565b50506001821b610313565b5060208310610133831016604e8410600b8410161715610d0c575081810a610313565b610d168383610c4e565b8060001904821115610d2a57610d2a610c20565b029392505050565b6000610bac60ff841683610c91565b6000816000190483118215151615610d5b57610d5b610c20565b500290565b600082821015610d7257610d72610c20565b50039056fea26469706673582212204e1c4ae1ec556a1baa928feadb1b9eca47e64d325a353dc703cce7915afa19a664736f6c634300080f0033

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101005760003560e01c8063715018a611610097578063a9059cbb11610066578063a9059cbb14610209578063dd62ed3e1461021c578063f2fde38b14610255578063fb86a4041461026857600080fd5b8063715018a6146101cb5780638da5cb5b146101d357806395d89b41146101ee578063a457c2d7146101f657600080fd5b8063313ce567116100d3578063313ce5671461016b578063395093511461017a57806342966c681461018d57806370a08231146101a257600080fd5b806306fdde0314610105578063095ea7b31461012357806318160ddd1461014657806323b872dd14610158575b600080fd5b61010d610270565b60405161011a9190610aa1565b60405180910390f35b610136610131366004610b12565b610302565b604051901515815260200161011a565b6003545b60405190815260200161011a565b610136610166366004610b3c565b610319565b6040516012815260200161011a565b610136610188366004610b12565b6103c8565b6101a061019b366004610b78565b610404565b005b61014a6101b0366004610b91565b6001600160a01b031660009081526001602052604090205490565b6101a0610411565b6000546040516001600160a01b03909116815260200161011a565b61010d610425565b610136610204366004610b12565b610434565b610136610217366004610b12565b6104cd565b61014a61022a366004610bb3565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b6101a0610263366004610b91565b6104da565b61014a610550565b60606004805461027f90610be6565b80601f01602080910402602001604051908101604052809291908181526020018280546102ab90610be6565b80156102f85780601f106102cd576101008083540402835291602001916102f8565b820191906000526020600020905b8154815290600101906020018083116102db57829003601f168201915b5050505050905090565b600061030f33848461056d565b5060015b92915050565b6000610326848484610692565b6001600160a01b0384166000908152600260209081526040808320338452909152902054828110156103b05760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084015b60405180910390fd5b6103bd853385840361056d565b506001949350505050565b3360008181526002602090815260408083206001600160a01b0387168452909152812054909161030f9185906103ff908690610c36565b61056d565b61040e33826108b1565b50565b6104196109f7565b6104236000610a51565b565b60606005805461027f90610be6565b3360009081526002602090815260408083206001600160a01b0386168452909152812054828110156104b65760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016103a7565b6104c3338585840361056d565b5060019392505050565b600061030f338484610692565b6104e26109f7565b6001600160a01b0381166105475760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016103a7565b61040e81610a51565b61055c6012600a610d32565b61056a90633b9aca00610d41565b81565b6001600160a01b0383166105cf5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016103a7565b6001600160a01b0382166106305760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016103a7565b6001600160a01b0383811660008181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b600081116106e25760405162461bcd60e51b815260206004820152601b60248201527f45524332303a207472616e7366657220616d6f756e74207a65726f000000000060448201526064016103a7565b6001600160a01b0383166107465760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016103a7565b6001600160a01b0382166107a85760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016103a7565b6001600160a01b038316600090815260016020526040902054818110156108205760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016103a7565b6001600160a01b03808516600090815260016020526040808220858503905591851681529081208054849290610857908490610c36565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516108a391815260200190565b60405180910390a350505050565b6001600160a01b0382166109115760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b60648201526084016103a7565b6001600160a01b038216600090815260016020526040902054818110156109855760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b60648201526084016103a7565b6001600160a01b03831660009081526001602052604081208383039055600380548492906109b4908490610d60565b90915550506040518281526000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90602001610685565b6000546001600160a01b031633146104235760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016103a7565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b600060208083528351808285015260005b81811015610ace57858101830151858201604001528201610ab2565b81811115610ae0576000604083870101525b50601f01601f1916929092016040019392505050565b80356001600160a01b0381168114610b0d57600080fd5b919050565b60008060408385031215610b2557600080fd5b610b2e83610af6565b946020939093013593505050565b600080600060608486031215610b5157600080fd5b610b5a84610af6565b9250610b6860208501610af6565b9150604084013590509250925092565b600060208284031215610b8a57600080fd5b5035919050565b600060208284031215610ba357600080fd5b610bac82610af6565b9392505050565b60008060408385031215610bc657600080fd5b610bcf83610af6565b9150610bdd60208401610af6565b90509250929050565b600181811c90821680610bfa57607f821691505b602082108103610c1a57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b60008219821115610c4957610c49610c20565b500190565b600181815b80851115610c89578160001904821115610c6f57610c6f610c20565b80851615610c7c57918102915b93841c9390800290610c53565b509250929050565b600082610ca057506001610313565b81610cad57506000610313565b8160018114610cc35760028114610ccd57610ce9565b6001915050610313565b60ff841115610cde57610cde610c20565b50506001821b610313565b5060208310610133831016604e8410600b8410161715610d0c575081810a610313565b610d168383610c4e565b8060001904821115610d2a57610d2a610c20565b029392505050565b6000610bac60ff841683610c91565b6000816000190483118215151615610d5b57610d5b610c20565b500290565b600082821015610d7257610d72610c20565b50039056fea26469706673582212204e1c4ae1ec556a1baa928feadb1b9eca47e64d325a353dc703cce7915afa19a664736f6c634300080f0033

Deployed Bytecode Sourcemap

5525:8491:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6157:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8550:184;;;;;;:::i;:::-;;:::i;:::-;;;1218:14:1;;1211:22;1193:41;;1181:2;1166:18;8550:184:0;1053:187:1;6820:108:0;6908:12;;6820:108;;;1391:25:1;;;1379:2;1364:18;6820:108:0;1245:177:1;9074:529:0;;;;;;:::i;:::-;;:::i;6608:100::-;;;5845:2;1902:36:1;;1890:2;1875:18;6608:100:0;1760:184:1;9950:225:0;;;;;;:::i;:::-;;:::i;13300:85::-;;;;;;:::i;:::-;;:::i;:::-;;7118:143;;;;;;:::i;:::-;-1:-1:-1;;;;;7235:18:0;7208:7;7235:18;;;:9;:18;;;;;;;7118:143;4671:103;;;:::i;4030:87::-;4076:7;4103:6;4030:87;;-1:-1:-1;;;;;4103:6:0;;;2471:51:1;;2459:2;2444:18;4030:87:0;2325:203:1;6370:104:0;;;:::i;10507:460::-;;;;;;:::i;:::-;;:::i;7555:200::-;;;;;;:::i;:::-;;:::i;8057:164::-;;;;;;:::i;:::-;-1:-1:-1;;;;;8192:17:0;;;8165:7;8192:17;;;:11;:17;;;;;;;;:21;;;;;;;;;;;;;8057:164;4929:238;;;;;;:::i;:::-;;:::i;5854:66::-;;;:::i;6157:100::-;6211:13;6244:5;6237:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6157:100;:::o;8550:184::-;8653:4;8670:34;175:10;8693:2;8697:6;8670:8;:34::i;:::-;-1:-1:-1;8722:4:0;8550:184;;;;;:::o;9074:529::-;9214:4;9231:36;9241:6;9249:9;9260:6;9231:9;:36::i;:::-;-1:-1:-1;;;;;9307:19:0;;9280:24;9307:19;;;:11;:19;;;;;;;;175:10;9307:33;;;;;;;;9373:26;;;;9351:116;;;;-1:-1:-1;;;9351:116:0;;3385:2:1;9351:116:0;;;3367:21:1;3424:2;3404:18;;;3397:30;3463:34;3443:18;;;3436:62;-1:-1:-1;;;3514:18:1;;;3507:38;3562:19;;9351:116:0;;;;;;;;;9503:57;9512:6;175:10;9553:6;9534:16;:25;9503:8;:57::i;:::-;-1:-1:-1;9591:4:0;;9074:529;-1:-1:-1;;;;9074:529:0:o;9950:225::-;175:10;10058:4;10102:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;10102:29:0;;;;;;;;;;10058:4;;10075:70;;10098:2;;10102:42;;10134:10;;10102:42;:::i;:::-;10075:8;:70::i;13300:85::-;13350:27;175:10;13370:6;13350:5;:27::i;:::-;13300:85;:::o;4671:103::-;3916:13;:11;:13::i;:::-;4736:30:::1;4763:1;4736:18;:30::i;:::-;4671:103::o:0;6370:104::-;6426:13;6459:7;6452:14;;;;;:::i;10507:460::-;175:10;10620:4;10664:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;10664:29:0;;;;;;;;;;10726:35;;;;10704:122;;;;-1:-1:-1;;;10704:122:0;;4059:2:1;10704:122:0;;;4041:21:1;4098:2;4078:18;;;4071:30;4137:34;4117:18;;;4110:62;-1:-1:-1;;;4188:18:1;;;4181:35;4233:19;;10704:122:0;3857:401:1;10704:122:0;10862:62;175:10;10885:2;10908:15;10889:16;:34;10862:8;:62::i;:::-;-1:-1:-1;10955:4:0;;10507:460;-1:-1:-1;;;10507:460:0:o;7555:200::-;7666:4;7683:42;175:10;7707:9;7718:6;7683:9;:42::i;4929:238::-;3916:13;:11;:13::i;:::-;-1:-1:-1;;;;;5032:22:0;::::1;5010:110;;;::::0;-1:-1:-1;;;5010:110:0;;4465:2:1;5010:110:0::1;::::0;::::1;4447:21:1::0;4504:2;4484:18;;;4477:30;4543:34;4523:18;;;4516:62;-1:-1:-1;;;4594:18:1;;;4587:36;4640:19;;5010:110:0::1;4263:402:1::0;5010:110:0::1;5131:28;5150:8;5131:18;:28::i;5854:66::-:0;5904:15;5845:2;5904;:15;:::i;:::-;5888:32;;:12;:32;:::i;:::-;5854:66;:::o;13657:356::-;-1:-1:-1;;;;;13787:18:0;;13779:67;;;;-1:-1:-1;;;13779:67:0;;6428:2:1;13779:67:0;;;6410:21:1;6467:2;6447:18;;;6440:30;6506:34;6486:18;;;6479:62;-1:-1:-1;;;6557:18:1;;;6550:34;6601:19;;13779:67:0;6226:400:1;13779:67:0;-1:-1:-1;;;;;13865:16:0;;13857:63;;;;-1:-1:-1;;;13857:63:0;;6833:2:1;13857:63:0;;;6815:21:1;6872:2;6852:18;;;6845:30;6911:34;6891:18;;;6884:62;-1:-1:-1;;;6962:18:1;;;6955:32;7004:19;;13857:63:0;6631:398:1;13857:63:0;-1:-1:-1;;;;;13933:17:0;;;;;;;:11;:17;;;;;;;;:21;;;;;;;;;;;;;:30;;;13979:26;;1391:25:1;;;13979:26:0;;1364:18:1;13979:26:0;;;;;;;;13657:356;;;:::o;11237:712::-;11386:1;11377:6;:10;11369:50;;;;-1:-1:-1;;;11369:50:0;;7236:2:1;11369:50:0;;;7218:21:1;7275:2;7255:18;;;7248:30;7314:29;7294:18;;;7287:57;7361:18;;11369:50:0;7034:351:1;11369:50:0;-1:-1:-1;;;;;11438:20:0;;11430:70;;;;-1:-1:-1;;;11430:70:0;;7592:2:1;11430:70:0;;;7574:21:1;7631:2;7611:18;;;7604:30;7670:34;7650:18;;;7643:62;-1:-1:-1;;;7721:18:1;;;7714:35;7766:19;;11430:70:0;7390:401:1;11430:70:0;-1:-1:-1;;;;;11519:23:0;;11511:71;;;;-1:-1:-1;;;11511:71:0;;7998:2:1;11511:71:0;;;7980:21:1;8037:2;8017:18;;;8010:30;8076:34;8056:18;;;8049:62;-1:-1:-1;;;8127:18:1;;;8120:33;8170:19;;11511:71:0;7796:399:1;11511:71:0;-1:-1:-1;;;;;11619:17:0;;11595:21;11619:17;;;:9;:17;;;;;;11669:23;;;;11647:111;;;;-1:-1:-1;;;11647:111:0;;8402:2:1;11647:111:0;;;8384:21:1;8441:2;8421:18;;;8414:30;8480:34;8460:18;;;8453:62;-1:-1:-1;;;8531:18:1;;;8524:36;8577:19;;11647:111:0;8200:402:1;11647:111:0;-1:-1:-1;;;;;11794:17:0;;;;;;;:9;:17;;;;;;11814:22;;;11794:42;;11858:20;;;;;;;;:30;;11830:6;;11794:17;11858:30;;11830:6;;11858:30;:::i;:::-;;;;;;;;11923:9;-1:-1:-1;;;;;11906:35:0;11915:6;-1:-1:-1;;;;;11906:35:0;;11934:6;11906:35;;;;1391:25:1;;1379:2;1364:18;;1245:177;11906:35:0;;;;;;;;11358:591;11237:712;;;:::o;12662:468::-;-1:-1:-1;;;;;12746:21:0;;12738:67;;;;-1:-1:-1;;;12738:67:0;;8809:2:1;12738:67:0;;;8791:21:1;8848:2;8828:18;;;8821:30;8887:34;8867:18;;;8860:62;-1:-1:-1;;;8938:18:1;;;8931:31;8979:19;;12738:67:0;8607:397:1;12738:67:0;-1:-1:-1;;;;;12843:18:0;;12818:22;12843:18;;;:9;:18;;;;;;12880:24;;;;12872:71;;;;-1:-1:-1;;;12872:71:0;;9211:2:1;12872:71:0;;;9193:21:1;9250:2;9230:18;;;9223:30;9289:34;9269:18;;;9262:62;-1:-1:-1;;;9340:18:1;;;9333:32;9382:19;;12872:71:0;9009:398:1;12872:71:0;-1:-1:-1;;;;;12979:18:0;;;;;;:9;:18;;;;;13000:23;;;12979:44;;13045:12;:22;;13017:6;;12979:18;13045:22;;13017:6;;13045:22;:::i;:::-;;;;-1:-1:-1;;13085:37:0;;1391:25:1;;;13111:1:0;;-1:-1:-1;;;;;13085:37:0;;;;;1379:2:1;1364:18;13085:37:0;1245:177:1;4195:132:0;4076:7;4103:6;-1:-1:-1;;;;;4103:6:0;175:10;4259:23;4251:68;;;;-1:-1:-1;;;4251:68:0;;9744:2:1;4251:68:0;;;9726:21:1;;;9763:18;;;9756:30;9822:34;9802:18;;;9795:62;9874:18;;4251:68:0;9542:356:1;5327:191:0;5401:16;5420:6;;-1:-1:-1;;;;;5437:17:0;;;-1:-1:-1;;;;;;5437:17:0;;;;;;5470:40;;5420:6;;;;;;;5470:40;;5401:16;5470:40;5390:128;5327:191;:::o;14:597:1:-;126:4;155:2;184;173:9;166:21;216:6;210:13;259:6;254:2;243:9;239:18;232:34;284:1;294:140;308:6;305:1;302:13;294:140;;;403:14;;;399:23;;393:30;369:17;;;388:2;365:26;358:66;323:10;;294:140;;;452:6;449:1;446:13;443:91;;;522:1;517:2;508:6;497:9;493:22;489:31;482:42;443:91;-1:-1:-1;595:2:1;574:15;-1:-1:-1;;570:29:1;555:45;;;;602:2;551:54;;14:597;-1:-1:-1;;;14:597:1:o;616:173::-;684:20;;-1:-1:-1;;;;;733:31:1;;723:42;;713:70;;779:1;776;769:12;713:70;616:173;;;:::o;794:254::-;862:6;870;923:2;911:9;902:7;898:23;894:32;891:52;;;939:1;936;929:12;891:52;962:29;981:9;962:29;:::i;:::-;952:39;1038:2;1023:18;;;;1010:32;;-1:-1:-1;;;794:254:1:o;1427:328::-;1504:6;1512;1520;1573:2;1561:9;1552:7;1548:23;1544:32;1541:52;;;1589:1;1586;1579:12;1541:52;1612:29;1631:9;1612:29;:::i;:::-;1602:39;;1660:38;1694:2;1683:9;1679:18;1660:38;:::i;:::-;1650:48;;1745:2;1734:9;1730:18;1717:32;1707:42;;1427:328;;;;;:::o;1949:180::-;2008:6;2061:2;2049:9;2040:7;2036:23;2032:32;2029:52;;;2077:1;2074;2067:12;2029:52;-1:-1:-1;2100:23:1;;1949:180;-1:-1:-1;1949:180:1:o;2134:186::-;2193:6;2246:2;2234:9;2225:7;2221:23;2217:32;2214:52;;;2262:1;2259;2252:12;2214:52;2285:29;2304:9;2285:29;:::i;:::-;2275:39;2134:186;-1:-1:-1;;;2134:186:1:o;2533:260::-;2601:6;2609;2662:2;2650:9;2641:7;2637:23;2633:32;2630:52;;;2678:1;2675;2668:12;2630:52;2701:29;2720:9;2701:29;:::i;:::-;2691:39;;2749:38;2783:2;2772:9;2768:18;2749:38;:::i;:::-;2739:48;;2533:260;;;;;:::o;2798:380::-;2877:1;2873:12;;;;2920;;;2941:61;;2995:4;2987:6;2983:17;2973:27;;2941:61;3048:2;3040:6;3037:14;3017:18;3014:38;3011:161;;3094:10;3089:3;3085:20;3082:1;3075:31;3129:4;3126:1;3119:15;3157:4;3154:1;3147:15;3011:161;;2798:380;;;:::o;3592:127::-;3653:10;3648:3;3644:20;3641:1;3634:31;3684:4;3681:1;3674:15;3708:4;3705:1;3698:15;3724:128;3764:3;3795:1;3791:6;3788:1;3785:13;3782:39;;;3801:18;;:::i;:::-;-1:-1:-1;3837:9:1;;3724:128::o;4670:422::-;4759:1;4802:5;4759:1;4816:270;4837:7;4827:8;4824:21;4816:270;;;4896:4;4892:1;4888:6;4884:17;4878:4;4875:27;4872:53;;;4905:18;;:::i;:::-;4955:7;4945:8;4941:22;4938:55;;;4975:16;;;;4938:55;5054:22;;;;5014:15;;;;4816:270;;;4820:3;4670:422;;;;;:::o;5097:806::-;5146:5;5176:8;5166:80;;-1:-1:-1;5217:1:1;5231:5;;5166:80;5265:4;5255:76;;-1:-1:-1;5302:1:1;5316:5;;5255:76;5347:4;5365:1;5360:59;;;;5433:1;5428:130;;;;5340:218;;5360:59;5390:1;5381:10;;5404:5;;;5428:130;5465:3;5455:8;5452:17;5449:43;;;5472:18;;:::i;:::-;-1:-1:-1;;5528:1:1;5514:16;;5543:5;;5340:218;;5642:2;5632:8;5629:16;5623:3;5617:4;5614:13;5610:36;5604:2;5594:8;5591:16;5586:2;5580:4;5577:12;5573:35;5570:77;5567:159;;;-1:-1:-1;5679:19:1;;;5711:5;;5567:159;5758:34;5783:8;5777:4;5758:34;:::i;:::-;5828:6;5824:1;5820:6;5816:19;5807:7;5804:32;5801:58;;;5839:18;;:::i;:::-;5877:20;;5097:806;-1:-1:-1;;;5097:806:1:o;5908:140::-;5966:5;5995:47;6036:4;6026:8;6022:19;6016:4;5995:47;:::i;6053:168::-;6093:7;6159:1;6155;6151:6;6147:14;6144:1;6141:21;6136:1;6129:9;6122:17;6118:45;6115:71;;;6166:18;;:::i;:::-;-1:-1:-1;6206:9:1;;6053:168::o;9412:125::-;9452:4;9480:1;9477;9474:8;9471:34;;;9485:18;;:::i;:::-;-1:-1:-1;9522:9:1;;9412:125::o

Swarm Source

ipfs://4e1c4ae1ec556a1baa928feadb1b9eca47e64d325a353dc703cce7915afa19a6
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.