ETH Price: $2,520.78 (+1.73%)

Token

Massive Protocol (MAV)
 

Overview

Max Total Supply

3,000,000,000 MAV

Holders

1,208 (0.00%)

Market

Price

$0.35 @ 0.000137 ETH

Onchain Market Cap

$1,039,521,000.00

Circulating Supply Market Cap

$0.00

Other Info

Token Contract (WITH 18 Decimals)

Balance
0 MAV

Value
$0.00
0x7cf3a0d9ddde82eb46ad96bf6ee8f8ed69bfa461
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

The Massive protocol link reality and virtuality with Social Tokens and NFTs.

Market

Volume (24H):$90,402.00
Market Capitalization:$0.00
Circulating Supply:0.00 MAV
Market Data Source: Coinmarketcap

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
ERC20LockablePreset

Compiler Version
v0.8.0+commit.c7dfd78e

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity Multiple files format)

File 3 of 7: ERC20LockablePreset.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC20/presets/ERC20PresetFixedSupply.sol)
pragma solidity ^0.8.0;

import "./ERC20Burnable.sol";

/**
 * @dev {ERC20} token, including:
 *
 *  - Preminted initial supply
 *  - Ability for holders to burn (destroy) their tokens
 *  - No access control mechanism (for minting/pausing) and hence no governance
 *
 * This contract uses {ERC20Burnable} to include burn capabilities - head to
 * its documentation for details.
 *
 * _Available since v3.4._
 *
 * _Deprecated in favor of https://wizard.openzeppelin.com/[Contracts Wizard]._
 */
contract ERC20LockablePreset is ERC20Burnable {
    /**
     * @dev Mints `initialSupply` amount of token and transfers them to `owner`.
     *
     * See {ERC20-constructor}.
     */
    constructor(
        string memory name,
        string memory symbol,
        uint256 initialSupply,
        address owner
    ) LockableERC20(name, symbol) {
        _mint(owner, initialSupply);
    }
}

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: ERC20Burnable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC20/extensions/ERC20Burnable.sol)

pragma solidity ^0.8.0;

import "./LockableERC20.sol";
import "./Context.sol";

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

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

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

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @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);

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

File 5 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 6 of 7: LockableERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC20/ERC20.sol)

pragma solidity ^0.8.0;

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

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

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

    /* lock */
    mapping (address => uint256) private _lockTimes;
    mapping (address => uint256) private _lockAmounts;

    event LockChanged(address indexed account, uint256 releaseTime, uint256 amount);

    function setLock(address account, uint256 releaseTime, uint256 amount) onlyOwner public {
        _lockTimes[account] = releaseTime; 
        _lockAmounts[account] = amount;
        emit LockChanged(account, releaseTime, amount); 
    }

    function getLock(address account) public view returns (uint256 lockTime, uint256 lockAmount) {
        return (_lockTimes[account], _lockAmounts[account]);
    }

    function _isLocked(address account, uint256 amount) internal view returns (bool) {
        return _lockTimes[account] != 0 && 
            _lockAmounts[account] != 0 && 
            _lockTimes[account] > block.timestamp &&
            (
                balanceOf(account) <= _lockAmounts[account] ||
                balanceOf(account) - _lockAmounts[account] < amount
            );
    }

    /**
     * @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, _allowances[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 = _allowances[owner][spender];
        require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
        unchecked {
            _approve(owner, spender, currentAllowance - subtractedValue);
        }

        return true;
    }

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

        _beforeTokenTransfer(from, to, amount);

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

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, amount);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

    /**
     * @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 7 of 7: Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (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 Returns the address of the current owner.
     */
    function owner() public view virtual returns (address) {
        return _owner;
    }

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        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);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"symbol","type":"string"},{"internalType":"uint256","name":"initialSupply","type":"uint256"},{"internalType":"address","name":"owner","type":"address"}],"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":"account","type":"address"},{"indexed":false,"internalType":"uint256","name":"releaseTime","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"LockChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burnFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"getLock","outputs":[{"internalType":"uint256","name":"lockTime","type":"uint256"},{"internalType":"uint256","name":"lockAmount","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"releaseTime","type":"uint256"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"setLock","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"}]

60806040523480156200001157600080fd5b506040516200160a3803806200160a83398101604081905262000034916200043a565b83836200004a6200004462000094565b62000098565b81516200005f906004906020850190620002e9565b50805162000075906005906020840190620002e9565b5050506200008a8183620000e860201b60201c565b50505050620005e0565b3390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b0382166200011a5760405162461bcd60e51b8152600401620001119062000502565b60405180910390fd5b6200012860008383620001ca565b80600360008282546200013c919062000542565b90915550506001600160a01b038216600090815260016020526040812080548392906200016b90849062000542565b90915550506040516001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90620001b090859062000539565b60405180910390a3620001c660008383620001f6565b5050565b620001d68382620001fb565b15620001f65760405162461bcd60e51b81526004016200011190620004cb565b505050565b6001600160a01b038216600090815260066020526040812054158015906200023a57506001600160a01b03831660009081526007602052604090205415155b80156200025e57506001600160a01b03831660009081526006602052604090205442105b8015620002c757506001600160a01b0383166000908152600760205260409020546200028a84620002ce565b111580620002c757506001600160a01b0383166000908152600760205260409020548290620002b985620002ce565b620002c591906200055d565b105b9392505050565b6001600160a01b031660009081526001602052604090205490565b828054620002f79062000577565b90600052602060002090601f0160209004810192826200031b576000855562000366565b82601f106200033657805160ff191683800117855562000366565b8280016001018555821562000366579182015b828111156200036657825182559160200191906001019062000349565b506200037492915062000378565b5090565b5b8082111562000374576000815560010162000379565b600082601f830112620003a0578081fd5b81516001600160401b0380821115620003bd57620003bd620005ca565b6040516020601f8401601f1916820181018381118382101715620003e557620003e5620005ca565b6040528382528584018101871015620003fc578485fd5b8492505b838310156200041f578583018101518284018201529182019162000400565b838311156200043057848185840101525b5095945050505050565b6000806000806080858703121562000450578384fd5b84516001600160401b038082111562000467578586fd5b62000475888389016200038f565b955060208701519150808211156200048b578485fd5b506200049a878288016200038f565b60408701516060880151919550935090506001600160a01b0381168114620004c0578182fd5b939692955090935050565b60208082526015908201527f45524332303a204c6f636b65642062616c616e63650000000000000000000000604082015260600190565b6020808252601f908201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604082015260600190565b90815260200190565b60008219821115620005585762000558620005b4565b500190565b600082821015620005725762000572620005b4565b500390565b6002810460018216806200058c57607f821691505b60208210811415620005ae57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052604160045260246000fd5b61101a80620005f06000396000f3fe608060405234801561001057600080fd5b50600436106101165760003560e01c806370a08231116100a257806395d89b411161007157806395d89b4114610235578063a457c2d71461023d578063a9059cbb14610250578063dd62ed3e14610263578063f2fde38b1461027657610116565b806370a08231146101f2578063715018a61461020557806379cc67901461020d5780638da5cb5b1461022057610116565b8063313ce567116100e9578063313ce5671461018157806339509351146101965780633e05c943146101a957806342966c68146101be5780636b9db4e6146101d157610116565b806306fdde031461011b578063095ea7b31461013957806318160ddd1461015957806323b872dd1461016e575b600080fd5b610123610289565b6040516101309190610bef565b60405180910390f35b61014c610147366004610b5d565b61031b565b6040516101309190610be4565b61016161033d565b6040516101309190610f3f565b61014c61017c366004610b22565b610343565b610189610371565b6040516101309190610f56565b61014c6101a4366004610b5d565b610376565b6101bc6101b7366004610b86565b6103c2565b005b6101bc6101cc366004610bb8565b610471565b6101e46101df366004610ad6565b610485565b604051610130929190610f48565b610161610200366004610ad6565b6104ad565b6101bc6104cc565b6101bc61021b366004610b5d565b610517565b610228610537565b6040516101309190610bd0565b610123610546565b61014c61024b366004610b5d565b610555565b61014c61025e366004610b5d565b6105b6565b610161610271366004610af0565b6105ce565b6101bc610284366004610ad6565b6105f9565b60606004805461029890610f93565b80601f01602080910402602001604051908101604052809291908181526020018280546102c490610f93565b80156103115780601f106102e657610100808354040283529160200191610311565b820191906000526020600020905b8154815290600101906020018083116102f457829003601f168201915b5050505050905090565b600080610326610667565b905061033381858561066b565b5060019392505050565b60035490565b60008061034e610667565b905061035b85828561071f565b610366858585610769565b506001949350505050565b601290565b600080610381610667565b6001600160a01b0380821660009081526002602090815260408083209389168352929052205490915061033390829086906103bd908790610f64565b61066b565b6103ca610667565b6001600160a01b03166103db610537565b6001600160a01b03161461040a5760405162461bcd60e51b815260040161040190610dcc565b60405180910390fd5b6001600160a01b0383166000818152600660209081526040808320869055600790915290819020839055517fac9f677e99a4df77ed2008bfe08de2e751aab75dce03486489e20585d79e91ce906104649085908590610f48565b60405180910390a2505050565b61048261047c610667565b8261088d565b50565b6001600160a01b03166000908152600660209081526040808320546007909252909120549091565b6001600160a01b0381166000908152600160205260409020545b919050565b6104d4610667565b6001600160a01b03166104e5610537565b6001600160a01b03161461050b5760405162461bcd60e51b815260040161040190610dcc565b610515600061097f565b565b61052982610523610667565b8361071f565b610533828261088d565b5050565b6000546001600160a01b031690565b60606005805461029890610f93565b600080610560610667565b6001600160a01b03808216600090815260026020908152604080832093891683529290522054909150838110156105a95760405162461bcd60e51b815260040161040190610efa565b610366828686840361066b565b6000806105c1610667565b9050610333818585610769565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b610601610667565b6001600160a01b0316610612610537565b6001600160a01b0316146106385760405162461bcd60e51b815260040161040190610dcc565b6001600160a01b03811661065e5760405162461bcd60e51b815260040161040190610cc7565b6104828161097f565b3390565b6001600160a01b0383166106915760405162461bcd60e51b815260040161040190610eb6565b6001600160a01b0382166106b75760405162461bcd60e51b815260040161040190610d0d565b6001600160a01b0380841660008181526002602090815260408083209487168084529490915290819020849055517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92590610712908590610f3f565b60405180910390a3505050565b600061072b84846105ce565b9050600019811461076357818110156107565760405162461bcd60e51b815260040161040190610d4f565b610763848484840361066b565b50505050565b6001600160a01b03831661078f5760405162461bcd60e51b815260040161040190610e71565b6001600160a01b0382166107b55760405162461bcd60e51b815260040161040190610c42565b6107c08383836109cf565b6001600160a01b038316600090815260016020526040902054818110156107f95760405162461bcd60e51b815260040161040190610d86565b6001600160a01b03808516600090815260016020526040808220858503905591851681529081208054849290610830908490610f64565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161087a9190610f3f565b60405180910390a361076384848461097a565b6001600160a01b0382166108b35760405162461bcd60e51b815260040161040190610e30565b6108bf826000836109cf565b6001600160a01b038216600090815260016020526040902054818110156108f85760405162461bcd60e51b815260040161040190610c85565b6001600160a01b0383166000908152600160205260408120838303905560038054849290610927908490610f7c565b90915550506040516000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9061096a908690610f3f565b60405180910390a361097a836000845b505050565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6109d983826109f6565b1561097a5760405162461bcd60e51b815260040161040190610e01565b6001600160a01b03821660009081526006602052604081205415801590610a3457506001600160a01b03831660009081526007602052604090205415155b8015610a5757506001600160a01b03831660009081526006602052604090205442105b8015610ab857506001600160a01b038316600090815260076020526040902054610a80846104ad565b111580610ab857506001600160a01b0383166000908152600760205260409020548290610aac856104ad565b610ab69190610f7c565b105b9392505050565b80356001600160a01b03811681146104c757600080fd5b600060208284031215610ae7578081fd5b610ab882610abf565b60008060408385031215610b02578081fd5b610b0b83610abf565b9150610b1960208401610abf565b90509250929050565b600080600060608486031215610b36578081fd5b610b3f84610abf565b9250610b4d60208501610abf565b9150604084013590509250925092565b60008060408385031215610b6f578182fd5b610b7883610abf565b946020939093013593505050565b600080600060608486031215610b9a578283fd5b610ba384610abf565b95602085013595506040909401359392505050565b600060208284031215610bc9578081fd5b5035919050565b6001600160a01b0391909116815260200190565b901515815260200190565b6000602080835283518082850152825b81811015610c1b57858101830151858201604001528201610bff565b81811115610c2c5783604083870101525b50601f01601f1916929092016040019392505050565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b60208082526022908201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604082015261636560f01b606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b60208082526022908201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604082015261737360f01b606082015260800190565b6020808252601d908201527f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000604082015260600190565b60208082526026908201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604082015265616c616e636560d01b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526015908201527445524332303a204c6f636b65642062616c616e636560581b604082015260600190565b60208082526021908201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736040820152607360f81b606082015260800190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526024908201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60208082526025908201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604082015264207a65726f60d81b606082015260800190565b90815260200190565b918252602082015260400190565b60ff91909116815260200190565b60008219821115610f7757610f77610fce565b500190565b600082821015610f8e57610f8e610fce565b500390565b600281046001821680610fa757607f821691505b60208210811415610fc857634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fdfea264697066735822122019950ccf0af5f8ce6c12949a209d035c911a6d63a49182cfec3226eea0a516c564736f6c63430008000033000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000009b18ab5df7180b6b8000000000000000000000000000000e1a9e80518c9cf1f50369dab6811d9cd1b28900500000000000000000000000000000000000000000000000000000000000000104d6173736976652050726f746f636f6c0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000034d41560000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101165760003560e01c806370a08231116100a257806395d89b411161007157806395d89b4114610235578063a457c2d71461023d578063a9059cbb14610250578063dd62ed3e14610263578063f2fde38b1461027657610116565b806370a08231146101f2578063715018a61461020557806379cc67901461020d5780638da5cb5b1461022057610116565b8063313ce567116100e9578063313ce5671461018157806339509351146101965780633e05c943146101a957806342966c68146101be5780636b9db4e6146101d157610116565b806306fdde031461011b578063095ea7b31461013957806318160ddd1461015957806323b872dd1461016e575b600080fd5b610123610289565b6040516101309190610bef565b60405180910390f35b61014c610147366004610b5d565b61031b565b6040516101309190610be4565b61016161033d565b6040516101309190610f3f565b61014c61017c366004610b22565b610343565b610189610371565b6040516101309190610f56565b61014c6101a4366004610b5d565b610376565b6101bc6101b7366004610b86565b6103c2565b005b6101bc6101cc366004610bb8565b610471565b6101e46101df366004610ad6565b610485565b604051610130929190610f48565b610161610200366004610ad6565b6104ad565b6101bc6104cc565b6101bc61021b366004610b5d565b610517565b610228610537565b6040516101309190610bd0565b610123610546565b61014c61024b366004610b5d565b610555565b61014c61025e366004610b5d565b6105b6565b610161610271366004610af0565b6105ce565b6101bc610284366004610ad6565b6105f9565b60606004805461029890610f93565b80601f01602080910402602001604051908101604052809291908181526020018280546102c490610f93565b80156103115780601f106102e657610100808354040283529160200191610311565b820191906000526020600020905b8154815290600101906020018083116102f457829003601f168201915b5050505050905090565b600080610326610667565b905061033381858561066b565b5060019392505050565b60035490565b60008061034e610667565b905061035b85828561071f565b610366858585610769565b506001949350505050565b601290565b600080610381610667565b6001600160a01b0380821660009081526002602090815260408083209389168352929052205490915061033390829086906103bd908790610f64565b61066b565b6103ca610667565b6001600160a01b03166103db610537565b6001600160a01b03161461040a5760405162461bcd60e51b815260040161040190610dcc565b60405180910390fd5b6001600160a01b0383166000818152600660209081526040808320869055600790915290819020839055517fac9f677e99a4df77ed2008bfe08de2e751aab75dce03486489e20585d79e91ce906104649085908590610f48565b60405180910390a2505050565b61048261047c610667565b8261088d565b50565b6001600160a01b03166000908152600660209081526040808320546007909252909120549091565b6001600160a01b0381166000908152600160205260409020545b919050565b6104d4610667565b6001600160a01b03166104e5610537565b6001600160a01b03161461050b5760405162461bcd60e51b815260040161040190610dcc565b610515600061097f565b565b61052982610523610667565b8361071f565b610533828261088d565b5050565b6000546001600160a01b031690565b60606005805461029890610f93565b600080610560610667565b6001600160a01b03808216600090815260026020908152604080832093891683529290522054909150838110156105a95760405162461bcd60e51b815260040161040190610efa565b610366828686840361066b565b6000806105c1610667565b9050610333818585610769565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b610601610667565b6001600160a01b0316610612610537565b6001600160a01b0316146106385760405162461bcd60e51b815260040161040190610dcc565b6001600160a01b03811661065e5760405162461bcd60e51b815260040161040190610cc7565b6104828161097f565b3390565b6001600160a01b0383166106915760405162461bcd60e51b815260040161040190610eb6565b6001600160a01b0382166106b75760405162461bcd60e51b815260040161040190610d0d565b6001600160a01b0380841660008181526002602090815260408083209487168084529490915290819020849055517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92590610712908590610f3f565b60405180910390a3505050565b600061072b84846105ce565b9050600019811461076357818110156107565760405162461bcd60e51b815260040161040190610d4f565b610763848484840361066b565b50505050565b6001600160a01b03831661078f5760405162461bcd60e51b815260040161040190610e71565b6001600160a01b0382166107b55760405162461bcd60e51b815260040161040190610c42565b6107c08383836109cf565b6001600160a01b038316600090815260016020526040902054818110156107f95760405162461bcd60e51b815260040161040190610d86565b6001600160a01b03808516600090815260016020526040808220858503905591851681529081208054849290610830908490610f64565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161087a9190610f3f565b60405180910390a361076384848461097a565b6001600160a01b0382166108b35760405162461bcd60e51b815260040161040190610e30565b6108bf826000836109cf565b6001600160a01b038216600090815260016020526040902054818110156108f85760405162461bcd60e51b815260040161040190610c85565b6001600160a01b0383166000908152600160205260408120838303905560038054849290610927908490610f7c565b90915550506040516000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9061096a908690610f3f565b60405180910390a361097a836000845b505050565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6109d983826109f6565b1561097a5760405162461bcd60e51b815260040161040190610e01565b6001600160a01b03821660009081526006602052604081205415801590610a3457506001600160a01b03831660009081526007602052604090205415155b8015610a5757506001600160a01b03831660009081526006602052604090205442105b8015610ab857506001600160a01b038316600090815260076020526040902054610a80846104ad565b111580610ab857506001600160a01b0383166000908152600760205260409020548290610aac856104ad565b610ab69190610f7c565b105b9392505050565b80356001600160a01b03811681146104c757600080fd5b600060208284031215610ae7578081fd5b610ab882610abf565b60008060408385031215610b02578081fd5b610b0b83610abf565b9150610b1960208401610abf565b90509250929050565b600080600060608486031215610b36578081fd5b610b3f84610abf565b9250610b4d60208501610abf565b9150604084013590509250925092565b60008060408385031215610b6f578182fd5b610b7883610abf565b946020939093013593505050565b600080600060608486031215610b9a578283fd5b610ba384610abf565b95602085013595506040909401359392505050565b600060208284031215610bc9578081fd5b5035919050565b6001600160a01b0391909116815260200190565b901515815260200190565b6000602080835283518082850152825b81811015610c1b57858101830151858201604001528201610bff565b81811115610c2c5783604083870101525b50601f01601f1916929092016040019392505050565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b60208082526022908201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604082015261636560f01b606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b60208082526022908201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604082015261737360f01b606082015260800190565b6020808252601d908201527f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000604082015260600190565b60208082526026908201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604082015265616c616e636560d01b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526015908201527445524332303a204c6f636b65642062616c616e636560581b604082015260600190565b60208082526021908201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736040820152607360f81b606082015260800190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526024908201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60208082526025908201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604082015264207a65726f60d81b606082015260800190565b90815260200190565b918252602082015260400190565b60ff91909116815260200190565b60008219821115610f7757610f77610fce565b500190565b600082821015610f8e57610f8e610fce565b500390565b600281046001821680610fa757607f821691505b60208210811415610fc857634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fdfea264697066735822122019950ccf0af5f8ce6c12949a209d035c911a6d63a49182cfec3226eea0a516c564736f6c63430008000033

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

000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000009b18ab5df7180b6b8000000000000000000000000000000e1a9e80518c9cf1f50369dab6811d9cd1b28900500000000000000000000000000000000000000000000000000000000000000104d6173736976652050726f746f636f6c0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000034d41560000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : name (string): Massive Protocol
Arg [1] : symbol (string): MAV
Arg [2] : initialSupply (uint256): 3000000000000000000000000000
Arg [3] : owner (address): 0xE1a9e80518c9CF1F50369Dab6811D9CD1b289005

-----Encoded View---------------
8 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [2] : 000000000000000000000000000000000000000009b18ab5df7180b6b8000000
Arg [3] : 000000000000000000000000e1a9e80518c9cf1f50369dab6811d9cd1b289005
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000010
Arg [5] : 4d6173736976652050726f746f636f6c00000000000000000000000000000000
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [7] : 4d41560000000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

645:406:2:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3277:100:5;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5628:201;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;4397:108::-;;;:::i;:::-;;;;;;;:::i;6409:295::-;;;;;;:::i;:::-;;:::i;4239:93::-;;;:::i;:::-;;;;;;;:::i;7113:240::-;;;;;;:::i;:::-;;:::i;1956:::-;;;;;;:::i;:::-;;:::i;:::-;;599:91:1;;;;;;:::i;:::-;;:::i;2204:163:5:-;;;;;;:::i;:::-;;:::i;:::-;;;;;;;;:::i;4568:127::-;;;;;;:::i;:::-;;:::i;1714:103:6:-;;;:::i;1009:164:1:-;;;;;;:::i;:::-;;:::i;1063:87:6:-;;;:::i;:::-;;;;;;;:::i;3496:104:5:-;;;:::i;7856:438::-;;;;;;:::i;:::-;;:::i;4901:193::-;;;;;;:::i;:::-;;:::i;5157:151::-;;;;;;:::i;:::-;;:::i;1972:201:6:-;;;;;;:::i;:::-;;:::i;3277:100:5:-;3331:13;3364:5;3357:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3277:100;:::o;5628:201::-;5711:4;5728:13;5744:12;:10;:12::i;:::-;5728:28;;5767:32;5776:5;5783:7;5792:6;5767:8;:32::i;:::-;-1:-1:-1;5817:4:5;;5628:201;-1:-1:-1;;;5628:201:5:o;4397:108::-;4485:12;;4397:108;:::o;6409:295::-;6540:4;6557:15;6575:12;:10;:12::i;:::-;6557:30;;6598:38;6614:4;6620:7;6629:6;6598:15;:38::i;:::-;6647:27;6657:4;6663:2;6667:6;6647:9;:27::i;:::-;-1:-1:-1;6692:4:5;;6409:295;-1:-1:-1;;;;6409:295:5:o;4239:93::-;4322:2;4239:93;:::o;7113:240::-;7201:4;7218:13;7234:12;:10;:12::i;:::-;-1:-1:-1;;;;;7282:18:5;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;7218:28;;-1:-1:-1;7257:66:5;;7218:28;;7273:7;;7282:40;;7312:10;;7282:40;:::i;:::-;7257:8;:66::i;1956:240::-;1294:12:6;:10;:12::i;:::-;-1:-1:-1;;;;;1283:23:6;:7;:5;:7::i;:::-;-1:-1:-1;;;;;1283:23:6;;1275:68;;;;-1:-1:-1;;;1275:68:6;;;;;;;:::i;:::-;;;;;;;;;-1:-1:-1;;;;;2055:19:5;::::1;;::::0;;;:10:::1;:19;::::0;;;;;;;:33;;;2100:12:::1;:21:::0;;;;;;;:30;;;2146:41;::::1;::::0;::::1;::::0;2077:11;;2124:6;;2146:41:::1;:::i;:::-;;;;;;;;1956:240:::0;;;:::o;599:91:1:-;655:27;661:12;:10;:12::i;:::-;675:6;655:5;:27::i;:::-;599:91;:::o;2204:163:5:-;-1:-1:-1;;;;;2316:19:5;2259:16;2316:19;;;:10;:19;;;;;;;;;2337:12;:21;;;;;;;2316:19;;2204:163::o;4568:127::-;-1:-1:-1;;;;;4669:18:5;;4642:7;4669:18;;;:9;:18;;;;;;4568:127;;;;:::o;1714:103:6:-;1294:12;:10;:12::i;:::-;-1:-1:-1;;;;;1283:23:6;:7;:5;:7::i;:::-;-1:-1:-1;;;;;1283:23:6;;1275:68;;;;-1:-1:-1;;;1275:68:6;;;;;;;:::i;:::-;1779:30:::1;1806:1;1779:18;:30::i;:::-;1714:103::o:0;1009:164:1:-;1086:46;1102:7;1111:12;:10;:12::i;:::-;1125:6;1086:15;:46::i;:::-;1143:22;1149:7;1158:6;1143:5;:22::i;:::-;1009:164;;:::o;1063:87:6:-;1109:7;1136:6;-1:-1:-1;;;;;1136:6:6;1063:87;:::o;3496:104:5:-;3552:13;3585:7;3578:14;;;;;:::i;7856:438::-;7949:4;7966:13;7982:12;:10;:12::i;:::-;-1:-1:-1;;;;;8032:18:5;;;8005:24;8032:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;7966:28;;-1:-1:-1;8078:35:5;;;;8070:85;;;;-1:-1:-1;;;8070:85:5;;;;;;;:::i;:::-;8191:60;8200:5;8207:7;8235:15;8216:16;:34;8191:8;:60::i;4901:193::-;4980:4;4997:13;5013:12;:10;:12::i;:::-;4997:28;;5036;5046:5;5053:2;5057:6;5036:9;:28::i;5157:151::-;-1:-1:-1;;;;;5273:18:5;;;5246:7;5273:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;5157:151::o;1972:201:6:-;1294:12;:10;:12::i;:::-;-1:-1:-1;;;;;1283:23:6;:7;:5;:7::i;:::-;-1:-1:-1;;;;;1283:23:6;;1275:68;;;;-1:-1:-1;;;1275:68:6;;;;;;;:::i;:::-;-1:-1:-1;;;;;2061:22:6;::::1;2053:73;;;;-1:-1:-1::0;;;2053:73:6::1;;;;;;;:::i;:::-;2137:28;2156:8;2137:18;:28::i;656:98:0:-:0;736:10;656:98;:::o;11492:380:5:-;-1:-1:-1;;;;;11628:19:5;;11620:68;;;;-1:-1:-1;;;11620:68:5;;;;;;;:::i;:::-;-1:-1:-1;;;;;11707:21:5;;11699:68;;;;-1:-1:-1;;;11699:68:5;;;;;;;:::i;:::-;-1:-1:-1;;;;;11780:18:5;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;;:36;;;11832:32;;;;;11810:6;;11832:32;:::i;:::-;;;;;;;;11492:380;;;:::o;12163:453::-;12298:24;12325:25;12335:5;12342:7;12325:9;:25::i;:::-;12298:52;;-1:-1:-1;;12365:16:5;:37;12361:248;;12447:6;12427:16;:26;;12419:68;;;;-1:-1:-1;;;12419:68:5;;;;;;;:::i;:::-;12531:51;12540:5;12547:7;12575:6;12556:16;:25;12531:8;:51::i;:::-;12163:453;;;;:::o;8773:671::-;-1:-1:-1;;;;;8904:18:5;;8896:68;;;;-1:-1:-1;;;8896:68:5;;;;;;;:::i;:::-;-1:-1:-1;;;;;8983:16:5;;8975:64;;;;-1:-1:-1;;;8975:64:5;;;;;;;:::i;:::-;9052:38;9073:4;9079:2;9083:6;9052:20;:38::i;:::-;-1:-1:-1;;;;;9125:15:5;;9103:19;9125:15;;;:9;:15;;;;;;9159:21;;;;9151:72;;;;-1:-1:-1;;;9151:72:5;;;;;;;:::i;:::-;-1:-1:-1;;;;;9259:15:5;;;;;;;:9;:15;;;;;;9277:20;;;9259:38;;9319:13;;;;;;;;:23;;9291:6;;9259:15;9319:23;;9291:6;;9319:23;:::i;:::-;;;;;;;;9375:2;-1:-1:-1;;;;;9360:26:5;9369:4;-1:-1:-1;;;;;9360:26:5;;9379:6;9360:26;;;;;;:::i;:::-;;;;;;;;9399:37;9419:4;9425:2;9429:6;9399:19;:37::i;10463:591::-;-1:-1:-1;;;;;10547:21:5;;10539:67;;;;-1:-1:-1;;;10539:67:5;;;;;;;:::i;:::-;10619:49;10640:7;10657:1;10661:6;10619:20;:49::i;:::-;-1:-1:-1;;;;;10706:18:5;;10681:22;10706:18;;;:9;:18;;;;;;10743:24;;;;10735:71;;;;-1:-1:-1;;;10735:71:5;;;;;;;:::i;:::-;-1:-1:-1;;;;;10842:18:5;;;;;;:9;:18;;;;;10863:23;;;10842:44;;10908:12;:22;;10880:6;;10842:18;10908:22;;10880:6;;10908:22;:::i;:::-;;;;-1:-1:-1;;10948:37:5;;10974:1;;-1:-1:-1;;;;;10948:37:5;;;;;;;10978:6;;10948:37;:::i;:::-;;;;;;;;10998:48;11018:7;11035:1;11039:6;10998:48;10463:591;;;:::o;2333:191:6:-;2407:16;2426:6;;-1:-1:-1;;;;;2443:17:6;;;-1:-1:-1;;;;;;2443:17:6;;;;;;2476:40;;2426:6;;;;;;;2476:40;;2407:16;2476:40;2333:191;;:::o;13216:197:5:-;13356:23;13366:4;13372:6;13356:9;:23::i;:::-;13355:24;13347:58;;;;-1:-1:-1;;;13347:58:5;;;;;;;:::i;2375:396::-;-1:-1:-1;;;;;2474:19:5;;2450:4;2474:19;;;:10;:19;;;;;;:24;;;;:68;;-1:-1:-1;;;;;;2516:21:5;;;;;;:12;:21;;;;;;:26;;2474:68;:123;;;;-1:-1:-1;;;;;;2560:19:5;;;;;;:10;:19;;;;;;2582:15;-1:-1:-1;2474:123:5;:289;;;;-1:-1:-1;;;;;;2655:21:5;;;;;;:12;:21;;;;;;2633:18;2668:7;2633:9;:18::i;:::-;:43;;:115;;;-1:-1:-1;;;;;;2718:21:5;;;;;;:12;:21;;;;;;2742:6;;2697:18;2731:7;2697:9;:18::i;:::-;:42;;;;:::i;:::-;:51;2633:115;2467:296;2375:396;-1:-1:-1;;;2375:396:5:o;14:175:7:-;84:20;;-1:-1:-1;;;;;133:31:7;;123:42;;113:2;;179:1;176;169:12;194:198;;306:2;294:9;285:7;281:23;277:32;274:2;;;327:6;319;312:22;274:2;355:31;376:9;355:31;:::i;397:274::-;;;526:2;514:9;505:7;501:23;497:32;494:2;;;547:6;539;532:22;494:2;575:31;596:9;575:31;:::i;:::-;565:41;;625:40;661:2;650:9;646:18;625:40;:::i;:::-;615:50;;484:187;;;;;:::o;676:342::-;;;;822:2;810:9;801:7;797:23;793:32;790:2;;;843:6;835;828:22;790:2;871:31;892:9;871:31;:::i;:::-;861:41;;921:40;957:2;946:9;942:18;921:40;:::i;:::-;911:50;;1008:2;997:9;993:18;980:32;970:42;;780:238;;;;;:::o;1023:266::-;;;1152:2;1140:9;1131:7;1127:23;1123:32;1120:2;;;1173:6;1165;1158:22;1120:2;1201:31;1222:9;1201:31;:::i;:::-;1191:41;1279:2;1264:18;;;;1251:32;;-1:-1:-1;;;1110:179:7:o;1294:334::-;;;;1440:2;1428:9;1419:7;1415:23;1411:32;1408:2;;;1461:6;1453;1446:22;1408:2;1489:31;1510:9;1489:31;:::i;:::-;1479:41;1567:2;1552:18;;1539:32;;-1:-1:-1;1618:2:7;1603:18;;;1590:32;;1398:230;-1:-1:-1;;;1398:230:7:o;1633:190::-;;1745:2;1733:9;1724:7;1720:23;1716:32;1713:2;;;1766:6;1758;1751:22;1713:2;-1:-1:-1;1794:23:7;;1703:120;-1:-1:-1;1703:120:7:o;1828:203::-;-1:-1:-1;;;;;1992:32:7;;;;1974:51;;1962:2;1947:18;;1929:102::o;2036:187::-;2201:14;;2194:22;2176:41;;2164:2;2149:18;;2131:92::o;2228:603::-;;2369:2;2398;2387:9;2380:21;2430:6;2424:13;2473:6;2468:2;2457:9;2453:18;2446:34;2498:4;2511:140;2525:6;2522:1;2519:13;2511:140;;;2620:14;;;2616:23;;2610:30;2586:17;;;2605:2;2582:26;2575:66;2540:10;;2511:140;;;2669:6;2666:1;2663:13;2660:2;;;2739:4;2734:2;2725:6;2714:9;2710:22;2706:31;2699:45;2660:2;-1:-1:-1;2815:2:7;2794:15;-1:-1:-1;;2790:29:7;2775:45;;;;2822:2;2771:54;;2349:482;-1:-1:-1;;;2349:482:7:o;2836:399::-;3038:2;3020:21;;;3077:2;3057:18;;;3050:30;3116:34;3111:2;3096:18;;3089:62;-1:-1:-1;;;3182:2:7;3167:18;;3160:33;3225:3;3210:19;;3010:225::o;3240:398::-;3442:2;3424:21;;;3481:2;3461:18;;;3454:30;3520:34;3515:2;3500:18;;3493:62;-1:-1:-1;;;3586:2:7;3571:18;;3564:32;3628:3;3613:19;;3414:224::o;3643:402::-;3845:2;3827:21;;;3884:2;3864:18;;;3857:30;3923:34;3918:2;3903:18;;3896:62;-1:-1:-1;;;3989:2:7;3974:18;;3967:36;4035:3;4020:19;;3817:228::o;4050:398::-;4252:2;4234:21;;;4291:2;4271:18;;;4264:30;4330:34;4325:2;4310:18;;4303:62;-1:-1:-1;;;4396:2:7;4381:18;;4374:32;4438:3;4423:19;;4224:224::o;4453:353::-;4655:2;4637:21;;;4694:2;4674:18;;;4667:30;4733:31;4728:2;4713:18;;4706:59;4797:2;4782:18;;4627:179::o;4811:402::-;5013:2;4995:21;;;5052:2;5032:18;;;5025:30;5091:34;5086:2;5071:18;;5064:62;-1:-1:-1;;;5157:2:7;5142:18;;5135:36;5203:3;5188:19;;4985:228::o;5218:356::-;5420:2;5402:21;;;5439:18;;;5432:30;5498:34;5493:2;5478:18;;5471:62;5565:2;5550:18;;5392:182::o;5579:345::-;5781:2;5763:21;;;5820:2;5800:18;;;5793:30;-1:-1:-1;;;5854:2:7;5839:18;;5832:51;5915:2;5900:18;;5753:171::o;5929:397::-;6131:2;6113:21;;;6170:2;6150:18;;;6143:30;6209:34;6204:2;6189:18;;6182:62;-1:-1:-1;;;6275:2:7;6260:18;;6253:31;6316:3;6301:19;;6103:223::o;6331:401::-;6533:2;6515:21;;;6572:2;6552:18;;;6545:30;6611:34;6606:2;6591:18;;6584:62;-1:-1:-1;;;6677:2:7;6662:18;;6655:35;6722:3;6707:19;;6505:227::o;6737:400::-;6939:2;6921:21;;;6978:2;6958:18;;;6951:30;7017:34;7012:2;6997:18;;6990:62;-1:-1:-1;;;7083:2:7;7068:18;;7061:34;7127:3;7112:19;;6911:226::o;7142:401::-;7344:2;7326:21;;;7383:2;7363:18;;;7356:30;7422:34;7417:2;7402:18;;7395:62;-1:-1:-1;;;7488:2:7;7473:18;;7466:35;7533:3;7518:19;;7316:227::o;7548:177::-;7694:25;;;7682:2;7667:18;;7649:76::o;7730:248::-;7904:25;;;7960:2;7945:18;;7938:34;7892:2;7877:18;;7859:119::o;7983:184::-;8155:4;8143:17;;;;8125:36;;8113:2;8098:18;;8080:87::o;8172:128::-;;8243:1;8239:6;8236:1;8233:13;8230:2;;;8249:18;;:::i;:::-;-1:-1:-1;8285:9:7;;8220:80::o;8305:125::-;;8373:1;8370;8367:8;8364:2;;;8378:18;;:::i;:::-;-1:-1:-1;8415:9:7;;8354:76::o;8435:380::-;8520:1;8510:12;;8567:1;8557:12;;;8578:2;;8632:4;8624:6;8620:17;8610:27;;8578:2;8685;8677:6;8674:14;8654:18;8651:38;8648:2;;;8731:10;8726:3;8722:20;8719:1;8712:31;8766:4;8763:1;8756:15;8794:4;8791:1;8784:15;8648:2;;8490:325;;;:::o;8820:127::-;8881:10;8876:3;8872:20;8869:1;8862:31;8912:4;8909:1;8902:15;8936:4;8933:1;8926:15

Swarm Source

ipfs://19950ccf0af5f8ce6c12949a209d035c911a6d63a49182cfec3226eea0a516c5
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.