ETH Price: $2,615.41 (+0.84%)

Token

CROWD (CWD)
 

Overview

Max Total Supply

2,496,085,858.11024596 CWD

Holders

1,581

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
0 CWD

Value
$0.00
0xb4669b10d923c2d141f2eccf382bbe06ceedf82b
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
CROWDToken

Compiler Version
v0.8.0+commit.c7dfd78e

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 8 : CROWDToken.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./ICROWDToken.sol";

contract CROWDToken is ICROWDToken {
    constructor(
        string memory _name,
        string memory _symbol,
        uint256 _amount
    ) ERC20(_name, _symbol) {
        setMaxSupply(_amount * 10**decimals());
        _mint(_msgSender(), maxSupply());
    }

    //Don't accept ETH or BNB
    receive() external payable {
        revert("Don't accept ETH or BNB");
    }
}

File 2 of 8 : ICROWDToken.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

contract HasMinters is Ownable {
    event MinterAdded(address indexed _minter);
    event MinterRemoved(address indexed _minter);

    address[] public minters;
    mapping(address => bool) public minter;

    modifier onlyMinter() {
        require(minter[msg.sender], "invalid minter");
        _;
    }

    function addMinters(address[] memory _addedMinters) public onlyOwner {
        address _minter;

        for (uint256 i = 0; i < _addedMinters.length; i++) {
            _minter = _addedMinters[i];

            if (!minter[_minter]) {
                minters.push(_minter);
                minter[_minter] = true;
                emit MinterAdded(_minter);
            }
        }
    }

    function removeMinters(address[] memory _removedMinters) public onlyOwner {
        address _minter;

        for (uint256 it = 0; it < _removedMinters.length; it++) {
            _minter = _removedMinters[it];

            if (minter[_minter]) {
                minter[_minter] = false;
                emit MinterRemoved(_minter);
            }
        }

        uint256 i = 0;

        while (i < minters.length) {
            _minter = minters[i];

            if (!minter[_minter]) {
                minters[i] = minters[minters.length - 1];
                delete minters[minters.length - 1];
                // minters.length--;
            } else {
                i++;
            }
        }
    }

    function isMinter(address _addr) public view returns (bool) {
        return minter[_addr];
    }
}

abstract contract ICROWDToken is ERC20, Pausable, Ownable, HasMinters {
    uint256 private _maxSupply;

    function setMaxSupply(uint256 amount) internal onlyOwner {
        _maxSupply = amount;
    }

    function maxSupply() public view returns (uint256) {
        return _maxSupply;
    }

    /**
     * @dev Destroys `amount` tokens from the caller.
     *
     * See {ERC20-_burn}.
     */
    function burn(uint256 amount) public virtual {
        _burn(_msgSender(), amount);
    }

    function mint(address to, uint256 amount) public virtual onlyMinter {
        require(totalSupply() + amount <= _maxSupply, "over maxSupply");
        _mint(to, 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 {
        uint256 currentAllowance = allowance(account, _msgSender());
        require(currentAllowance >= amount, "ERC20: burn amount exceeds allowance");
        unchecked {
            _approve(account, _msgSender(), currentAllowance - amount);
        }
        _burn(account, amount);
    }

    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual override {
        super._beforeTokenTransfer(from, to, amount);

        require(!paused(), "ERC20Pausable: token transfer while paused");
    }

    function stop() public onlyOwner {
        _pause();
    }

    function start() public onlyOwner {
        _unpause();
    }
}

File 3 of 8 : ERC20.sol
// SPDX-License-Identifier: MIT

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 guidelines: functions revert instead
 * of 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:
     *
     * - `recipient` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(address recipient, uint256 amount) public virtual override returns (bool) {
        _transfer(_msgSender(), recipient, 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}.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        _approve(_msgSender(), 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}.
     *
     * Requirements:
     *
     * - `sender` and `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     * - the caller must have allowance for ``sender``'s tokens of at least
     * `amount`.
     */
    function transferFrom(
        address sender,
        address recipient,
        uint256 amount
    ) public virtual override returns (bool) {
        _transfer(sender, recipient, amount);

        uint256 currentAllowance = _allowances[sender][_msgSender()];
        require(currentAllowance >= amount, "ERC20: transfer amount exceeds allowance");
        unchecked {
            _approve(sender, _msgSender(), currentAllowance - 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) {
        _approve(_msgSender(), spender, _allowances[_msgSender()][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) {
        uint256 currentAllowance = _allowances[_msgSender()][spender];
        require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
        unchecked {
            _approve(_msgSender(), 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:
     *
     * - `sender` cannot be the zero address.
     * - `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     */
    function _transfer(
        address sender,
        address recipient,
        uint256 amount
    ) internal virtual {
        require(sender != address(0), "ERC20: transfer from the zero address");
        require(recipient != address(0), "ERC20: transfer to the zero address");

        _beforeTokenTransfer(sender, recipient, amount);

        uint256 senderBalance = _balances[sender];
        require(senderBalance >= amount, "ERC20: transfer amount exceeds balance");
        unchecked {
            _balances[sender] = senderBalance - amount;
        }
        _balances[recipient] += amount;

        emit Transfer(sender, recipient, amount);

        _afterTokenTransfer(sender, recipient, 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 Hook that is called before any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * will be transferred to `to`.
     * - when `from` is zero, `amount` tokens will be minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens will be burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {}

    /**
     * @dev Hook that is called after any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * has been transferred to `to`.
     * - when `from` is zero, `amount` tokens have been minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens have been burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _afterTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {}
}

File 4 of 8 : Pausable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "../utils/Context.sol";

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

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

    bool private _paused;

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

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

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

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

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

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

File 5 of 8 : Ownable.sol
// SPDX-License-Identifier: MIT

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() {
        _setOwner(_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 {
        _setOwner(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");
        _setOwner(newOwner);
    }

    function _setOwner(address newOwner) private {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

File 6 of 8 : IERC20.sol
// SPDX-License-Identifier: MIT

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 `recipient`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address recipient, 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 `sender` to `recipient` 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 sender,
        address recipient,
        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 7 of 8 : IERC20Metadata.sol
// SPDX-License-Identifier: MIT

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 8 of 8 : Context.sol
// SPDX-License-Identifier: MIT

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": false,
    "runs": 200
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "devdoc",
        "userdoc",
        "metadata",
        "abi"
      ]
    }
  },
  "libraries": {}
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"uint256","name":"_amount","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":"_minter","type":"address"}],"name":"MinterAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"_minter","type":"address"}],"name":"MinterRemoved","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[{"internalType":"address[]","name":"_addedMinters","type":"address[]"}],"name":"addMinters","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":"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":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_addr","type":"address"}],"name":"isMinter","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"minter","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"minters","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","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":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"_removedMinters","type":"address[]"}],"name":"removeMinters","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"start","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"stop","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":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","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"},{"stateMutability":"payable","type":"receive"}]

60806040523480156200001157600080fd5b5060405162003bf638038062003bf6833981810160405281019062000037919062000603565b8282816003908051906020019062000051929190620004ca565b5080600490805190602001906200006a929190620004ca565b5050506000600560006101000a81548160ff021916908315150217905550620000a86200009c6200011c60201b60201c565b6200012460201b60201c565b620000e3620000bc620001ea60201b60201c565b600a620000ca91906200093b565b82620000d7919062000a78565b620001f360201b60201c565b62000113620000f76200011c60201b60201c565b620001076200028c60201b60201c565b6200029660201b60201c565b50505062000c10565b600033905090565b6000600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60006012905090565b620002036200011c60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620002296200040f60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000282576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002799062000788565b60405180910390fd5b8060088190555050565b6000600854905090565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141562000309576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200030090620007aa565b60405180910390fd5b6200031d600083836200043960201b60201c565b806002600082825462000331919062000883565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825462000388919062000883565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051620003ef9190620007ee565b60405180910390a36200040b60008383620004a960201b60201c565b5050565b6000600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b62000451838383620004ae60201b620016d11760201c565b62000461620004b360201b60201c565b15620004a4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200049b90620007cc565b60405180910390fd5b505050565b505050565b505050565b6000600560009054906101000a900460ff16905090565b828054620004d89062000b26565b90600052602060002090601f016020900481019282620004fc576000855562000548565b82601f106200051757805160ff191683800117855562000548565b8280016001018555821562000548579182015b82811115620005475782518255916020019190600101906200052a565b5b5090506200055791906200055b565b5090565b5b80821115620005765760008160009055506001016200055c565b5090565b6000620005916200058b846200083f565b6200080b565b905082815260208101848484011115620005aa57600080fd5b620005b784828562000af0565b509392505050565b600082601f830112620005d157600080fd5b8151620005e38482602086016200057a565b91505092915050565b600081519050620005fd8162000bf6565b92915050565b6000806000606084860312156200061957600080fd5b600084015167ffffffffffffffff8111156200063457600080fd5b6200064286828701620005bf565b935050602084015167ffffffffffffffff8111156200066057600080fd5b6200066e86828701620005bf565b92505060406200068186828701620005ec565b9150509250925092565b60006200069a60208362000872565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b6000620006dc601f8362000872565b91507f45524332303a206d696e7420746f20746865207a65726f2061646472657373006000830152602082019050919050565b60006200071e602a8362000872565b91507f45524332305061757361626c653a20746f6b656e207472616e7366657220776860008301527f696c6520706175736564000000000000000000000000000000000000000000006020830152604082019050919050565b620007828162000ad9565b82525050565b60006020820190508181036000830152620007a3816200068b565b9050919050565b60006020820190508181036000830152620007c581620006cd565b9050919050565b60006020820190508181036000830152620007e7816200070f565b9050919050565b600060208201905062000805600083018462000777565b92915050565b6000604051905081810181811067ffffffffffffffff8211171562000835576200083462000bba565b5b8060405250919050565b600067ffffffffffffffff8211156200085d576200085c62000bba565b5b601f19601f8301169050602081019050919050565b600082825260208201905092915050565b6000620008908262000ad9565b91506200089d8362000ad9565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115620008d557620008d462000b5c565b5b828201905092915050565b6000808291508390505b600185111562000932578086048111156200090a576200090962000b5c565b5b60018516156200091a5780820291505b80810290506200092a8562000be9565b9450620008ea565b94509492505050565b6000620009488262000ad9565b9150620009558362000ae3565b9250620009847fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff84846200098c565b905092915050565b6000826200099e576001905062000a71565b81620009ae576000905062000a71565b8160018114620009c75760028114620009d25762000a08565b600191505062000a71565b60ff841115620009e757620009e662000b5c565b5b8360020a91508482111562000a015762000a0062000b5c565b5b5062000a71565b5060208310610133831016604e8410600b841016171562000a425782820a90508381111562000a3c5762000a3b62000b5c565b5b62000a71565b62000a518484846001620008e0565b9250905081840481111562000a6b5762000a6a62000b5c565b5b81810290505b9392505050565b600062000a858262000ad9565b915062000a928362000ad9565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161562000ace5762000acd62000b5c565b5b828202905092915050565b6000819050919050565b600060ff82169050919050565b60005b8381101562000b1057808201518184015260208101905062000af3565b8381111562000b20576000848401525b50505050565b6000600282049050600182168062000b3f57607f821691505b6020821081141562000b565762000b5562000b8b565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b60008160011c9050919050565b62000c018162000ad9565b811462000c0d57600080fd5b50565b612fd68062000c206000396000f3fe6080604052600436106101855760003560e01c8063715018a6116100d1578063a457c2d71161008a578063be9a655511610064578063be9a6555146105ec578063d5abeb0114610603578063dd62ed3e1461062e578063f2fde38b1461066b576101c5565b8063a457c2d714610535578063a9059cbb14610572578063aa271e1a146105af576101c5565b8063715018a61461043957806371e2a6571461045057806379cc6790146104795780638623ec7b146104a25780638da5cb5b146104df57806395d89b411461050a576101c5565b8063395093511161013e57806342966c681161011857806342966c681461037f5780635c975abb146103a85780635fc1964f146103d357806370a08231146103fc576101c5565b806339509351146102dc5780633dd08c381461031957806340c10f1914610356576101c5565b806306fdde03146101ca57806307da68f5146101f5578063095ea7b31461020c57806318160ddd1461024957806323b872dd14610274578063313ce567146102b1576101c5565b366101c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016101bc90612a98565b60405180910390fd5b600080fd5b3480156101d657600080fd5b506101df610694565b6040516101ec9190612a16565b60405180910390f35b34801561020157600080fd5b5061020a610726565b005b34801561021857600080fd5b50610233600480360381019061022e919061223d565b6107ac565b60405161024091906129fb565b60405180910390f35b34801561025557600080fd5b5061025e6107ca565b60405161026b9190612c98565b60405180910390f35b34801561028057600080fd5b5061029b600480360381019061029691906121ee565b6107d4565b6040516102a891906129fb565b60405180910390f35b3480156102bd57600080fd5b506102c66108cc565b6040516102d39190612cb3565b60405180910390f35b3480156102e857600080fd5b5061030360048036038101906102fe919061223d565b6108d5565b60405161031091906129fb565b60405180910390f35b34801561032557600080fd5b50610340600480360381019061033b9190612189565b610981565b60405161034d91906129fb565b60405180910390f35b34801561036257600080fd5b5061037d6004803603810190610378919061223d565b6109a1565b005b34801561038b57600080fd5b506103a660048036038101906103a191906122ba565b610a92565b005b3480156103b457600080fd5b506103bd610aa6565b6040516103ca91906129fb565b60405180910390f35b3480156103df57600080fd5b506103fa60048036038101906103f59190612279565b610abd565b005b34801561040857600080fd5b50610423600480360381019061041e9190612189565b610ee5565b6040516104309190612c98565b60405180910390f35b34801561044557600080fd5b5061044e610f2d565b005b34801561045c57600080fd5b5061047760048036038101906104729190612279565b610fb5565b005b34801561048557600080fd5b506104a0600480360381019061049b919061223d565b6111ed565b005b3480156104ae57600080fd5b506104c960048036038101906104c491906122ba565b611268565b6040516104d691906129e0565b60405180910390f35b3480156104eb57600080fd5b506104f46112a7565b60405161050191906129e0565b60405180910390f35b34801561051657600080fd5b5061051f6112d1565b60405161052c9190612a16565b60405180910390f35b34801561054157600080fd5b5061055c6004803603810190610557919061223d565b611363565b60405161056991906129fb565b60405180910390f35b34801561057e57600080fd5b506105996004803603810190610594919061223d565b61144e565b6040516105a691906129fb565b60405180910390f35b3480156105bb57600080fd5b506105d660048036038101906105d19190612189565b61146c565b6040516105e391906129fb565b60405180910390f35b3480156105f857600080fd5b506106016114c2565b005b34801561060f57600080fd5b50610618611548565b6040516106259190612c98565b60405180910390f35b34801561063a57600080fd5b50610655600480360381019061065091906121b2565b611552565b6040516106629190612c98565b60405180910390f35b34801561067757600080fd5b50610692600480360381019061068d9190612189565b6115d9565b005b6060600380546106a390612e59565b80601f01602080910402602001604051908101604052809291908181526020018280546106cf90612e59565b801561071c5780601f106106f15761010080835404028352916020019161071c565b820191906000526020600020905b8154815290600101906020018083116106ff57829003601f168201915b5050505050905090565b61072e6116d6565b73ffffffffffffffffffffffffffffffffffffffff1661074c6112a7565b73ffffffffffffffffffffffffffffffffffffffff16146107a2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161079990612b58565b60405180910390fd5b6107aa6116de565b565b60006107c06107b96116d6565b8484611781565b6001905092915050565b6000600254905090565b60006107e184848461194c565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600061082c6116d6565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050828110156108ac576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108a390612b38565b60405180910390fd5b6108c0856108b86116d6565b858403611781565b60019150509392505050565b60006012905090565b60006109776108e26116d6565b8484600160006108f06116d6565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546109729190612d47565b611781565b6001905092915050565b60076020528060005260406000206000915054906101000a900460ff1681565b600760003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16610a2d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a2490612b78565b60405180910390fd5b60085481610a396107ca565b610a439190612d47565b1115610a84576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a7b90612bf8565b60405180910390fd5b610a8e8282611bcd565b5050565b610aa3610a9d6116d6565b82611d2d565b50565b6000600560009054906101000a900460ff16905090565b610ac56116d6565b73ffffffffffffffffffffffffffffffffffffffff16610ae36112a7565b73ffffffffffffffffffffffffffffffffffffffff1614610b39576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b3090612b58565b60405180910390fd5b600080600090505b8251811015610c8e57828181518110610b83577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101519150600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615610c7b576000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167fe94479a9f7e1952cc78f2d6baab678adc1b772d936c6583def489e524cb6669260405160405180910390a25b8080610c8690612e8b565b915050610b41565b5060005b600680549050811015610ee05760068181548110610cd9577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169150600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16610ecc5760066001600680549050610d6b9190612d9d565b81548110610da2577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1660068281548110610e07577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060066001600680549050610e639190612d9d565b81548110610e9a577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200160006101000a81549073ffffffffffffffffffffffffffffffffffffffff0219169055610edb565b8080610ed790612e8b565b9150505b610c92565b505050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610f356116d6565b73ffffffffffffffffffffffffffffffffffffffff16610f536112a7565b73ffffffffffffffffffffffffffffffffffffffff1614610fa9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fa090612b58565b60405180910390fd5b610fb36000611f04565b565b610fbd6116d6565b73ffffffffffffffffffffffffffffffffffffffff16610fdb6112a7565b73ffffffffffffffffffffffffffffffffffffffff1614611031576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161102890612b58565b60405180910390fd5b600080600090505b82518110156111e85782818151811061107b577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101519150600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff166111d5576006829080600181540180825580915050600190039060005260206000200160009091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506001600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f6ae172837ea30b801fbfcdd4108aa1d5bf8ff775444fd70256b44e6bf3dfc3f660405160405180910390a25b80806111e090612e8b565b915050611039565b505050565b6000611200836111fb6116d6565b611552565b905081811015611245576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161123c90612b98565b60405180910390fd5b611259836112516116d6565b848403611781565b6112638383611d2d565b505050565b6006818154811061127857600080fd5b906000526020600020016000915054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600480546112e090612e59565b80601f016020809104026020016040519081016040528092919081815260200182805461130c90612e59565b80156113595780601f1061132e57610100808354040283529160200191611359565b820191906000526020600020905b81548152906001019060200180831161133c57829003601f168201915b5050505050905090565b600080600160006113726116d6565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508281101561142f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161142690612c38565b60405180910390fd5b61144361143a6116d6565b85858403611781565b600191505092915050565b600061146261145b6116d6565b848461194c565b6001905092915050565b6000600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b6114ca6116d6565b73ffffffffffffffffffffffffffffffffffffffff166114e86112a7565b73ffffffffffffffffffffffffffffffffffffffff161461153e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161153590612b58565b60405180910390fd5b611546611fca565b565b6000600854905090565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6115e16116d6565b73ffffffffffffffffffffffffffffffffffffffff166115ff6112a7565b73ffffffffffffffffffffffffffffffffffffffff1614611655576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161164c90612b58565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156116c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116bc90612ab8565b60405180910390fd5b6116ce81611f04565b50565b505050565b600033905090565b6116e6610aa6565b15611726576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161171d90612b18565b60405180910390fd5b6001600560006101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a25861176a6116d6565b60405161177791906129e0565b60405180910390a1565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156117f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117e890612c18565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611861576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161185890612ad8565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405161193f9190612c98565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156119bc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119b390612bd8565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611a2c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a2390612a38565b60405180910390fd5b611a3783838361206c565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611abd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ab490612af8565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611b509190612d47565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611bb49190612c98565b60405180910390a3611bc78484846120c4565b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611c3d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c3490612c58565b60405180910390fd5b611c496000838361206c565b8060026000828254611c5b9190612d47565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611cb09190612d47565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051611d159190612c98565b60405180910390a3611d29600083836120c4565b5050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611d9d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d9490612bb8565b60405180910390fd5b611da98260008361206c565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611e2f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e2690612a78565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508160026000828254611e869190612d9d565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611eeb9190612c98565b60405180910390a3611eff836000846120c4565b505050565b6000600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611fd2610aa6565b612011576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161200890612a58565b60405180910390fd5b6000600560006101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa6120556116d6565b60405161206291906129e0565b60405180910390a1565b6120778383836116d1565b61207f610aa6565b156120bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120b690612c78565b60405180910390fd5b505050565b505050565b60006120dc6120d784612cff565b612cce565b905080838252602082019050828560208602820111156120fb57600080fd5b60005b8581101561212b57816121118882612135565b8452602084019350602083019250506001810190506120fe565b5050509392505050565b60008135905061214481612f72565b92915050565b600082601f83011261215b57600080fd5b813561216b8482602086016120c9565b91505092915050565b60008135905061218381612f89565b92915050565b60006020828403121561219b57600080fd5b60006121a984828501612135565b91505092915050565b600080604083850312156121c557600080fd5b60006121d385828601612135565b92505060206121e485828601612135565b9150509250929050565b60008060006060848603121561220357600080fd5b600061221186828701612135565b935050602061222286828701612135565b925050604061223386828701612174565b9150509250925092565b6000806040838503121561225057600080fd5b600061225e85828601612135565b925050602061226f85828601612174565b9150509250929050565b60006020828403121561228b57600080fd5b600082013567ffffffffffffffff8111156122a557600080fd5b6122b18482850161214a565b91505092915050565b6000602082840312156122cc57600080fd5b60006122da84828501612174565b91505092915050565b6122ec81612dd1565b82525050565b6122fb81612de3565b82525050565b600061230c82612d2b565b6123168185612d36565b9350612326818560208601612e26565b61232f81612f61565b840191505092915050565b6000612347602383612d36565b91507f45524332303a207472616e7366657220746f20746865207a65726f206164647260008301527f65737300000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006123ad601483612d36565b91507f5061757361626c653a206e6f74207061757365640000000000000000000000006000830152602082019050919050565b60006123ed602283612d36565b91507f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008301527f63650000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000612453601783612d36565b91507f446f6e27742061636365707420455448206f7220424e420000000000000000006000830152602082019050919050565b6000612493602683612d36565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006124f9602283612d36565b91507f45524332303a20617070726f766520746f20746865207a65726f20616464726560008301527f73730000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061255f602683612d36565b91507f45524332303a207472616e7366657220616d6f756e742065786365656473206260008301527f616c616e636500000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006125c5601083612d36565b91507f5061757361626c653a20706175736564000000000000000000000000000000006000830152602082019050919050565b6000612605602883612d36565b91507f45524332303a207472616e7366657220616d6f756e742065786365656473206160008301527f6c6c6f77616e63650000000000000000000000000000000000000000000000006020830152604082019050919050565b600061266b602083612d36565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b60006126ab600e83612d36565b91507f696e76616c6964206d696e7465720000000000000000000000000000000000006000830152602082019050919050565b60006126eb602483612d36565b91507f45524332303a206275726e20616d6f756e74206578636565647320616c6c6f7760008301527f616e6365000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000612751602183612d36565b91507f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008301527f73000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006127b7602583612d36565b91507f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008301527f64726573730000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061281d600e83612d36565b91507f6f766572206d6178537570706c790000000000000000000000000000000000006000830152602082019050919050565b600061285d602483612d36565b91507f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006128c3602583612d36565b91507f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008301527f207a65726f0000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000612929601f83612d36565b91507f45524332303a206d696e7420746f20746865207a65726f2061646472657373006000830152602082019050919050565b6000612969602a83612d36565b91507f45524332305061757361626c653a20746f6b656e207472616e7366657220776860008301527f696c6520706175736564000000000000000000000000000000000000000000006020830152604082019050919050565b6129cb81612e0f565b82525050565b6129da81612e19565b82525050565b60006020820190506129f560008301846122e3565b92915050565b6000602082019050612a1060008301846122f2565b92915050565b60006020820190508181036000830152612a308184612301565b905092915050565b60006020820190508181036000830152612a518161233a565b9050919050565b60006020820190508181036000830152612a71816123a0565b9050919050565b60006020820190508181036000830152612a91816123e0565b9050919050565b60006020820190508181036000830152612ab181612446565b9050919050565b60006020820190508181036000830152612ad181612486565b9050919050565b60006020820190508181036000830152612af1816124ec565b9050919050565b60006020820190508181036000830152612b1181612552565b9050919050565b60006020820190508181036000830152612b31816125b8565b9050919050565b60006020820190508181036000830152612b51816125f8565b9050919050565b60006020820190508181036000830152612b718161265e565b9050919050565b60006020820190508181036000830152612b918161269e565b9050919050565b60006020820190508181036000830152612bb1816126de565b9050919050565b60006020820190508181036000830152612bd181612744565b9050919050565b60006020820190508181036000830152612bf1816127aa565b9050919050565b60006020820190508181036000830152612c1181612810565b9050919050565b60006020820190508181036000830152612c3181612850565b9050919050565b60006020820190508181036000830152612c51816128b6565b9050919050565b60006020820190508181036000830152612c718161291c565b9050919050565b60006020820190508181036000830152612c918161295c565b9050919050565b6000602082019050612cad60008301846129c2565b92915050565b6000602082019050612cc860008301846129d1565b92915050565b6000604051905081810181811067ffffffffffffffff82111715612cf557612cf4612f32565b5b8060405250919050565b600067ffffffffffffffff821115612d1a57612d19612f32565b5b602082029050602081019050919050565b600081519050919050565b600082825260208201905092915050565b6000612d5282612e0f565b9150612d5d83612e0f565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612d9257612d91612ed4565b5b828201905092915050565b6000612da882612e0f565b9150612db383612e0f565b925082821015612dc657612dc5612ed4565b5b828203905092915050565b6000612ddc82612def565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b83811015612e44578082015181840152602081019050612e29565b83811115612e53576000848401525b50505050565b60006002820490506001821680612e7157607f821691505b60208210811415612e8557612e84612f03565b5b50919050565b6000612e9682612e0f565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415612ec957612ec8612ed4565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b612f7b81612dd1565b8114612f8657600080fd5b50565b612f9281612e0f565b8114612f9d57600080fd5b5056fea26469706673582212209624684cb9368ba9bd9c60b7c9e14a974c8d3cc66152ab20c2a06e24a4bc2c6864736f6c63430008000033000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000009502f900000000000000000000000000000000000000000000000000000000000000000543524f574400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000034357440000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106101855760003560e01c8063715018a6116100d1578063a457c2d71161008a578063be9a655511610064578063be9a6555146105ec578063d5abeb0114610603578063dd62ed3e1461062e578063f2fde38b1461066b576101c5565b8063a457c2d714610535578063a9059cbb14610572578063aa271e1a146105af576101c5565b8063715018a61461043957806371e2a6571461045057806379cc6790146104795780638623ec7b146104a25780638da5cb5b146104df57806395d89b411461050a576101c5565b8063395093511161013e57806342966c681161011857806342966c681461037f5780635c975abb146103a85780635fc1964f146103d357806370a08231146103fc576101c5565b806339509351146102dc5780633dd08c381461031957806340c10f1914610356576101c5565b806306fdde03146101ca57806307da68f5146101f5578063095ea7b31461020c57806318160ddd1461024957806323b872dd14610274578063313ce567146102b1576101c5565b366101c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016101bc90612a98565b60405180910390fd5b600080fd5b3480156101d657600080fd5b506101df610694565b6040516101ec9190612a16565b60405180910390f35b34801561020157600080fd5b5061020a610726565b005b34801561021857600080fd5b50610233600480360381019061022e919061223d565b6107ac565b60405161024091906129fb565b60405180910390f35b34801561025557600080fd5b5061025e6107ca565b60405161026b9190612c98565b60405180910390f35b34801561028057600080fd5b5061029b600480360381019061029691906121ee565b6107d4565b6040516102a891906129fb565b60405180910390f35b3480156102bd57600080fd5b506102c66108cc565b6040516102d39190612cb3565b60405180910390f35b3480156102e857600080fd5b5061030360048036038101906102fe919061223d565b6108d5565b60405161031091906129fb565b60405180910390f35b34801561032557600080fd5b50610340600480360381019061033b9190612189565b610981565b60405161034d91906129fb565b60405180910390f35b34801561036257600080fd5b5061037d6004803603810190610378919061223d565b6109a1565b005b34801561038b57600080fd5b506103a660048036038101906103a191906122ba565b610a92565b005b3480156103b457600080fd5b506103bd610aa6565b6040516103ca91906129fb565b60405180910390f35b3480156103df57600080fd5b506103fa60048036038101906103f59190612279565b610abd565b005b34801561040857600080fd5b50610423600480360381019061041e9190612189565b610ee5565b6040516104309190612c98565b60405180910390f35b34801561044557600080fd5b5061044e610f2d565b005b34801561045c57600080fd5b5061047760048036038101906104729190612279565b610fb5565b005b34801561048557600080fd5b506104a0600480360381019061049b919061223d565b6111ed565b005b3480156104ae57600080fd5b506104c960048036038101906104c491906122ba565b611268565b6040516104d691906129e0565b60405180910390f35b3480156104eb57600080fd5b506104f46112a7565b60405161050191906129e0565b60405180910390f35b34801561051657600080fd5b5061051f6112d1565b60405161052c9190612a16565b60405180910390f35b34801561054157600080fd5b5061055c6004803603810190610557919061223d565b611363565b60405161056991906129fb565b60405180910390f35b34801561057e57600080fd5b506105996004803603810190610594919061223d565b61144e565b6040516105a691906129fb565b60405180910390f35b3480156105bb57600080fd5b506105d660048036038101906105d19190612189565b61146c565b6040516105e391906129fb565b60405180910390f35b3480156105f857600080fd5b506106016114c2565b005b34801561060f57600080fd5b50610618611548565b6040516106259190612c98565b60405180910390f35b34801561063a57600080fd5b50610655600480360381019061065091906121b2565b611552565b6040516106629190612c98565b60405180910390f35b34801561067757600080fd5b50610692600480360381019061068d9190612189565b6115d9565b005b6060600380546106a390612e59565b80601f01602080910402602001604051908101604052809291908181526020018280546106cf90612e59565b801561071c5780601f106106f15761010080835404028352916020019161071c565b820191906000526020600020905b8154815290600101906020018083116106ff57829003601f168201915b5050505050905090565b61072e6116d6565b73ffffffffffffffffffffffffffffffffffffffff1661074c6112a7565b73ffffffffffffffffffffffffffffffffffffffff16146107a2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161079990612b58565b60405180910390fd5b6107aa6116de565b565b60006107c06107b96116d6565b8484611781565b6001905092915050565b6000600254905090565b60006107e184848461194c565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600061082c6116d6565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050828110156108ac576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108a390612b38565b60405180910390fd5b6108c0856108b86116d6565b858403611781565b60019150509392505050565b60006012905090565b60006109776108e26116d6565b8484600160006108f06116d6565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546109729190612d47565b611781565b6001905092915050565b60076020528060005260406000206000915054906101000a900460ff1681565b600760003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16610a2d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a2490612b78565b60405180910390fd5b60085481610a396107ca565b610a439190612d47565b1115610a84576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a7b90612bf8565b60405180910390fd5b610a8e8282611bcd565b5050565b610aa3610a9d6116d6565b82611d2d565b50565b6000600560009054906101000a900460ff16905090565b610ac56116d6565b73ffffffffffffffffffffffffffffffffffffffff16610ae36112a7565b73ffffffffffffffffffffffffffffffffffffffff1614610b39576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b3090612b58565b60405180910390fd5b600080600090505b8251811015610c8e57828181518110610b83577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101519150600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615610c7b576000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167fe94479a9f7e1952cc78f2d6baab678adc1b772d936c6583def489e524cb6669260405160405180910390a25b8080610c8690612e8b565b915050610b41565b5060005b600680549050811015610ee05760068181548110610cd9577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169150600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16610ecc5760066001600680549050610d6b9190612d9d565b81548110610da2577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1660068281548110610e07577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060066001600680549050610e639190612d9d565b81548110610e9a577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200160006101000a81549073ffffffffffffffffffffffffffffffffffffffff0219169055610edb565b8080610ed790612e8b565b9150505b610c92565b505050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610f356116d6565b73ffffffffffffffffffffffffffffffffffffffff16610f536112a7565b73ffffffffffffffffffffffffffffffffffffffff1614610fa9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fa090612b58565b60405180910390fd5b610fb36000611f04565b565b610fbd6116d6565b73ffffffffffffffffffffffffffffffffffffffff16610fdb6112a7565b73ffffffffffffffffffffffffffffffffffffffff1614611031576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161102890612b58565b60405180910390fd5b600080600090505b82518110156111e85782818151811061107b577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101519150600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff166111d5576006829080600181540180825580915050600190039060005260206000200160009091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506001600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f6ae172837ea30b801fbfcdd4108aa1d5bf8ff775444fd70256b44e6bf3dfc3f660405160405180910390a25b80806111e090612e8b565b915050611039565b505050565b6000611200836111fb6116d6565b611552565b905081811015611245576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161123c90612b98565b60405180910390fd5b611259836112516116d6565b848403611781565b6112638383611d2d565b505050565b6006818154811061127857600080fd5b906000526020600020016000915054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600480546112e090612e59565b80601f016020809104026020016040519081016040528092919081815260200182805461130c90612e59565b80156113595780601f1061132e57610100808354040283529160200191611359565b820191906000526020600020905b81548152906001019060200180831161133c57829003601f168201915b5050505050905090565b600080600160006113726116d6565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508281101561142f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161142690612c38565b60405180910390fd5b61144361143a6116d6565b85858403611781565b600191505092915050565b600061146261145b6116d6565b848461194c565b6001905092915050565b6000600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b6114ca6116d6565b73ffffffffffffffffffffffffffffffffffffffff166114e86112a7565b73ffffffffffffffffffffffffffffffffffffffff161461153e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161153590612b58565b60405180910390fd5b611546611fca565b565b6000600854905090565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6115e16116d6565b73ffffffffffffffffffffffffffffffffffffffff166115ff6112a7565b73ffffffffffffffffffffffffffffffffffffffff1614611655576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161164c90612b58565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156116c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116bc90612ab8565b60405180910390fd5b6116ce81611f04565b50565b505050565b600033905090565b6116e6610aa6565b15611726576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161171d90612b18565b60405180910390fd5b6001600560006101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a25861176a6116d6565b60405161177791906129e0565b60405180910390a1565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156117f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117e890612c18565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611861576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161185890612ad8565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405161193f9190612c98565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156119bc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119b390612bd8565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611a2c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a2390612a38565b60405180910390fd5b611a3783838361206c565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611abd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ab490612af8565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611b509190612d47565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611bb49190612c98565b60405180910390a3611bc78484846120c4565b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611c3d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c3490612c58565b60405180910390fd5b611c496000838361206c565b8060026000828254611c5b9190612d47565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611cb09190612d47565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051611d159190612c98565b60405180910390a3611d29600083836120c4565b5050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611d9d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d9490612bb8565b60405180910390fd5b611da98260008361206c565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611e2f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e2690612a78565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508160026000828254611e869190612d9d565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611eeb9190612c98565b60405180910390a3611eff836000846120c4565b505050565b6000600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611fd2610aa6565b612011576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161200890612a58565b60405180910390fd5b6000600560006101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa6120556116d6565b60405161206291906129e0565b60405180910390a1565b6120778383836116d1565b61207f610aa6565b156120bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120b690612c78565b60405180910390fd5b505050565b505050565b60006120dc6120d784612cff565b612cce565b905080838252602082019050828560208602820111156120fb57600080fd5b60005b8581101561212b57816121118882612135565b8452602084019350602083019250506001810190506120fe565b5050509392505050565b60008135905061214481612f72565b92915050565b600082601f83011261215b57600080fd5b813561216b8482602086016120c9565b91505092915050565b60008135905061218381612f89565b92915050565b60006020828403121561219b57600080fd5b60006121a984828501612135565b91505092915050565b600080604083850312156121c557600080fd5b60006121d385828601612135565b92505060206121e485828601612135565b9150509250929050565b60008060006060848603121561220357600080fd5b600061221186828701612135565b935050602061222286828701612135565b925050604061223386828701612174565b9150509250925092565b6000806040838503121561225057600080fd5b600061225e85828601612135565b925050602061226f85828601612174565b9150509250929050565b60006020828403121561228b57600080fd5b600082013567ffffffffffffffff8111156122a557600080fd5b6122b18482850161214a565b91505092915050565b6000602082840312156122cc57600080fd5b60006122da84828501612174565b91505092915050565b6122ec81612dd1565b82525050565b6122fb81612de3565b82525050565b600061230c82612d2b565b6123168185612d36565b9350612326818560208601612e26565b61232f81612f61565b840191505092915050565b6000612347602383612d36565b91507f45524332303a207472616e7366657220746f20746865207a65726f206164647260008301527f65737300000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006123ad601483612d36565b91507f5061757361626c653a206e6f74207061757365640000000000000000000000006000830152602082019050919050565b60006123ed602283612d36565b91507f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008301527f63650000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000612453601783612d36565b91507f446f6e27742061636365707420455448206f7220424e420000000000000000006000830152602082019050919050565b6000612493602683612d36565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006124f9602283612d36565b91507f45524332303a20617070726f766520746f20746865207a65726f20616464726560008301527f73730000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061255f602683612d36565b91507f45524332303a207472616e7366657220616d6f756e742065786365656473206260008301527f616c616e636500000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006125c5601083612d36565b91507f5061757361626c653a20706175736564000000000000000000000000000000006000830152602082019050919050565b6000612605602883612d36565b91507f45524332303a207472616e7366657220616d6f756e742065786365656473206160008301527f6c6c6f77616e63650000000000000000000000000000000000000000000000006020830152604082019050919050565b600061266b602083612d36565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b60006126ab600e83612d36565b91507f696e76616c6964206d696e7465720000000000000000000000000000000000006000830152602082019050919050565b60006126eb602483612d36565b91507f45524332303a206275726e20616d6f756e74206578636565647320616c6c6f7760008301527f616e6365000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000612751602183612d36565b91507f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008301527f73000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006127b7602583612d36565b91507f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008301527f64726573730000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061281d600e83612d36565b91507f6f766572206d6178537570706c790000000000000000000000000000000000006000830152602082019050919050565b600061285d602483612d36565b91507f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006128c3602583612d36565b91507f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008301527f207a65726f0000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000612929601f83612d36565b91507f45524332303a206d696e7420746f20746865207a65726f2061646472657373006000830152602082019050919050565b6000612969602a83612d36565b91507f45524332305061757361626c653a20746f6b656e207472616e7366657220776860008301527f696c6520706175736564000000000000000000000000000000000000000000006020830152604082019050919050565b6129cb81612e0f565b82525050565b6129da81612e19565b82525050565b60006020820190506129f560008301846122e3565b92915050565b6000602082019050612a1060008301846122f2565b92915050565b60006020820190508181036000830152612a308184612301565b905092915050565b60006020820190508181036000830152612a518161233a565b9050919050565b60006020820190508181036000830152612a71816123a0565b9050919050565b60006020820190508181036000830152612a91816123e0565b9050919050565b60006020820190508181036000830152612ab181612446565b9050919050565b60006020820190508181036000830152612ad181612486565b9050919050565b60006020820190508181036000830152612af1816124ec565b9050919050565b60006020820190508181036000830152612b1181612552565b9050919050565b60006020820190508181036000830152612b31816125b8565b9050919050565b60006020820190508181036000830152612b51816125f8565b9050919050565b60006020820190508181036000830152612b718161265e565b9050919050565b60006020820190508181036000830152612b918161269e565b9050919050565b60006020820190508181036000830152612bb1816126de565b9050919050565b60006020820190508181036000830152612bd181612744565b9050919050565b60006020820190508181036000830152612bf1816127aa565b9050919050565b60006020820190508181036000830152612c1181612810565b9050919050565b60006020820190508181036000830152612c3181612850565b9050919050565b60006020820190508181036000830152612c51816128b6565b9050919050565b60006020820190508181036000830152612c718161291c565b9050919050565b60006020820190508181036000830152612c918161295c565b9050919050565b6000602082019050612cad60008301846129c2565b92915050565b6000602082019050612cc860008301846129d1565b92915050565b6000604051905081810181811067ffffffffffffffff82111715612cf557612cf4612f32565b5b8060405250919050565b600067ffffffffffffffff821115612d1a57612d19612f32565b5b602082029050602081019050919050565b600081519050919050565b600082825260208201905092915050565b6000612d5282612e0f565b9150612d5d83612e0f565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612d9257612d91612ed4565b5b828201905092915050565b6000612da882612e0f565b9150612db383612e0f565b925082821015612dc657612dc5612ed4565b5b828203905092915050565b6000612ddc82612def565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b83811015612e44578082015181840152602081019050612e29565b83811115612e53576000848401525b50505050565b60006002820490506001821680612e7157607f821691505b60208210811415612e8557612e84612f03565b5b50919050565b6000612e9682612e0f565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415612ec957612ec8612ed4565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b612f7b81612dd1565b8114612f8657600080fd5b50565b612f9281612e0f565b8114612f9d57600080fd5b5056fea26469706673582212209624684cb9368ba9bd9c60b7c9e14a974c8d3cc66152ab20c2a06e24a4bc2c6864736f6c63430008000033

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

000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000009502f900000000000000000000000000000000000000000000000000000000000000000543524f574400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000034357440000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _name (string): CROWD
Arg [1] : _symbol (string): CWD
Arg [2] : _amount (uint256): 2500000000

-----Encoded View---------------
7 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 000000000000000000000000000000000000000000000000000000009502f900
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000005
Arg [4] : 43524f5744000000000000000000000000000000000000000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [6] : 4357440000000000000000000000000000000000000000000000000000000000


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.