ETH Price: $2,911.28 (-3.93%)
Gas: 1 Gwei

Token

EMERALDplaceholder (EMRLDP)
 

Overview

Max Total Supply

1,000,000,000 EMRLDP

Holders

472

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
92,179.093965922412392762 EMRLDP

Value
$0.00
0xb2fc53f237cf2d72a8b7a6589bb72b9711552c90
Loading...
Loading
Loading...
Loading
Loading...
Loading

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

Contract Source Code Verified (Exact Match)

Contract Name:
EMERALDplaceholder

Compiler Version
v0.8.24+commit.e11b9ed9

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2024-03-18
*/

/**
* This is smart contract for a placeholder token for EMRLD
* emeraldco.io
*/

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

pragma solidity ^0.8.24;

// CAUTION
// This version of SafeMath should only be used with Solidity 0.8 or later,
// because it relies on the compiler's built in overflow checks.

/**
 * @dev Wrappers over Solidity's arithmetic operations.
 *
 * NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler
 * now has built in overflow checking.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            uint256 c = a + b;
            if (c < a) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the substraction of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b > a) return (false, 0);
            return (true, a - b);
        }
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            // 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 (true, 0);
            uint256 c = a * b;
            if (c / a != b) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the division of two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a / b);
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a % b);
        }
    }

    /**
     * @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) {
        return a + b;
    }

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

    /**
     * @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) {
        return a * b;
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator.
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return a / b;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting 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 a % b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {trySub}.
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b <= a, errorMessage);
            return a - b;
        }
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting 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) {
        unchecked {
            require(b > 0, errorMessage);
            return a / b;
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting with custom message when dividing by zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryMod}.
     *
     * 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) {
        unchecked {
            require(b > 0, errorMessage);
            return a % b;
        }
    }
}

abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

    function _msgData() internal view virtual returns (bytes calldata) {
        return msg.data;
    }
}


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

    /**
     * @dev Returns the amount of tokens owned by `account`.
     */
    function balanceOf(address account) external view returns (uint256);

    /**
     * @dev Moves `amount` tokens from the caller's account to `to`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address to, uint256 amount) external returns (bool);

    /**
     * @dev Returns the remaining number of tokens that `spender` will be
     * allowed to spend on behalf of `owner` through {transferFrom}. This is
     * zero by default.
     *
     * This value changes when {approve} or {transferFrom} are called.
     */
    function allowance(address owner, address spender) external view returns (uint256);

    /**
     * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * IMPORTANT: Beware that changing an allowance with this method brings the risk
     * that someone may use both the old and the new allowance by unfortunate
     * transaction ordering. One possible solution to mitigate this race
     * condition is to first reduce the spender's allowance to 0 and set the
     * desired value afterwards:
     * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
     *
     * Emits an {Approval} event.
     */
    function approve(address spender, uint256 amount) external returns (bool);

    /**
     * @dev Moves `amount` tokens from `from` to `to` using the
     * allowance mechanism. `amount` is then deducted from the caller's
     * allowance.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address from,
        address to,
        uint256 amount
    ) external returns (bool);

    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

    /**
     * @dev Emitted when the allowance of a `spender` for an `owner` is set by
     * a call to {approve}. `value` is the new allowance.
     */
    event Approval(address indexed owner, address indexed spender, uint256 value);
}

interface IERC20Metadata is IERC20 {
    /**
     * @dev Returns the name of the token.
     */
    function name() external view returns (string memory);

    /**
     * @dev Returns the symbol of the token.
     */
    function symbol() external view returns (string memory);

    /**
     * @dev Returns the decimals places of the token.
     */
    function decimals() external view returns (uint8);
}
contract ERC20 is Context, IERC20, IERC20Metadata {
    mapping(address => uint256) private _balances;

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * The default value of {decimals} is 18. To select a different value for
     * {decimals} you should overload it.
     *
     * All two of these values are immutable: they can only be set once during
     * construction.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

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

    /**
     * @dev Returns the symbol of the token, usually a shorter version of the
     * name.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    /**
     * @dev Returns the number of decimals used to get its user representation.
     * For example, if `decimals` equals `2`, a balance of `505` tokens should
     * be displayed to a user as `5.05` (`505 / 10 ** 2`).
     *
     * Tokens usually opt for a value of 18, imitating the relationship between
     * Ether and Wei. This is the value {ERC20} uses, unless this function is
     * overridden;
     *
     * NOTE: This information is only used for _display_ purposes: it in
     * no way affects any of the arithmetic of the contract, including
     * {IERC20-balanceOf} and {IERC20-transfer}.
     */
    function decimals() public view virtual override returns (uint8) {
        return 18;
    }

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

    /**
     * @dev See {IERC20-balanceOf}.
     */
    function balanceOf(address account) public view virtual override returns (uint256) {
        return _balances[account];
    }

    /**
     * @dev See {IERC20-transfer}.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(address to, uint256 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _transfer(owner, to, amount);
        return true;
    }

    /**
     * @dev See {IERC20-allowance}.
     */
    function allowance(address owner, address spender) public view virtual override returns (uint256) {
        return _allowances[owner][spender];
    }

    /**
     * @dev See {IERC20-approve}.
     *
     * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on
     * `transferFrom`. This is semantically equivalent to an infinite approval.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _approve(owner, spender, amount);
        return true;
    }

    /**
     * @dev See {IERC20-transferFrom}.
     *
     * Emits an {Approval} event indicating the updated allowance. This is not
     * required by the EIP. See the note at the beginning of {ERC20}.
     *
     * NOTE: Does not update the allowance if the current allowance
     * is the maximum `uint256`.
     *
     * Requirements:
     *
     * - `from` and `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     * - the caller must have allowance for ``from``'s tokens of at least
     * `amount`.
     */
    function transferFrom(
        address from,
        address to,
        uint256 amount
    ) public virtual override returns (bool) {
        address spender = _msgSender();
        _spendAllowance(from, spender, amount);
        _transfer(from, to, amount);
        return true;
    }

    /**
     * @dev Atomically increases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {
        address owner = _msgSender();
        _approve(owner, spender, _allowances[owner][spender] + addedValue);
        return true;
    }

    /**
     * @dev Atomically decreases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     * - `spender` must have allowance for the caller of at least
     * `subtractedValue`.
     */
    function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) {
        address owner = _msgSender();
        uint256 currentAllowance = _allowances[owner][spender];
        require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
        unchecked {
            _approve(owner, spender, currentAllowance - subtractedValue);
        }

        return true;
    }

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

        _beforeTokenTransfer(from, to, amount);

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

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, amount);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

abstract contract Ownable is Context {
    address private _owner;

    event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        _transferOwnership(_msgSender());
    }

    /**
     * @dev Returns the address of the current owner.
     */
    function owner() public view virtual returns (address) {
        return _owner;
    }

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
        _;
    }

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        _transferOwnership(address(0));
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public virtual onlyOwner {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        _transferOwnership(newOwner);
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Internal function without access restriction.
     */
    function _transferOwnership(address newOwner) internal virtual {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}
pragma solidity ^0.8.24;

contract EMERALDplaceholder is ERC20, Ownable {
    using SafeMath for uint256;
    
    uint256 private _totalSupply = 1000000000 * 1e18;
    uint256 private _currentSupply = 0;

    function totalSupply() public view override returns (uint256) {
        return _totalSupply;
    }

    mapping(address => bool) public blacklisted;
    
    constructor() ERC20("EMERALDplaceholder", "EMRLDP") {
        // Mint the initial supply to the contract deployer
        _mint(msg.sender, 1000000000 * 10**18); // 1 billion tokens with 18 decimal places
    }

        function transfer(address to, uint256 amount) public override returns (bool) {
        address owner = _msgSender();
        require(!blacklisted[owner],'Blacklisted');
        _transfer(owner, to, amount);
        return true;
    }

    function transferFrom(
        address from,
        address to,
        uint256 amount
    ) public override returns (bool) {
        address spender = _msgSender();
        _spendAllowance(from, spender, amount);
        require(!blacklisted[spender],'Blacklisted');
        _transfer(from, to, amount);
        return true;
    }

    function setAsBlackListed(address _user, bool _enabled) external onlyOwner{
        blacklisted[_user] = _enabled;
    } 

}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"blacklisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_user","type":"address"},{"internalType":"bool","name":"_enabled","type":"bool"}],"name":"setAsBlackListed","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526b033b2e3c9fd0803ce80000006006555f60075534801562000024575f80fd5b506040518060400160405280601281526020017122a6a2a920a622383630b1b2b437b63232b960711b815250604051806040016040528060068152602001650454d524c44560d41b8152508160039081620000809190620002a6565b5060046200008f8282620002a6565b505050620000ac620000a6620000ca60201b60201c565b620000ce565b620000c4336b033b2e3c9fd0803ce80000006200011f565b62000398565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b6001600160a01b0382166200017a5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640160405180910390fd5b8060025f8282546200018d919062000372565b90915550506001600160a01b0382165f9081526020819052604081208054839290620001bb90849062000372565b90915550506040518181526001600160a01b038316905f907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b505050565b634e487b7160e01b5f52604160045260245ffd5b600181811c908216806200023257607f821691505b6020821081036200025157634e487b7160e01b5f52602260045260245ffd5b50919050565b601f8211156200020457805f5260205f20601f840160051c810160208510156200027e5750805b601f840160051c820191505b818110156200029f575f81556001016200028a565b5050505050565b81516001600160401b03811115620002c257620002c262000209565b620002da81620002d384546200021d565b8462000257565b602080601f83116001811462000310575f8415620002f85750858301515b5f19600386901b1c1916600185901b1785556200036a565b5f85815260208120601f198616915b8281101562000340578886015182559484019460019091019084016200031f565b50858210156200035e57878501515f19600388901b60f8161c191681555b505060018460011b0185555b505050505050565b808201808211156200039257634e487b7160e01b5f52601160045260245ffd5b92915050565b610bea80620003a65f395ff3fe608060405234801561000f575f80fd5b50600436106100fb575f3560e01c8063715018a611610093578063a9059cbb11610063578063a9059cbb14610202578063dbac26e914610215578063dd62ed3e14610237578063f2fde38b1461026f575f80fd5b8063715018a6146101c45780638da5cb5b146101cc57806395d89b41146101e7578063a457c2d7146101ef575f80fd5b8063313ce567116100ce578063313ce5671461016557806339509351146101745780635c1026691461018757806370a082311461019c575f80fd5b806306fdde03146100ff578063095ea7b31461011d57806318160ddd1461014057806323b872dd14610152575b5f80fd5b610107610282565b60405161011491906109d6565b60405180910390f35b61013061012b366004610a3d565b610312565b6040519015158152602001610114565b6006545b604051908152602001610114565b610130610160366004610a65565b61032b565b60405160128152602001610114565b610130610182366004610a3d565b6103a9565b61019a610195366004610a9e565b6103e7565b005b6101446101aa366004610ad7565b6001600160a01b03165f9081526020819052604090205490565b61019a61043b565b6005546040516001600160a01b039091168152602001610114565b610107610470565b6101306101fd366004610a3d565b61047f565b610130610210366004610a3d565b610510565b610130610223366004610ad7565b60086020525f908152604090205460ff1681565b610144610245366004610af7565b6001600160a01b039182165f90815260016020908152604080832093909416825291909152205490565b61019a61027d366004610ad7565b61056b565b60606003805461029190610b28565b80601f01602080910402602001604051908101604052809291908181526020018280546102bd90610b28565b80156103085780601f106102df57610100808354040283529160200191610308565b820191905f5260205f20905b8154815290600101906020018083116102eb57829003601f168201915b5050505050905090565b5f3361031f818585610606565b60019150505b92915050565b5f33610338858285610729565b6001600160a01b0381165f9081526008602052604090205460ff16156103935760405162461bcd60e51b815260206004820152600b60248201526a109b1858dadb1a5cdd195960aa1b60448201526064015b60405180910390fd5b61039e8585856107b9565b506001949350505050565b335f8181526001602090815260408083206001600160a01b038716845290915281205490919061031f90829086906103e2908790610b60565b610606565b6005546001600160a01b031633146104115760405162461bcd60e51b815260040161038a90610b7f565b6001600160a01b03919091165f908152600860205260409020805460ff1916911515919091179055565b6005546001600160a01b031633146104655760405162461bcd60e51b815260040161038a90610b7f565b61046e5f610985565b565b60606004805461029190610b28565b335f8181526001602090815260408083206001600160a01b0387168452909152812054909190838110156105035760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b606482015260840161038a565b61039e8286868403610606565b335f8181526008602052604081205490919060ff16156105605760405162461bcd60e51b815260206004820152600b60248201526a109b1858dadb1a5cdd195960aa1b604482015260640161038a565b61031f8185856107b9565b6005546001600160a01b031633146105955760405162461bcd60e51b815260040161038a90610b7f565b6001600160a01b0381166105fa5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161038a565b61060381610985565b50565b6001600160a01b0383166106685760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b606482015260840161038a565b6001600160a01b0382166106c95760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b606482015260840161038a565b6001600160a01b038381165f8181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b038381165f908152600160209081526040808320938616835292905220545f1981146107b357818110156107a65760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000604482015260640161038a565b6107b38484848403610606565b50505050565b6001600160a01b03831661081d5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b606482015260840161038a565b6001600160a01b03821661087f5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b606482015260840161038a565b6001600160a01b0383165f90815260208190526040902054818110156108f65760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b606482015260840161038a565b6001600160a01b038085165f9081526020819052604080822085850390559185168152908120805484929061092c908490610b60565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161097891815260200190565b60405180910390a36107b3565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b5f602080835283518060208501525f5b81811015610a02578581018301518582016040015282016109e6565b505f604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b0381168114610a38575f80fd5b919050565b5f8060408385031215610a4e575f80fd5b610a5783610a22565b946020939093013593505050565b5f805f60608486031215610a77575f80fd5b610a8084610a22565b9250610a8e60208501610a22565b9150604084013590509250925092565b5f8060408385031215610aaf575f80fd5b610ab883610a22565b915060208301358015158114610acc575f80fd5b809150509250929050565b5f60208284031215610ae7575f80fd5b610af082610a22565b9392505050565b5f8060408385031215610b08575f80fd5b610b1183610a22565b9150610b1f60208401610a22565b90509250929050565b600181811c90821680610b3c57607f821691505b602082108103610b5a57634e487b7160e01b5f52602260045260245ffd5b50919050565b8082018082111561032557634e487b7160e01b5f52601160045260245ffd5b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260408201526060019056fea2646970667358221220837a7c70d16b3b4931b3afad5ab4d10d0ff18156e40d98449364e09e46ef42d664736f6c63430008180033

Deployed Bytecode

0x608060405234801561000f575f80fd5b50600436106100fb575f3560e01c8063715018a611610093578063a9059cbb11610063578063a9059cbb14610202578063dbac26e914610215578063dd62ed3e14610237578063f2fde38b1461026f575f80fd5b8063715018a6146101c45780638da5cb5b146101cc57806395d89b41146101e7578063a457c2d7146101ef575f80fd5b8063313ce567116100ce578063313ce5671461016557806339509351146101745780635c1026691461018757806370a082311461019c575f80fd5b806306fdde03146100ff578063095ea7b31461011d57806318160ddd1461014057806323b872dd14610152575b5f80fd5b610107610282565b60405161011491906109d6565b60405180910390f35b61013061012b366004610a3d565b610312565b6040519015158152602001610114565b6006545b604051908152602001610114565b610130610160366004610a65565b61032b565b60405160128152602001610114565b610130610182366004610a3d565b6103a9565b61019a610195366004610a9e565b6103e7565b005b6101446101aa366004610ad7565b6001600160a01b03165f9081526020819052604090205490565b61019a61043b565b6005546040516001600160a01b039091168152602001610114565b610107610470565b6101306101fd366004610a3d565b61047f565b610130610210366004610a3d565b610510565b610130610223366004610ad7565b60086020525f908152604090205460ff1681565b610144610245366004610af7565b6001600160a01b039182165f90815260016020908152604080832093909416825291909152205490565b61019a61027d366004610ad7565b61056b565b60606003805461029190610b28565b80601f01602080910402602001604051908101604052809291908181526020018280546102bd90610b28565b80156103085780601f106102df57610100808354040283529160200191610308565b820191905f5260205f20905b8154815290600101906020018083116102eb57829003601f168201915b5050505050905090565b5f3361031f818585610606565b60019150505b92915050565b5f33610338858285610729565b6001600160a01b0381165f9081526008602052604090205460ff16156103935760405162461bcd60e51b815260206004820152600b60248201526a109b1858dadb1a5cdd195960aa1b60448201526064015b60405180910390fd5b61039e8585856107b9565b506001949350505050565b335f8181526001602090815260408083206001600160a01b038716845290915281205490919061031f90829086906103e2908790610b60565b610606565b6005546001600160a01b031633146104115760405162461bcd60e51b815260040161038a90610b7f565b6001600160a01b03919091165f908152600860205260409020805460ff1916911515919091179055565b6005546001600160a01b031633146104655760405162461bcd60e51b815260040161038a90610b7f565b61046e5f610985565b565b60606004805461029190610b28565b335f8181526001602090815260408083206001600160a01b0387168452909152812054909190838110156105035760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b606482015260840161038a565b61039e8286868403610606565b335f8181526008602052604081205490919060ff16156105605760405162461bcd60e51b815260206004820152600b60248201526a109b1858dadb1a5cdd195960aa1b604482015260640161038a565b61031f8185856107b9565b6005546001600160a01b031633146105955760405162461bcd60e51b815260040161038a90610b7f565b6001600160a01b0381166105fa5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161038a565b61060381610985565b50565b6001600160a01b0383166106685760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b606482015260840161038a565b6001600160a01b0382166106c95760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b606482015260840161038a565b6001600160a01b038381165f8181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b038381165f908152600160209081526040808320938616835292905220545f1981146107b357818110156107a65760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000604482015260640161038a565b6107b38484848403610606565b50505050565b6001600160a01b03831661081d5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b606482015260840161038a565b6001600160a01b03821661087f5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b606482015260840161038a565b6001600160a01b0383165f90815260208190526040902054818110156108f65760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b606482015260840161038a565b6001600160a01b038085165f9081526020819052604080822085850390559185168152908120805484929061092c908490610b60565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161097891815260200190565b60405180910390a36107b3565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b5f602080835283518060208501525f5b81811015610a02578581018301518582016040015282016109e6565b505f604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b0381168114610a38575f80fd5b919050565b5f8060408385031215610a4e575f80fd5b610a5783610a22565b946020939093013593505050565b5f805f60608486031215610a77575f80fd5b610a8084610a22565b9250610a8e60208501610a22565b9150604084013590509250925092565b5f8060408385031215610aaf575f80fd5b610ab883610a22565b915060208301358015158114610acc575f80fd5b809150509250929050565b5f60208284031215610ae7575f80fd5b610af082610a22565b9392505050565b5f8060408385031215610b08575f80fd5b610b1183610a22565b9150610b1f60208401610a22565b90509250929050565b600181811c90821680610b3c57607f821691505b602082108103610b5a57634e487b7160e01b5f52602260045260245ffd5b50919050565b8082018082111561032557634e487b7160e01b5f52601160045260245ffd5b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260408201526060019056fea2646970667358221220837a7c70d16b3b4931b3afad5ab4d10d0ff18156e40d98449364e09e46ef42d664736f6c63430008180033

Deployed Bytecode Sourcemap

25164:1303:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12463:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14814:201;;;;;;:::i;:::-;;:::i;:::-;;;1169:14:1;;1162:22;1144:41;;1132:2;1117:18;14814:201:0;1004:187:1;25354:100:0;25434:12;;25354:100;;;1342:25:1;;;1330:2;1315:18;25354:100:0;1196:177:1;25989:342:0;;;;;;:::i;:::-;;:::i;13425:93::-;;;13508:2;1853:36:1;;1841:2;1826:18;13425:93:0;1711:184:1;16299:240:0;;;;;;:::i;:::-;;:::i;26339:122::-;;;;;;:::i;:::-;;:::i;:::-;;13754:127;;;;;;:::i;:::-;-1:-1:-1;;;;;13855:18:0;13828:7;13855:18;;;;;;;;;;;;13754:127;24321:103;;;:::i;23670:87::-;23743:6;;23670:87;;-1:-1:-1;;;;;23743:6:0;;;2589:51:1;;2577:2;2562:18;23670:87:0;2443:203:1;12682:104:0;;;:::i;17042:438::-;;;;;;:::i;:::-;;:::i;25743:238::-;;;;;;:::i;:::-;;:::i;25462:43::-;;;;;;:::i;:::-;;;;;;;;;;;;;;;;14343:151;;;;;;:::i;:::-;-1:-1:-1;;;;;14459:18:0;;;14432:7;14459:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;14343:151;24579:201;;;;;;:::i;:::-;;:::i;12463:100::-;12517:13;12550:5;12543:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12463:100;:::o;14814:201::-;14897:4;7212:10;14953:32;7212:10;14969:7;14978:6;14953:8;:32::i;:::-;15003:4;14996:11;;;14814:201;;;;;:::o;25989:342::-;26112:4;7212:10;26170:38;26186:4;7212:10;26201:6;26170:15;:38::i;:::-;-1:-1:-1;;;;;26228:20:0;;;;;;:11;:20;;;;;;;;26227:21;26219:44;;;;-1:-1:-1;;;26219:44:0;;3503:2:1;26219:44:0;;;3485:21:1;3542:2;3522:18;;;3515:30;-1:-1:-1;;;3561:18:1;;;3554:41;3612:18;;26219:44:0;;;;;;;;;26274:27;26284:4;26290:2;26294:6;26274:9;:27::i;:::-;-1:-1:-1;26319:4:0;;25989:342;-1:-1:-1;;;;25989:342:0:o;16299:240::-;7212:10;16387:4;16468:18;;;:11;:18;;;;;;;;-1:-1:-1;;;;;16468:27:0;;;;;;;;;;16387:4;;7212:10;16443:66;;7212:10;;16468:27;;:40;;16498:10;;16468:40;:::i;:::-;16443:8;:66::i;26339:122::-;23743:6;;-1:-1:-1;;;;;23743:6:0;7212:10;23890:23;23882:68;;;;-1:-1:-1;;;23882:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;26424:18:0;;;::::1;;::::0;;;:11:::1;:18;::::0;;;;:29;;-1:-1:-1;;26424:29:0::1;::::0;::::1;;::::0;;;::::1;::::0;;26339:122::o;24321:103::-;23743:6;;-1:-1:-1;;;;;23743:6:0;7212:10;23890:23;23882:68;;;;-1:-1:-1;;;23882:68:0;;;;;;;:::i;:::-;24386:30:::1;24413:1;24386:18;:30::i;:::-;24321:103::o:0;12682:104::-;12738:13;12771:7;12764:14;;;;;:::i;17042:438::-;7212:10;17135:4;17218:18;;;:11;:18;;;;;;;;-1:-1:-1;;;;;17218:27:0;;;;;;;;;;17135:4;;7212:10;17264:35;;;;17256:85;;;;-1:-1:-1;;;17256:85:0;;4431:2:1;17256:85:0;;;4413:21:1;4470:2;4450:18;;;4443:30;4509:34;4489:18;;;4482:62;-1:-1:-1;;;4560:18:1;;;4553:35;4605:19;;17256:85:0;4229:401:1;17256:85:0;17377:60;17386:5;17393:7;17421:15;17402:16;:34;17377:8;:60::i;25743:238::-;7212:10;25814:4;25879:18;;;:11;:18;;;;;;25814:4;;7212:10;25879:18;;25878:19;25870:42;;;;-1:-1:-1;;;25870:42:0;;3503:2:1;25870:42:0;;;3485:21:1;3542:2;3522:18;;;3515:30;-1:-1:-1;;;3561:18:1;;;3554:41;3612:18;;25870:42:0;3301:335:1;25870:42:0;25923:28;25933:5;25940:2;25944:6;25923:9;:28::i;24579:201::-;23743:6;;-1:-1:-1;;;;;23743:6:0;7212:10;23890:23;23882:68;;;;-1:-1:-1;;;23882:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;24668:22:0;::::1;24660:73;;;::::0;-1:-1:-1;;;24660:73:0;;4837:2:1;24660:73:0::1;::::0;::::1;4819:21:1::0;4876:2;4856:18;;;4849:30;4915:34;4895:18;;;4888:62;-1:-1:-1;;;4966:18:1;;;4959:36;5012:19;;24660:73:0::1;4635:402:1::0;24660:73:0::1;24744:28;24763:8;24744:18;:28::i;:::-;24579:201:::0;:::o;20678:380::-;-1:-1:-1;;;;;20814:19:0;;20806:68;;;;-1:-1:-1;;;20806:68:0;;5244:2:1;20806:68:0;;;5226:21:1;5283:2;5263:18;;;5256:30;5322:34;5302:18;;;5295:62;-1:-1:-1;;;5373:18:1;;;5366:34;5417:19;;20806:68:0;5042:400:1;20806:68:0;-1:-1:-1;;;;;20893:21:0;;20885:68;;;;-1:-1:-1;;;20885:68:0;;5649:2:1;20885:68:0;;;5631:21:1;5688:2;5668:18;;;5661:30;5727:34;5707:18;;;5700:62;-1:-1:-1;;;5778:18:1;;;5771:32;5820:19;;20885:68:0;5447:398:1;20885:68:0;-1:-1:-1;;;;;20966:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;21018:32;;1342:25:1;;;21018:32:0;;1315:18:1;21018:32:0;;;;;;;20678:380;;;:::o;21345:453::-;-1:-1:-1;;;;;14459:18:0;;;21480:24;14459:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;-1:-1:-1;;21547:37:0;;21543:248;;21629:6;21609:16;:26;;21601:68;;;;-1:-1:-1;;;21601:68:0;;6052:2:1;21601:68:0;;;6034:21:1;6091:2;6071:18;;;6064:30;6130:31;6110:18;;;6103:59;6179:18;;21601:68:0;5850:353:1;21601:68:0;21713:51;21722:5;21729:7;21757:6;21738:16;:25;21713:8;:51::i;:::-;21469:329;21345:453;;;:::o;17959:671::-;-1:-1:-1;;;;;18090:18:0;;18082:68;;;;-1:-1:-1;;;18082:68:0;;6410:2:1;18082:68:0;;;6392:21:1;6449:2;6429:18;;;6422:30;6488:34;6468:18;;;6461:62;-1:-1:-1;;;6539:18:1;;;6532:35;6584:19;;18082:68:0;6208:401:1;18082:68:0;-1:-1:-1;;;;;18169:16:0;;18161:64;;;;-1:-1:-1;;;18161:64:0;;6816:2:1;18161:64:0;;;6798:21:1;6855:2;6835:18;;;6828:30;6894:34;6874:18;;;6867:62;-1:-1:-1;;;6945:18:1;;;6938:33;6988:19;;18161:64:0;6614:399:1;18161:64:0;-1:-1:-1;;;;;18311:15:0;;18289:19;18311:15;;;;;;;;;;;18345:21;;;;18337:72;;;;-1:-1:-1;;;18337:72:0;;7220:2:1;18337:72:0;;;7202:21:1;7259:2;7239:18;;;7232:30;7298:34;7278:18;;;7271:62;-1:-1:-1;;;7349:18:1;;;7342:36;7395:19;;18337:72:0;7018:402:1;18337:72:0;-1:-1:-1;;;;;18445:15:0;;;:9;:15;;;;;;;;;;;18463:20;;;18445:38;;18505:13;;;;;;;;:23;;18477:6;;18445:9;18505:23;;18477:6;;18505:23;:::i;:::-;;;;;;;;18561:2;-1:-1:-1;;;;;18546:26:0;18555:4;-1:-1:-1;;;;;18546:26:0;;18565:6;18546:26;;;;1342:25:1;;1330:2;1315:18;;1196:177;18546:26:0;;;;;;;;18585:37;22398:125;24940:191;25033:6;;;-1:-1:-1;;;;;25050:17:0;;;-1:-1:-1;;;;;;25050:17:0;;;;;;;25083:40;;25033:6;;;25050:17;25033:6;;25083:40;;25014:16;;25083:40;25003:128;24940:191;:::o;14:548:1:-;126:4;155:2;184;173:9;166:21;216:6;210:13;259:6;254:2;243:9;239:18;232:34;284:1;294:140;308:6;305:1;302:13;294:140;;;403:14;;;399:23;;393:30;369:17;;;388:2;365:26;358:66;323:10;;294:140;;;298:3;483:1;478:2;469:6;458:9;454:22;450:31;443:42;553:2;546;542:7;537:2;529:6;525:15;521:29;510:9;506:45;502:54;494:62;;;;14:548;;;;:::o;567:173::-;635:20;;-1:-1:-1;;;;;684:31:1;;674:42;;664:70;;730:1;727;720:12;664:70;567:173;;;:::o;745:254::-;813:6;821;874:2;862:9;853:7;849:23;845:32;842:52;;;890:1;887;880:12;842:52;913:29;932:9;913:29;:::i;:::-;903:39;989:2;974:18;;;;961:32;;-1:-1:-1;;;745:254:1:o;1378:328::-;1455:6;1463;1471;1524:2;1512:9;1503:7;1499:23;1495:32;1492:52;;;1540:1;1537;1530:12;1492:52;1563:29;1582:9;1563:29;:::i;:::-;1553:39;;1611:38;1645:2;1634:9;1630:18;1611:38;:::i;:::-;1601:48;;1696:2;1685:9;1681:18;1668:32;1658:42;;1378:328;;;;;:::o;1900:347::-;1965:6;1973;2026:2;2014:9;2005:7;2001:23;1997:32;1994:52;;;2042:1;2039;2032:12;1994:52;2065:29;2084:9;2065:29;:::i;:::-;2055:39;;2144:2;2133:9;2129:18;2116:32;2191:5;2184:13;2177:21;2170:5;2167:32;2157:60;;2213:1;2210;2203:12;2157:60;2236:5;2226:15;;;1900:347;;;;;:::o;2252:186::-;2311:6;2364:2;2352:9;2343:7;2339:23;2335:32;2332:52;;;2380:1;2377;2370:12;2332:52;2403:29;2422:9;2403:29;:::i;:::-;2393:39;2252:186;-1:-1:-1;;;2252:186:1:o;2651:260::-;2719:6;2727;2780:2;2768:9;2759:7;2755:23;2751:32;2748:52;;;2796:1;2793;2786:12;2748:52;2819:29;2838:9;2819:29;:::i;:::-;2809:39;;2867:38;2901:2;2890:9;2886:18;2867:38;:::i;:::-;2857:48;;2651:260;;;;;:::o;2916:380::-;2995:1;2991:12;;;;3038;;;3059:61;;3113:4;3105:6;3101:17;3091:27;;3059:61;3166:2;3158:6;3155:14;3135:18;3132:38;3129:161;;3212:10;3207:3;3203:20;3200:1;3193:31;3247:4;3244:1;3237:15;3275:4;3272:1;3265:15;3129:161;;2916:380;;;:::o;3641:222::-;3706:9;;;3727:10;;;3724:133;;;3779:10;3774:3;3770:20;3767:1;3760:31;3814:4;3811:1;3804:15;3842:4;3839:1;3832:15;3868:356;4070:2;4052:21;;;4089:18;;;4082:30;4148:34;4143:2;4128:18;;4121:62;4215:2;4200:18;;3868:356::o

Swarm Source

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