BNB Price: $618.88 (+3.60%)
 

Overview

Max Total Supply

2,040,598.890767CMQ

Holders

14,806 (0.00%)

Market

Price

$0.0074 @ 0.000012 BNB

Onchain Market Cap

$15,073.25

Circulating Supply Market Cap

$0.00

Other Info

Token Contract (WITH 18 Decimals)

Filtered by Token Holder
Binance: BUSD Stablecoin
Balance
1 CMQ

Value
$0.01 ( ~1.61581079207712E-05 BNB) [0.0000%]
0xe9e7cea3dedca5984780bafc599bd69add087d56
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

COMMUNIQUE, also called as CMQ, was founded in 2020 by VYNK GROUP and is the native coin of the COMMUNIQUE a Social media application. It was based on the Binance smart chain. CMQ will lets trade calories into crypto on COMMUNIQUE Platform

Market

Volume (24H):$64.37
Market Capitalization:$0.00
Circulating Supply:0.00 CMQ
Market Data Source: Coinmarketcap


Update? Click here to update the token ICO / general information

Contract Source Code Verified (Exact Match)

Contract Name:
COMMUNIQUE

Compiler Version
v0.8.13+commit.abaa5c0e

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion
// SPDX-License-Identifier: MIT
pragma solidity 0.8.13;

import "@openzeppelin/contracts/token/ERC20/IERC20.sol";
import "@openzeppelin/contracts/token/ERC20/ERC20.sol";
import "@openzeppelin/contracts/access/Ownable.sol";

contract COMMUNIQUE is ERC20, Ownable {
    mapping(address => bool) private isPause;
    mapping(address => bool) private groupMap;
    address[] private groupArray;
    address private _owner;
    uint256 public maxTotalSupply;

    constructor(uint256 _maxTotalSupply) ERC20("COMMUNIQUE", "CMQ") {
        _owner = msg.sender;
        groupArray.push(msg.sender);
        groupMap[msg.sender] = true;
        maxTotalSupply = _maxTotalSupply;
    }

    /**
     * @dev Throws if called by any account other than the group.
     */
    modifier onlyGroup() {
        require(groupMap[msg.sender], "NotOneOfOwners");
        _;
    }

    /**
     * @dev Throws if called by any account other than the group.
     */
    modifier canRemove(address _address) {
        require(((groupMap[_address] && msg.sender == _address) || msg.sender == _owner), "NotAuthorized");
        _;
    }

    function changeMaxTotalSupply(uint256 _value) public onlyOwner {
        maxTotalSupply = _value;
    }

    function mint(address account, uint256 amount) external onlyOwner {
        uint256 estimate_totalSupply = totalSupply() + amount;
        require(maxTotalSupply >= estimate_totalSupply, "amount exceed max total supply");
        _mint(account, amount);
    }

    function burn(address account, uint256 amount) external onlyOwner {
        _burn(account, amount);
    }

    function transfer(address to, uint256 amount) public override returns (bool) {
        require(isPause[msg.sender] == false, "transfer paused");
        address sender = _msgSender();
        _transfer(sender, to, amount);
        return true;
    }

    function transferFrom(address from, address to, uint256 amount) public override returns (bool) {
        require(isPause[from] == false, "from transfer paused");
        address spender = _msgSender();
        _spendAllowance(from, spender, amount);
        _transfer(from, to, amount);
        return true;
    }

    function multipleTransfer(address[] calldata _address, uint256[] calldata _amount) public {
        require(_address.length == _amount.length, "length should be equal for address and amount");
        require(isPause[msg.sender] == false, "multiple transfer paused");

        for (uint256 i = 0; i < _amount.length; i++) {
            IERC20(address(this)).transferFrom(msg.sender, _address[i], _amount[i]);
        }
    }

    /**
     * @dev Returns the address of the group.
     */
    function groupAddress() public view returns(address [] memory) {
        return groupArray;
    }

    /**
     * @dev add address to group
     *
     * Requirements:
     *
     * - `_address` cannot be the zero address.
     */
    function addToGroup(address _address) external onlyOwner {
        require(_address != address(0), "ERC20: add to group the zero address");
        require(!groupMap[_address], "AlreadyOwner");
        require(groupArray.length < 5, "MaxLimitReached");

        groupArray.push(_address);
        groupMap[_address] = true;
    }

    /**
     * @dev remove address from group
     *
     * Requirements:
     *
     * - `_address` cannot be the zero address.
     */
    function removeFromGroup(address _address) external canRemove(_address) {
        require(_address != address(0), "ERC20: remove from group the zero address");

        for (uint256 i = 0; i < groupArray.length; i++) {
            if (groupArray[i] == _address) {
                groupMap[groupArray[i]] = false;
                groupArray[i] = groupArray[groupArray.length - 1];
                groupArray.pop();
                break;
            }
        }
    }

    function pauseAddress(address _address, bool _pause) public onlyGroup {
        require(_address != address(0), "ERC20: pause the zero address");
        isPause[_address] = _pause;
    }

    function pause(address _address) public view returns(bool _isPause) {
        _isPause = isPause[_address];
    }
}

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

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/ERC20.sol)

pragma solidity ^0.8.0;

import "./IERC20.sol";
import "./extensions/IERC20Metadata.sol";
import "../../utils/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.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 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 `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 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 {}
}

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (access/Ownable.sol)

pragma solidity ^0.8.0;

import "../utils/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);
    }
}

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

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

Settings
{
  "optimizer": {
    "enabled": true,
    "runs": 200
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "devdoc",
        "userdoc",
        "metadata",
        "abi"
      ]
    }
  },
  "libraries": {}
}

Contract Security Audit

Contract ABI

API
[{"inputs":[{"internalType":"uint256","name":"_maxTotalSupply","type":"uint256"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"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":"_address","type":"address"}],"name":"addToGroup","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_value","type":"uint256"}],"name":"changeMaxTotalSupply","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":[],"name":"groupAddress","outputs":[{"internalType":"address[]","name":"","type":"address[]"}],"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":"maxTotalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"_address","type":"address[]"},{"internalType":"uint256[]","name":"_amount","type":"uint256[]"}],"name":"multipleTransfer","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":[{"internalType":"address","name":"_address","type":"address"}],"name":"pause","outputs":[{"internalType":"bool","name":"_isPause","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"},{"internalType":"bool","name":"_pause","type":"bool"}],"name":"pauseAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"removeFromGroup","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040523480156200001157600080fd5b5060405162001a9938038062001a9983398101604081905262000034916200022b565b6040518060400160405280600a815260200169434f4d4d554e4951554560b01b81525060405180604001604052806003815260200162434d5160e81b81525081600390805190602001906200008b92919062000185565b508051620000a190600490602084019062000185565b505050620000be620000b86200012f60201b60201c565b62000133565b60098054336001600160a01b031991821681179092556008805460018181019092557ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30180549092168317909155600091825260076020526040909120805460ff19169091179055600a5562000281565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b828054620001939062000245565b90600052602060002090601f016020900481019282620001b7576000855562000202565b82601f10620001d257805160ff191683800117855562000202565b8280016001018555821562000202579182015b8281111562000202578251825591602001919060010190620001e5565b506200021092915062000214565b5090565b5b8082111562000210576000815560010162000215565b6000602082840312156200023e57600080fd5b5051919050565b600181811c908216806200025a57607f821691505b6020821081036200027b57634e487b7160e01b600052602260045260246000fd5b50919050565b61180880620002916000396000f3fe608060405234801561001057600080fd5b50600436106101585760003560e01c8063715018a6116100c3578063a457c2d71161007c578063a457c2d7146102e4578063a9059cbb146102f7578063c589c1541461030a578063c6adca411461031d578063dd62ed3e14610330578063f2fde38b1461034357600080fd5b8063715018a61461026557806376a67a511461026d5780638b7b59d0146102995780638da5cb5b146102ae57806395d89b41146102c95780639dc29fac146102d157600080fd5b8063313ce56711610115578063313ce567146101e157806339509351146101f057806340c10f1914610203578063425e0d0f146102165780636f4830911461022957806370a082311461023c57600080fd5b806306fdde031461015d578063095ea7b31461017b5780630be2858e1461019e57806318160ddd146101b357806323b872dd146101c55780632ab4d052146101d8575b600080fd5b610165610356565b604051610172919061142d565b60405180910390f35b61018e61018936600461149e565b6103e8565b6040519015158152602001610172565b6101b16101ac366004611514565b610400565b005b6002545b604051908152602001610172565b61018e6101d3366004611580565b6105af565b6101b7600a5481565b60405160128152602001610172565b61018e6101fe36600461149e565b610631565b6101b161021136600461149e565b610653565b6101b16102243660046115bc565b6106f6565b6101b16102373660046115ec565b610936565b6101b761024a3660046115bc565b6001600160a01b031660009081526020819052604090205490565b6101b1610a07565b61018e61027b3660046115bc565b6001600160a01b031660009081526006602052604090205460ff1690565b6102a1610a3d565b6040516101729190611623565b6005546040516001600160a01b039091168152602001610172565b610165610a9e565b6101b16102df36600461149e565b610aad565b61018e6102f236600461149e565b610ae5565b61018e61030536600461149e565b610b60565b6101b1610318366004611670565b610bbe565b6101b161032b3660046115bc565b610bed565b6101b761033e366004611689565b610d7c565b6101b16103513660046115bc565b610da7565b606060038054610365906116bc565b80601f0160208091040260200160405190810160405280929190818152602001828054610391906116bc565b80156103de5780601f106103b3576101008083540402835291602001916103de565b820191906000526020600020905b8154815290600101906020018083116103c157829003601f168201915b5050505050905090565b6000336103f6818585610e42565b5060019392505050565b82811461046a5760405162461bcd60e51b815260206004820152602d60248201527f6c656e6774682073686f756c6420626520657175616c20666f7220616464726560448201526c1cdcc8185b9908185b5bdd5b9d609a1b60648201526084015b60405180910390fd5b3360009081526006602052604090205460ff16156104ca5760405162461bcd60e51b815260206004820152601860248201527f6d756c7469706c65207472616e736665722070617573656400000000000000006044820152606401610461565b60005b818110156105a857306323b872dd338787858181106104ee576104ee6116f6565b905060200201602081019061050391906115bc565b868686818110610515576105156116f6565b6040516001600160e01b031960e088901b1681526001600160a01b039586166004820152949093166024850152506020909102013560448201526064016020604051808303816000875af1158015610571573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610595919061170c565b50806105a08161173f565b9150506104cd565b5050505050565b6001600160a01b03831660009081526006602052604081205460ff161561060f5760405162461bcd60e51b8152602060048201526014602482015273199c9bdb481d1c985b9cd9995c881c185d5cd95960621b6044820152606401610461565b3361061b858285610f66565b610626858585610fe0565b506001949350505050565b6000336103f68185856106448383610d7c565b61064e9190611758565b610e42565b6005546001600160a01b0316331461067d5760405162461bcd60e51b815260040161046190611770565b60008161068960025490565b6106939190611758565b905080600a5410156106e75760405162461bcd60e51b815260206004820152601e60248201527f616d6f756e7420657863656564206d617820746f74616c20737570706c7900006044820152606401610461565b6106f183836111ae565b505050565b6001600160a01b038116600090815260076020526040902054819060ff1680156107285750336001600160a01b038216145b8061073d57506009546001600160a01b031633145b6107795760405162461bcd60e51b815260206004820152600d60248201526c139bdd105d5d1a1bdc9a5e9959609a1b6044820152606401610461565b6001600160a01b0382166107e15760405162461bcd60e51b815260206004820152602960248201527f45524332303a2072656d6f76652066726f6d2067726f757020746865207a65726044820152686f206164647265737360b81b6064820152608401610461565b60005b6008548110156106f157826001600160a01b03166008828154811061080b5761080b6116f6565b6000918252602090912001546001600160a01b031603610924576000600760006008848154811061083e5761083e6116f6565b6000918252602080832091909101546001600160a01b031683528201929092526040019020805460ff191691151591909117905560088054610882906001906117a5565b81548110610892576108926116f6565b600091825260209091200154600880546001600160a01b0390921691839081106108be576108be6116f6565b9060005260206000200160006101000a8154816001600160a01b0302191690836001600160a01b0316021790555060088054806108fd576108fd6117bc565b600082815260209020810160001990810180546001600160a01b0319169055019055505050565b8061092e8161173f565b9150506107e4565b3360009081526007602052604090205460ff166109865760405162461bcd60e51b815260206004820152600e60248201526d4e6f744f6e654f664f776e65727360901b6044820152606401610461565b6001600160a01b0382166109dc5760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20706175736520746865207a65726f20616464726573730000006044820152606401610461565b6001600160a01b03919091166000908152600660205260409020805460ff1916911515919091179055565b6005546001600160a01b03163314610a315760405162461bcd60e51b815260040161046190611770565b610a3b600061128d565b565b606060088054806020026020016040519081016040528092919081815260200182805480156103de57602002820191906000526020600020905b81546001600160a01b03168152600190910190602001808311610a77575050505050905090565b606060048054610365906116bc565b6005546001600160a01b03163314610ad75760405162461bcd60e51b815260040161046190611770565b610ae182826112df565b5050565b60003381610af38286610d7c565b905083811015610b535760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610461565b6106268286868403610e42565b3360009081526006602052604081205460ff1615610bb25760405162461bcd60e51b815260206004820152600f60248201526e1d1c985b9cd9995c881c185d5cd959608a1b6044820152606401610461565b336103f6818585610fe0565b6005546001600160a01b03163314610be85760405162461bcd60e51b815260040161046190611770565b600a55565b6005546001600160a01b03163314610c175760405162461bcd60e51b815260040161046190611770565b6001600160a01b038116610c795760405162461bcd60e51b8152602060048201526024808201527f45524332303a2061646420746f2067726f757020746865207a65726f206164646044820152637265737360e01b6064820152608401610461565b6001600160a01b03811660009081526007602052604090205460ff1615610cd15760405162461bcd60e51b815260206004820152600c60248201526b20b63932b0b23ca7bbb732b960a11b6044820152606401610461565b600854600511610d155760405162461bcd60e51b815260206004820152600f60248201526e13585e131a5b5a5d14995858da1959608a1b6044820152606401610461565b6008805460018181019092557ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30180546001600160a01b039093166001600160a01b031990931683179055600091825260076020526040909120805460ff19169091179055565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6005546001600160a01b03163314610dd15760405162461bcd60e51b815260040161046190611770565b6001600160a01b038116610e365760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610461565b610e3f8161128d565b50565b6001600160a01b038316610ea45760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610461565b6001600160a01b038216610f055760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610461565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6000610f728484610d7c565b90506000198114610fda5781811015610fcd5760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610461565b610fda8484848403610e42565b50505050565b6001600160a01b0383166110445760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610461565b6001600160a01b0382166110a65760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610461565b6001600160a01b0383166000908152602081905260409020548181101561111e5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610461565b6001600160a01b03808516600090815260208190526040808220858503905591851681529081208054849290611155908490611758565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516111a191815260200190565b60405180910390a3610fda565b6001600160a01b0382166112045760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401610461565b80600260008282546112169190611758565b90915550506001600160a01b03821660009081526020819052604081208054839290611243908490611758565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b03821661133f5760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b6064820152608401610461565b6001600160a01b038216600090815260208190526040902054818110156113b35760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b6064820152608401610461565b6001600160a01b03831660009081526020819052604081208383039055600280548492906113e29084906117a5565b90915550506040518281526000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a3505050565b600060208083528351808285015260005b8181101561145a5785810183015185820160400152820161143e565b8181111561146c576000604083870101525b50601f01601f1916929092016040019392505050565b80356001600160a01b038116811461149957600080fd5b919050565b600080604083850312156114b157600080fd5b6114ba83611482565b946020939093013593505050565b60008083601f8401126114da57600080fd5b50813567ffffffffffffffff8111156114f257600080fd5b6020830191508360208260051b850101111561150d57600080fd5b9250929050565b6000806000806040858703121561152a57600080fd5b843567ffffffffffffffff8082111561154257600080fd5b61154e888389016114c8565b9096509450602087013591508082111561156757600080fd5b50611574878288016114c8565b95989497509550505050565b60008060006060848603121561159557600080fd5b61159e84611482565b92506115ac60208501611482565b9150604084013590509250925092565b6000602082840312156115ce57600080fd5b6115d782611482565b9392505050565b8015158114610e3f57600080fd5b600080604083850312156115ff57600080fd5b61160883611482565b91506020830135611618816115de565b809150509250929050565b6020808252825182820181905260009190848201906040850190845b818110156116645783516001600160a01b03168352928401929184019160010161163f565b50909695505050505050565b60006020828403121561168257600080fd5b5035919050565b6000806040838503121561169c57600080fd5b6116a583611482565b91506116b360208401611482565b90509250929050565b600181811c908216806116d057607f821691505b6020821081036116f057634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052603260045260246000fd5b60006020828403121561171e57600080fd5b81516115d7816115de565b634e487b7160e01b600052601160045260246000fd5b60006001820161175157611751611729565b5060010190565b6000821982111561176b5761176b611729565b500190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6000828210156117b7576117b7611729565b500390565b634e487b7160e01b600052603160045260246000fdfea26469706673582212207457e488ba510c1939aba898e1b1ac1841f404b7b23ee0ac8bc9b6f0dcac6b8364736f6c634300080d00330000000000000000000000000000000000000000204fce5e3e25026110000000

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101585760003560e01c8063715018a6116100c3578063a457c2d71161007c578063a457c2d7146102e4578063a9059cbb146102f7578063c589c1541461030a578063c6adca411461031d578063dd62ed3e14610330578063f2fde38b1461034357600080fd5b8063715018a61461026557806376a67a511461026d5780638b7b59d0146102995780638da5cb5b146102ae57806395d89b41146102c95780639dc29fac146102d157600080fd5b8063313ce56711610115578063313ce567146101e157806339509351146101f057806340c10f1914610203578063425e0d0f146102165780636f4830911461022957806370a082311461023c57600080fd5b806306fdde031461015d578063095ea7b31461017b5780630be2858e1461019e57806318160ddd146101b357806323b872dd146101c55780632ab4d052146101d8575b600080fd5b610165610356565b604051610172919061142d565b60405180910390f35b61018e61018936600461149e565b6103e8565b6040519015158152602001610172565b6101b16101ac366004611514565b610400565b005b6002545b604051908152602001610172565b61018e6101d3366004611580565b6105af565b6101b7600a5481565b60405160128152602001610172565b61018e6101fe36600461149e565b610631565b6101b161021136600461149e565b610653565b6101b16102243660046115bc565b6106f6565b6101b16102373660046115ec565b610936565b6101b761024a3660046115bc565b6001600160a01b031660009081526020819052604090205490565b6101b1610a07565b61018e61027b3660046115bc565b6001600160a01b031660009081526006602052604090205460ff1690565b6102a1610a3d565b6040516101729190611623565b6005546040516001600160a01b039091168152602001610172565b610165610a9e565b6101b16102df36600461149e565b610aad565b61018e6102f236600461149e565b610ae5565b61018e61030536600461149e565b610b60565b6101b1610318366004611670565b610bbe565b6101b161032b3660046115bc565b610bed565b6101b761033e366004611689565b610d7c565b6101b16103513660046115bc565b610da7565b606060038054610365906116bc565b80601f0160208091040260200160405190810160405280929190818152602001828054610391906116bc565b80156103de5780601f106103b3576101008083540402835291602001916103de565b820191906000526020600020905b8154815290600101906020018083116103c157829003601f168201915b5050505050905090565b6000336103f6818585610e42565b5060019392505050565b82811461046a5760405162461bcd60e51b815260206004820152602d60248201527f6c656e6774682073686f756c6420626520657175616c20666f7220616464726560448201526c1cdcc8185b9908185b5bdd5b9d609a1b60648201526084015b60405180910390fd5b3360009081526006602052604090205460ff16156104ca5760405162461bcd60e51b815260206004820152601860248201527f6d756c7469706c65207472616e736665722070617573656400000000000000006044820152606401610461565b60005b818110156105a857306323b872dd338787858181106104ee576104ee6116f6565b905060200201602081019061050391906115bc565b868686818110610515576105156116f6565b6040516001600160e01b031960e088901b1681526001600160a01b039586166004820152949093166024850152506020909102013560448201526064016020604051808303816000875af1158015610571573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610595919061170c565b50806105a08161173f565b9150506104cd565b5050505050565b6001600160a01b03831660009081526006602052604081205460ff161561060f5760405162461bcd60e51b8152602060048201526014602482015273199c9bdb481d1c985b9cd9995c881c185d5cd95960621b6044820152606401610461565b3361061b858285610f66565b610626858585610fe0565b506001949350505050565b6000336103f68185856106448383610d7c565b61064e9190611758565b610e42565b6005546001600160a01b0316331461067d5760405162461bcd60e51b815260040161046190611770565b60008161068960025490565b6106939190611758565b905080600a5410156106e75760405162461bcd60e51b815260206004820152601e60248201527f616d6f756e7420657863656564206d617820746f74616c20737570706c7900006044820152606401610461565b6106f183836111ae565b505050565b6001600160a01b038116600090815260076020526040902054819060ff1680156107285750336001600160a01b038216145b8061073d57506009546001600160a01b031633145b6107795760405162461bcd60e51b815260206004820152600d60248201526c139bdd105d5d1a1bdc9a5e9959609a1b6044820152606401610461565b6001600160a01b0382166107e15760405162461bcd60e51b815260206004820152602960248201527f45524332303a2072656d6f76652066726f6d2067726f757020746865207a65726044820152686f206164647265737360b81b6064820152608401610461565b60005b6008548110156106f157826001600160a01b03166008828154811061080b5761080b6116f6565b6000918252602090912001546001600160a01b031603610924576000600760006008848154811061083e5761083e6116f6565b6000918252602080832091909101546001600160a01b031683528201929092526040019020805460ff191691151591909117905560088054610882906001906117a5565b81548110610892576108926116f6565b600091825260209091200154600880546001600160a01b0390921691839081106108be576108be6116f6565b9060005260206000200160006101000a8154816001600160a01b0302191690836001600160a01b0316021790555060088054806108fd576108fd6117bc565b600082815260209020810160001990810180546001600160a01b0319169055019055505050565b8061092e8161173f565b9150506107e4565b3360009081526007602052604090205460ff166109865760405162461bcd60e51b815260206004820152600e60248201526d4e6f744f6e654f664f776e65727360901b6044820152606401610461565b6001600160a01b0382166109dc5760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20706175736520746865207a65726f20616464726573730000006044820152606401610461565b6001600160a01b03919091166000908152600660205260409020805460ff1916911515919091179055565b6005546001600160a01b03163314610a315760405162461bcd60e51b815260040161046190611770565b610a3b600061128d565b565b606060088054806020026020016040519081016040528092919081815260200182805480156103de57602002820191906000526020600020905b81546001600160a01b03168152600190910190602001808311610a77575050505050905090565b606060048054610365906116bc565b6005546001600160a01b03163314610ad75760405162461bcd60e51b815260040161046190611770565b610ae182826112df565b5050565b60003381610af38286610d7c565b905083811015610b535760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610461565b6106268286868403610e42565b3360009081526006602052604081205460ff1615610bb25760405162461bcd60e51b815260206004820152600f60248201526e1d1c985b9cd9995c881c185d5cd959608a1b6044820152606401610461565b336103f6818585610fe0565b6005546001600160a01b03163314610be85760405162461bcd60e51b815260040161046190611770565b600a55565b6005546001600160a01b03163314610c175760405162461bcd60e51b815260040161046190611770565b6001600160a01b038116610c795760405162461bcd60e51b8152602060048201526024808201527f45524332303a2061646420746f2067726f757020746865207a65726f206164646044820152637265737360e01b6064820152608401610461565b6001600160a01b03811660009081526007602052604090205460ff1615610cd15760405162461bcd60e51b815260206004820152600c60248201526b20b63932b0b23ca7bbb732b960a11b6044820152606401610461565b600854600511610d155760405162461bcd60e51b815260206004820152600f60248201526e13585e131a5b5a5d14995858da1959608a1b6044820152606401610461565b6008805460018181019092557ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30180546001600160a01b039093166001600160a01b031990931683179055600091825260076020526040909120805460ff19169091179055565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6005546001600160a01b03163314610dd15760405162461bcd60e51b815260040161046190611770565b6001600160a01b038116610e365760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610461565b610e3f8161128d565b50565b6001600160a01b038316610ea45760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610461565b6001600160a01b038216610f055760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610461565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6000610f728484610d7c565b90506000198114610fda5781811015610fcd5760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610461565b610fda8484848403610e42565b50505050565b6001600160a01b0383166110445760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610461565b6001600160a01b0382166110a65760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610461565b6001600160a01b0383166000908152602081905260409020548181101561111e5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610461565b6001600160a01b03808516600090815260208190526040808220858503905591851681529081208054849290611155908490611758565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516111a191815260200190565b60405180910390a3610fda565b6001600160a01b0382166112045760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401610461565b80600260008282546112169190611758565b90915550506001600160a01b03821660009081526020819052604081208054839290611243908490611758565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b03821661133f5760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b6064820152608401610461565b6001600160a01b038216600090815260208190526040902054818110156113b35760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b6064820152608401610461565b6001600160a01b03831660009081526020819052604081208383039055600280548492906113e29084906117a5565b90915550506040518281526000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a3505050565b600060208083528351808285015260005b8181101561145a5785810183015185820160400152820161143e565b8181111561146c576000604083870101525b50601f01601f1916929092016040019392505050565b80356001600160a01b038116811461149957600080fd5b919050565b600080604083850312156114b157600080fd5b6114ba83611482565b946020939093013593505050565b60008083601f8401126114da57600080fd5b50813567ffffffffffffffff8111156114f257600080fd5b6020830191508360208260051b850101111561150d57600080fd5b9250929050565b6000806000806040858703121561152a57600080fd5b843567ffffffffffffffff8082111561154257600080fd5b61154e888389016114c8565b9096509450602087013591508082111561156757600080fd5b50611574878288016114c8565b95989497509550505050565b60008060006060848603121561159557600080fd5b61159e84611482565b92506115ac60208501611482565b9150604084013590509250925092565b6000602082840312156115ce57600080fd5b6115d782611482565b9392505050565b8015158114610e3f57600080fd5b600080604083850312156115ff57600080fd5b61160883611482565b91506020830135611618816115de565b809150509250929050565b6020808252825182820181905260009190848201906040850190845b818110156116645783516001600160a01b03168352928401929184019160010161163f565b50909695505050505050565b60006020828403121561168257600080fd5b5035919050565b6000806040838503121561169c57600080fd5b6116a583611482565b91506116b360208401611482565b90509250929050565b600181811c908216806116d057607f821691505b6020821081036116f057634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052603260045260246000fd5b60006020828403121561171e57600080fd5b81516115d7816115de565b634e487b7160e01b600052601160045260246000fd5b60006001820161175157611751611729565b5060010190565b6000821982111561176b5761176b611729565b500190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6000828210156117b7576117b7611729565b500390565b634e487b7160e01b600052603160045260246000fdfea26469706673582212207457e488ba510c1939aba898e1b1ac1841f404b7b23ee0ac8bc9b6f0dcac6b8364736f6c634300080d0033

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

0000000000000000000000000000000000000000204fce5e3e25026110000000

-----Decoded View---------------
Arg [0] : _maxTotalSupply (uint256): 10000000000000000000000000000

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000204fce5e3e25026110000000


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.