ETH Price: $3,270.32 (+0.64%)
Gas: 1 Gwei

Token

MOOKY (MOOK)
 

Overview

Max Total Supply

500,000,000,000 MOOK

Holders

621

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
27,927,711.976744186 MOOK

Value
$0.00
0x71368AAEa59905f9EA570d2d05f3DCEF59c2d9f7
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:
Mooky

Compiler Version
v0.8.13+commit.abaa5c0e

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-03-22
*/

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


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

pragma solidity ^0.8.0;

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

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

// File: @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: Mooky.sol


pragma solidity 0.8.13;


contract Mooky is ERC20, Ownable {
    uint8 private _decimals;
    mapping(address => bool) public blacklisted;
    event LogAddToBlacklist(address[] indexed blacklisted);
    event LogRemoveFromBlacklist(address[] indexed removed);
    constructor(
        string memory _name,
        string memory _symbol,
        uint8 __decimals,
        uint256 _totalSupply
    ) ERC20(_name, _symbol) {       
        _decimals=__decimals;
        _mint(msg.sender, _totalSupply);
    }
    function decimals() public view override returns (uint8) {
        return _decimals;
    }
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal view override {
        require(!blacklisted[from] && !blacklisted[to], "ERC20: blacklisted address");
    }

    function addToBlacklist(address[] memory _accounts)
        public
        onlyOwner
    {
        for (uint256 i = 0; i < _accounts.length; i++) {
            blacklisted[_accounts[i]] = true;
        }
        emit LogAddToBlacklist(_accounts);
    }

    function removeFromBlacklist(address[] memory _accounts)
        public
        onlyOwner
    {
        for (uint256 i = 0; i < _accounts.length; i++) {
            blacklisted[_accounts[i]] = false;
        }
        emit LogRemoveFromBlacklist(_accounts);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"uint8","name":"__decimals","type":"uint8"},{"internalType":"uint256","name":"_totalSupply","type":"uint256"}],"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":"blacklisted","type":"address[]"}],"name":"LogAddToBlacklist","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address[]","name":"removed","type":"address[]"}],"name":"LogRemoveFromBlacklist","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":"_accounts","type":"address[]"}],"name":"addToBlacklist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"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":"address","name":"","type":"address"}],"name":"blacklisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"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":[{"internalType":"address[]","name":"_accounts","type":"address[]"}],"name":"removeFromBlacklist","outputs":[],"stateMutability":"nonpayable","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"}]

60806040523480156200001157600080fd5b50604051620012bb380380620012bb8339810160408190526200003491620003e2565b8351849084906200004d9060039060208501906200026f565b508051620000639060049060208401906200026f565b505050620000806200007a620000ae60201b60201c565b620000b2565b6005805460ff60a01b1916600160a01b60ff851602179055620000a4338262000104565b50505050620004d0565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038216620001605760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064015b60405180910390fd5b6200016e60008383620001d9565b80600260008282546200018291906200046d565b90915550506001600160a01b038216600081815260208181526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b6001600160a01b03831660009081526006602052604090205460ff161580156200021c57506001600160a01b03821660009081526006602052604090205460ff16155b6200026a5760405162461bcd60e51b815260206004820152601a60248201527f45524332303a20626c61636b6c69737465642061646472657373000000000000604482015260640162000157565b505050565b8280546200027d9062000494565b90600052602060002090601f016020900481019282620002a15760008555620002ec565b82601f10620002bc57805160ff1916838001178555620002ec565b82800160010185558215620002ec579182015b82811115620002ec578251825591602001919060010190620002cf565b50620002fa929150620002fe565b5090565b5b80821115620002fa5760008155600101620002ff565b634e487b7160e01b600052604160045260246000fd5b600082601f8301126200033d57600080fd5b81516001600160401b03808211156200035a576200035a62000315565b604051601f8301601f19908116603f0116810190828211818310171562000385576200038562000315565b81604052838152602092508683858801011115620003a257600080fd5b600091505b83821015620003c65785820183015181830184015290820190620003a7565b83821115620003d85760008385830101525b9695505050505050565b60008060008060808587031215620003f957600080fd5b84516001600160401b03808211156200041157600080fd5b6200041f888389016200032b565b955060208701519150808211156200043657600080fd5b5062000445878288016200032b565b935050604085015160ff811681146200045d57600080fd5b6060959095015193969295505050565b600082198211156200048f57634e487b7160e01b600052601160045260246000fd5b500190565b600181811c90821680620004a957607f821691505b602082108103620004ca57634e487b7160e01b600052602260045260246000fd5b50919050565b610ddb80620004e06000396000f3fe608060405234801561001057600080fd5b506004361061010b5760003560e01c806389daf799116100a2578063a457c2d711610071578063a457c2d714610224578063a9059cbb14610237578063dbac26e91461024a578063dd62ed3e1461026d578063f2fde38b1461028057600080fd5b806389daf799146101db5780638da5cb5b146101ee578063935eb35f1461020957806395d89b411461021c57600080fd5b8063313ce567116100de578063313ce56714610176578063395093511461019557806370a08231146101a8578063715018a6146101d157600080fd5b806306fdde0314610110578063095ea7b31461012e57806318160ddd1461015157806323b872dd14610163575b600080fd5b610118610293565b6040516101259190610ac8565b60405180910390f35b61014161013c366004610b39565b610325565b6040519015158152602001610125565b6002545b604051908152602001610125565b610141610171366004610b63565b61033d565b600554600160a01b900460ff1660405160ff9091168152602001610125565b6101416101a3366004610b39565b610361565b6101556101b6366004610b9f565b6001600160a01b031660009081526020819052604090205490565b6101d9610383565b005b6101d96101e9366004610bd7565b610397565b6005546040516001600160a01b039091168152602001610125565b6101d9610217366004610bd7565b610449565b6101186104fb565b610141610232366004610b39565b61050a565b610141610245366004610b39565b61058a565b610141610258366004610b9f565b60066020526000908152604090205460ff1681565b61015561027b366004610c9c565b610598565b6101d961028e366004610b9f565b6105c3565b6060600380546102a290610ccf565b80601f01602080910402602001604051908101604052809291908181526020018280546102ce90610ccf565b801561031b5780601f106102f05761010080835404028352916020019161031b565b820191906000526020600020905b8154815290600101906020018083116102fe57829003601f168201915b5050505050905090565b60003361033381858561063c565b5060019392505050565b60003361034b858285610760565b6103568585856107da565b506001949350505050565b6000336103338185856103748383610598565b61037e9190610d1f565b61063c565b61038b610989565b61039560006109e3565b565b61039f610989565b60005b8151811015610407576000600660008484815181106103c3576103c3610d37565b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff1916911515919091179055806103ff81610d4d565b9150506103a2565b50806040516104169190610d66565b604051908190038120907f2aeef244739d0f2066344f0fc05a07a0434de53daace697f780d8660b4c6b2f290600090a250565b610451610989565b60005b81518110156104b95760016006600084848151811061047557610475610d37565b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff1916911515919091179055806104b181610d4d565b915050610454565b50806040516104c89190610d66565b604051908190038120907f8eaaaea6f77c65cfde1859af8365ec18cb9f0db5762cb2f5cc798ab93748c55290600090a250565b6060600480546102a290610ccf565b600033816105188286610598565b90508381101561057d5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084015b60405180910390fd5b610356828686840361063c565b6000336103338185856107da565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6105cb610989565b6001600160a01b0381166106305760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610574565b610639816109e3565b50565b6001600160a01b03831661069e5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610574565b6001600160a01b0382166106ff5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610574565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b600061076c8484610598565b905060001981146107d457818110156107c75760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610574565b6107d4848484840361063c565b50505050565b6001600160a01b03831661083e5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610574565b6001600160a01b0382166108a05760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610574565b6108ab838383610a35565b6001600160a01b038316600090815260208190526040902054818110156109235760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610574565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a36107d4565b6005546001600160a01b031633146103955760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610574565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b03831660009081526006602052604090205460ff16158015610a7757506001600160a01b03821660009081526006602052604090205460ff16155b610ac35760405162461bcd60e51b815260206004820152601a60248201527f45524332303a20626c61636b6c697374656420616464726573730000000000006044820152606401610574565b505050565b600060208083528351808285015260005b81811015610af557858101830151858201604001528201610ad9565b81811115610b07576000604083870101525b50601f01601f1916929092016040019392505050565b80356001600160a01b0381168114610b3457600080fd5b919050565b60008060408385031215610b4c57600080fd5b610b5583610b1d565b946020939093013593505050565b600080600060608486031215610b7857600080fd5b610b8184610b1d565b9250610b8f60208501610b1d565b9150604084013590509250925092565b600060208284031215610bb157600080fd5b610bba82610b1d565b9392505050565b634e487b7160e01b600052604160045260246000fd5b60006020808385031215610bea57600080fd5b823567ffffffffffffffff80821115610c0257600080fd5b818501915085601f830112610c1657600080fd5b813581811115610c2857610c28610bc1565b8060051b604051601f19603f83011681018181108582111715610c4d57610c4d610bc1565b604052918252848201925083810185019188831115610c6b57600080fd5b938501935b82851015610c9057610c8185610b1d565b84529385019392850192610c70565b98975050505050505050565b60008060408385031215610caf57600080fd5b610cb883610b1d565b9150610cc660208401610b1d565b90509250929050565b600181811c90821680610ce357607f821691505b602082108103610d0357634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b60008219821115610d3257610d32610d09565b500190565b634e487b7160e01b600052603260045260246000fd5b600060018201610d5f57610d5f610d09565b5060010190565b815160009082906020808601845b83811015610d995781516001600160a01b031685529382019390820190600101610d74565b5092969550505050505056fea26469706673582212201004c325ad1f1a8e0482e0723955abc1dcdabb30b51014e05555b6c9d9d0c2bd64736f6c634300080d0033000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000001200000000000000000000000000000000000000064f964e68233a76f52000000000000000000000000000000000000000000000000000000000000000000000054d4f4f4b5900000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000044d4f4f4b00000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x608060405234801561001057600080fd5b506004361061010b5760003560e01c806389daf799116100a2578063a457c2d711610071578063a457c2d714610224578063a9059cbb14610237578063dbac26e91461024a578063dd62ed3e1461026d578063f2fde38b1461028057600080fd5b806389daf799146101db5780638da5cb5b146101ee578063935eb35f1461020957806395d89b411461021c57600080fd5b8063313ce567116100de578063313ce56714610176578063395093511461019557806370a08231146101a8578063715018a6146101d157600080fd5b806306fdde0314610110578063095ea7b31461012e57806318160ddd1461015157806323b872dd14610163575b600080fd5b610118610293565b6040516101259190610ac8565b60405180910390f35b61014161013c366004610b39565b610325565b6040519015158152602001610125565b6002545b604051908152602001610125565b610141610171366004610b63565b61033d565b600554600160a01b900460ff1660405160ff9091168152602001610125565b6101416101a3366004610b39565b610361565b6101556101b6366004610b9f565b6001600160a01b031660009081526020819052604090205490565b6101d9610383565b005b6101d96101e9366004610bd7565b610397565b6005546040516001600160a01b039091168152602001610125565b6101d9610217366004610bd7565b610449565b6101186104fb565b610141610232366004610b39565b61050a565b610141610245366004610b39565b61058a565b610141610258366004610b9f565b60066020526000908152604090205460ff1681565b61015561027b366004610c9c565b610598565b6101d961028e366004610b9f565b6105c3565b6060600380546102a290610ccf565b80601f01602080910402602001604051908101604052809291908181526020018280546102ce90610ccf565b801561031b5780601f106102f05761010080835404028352916020019161031b565b820191906000526020600020905b8154815290600101906020018083116102fe57829003601f168201915b5050505050905090565b60003361033381858561063c565b5060019392505050565b60003361034b858285610760565b6103568585856107da565b506001949350505050565b6000336103338185856103748383610598565b61037e9190610d1f565b61063c565b61038b610989565b61039560006109e3565b565b61039f610989565b60005b8151811015610407576000600660008484815181106103c3576103c3610d37565b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff1916911515919091179055806103ff81610d4d565b9150506103a2565b50806040516104169190610d66565b604051908190038120907f2aeef244739d0f2066344f0fc05a07a0434de53daace697f780d8660b4c6b2f290600090a250565b610451610989565b60005b81518110156104b95760016006600084848151811061047557610475610d37565b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff1916911515919091179055806104b181610d4d565b915050610454565b50806040516104c89190610d66565b604051908190038120907f8eaaaea6f77c65cfde1859af8365ec18cb9f0db5762cb2f5cc798ab93748c55290600090a250565b6060600480546102a290610ccf565b600033816105188286610598565b90508381101561057d5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084015b60405180910390fd5b610356828686840361063c565b6000336103338185856107da565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6105cb610989565b6001600160a01b0381166106305760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610574565b610639816109e3565b50565b6001600160a01b03831661069e5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610574565b6001600160a01b0382166106ff5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610574565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b600061076c8484610598565b905060001981146107d457818110156107c75760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610574565b6107d4848484840361063c565b50505050565b6001600160a01b03831661083e5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610574565b6001600160a01b0382166108a05760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610574565b6108ab838383610a35565b6001600160a01b038316600090815260208190526040902054818110156109235760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610574565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a36107d4565b6005546001600160a01b031633146103955760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610574565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b03831660009081526006602052604090205460ff16158015610a7757506001600160a01b03821660009081526006602052604090205460ff16155b610ac35760405162461bcd60e51b815260206004820152601a60248201527f45524332303a20626c61636b6c697374656420616464726573730000000000006044820152606401610574565b505050565b600060208083528351808285015260005b81811015610af557858101830151858201604001528201610ad9565b81811115610b07576000604083870101525b50601f01601f1916929092016040019392505050565b80356001600160a01b0381168114610b3457600080fd5b919050565b60008060408385031215610b4c57600080fd5b610b5583610b1d565b946020939093013593505050565b600080600060608486031215610b7857600080fd5b610b8184610b1d565b9250610b8f60208501610b1d565b9150604084013590509250925092565b600060208284031215610bb157600080fd5b610bba82610b1d565b9392505050565b634e487b7160e01b600052604160045260246000fd5b60006020808385031215610bea57600080fd5b823567ffffffffffffffff80821115610c0257600080fd5b818501915085601f830112610c1657600080fd5b813581811115610c2857610c28610bc1565b8060051b604051601f19603f83011681018181108582111715610c4d57610c4d610bc1565b604052918252848201925083810185019188831115610c6b57600080fd5b938501935b82851015610c9057610c8185610b1d565b84529385019392850192610c70565b98975050505050505050565b60008060408385031215610caf57600080fd5b610cb883610b1d565b9150610cc660208401610b1d565b90509250929050565b600181811c90821680610ce357607f821691505b602082108103610d0357634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b60008219821115610d3257610d32610d09565b500190565b634e487b7160e01b600052603260045260246000fd5b600060018201610d5f57610d5f610d09565b5060010190565b815160009082906020808601845b83811015610d995781516001600160a01b031685529382019390820190600101610d74565b5092969550505050505056fea26469706673582212201004c325ad1f1a8e0482e0723955abc1dcdabb30b51014e05555b6c9d9d0c2bd64736f6c634300080d0033

Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)

000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000001200000000000000000000000000000000000000064f964e68233a76f52000000000000000000000000000000000000000000000000000000000000000000000054d4f4f4b5900000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000044d4f4f4b00000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _name (string): MOOKY
Arg [1] : _symbol (string): MOOK
Arg [2] : __decimals (uint8): 18
Arg [3] : _totalSupply (uint256): 500000000000000000000000000000

-----Encoded View---------------
8 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000012
Arg [3] : 00000000000000000000000000000000000000064f964e68233a76f520000000
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000005
Arg [5] : 4d4f4f4b59000000000000000000000000000000000000000000000000000000
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [7] : 4d4f4f4b00000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

20592:1371:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9351:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11702:201;;;;;;:::i;:::-;;:::i;:::-;;;1218:14:1;;1211:22;1193:41;;1181:2;1166:18;11702:201:0;1053:187:1;10471:108:0;10559:12;;10471:108;;;1391:25:1;;;1379:2;1364:18;10471:108:0;1245:177:1;12483:295:0;;;;;;:::i;:::-;;:::i;21090:92::-;21165:9;;-1:-1:-1;;;21165:9:0;;;;21090:92;;1932:4:1;1920:17;;;1902:36;;1890:2;1875:18;21090:92:0;1760:184:1;13187:238:0;;;;;;:::i;:::-;;:::i;10642:127::-;;;;;;:::i;:::-;-1:-1:-1;;;;;10743:18:0;10716:7;10743:18;;;;;;;;;;;;10642:127;2776:103;;;:::i;:::-;;21689:271;;;;;;:::i;:::-;;:::i;2128:87::-;2201:6;;2128:87;;-1:-1:-1;;;;;2201:6:0;;;3544:51:1;;3532:2;3517:18;2128:87:0;3398:203:1;21421:260:0;;;;;;:::i;:::-;;:::i;9570:104::-;;;:::i;13928:436::-;;;;;;:::i;:::-;;:::i;10975:193::-;;;;;;:::i;:::-;;:::i;20662:43::-;;;;;;:::i;:::-;;;;;;;;;;;;;;;;11231:151;;;;;;:::i;:::-;;:::i;3034:201::-;;;;;;:::i;:::-;;:::i;9351:100::-;9405:13;9438:5;9431:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9351:100;:::o;11702:201::-;11785:4;759:10;11841:32;759:10;11857:7;11866:6;11841:8;:32::i;:::-;-1:-1:-1;11891:4:0;;11702:201;-1:-1:-1;;;11702:201:0:o;12483:295::-;12614:4;759:10;12672:38;12688:4;759:10;12703:6;12672:15;:38::i;:::-;12721:27;12731:4;12737:2;12741:6;12721:9;:27::i;:::-;-1:-1:-1;12766:4:0;;12483:295;-1:-1:-1;;;;12483:295:0:o;13187:238::-;13275:4;759:10;13331:64;759:10;13347:7;13384:10;13356:25;759:10;13347:7;13356:9;:25::i;:::-;:38;;;;:::i;:::-;13331:8;:64::i;2776:103::-;2014:13;:11;:13::i;:::-;2841:30:::1;2868:1;2841:18;:30::i;:::-;2776:103::o:0;21689:271::-;2014:13;:11;:13::i;:::-;21802:9:::1;21797:107;21821:9;:16;21817:1;:20;21797:107;;;21887:5;21859:11;:25;21871:9;21881:1;21871:12;;;;;;;;:::i;:::-;;::::0;;::::1;::::0;;;;;;;-1:-1:-1;;;;;21859:25:0::1;::::0;;;::::1;::::0;;;;;;-1:-1:-1;21859:25:0;:33;;-1:-1:-1;;21859:33:0::1;::::0;::::1;;::::0;;;::::1;::::0;;21839:3;::::1;::::0;::::1;:::i;:::-;;;;21797:107;;;;21942:9;21919:33;;;;;;:::i;:::-;;::::0;;;;::::1;::::0;;;::::1;::::0;;;::::1;21689:271:::0;:::o;21421:260::-;2014:13;:11;:13::i;:::-;21529:9:::1;21524:106;21548:9;:16;21544:1;:20;21524:106;;;21614:4;21586:11;:25;21598:9;21608:1;21598:12;;;;;;;;:::i;:::-;;::::0;;::::1;::::0;;;;;;;-1:-1:-1;;;;;21586:25:0::1;::::0;;;::::1;::::0;;;;;;-1:-1:-1;21586:25:0;:32;;-1:-1:-1;;21586:32:0::1;::::0;::::1;;::::0;;;::::1;::::0;;21566:3;::::1;::::0;::::1;:::i;:::-;;;;21524:106;;;;21663:9;21645:28;;;;;;:::i;:::-;;::::0;;;;::::1;::::0;;;::::1;::::0;;;::::1;21421:260:::0;:::o;9570:104::-;9626:13;9659:7;9652:14;;;;;:::i;13928:436::-;14021:4;759:10;14021:4;14104:25;759:10;14121:7;14104:9;:25::i;:::-;14077:52;;14168:15;14148:16;:35;;14140:85;;;;-1:-1:-1;;;14140:85:0;;5569:2:1;14140:85:0;;;5551:21:1;5608:2;5588:18;;;5581:30;5647:34;5627:18;;;5620:62;-1:-1:-1;;;5698:18:1;;;5691:35;5743:19;;14140:85:0;;;;;;;;;14261:60;14270:5;14277:7;14305:15;14286:16;:34;14261:8;:60::i;10975:193::-;11054:4;759:10;11110:28;759:10;11127:2;11131:6;11110:9;:28::i;11231:151::-;-1:-1:-1;;;;;11347:18:0;;;11320:7;11347:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;11231:151::o;3034:201::-;2014:13;:11;:13::i;:::-;-1:-1:-1;;;;;3123:22:0;::::1;3115:73;;;::::0;-1:-1:-1;;;3115:73:0;;5975:2:1;3115:73:0::1;::::0;::::1;5957:21:1::0;6014:2;5994:18;;;5987:30;6053:34;6033:18;;;6026:62;-1:-1:-1;;;6104:18:1;;;6097:36;6150:19;;3115:73:0::1;5773:402:1::0;3115:73:0::1;3199:28;3218:8;3199:18;:28::i;:::-;3034:201:::0;:::o;17955:380::-;-1:-1:-1;;;;;18091:19:0;;18083:68;;;;-1:-1:-1;;;18083:68:0;;6382:2:1;18083:68:0;;;6364:21:1;6421:2;6401:18;;;6394:30;6460:34;6440:18;;;6433:62;-1:-1:-1;;;6511:18:1;;;6504:34;6555:19;;18083:68:0;6180:400:1;18083:68:0;-1:-1:-1;;;;;18170:21:0;;18162:68;;;;-1:-1:-1;;;18162:68:0;;6787:2:1;18162:68:0;;;6769:21:1;6826:2;6806:18;;;6799:30;6865:34;6845:18;;;6838:62;-1:-1:-1;;;6916:18:1;;;6909:32;6958:19;;18162:68:0;6585:398:1;18162:68:0;-1:-1:-1;;;;;18243:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;18295:32;;1391:25:1;;;18295:32:0;;1364:18:1;18295:32:0;;;;;;;17955:380;;;:::o;18626:453::-;18761:24;18788:25;18798:5;18805:7;18788:9;:25::i;:::-;18761:52;;-1:-1:-1;;18828:16:0;:37;18824:248;;18910:6;18890:16;:26;;18882:68;;;;-1:-1:-1;;;18882:68:0;;7190:2:1;18882:68:0;;;7172:21:1;7229:2;7209:18;;;7202:30;7268:31;7248:18;;;7241:59;7317:18;;18882:68:0;6988:353:1;18882:68:0;18994:51;19003:5;19010:7;19038:6;19019:16;:25;18994:8;:51::i;:::-;18750:329;18626:453;;;:::o;14834:840::-;-1:-1:-1;;;;;14965:18:0;;14957:68;;;;-1:-1:-1;;;14957:68:0;;7548:2:1;14957:68:0;;;7530:21:1;7587:2;7567:18;;;7560:30;7626:34;7606:18;;;7599:62;-1:-1:-1;;;7677:18:1;;;7670:35;7722:19;;14957:68:0;7346:401:1;14957:68:0;-1:-1:-1;;;;;15044:16:0;;15036:64;;;;-1:-1:-1;;;15036:64:0;;7954:2:1;15036:64:0;;;7936:21:1;7993:2;7973:18;;;7966:30;8032:34;8012:18;;;8005:62;-1:-1:-1;;;8083:18:1;;;8076:33;8126:19;;15036:64:0;7752:399:1;15036:64:0;15113:38;15134:4;15140:2;15144:6;15113:20;:38::i;:::-;-1:-1:-1;;;;;15186:15:0;;15164:19;15186:15;;;;;;;;;;;15220:21;;;;15212:72;;;;-1:-1:-1;;;15212:72:0;;8358:2:1;15212:72:0;;;8340:21:1;8397:2;8377:18;;;8370:30;8436:34;8416:18;;;8409:62;-1:-1:-1;;;8487:18:1;;;8480:36;8533:19;;15212:72:0;8156:402:1;15212:72:0;-1:-1:-1;;;;;15320:15:0;;;:9;:15;;;;;;;;;;;15338:20;;;15320:38;;15538:13;;;;;;;;;;:23;;;;;;15590:26;;1391:25:1;;;15538:13:0;;15590:26;;1364:18:1;15590:26:0;;;;;;;15629:37;21188:225;2293:132;2201:6;;-1:-1:-1;;;;;2201:6:0;759:10;2357:23;2349:68;;;;-1:-1:-1;;;2349:68:0;;8765:2:1;2349:68:0;;;8747:21:1;;;8784:18;;;8777:30;8843:34;8823:18;;;8816:62;8895:18;;2349:68:0;8563:356:1;3395:191:0;3488:6;;;-1:-1:-1;;;;;3505:17:0;;;-1:-1:-1;;;;;;3505:17:0;;;;;;;3538:40;;3488:6;;;3505:17;3488:6;;3538:40;;3469:16;;3538:40;3458:128;3395:191;:::o;21188:225::-;-1:-1:-1;;;;;21337:17:0;;;;;;:11;:17;;;;;;;;21336:18;:38;;;;-1:-1:-1;;;;;;21359:15:0;;;;;;:11;:15;;;;;;;;21358:16;21336:38;21328:77;;;;-1:-1:-1;;;21328:77:0;;9126:2:1;21328:77:0;;;9108:21:1;9165:2;9145:18;;;9138:30;9204:28;9184:18;;;9177:56;9250:18;;21328:77:0;8924:350:1;21328:77:0;21188:225;;;:::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:186::-;2008:6;2061:2;2049:9;2040:7;2036:23;2032:32;2029:52;;;2077:1;2074;2067:12;2029:52;2100:29;2119:9;2100:29;:::i;:::-;2090:39;1949:186;-1:-1:-1;;;1949:186:1:o;2140:127::-;2201:10;2196:3;2192:20;2189:1;2182:31;2232:4;2229:1;2222:15;2256:4;2253:1;2246:15;2272:1121;2356:6;2387:2;2430;2418:9;2409:7;2405:23;2401:32;2398:52;;;2446:1;2443;2436:12;2398:52;2486:9;2473:23;2515:18;2556:2;2548:6;2545:14;2542:34;;;2572:1;2569;2562:12;2542:34;2610:6;2599:9;2595:22;2585:32;;2655:7;2648:4;2644:2;2640:13;2636:27;2626:55;;2677:1;2674;2667:12;2626:55;2713:2;2700:16;2735:2;2731;2728:10;2725:36;;;2741:18;;:::i;:::-;2787:2;2784:1;2780:10;2819:2;2813:9;2882:2;2878:7;2873:2;2869;2865:11;2861:25;2853:6;2849:38;2937:6;2925:10;2922:22;2917:2;2905:10;2902:18;2899:46;2896:72;;;2948:18;;:::i;:::-;2984:2;2977:22;3034:18;;;3068:15;;;;-1:-1:-1;3110:11:1;;;3106:20;;;3138:19;;;3135:39;;;3170:1;3167;3160:12;3135:39;3194:11;;;;3214:148;3230:6;3225:3;3222:15;3214:148;;;3296:23;3315:3;3296:23;:::i;:::-;3284:36;;3247:12;;;;3340;;;;3214:148;;;3381:6;2272:1121;-1:-1:-1;;;;;;;;2272:1121:1:o;3606:260::-;3674:6;3682;3735:2;3723:9;3714:7;3710:23;3706:32;3703:52;;;3751:1;3748;3741:12;3703:52;3774:29;3793:9;3774:29;:::i;:::-;3764:39;;3822:38;3856:2;3845:9;3841:18;3822:38;:::i;:::-;3812:48;;3606:260;;;;;:::o;3871:380::-;3950:1;3946:12;;;;3993;;;4014:61;;4068:4;4060:6;4056:17;4046:27;;4014:61;4121:2;4113:6;4110:14;4090:18;4087:38;4084:161;;4167:10;4162:3;4158:20;4155:1;4148:31;4202:4;4199:1;4192:15;4230:4;4227:1;4220:15;4084:161;;3871:380;;;:::o;4256:127::-;4317:10;4312:3;4308:20;4305:1;4298:31;4348:4;4345:1;4338:15;4372:4;4369:1;4362:15;4388:128;4428:3;4459:1;4455:6;4452:1;4449:13;4446:39;;;4465:18;;:::i;:::-;-1:-1:-1;4501:9:1;;4388:128::o;4521:127::-;4582:10;4577:3;4573:20;4570:1;4563:31;4613:4;4610:1;4603:15;4637:4;4634:1;4627:15;4653:135;4692:3;4713:17;;;4710:43;;4733:18;;:::i;:::-;-1:-1:-1;4780:1:1;4769:13;;4653:135::o;4793:569::-;5011:13;;4954:3;;4985;;5064:4;5091:15;;;4954:3;5134:201;5148:6;5145:1;5142:13;5134:201;;;5215:13;;-1:-1:-1;;;;;5211:39:1;5197:54;;5273:14;;;;5310:15;;;;5247:1;5163:9;5134:201;;;-1:-1:-1;5351:5:1;;4793:569;-1:-1:-1;;;;;;4793:569:1:o

Swarm Source

ipfs://1004c325ad1f1a8e0482e0723955abc1dcdabb30b51014e05555b6c9d9d0c2bd
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.