ETH Price: $2,980.89 (-1.10%)
Gas: 9 Gwei

Token

Minter BIP (BIPX)
 

Overview

Max Total Supply

10,000,000,000 BIPX

Holders

374 (0.00%)

Total Transfers

-

Market

Price

$0.00 @ 0.000000 ETH (+1.62%)

Onchain Market Cap

$3,020,600.74

Circulating Supply Market Cap

$2,478,106.36

Other Info

Token Contract (WITH 18 Decimals)

Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

BIPx is the Minter Network's native token issued on Ethereum. Minter is a digital assets marketplace allowing anyone to buy, sell, send, and spend BTC, ETH, BIP, USDT, gold, oil, stocks, and many more within a single decentralized network.

Market

Volume (24H):$349.39
Market Capitalization:$2,478,106.36
Circulating Supply:8,204,018,258.00 BIPX
Market Data Source: Coinmarketcap

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
BIPx

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 2021-07-01
*/

// 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, Ownable {
    /**
     * @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");
    }
    
    function pause() public onlyOwner {
        _pause();
    }

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

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 BIPx is ERC20Burnable, ERC20Pausable, BlackList {
    constructor() ERC20("Minter BIP", "BIPX") public {
        _setupOwner(msg.sender);
        _mint(msg.sender, 10_000_000_000 * 10**18);
    }
    
    /**
     * @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");
    }
}

Contract Security Audit

Contract ABI

[{"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":"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":"_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"}]

60806040523480156200001157600080fd5b50604080518082018252600a81526904d696e746572204249560b41b60208083019182528351808501909452600484526308492a0b60e31b908401528151919291620000609160039162000328565b5080516200007690600490602084019062000328565b505060058054601260ff1990911617610100600160b01b0319163362010000810291909117909155620000aa9150620000c8565b620000c2336b204fce5e3e25026110000000620000f2565b620003c4565b600580546001600160a01b03909216620100000262010000600160b01b0319909216919091179055565b6001600160a01b0382166200014e576040805162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b6200015c6000838362000201565b6200017881600254620002a060201b62000a731790919060201c565b6002556001600160a01b03821660009081526020818152604090912054620001ab91839062000a73620002a0821b17901c565b6001600160a01b0383166000818152602081815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b620002198383836200030260201b62000ad41760201c565b6001600160a01b03831660009081526006602052604090205460ff1615806200024957506001600160a01b038216155b6200025357600080fd5b6200025d6200031a565b156200029b5760405162461bcd60e51b815260040180806020018281038252602a8152602001806200164e602a913960400191505060405180910390fd5b505050565b600082820183811015620002fb576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b620002538383836200029b60201b620007ae1760201c565b600554610100900460ff1690565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106200036b57805160ff19168380011785556200039b565b828001600101855582156200039b579182015b828111156200039b5782518255916020019190600101906200037e565b50620003a9929150620003ad565b5090565b5b80821115620003a95760008155600101620003ae565b61127a80620003d46000396000f3fe608060405234801561001057600080fd5b506004361061014d5760003560e01c806370a08231116100c3578063a9059cbb1161007c578063a9059cbb146103d6578063dd62ed3e14610402578063e47d606014610430578063e4997dc514610456578063f2fde38b1461047c578063f3bdc228146104a25761014d565b806370a082311461032457806379cc67901461034a5780638456cb59146103765780638da5cb5b1461037e57806395d89b41146103a2578063a457c2d7146103aa5761014d565b8063313ce56711610115578063313ce5671461028757806339509351146102a55780633f4ba83a146102d157806342966c68146102d957806359bf1abe146102f65780635c975abb1461031c5761014d565b806306fdde0314610152578063095ea7b3146101cf5780630ecb93c01461020f57806318160ddd1461023757806323b872dd14610251575b600080fd5b61015a6104c8565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561019457818101518382015260200161017c565b50505050905090810190601f1680156101c15780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6101fb600480360360408110156101e557600080fd5b506001600160a01b03813516906020013561055e565b604080519115158252519081900360200190f35b6102356004803603602081101561022557600080fd5b50356001600160a01b031661057b565b005b61023f6105f3565b60408051918252519081900360200190f35b6101fb6004803603606081101561026757600080fd5b506001600160a01b038135811691602081013590911690604001356105f9565b61028f610680565b6040805160ff9092168252519081900360200190f35b6101fb600480360360408110156102bb57600080fd5b506001600160a01b038135169060200135610689565b6102356106d7565b610235600480360360208110156102ef57600080fd5b50356106fe565b6101fb6004803603602081101561030c57600080fd5b50356001600160a01b0316610712565b6101fb610730565b61023f6004803603602081101561033a57600080fd5b50356001600160a01b031661073e565b6102356004803603604081101561036057600080fd5b506001600160a01b038135169060200135610759565b6102356107b3565b6103866107d8565b604080516001600160a01b039092168252519081900360200190f35b61015a6107ed565b6101fb600480360360408110156103c057600080fd5b506001600160a01b03813516906020013561084e565b6101fb600480360360408110156103ec57600080fd5b506001600160a01b0381351690602001356108b6565b61023f6004803603604081101561041857600080fd5b506001600160a01b03813581169160200135166108ca565b6101fb6004803603602081101561044657600080fd5b50356001600160a01b03166108f5565b6102356004803603602081101561046c57600080fd5b50356001600160a01b031661090a565b6102356004803603602081101561049257600080fd5b50356001600160a01b031661097f565b610235600480360360208110156104b857600080fd5b50356001600160a01b03166109d2565b60038054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156105545780601f1061052957610100808354040283529160200191610554565b820191906000526020600020905b81548152906001019060200180831161053757829003601f168201915b5050505050905090565b600061057261056b610b23565b8484610b27565b50600192915050565b6005546201000090046001600160a01b0316331461059857600080fd5b6001600160a01b038116600081815260066020908152604091829020805460ff19166001179055815192835290517f42e160154868087d6bfdc0ca23d96a1c1cfa32f1b72ba9ba27b69b98a0d819dc9281900390910190a150565b60025490565b6000610606848484610c13565b61067684610612610b23565b61067185604051806060016040528060288152602001611140602891396001600160a01b038a16600090815260016020526040812090610650610b23565b6001600160a01b031681526020810191909152604001600020549190610d6e565b610b27565b5060019392505050565b60055460ff1690565b6000610572610696610b23565b8461067185600160006106a7610b23565b6001600160a01b03908116825260208083019390935260409182016000908120918c168152925290205490610a73565b6005546201000090046001600160a01b031633146106f457600080fd5b6106fc610e05565b565b61070f610709610b23565b82610ea9565b50565b6001600160a01b031660009081526006602052604090205460ff1690565b600554610100900460ff1690565b6001600160a01b031660009081526020819052604090205490565b6000610790826040518060600160405280602481526020016111686024913961078986610784610b23565b6108ca565b9190610d6e565b90506107a48361079e610b23565b83610b27565b6107ae8383610ea9565b505050565b6005546201000090046001600160a01b031633146107d057600080fd5b6106fc610fa5565b6005546201000090046001600160a01b031681565b60048054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156105545780601f1061052957610100808354040283529160200191610554565b600061057261085b610b23565b84610671856040518060600160405280602581526020016111f66025913960016000610885610b23565b6001600160a01b03908116825260208083019390935260409182016000908120918d16815292529020549190610d6e565b60006105726108c3610b23565b8484610c13565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b60066020526000908152604090205460ff1681565b6005546201000090046001600160a01b0316331461092757600080fd5b6001600160a01b038116600081815260066020908152604091829020805460ff19169055815192835290517fd7e9ec6e6ecd65492dce6bf513cd6867560d49544421d0783ddf06e76c24470c9281900390910190a150565b6005546201000090046001600160a01b0316331461099c57600080fd5b6001600160a01b0381161561070f57600580546001600160a01b038316620100000262010000600160b01b031990911617905550565b6005546201000090046001600160a01b031633146109ef57600080fd5b6001600160a01b03811660009081526006602052604090205460ff16610a1457600080fd5b6000610a1f8261073e565b9050610a2b8282610ea9565b604080516001600160a01b03841681526020810183905281517f61e6e66b0d6339b2980aecc6ccc0039736791f0ccde9ed512e789a7fbdd698c6929181900390910190a15050565b600082820183811015610acd576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b610adf8383836107ae565b610ae7610730565b156107ae5760405162461bcd60e51b815260040180806020018281038252602a81526020018061121b602a913960400191505060405180910390fd5b3390565b6001600160a01b038316610b6c5760405162461bcd60e51b81526004018080602001828103825260248152602001806111d26024913960400191505060405180910390fd5b6001600160a01b038216610bb15760405162461bcd60e51b81526004018080602001828103825260228152602001806110f86022913960400191505060405180910390fd5b6001600160a01b03808416600081815260016020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b038316610c585760405162461bcd60e51b81526004018080602001828103825260258152602001806111ad6025913960400191505060405180910390fd5b6001600160a01b038216610c9d5760405162461bcd60e51b81526004018080602001828103825260238152602001806110b36023913960400191505060405180910390fd5b610ca883838361102d565b610ce58160405180606001604052806026815260200161111a602691396001600160a01b0386166000908152602081905260409020549190610d6e565b6001600160a01b038085166000908152602081905260408082209390935590841681522054610d149082610a73565b6001600160a01b038084166000818152602081815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b60008184841115610dfd5760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015610dc2578181015183820152602001610daa565b50505050905090810190601f168015610def5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b600554610100900460ff16610e58576040805162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b604482015290519081900360640190fd5b6005805461ff00191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa610e8c610b23565b604080516001600160a01b039092168252519081900360200190a1565b6001600160a01b038216610eee5760405162461bcd60e51b815260040180806020018281038252602181526020018061118c6021913960400191505060405180910390fd5b610efa8260008361102d565b610f37816040518060600160405280602281526020016110d6602291396001600160a01b0385166000908152602081905260409020549190610d6e565b6001600160a01b038316600090815260208190526040902055600254610f5d9082611070565b6002556040805182815290516000916001600160a01b038516917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a35050565b600554610100900460ff1615610ff5576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b6005805461ff0019166101001790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258610e8c610b23565b611038838383610ad4565b6001600160a01b03831660009081526006602052604090205460ff16158061106757506001600160a01b038216155b610adf57600080fd5b6000610acd83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250610d6e56fe45524332303a207472616e7366657220746f20746865207a65726f206164647265737345524332303a206275726e20616d6f756e7420657863656564732062616c616e636545524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a206275726e20616d6f756e74206578636565647320616c6c6f77616e636545524332303a206275726e2066726f6d20746865207a65726f206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737345524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726f45524332305061757361626c653a20746f6b656e207472616e73666572207768696c6520706175736564a2646970667358221220ef48ee9e8f97bc0e7f0d355936f7fbdd0d7fcae1b7683320e1190e0fc644893564736f6c634300060c003345524332305061757361626c653a20746f6b656e207472616e73666572207768696c6520706175736564

Deployed Bytecode

0x608060405234801561001057600080fd5b506004361061014d5760003560e01c806370a08231116100c3578063a9059cbb1161007c578063a9059cbb146103d6578063dd62ed3e14610402578063e47d606014610430578063e4997dc514610456578063f2fde38b1461047c578063f3bdc228146104a25761014d565b806370a082311461032457806379cc67901461034a5780638456cb59146103765780638da5cb5b1461037e57806395d89b41146103a2578063a457c2d7146103aa5761014d565b8063313ce56711610115578063313ce5671461028757806339509351146102a55780633f4ba83a146102d157806342966c68146102d957806359bf1abe146102f65780635c975abb1461031c5761014d565b806306fdde0314610152578063095ea7b3146101cf5780630ecb93c01461020f57806318160ddd1461023757806323b872dd14610251575b600080fd5b61015a6104c8565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561019457818101518382015260200161017c565b50505050905090810190601f1680156101c15780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6101fb600480360360408110156101e557600080fd5b506001600160a01b03813516906020013561055e565b604080519115158252519081900360200190f35b6102356004803603602081101561022557600080fd5b50356001600160a01b031661057b565b005b61023f6105f3565b60408051918252519081900360200190f35b6101fb6004803603606081101561026757600080fd5b506001600160a01b038135811691602081013590911690604001356105f9565b61028f610680565b6040805160ff9092168252519081900360200190f35b6101fb600480360360408110156102bb57600080fd5b506001600160a01b038135169060200135610689565b6102356106d7565b610235600480360360208110156102ef57600080fd5b50356106fe565b6101fb6004803603602081101561030c57600080fd5b50356001600160a01b0316610712565b6101fb610730565b61023f6004803603602081101561033a57600080fd5b50356001600160a01b031661073e565b6102356004803603604081101561036057600080fd5b506001600160a01b038135169060200135610759565b6102356107b3565b6103866107d8565b604080516001600160a01b039092168252519081900360200190f35b61015a6107ed565b6101fb600480360360408110156103c057600080fd5b506001600160a01b03813516906020013561084e565b6101fb600480360360408110156103ec57600080fd5b506001600160a01b0381351690602001356108b6565b61023f6004803603604081101561041857600080fd5b506001600160a01b03813581169160200135166108ca565b6101fb6004803603602081101561044657600080fd5b50356001600160a01b03166108f5565b6102356004803603602081101561046c57600080fd5b50356001600160a01b031661090a565b6102356004803603602081101561049257600080fd5b50356001600160a01b031661097f565b610235600480360360208110156104b857600080fd5b50356001600160a01b03166109d2565b60038054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156105545780601f1061052957610100808354040283529160200191610554565b820191906000526020600020905b81548152906001019060200180831161053757829003601f168201915b5050505050905090565b600061057261056b610b23565b8484610b27565b50600192915050565b6005546201000090046001600160a01b0316331461059857600080fd5b6001600160a01b038116600081815260066020908152604091829020805460ff19166001179055815192835290517f42e160154868087d6bfdc0ca23d96a1c1cfa32f1b72ba9ba27b69b98a0d819dc9281900390910190a150565b60025490565b6000610606848484610c13565b61067684610612610b23565b61067185604051806060016040528060288152602001611140602891396001600160a01b038a16600090815260016020526040812090610650610b23565b6001600160a01b031681526020810191909152604001600020549190610d6e565b610b27565b5060019392505050565b60055460ff1690565b6000610572610696610b23565b8461067185600160006106a7610b23565b6001600160a01b03908116825260208083019390935260409182016000908120918c168152925290205490610a73565b6005546201000090046001600160a01b031633146106f457600080fd5b6106fc610e05565b565b61070f610709610b23565b82610ea9565b50565b6001600160a01b031660009081526006602052604090205460ff1690565b600554610100900460ff1690565b6001600160a01b031660009081526020819052604090205490565b6000610790826040518060600160405280602481526020016111686024913961078986610784610b23565b6108ca565b9190610d6e565b90506107a48361079e610b23565b83610b27565b6107ae8383610ea9565b505050565b6005546201000090046001600160a01b031633146107d057600080fd5b6106fc610fa5565b6005546201000090046001600160a01b031681565b60048054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156105545780601f1061052957610100808354040283529160200191610554565b600061057261085b610b23565b84610671856040518060600160405280602581526020016111f66025913960016000610885610b23565b6001600160a01b03908116825260208083019390935260409182016000908120918d16815292529020549190610d6e565b60006105726108c3610b23565b8484610c13565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b60066020526000908152604090205460ff1681565b6005546201000090046001600160a01b0316331461092757600080fd5b6001600160a01b038116600081815260066020908152604091829020805460ff19169055815192835290517fd7e9ec6e6ecd65492dce6bf513cd6867560d49544421d0783ddf06e76c24470c9281900390910190a150565b6005546201000090046001600160a01b0316331461099c57600080fd5b6001600160a01b0381161561070f57600580546001600160a01b038316620100000262010000600160b01b031990911617905550565b6005546201000090046001600160a01b031633146109ef57600080fd5b6001600160a01b03811660009081526006602052604090205460ff16610a1457600080fd5b6000610a1f8261073e565b9050610a2b8282610ea9565b604080516001600160a01b03841681526020810183905281517f61e6e66b0d6339b2980aecc6ccc0039736791f0ccde9ed512e789a7fbdd698c6929181900390910190a15050565b600082820183811015610acd576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b610adf8383836107ae565b610ae7610730565b156107ae5760405162461bcd60e51b815260040180806020018281038252602a81526020018061121b602a913960400191505060405180910390fd5b3390565b6001600160a01b038316610b6c5760405162461bcd60e51b81526004018080602001828103825260248152602001806111d26024913960400191505060405180910390fd5b6001600160a01b038216610bb15760405162461bcd60e51b81526004018080602001828103825260228152602001806110f86022913960400191505060405180910390fd5b6001600160a01b03808416600081815260016020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b038316610c585760405162461bcd60e51b81526004018080602001828103825260258152602001806111ad6025913960400191505060405180910390fd5b6001600160a01b038216610c9d5760405162461bcd60e51b81526004018080602001828103825260238152602001806110b36023913960400191505060405180910390fd5b610ca883838361102d565b610ce58160405180606001604052806026815260200161111a602691396001600160a01b0386166000908152602081905260409020549190610d6e565b6001600160a01b038085166000908152602081905260408082209390935590841681522054610d149082610a73565b6001600160a01b038084166000818152602081815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b60008184841115610dfd5760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015610dc2578181015183820152602001610daa565b50505050905090810190601f168015610def5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b600554610100900460ff16610e58576040805162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b604482015290519081900360640190fd5b6005805461ff00191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa610e8c610b23565b604080516001600160a01b039092168252519081900360200190a1565b6001600160a01b038216610eee5760405162461bcd60e51b815260040180806020018281038252602181526020018061118c6021913960400191505060405180910390fd5b610efa8260008361102d565b610f37816040518060600160405280602281526020016110d6602291396001600160a01b0385166000908152602081905260409020549190610d6e565b6001600160a01b038316600090815260208190526040902055600254610f5d9082611070565b6002556040805182815290516000916001600160a01b038516917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a35050565b600554610100900460ff1615610ff5576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b6005805461ff0019166101001790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258610e8c610b23565b611038838383610ad4565b6001600160a01b03831660009081526006602052604090205460ff16158061106757506001600160a01b038216155b610adf57600080fd5b6000610acd83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250610d6e56fe45524332303a207472616e7366657220746f20746865207a65726f206164647265737345524332303a206275726e20616d6f756e7420657863656564732062616c616e636545524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a206275726e20616d6f756e74206578636565647320616c6c6f77616e636545524332303a206275726e2066726f6d20746865207a65726f206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737345524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726f45524332305061757361626c653a20746f6b656e207472616e73666572207768696c6520706175736564a2646970667358221220ef48ee9e8f97bc0e7f0d355936f7fbdd0d7fcae1b7683320e1190e0fc644893564736f6c634300060c0033

Deployed Bytecode Sourcemap

26234:746:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12074:83;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14180:169;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;14180:169:0;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;25617:144;;;;;;;;;;;;;;;;-1:-1:-1;25617:144:0;-1:-1:-1;;;;;25617:144:0;;:::i;:::-;;13149:100;;;:::i;:::-;;;;;;;;;;;;;;;;14831:321;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;14831:321:0;;;;;;;;;;;;;;;;;:::i;13001:83::-;;;:::i;:::-;;;;;;;;;;;;;;;;;;;15561:218;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;15561:218:0;;;;;;;;:::i;25136:65::-;;;:::i;21453:91::-;;;;;;;;;;;;;;;;-1:-1:-1;21453:91:0;;:::i;25485:120::-;;;;;;;;;;;;;;;;-1:-1:-1;25485:120:0;-1:-1:-1;;;;;25485:120:0;;:::i;23149:78::-;;;:::i;13312:119::-;;;;;;;;;;;;;;;;-1:-1:-1;13312:119:0;-1:-1:-1;;;;;13312:119:0;;:::i;21863:295::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;21863:295:0;;;;;;;;:::i;25067:61::-;;;:::i;281:20::-;;;:::i;:::-;;;;-1:-1:-1;;;;;281:20:0;;;;;;;;;;;;;;12276:87;;;:::i;16282:269::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;16282:269:0;;;;;;;;:::i;13644:175::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;13644:175:0;;;;;;;;:::i;13882:151::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;13882:151:0;;;;;;;;;;:::i;25426:46::-;;;;;;;;;;;;;;;;-1:-1:-1;25426:46:0;-1:-1:-1;;;;;25426:46:0;;:::i;25769:159::-;;;;;;;;;;;;;;;;-1:-1:-1;25769:159:0;-1:-1:-1;;;;;25769:159:0;;:::i;848:151::-;;;;;;;;;;;;;;;;-1:-1:-1;848:151:0;-1:-1:-1;;;;;848:151:0;;:::i;25936:291::-;;;;;;;;;;;;;;;;-1:-1:-1;25936:291:0;-1:-1:-1;;;;;25936:291:0;;:::i;12074:83::-;12144:5;12137:12;;;;;;;;-1:-1:-1;;12137:12:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12111:13;;12137:12;;12144:5;;12137:12;;12144:5;12137:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12074:83;:::o;14180:169::-;14263:4;14280:39;14289:12;:10;:12::i;:::-;14303:7;14312:6;14280:8;:39::i;:::-;-1:-1:-1;14337:4:0;14180:169;;;;:::o;25617:144::-;648:5;;;;;-1:-1:-1;;;;;648:5:0;634:10;:19;626:28;;;;;;-1:-1:-1;;;;;25686:24:0;::::1;;::::0;;;:13:::1;:24;::::0;;;;;;;;:31;;-1:-1:-1;;25686:31:0::1;25713:4;25686:31;::::0;;25728:25;;;;;;;::::1;::::0;;;;;;;;::::1;25617:144:::0;:::o;13149:100::-;13229:12;;13149:100;:::o;14831:321::-;14937:4;14954:36;14964:6;14972:9;14983:6;14954:9;:36::i;:::-;15001:121;15010:6;15018:12;:10;:12::i;:::-;15032:89;15070:6;15032:89;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;15032:19:0;;;;;;:11;:19;;;;;;15052:12;:10;:12::i;:::-;-1:-1:-1;;;;;15032:33:0;;;;;;;;;;;;-1:-1:-1;15032:33:0;;;:89;:37;:89::i;:::-;15001:8;:121::i;:::-;-1:-1:-1;15140:4:0;14831:321;;;;;:::o;13001:83::-;13067:9;;;;13001:83;:::o;15561:218::-;15649:4;15666:83;15675:12;:10;:12::i;:::-;15689:7;15698:50;15737:10;15698:11;:25;15710:12;:10;:12::i;:::-;-1:-1:-1;;;;;15698:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;15698:25:0;;;:34;;;;;;;;;;;:38;:50::i;25136:65::-;648:5;;;;;-1:-1:-1;;;;;648:5:0;634:10;:19;626:28;;;;;;25183:10:::1;:8;:10::i;:::-;25136:65::o:0;21453:91::-;21509:27;21515:12;:10;:12::i;:::-;21529:6;21509:5;:27::i;:::-;21453:91;:::o;25485:120::-;-1:-1:-1;;;;;25576:21:0;25552:4;25576:21;;;:13;:21;;;;;;;;;25485:120::o;23149:78::-;23212:7;;;;;;;;23149:78::o;13312:119::-;-1:-1:-1;;;;;13405:18:0;13378:7;13405:18;;;;;;;;;;;;13312:119::o;21863:295::-;21940:26;21969:84;22006:6;21969:84;;;;;;;;;;;;;;;;;:32;21979:7;21988:12;:10;:12::i;:::-;21969:9;:32::i;:::-;:36;:84;:36;:84::i;:::-;21940:113;;22066:51;22075:7;22084:12;:10;:12::i;:::-;22098:18;22066:8;:51::i;:::-;22128:22;22134:7;22143:6;22128:5;:22::i;:::-;21863:295;;;:::o;25067:61::-;648:5;;;;;-1:-1:-1;;;;;648:5:0;634:10;:19;626:28;;;;;;25112:8:::1;:6;:8::i;281:20::-:0;;;;;;-1:-1:-1;;;;;281:20:0;;:::o;12276:87::-;12348:7;12341:14;;;;;;;;-1:-1:-1;;12341:14:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12315:13;;12341:14;;12348:7;;12341:14;;12348:7;12341:14;;;;;;;;;;;;;;;;;;;;;;;;16282:269;16375:4;16392:129;16401:12;:10;:12::i;:::-;16415:7;16424:96;16463:15;16424:96;;;;;;;;;;;;;;;;;:11;:25;16436:12;:10;:12::i;:::-;-1:-1:-1;;;;;16424:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;16424:25:0;;;:34;;;;;;;;;;;:96;:38;:96::i;13644:175::-;13730:4;13747:42;13757:12;:10;:12::i;:::-;13771:9;13782:6;13747:9;:42::i;13882:151::-;-1:-1:-1;;;;;13998:18:0;;;13971:7;13998:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;13882:151::o;25426:46::-;;;;;;;;;;;;;;;:::o;25769:159::-;648:5;;;;;-1:-1:-1;;;;;648:5:0;634:10;:19;626:28;;;;;;-1:-1:-1;;;;;25844:27:0;::::1;25874:5;25844:27:::0;;;:13:::1;:27;::::0;;;;;;;;:35;;-1:-1:-1;;25844:35:0::1;::::0;;25890:30;;;;;;;::::1;::::0;;;;;;;;::::1;25769:159:::0;:::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;25936:291::-;648:5;;;;;-1:-1:-1;;;;;648:5:0;634:10;:19;626:28;;;;;;-1:-1:-1;;;;;26025:31:0;::::1;;::::0;;;:13:::1;:31;::::0;;;;;::::1;;26017:40;;;::::0;::::1;;26068:15;26086:27;26096:16;26086:9;:27::i;:::-;26068:45;;26124:35;26130:16;26148:10;26124:5;:35::i;:::-;26170:49;::::0;;-1:-1:-1;;;;;26170:49:0;::::1;::::0;;::::1;::::0;::::1;::::0;;;;;::::1;::::0;;;;;;;;;::::1;665:1;25936:291:::0;:::o;5551:181::-;5609:7;5641:5;;;5665:6;;;;5657:46;;;;;-1:-1:-1;;;5657:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;5723:1;5551:181;-1:-1:-1;;;5551:181:0:o;24817:238::-;24926:44;24953:4;24959:2;24963:6;24926:26;:44::i;:::-;24992:8;:6;:8::i;:::-;24991:9;24983:64;;;;-1:-1:-1;;;24983:64:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1644:106;1732:10;1644:106;:::o;19604:346::-;-1:-1:-1;;;;;19706:19:0;;19698:68;;;;-1:-1:-1;;;19698:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;19785:21:0;;19777:68;;;;-1:-1:-1;;;19777:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;19858:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;19910:32;;;;;;;;;;;;;;;;;19604:346;;;:::o;17041:539::-;-1:-1:-1;;;;;17147:20:0;;17139:70;;;;-1:-1:-1;;;17139:70:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;17228:23:0;;17220:71;;;;-1:-1:-1;;;17220:71:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17304:47;17325:6;17333:9;17344:6;17304:20;:47::i;:::-;17384:71;17406:6;17384:71;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;17384:17:0;;:9;:17;;;;;;;;;;;;:71;:21;:71::i;:::-;-1:-1:-1;;;;;17364:17:0;;;:9;:17;;;;;;;;;;;:91;;;;17489:20;;;;;;;:32;;17514:6;17489:24;:32::i;:::-;-1:-1:-1;;;;;17466:20:0;;;:9;:20;;;;;;;;;;;;:55;;;;17537:35;;;;;;;17466:20;;17537:35;;;;;;;;;;;;;17041:539;;;:::o;6454:192::-;6540:7;6576:12;6568:6;;;;6560:29;;;;-1:-1:-1;;;6560:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;6612:5:0;;;6454:192::o;24198:120::-;23743:7;;;;;;;23735:40;;;;;-1:-1:-1;;;23735:40:0;;;;;;;;;;;;-1:-1:-1;;;23735:40:0;;;;;;;;;;;;;;;24257:7:::1;:15:::0;;-1:-1:-1;;24257:15:0::1;::::0;;24288:22:::1;24297:12;:10;:12::i;:::-;24288:22;::::0;;-1:-1:-1;;;;;24288:22:0;;::::1;::::0;;;;;;;::::1;::::0;;::::1;24198:120::o:0;18748:418::-;-1:-1:-1;;;;;18832:21:0;;18824:67;;;;-1:-1:-1;;;18824:67:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18904:49;18925:7;18942:1;18946:6;18904:20;:49::i;:::-;18987:68;19010:6;18987:68;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;18987:18:0;;:9;:18;;;;;;;;;;;;:68;:22;:68::i;:::-;-1:-1:-1;;;;;18966:18:0;;:9;:18;;;;;;;;;;:89;19081:12;;:24;;19098:6;19081:16;:24::i;:::-;19066:12;:39;19121:37;;;;;;;;19147:1;;-1:-1:-1;;;;;19121:37:0;;;;;;;;;;;;18748:418;;:::o;23939:118::-;23467:7;;;;;;;23466:8;23458:37;;;;;-1:-1:-1;;;23458:37:0;;;;;;;;;;;;-1:-1:-1;;;23458:37:0;;;;;;;;;;;;;;;23999:7:::1;:14:::0;;-1:-1:-1;;23999:14:0::1;;;::::0;;24029:20:::1;24036:12;:10;:12::i;26649:328::-:0;26780:44;26807:4;26813:2;26817:6;26780:26;:44::i;:::-;-1:-1:-1;;;;;26854:19:0;;;;;;:13;:19;;;;;;;;26853:20;;:40;;-1:-1:-1;;;;;;26877:16:0;;;26853:40;26845:49;;;;;6015:136;6073:7;6100:43;6104:1;6107;6100:43;;;;;;;;;;;;;;;;;:3;:43::i

Swarm Source

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