ETH Price: $2,434.35 (-2.14%)

Token

LaughingLama Token (LLT)
 

Overview

Max Total Supply

100,000,000,000 LLT

Holders

68

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Filtered by Token Holder
Uniswap V3: LLT
Balance
0.000000000000000086 LLT

Value
$0.00
0x006cf8fe7f17c010bbf61456ababf14088186ec6
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:
LaughingLamaToken

Compiler Version
v0.8.0+commit.c7dfd78e

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-05-25
*/

/**
 * Welcome to the LLT (LaughingLama Token) source code!
 *
 * Our token symbolizes the joyous spirit of a laughing llama, and it carries the mission of becoming a beacon of happiness and positive change in the world of cryptocurrencies.
 * We strive to build not just a token, but a community driven initiative to support those who need it the most.
 *
 * The LLT token distribution model:
 * 1. 60% of the tokens are dedicated to the community pool, creating a decentralized network of holders.
 * 2. 20% form a charity fund, which aims to bring relief to sick and disadvantaged children. We believe in making a real-world impact through our project.
 * 3. 10% of the tokens are a reward to the creator for the efforts, costs, and sleepless nights spent bringing this project to life.
 * 4. The remaining 10% are set aside to fund the future growth and marketing of LLT, ensuring we continue to thrive and make a difference.
 *
 * Wallet Addresses:
 * 1. Creator's Wallet: 0xd2C6D1a4eB21649087f22225e2730A23969c1374
 * 2. Charity Wallet: 0x72b215393e6D85773B898950Af7C852e7D55c5ed
 * 3. Development and Marketing Wallet: 0xC80FddFD53Acd8Df7722597E335AC83b0465d2B1
 *
 * By being a part of LLT, you are joining a cause that believes in financial inclusion and making a positive impact in the world. This is the start of an exciting journey, and we invite you to join us in making a difference, one block at a time.
 *
 * For more information, please visit our official website: https://laughinglamatoken.com/
 * Stay updated with the latest news and updates on our Twitter page: https://twitter.com/LaughingLamaTok
 */



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


// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

/**

 * 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: @openzeppelin/contracts/access/Ownable.sol


// OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol)

pragma solidity ^0.8.0;


/**
 * @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.
 *
 * By default, the owner account will be the one that deploys the contract. 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;

    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 anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing 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);
    }
}

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


// 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: @openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol)

pragma solidity ^0.8.0;


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

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


// OpenZeppelin Contracts (last updated v4.8.0) (token/ERC20/ERC20.sol)

pragma solidity ^0.8.0;




/**
 * @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.openzeppelin.com/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 `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.
     *
     * 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;
            // Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by
            // decrementing then incrementing.
            _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;
        unchecked {
            // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above.
            _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;
            // Overflow not possible: amount <= accountBalance <= totalSupply.
            _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: @openzeppelin/contracts/token/ERC20/extensions/ERC20Burnable.sol


// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC20/extensions/ERC20Burnable.sol)

pragma solidity ^0.8.0;



/**
 * @dev Extension of {ERC20} that allows token holders to destroy both their own
 * tokens and those that they have an allowance for, in a way that can be
 * recognized off-chain (via event analysis).
 */
abstract contract ERC20Burnable is Context, ERC20 {
    /**
     * @dev Destroys `amount` tokens from the caller.
     *
     * See {ERC20-_burn}.
     */
    function burn(uint256 amount) public virtual {
        _burn(_msgSender(), amount);
    }

    /**
     * @dev Destroys `amount` tokens from `account`, deducting from the caller's
     * allowance.
     *
     * See {ERC20-_burn} and {ERC20-allowance}.
     *
     * Requirements:
     *
     * - the caller must have allowance for ``accounts``'s tokens of at least
     * `amount`.
     */
    function burnFrom(address account, uint256 amount) public virtual {
        _spendAllowance(account, _msgSender(), amount);
        _burn(account, amount);
    }
}

// File: contracts/Testllt.sol


pragma solidity ^0.8.0;


// SPDX-License-Identifier: MIT

contract LaughingLamaToken is ERC20, ERC20Burnable, Ownable {
    uint256 private constant INITIAL_SUPPLY = 100000000000 * 10**18;

    constructor() ERC20("LaughingLama Token", "LLT") {
        _mint(msg.sender, INITIAL_SUPPLY);
    }

    function distributeTokens(address distributionWallet) external onlyOwner {
        uint256 supply = balanceOf(msg.sender);
        require(supply == INITIAL_SUPPLY, "Tokens already distributed");

        _transfer(msg.sender, distributionWallet, supply);
    }
}

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":"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":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burnFrom","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":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"distributionWallet","type":"address"}],"name":"distributeTokens","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":"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"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040523480156200001157600080fd5b50604051806040016040528060128152602001712630bab3b434b733a630b6b0902a37b5b2b760711b8152506040518060400160405280600381526020016213131560ea1b815250816003908051906020019062000071929190620001e0565b50805162000087906004906020840190620001e0565b505050620000a46200009e620000c360201b60201c565b620000c7565b620000bd336c01431e0fae6d7217caa000000062000119565b62000328565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b0382166200014b5760405162461bcd60e51b8152600401620001429062000286565b60405180910390fd5b6200015960008383620001db565b80600260008282546200016d9190620002c6565b90915550506001600160a01b038216600081815260208190526040808220805485019055517fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90620001c1908590620002bd565b60405180910390a3620001d760008383620001db565b5050565b505050565b828054620001ee90620002eb565b90600052602060002090601f0160209004810192826200021257600085556200025d565b82601f106200022d57805160ff19168380011785556200025d565b828001600101855582156200025d579182015b828111156200025d57825182559160200191906001019062000240565b506200026b9291506200026f565b5090565b5b808211156200026b576000815560010162000270565b6020808252601f908201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604082015260600190565b90815260200190565b60008219821115620002e657634e487b7160e01b81526011600452602481fd5b500190565b6002810460018216806200030057607f821691505b602082108114156200032257634e487b7160e01b600052602260045260246000fd5b50919050565b610d8780620003386000396000f3fe608060405234801561001057600080fd5b506004361061010b5760003560e01c8063715018a6116100a2578063a457c2d711610071578063a457c2d7146101fe578063a9059cbb14610211578063b1d17c9814610224578063dd62ed3e14610237578063f2fde38b1461024a5761010b565b8063715018a6146101c657806379cc6790146101ce5780638da5cb5b146101e157806395d89b41146101f65761010b565b8063313ce567116100de578063313ce56714610176578063395093511461018b57806342966c681461019e57806370a08231146101b35761010b565b806306fdde0314610110578063095ea7b31461012e57806318160ddd1461014e57806323b872dd14610163575b600080fd5b61011861025d565b6040516101259190610983565b60405180910390f35b61014161013c366004610923565b6102ef565b6040516101259190610978565b610156610311565b6040516101259190610cdb565b6101416101713660046108e8565b610317565b61017e610345565b6040516101259190610ce4565b610141610199366004610923565b61034a565b6101b16101ac36600461094c565b610376565b005b6101566101c1366004610895565b61038a565b6101b16103a9565b6101b16101dc366004610923565b6103bd565b6101e96103dd565b6040516101259190610964565b6101186103ec565b61014161020c366004610923565b6103fb565b61014161021f366004610923565b61044c565b6101b1610232366004610895565b610464565b6101566102453660046108b6565b6104b0565b6101b1610258366004610895565b6104db565b60606003805461026c90610d16565b80601f016020809104026020016040519081016040528092919081815260200182805461029890610d16565b80156102e55780601f106102ba576101008083540402835291602001916102e5565b820191906000526020600020905b8154815290600101906020018083116102c857829003601f168201915b5050505050905090565b6000806102fa610512565b9050610307818585610516565b5060019392505050565b60025490565b600080610322610512565b905061032f8582856105ca565b61033a858585610614565b506001949350505050565b601290565b600080610355610512565b905061030781858561036785896104b0565b6103719190610cf2565b610516565b610387610381610512565b82610715565b50565b6001600160a01b0381166000908152602081905260409020545b919050565b6103b16107ed565b6103bb600061082c565b565b6103cf826103c9610512565b836105ca565b6103d98282610715565b5050565b6005546001600160a01b031690565b60606004805461026c90610d16565b600080610406610512565b9050600061041482866104b0565b90508381101561043f5760405162461bcd60e51b815260040161043690610c96565b60405180910390fd5b61033a8286868403610516565b600080610457610512565b9050610307818585610614565b61046c6107ed565b60006104773361038a565b90506c01431e0fae6d7217caa000000081146104a55760405162461bcd60e51b815260040161043690610b1a565b6103d9338383610614565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6104e36107ed565b6001600160a01b0381166105095760405162461bcd60e51b815260040161043690610a5b565b6103878161082c565b3390565b6001600160a01b03831661053c5760405162461bcd60e51b815260040161043690610c52565b6001600160a01b0382166105625760405162461bcd60e51b815260040161043690610aa1565b6001600160a01b0380841660008181526001602090815260408083209487168084529490915290819020849055517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925906105bd908590610cdb565b60405180910390a3505050565b60006105d684846104b0565b9050600019811461060e57818110156106015760405162461bcd60e51b815260040161043690610ae3565b61060e8484848403610516565b50505050565b6001600160a01b03831661063a5760405162461bcd60e51b815260040161043690610c0d565b6001600160a01b0382166106605760405162461bcd60e51b8152600401610436906109d6565b61066b8383836107e8565b6001600160a01b038316600090815260208190526040902054818110156106a45760405162461bcd60e51b815260040161043690610b51565b6001600160a01b0380851660008181526020819052604080822086860390559286168082529083902080548601905591517fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90610702908690610cdb565b60405180910390a361060e8484846107e8565b6001600160a01b03821661073b5760405162461bcd60e51b815260040161043690610bcc565b610747826000836107e8565b6001600160a01b038216600090815260208190526040902054818110156107805760405162461bcd60e51b815260040161043690610a19565b6001600160a01b0383166000818152602081905260408082208585039055600280548690039055519091907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906107d8908690610cdb565b60405180910390a36107e8836000845b505050565b6107f5610512565b6001600160a01b03166108066103dd565b6001600160a01b0316146103bb5760405162461bcd60e51b815260040161043690610b97565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b80356001600160a01b03811681146103a457600080fd5b6000602082840312156108a6578081fd5b6108af8261087e565b9392505050565b600080604083850312156108c8578081fd5b6108d18361087e565b91506108df6020840161087e565b90509250929050565b6000806000606084860312156108fc578081fd5b6109058461087e565b92506109136020850161087e565b9150604084013590509250925092565b60008060408385031215610935578182fd5b61093e8361087e565b946020939093013593505050565b60006020828403121561095d578081fd5b5035919050565b6001600160a01b0391909116815260200190565b901515815260200190565b6000602080835283518082850152825b818110156109af57858101830151858201604001528201610993565b818111156109c05783604083870101525b50601f01601f1916929092016040019392505050565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b60208082526022908201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604082015261636560f01b606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b60208082526022908201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604082015261737360f01b606082015260800190565b6020808252601d908201527f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000604082015260600190565b6020808252601a908201527f546f6b656e7320616c7265616479206469737472696275746564000000000000604082015260600190565b60208082526026908201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604082015265616c616e636560d01b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526021908201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736040820152607360f81b606082015260800190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526024908201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60208082526025908201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604082015264207a65726f60d81b606082015260800190565b90815260200190565b60ff91909116815260200190565b60008219821115610d1157634e487b7160e01b81526011600452602481fd5b500190565b600281046001821680610d2a57607f821691505b60208210811415610d4b57634e487b7160e01b600052602260045260246000fd5b5091905056fea264697066735822122003c45c0404ff6d7d0a452447ffa8cd5ef63a9f0016e8078dc47f17e4d57bf3fe64736f6c63430008000033

Deployed Bytecode

0x608060405234801561001057600080fd5b506004361061010b5760003560e01c8063715018a6116100a2578063a457c2d711610071578063a457c2d7146101fe578063a9059cbb14610211578063b1d17c9814610224578063dd62ed3e14610237578063f2fde38b1461024a5761010b565b8063715018a6146101c657806379cc6790146101ce5780638da5cb5b146101e157806395d89b41146101f65761010b565b8063313ce567116100de578063313ce56714610176578063395093511461018b57806342966c681461019e57806370a08231146101b35761010b565b806306fdde0314610110578063095ea7b31461012e57806318160ddd1461014e57806323b872dd14610163575b600080fd5b61011861025d565b6040516101259190610983565b60405180910390f35b61014161013c366004610923565b6102ef565b6040516101259190610978565b610156610311565b6040516101259190610cdb565b6101416101713660046108e8565b610317565b61017e610345565b6040516101259190610ce4565b610141610199366004610923565b61034a565b6101b16101ac36600461094c565b610376565b005b6101566101c1366004610895565b61038a565b6101b16103a9565b6101b16101dc366004610923565b6103bd565b6101e96103dd565b6040516101259190610964565b6101186103ec565b61014161020c366004610923565b6103fb565b61014161021f366004610923565b61044c565b6101b1610232366004610895565b610464565b6101566102453660046108b6565b6104b0565b6101b1610258366004610895565b6104db565b60606003805461026c90610d16565b80601f016020809104026020016040519081016040528092919081815260200182805461029890610d16565b80156102e55780601f106102ba576101008083540402835291602001916102e5565b820191906000526020600020905b8154815290600101906020018083116102c857829003601f168201915b5050505050905090565b6000806102fa610512565b9050610307818585610516565b5060019392505050565b60025490565b600080610322610512565b905061032f8582856105ca565b61033a858585610614565b506001949350505050565b601290565b600080610355610512565b905061030781858561036785896104b0565b6103719190610cf2565b610516565b610387610381610512565b82610715565b50565b6001600160a01b0381166000908152602081905260409020545b919050565b6103b16107ed565b6103bb600061082c565b565b6103cf826103c9610512565b836105ca565b6103d98282610715565b5050565b6005546001600160a01b031690565b60606004805461026c90610d16565b600080610406610512565b9050600061041482866104b0565b90508381101561043f5760405162461bcd60e51b815260040161043690610c96565b60405180910390fd5b61033a8286868403610516565b600080610457610512565b9050610307818585610614565b61046c6107ed565b60006104773361038a565b90506c01431e0fae6d7217caa000000081146104a55760405162461bcd60e51b815260040161043690610b1a565b6103d9338383610614565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6104e36107ed565b6001600160a01b0381166105095760405162461bcd60e51b815260040161043690610a5b565b6103878161082c565b3390565b6001600160a01b03831661053c5760405162461bcd60e51b815260040161043690610c52565b6001600160a01b0382166105625760405162461bcd60e51b815260040161043690610aa1565b6001600160a01b0380841660008181526001602090815260408083209487168084529490915290819020849055517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925906105bd908590610cdb565b60405180910390a3505050565b60006105d684846104b0565b9050600019811461060e57818110156106015760405162461bcd60e51b815260040161043690610ae3565b61060e8484848403610516565b50505050565b6001600160a01b03831661063a5760405162461bcd60e51b815260040161043690610c0d565b6001600160a01b0382166106605760405162461bcd60e51b8152600401610436906109d6565b61066b8383836107e8565b6001600160a01b038316600090815260208190526040902054818110156106a45760405162461bcd60e51b815260040161043690610b51565b6001600160a01b0380851660008181526020819052604080822086860390559286168082529083902080548601905591517fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90610702908690610cdb565b60405180910390a361060e8484846107e8565b6001600160a01b03821661073b5760405162461bcd60e51b815260040161043690610bcc565b610747826000836107e8565b6001600160a01b038216600090815260208190526040902054818110156107805760405162461bcd60e51b815260040161043690610a19565b6001600160a01b0383166000818152602081905260408082208585039055600280548690039055519091907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906107d8908690610cdb565b60405180910390a36107e8836000845b505050565b6107f5610512565b6001600160a01b03166108066103dd565b6001600160a01b0316146103bb5760405162461bcd60e51b815260040161043690610b97565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b80356001600160a01b03811681146103a457600080fd5b6000602082840312156108a6578081fd5b6108af8261087e565b9392505050565b600080604083850312156108c8578081fd5b6108d18361087e565b91506108df6020840161087e565b90509250929050565b6000806000606084860312156108fc578081fd5b6109058461087e565b92506109136020850161087e565b9150604084013590509250925092565b60008060408385031215610935578182fd5b61093e8361087e565b946020939093013593505050565b60006020828403121561095d578081fd5b5035919050565b6001600160a01b0391909116815260200190565b901515815260200190565b6000602080835283518082850152825b818110156109af57858101830151858201604001528201610993565b818111156109c05783604083870101525b50601f01601f1916929092016040019392505050565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b60208082526022908201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604082015261636560f01b606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b60208082526022908201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604082015261737360f01b606082015260800190565b6020808252601d908201527f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000604082015260600190565b6020808252601a908201527f546f6b656e7320616c7265616479206469737472696275746564000000000000604082015260600190565b60208082526026908201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604082015265616c616e636560d01b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526021908201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736040820152607360f81b606082015260800190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526024908201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60208082526025908201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604082015264207a65726f60d81b606082015260800190565b90815260200190565b60ff91909116815260200190565b60008219821115610d1157634e487b7160e01b81526011600452602481fd5b500190565b600281046001821680610d2a57607f821691505b60208210811415610d4b57634e487b7160e01b600052602260045260246000fd5b5091905056fea264697066735822122003c45c0404ff6d7d0a452447ffa8cd5ef63a9f0016e8078dc47f17e4d57bf3fe64736f6c63430008000033

Deployed Bytecode Sourcemap

23036:517:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10584:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12935:201;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;11704:108::-;;;:::i;:::-;;;;;;;:::i;13716:295::-;;;;;;:::i;:::-;;:::i;11546:93::-;;;:::i;:::-;;;;;;;:::i;14420:238::-;;;;;;:::i;:::-;;:::i;22355:91::-;;;;;;:::i;:::-;;:::i;:::-;;11875:127;;;;;;:::i;:::-;;:::i;4009:103::-;;;:::i;22765:164::-;;;;;;:::i;:::-;;:::i;3361:87::-;;;:::i;:::-;;;;;;;:::i;10803:104::-;;;:::i;15161:436::-;;;;;;:::i;:::-;;:::i;12208:193::-;;;;;;:::i;:::-;;:::i;23284:266::-;;;;;;:::i;:::-;;:::i;12464:151::-;;;;;;:::i;:::-;;:::i;4267:201::-;;;;;;:::i;:::-;;:::i;10584:100::-;10638:13;10671:5;10664:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10584:100;:::o;12935:201::-;13018:4;13035:13;13051:12;:10;:12::i;:::-;13035:28;;13074:32;13083:5;13090:7;13099:6;13074:8;:32::i;:::-;-1:-1:-1;13124:4:0;;12935:201;-1:-1:-1;;;12935:201:0:o;11704:108::-;11792:12;;11704:108;:::o;13716:295::-;13847:4;13864:15;13882:12;:10;:12::i;:::-;13864:30;;13905:38;13921:4;13927:7;13936:6;13905:15;:38::i;:::-;13954:27;13964:4;13970:2;13974:6;13954:9;:27::i;:::-;-1:-1:-1;13999:4:0;;13716:295;-1:-1:-1;;;;13716:295:0:o;11546:93::-;11629:2;11546:93;:::o;14420:238::-;14508:4;14525:13;14541:12;:10;:12::i;:::-;14525:28;;14564:64;14573:5;14580:7;14617:10;14589:25;14599:5;14606:7;14589:9;:25::i;:::-;:38;;;;:::i;:::-;14564:8;:64::i;22355:91::-;22411:27;22417:12;:10;:12::i;:::-;22431:6;22411:5;:27::i;:::-;22355:91;:::o;11875:127::-;-1:-1:-1;;;;;11976:18:0;;11949:7;11976:18;;;;;;;;;;;11875:127;;;;:::o;4009:103::-;3247:13;:11;:13::i;:::-;4074:30:::1;4101:1;4074:18;:30::i;:::-;4009:103::o:0;22765:164::-;22842:46;22858:7;22867:12;:10;:12::i;:::-;22881:6;22842:15;:46::i;:::-;22899:22;22905:7;22914:6;22899:5;:22::i;:::-;22765:164;;:::o;3361:87::-;3434:6;;-1:-1:-1;;;;;3434:6:0;3361:87;:::o;10803:104::-;10859:13;10892:7;10885:14;;;;;:::i;15161:436::-;15254:4;15271:13;15287:12;:10;:12::i;:::-;15271:28;;15310:24;15337:25;15347:5;15354:7;15337:9;:25::i;:::-;15310:52;;15401:15;15381:16;:35;;15373:85;;;;-1:-1:-1;;;15373:85:0;;;;;;;:::i;:::-;;;;;;;;;15494:60;15503:5;15510:7;15538:15;15519:16;:34;15494:8;:60::i;12208:193::-;12287:4;12304:13;12320:12;:10;:12::i;:::-;12304:28;;12343;12353:5;12360:2;12364:6;12343:9;:28::i;23284:266::-;3247:13;:11;:13::i;:::-;23368:14:::1;23385:21;23395:10;23385:9;:21::i;:::-;23368:38;;23145:21;23425:6;:24;23417:63;;;;-1:-1:-1::0;;;23417:63:0::1;;;;;;;:::i;:::-;23493:49;23503:10;23515:18;23535:6;23493:9;:49::i;12464:151::-:0;-1:-1:-1;;;;;12580:18:0;;;12553:7;12580:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;12464:151::o;4267:201::-;3247:13;:11;:13::i;:::-;-1:-1:-1;;;;;4356:22:0;::::1;4348:73;;;;-1:-1:-1::0;;;4348:73:0::1;;;;;;;:::i;:::-;4432:28;4451:8;4432:18;:28::i;1912:98::-:0;1992:10;1912:98;:::o;19188:380::-;-1:-1:-1;;;;;19324:19:0;;19316:68;;;;-1:-1:-1;;;19316:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;19403:21:0;;19395:68;;;;-1:-1:-1;;;19395:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;19476:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;;:36;;;19528:32;;;;;19506:6;;19528:32;:::i;:::-;;;;;;;;19188:380;;;:::o;19859:453::-;19994:24;20021:25;20031:5;20038:7;20021:9;:25::i;:::-;19994:52;;-1:-1:-1;;20061:16:0;:37;20057:248;;20143:6;20123:16;:26;;20115:68;;;;-1:-1:-1;;;20115:68:0;;;;;;;:::i;:::-;20227:51;20236:5;20243:7;20271:6;20252:16;:25;20227:8;:51::i;:::-;19859:453;;;;:::o;16067:840::-;-1:-1:-1;;;;;16198:18:0;;16190:68;;;;-1:-1:-1;;;16190:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;16277:16:0;;16269:64;;;;-1:-1:-1;;;16269:64:0;;;;;;;:::i;:::-;16346:38;16367:4;16373:2;16377:6;16346:20;:38::i;:::-;-1:-1:-1;;;;;16419:15:0;;16397:19;16419:15;;;;;;;;;;;16453:21;;;;16445:72;;;;-1:-1:-1;;;16445:72:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;16553:15:0;;;:9;:15;;;;;;;;;;;16571:20;;;16553:38;;16771:13;;;;;;;;;;:23;;;;;;16823:26;;;;;;16585:6;;16823:26;:::i;:::-;;;;;;;;16862:37;16882:4;16888:2;16892:6;16862:19;:37::i;18075:675::-;-1:-1:-1;;;;;18159:21:0;;18151:67;;;;-1:-1:-1;;;18151:67:0;;;;;;;:::i;:::-;18231:49;18252:7;18269:1;18273:6;18231:20;:49::i;:::-;-1:-1:-1;;;;;18318:18:0;;18293:22;18318:18;;;;;;;;;;;18355:24;;;;18347:71;;;;-1:-1:-1;;;18347:71:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;18454:18:0;;:9;:18;;;;;;;;;;;18475:23;;;18454:44;;18593:12;:22;;;;;;;18644:37;18454:9;;:18;18644:37;;;;18492:6;;18644:37;:::i;:::-;;;;;;;;18694:48;18714:7;18731:1;18735:6;18694:48;18075:675;;;:::o;3526:132::-;3601:12;:10;:12::i;:::-;-1:-1:-1;;;;;3590:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;3590:23:0;;3582:68;;;;-1:-1:-1;;;3582:68:0;;;;;;;:::i;4628:191::-;4721:6;;;-1:-1:-1;;;;;4738:17:0;;;-1:-1:-1;;;;;;4738:17:0;;;;;;;4771:40;;4721:6;;;4738:17;4721:6;;4771:40;;4702:16;;4771:40;4628:191;;:::o;14:175:1:-;84:20;;-1:-1:-1;;;;;133:31:1;;123:42;;113:2;;179:1;176;169:12;194:198;;306:2;294:9;285:7;281:23;277:32;274:2;;;327:6;319;312:22;274:2;355:31;376:9;355:31;:::i;:::-;345:41;264:128;-1:-1:-1;;;264:128:1:o;397:274::-;;;526:2;514:9;505:7;501:23;497:32;494:2;;;547:6;539;532:22;494:2;575:31;596:9;575:31;:::i;:::-;565:41;;625:40;661:2;650:9;646:18;625:40;:::i;:::-;615:50;;484:187;;;;;:::o;676:342::-;;;;822:2;810:9;801:7;797:23;793:32;790:2;;;843:6;835;828:22;790:2;871:31;892:9;871:31;:::i;:::-;861:41;;921:40;957:2;946:9;942:18;921:40;:::i;:::-;911:50;;1008:2;997:9;993:18;980:32;970:42;;780:238;;;;;:::o;1023:266::-;;;1152:2;1140:9;1131:7;1127:23;1123:32;1120:2;;;1173:6;1165;1158:22;1120:2;1201:31;1222:9;1201:31;:::i;:::-;1191:41;1279:2;1264:18;;;;1251:32;;-1:-1:-1;;;1110:179:1:o;1294:190::-;;1406:2;1394:9;1385:7;1381:23;1377:32;1374:2;;;1427:6;1419;1412:22;1374:2;-1:-1:-1;1455:23:1;;1364:120;-1:-1:-1;1364:120:1:o;1489:203::-;-1:-1:-1;;;;;1653:32:1;;;;1635:51;;1623:2;1608:18;;1590:102::o;1697:187::-;1862:14;;1855:22;1837:41;;1825:2;1810:18;;1792:92::o;1889:603::-;;2030:2;2059;2048:9;2041:21;2091:6;2085:13;2134:6;2129:2;2118:9;2114:18;2107:34;2159:4;2172:140;2186:6;2183:1;2180:13;2172:140;;;2281:14;;;2277:23;;2271:30;2247:17;;;2266:2;2243:26;2236:66;2201:10;;2172:140;;;2330:6;2327:1;2324:13;2321:2;;;2400:4;2395:2;2386:6;2375:9;2371:22;2367:31;2360:45;2321:2;-1:-1:-1;2476:2:1;2455:15;-1:-1:-1;;2451:29:1;2436:45;;;;2483:2;2432:54;;2010:482;-1:-1:-1;;;2010:482:1:o;2497:399::-;2699:2;2681:21;;;2738:2;2718:18;;;2711:30;2777:34;2772:2;2757:18;;2750:62;-1:-1:-1;;;2843:2:1;2828:18;;2821:33;2886:3;2871:19;;2671:225::o;2901:398::-;3103:2;3085:21;;;3142:2;3122:18;;;3115:30;3181:34;3176:2;3161:18;;3154:62;-1:-1:-1;;;3247:2:1;3232:18;;3225:32;3289:3;3274:19;;3075:224::o;3304:402::-;3506:2;3488:21;;;3545:2;3525:18;;;3518:30;3584:34;3579:2;3564:18;;3557:62;-1:-1:-1;;;3650:2:1;3635:18;;3628:36;3696:3;3681:19;;3478:228::o;3711:398::-;3913:2;3895:21;;;3952:2;3932:18;;;3925:30;3991:34;3986:2;3971:18;;3964:62;-1:-1:-1;;;4057:2:1;4042:18;;4035:32;4099:3;4084:19;;3885:224::o;4114:353::-;4316:2;4298:21;;;4355:2;4335:18;;;4328:30;4394:31;4389:2;4374:18;;4367:59;4458:2;4443:18;;4288:179::o;4472:350::-;4674:2;4656:21;;;4713:2;4693:18;;;4686:30;4752:28;4747:2;4732:18;;4725:56;4813:2;4798:18;;4646:176::o;4827:402::-;5029:2;5011:21;;;5068:2;5048:18;;;5041:30;5107:34;5102:2;5087:18;;5080:62;-1:-1:-1;;;5173:2:1;5158:18;;5151:36;5219:3;5204:19;;5001:228::o;5234:356::-;5436:2;5418:21;;;5455:18;;;5448:30;5514:34;5509:2;5494:18;;5487:62;5581:2;5566:18;;5408:182::o;5595:397::-;5797:2;5779:21;;;5836:2;5816:18;;;5809:30;5875:34;5870:2;5855:18;;5848:62;-1:-1:-1;;;5941:2:1;5926:18;;5919:31;5982:3;5967:19;;5769:223::o;5997:401::-;6199:2;6181:21;;;6238:2;6218:18;;;6211:30;6277:34;6272:2;6257:18;;6250:62;-1:-1:-1;;;6343:2:1;6328:18;;6321:35;6388:3;6373:19;;6171:227::o;6403:400::-;6605:2;6587:21;;;6644:2;6624:18;;;6617:30;6683:34;6678:2;6663:18;;6656:62;-1:-1:-1;;;6749:2:1;6734:18;;6727:34;6793:3;6778:19;;6577:226::o;6808:401::-;7010:2;6992:21;;;7049:2;7029:18;;;7022:30;7088:34;7083:2;7068:18;;7061:62;-1:-1:-1;;;7154:2:1;7139:18;;7132:35;7199:3;7184:19;;6982:227::o;7214:177::-;7360:25;;;7348:2;7333:18;;7315:76::o;7396:184::-;7568:4;7556:17;;;;7538:36;;7526:2;7511:18;;7493:87::o;7585:229::-;;7656:1;7652:6;7649:1;7646:13;7643:2;;;-1:-1:-1;;;7682:33:1;;7738:4;7735:1;7728:15;7768:4;7689:3;7756:17;7643:2;-1:-1:-1;7799:9:1;;7633:181::o;7819:380::-;7904:1;7894:12;;7951:1;7941:12;;;7962:2;;8016:4;8008:6;8004:17;7994:27;;7962:2;8069;8061:6;8058:14;8038:18;8035:38;8032:2;;;8115:10;8110:3;8106:20;8103:1;8096:31;8150:4;8147:1;8140:15;8178:4;8175:1;8168:15;8032:2;;7874:325;;;:::o

Swarm Source

ipfs://03c45c0404ff6d7d0a452447ffa8cd5ef63a9f0016e8078dc47f17e4d57bf3fe
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.