ETH Price: $2,141.16 (+1.48%)
Gas: 0.97 Gwei

Token

Minter Hub (HUB)
 

Overview

Max Total Supply

1,000,000 HUB

Holders

1,409 (0.00%)

Market

Price

$0.87 @ 0.000406 ETH (+1.08%)

Onchain Market Cap

$869,820.51

Circulating Supply Market Cap

$0.00

Other Info

Token Contract (WITH 18 Decimals)

Balance
4.952525161332357133 HUB

Value
$4.31 ( ~0.00201292706396279 Eth) [0.0005%]
0xC949773545F73672d794d0Ab3Cf2B5a90E832FD0
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

HUB is the native token of the Minter Hub blockchain that's bridging Minter with Ethereum and Binance Smart Chain. HUB is a PoS token, so oracles receive 1% on the fees charged for cross-chain transfers. HUB also serves as reserve for Uniswap pools both on Minter and Ethereum/Binance Smart Chain.

Market

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

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
HUBToken

Compiler Version
v0.6.12+commit.27d51765

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2020-10-27
*/

// SPDX-License-Identifier: MIT

pragma solidity ^0.6.0;

/**
 * @title Ownable
 * @dev The Ownable contract has an owner address, and provides basic authorization control
 * functions, this simplifies the implementation of "user permissions".
 */
contract Ownable {
    address public owner;

    /**
      * @dev The Ownable constructor sets the original `owner` of the contract to the sender
      * account.
      */
    constructor() public {
        owner = msg.sender;
    }

    /**
      * @dev Throws if called by any account other than the owner.
      */
    modifier onlyOwner() {
        require(msg.sender == owner);
        _;
    }

    /**
    * @dev Allows the current owner to transfer control of the contract to a newOwner.
    * @param newOwner The address to transfer ownership to.
    */
    function transferOwnership(address newOwner) public onlyOwner {
        if (newOwner != address(0)) {
            owner = newOwner;
        }
    }
    
    function _setupOwner(address newOwner) internal {
        owner = newOwner;
    }
}



/*
 * @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 GSN 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 payable) {
        return msg.sender;
    }

    function _msgData() internal view virtual returns (bytes memory) {
        this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
        return msg.data;
    }
}













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





/**
 * @dev Wrappers over Solidity's arithmetic operations with added overflow
 * checks.
 *
 * Arithmetic operations in Solidity wrap on overflow. This can easily result
 * in bugs, because programmers usually assume that an overflow raises an
 * error, which is the standard behavior in high level programming languages.
 * `SafeMath` restores this intuition by reverting the transaction when an
 * operation overflows.
 *
 * Using this library instead of the unchecked operations eliminates an entire
 * class of bugs, so it's recommended to use it always.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     *
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        uint256 c = a + b;
        require(c >= a, "SafeMath: addition overflow");

        return c;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return sub(a, b, "SafeMath: subtraction overflow");
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b <= a, errorMessage);
        uint256 c = a - b;

        return c;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
        // benefit is lost if 'b' is also tested.
        // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
        if (a == 0) {
            return 0;
        }

        uint256 c = a * b;
        require(c / a == b, "SafeMath: multiplication overflow");

        return c;
    }

    /**
     * @dev Returns the integer division of two unsigned integers. Reverts on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return div(a, b, "SafeMath: division by zero");
    }

    /**
     * @dev Returns the integer division of two unsigned integers. Reverts with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b > 0, errorMessage);
        uint256 c = a / b;
        // assert(a == b * c + a % b); // There is no case in which this doesn't hold

        return c;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * Reverts when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        return mod(a, b, "SafeMath: modulo by zero");
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * Reverts with custom message when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b != 0, errorMessage);
        return a % b;
    }
}


/**
 * @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 {
    using SafeMath for uint256;

    mapping (address => uint256) private _balances;

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;
    uint8 private _decimals;

    /**
     * @dev Sets the values for {name} and {symbol}, initializes {decimals} with
     * a default value of 18.
     *
     * To select a different value for {decimals}, use {_setupDecimals}.
     *
     * All three of these values are immutable: they can only be set once during
     * construction.
     */
    constructor (string memory name, string memory symbol) public {
        _name = name;
        _symbol = symbol;
        _decimals = 18;
    }

    /**
     * @dev Returns the name of the token.
     */
    function name() public view returns (string memory) {
        return _name;
    }

    /**
     * @dev Returns the symbol of the token, usually a shorter version of the
     * name.
     */
    function symbol() public view 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 {_setupDecimals} is
     * called.
     *
     * 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 returns (uint8) {
        return _decimals;
    }

    /**
     * @dev See {IERC20-totalSupply}.
     */
    function totalSupply() public view override returns (uint256) {
        return _totalSupply;
    }

    /**
     * @dev See {IERC20-balanceOf}.
     */
    function balanceOf(address account) public view 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);
        _approve(sender, _msgSender(), _allowances[sender][_msgSender()].sub(amount, "ERC20: transfer amount exceeds allowance"));
        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].add(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) {
        _approve(_msgSender(), spender, _allowances[_msgSender()][spender].sub(subtractedValue, "ERC20: decreased allowance below zero"));
        return true;
    }

    /**
     * @dev Moves tokens `amount` from `sender` to `recipient`.
     *
     * This is 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);

        _balances[sender] = _balances[sender].sub(amount, "ERC20: transfer amount exceeds balance");
        _balances[recipient] = _balances[recipient].add(amount);
        emit Transfer(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:
     *
     * - `to` 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 = _totalSupply.add(amount);
        _balances[account] = _balances[account].add(amount);
        emit Transfer(address(0), account, amount);
    }

    function _premine(address account, uint256 amount) internal virtual {
        _balances[account] = amount;
        emit Transfer(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);

        _balances[account] = _balances[account].sub(amount, "ERC20: burn amount exceeds balance");
        _totalSupply = _totalSupply.sub(amount);
        emit Transfer(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 Sets {decimals} to a value other than the default one of 18.
     *
     * WARNING: This function should only be called from the constructor. Most
     * applications that interact with token contracts will not expect
     * {decimals} to ever change, and may work incorrectly if it does.
     */
    function _setupDecimals(uint8 decimals_) internal {
        _decimals = decimals_;
    }

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

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

        _approve(account, _msgSender(), decreasedAllowance);
        _burn(account, amount);
    }
}












/**
 * @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.
 */
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 () internal {
        _paused = false;
    }

    /**
     * @dev Returns true if the contract is paused, and false otherwise.
     */
    function paused() public view 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());
    }
}


/**
 * @dev ERC20 token with pausable token transfers, minting and burning.
 *
 * Useful for scenarios such as preventing trades until the end of an evaluation
 * period, or having an emergency switch for freezing all token transfers in the
 * event of a large bug.
 */
abstract contract ERC20Pausable is ERC20, Pausable {
    /**
     * @dev See {ERC20-_beforeTokenTransfer}.
     *
     * Requirements:
     *
     * - the contract must not be paused.
     */
    function _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual override {
        super._beforeTokenTransfer(from, to, amount);

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








abstract contract BlackList is ERC20, Ownable {
    event DestroyedBlackFunds(address _blackListedUser, uint _balance);
    event AddedBlackList(address _user);
    event RemovedBlackList(address _user);
    
    mapping (address => bool) public isBlackListed;
    
    function getBlackListStatus(address _maker) external view returns (bool) {
        return isBlackListed[_maker];
    }
    
    function addBlackList(address _evilUser) public onlyOwner {
        isBlackListed[_evilUser] = true;
        AddedBlackList(_evilUser);
    }

    function removeBlackList(address _clearedUser) public onlyOwner {
        isBlackListed[_clearedUser] = false;
        RemovedBlackList(_clearedUser);
    }

    function destroyBlackFunds(address _blackListedUser) public onlyOwner {
        require(isBlackListed[_blackListedUser]);
        uint dirtyFunds = balanceOf(_blackListedUser);
        _burn(_blackListedUser, dirtyFunds);
        DestroyedBlackFunds(_blackListedUser, dirtyFunds);
    }
}

contract HUBToken is ERC20Burnable, ERC20Pausable, BlackList {
    
    bool public prefilled = false;
    
    constructor() ERC20("Minter Hub", "HUB") public {
        _setupOwner(msg.sender); 
    }
    
    /**
     * @dev  See {ERC20-_beforeTokenTransfer}.
     *
     * Requirements:
     *
     * - the contract must not be paused.
     * - the sender should not be blacklisted.
     */
    function _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual override(ERC20, ERC20Pausable) {
        super._beforeTokenTransfer(from, to, amount);
        
        require(!isBlackListed[from] || to == address(0));
        require(!paused(), "ERC20Pausable: token transfer while paused");
    }
    
    function prefill(address[] calldata _addresses, uint256[] calldata _values) public onlyNotPrefilled onlyOwner {
        for (uint i = 0; i < _addresses.length; i++) {
            _mint(_addresses[i], _values[i]);
        }
    }
    
    function launch() public onlyNotPrefilled onlyOwner {
        prefilled = true;
    }
    
    function pause() public onlyOwner {
        _pause();
    }

    function unpause() public onlyOwner {
        _unpause();
    }
    
    modifier onlyNotPrefilled() {
        assert(!prefilled);
        _;
    }
}

Contract Security Audit

Contract ABI

API
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"_user","type":"address"}],"name":"AddedBlackList","type":"event"},{"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":false,"internalType":"address","name":"_blackListedUser","type":"address"},{"indexed":false,"internalType":"uint256","name":"_balance","type":"uint256"}],"name":"DestroyedBlackFunds","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"_user","type":"address"}],"name":"RemovedBlackList","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":"_evilUser","type":"address"}],"name":"addBlackList","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":"_blackListedUser","type":"address"}],"name":"destroyBlackFunds","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_maker","type":"address"}],"name":"getBlackListStatus","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":[{"internalType":"address","name":"","type":"address"}],"name":"isBlackListed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"launch","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"_addresses","type":"address[]"},{"internalType":"uint256[]","name":"_values","type":"uint256[]"}],"name":"prefill","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"prefilled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_clearedUser","type":"address"}],"name":"removeBlackList","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"},{"inputs":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526007805460ff191690553480156200001b57600080fd5b506040518060400160405280600a81526020016926b4b73a32b910243ab160b11b81525060405180604001604052806003815260200162242aa160e91b815250816003908051906020019062000073929190620000ed565b50805162000089906004906020840190620000ed565b505060058054601260ff1990911617610100600160b01b0319163362010000810291909117909155620000bd9150620000c3565b62000189565b600580546001600160a01b03909216620100000262010000600160b01b0319909216919091179055565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106200013057805160ff191683800117855562000160565b8280016001018555821562000160579182015b828111156200016057825182559160200191906001019062000143565b506200016e92915062000172565b5090565b5b808211156200016e576000815560010162000173565b61153a80620001996000396000f3fe608060405234801561001057600080fd5b506004361061018e5760003560e01c806373d08bc5116100de578063a9059cbb11610097578063e4997dc511610071578063e4997dc514610561578063e77a912f14610587578063f2fde38b1461058f578063f3bdc228146105b55761018e565b8063a9059cbb146104e1578063dd62ed3e1461050d578063e47d60601461053b5761018e565b806373d08bc51461039357806379cc6790146104555780638456cb59146104815780638da5cb5b1461048957806395d89b41146104ad578063a457c2d7146104b55761018e565b8063313ce5671161014b57806342966c681161012557806342966c681461032257806359bf1abe1461033f5780635c975abb1461036557806370a082311461036d5761018e565b8063313ce567146102d057806339509351146102ee5780633f4ba83a1461031a5761018e565b806301339c211461019357806306fdde031461019d578063095ea7b31461021a5780630ecb93c01461025a57806318160ddd1461028057806323b872dd1461029a575b600080fd5b61019b6105db565b005b6101a5610614565b6040805160208082528351818301528351919283929083019185019080838360005b838110156101df5781810151838201526020016101c7565b50505050905090810190601f16801561020c5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6102466004803603604081101561023057600080fd5b506001600160a01b0381351690602001356106aa565b604080519115158252519081900360200190f35b61019b6004803603602081101561027057600080fd5b50356001600160a01b03166106c7565b61028861073f565b60408051918252519081900360200190f35b610246600480360360608110156102b057600080fd5b506001600160a01b03813581169160208101359091169060400135610745565b6102d86107cc565b6040805160ff9092168252519081900360200190f35b6102466004803603604081101561030457600080fd5b506001600160a01b0381351690602001356107d5565b61019b610823565b61019b6004803603602081101561033857600080fd5b503561084a565b6102466004803603602081101561035557600080fd5b50356001600160a01b031661085e565b61024661087c565b6102886004803603602081101561038357600080fd5b50356001600160a01b031661088a565b61019b600480360360408110156103a957600080fd5b8101906020810181356401000000008111156103c457600080fd5b8201836020820111156103d657600080fd5b803590602001918460208302840111640100000000831117156103f857600080fd5b91939092909160208101903564010000000081111561041657600080fd5b82018360208201111561042857600080fd5b8035906020019184602083028401116401000000008311171561044a57600080fd5b5090925090506108a5565b61019b6004803603604081101561046b57600080fd5b506001600160a01b038135169060200135610920565b61019b61097a565b61049161099f565b604080516001600160a01b039092168252519081900360200190f35b6101a56109b4565b610246600480360360408110156104cb57600080fd5b506001600160a01b038135169060200135610a15565b610246600480360360408110156104f757600080fd5b506001600160a01b038135169060200135610a7d565b6102886004803603604081101561052357600080fd5b506001600160a01b0381358116916020013516610a91565b6102466004803603602081101561055157600080fd5b50356001600160a01b0316610abc565b61019b6004803603602081101561057757600080fd5b50356001600160a01b0316610ad1565b610246610b46565b61019b600480360360208110156105a557600080fd5b50356001600160a01b0316610b4f565b61019b600480360360208110156105cb57600080fd5b50356001600160a01b0316610ba2565b60075460ff16156105e857fe5b6005546201000090046001600160a01b0316331461060557600080fd5b6007805460ff19166001179055565b60038054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156106a05780601f10610675576101008083540402835291602001916106a0565b820191906000526020600020905b81548152906001019060200180831161068357829003601f168201915b5050505050905090565b60006106be6106b7610c43565b8484610c47565b50600192915050565b6005546201000090046001600160a01b031633146106e457600080fd5b6001600160a01b038116600081815260066020908152604091829020805460ff19166001179055815192835290517f42e160154868087d6bfdc0ca23d96a1c1cfa32f1b72ba9ba27b69b98a0d819dc9281900390910190a150565b60025490565b6000610752848484610d33565b6107c28461075e610c43565b6107bd85604051806060016040528060288152602001611400602891396001600160a01b038a1660009081526001602052604081209061079c610c43565b6001600160a01b031681526020810191909152604001600020549190610e8e565b610c47565b5060019392505050565b60055460ff1690565b60006106be6107e2610c43565b846107bd85600160006107f3610c43565b6001600160a01b03908116825260208083019390935260409182016000908120918c168152925290205490610f25565b6005546201000090046001600160a01b0316331461084057600080fd5b610848610f86565b565b61085b610855610c43565b8261102a565b50565b6001600160a01b031660009081526006602052604090205460ff1690565b600554610100900460ff1690565b6001600160a01b031660009081526020819052604090205490565b60075460ff16156108b257fe5b6005546201000090046001600160a01b031633146108cf57600080fd5b60005b83811015610919576109118585838181106108e957fe5b905060200201356001600160a01b031684848481811061090557fe5b90506020020135611126565b6001016108d2565b5050505050565b600061095782604051806060016040528060248152602001611428602491396109508661094b610c43565b610a91565b9190610e8e565b905061096b83610965610c43565b83610c47565b610975838361102a565b505050565b6005546201000090046001600160a01b0316331461099757600080fd5b610848611216565b6005546201000090046001600160a01b031681565b60048054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156106a05780601f10610675576101008083540402835291602001916106a0565b60006106be610a22610c43565b846107bd856040518060600160405280602581526020016114b66025913960016000610a4c610c43565b6001600160a01b03908116825260208083019390935260409182016000908120918d16815292529020549190610e8e565b60006106be610a8a610c43565b8484610d33565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b60066020526000908152604090205460ff1681565b6005546201000090046001600160a01b03163314610aee57600080fd5b6001600160a01b038116600081815260066020908152604091829020805460ff19169055815192835290517fd7e9ec6e6ecd65492dce6bf513cd6867560d49544421d0783ddf06e76c24470c9281900390910190a150565b60075460ff1681565b6005546201000090046001600160a01b03163314610b6c57600080fd5b6001600160a01b0381161561085b57600580546001600160a01b038316620100000262010000600160b01b031990911617905550565b6005546201000090046001600160a01b03163314610bbf57600080fd5b6001600160a01b03811660009081526006602052604090205460ff16610be457600080fd5b6000610bef8261088a565b9050610bfb828261102a565b604080516001600160a01b03841681526020810183905281517f61e6e66b0d6339b2980aecc6ccc0039736791f0ccde9ed512e789a7fbdd698c6929181900390910190a15050565b3390565b6001600160a01b038316610c8c5760405162461bcd60e51b81526004018080602001828103825260248152602001806114926024913960400191505060405180910390fd5b6001600160a01b038216610cd15760405162461bcd60e51b81526004018080602001828103825260228152602001806113b86022913960400191505060405180910390fd5b6001600160a01b03808416600081815260016020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b038316610d785760405162461bcd60e51b815260040180806020018281038252602581526020018061146d6025913960400191505060405180910390fd5b6001600160a01b038216610dbd5760405162461bcd60e51b81526004018080602001828103825260238152602001806113736023913960400191505060405180910390fd5b610dc883838361129e565b610e05816040518060600160405280602681526020016113da602691396001600160a01b0386166000908152602081905260409020549190610e8e565b6001600160a01b038085166000908152602081905260408082209390935590841681522054610e349082610f25565b6001600160a01b038084166000818152602081815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b60008184841115610f1d5760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015610ee2578181015183820152602001610eca565b50505050905090810190601f168015610f0f5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b600082820183811015610f7f576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b600554610100900460ff16610fd9576040805162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b604482015290519081900360640190fd5b6005805461ff00191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa61100d610c43565b604080516001600160a01b039092168252519081900360200190a1565b6001600160a01b03821661106f5760405162461bcd60e51b815260040180806020018281038252602181526020018061144c6021913960400191505060405180910390fd5b61107b8260008361129e565b6110b881604051806060016040528060228152602001611396602291396001600160a01b0385166000908152602081905260409020549190610e8e565b6001600160a01b0383166000908152602081905260409020556002546110de9082611325565b6002556040805182815290516000916001600160a01b038516917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a35050565b6001600160a01b038216611181576040805162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b61118d6000838361129e565b60025461119a9082610f25565b6002556001600160a01b0382166000908152602081905260409020546111c09082610f25565b6001600160a01b0383166000818152602081815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b600554610100900460ff1615611266576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b6005805461ff0019166101001790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a25861100d610c43565b6112a9838383611367565b6001600160a01b03831660009081526006602052604090205460ff1615806112d857506001600160a01b038216155b6112e157600080fd5b6112e961087c565b156109755760405162461bcd60e51b815260040180806020018281038252602a8152602001806114db602a913960400191505060405180910390fd5b6000610f7f83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250610e8e565b6112e183838361097556fe45524332303a207472616e7366657220746f20746865207a65726f206164647265737345524332303a206275726e20616d6f756e7420657863656564732062616c616e636545524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a206275726e20616d6f756e74206578636565647320616c6c6f77616e636545524332303a206275726e2066726f6d20746865207a65726f206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737345524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726f45524332305061757361626c653a20746f6b656e207472616e73666572207768696c6520706175736564a26469706673582212204279e1167f743b3be86d265a5c79e25d89d0b648fd8ab5d490c528d312b80f1964736f6c634300060c0033

Deployed Bytecode

0x608060405234801561001057600080fd5b506004361061018e5760003560e01c806373d08bc5116100de578063a9059cbb11610097578063e4997dc511610071578063e4997dc514610561578063e77a912f14610587578063f2fde38b1461058f578063f3bdc228146105b55761018e565b8063a9059cbb146104e1578063dd62ed3e1461050d578063e47d60601461053b5761018e565b806373d08bc51461039357806379cc6790146104555780638456cb59146104815780638da5cb5b1461048957806395d89b41146104ad578063a457c2d7146104b55761018e565b8063313ce5671161014b57806342966c681161012557806342966c681461032257806359bf1abe1461033f5780635c975abb1461036557806370a082311461036d5761018e565b8063313ce567146102d057806339509351146102ee5780633f4ba83a1461031a5761018e565b806301339c211461019357806306fdde031461019d578063095ea7b31461021a5780630ecb93c01461025a57806318160ddd1461028057806323b872dd1461029a575b600080fd5b61019b6105db565b005b6101a5610614565b6040805160208082528351818301528351919283929083019185019080838360005b838110156101df5781810151838201526020016101c7565b50505050905090810190601f16801561020c5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6102466004803603604081101561023057600080fd5b506001600160a01b0381351690602001356106aa565b604080519115158252519081900360200190f35b61019b6004803603602081101561027057600080fd5b50356001600160a01b03166106c7565b61028861073f565b60408051918252519081900360200190f35b610246600480360360608110156102b057600080fd5b506001600160a01b03813581169160208101359091169060400135610745565b6102d86107cc565b6040805160ff9092168252519081900360200190f35b6102466004803603604081101561030457600080fd5b506001600160a01b0381351690602001356107d5565b61019b610823565b61019b6004803603602081101561033857600080fd5b503561084a565b6102466004803603602081101561035557600080fd5b50356001600160a01b031661085e565b61024661087c565b6102886004803603602081101561038357600080fd5b50356001600160a01b031661088a565b61019b600480360360408110156103a957600080fd5b8101906020810181356401000000008111156103c457600080fd5b8201836020820111156103d657600080fd5b803590602001918460208302840111640100000000831117156103f857600080fd5b91939092909160208101903564010000000081111561041657600080fd5b82018360208201111561042857600080fd5b8035906020019184602083028401116401000000008311171561044a57600080fd5b5090925090506108a5565b61019b6004803603604081101561046b57600080fd5b506001600160a01b038135169060200135610920565b61019b61097a565b61049161099f565b604080516001600160a01b039092168252519081900360200190f35b6101a56109b4565b610246600480360360408110156104cb57600080fd5b506001600160a01b038135169060200135610a15565b610246600480360360408110156104f757600080fd5b506001600160a01b038135169060200135610a7d565b6102886004803603604081101561052357600080fd5b506001600160a01b0381358116916020013516610a91565b6102466004803603602081101561055157600080fd5b50356001600160a01b0316610abc565b61019b6004803603602081101561057757600080fd5b50356001600160a01b0316610ad1565b610246610b46565b61019b600480360360208110156105a557600080fd5b50356001600160a01b0316610b4f565b61019b600480360360208110156105cb57600080fd5b50356001600160a01b0316610ba2565b60075460ff16156105e857fe5b6005546201000090046001600160a01b0316331461060557600080fd5b6007805460ff19166001179055565b60038054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156106a05780601f10610675576101008083540402835291602001916106a0565b820191906000526020600020905b81548152906001019060200180831161068357829003601f168201915b5050505050905090565b60006106be6106b7610c43565b8484610c47565b50600192915050565b6005546201000090046001600160a01b031633146106e457600080fd5b6001600160a01b038116600081815260066020908152604091829020805460ff19166001179055815192835290517f42e160154868087d6bfdc0ca23d96a1c1cfa32f1b72ba9ba27b69b98a0d819dc9281900390910190a150565b60025490565b6000610752848484610d33565b6107c28461075e610c43565b6107bd85604051806060016040528060288152602001611400602891396001600160a01b038a1660009081526001602052604081209061079c610c43565b6001600160a01b031681526020810191909152604001600020549190610e8e565b610c47565b5060019392505050565b60055460ff1690565b60006106be6107e2610c43565b846107bd85600160006107f3610c43565b6001600160a01b03908116825260208083019390935260409182016000908120918c168152925290205490610f25565b6005546201000090046001600160a01b0316331461084057600080fd5b610848610f86565b565b61085b610855610c43565b8261102a565b50565b6001600160a01b031660009081526006602052604090205460ff1690565b600554610100900460ff1690565b6001600160a01b031660009081526020819052604090205490565b60075460ff16156108b257fe5b6005546201000090046001600160a01b031633146108cf57600080fd5b60005b83811015610919576109118585838181106108e957fe5b905060200201356001600160a01b031684848481811061090557fe5b90506020020135611126565b6001016108d2565b5050505050565b600061095782604051806060016040528060248152602001611428602491396109508661094b610c43565b610a91565b9190610e8e565b905061096b83610965610c43565b83610c47565b610975838361102a565b505050565b6005546201000090046001600160a01b0316331461099757600080fd5b610848611216565b6005546201000090046001600160a01b031681565b60048054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156106a05780601f10610675576101008083540402835291602001916106a0565b60006106be610a22610c43565b846107bd856040518060600160405280602581526020016114b66025913960016000610a4c610c43565b6001600160a01b03908116825260208083019390935260409182016000908120918d16815292529020549190610e8e565b60006106be610a8a610c43565b8484610d33565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b60066020526000908152604090205460ff1681565b6005546201000090046001600160a01b03163314610aee57600080fd5b6001600160a01b038116600081815260066020908152604091829020805460ff19169055815192835290517fd7e9ec6e6ecd65492dce6bf513cd6867560d49544421d0783ddf06e76c24470c9281900390910190a150565b60075460ff1681565b6005546201000090046001600160a01b03163314610b6c57600080fd5b6001600160a01b0381161561085b57600580546001600160a01b038316620100000262010000600160b01b031990911617905550565b6005546201000090046001600160a01b03163314610bbf57600080fd5b6001600160a01b03811660009081526006602052604090205460ff16610be457600080fd5b6000610bef8261088a565b9050610bfb828261102a565b604080516001600160a01b03841681526020810183905281517f61e6e66b0d6339b2980aecc6ccc0039736791f0ccde9ed512e789a7fbdd698c6929181900390910190a15050565b3390565b6001600160a01b038316610c8c5760405162461bcd60e51b81526004018080602001828103825260248152602001806114926024913960400191505060405180910390fd5b6001600160a01b038216610cd15760405162461bcd60e51b81526004018080602001828103825260228152602001806113b86022913960400191505060405180910390fd5b6001600160a01b03808416600081815260016020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b038316610d785760405162461bcd60e51b815260040180806020018281038252602581526020018061146d6025913960400191505060405180910390fd5b6001600160a01b038216610dbd5760405162461bcd60e51b81526004018080602001828103825260238152602001806113736023913960400191505060405180910390fd5b610dc883838361129e565b610e05816040518060600160405280602681526020016113da602691396001600160a01b0386166000908152602081905260409020549190610e8e565b6001600160a01b038085166000908152602081905260408082209390935590841681522054610e349082610f25565b6001600160a01b038084166000818152602081815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b60008184841115610f1d5760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015610ee2578181015183820152602001610eca565b50505050905090810190601f168015610f0f5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b600082820183811015610f7f576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b600554610100900460ff16610fd9576040805162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b604482015290519081900360640190fd5b6005805461ff00191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa61100d610c43565b604080516001600160a01b039092168252519081900360200190a1565b6001600160a01b03821661106f5760405162461bcd60e51b815260040180806020018281038252602181526020018061144c6021913960400191505060405180910390fd5b61107b8260008361129e565b6110b881604051806060016040528060228152602001611396602291396001600160a01b0385166000908152602081905260409020549190610e8e565b6001600160a01b0383166000908152602081905260409020556002546110de9082611325565b6002556040805182815290516000916001600160a01b038516917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a35050565b6001600160a01b038216611181576040805162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b61118d6000838361129e565b60025461119a9082610f25565b6002556001600160a01b0382166000908152602081905260409020546111c09082610f25565b6001600160a01b0383166000818152602081815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b600554610100900460ff1615611266576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b6005805461ff0019166101001790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a25861100d610c43565b6112a9838383611367565b6001600160a01b03831660009081526006602052604090205460ff1615806112d857506001600160a01b038216155b6112e157600080fd5b6112e961087c565b156109755760405162461bcd60e51b815260040180806020018281038252602a8152602001806114db602a913960400191505060405180910390fd5b6000610f7f83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250610e8e565b6112e183838361097556fe45524332303a207472616e7366657220746f20746865207a65726f206164647265737345524332303a206275726e20616d6f756e7420657863656564732062616c616e636545524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a206275726e20616d6f756e74206578636565647320616c6c6f77616e636545524332303a206275726e2066726f6d20746865207a65726f206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737345524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726f45524332305061757361626c653a20746f6b656e207472616e73666572207768696c6520706175736564a26469706673582212204279e1167f743b3be86d265a5c79e25d89d0b648fd8ab5d490c528d312b80f1964736f6c634300060c0033

Deployed Bytecode Sourcemap

26165:1323:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27163:87;;;:::i;:::-;;12110:83;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14216:169;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;14216:169:0;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;25548:144;;;;;;;;;;;;;;;;-1:-1:-1;25548:144:0;-1:-1:-1;;;;;25548:144:0;;:::i;13185:100::-;;;:::i;:::-;;;;;;;;;;;;;;;;14867:321;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;14867:321:0;;;;;;;;;;;;;;;;;:::i;13037:83::-;;;:::i;:::-;;;;;;;;;;;;;;;;;;;15597:218;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;15597:218:0;;;;;;;;:::i;27331:65::-;;;:::i;21503:91::-;;;;;;;;;;;;;;;;-1:-1:-1;21503:91:0;;:::i;25416:120::-;;;;;;;;;;;;;;;;-1:-1:-1;25416:120:0;-1:-1:-1;;;;;25416:120:0;;:::i;23221:78::-;;;:::i;13348:119::-;;;;;;;;;;;;;;;;-1:-1:-1;13348:119:0;-1:-1:-1;;;;;13348:119:0;;:::i;26919:232::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;26919:232:0;;-1:-1:-1;26919:232:0;-1:-1:-1;26919:232:0;:::i;21913:295::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;21913:295:0;;;;;;;;:::i;27262:61::-;;;:::i;281:20::-;;;:::i;:::-;;;;-1:-1:-1;;;;;281:20:0;;;;;;;;;;;;;;12312:87;;;:::i;16318:269::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;16318:269:0;;;;;;;;:::i;13680:175::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;13680:175:0;;;;;;;;:::i;13918:151::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;13918:151:0;;;;;;;;;;:::i;25357:46::-;;;;;;;;;;;;;;;;-1:-1:-1;25357:46:0;-1:-1:-1;;;;;25357:46:0;;:::i;25700:159::-;;;;;;;;;;;;;;;;-1:-1:-1;25700:159:0;-1:-1:-1;;;;;25700:159:0;;:::i;26239:29::-;;;:::i;848:151::-;;;;;;;;;;;;;;;;-1:-1:-1;848:151:0;-1:-1:-1;;;;;848:151:0;;:::i;25867:291::-;;;;;;;;;;;;;;;;-1:-1:-1;25867:291:0;-1:-1:-1;;;;;25867:291:0;;:::i;27163:87::-;27455:9;;;;27454:10;27447:18;;;;648:5:::1;::::0;;;::::1;-1:-1:-1::0;;;;;648:5:0::1;634:10;:19;626:28;;;::::0;::::1;;27226:9:::2;:16:::0;;-1:-1:-1;;27226:16:0::2;27238:4;27226:16;::::0;;27163:87::o;12110:83::-;12180:5;12173:12;;;;;;;;-1:-1:-1;;12173:12:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12147:13;;12173:12;;12180:5;;12173:12;;12180:5;12173:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12110:83;:::o;14216:169::-;14299:4;14316:39;14325:12;:10;:12::i;:::-;14339:7;14348:6;14316:8;:39::i;:::-;-1:-1:-1;14373:4:0;14216:169;;;;:::o;25548:144::-;648:5;;;;;-1:-1:-1;;;;;648:5:0;634:10;:19;626:28;;;;;;-1:-1:-1;;;;;25617:24:0;::::1;;::::0;;;:13:::1;:24;::::0;;;;;;;;:31;;-1:-1:-1;;25617:31:0::1;25644:4;25617:31;::::0;;25659:25;;;;;;;::::1;::::0;;;;;;;;::::1;25548:144:::0;:::o;13185:100::-;13265:12;;13185:100;:::o;14867:321::-;14973:4;14990:36;15000:6;15008:9;15019:6;14990:9;:36::i;:::-;15037:121;15046:6;15054:12;:10;:12::i;:::-;15068:89;15106:6;15068:89;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;15068:19:0;;;;;;:11;:19;;;;;;15088:12;:10;:12::i;:::-;-1:-1:-1;;;;;15068:33:0;;;;;;;;;;;;-1:-1:-1;15068:33:0;;;:89;:37;:89::i;:::-;15037:8;:121::i;:::-;-1:-1:-1;15176:4:0;14867:321;;;;;:::o;13037:83::-;13103:9;;;;13037:83;:::o;15597:218::-;15685:4;15702:83;15711:12;:10;:12::i;:::-;15725:7;15734:50;15773:10;15734:11;:25;15746:12;:10;:12::i;:::-;-1:-1:-1;;;;;15734:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;15734:25:0;;;:34;;;;;;;;;;;:38;:50::i;27331:65::-;648:5;;;;;-1:-1:-1;;;;;648:5:0;634:10;:19;626:28;;;;;;27378:10:::1;:8;:10::i;:::-;27331:65::o:0;21503:91::-;21559:27;21565:12;:10;:12::i;:::-;21579:6;21559:5;:27::i;:::-;21503:91;:::o;25416:120::-;-1:-1:-1;;;;;25507:21:0;25483:4;25507:21;;;:13;:21;;;;;;;;;25416:120::o;23221:78::-;23284:7;;;;;;;;23221:78::o;13348:119::-;-1:-1:-1;;;;;13441:18:0;13414:7;13441:18;;;;;;;;;;;;13348:119::o;26919:232::-;27455:9;;;;27454:10;27447:18;;;;648:5:::1;::::0;;;::::1;-1:-1:-1::0;;;;;648:5:0::1;634:10;:19;626:28;;;::::0;::::1;;27045:6:::2;27040:104;27057:21:::0;;::::2;27040:104;;;27100:32;27106:10;;27117:1;27106:13;;;;;;;;;;;;;-1:-1:-1::0;;;;;27106:13:0::2;27121:7;;27129:1;27121:10;;;;;;;;;;;;;27100:5;:32::i;:::-;27080:3;;27040:104;;;;26919:232:::0;;;;:::o;21913:295::-;21990:26;22019:84;22056:6;22019:84;;;;;;;;;;;;;;;;;:32;22029:7;22038:12;:10;:12::i;:::-;22019:9;:32::i;:::-;:36;:84;:36;:84::i;:::-;21990:113;;22116:51;22125:7;22134:12;:10;:12::i;:::-;22148:18;22116:8;:51::i;:::-;22178:22;22184:7;22193:6;22178:5;:22::i;:::-;21913:295;;;:::o;27262:61::-;648:5;;;;;-1:-1:-1;;;;;648:5:0;634:10;:19;626:28;;;;;;27307:8:::1;:6;:8::i;281:20::-:0;;;;;;-1:-1:-1;;;;;281:20:0;;:::o;12312:87::-;12384:7;12377:14;;;;;;;;-1:-1:-1;;12377:14:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12351:13;;12377:14;;12384:7;;12377:14;;12384:7;12377:14;;;;;;;;;;;;;;;;;;;;;;;;16318:269;16411:4;16428:129;16437:12;:10;:12::i;:::-;16451:7;16460:96;16499:15;16460:96;;;;;;;;;;;;;;;;;:11;:25;16472:12;:10;:12::i;:::-;-1:-1:-1;;;;;16460:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;16460:25:0;;;:34;;;;;;;;;;;:96;:38;:96::i;13680:175::-;13766:4;13783:42;13793:12;:10;:12::i;:::-;13807:9;13818:6;13783:9;:42::i;13918:151::-;-1:-1:-1;;;;;14034:18:0;;;14007:7;14034:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;13918:151::o;25357:46::-;;;;;;;;;;;;;;;:::o;25700:159::-;648:5;;;;;-1:-1:-1;;;;;648:5:0;634:10;:19;626:28;;;;;;-1:-1:-1;;;;;25775:27:0;::::1;25805:5;25775:27:::0;;;:13:::1;:27;::::0;;;;;;;;:35;;-1:-1:-1;;25775:35:0::1;::::0;;25821:30;;;;;;;::::1;::::0;;;;;;;;::::1;25700:159:::0;:::o;26239:29::-;;;;;;:::o;848:151::-;648:5;;;;;-1:-1:-1;;;;;648:5:0;634:10;:19;626:28;;;;;;-1:-1:-1;;;;;925:22:0;::::1;::::0;921:71:::1;;964:5;:16:::0;;-1:-1:-1;;;;;964:16:0;::::1;::::0;::::1;-1:-1:-1::0;;;;;;964:16:0;;::::1;;::::0;;848:151;:::o;25867:291::-;648:5;;;;;-1:-1:-1;;;;;648:5:0;634:10;:19;626:28;;;;;;-1:-1:-1;;;;;25956:31:0;::::1;;::::0;;;:13:::1;:31;::::0;;;;;::::1;;25948:40;;;::::0;::::1;;25999:15;26017:27;26027:16;26017:9;:27::i;:::-;25999:45;;26055:35;26061:16;26079:10;26055:5;:35::i;:::-;26101:49;::::0;;-1:-1:-1;;;;;26101:49:0;::::1;::::0;;::::1;::::0;::::1;::::0;;;;;::::1;::::0;;;;;;;;;::::1;665:1;25867:291:::0;:::o;1648:106::-;1736:10;1648:106;:::o;19640:346::-;-1:-1:-1;;;;;19742:19:0;;19734:68;;;;-1:-1:-1;;;19734:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;19821:21:0;;19813:68;;;;-1:-1:-1;;;19813:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;19894:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;19946:32;;;;;;;;;;;;;;;;;19640:346;;;:::o;17077:539::-;-1:-1:-1;;;;;17183:20:0;;17175:70;;;;-1:-1:-1;;;17175:70:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;17264:23:0;;17256:71;;;;-1:-1:-1;;;17256:71:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17340:47;17361:6;17369:9;17380:6;17340:20;:47::i;:::-;17420:71;17442:6;17420:71;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;17420:17:0;;:9;:17;;;;;;;;;;;;:71;:21;:71::i;:::-;-1:-1:-1;;;;;17400:17:0;;;:9;:17;;;;;;;;;;;:91;;;;17525:20;;;;;;;:32;;17550:6;17525:24;:32::i;:::-;-1:-1:-1;;;;;17502:20:0;;;:9;:20;;;;;;;;;;;;:55;;;;17573:35;;;;;;;17502:20;;17573:35;;;;;;;;;;;;;17077:539;;;:::o;6490:192::-;6576:7;6612:12;6604:6;;;;6596:29;;;;-1:-1:-1;;;6596:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;6648:5:0;;;6490:192::o;5587:181::-;5645:7;5677:5;;;5701:6;;;;5693:46;;;;;-1:-1:-1;;;5693:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;5759:1;5587:181;-1:-1:-1;;;5587:181:0:o;24270:120::-;23815:7;;;;;;;23807:40;;;;;-1:-1:-1;;;23807:40:0;;;;;;;;;;;;-1:-1:-1;;;23807:40:0;;;;;;;;;;;;;;;24329:7:::1;:15:::0;;-1:-1:-1;;24329:15:0::1;::::0;;24360:22:::1;24369:12;:10;:12::i;:::-;24360:22;::::0;;-1:-1:-1;;;;;24360:22:0;;::::1;::::0;;;;;;;::::1;::::0;;::::1;24270:120::o:0;18784:418::-;-1:-1:-1;;;;;18868:21:0;;18860:67;;;;-1:-1:-1;;;18860:67:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18940:49;18961:7;18978:1;18982:6;18940:20;:49::i;:::-;19023:68;19046:6;19023:68;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;19023:18:0;;:9;:18;;;;;;;;;;;;:68;:22;:68::i;:::-;-1:-1:-1;;;;;19002:18:0;;:9;:18;;;;;;;;;;:89;19117:12;;:24;;19134:6;19117:16;:24::i;:::-;19102:12;:39;19157:37;;;;;;;;19183:1;;-1:-1:-1;;;;;19157:37:0;;;;;;;;;;;;18784:418;;:::o;17898:378::-;-1:-1:-1;;;;;17982:21:0;;17974:65;;;;;-1:-1:-1;;;17974:65:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;18052:49;18081:1;18085:7;18094:6;18052:20;:49::i;:::-;18129:12;;:24;;18146:6;18129:16;:24::i;:::-;18114:12;:39;-1:-1:-1;;;;;18185:18:0;;:9;:18;;;;;;;;;;;:30;;18208:6;18185:22;:30::i;:::-;-1:-1:-1;;;;;18164:18:0;;:9;:18;;;;;;;;;;;:51;;;;18231:37;;;;;;;18164:18;;:9;;18231:37;;;;;;;;;;17898:378;;:::o;24011:118::-;23539:7;;;;;;;23538:8;23530:37;;;;;-1:-1:-1;;;23530:37:0;;;;;;;;;;;;-1:-1:-1;;;23530:37:0;;;;;;;;;;;;;;;24071:7:::1;:14:::0;;-1:-1:-1;;24071:14:0::1;;;::::0;;24101:20:::1;24108:12;:10;:12::i;26579:328::-:0;26710:44;26737:4;26743:2;26747:6;26710:26;:44::i;:::-;-1:-1:-1;;;;;26784:19:0;;;;;;:13;:19;;;;;;;;26783:20;;:40;;-1:-1:-1;;;;;;26807:16:0;;;26783:40;26775:49;;;;;;26844:8;:6;:8::i;:::-;26843:9;26835:64;;;;-1:-1:-1;;;26835:64:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6051:136;6109:7;6136:43;6140:1;6143;6136:43;;;;;;;;;;;;;;;;;:3;:43::i;24880:238::-;24989:44;25016:4;25022:2;25026:6;24989:26;:44::i

Swarm Source

ipfs://4279e1167f743b3be86d265a5c79e25d89d0b648fd8ab5d490c528d312b80f19
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.