ETH Price: $2,966.73 (-1.78%)
Gas: 2 Gwei

Token

SoonSwap (SOON)
 

Overview

Max Total Supply

1,000,000,000 SOON

Holders

1,688 ( 0.118%)

Market

Price

$0.01 @ 0.000002 ETH (+18.50%)

Onchain Market Cap

$6,071,320.00

Circulating Supply Market Cap

$2,049,469.00

Other Info

Token Contract (WITH 18 Decimals)

Filtered by Token Holder
boltna82.eth
Balance
200 SOON

Value
$1.21 ( ~0.000407856015248461 Eth) [0.0000%]
0x0df4e1073f1258604f36eef0dcbff546f1bbac23
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

The vision of the SoonVerse is to incubate a batch of top quality games, providing gamers a play-for-fun and play-to-earn experience and creating a low-threshold portal to the metaverse!

Market

Volume (24H):$1,263,550.00
Market Capitalization:$2,049,469.00
Circulating Supply:329,513,029.00 SOON
Market Data Source: Coinmarketcap

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
SoonToken

Compiler Version
v0.8.18+commit.87f61d96

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity Multiple files format)

File 7 of 7: SoonToken.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.18;

import "ERC20.sol";
import "Ownable.sol";
import "Pausable.sol";


contract SoonToken is ERC20,Ownable,Pausable{

  uint256 public constant _cap = 1000000000*(10**18);

    constructor() ERC20("SoonSwap","SOON") {}

    function mint(address account, uint256 amount) external onlyOwner {
        require(totalSupply() + amount <= _cap, "SoonToken._mint: cap exceeded");
        super._mint(account, amount);
    }

    function pause() external onlyOwner {
        _pause();
    }

    /*
    _unpause literally derives from pausable.
    */
    function unpause() external onlyOwner{
        _unpause();
    }



    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual override {
        super._beforeTokenTransfer(from, to, amount);
        require(!paused(), "ERC20Pausable: token transfer while paused");
    }


   
}

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

pragma solidity ^0.8.0;

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

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

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

pragma solidity ^0.8.0;

import "IERC20.sol";
import "IERC20Metadata.sol";
import "Context.sol";

/**
 * @dev Implementation of the {IERC20} interface.
 *
 * This implementation is agnostic to the way tokens are created. This means
 * that a supply mechanism has to be added in a derived contract using {_mint}.
 * For a generic mechanism see {ERC20PresetMinterPauser}.
 *
 * TIP: For a detailed writeup see our guide
 * https://forum.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 3 of 7: IERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

import "IERC20.sol";

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

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

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

File 5 of 7: Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol)

pragma solidity ^0.8.0;

import "Context.sol";

/**
 * @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 6 of 7: Pausable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (security/Pausable.sol)

pragma solidity ^0.8.0;

import "Context.sol";

/**
 * @dev Contract module which allows children to implement an emergency stop
 * mechanism that can be triggered by an authorized account.
 *
 * This module is used through inheritance. It will make available the
 * modifiers `whenNotPaused` and `whenPaused`, which can be applied to
 * the functions of your contract. Note that they will not be pausable by
 * simply including this module, only once the modifiers are put in place.
 */
abstract contract Pausable is Context {
    /**
     * @dev Emitted when the pause is triggered by `account`.
     */
    event Paused(address account);

    /**
     * @dev Emitted when the pause is lifted by `account`.
     */
    event Unpaused(address account);

    bool private _paused;

    /**
     * @dev Initializes the contract in unpaused state.
     */
    constructor() {
        _paused = false;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is not paused.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    modifier whenNotPaused() {
        _requireNotPaused();
        _;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is paused.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    modifier whenPaused() {
        _requirePaused();
        _;
    }

    /**
     * @dev Returns true if the contract is paused, and false otherwise.
     */
    function paused() public view virtual returns (bool) {
        return _paused;
    }

    /**
     * @dev Throws if the contract is paused.
     */
    function _requireNotPaused() internal view virtual {
        require(!paused(), "Pausable: paused");
    }

    /**
     * @dev Throws if the contract is not paused.
     */
    function _requirePaused() internal view virtual {
        require(paused(), "Pausable: not paused");
    }

    /**
     * @dev Triggers stopped state.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    function _pause() internal virtual whenNotPaused {
        _paused = true;
        emit Paused(_msgSender());
    }

    /**
     * @dev Returns to normal state.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    function _unpause() internal virtual whenPaused {
        _paused = false;
        emit Unpaused(_msgSender());
    }
}

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":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","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"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[],"name":"_cap","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":[],"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":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[],"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":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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"},{"inputs":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040523480156200001157600080fd5b50604051806040016040528060088152602001670536f6f6e537761760c41b8152506040518060400160405280600481526020016329a7a7a760e11b81525081600390816200006191906200019b565b5060046200007082826200019b565b5050506200008d62000087620000a060201b60201c565b620000a4565b6005805460ff60a01b1916905562000267565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200012157607f821691505b6020821081036200014257634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200019657600081815260208120601f850160051c81016020861015620001715750805b601f850160051c820191505b8181101562000192578281556001016200017d565b5050505b505050565b81516001600160401b03811115620001b757620001b7620000f6565b620001cf81620001c884546200010c565b8462000148565b602080601f831160018114620002075760008415620001ee5750858301515b600019600386901b1c1916600185901b17855562000192565b600085815260208120601f198616915b82811015620002385788860151825594840194600190910190840162000217565b5085821015620002575787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b610da580620002776000396000f3fe608060405234801561001057600080fd5b50600436106101215760003560e01c80635c975abb116100ad57806395d89b411161007157806395d89b4114610244578063a457c2d71461024c578063a9059cbb1461025f578063dd62ed3e14610272578063f2fde38b1461028557600080fd5b80635c975abb146101de57806370a08231146101f0578063715018a6146102195780638456cb59146102215780638da5cb5b1461022957600080fd5b806323b872dd116100f457806323b872dd1461018c578063313ce5671461019f57806339509351146101ae5780633f4ba83a146101c157806340c10f19146101cb57600080fd5b8063060cf4e81461012657806306fdde031461014c578063095ea7b31461016157806318160ddd14610184575b600080fd5b6101396b033b2e3c9fd0803ce800000081565b6040519081526020015b60405180910390f35b610154610298565b6040516101439190610bef565b61017461016f366004610c59565b61032a565b6040519015158152602001610143565b600254610139565b61017461019a366004610c83565b610344565b60405160128152602001610143565b6101746101bc366004610c59565b610368565b6101c961038a565b005b6101c96101d9366004610c59565b61039c565b600554600160a01b900460ff16610174565b6101396101fe366004610cbf565b6001600160a01b031660009081526020819052604090205490565b6101c9610426565b6101c9610438565b6005546040516001600160a01b039091168152602001610143565b610154610448565b61017461025a366004610c59565b610457565b61017461026d366004610c59565b6104d2565b610139610280366004610ce1565b6104e0565b6101c9610293366004610cbf565b61050b565b6060600380546102a790610d14565b80601f01602080910402602001604051908101604052809291908181526020018280546102d390610d14565b80156103205780601f106102f557610100808354040283529160200191610320565b820191906000526020600020905b81548152906001019060200180831161030357829003601f168201915b5050505050905090565b600033610338818585610584565b60019150505b92915050565b6000336103528582856106a8565b61035d858585610722565b506001949350505050565b60003361033881858561037b83836104e0565b6103859190610d4e565b610584565b6103926108d1565b61039a61092b565b565b6103a46108d1565b6b033b2e3c9fd0803ce8000000816103bb60025490565b6103c59190610d4e565b11156104185760405162461bcd60e51b815260206004820152601d60248201527f536f6f6e546f6b656e2e5f6d696e743a2063617020657863656564656400000060448201526064015b60405180910390fd5b6104228282610980565b5050565b61042e6108d1565b61039a6000610a4b565b6104406108d1565b61039a610a9d565b6060600480546102a790610d14565b6000338161046582866104e0565b9050838110156104c55760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b606482015260840161040f565b61035d8286868403610584565b600033610338818585610722565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6105136108d1565b6001600160a01b0381166105785760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161040f565b61058181610a4b565b50565b6001600160a01b0383166105e65760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b606482015260840161040f565b6001600160a01b0382166106475760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b606482015260840161040f565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b60006106b484846104e0565b9050600019811461071c578181101561070f5760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000604482015260640161040f565b61071c8484848403610584565b50505050565b6001600160a01b0383166107865760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b606482015260840161040f565b6001600160a01b0382166107e85760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b606482015260840161040f565b6107f3838383610ae0565b6001600160a01b0383166000908152602081905260409020548181101561086b5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b606482015260840161040f565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a361071c565b6005546001600160a01b0316331461039a5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161040f565b610933610b52565b6005805460ff60a01b191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b6040516001600160a01b03909116815260200160405180910390a1565b6001600160a01b0382166109d65760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640161040f565b6109e260008383610ae0565b80600260008282546109f49190610d4e565b90915550506001600160a01b038216600081815260208181526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b610aa5610ba2565b6005805460ff60a01b1916600160a01b1790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586109633390565b600554600160a01b900460ff1615610b4d5760405162461bcd60e51b815260206004820152602a60248201527f45524332305061757361626c653a20746f6b656e207472616e736665722077686044820152691a5b19481c185d5cd95960b21b606482015260840161040f565b505050565b600554600160a01b900460ff1661039a5760405162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b604482015260640161040f565b600554600160a01b900460ff161561039a5760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015260640161040f565b600060208083528351808285015260005b81811015610c1c57858101830151858201604001528201610c00565b506000604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b0381168114610c5457600080fd5b919050565b60008060408385031215610c6c57600080fd5b610c7583610c3d565b946020939093013593505050565b600080600060608486031215610c9857600080fd5b610ca184610c3d565b9250610caf60208501610c3d565b9150604084013590509250925092565b600060208284031215610cd157600080fd5b610cda82610c3d565b9392505050565b60008060408385031215610cf457600080fd5b610cfd83610c3d565b9150610d0b60208401610c3d565b90509250929050565b600181811c90821680610d2857607f821691505b602082108103610d4857634e487b7160e01b600052602260045260246000fd5b50919050565b8082018082111561033e57634e487b7160e01b600052601160045260246000fdfea264697066735822122041f10d153494afb97781f0ff52e72be8733dc3b4fc09bdb0308c16e5f01eb49d64736f6c63430008120033

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101215760003560e01c80635c975abb116100ad57806395d89b411161007157806395d89b4114610244578063a457c2d71461024c578063a9059cbb1461025f578063dd62ed3e14610272578063f2fde38b1461028557600080fd5b80635c975abb146101de57806370a08231146101f0578063715018a6146102195780638456cb59146102215780638da5cb5b1461022957600080fd5b806323b872dd116100f457806323b872dd1461018c578063313ce5671461019f57806339509351146101ae5780633f4ba83a146101c157806340c10f19146101cb57600080fd5b8063060cf4e81461012657806306fdde031461014c578063095ea7b31461016157806318160ddd14610184575b600080fd5b6101396b033b2e3c9fd0803ce800000081565b6040519081526020015b60405180910390f35b610154610298565b6040516101439190610bef565b61017461016f366004610c59565b61032a565b6040519015158152602001610143565b600254610139565b61017461019a366004610c83565b610344565b60405160128152602001610143565b6101746101bc366004610c59565b610368565b6101c961038a565b005b6101c96101d9366004610c59565b61039c565b600554600160a01b900460ff16610174565b6101396101fe366004610cbf565b6001600160a01b031660009081526020819052604090205490565b6101c9610426565b6101c9610438565b6005546040516001600160a01b039091168152602001610143565b610154610448565b61017461025a366004610c59565b610457565b61017461026d366004610c59565b6104d2565b610139610280366004610ce1565b6104e0565b6101c9610293366004610cbf565b61050b565b6060600380546102a790610d14565b80601f01602080910402602001604051908101604052809291908181526020018280546102d390610d14565b80156103205780601f106102f557610100808354040283529160200191610320565b820191906000526020600020905b81548152906001019060200180831161030357829003601f168201915b5050505050905090565b600033610338818585610584565b60019150505b92915050565b6000336103528582856106a8565b61035d858585610722565b506001949350505050565b60003361033881858561037b83836104e0565b6103859190610d4e565b610584565b6103926108d1565b61039a61092b565b565b6103a46108d1565b6b033b2e3c9fd0803ce8000000816103bb60025490565b6103c59190610d4e565b11156104185760405162461bcd60e51b815260206004820152601d60248201527f536f6f6e546f6b656e2e5f6d696e743a2063617020657863656564656400000060448201526064015b60405180910390fd5b6104228282610980565b5050565b61042e6108d1565b61039a6000610a4b565b6104406108d1565b61039a610a9d565b6060600480546102a790610d14565b6000338161046582866104e0565b9050838110156104c55760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b606482015260840161040f565b61035d8286868403610584565b600033610338818585610722565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6105136108d1565b6001600160a01b0381166105785760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161040f565b61058181610a4b565b50565b6001600160a01b0383166105e65760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b606482015260840161040f565b6001600160a01b0382166106475760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b606482015260840161040f565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b60006106b484846104e0565b9050600019811461071c578181101561070f5760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000604482015260640161040f565b61071c8484848403610584565b50505050565b6001600160a01b0383166107865760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b606482015260840161040f565b6001600160a01b0382166107e85760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b606482015260840161040f565b6107f3838383610ae0565b6001600160a01b0383166000908152602081905260409020548181101561086b5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b606482015260840161040f565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a361071c565b6005546001600160a01b0316331461039a5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161040f565b610933610b52565b6005805460ff60a01b191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b6040516001600160a01b03909116815260200160405180910390a1565b6001600160a01b0382166109d65760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640161040f565b6109e260008383610ae0565b80600260008282546109f49190610d4e565b90915550506001600160a01b038216600081815260208181526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b610aa5610ba2565b6005805460ff60a01b1916600160a01b1790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586109633390565b600554600160a01b900460ff1615610b4d5760405162461bcd60e51b815260206004820152602a60248201527f45524332305061757361626c653a20746f6b656e207472616e736665722077686044820152691a5b19481c185d5cd95960b21b606482015260840161040f565b505050565b600554600160a01b900460ff1661039a5760405162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b604482015260640161040f565b600554600160a01b900460ff161561039a5760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015260640161040f565b600060208083528351808285015260005b81811015610c1c57858101830151858201604001528201610c00565b506000604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b0381168114610c5457600080fd5b919050565b60008060408385031215610c6c57600080fd5b610c7583610c3d565b946020939093013593505050565b600080600060608486031215610c9857600080fd5b610ca184610c3d565b9250610caf60208501610c3d565b9150604084013590509250925092565b600060208284031215610cd157600080fd5b610cda82610c3d565b9392505050565b60008060408385031215610cf457600080fd5b610cfd83610c3d565b9150610d0b60208401610c3d565b90509250929050565b600181811c90821680610d2857607f821691505b602082108103610d4857634e487b7160e01b600052602260045260246000fd5b50919050565b8082018082111561033e57634e487b7160e01b600052601160045260246000fdfea264697066735822122041f10d153494afb97781f0ff52e72be8733dc3b4fc09bdb0308c16e5f01eb49d64736f6c63430008120033

Deployed Bytecode Sourcemap

126:822:6:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;175:50;;206:19;175:50;;;;;160:25:7;;;148:2;133:18;175:50:6;;;;;;;;2127:98:1;;;:::i;:::-;;;;;;;:::i;4404:197::-;;;;;;:::i;:::-;;:::i;:::-;;;1351:14:7;;1344:22;1326:41;;1314:2;1299:18;4404:197:1;1186:187:7;3215:106:1;3302:12;;3215:106;;5163:286;;;;;;:::i;:::-;;:::i;3064:91::-;;;3146:2;1853:36:7;;1841:2;1826:18;3064:91:1;1711:184:7;5844:234:1;;;;;;:::i;:::-;;:::i;605:64:6:-;;;:::i;:::-;;279:193;;;;;;:::i;:::-;;:::i;1606:84:5:-;1676:7;;-1:-1:-1;;;1676:7:5;;;;1606:84;;3379:125:1;;;;;;:::i;:::-;-1:-1:-1;;;;;3479:18:1;3453:7;3479:18;;;;;;;;;;;;3379:125;1822:101:4;;;:::i;478:61:6:-;;;:::i;1192:85:4:-;1264:6;;1192:85;;-1:-1:-1;;;;;1264:6:4;;;2237:51:7;;2225:2;2210:18;1192:85:4;2091:203:7;2338:102:1;;;:::i;6565:427::-;;;;;;:::i;:::-;;:::i;3700:189::-;;;;;;:::i;:::-;;:::i;3947:149::-;;;;;;:::i;:::-;;:::i;2072:198:4:-;;;;;;:::i;:::-;;:::i;2127:98:1:-;2181:13;2213:5;2206:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2127:98;:::o;4404:197::-;4487:4;719:10:0;4541:32:1;719:10:0;4557:7:1;4566:6;4541:8;:32::i;:::-;4590:4;4583:11;;;4404:197;;;;;:::o;5163:286::-;5290:4;719:10:0;5346:38:1;5362:4;719:10:0;5377:6:1;5346:15;:38::i;:::-;5394:27;5404:4;5410:2;5414:6;5394:9;:27::i;:::-;-1:-1:-1;5438:4:1;;5163:286;-1:-1:-1;;;;5163:286:1:o;5844:234::-;5932:4;719:10:0;5986:64:1;719:10:0;6002:7:1;6039:10;6011:25;719:10:0;6002:7:1;6011:9;:25::i;:::-;:38;;;;:::i;:::-;5986:8;:64::i;605::6:-;1085:13:4;:11;:13::i;:::-;652:10:6::1;:8;:10::i;:::-;605:64::o:0;279:193::-;1085:13:4;:11;:13::i;:::-;206:19:6::1;379:6;363:13;3302:12:1::0;;;3215:106;363:13:6::1;:22;;;;:::i;:::-;:30;;355:72;;;::::0;-1:-1:-1;;;355:72:6;;3378:2:7;355:72:6::1;::::0;::::1;3360:21:7::0;3417:2;3397:18;;;3390:30;3456:31;3436:18;;;3429:59;3505:18;;355:72:6::1;;;;;;;;;437:28;449:7;458:6;437:11;:28::i;:::-;279:193:::0;;:::o;1822:101:4:-;1085:13;:11;:13::i;:::-;1886:30:::1;1913:1;1886:18;:30::i;478:61:6:-:0;1085:13:4;:11;:13::i;:::-;524:8:6::1;:6;:8::i;2338:102:1:-:0;2394:13;2426:7;2419:14;;;;;:::i;6565:427::-;6658:4;719:10:0;6658:4:1;6739:25;719:10:0;6756:7:1;6739:9;:25::i;:::-;6712:52;;6802:15;6782:16;:35;;6774:85;;;;-1:-1:-1;;;6774:85:1;;3736:2:7;6774:85:1;;;3718:21:7;3775:2;3755:18;;;3748:30;3814:34;3794:18;;;3787:62;-1:-1:-1;;;3865:18:7;;;3858:35;3910:19;;6774:85:1;3534:401:7;6774:85:1;6893:60;6902:5;6909:7;6937:15;6918:16;:34;6893:8;:60::i;3700:189::-;3779:4;719:10:0;3833:28:1;719:10:0;3850:2:1;3854:6;3833:9;:28::i;3947:149::-;-1:-1:-1;;;;;4062:18:1;;;4036:7;4062:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;3947:149::o;2072:198:4:-;1085:13;:11;:13::i;:::-;-1:-1:-1;;;;;2160:22:4;::::1;2152:73;;;::::0;-1:-1:-1;;;2152:73:4;;4142:2:7;2152:73:4::1;::::0;::::1;4124:21:7::0;4181:2;4161:18;;;4154:30;4220:34;4200:18;;;4193:62;-1:-1:-1;;;4271:18:7;;;4264:36;4317:19;;2152:73:4::1;3940:402:7::0;2152:73:4::1;2235:28;2254:8;2235:18;:28::i;:::-;2072:198:::0;:::o;10477:370:1:-;-1:-1:-1;;;;;10608:19:1;;10600:68;;;;-1:-1:-1;;;10600:68:1;;4549:2:7;10600:68:1;;;4531:21:7;4588:2;4568:18;;;4561:30;4627:34;4607:18;;;4600:62;-1:-1:-1;;;4678:18:7;;;4671:34;4722:19;;10600:68:1;4347:400:7;10600:68:1;-1:-1:-1;;;;;10686:21:1;;10678:68;;;;-1:-1:-1;;;10678:68:1;;4954:2:7;10678:68:1;;;4936:21:7;4993:2;4973:18;;;4966:30;5032:34;5012:18;;;5005:62;-1:-1:-1;;;5083:18:7;;;5076:32;5125:19;;10678:68:1;4752:398:7;10678:68:1;-1:-1:-1;;;;;10757:18:1;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;10808:32;;160:25:7;;;10808:32:1;;133:18:7;10808:32:1;;;;;;;10477:370;;;:::o;11128:441::-;11258:24;11285:25;11295:5;11302:7;11285:9;:25::i;:::-;11258:52;;-1:-1:-1;;11324:16:1;:37;11320:243;;11405:6;11385:16;:26;;11377:68;;;;-1:-1:-1;;;11377:68:1;;5357:2:7;11377:68:1;;;5339:21:7;5396:2;5376:18;;;5369:30;5435:31;5415:18;;;5408:59;5484:18;;11377:68:1;5155:353:7;11377:68:1;11487:51;11496:5;11503:7;11531:6;11512:16;:25;11487:8;:51::i;:::-;11248:321;11128:441;;;:::o;7446:818::-;-1:-1:-1;;;;;7572:18:1;;7564:68;;;;-1:-1:-1;;;7564:68:1;;5715:2:7;7564:68:1;;;5697:21:7;5754:2;5734:18;;;5727:30;5793:34;5773:18;;;5766:62;-1:-1:-1;;;5844:18:7;;;5837:35;5889:19;;7564:68:1;5513:401:7;7564:68:1;-1:-1:-1;;;;;7650:16:1;;7642:64;;;;-1:-1:-1;;;7642:64:1;;6121:2:7;7642:64:1;;;6103:21:7;6160:2;6140:18;;;6133:30;6199:34;6179:18;;;6172:62;-1:-1:-1;;;6250:18:7;;;6243:33;6293:19;;7642:64:1;5919:399:7;7642:64:1;7717:38;7738:4;7744:2;7748:6;7717:20;:38::i;:::-;-1:-1:-1;;;;;7788:15:1;;7766:19;7788:15;;;;;;;;;;;7821:21;;;;7813:72;;;;-1:-1:-1;;;7813:72:1;;6525:2:7;7813:72:1;;;6507:21:7;6564:2;6544:18;;;6537:30;6603:34;6583:18;;;6576:62;-1:-1:-1;;;6654:18:7;;;6647:36;6700:19;;7813:72:1;6323:402:7;7813:72:1;-1:-1:-1;;;;;7919:15:1;;;:9;:15;;;;;;;;;;;7937:20;;;7919:38;;8134:13;;;;;;;;;;:23;;;;;;8183:26;;160:25:7;;;8134:13:1;;8183:26;;133:18:7;8183:26:1;;;;;;;8220:37;677:263:6;1350:130:4;1264:6;;-1:-1:-1;;;;;1264:6:4;719:10:0;1413:23:4;1405:68;;;;-1:-1:-1;;;1405:68:4;;6932:2:7;1405:68:4;;;6914:21:7;;;6951:18;;;6944:30;7010:34;6990:18;;;6983:62;7062:18;;1405:68:4;6730:356:7;2424:117:5;1477:16;:14;:16::i;:::-;2482:7:::1;:15:::0;;-1:-1:-1;;;;2482:15:5::1;::::0;;2512:22:::1;719:10:0::0;2521:12:5::1;2512:22;::::0;-1:-1:-1;;;;;2255:32:7;;;2237:51;;2225:2;2210:18;2512:22:5::1;;;;;;;2424:117::o:0;8540:535:1:-;-1:-1:-1;;;;;8623:21:1;;8615:65;;;;-1:-1:-1;;;8615:65:1;;7293:2:7;8615:65:1;;;7275:21:7;7332:2;7312:18;;;7305:30;7371:33;7351:18;;;7344:61;7422:18;;8615:65:1;7091:355:7;8615:65:1;8691:49;8720:1;8724:7;8733:6;8691:20;:49::i;:::-;8767:6;8751:12;;:22;;;;;;;:::i;:::-;;;;-1:-1:-1;;;;;;;8919:18:1;;:9;:18;;;;;;;;;;;:28;;;;;;8972:37;160:25:7;;;8972:37:1;;133:18:7;8972:37:1;;;;;;;279:193:6;;:::o;2424:187:4:-;2516:6;;;-1:-1:-1;;;;;2532:17:4;;;-1:-1:-1;;;;;;2532:17:4;;;;;;;2564:40;;2516:6;;;2532:17;2516:6;;2564:40;;2497:16;;2564:40;2487:124;2424:187;:::o;2177:115:5:-;1230:19;:17;:19::i;:::-;2236:7:::1;:14:::0;;-1:-1:-1;;;;2236:14:5::1;-1:-1:-1::0;;;2236:14:5::1;::::0;;2265:20:::1;2272:12;719:10:0::0;;640:96;677:263:6;1676:7:5;;-1:-1:-1;;;1676:7:5;;;;877:9:6;869:64;;;;-1:-1:-1;;;869:64:6;;7653:2:7;869:64:6;;;7635:21:7;7692:2;7672:18;;;7665:30;7731:34;7711:18;;;7704:62;-1:-1:-1;;;7782:18:7;;;7775:40;7832:19;;869:64:6;7451:406:7;869:64:6;677:263;;;:::o;1936:106:5:-;1676:7;;-1:-1:-1;;;1676:7:5;;;;1994:41;;;;-1:-1:-1;;;1994:41:5;;8064:2:7;1994:41:5;;;8046:21:7;8103:2;8083:18;;;8076:30;-1:-1:-1;;;8122:18:7;;;8115:50;8182:18;;1994:41:5;7862:344:7;1758:106:5;1676:7;;-1:-1:-1;;;1676:7:5;;;;1827:9;1819:38;;;;-1:-1:-1;;;1819:38:5;;8413:2:7;1819:38:5;;;8395:21:7;8452:2;8432:18;;;8425:30;-1:-1:-1;;;8471:18:7;;;8464:46;8527:18;;1819:38:5;8211:340:7;196:548;308:4;337:2;366;355:9;348:21;398:6;392:13;441:6;436:2;425:9;421:18;414:34;466:1;476:140;490:6;487:1;484:13;476:140;;;585:14;;;581:23;;575:30;551:17;;;570:2;547:26;540:66;505:10;;476:140;;;480:3;665:1;660:2;651:6;640:9;636:22;632:31;625:42;735:2;728;724:7;719:2;711:6;707:15;703:29;692:9;688:45;684:54;676:62;;;;196:548;;;;:::o;749:173::-;817:20;;-1:-1:-1;;;;;866:31:7;;856:42;;846:70;;912:1;909;902:12;846:70;749:173;;;:::o;927:254::-;995:6;1003;1056:2;1044:9;1035:7;1031:23;1027:32;1024:52;;;1072:1;1069;1062:12;1024:52;1095:29;1114:9;1095:29;:::i;:::-;1085:39;1171:2;1156:18;;;;1143:32;;-1:-1:-1;;;927:254:7:o;1378:328::-;1455:6;1463;1471;1524:2;1512:9;1503:7;1499:23;1495:32;1492:52;;;1540:1;1537;1530:12;1492:52;1563:29;1582:9;1563:29;:::i;:::-;1553:39;;1611:38;1645:2;1634:9;1630:18;1611:38;:::i;:::-;1601:48;;1696:2;1685:9;1681:18;1668:32;1658:42;;1378:328;;;;;:::o;1900:186::-;1959:6;2012:2;2000:9;1991:7;1987:23;1983:32;1980:52;;;2028:1;2025;2018:12;1980:52;2051:29;2070:9;2051:29;:::i;:::-;2041:39;1900:186;-1:-1:-1;;;1900:186:7:o;2299:260::-;2367:6;2375;2428:2;2416:9;2407:7;2403:23;2399:32;2396:52;;;2444:1;2441;2434:12;2396:52;2467:29;2486:9;2467:29;:::i;:::-;2457:39;;2515:38;2549:2;2538:9;2534:18;2515:38;:::i;:::-;2505:48;;2299:260;;;;;:::o;2564:380::-;2643:1;2639:12;;;;2686;;;2707:61;;2761:4;2753:6;2749:17;2739:27;;2707:61;2814:2;2806:6;2803:14;2783:18;2780:38;2777:161;;2860:10;2855:3;2851:20;2848:1;2841:31;2895:4;2892:1;2885:15;2923:4;2920:1;2913:15;2777:161;;2564:380;;;:::o;2949:222::-;3014:9;;;3035:10;;;3032:133;;;3087:10;3082:3;3078:20;3075:1;3068:31;3122:4;3119:1;3112:15;3150:4;3147:1;3140:15

Swarm Source

ipfs://41f10d153494afb97781f0ff52e72be8733dc3b4fc09bdb0308c16e5f01eb49d
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.