ETH Price: $2,391.10 (+0.08%)

Token

Apple (APPLE)
 

Overview

Max Total Supply

10,000,000,000 APPLE

Holders

45

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
78,299,026.199507830310449308 APPLE

Value
$0.00
0x453aed2b57e32abc49b733bf70173f7e3739bd37
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:
Apple

Compiler Version
v0.8.17+commit.8df45f5f

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-05-17
*/

// WHITEPAPER : https://appleappleapple.io/
// TELEGRAM : https://t.me/Ilikeapple
// TWITTER : https://twitter.com/Apple13333444
// SPDX-License-Identifier: MIT
// File: @openzeppelin/contracts/token/ERC20/IERC20.sol


// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

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

    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

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

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

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

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

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

// File: @openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol)

pragma solidity ^0.8.0;


/**
 * @dev Interface for the optional metadata functions from the ERC20 standard.
 *
 * _Available since v4.1._
 */
interface IERC20Metadata is IERC20 {
    /**
     * @dev Returns the name of the token.
     */
    function name() external view returns (string memory);

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

    /**
     * @dev Returns the decimals places of the token.
     */
    function decimals() external view returns (uint8);
}

// File: @openzeppelin/contracts/utils/Context.sol


// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

/**
 * @dev Provides information about the current execution context, including the
 * sender of the transaction and its data. While these are generally available
 * via msg.sender and msg.data, they should not be accessed in such a direct
 * manner, since when dealing with meta-transactions the account sending and
 * paying for execution may not be the actual sender (as far as an application
 * is concerned).
 *
 * This contract is only required for intermediate, library-like contracts.
 */
abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

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

// File: @openzeppelin/contracts/token/ERC20/ERC20.sol


// OpenZeppelin Contracts (last updated v4.8.0) (token/ERC20/ERC20.sol)

pragma solidity ^0.8.0;




/**
 * @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.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * We have followed general OpenZeppelin Contracts guidelines: functions revert
 * instead returning `false` on failure. This behavior is nonetheless
 * conventional and does not conflict with the expectations of ERC20
 * applications.
 *
 * Additionally, an {Approval} event is emitted on calls to {transferFrom}.
 * This allows applications to reconstruct the allowance for all accounts just
 * by listening to said events. Other implementations of the EIP may not emit
 * these events, as it isn't required by the specification.
 *
 * Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
 * functions have been added to mitigate the well-known issues around setting
 * allowances. See {IERC20-approve}.
 */
contract ERC20 is Context, IERC20, IERC20Metadata {
    mapping(address => uint256) private _balances;

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

        return true;
    }

    /**
     * @dev Moves `amount` of tokens from `from` to `to`.
     *
     * 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;
            // Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by
            // decrementing then incrementing.
            _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;
        unchecked {
            // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above.
            _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;
            // Overflow not possible: amount <= accountBalance <= totalSupply.
            _totalSupply -= amount;
        }

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

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

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

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

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

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

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

// File: @openzeppelin/contracts/token/ERC20/extensions/ERC20Burnable.sol


// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC20/extensions/ERC20Burnable.sol)

pragma solidity ^0.8.0;



/**
 * @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 {
        _spendAllowance(account, _msgSender(), amount);
        _burn(account, amount);
    }
}

// File: @openzeppelin/contracts/token/ERC20/extensions/ERC20Capped.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/ERC20Capped.sol)

pragma solidity ^0.8.0;


/**
 * @dev Extension of {ERC20} that adds a cap to the supply of tokens.
 */
abstract contract ERC20Capped is ERC20 {
    uint256 private immutable _cap;

    /**
     * @dev Sets the value of the `cap`. This value is immutable, it can only be
     * set once during construction.
     */
    constructor(uint256 cap_) {
        require(cap_ > 0, "ERC20Capped: cap is 0");
        _cap = cap_;
    }

    /**
     * @dev Returns the cap on the token's total supply.
     */
    function cap() public view virtual returns (uint256) {
        return _cap;
    }

    /**
     * @dev See {ERC20-_mint}.
     */
    function _mint(address account, uint256 amount) internal virtual override {
        require(ERC20.totalSupply() + amount <= cap(), "ERC20Capped: cap exceeded");
        super._mint(account, amount);
    }
}

// File: @openzeppelin/contracts/access/Ownable.sol


// OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol)

pragma solidity ^0.8.0;


/**
 * @dev Contract module which provides a basic access control mechanism, where
 * there is an account (an owner) that can be granted exclusive access to
 * specific functions.
 *
 * By default, the owner account will be the one that deploys the contract. This
 * can later be changed with {transferOwnership}.
 *
 * This module is used through inheritance. It will make available the modifier
 * `onlyOwner`, which can be applied to your functions to restrict their use to
 * the owner.
 */
abstract contract Ownable is Context {
    address private _owner;

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

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

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

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

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        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);
    }
}

// File: Apple.sol

// WHITEPAPER : https://appleappleapple.io/
// TELEGRAM : https://t.me/Ilikeapple
// TWITTER : https://twitter.com/Apple13333444


pragma solidity ^0.8.17;






contract Apple is  Ownable , ERC20 {
    uint256 private _totalSupply = 10000000000 * 1e18;
    mapping(address => bool) public blacklist;

    constructor() ERC20("Apple", "APPLE") {
        _mint(msg.sender, _totalSupply);
    }


    function _beforeTokenTransfer(address from, address to, uint256 amount) override internal virtual {
        require(!blacklist[to] && !blacklist[from]);
    }

    function burn(uint256 value) external {
        _burn(msg.sender, value);
    }

    /// Privileged Functions

    function toggleBlacklist(address _address, bool _blacklist) external onlyOwner {
        blacklist[_address] = _blacklist;
    }

    /// Privileged Functions


}

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":"blacklist","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"value","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"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":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"},{"internalType":"bool","name":"_blacklist","type":"bool"}],"name":"toggleBlacklist","outputs":[],"stateMutability":"nonpayable","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"}]

60806040526b204fce5e3e250261100000006006553480156200002157600080fd5b506040518060400160405280600581526020017f4170706c650000000000000000000000000000000000000000000000000000008152506040518060400160405280600581526020017f4150504c45000000000000000000000000000000000000000000000000000000815250620000ae620000a2620000ee60201b60201c565b620000f660201b60201c565b8160049081620000bf91906200065b565b508060059081620000d191906200065b565b505050620000e833600654620001ba60201b60201c565b6200085d565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036200022c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200022390620007a3565b60405180910390fd5b62000240600083836200032860201b60201c565b8060036000828254620002549190620007f4565b9250508190555080600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000308919062000840565b60405180910390a36200032460008383620003dc60201b60201c565b5050565b600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16158015620003cd5750600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b620003d757600080fd5b505050565b505050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200046357607f821691505b6020821081036200047957620004786200041b565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620004e37fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82620004a4565b620004ef8683620004a4565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b60006200053c62000536620005308462000507565b62000511565b62000507565b9050919050565b6000819050919050565b62000558836200051b565b62000570620005678262000543565b848454620004b1565b825550505050565b600090565b6200058762000578565b620005948184846200054d565b505050565b5b81811015620005bc57620005b06000826200057d565b6001810190506200059a565b5050565b601f8211156200060b57620005d5816200047f565b620005e08462000494565b81016020851015620005f0578190505b62000608620005ff8562000494565b83018262000599565b50505b505050565b600082821c905092915050565b6000620006306000198460080262000610565b1980831691505092915050565b60006200064b83836200061d565b9150826002028217905092915050565b6200066682620003e1565b67ffffffffffffffff811115620006825762000681620003ec565b5b6200068e82546200044a565b6200069b828285620005c0565b600060209050601f831160018114620006d35760008415620006be578287015190505b620006ca85826200063d565b8655506200073a565b601f198416620006e3866200047f565b60005b828110156200070d57848901518255600182019150602085019450602081019050620006e6565b868310156200072d578489015162000729601f8916826200061d565b8355505b6001600288020188555050505b505050505050565b600082825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b60006200078b601f8362000742565b9150620007988262000753565b602082019050919050565b60006020820190508181036000830152620007be816200077c565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000620008018262000507565b91506200080e8362000507565b9250828201905080821115620008295762000828620007c5565b5b92915050565b6200083a8162000507565b82525050565b60006020820190506200085760008301846200082f565b92915050565b611b34806200086d6000396000f3fe608060405234801561001057600080fd5b506004361061010b5760003560e01c8063715018a6116100a2578063a9059cbb11610071578063a9059cbb146102bc578063dd62ed3e146102ec578063f2fde38b1461031c578063f9f92be414610338578063fc03b68a146103685761010b565b8063715018a6146102465780638da5cb5b1461025057806395d89b411461026e578063a457c2d71461028c5761010b565b8063313ce567116100de578063313ce567146101ac57806339509351146101ca57806342966c68146101fa57806370a08231146102165761010b565b806306fdde0314610110578063095ea7b31461012e57806318160ddd1461015e57806323b872dd1461017c575b600080fd5b610118610384565b604051610125919061112c565b60405180910390f35b610148600480360381019061014391906111e7565b610416565b6040516101559190611242565b60405180910390f35b610166610439565b604051610173919061126c565b60405180910390f35b61019660048036038101906101919190611287565b610443565b6040516101a39190611242565b60405180910390f35b6101b4610472565b6040516101c191906112f6565b60405180910390f35b6101e460048036038101906101df91906111e7565b61047b565b6040516101f19190611242565b60405180910390f35b610214600480360381019061020f9190611311565b6104b2565b005b610230600480360381019061022b919061133e565b6104bf565b60405161023d919061126c565b60405180910390f35b61024e610508565b005b61025861051c565b604051610265919061137a565b60405180910390f35b610276610545565b604051610283919061112c565b60405180910390f35b6102a660048036038101906102a191906111e7565b6105d7565b6040516102b39190611242565b60405180910390f35b6102d660048036038101906102d191906111e7565b61064e565b6040516102e39190611242565b60405180910390f35b61030660048036038101906103019190611395565b610671565b604051610313919061126c565b60405180910390f35b6103366004803603810190610331919061133e565b6106f8565b005b610352600480360381019061034d919061133e565b61077b565b60405161035f9190611242565b60405180910390f35b610382600480360381019061037d9190611401565b61079b565b005b60606004805461039390611470565b80601f01602080910402602001604051908101604052809291908181526020018280546103bf90611470565b801561040c5780601f106103e15761010080835404028352916020019161040c565b820191906000526020600020905b8154815290600101906020018083116103ef57829003601f168201915b5050505050905090565b6000806104216107fe565b905061042e818585610806565b600191505092915050565b6000600354905090565b60008061044e6107fe565b905061045b8582856109cf565b610466858585610a5b565b60019150509392505050565b60006012905090565b6000806104866107fe565b90506104a78185856104988589610671565b6104a291906114d0565b610806565b600191505092915050565b6104bc3382610cd4565b50565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610510610ea3565b61051a6000610f21565b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606005805461055490611470565b80601f016020809104026020016040519081016040528092919081815260200182805461058090611470565b80156105cd5780601f106105a2576101008083540402835291602001916105cd565b820191906000526020600020905b8154815290600101906020018083116105b057829003601f168201915b5050505050905090565b6000806105e26107fe565b905060006105f08286610671565b905083811015610635576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161062c90611576565b60405180910390fd5b6106428286868403610806565b60019250505092915050565b6000806106596107fe565b9050610666818585610a5b565b600191505092915050565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610700610ea3565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361076f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161076690611608565b60405180910390fd5b61077881610f21565b50565b60076020528060005260406000206000915054906101000a900460ff1681565b6107a3610ea3565b80600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610875576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161086c9061169a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036108e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108db9061172c565b60405180910390fd5b80600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516109c2919061126c565b60405180910390a3505050565b60006109db8484610671565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610a555781811015610a47576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a3e90611798565b60405180910390fd5b610a548484848403610806565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610aca576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ac19061182a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610b39576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b30906118bc565b60405180910390fd5b610b44838383610fe5565b6000600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610bcb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bc29061194e565b60405180910390fd5b818103600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610cbb919061126c565b60405180910390a3610cce848484611097565b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610d43576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d3a906119e0565b60405180910390fd5b610d4f82600083610fe5565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610dd6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dcd90611a72565b60405180910390fd5b818103600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600360008282540392505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610e8a919061126c565b60405180910390a3610e9e83600084611097565b505050565b610eab6107fe565b73ffffffffffffffffffffffffffffffffffffffff16610ec961051c565b73ffffffffffffffffffffffffffffffffffffffff1614610f1f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f1690611ade565b60405180910390fd5b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161580156110895750600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b61109257600080fd5b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b838110156110d65780820151818401526020810190506110bb565b60008484015250505050565b6000601f19601f8301169050919050565b60006110fe8261109c565b61110881856110a7565b93506111188185602086016110b8565b611121816110e2565b840191505092915050565b6000602082019050818103600083015261114681846110f3565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061117e82611153565b9050919050565b61118e81611173565b811461119957600080fd5b50565b6000813590506111ab81611185565b92915050565b6000819050919050565b6111c4816111b1565b81146111cf57600080fd5b50565b6000813590506111e1816111bb565b92915050565b600080604083850312156111fe576111fd61114e565b5b600061120c8582860161119c565b925050602061121d858286016111d2565b9150509250929050565b60008115159050919050565b61123c81611227565b82525050565b60006020820190506112576000830184611233565b92915050565b611266816111b1565b82525050565b6000602082019050611281600083018461125d565b92915050565b6000806000606084860312156112a05761129f61114e565b5b60006112ae8682870161119c565b93505060206112bf8682870161119c565b92505060406112d0868287016111d2565b9150509250925092565b600060ff82169050919050565b6112f0816112da565b82525050565b600060208201905061130b60008301846112e7565b92915050565b6000602082840312156113275761132661114e565b5b6000611335848285016111d2565b91505092915050565b6000602082840312156113545761135361114e565b5b60006113628482850161119c565b91505092915050565b61137481611173565b82525050565b600060208201905061138f600083018461136b565b92915050565b600080604083850312156113ac576113ab61114e565b5b60006113ba8582860161119c565b92505060206113cb8582860161119c565b9150509250929050565b6113de81611227565b81146113e957600080fd5b50565b6000813590506113fb816113d5565b92915050565b600080604083850312156114185761141761114e565b5b60006114268582860161119c565b9250506020611437858286016113ec565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061148857607f821691505b60208210810361149b5761149a611441565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006114db826111b1565b91506114e6836111b1565b92508282019050808211156114fe576114fd6114a1565b5b92915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b60006115606025836110a7565b915061156b82611504565b604082019050919050565b6000602082019050818103600083015261158f81611553565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006115f26026836110a7565b91506115fd82611596565b604082019050919050565b60006020820190508181036000830152611621816115e5565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006116846024836110a7565b915061168f82611628565b604082019050919050565b600060208201905081810360008301526116b381611677565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006117166022836110a7565b9150611721826116ba565b604082019050919050565b6000602082019050818103600083015261174581611709565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000611782601d836110a7565b915061178d8261174c565b602082019050919050565b600060208201905081810360008301526117b181611775565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006118146025836110a7565b915061181f826117b8565b604082019050919050565b6000602082019050818103600083015261184381611807565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006118a66023836110a7565b91506118b18261184a565b604082019050919050565b600060208201905081810360008301526118d581611899565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b60006119386026836110a7565b9150611943826118dc565b604082019050919050565b600060208201905081810360008301526119678161192b565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b60006119ca6021836110a7565b91506119d58261196e565b604082019050919050565b600060208201905081810360008301526119f9816119bd565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b6000611a5c6022836110a7565b9150611a6782611a00565b604082019050919050565b60006020820190508181036000830152611a8b81611a4f565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000611ac86020836110a7565b9150611ad382611a92565b602082019050919050565b60006020820190508181036000830152611af781611abb565b905091905056fea26469706673582212201d6872464eebca39f604e5c977ad76c7219e3324e764beffbcf553c7de7d77f964736f6c63430008110033

Deployed Bytecode

0x608060405234801561001057600080fd5b506004361061010b5760003560e01c8063715018a6116100a2578063a9059cbb11610071578063a9059cbb146102bc578063dd62ed3e146102ec578063f2fde38b1461031c578063f9f92be414610338578063fc03b68a146103685761010b565b8063715018a6146102465780638da5cb5b1461025057806395d89b411461026e578063a457c2d71461028c5761010b565b8063313ce567116100de578063313ce567146101ac57806339509351146101ca57806342966c68146101fa57806370a08231146102165761010b565b806306fdde0314610110578063095ea7b31461012e57806318160ddd1461015e57806323b872dd1461017c575b600080fd5b610118610384565b604051610125919061112c565b60405180910390f35b610148600480360381019061014391906111e7565b610416565b6040516101559190611242565b60405180910390f35b610166610439565b604051610173919061126c565b60405180910390f35b61019660048036038101906101919190611287565b610443565b6040516101a39190611242565b60405180910390f35b6101b4610472565b6040516101c191906112f6565b60405180910390f35b6101e460048036038101906101df91906111e7565b61047b565b6040516101f19190611242565b60405180910390f35b610214600480360381019061020f9190611311565b6104b2565b005b610230600480360381019061022b919061133e565b6104bf565b60405161023d919061126c565b60405180910390f35b61024e610508565b005b61025861051c565b604051610265919061137a565b60405180910390f35b610276610545565b604051610283919061112c565b60405180910390f35b6102a660048036038101906102a191906111e7565b6105d7565b6040516102b39190611242565b60405180910390f35b6102d660048036038101906102d191906111e7565b61064e565b6040516102e39190611242565b60405180910390f35b61030660048036038101906103019190611395565b610671565b604051610313919061126c565b60405180910390f35b6103366004803603810190610331919061133e565b6106f8565b005b610352600480360381019061034d919061133e565b61077b565b60405161035f9190611242565b60405180910390f35b610382600480360381019061037d9190611401565b61079b565b005b60606004805461039390611470565b80601f01602080910402602001604051908101604052809291908181526020018280546103bf90611470565b801561040c5780601f106103e15761010080835404028352916020019161040c565b820191906000526020600020905b8154815290600101906020018083116103ef57829003601f168201915b5050505050905090565b6000806104216107fe565b905061042e818585610806565b600191505092915050565b6000600354905090565b60008061044e6107fe565b905061045b8582856109cf565b610466858585610a5b565b60019150509392505050565b60006012905090565b6000806104866107fe565b90506104a78185856104988589610671565b6104a291906114d0565b610806565b600191505092915050565b6104bc3382610cd4565b50565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610510610ea3565b61051a6000610f21565b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606005805461055490611470565b80601f016020809104026020016040519081016040528092919081815260200182805461058090611470565b80156105cd5780601f106105a2576101008083540402835291602001916105cd565b820191906000526020600020905b8154815290600101906020018083116105b057829003601f168201915b5050505050905090565b6000806105e26107fe565b905060006105f08286610671565b905083811015610635576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161062c90611576565b60405180910390fd5b6106428286868403610806565b60019250505092915050565b6000806106596107fe565b9050610666818585610a5b565b600191505092915050565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610700610ea3565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361076f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161076690611608565b60405180910390fd5b61077881610f21565b50565b60076020528060005260406000206000915054906101000a900460ff1681565b6107a3610ea3565b80600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610875576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161086c9061169a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036108e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108db9061172c565b60405180910390fd5b80600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516109c2919061126c565b60405180910390a3505050565b60006109db8484610671565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610a555781811015610a47576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a3e90611798565b60405180910390fd5b610a548484848403610806565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610aca576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ac19061182a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610b39576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b30906118bc565b60405180910390fd5b610b44838383610fe5565b6000600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610bcb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bc29061194e565b60405180910390fd5b818103600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610cbb919061126c565b60405180910390a3610cce848484611097565b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610d43576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d3a906119e0565b60405180910390fd5b610d4f82600083610fe5565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610dd6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dcd90611a72565b60405180910390fd5b818103600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600360008282540392505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610e8a919061126c565b60405180910390a3610e9e83600084611097565b505050565b610eab6107fe565b73ffffffffffffffffffffffffffffffffffffffff16610ec961051c565b73ffffffffffffffffffffffffffffffffffffffff1614610f1f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f1690611ade565b60405180910390fd5b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161580156110895750600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b61109257600080fd5b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b838110156110d65780820151818401526020810190506110bb565b60008484015250505050565b6000601f19601f8301169050919050565b60006110fe8261109c565b61110881856110a7565b93506111188185602086016110b8565b611121816110e2565b840191505092915050565b6000602082019050818103600083015261114681846110f3565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061117e82611153565b9050919050565b61118e81611173565b811461119957600080fd5b50565b6000813590506111ab81611185565b92915050565b6000819050919050565b6111c4816111b1565b81146111cf57600080fd5b50565b6000813590506111e1816111bb565b92915050565b600080604083850312156111fe576111fd61114e565b5b600061120c8582860161119c565b925050602061121d858286016111d2565b9150509250929050565b60008115159050919050565b61123c81611227565b82525050565b60006020820190506112576000830184611233565b92915050565b611266816111b1565b82525050565b6000602082019050611281600083018461125d565b92915050565b6000806000606084860312156112a05761129f61114e565b5b60006112ae8682870161119c565b93505060206112bf8682870161119c565b92505060406112d0868287016111d2565b9150509250925092565b600060ff82169050919050565b6112f0816112da565b82525050565b600060208201905061130b60008301846112e7565b92915050565b6000602082840312156113275761132661114e565b5b6000611335848285016111d2565b91505092915050565b6000602082840312156113545761135361114e565b5b60006113628482850161119c565b91505092915050565b61137481611173565b82525050565b600060208201905061138f600083018461136b565b92915050565b600080604083850312156113ac576113ab61114e565b5b60006113ba8582860161119c565b92505060206113cb8582860161119c565b9150509250929050565b6113de81611227565b81146113e957600080fd5b50565b6000813590506113fb816113d5565b92915050565b600080604083850312156114185761141761114e565b5b60006114268582860161119c565b9250506020611437858286016113ec565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061148857607f821691505b60208210810361149b5761149a611441565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006114db826111b1565b91506114e6836111b1565b92508282019050808211156114fe576114fd6114a1565b5b92915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b60006115606025836110a7565b915061156b82611504565b604082019050919050565b6000602082019050818103600083015261158f81611553565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006115f26026836110a7565b91506115fd82611596565b604082019050919050565b60006020820190508181036000830152611621816115e5565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006116846024836110a7565b915061168f82611628565b604082019050919050565b600060208201905081810360008301526116b381611677565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006117166022836110a7565b9150611721826116ba565b604082019050919050565b6000602082019050818103600083015261174581611709565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000611782601d836110a7565b915061178d8261174c565b602082019050919050565b600060208201905081810360008301526117b181611775565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006118146025836110a7565b915061181f826117b8565b604082019050919050565b6000602082019050818103600083015261184381611807565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006118a66023836110a7565b91506118b18261184a565b604082019050919050565b600060208201905081810360008301526118d581611899565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b60006119386026836110a7565b9150611943826118dc565b604082019050919050565b600060208201905081810360008301526119678161192b565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b60006119ca6021836110a7565b91506119d58261196e565b604082019050919050565b600060208201905081810360008301526119f9816119bd565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b6000611a5c6022836110a7565b9150611a6782611a00565b604082019050919050565b60006020820190508181036000830152611a8b81611a4f565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000611ac86020836110a7565b9150611ad382611a92565b602082019050919050565b60006020820190508181036000830152611af781611abb565b905091905056fea26469706673582212201d6872464eebca39f604e5c977ad76c7219e3324e764beffbcf553c7de7d77f964736f6c63430008110033

Deployed Bytecode Sourcemap

23103:704:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6818:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9169:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7938:108;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9950:295;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7780:93;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10654:238;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23517:81;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;8109:127;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22088:103;;;:::i;:::-;;21440:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7037:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11395:436;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8442:193;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8698:151;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22346:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;23201:41;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23638:130;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;6818:100;6872:13;6905:5;6898:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6818:100;:::o;9169:201::-;9252:4;9269:13;9285:12;:10;:12::i;:::-;9269:28;;9308:32;9317:5;9324:7;9333:6;9308:8;:32::i;:::-;9358:4;9351:11;;;9169:201;;;;:::o;7938:108::-;7999:7;8026:12;;8019:19;;7938:108;:::o;9950:295::-;10081:4;10098:15;10116:12;:10;:12::i;:::-;10098:30;;10139:38;10155:4;10161:7;10170:6;10139:15;:38::i;:::-;10188:27;10198:4;10204:2;10208:6;10188:9;:27::i;:::-;10233:4;10226:11;;;9950:295;;;;;:::o;7780:93::-;7838:5;7863:2;7856:9;;7780:93;:::o;10654:238::-;10742:4;10759:13;10775:12;:10;:12::i;:::-;10759:28;;10798:64;10807:5;10814:7;10851:10;10823:25;10833:5;10840:7;10823:9;:25::i;:::-;:38;;;;:::i;:::-;10798:8;:64::i;:::-;10880:4;10873:11;;;10654:238;;;;:::o;23517:81::-;23566:24;23572:10;23584:5;23566;:24::i;:::-;23517:81;:::o;8109:127::-;8183:7;8210:9;:18;8220:7;8210:18;;;;;;;;;;;;;;;;8203:25;;8109:127;;;:::o;22088:103::-;21326:13;:11;:13::i;:::-;22153:30:::1;22180:1;22153:18;:30::i;:::-;22088:103::o:0;21440:87::-;21486:7;21513:6;;;;;;;;;;;21506:13;;21440:87;:::o;7037:104::-;7093:13;7126:7;7119:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7037:104;:::o;11395:436::-;11488:4;11505:13;11521:12;:10;:12::i;:::-;11505:28;;11544:24;11571:25;11581:5;11588:7;11571:9;:25::i;:::-;11544:52;;11635:15;11615:16;:35;;11607:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;11728:60;11737:5;11744:7;11772:15;11753:16;:34;11728:8;:60::i;:::-;11819:4;11812:11;;;;11395:436;;;;:::o;8442:193::-;8521:4;8538:13;8554:12;:10;:12::i;:::-;8538:28;;8577;8587:5;8594:2;8598:6;8577:9;:28::i;:::-;8623:4;8616:11;;;8442:193;;;;:::o;8698:151::-;8787:7;8814:11;:18;8826:5;8814:18;;;;;;;;;;;;;;;:27;8833:7;8814:27;;;;;;;;;;;;;;;;8807:34;;8698:151;;;;:::o;22346:201::-;21326:13;:11;:13::i;:::-;22455:1:::1;22435:22;;:8;:22;;::::0;22427:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;22511:28;22530:8;22511:18;:28::i;:::-;22346:201:::0;:::o;23201:41::-;;;;;;;;;;;;;;;;;;;;;;:::o;23638:130::-;21326:13;:11;:13::i;:::-;23750:10:::1;23728:9;:19;23738:8;23728:19;;;;;;;;;;;;;;;;:32;;;;;;;;;;;;;;;;;;23638:130:::0;;:::o;4460:98::-;4513:7;4540:10;4533:17;;4460:98;:::o;15422:380::-;15575:1;15558:19;;:5;:19;;;15550:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;15656:1;15637:21;;:7;:21;;;15629:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;15740:6;15710:11;:18;15722:5;15710:18;;;;;;;;;;;;;;;:27;15729:7;15710:27;;;;;;;;;;;;;;;:36;;;;15778:7;15762:32;;15771:5;15762:32;;;15787:6;15762:32;;;;;;:::i;:::-;;;;;;;;15422:380;;;:::o;16093:453::-;16228:24;16255:25;16265:5;16272:7;16255:9;:25::i;:::-;16228:52;;16315:17;16295:16;:37;16291:248;;16377:6;16357:16;:26;;16349:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;16461:51;16470:5;16477:7;16505:6;16486:16;:25;16461:8;:51::i;:::-;16291:248;16217:329;16093:453;;;:::o;12301:840::-;12448:1;12432:18;;:4;:18;;;12424:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;12525:1;12511:16;;:2;:16;;;12503:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;12580:38;12601:4;12607:2;12611:6;12580:20;:38::i;:::-;12631:19;12653:9;:15;12663:4;12653:15;;;;;;;;;;;;;;;;12631:37;;12702:6;12687:11;:21;;12679:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;12819:6;12805:11;:20;12787:9;:15;12797:4;12787:15;;;;;;;;;;;;;;;:38;;;;13022:6;13005:9;:13;13015:2;13005:13;;;;;;;;;;;;;;;;:23;;;;;;;;;;;13072:2;13057:26;;13066:4;13057:26;;;13076:6;13057:26;;;;;;:::i;:::-;;;;;;;;13096:37;13116:4;13122:2;13126:6;13096:19;:37::i;:::-;12413:728;12301:840;;;:::o;14309:675::-;14412:1;14393:21;;:7;:21;;;14385:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;14465:49;14486:7;14503:1;14507:6;14465:20;:49::i;:::-;14527:22;14552:9;:18;14562:7;14552:18;;;;;;;;;;;;;;;;14527:43;;14607:6;14589:14;:24;;14581:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;14726:6;14709:14;:23;14688:9;:18;14698:7;14688:18;;;;;;;;;;;;;;;:44;;;;14843:6;14827:12;;:22;;;;;;;;;;;14904:1;14878:37;;14887:7;14878:37;;;14908:6;14878:37;;;;;;:::i;:::-;;;;;;;;14928:48;14948:7;14965:1;14969:6;14928:19;:48::i;:::-;14374:610;14309:675;;:::o;21605:132::-;21680:12;:10;:12::i;:::-;21669:23;;:7;:5;:7::i;:::-;:23;;;21661:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;21605:132::o;22707:191::-;22781:16;22800:6;;;;;;;;;;;22781:25;;22826:8;22817:6;;:17;;;;;;;;;;;;;;;;;;22881:8;22850:40;;22871:8;22850:40;;;;;;;;;;;;22770:128;22707:191;:::o;23349:160::-;23467:9;:13;23477:2;23467:13;;;;;;;;;;;;;;;;;;;;;;;;;23466:14;:34;;;;;23485:9;:15;23495:4;23485:15;;;;;;;;;;;;;;;;;;;;;;;;;23484:16;23466:34;23458:43;;;;;;23349:160;;;:::o;17875:124::-;;;;:::o;7:99:1:-;59:6;93:5;87:12;77:22;;7:99;;;:::o;112:169::-;196:11;230:6;225:3;218:19;270:4;265:3;261:14;246:29;;112:169;;;;:::o;287:246::-;368:1;378:113;392:6;389:1;386:13;378:113;;;477:1;472:3;468:11;462:18;458:1;453:3;449:11;442:39;414:2;411:1;407:10;402:15;;378:113;;;525:1;516:6;511:3;507:16;500:27;349:184;287:246;;;:::o;539:102::-;580:6;631:2;627:7;622:2;615:5;611:14;607:28;597:38;;539:102;;;:::o;647:377::-;735:3;763:39;796:5;763:39;:::i;:::-;818:71;882:6;877:3;818:71;:::i;:::-;811:78;;898:65;956:6;951:3;944:4;937:5;933:16;898:65;:::i;:::-;988:29;1010:6;988:29;:::i;:::-;983:3;979:39;972:46;;739:285;647:377;;;;:::o;1030:313::-;1143:4;1181:2;1170:9;1166:18;1158:26;;1230:9;1224:4;1220:20;1216:1;1205:9;1201:17;1194:47;1258:78;1331:4;1322:6;1258:78;:::i;:::-;1250:86;;1030:313;;;;:::o;1430:117::-;1539:1;1536;1529:12;1676:126;1713:7;1753:42;1746:5;1742:54;1731:65;;1676:126;;;:::o;1808:96::-;1845:7;1874:24;1892:5;1874:24;:::i;:::-;1863:35;;1808:96;;;:::o;1910:122::-;1983:24;2001:5;1983:24;:::i;:::-;1976:5;1973:35;1963:63;;2022:1;2019;2012:12;1963:63;1910:122;:::o;2038:139::-;2084:5;2122:6;2109:20;2100:29;;2138:33;2165:5;2138:33;:::i;:::-;2038:139;;;;:::o;2183:77::-;2220:7;2249:5;2238:16;;2183:77;;;:::o;2266:122::-;2339:24;2357:5;2339:24;:::i;:::-;2332:5;2329:35;2319:63;;2378:1;2375;2368:12;2319:63;2266:122;:::o;2394:139::-;2440:5;2478:6;2465:20;2456:29;;2494:33;2521:5;2494:33;:::i;:::-;2394:139;;;;:::o;2539:474::-;2607:6;2615;2664:2;2652:9;2643:7;2639:23;2635:32;2632:119;;;2670:79;;:::i;:::-;2632:119;2790:1;2815:53;2860:7;2851:6;2840:9;2836:22;2815:53;:::i;:::-;2805:63;;2761:117;2917:2;2943:53;2988:7;2979:6;2968:9;2964:22;2943:53;:::i;:::-;2933:63;;2888:118;2539:474;;;;;:::o;3019:90::-;3053:7;3096:5;3089:13;3082:21;3071:32;;3019:90;;;:::o;3115:109::-;3196:21;3211:5;3196:21;:::i;:::-;3191:3;3184:34;3115:109;;:::o;3230:210::-;3317:4;3355:2;3344:9;3340:18;3332:26;;3368:65;3430:1;3419:9;3415:17;3406:6;3368:65;:::i;:::-;3230:210;;;;:::o;3446:118::-;3533:24;3551:5;3533:24;:::i;:::-;3528:3;3521:37;3446:118;;:::o;3570:222::-;3663:4;3701:2;3690:9;3686:18;3678:26;;3714:71;3782:1;3771:9;3767:17;3758:6;3714:71;:::i;:::-;3570:222;;;;:::o;3798:619::-;3875:6;3883;3891;3940:2;3928:9;3919:7;3915:23;3911:32;3908:119;;;3946:79;;:::i;:::-;3908:119;4066:1;4091:53;4136:7;4127:6;4116:9;4112:22;4091:53;:::i;:::-;4081:63;;4037:117;4193:2;4219:53;4264:7;4255:6;4244:9;4240:22;4219:53;:::i;:::-;4209:63;;4164:118;4321:2;4347:53;4392:7;4383:6;4372:9;4368:22;4347:53;:::i;:::-;4337:63;;4292:118;3798:619;;;;;:::o;4423:86::-;4458:7;4498:4;4491:5;4487:16;4476:27;;4423:86;;;:::o;4515:112::-;4598:22;4614:5;4598:22;:::i;:::-;4593:3;4586:35;4515:112;;:::o;4633:214::-;4722:4;4760:2;4749:9;4745:18;4737:26;;4773:67;4837:1;4826:9;4822:17;4813:6;4773:67;:::i;:::-;4633:214;;;;:::o;4853:329::-;4912:6;4961:2;4949:9;4940:7;4936:23;4932:32;4929:119;;;4967:79;;:::i;:::-;4929:119;5087:1;5112:53;5157:7;5148:6;5137:9;5133:22;5112:53;:::i;:::-;5102:63;;5058:117;4853:329;;;;:::o;5188:::-;5247:6;5296:2;5284:9;5275:7;5271:23;5267:32;5264:119;;;5302:79;;:::i;:::-;5264:119;5422:1;5447:53;5492:7;5483:6;5472:9;5468:22;5447:53;:::i;:::-;5437:63;;5393:117;5188:329;;;;:::o;5523:118::-;5610:24;5628:5;5610:24;:::i;:::-;5605:3;5598:37;5523:118;;:::o;5647:222::-;5740:4;5778:2;5767:9;5763:18;5755:26;;5791:71;5859:1;5848:9;5844:17;5835:6;5791:71;:::i;:::-;5647:222;;;;:::o;5875:474::-;5943:6;5951;6000:2;5988:9;5979:7;5975:23;5971:32;5968:119;;;6006:79;;:::i;:::-;5968:119;6126:1;6151:53;6196:7;6187:6;6176:9;6172:22;6151:53;:::i;:::-;6141:63;;6097:117;6253:2;6279:53;6324:7;6315:6;6304:9;6300:22;6279:53;:::i;:::-;6269:63;;6224:118;5875:474;;;;;:::o;6355:116::-;6425:21;6440:5;6425:21;:::i;:::-;6418:5;6415:32;6405:60;;6461:1;6458;6451:12;6405:60;6355:116;:::o;6477:133::-;6520:5;6558:6;6545:20;6536:29;;6574:30;6598:5;6574:30;:::i;:::-;6477:133;;;;:::o;6616:468::-;6681:6;6689;6738:2;6726:9;6717:7;6713:23;6709:32;6706:119;;;6744:79;;:::i;:::-;6706:119;6864:1;6889:53;6934:7;6925:6;6914:9;6910:22;6889:53;:::i;:::-;6879:63;;6835:117;6991:2;7017:50;7059:7;7050:6;7039:9;7035:22;7017:50;:::i;:::-;7007:60;;6962:115;6616:468;;;;;:::o;7090:180::-;7138:77;7135:1;7128:88;7235:4;7232:1;7225:15;7259:4;7256:1;7249:15;7276:320;7320:6;7357:1;7351:4;7347:12;7337:22;;7404:1;7398:4;7394:12;7425:18;7415:81;;7481:4;7473:6;7469:17;7459:27;;7415:81;7543:2;7535:6;7532:14;7512:18;7509:38;7506:84;;7562:18;;:::i;:::-;7506:84;7327:269;7276:320;;;:::o;7602:180::-;7650:77;7647:1;7640:88;7747:4;7744:1;7737:15;7771:4;7768:1;7761:15;7788:191;7828:3;7847:20;7865:1;7847:20;:::i;:::-;7842:25;;7881:20;7899:1;7881:20;:::i;:::-;7876:25;;7924:1;7921;7917:9;7910:16;;7945:3;7942:1;7939:10;7936:36;;;7952:18;;:::i;:::-;7936:36;7788:191;;;;:::o;7985:224::-;8125:34;8121:1;8113:6;8109:14;8102:58;8194:7;8189:2;8181:6;8177:15;8170:32;7985:224;:::o;8215:366::-;8357:3;8378:67;8442:2;8437:3;8378:67;:::i;:::-;8371:74;;8454:93;8543:3;8454:93;:::i;:::-;8572:2;8567:3;8563:12;8556:19;;8215:366;;;:::o;8587:419::-;8753:4;8791:2;8780:9;8776:18;8768:26;;8840:9;8834:4;8830:20;8826:1;8815:9;8811:17;8804:47;8868:131;8994:4;8868:131;:::i;:::-;8860:139;;8587:419;;;:::o;9012:225::-;9152:34;9148:1;9140:6;9136:14;9129:58;9221:8;9216:2;9208:6;9204:15;9197:33;9012:225;:::o;9243:366::-;9385:3;9406:67;9470:2;9465:3;9406:67;:::i;:::-;9399:74;;9482:93;9571:3;9482:93;:::i;:::-;9600:2;9595:3;9591:12;9584:19;;9243:366;;;:::o;9615:419::-;9781:4;9819:2;9808:9;9804:18;9796:26;;9868:9;9862:4;9858:20;9854:1;9843:9;9839:17;9832:47;9896:131;10022:4;9896:131;:::i;:::-;9888:139;;9615:419;;;:::o;10040:223::-;10180:34;10176:1;10168:6;10164:14;10157:58;10249:6;10244:2;10236:6;10232:15;10225:31;10040:223;:::o;10269:366::-;10411:3;10432:67;10496:2;10491:3;10432:67;:::i;:::-;10425:74;;10508:93;10597:3;10508:93;:::i;:::-;10626:2;10621:3;10617:12;10610:19;;10269:366;;;:::o;10641:419::-;10807:4;10845:2;10834:9;10830:18;10822:26;;10894:9;10888:4;10884:20;10880:1;10869:9;10865:17;10858:47;10922:131;11048:4;10922:131;:::i;:::-;10914:139;;10641:419;;;:::o;11066:221::-;11206:34;11202:1;11194:6;11190:14;11183:58;11275:4;11270:2;11262:6;11258:15;11251:29;11066:221;:::o;11293:366::-;11435:3;11456:67;11520:2;11515:3;11456:67;:::i;:::-;11449:74;;11532:93;11621:3;11532:93;:::i;:::-;11650:2;11645:3;11641:12;11634:19;;11293:366;;;:::o;11665:419::-;11831:4;11869:2;11858:9;11854:18;11846:26;;11918:9;11912:4;11908:20;11904:1;11893:9;11889:17;11882:47;11946:131;12072:4;11946:131;:::i;:::-;11938:139;;11665:419;;;:::o;12090:179::-;12230:31;12226:1;12218:6;12214:14;12207:55;12090:179;:::o;12275:366::-;12417:3;12438:67;12502:2;12497:3;12438:67;:::i;:::-;12431:74;;12514:93;12603:3;12514:93;:::i;:::-;12632:2;12627:3;12623:12;12616:19;;12275:366;;;:::o;12647:419::-;12813:4;12851:2;12840:9;12836:18;12828:26;;12900:9;12894:4;12890:20;12886:1;12875:9;12871:17;12864:47;12928:131;13054:4;12928:131;:::i;:::-;12920:139;;12647:419;;;:::o;13072:224::-;13212:34;13208:1;13200:6;13196:14;13189:58;13281:7;13276:2;13268:6;13264:15;13257:32;13072:224;:::o;13302:366::-;13444:3;13465:67;13529:2;13524:3;13465:67;:::i;:::-;13458:74;;13541:93;13630:3;13541:93;:::i;:::-;13659:2;13654:3;13650:12;13643:19;;13302:366;;;:::o;13674:419::-;13840:4;13878:2;13867:9;13863:18;13855:26;;13927:9;13921:4;13917:20;13913:1;13902:9;13898:17;13891:47;13955:131;14081:4;13955:131;:::i;:::-;13947:139;;13674:419;;;:::o;14099:222::-;14239:34;14235:1;14227:6;14223:14;14216:58;14308:5;14303:2;14295:6;14291:15;14284:30;14099:222;:::o;14327:366::-;14469:3;14490:67;14554:2;14549:3;14490:67;:::i;:::-;14483:74;;14566:93;14655:3;14566:93;:::i;:::-;14684:2;14679:3;14675:12;14668:19;;14327:366;;;:::o;14699:419::-;14865:4;14903:2;14892:9;14888:18;14880:26;;14952:9;14946:4;14942:20;14938:1;14927:9;14923:17;14916:47;14980:131;15106:4;14980:131;:::i;:::-;14972:139;;14699:419;;;:::o;15124:225::-;15264:34;15260:1;15252:6;15248:14;15241:58;15333:8;15328:2;15320:6;15316:15;15309:33;15124:225;:::o;15355:366::-;15497:3;15518:67;15582:2;15577:3;15518:67;:::i;:::-;15511:74;;15594:93;15683:3;15594:93;:::i;:::-;15712:2;15707:3;15703:12;15696:19;;15355:366;;;:::o;15727:419::-;15893:4;15931:2;15920:9;15916:18;15908:26;;15980:9;15974:4;15970:20;15966:1;15955:9;15951:17;15944:47;16008:131;16134:4;16008:131;:::i;:::-;16000:139;;15727:419;;;:::o;16152:220::-;16292:34;16288:1;16280:6;16276:14;16269:58;16361:3;16356:2;16348:6;16344:15;16337:28;16152:220;:::o;16378:366::-;16520:3;16541:67;16605:2;16600:3;16541:67;:::i;:::-;16534:74;;16617:93;16706:3;16617:93;:::i;:::-;16735:2;16730:3;16726:12;16719:19;;16378:366;;;:::o;16750:419::-;16916:4;16954:2;16943:9;16939:18;16931:26;;17003:9;16997:4;16993:20;16989:1;16978:9;16974:17;16967:47;17031:131;17157:4;17031:131;:::i;:::-;17023:139;;16750:419;;;:::o;17175:221::-;17315:34;17311:1;17303:6;17299:14;17292:58;17384:4;17379:2;17371:6;17367:15;17360:29;17175:221;:::o;17402:366::-;17544:3;17565:67;17629:2;17624:3;17565:67;:::i;:::-;17558:74;;17641:93;17730:3;17641:93;:::i;:::-;17759:2;17754:3;17750:12;17743:19;;17402:366;;;:::o;17774:419::-;17940:4;17978:2;17967:9;17963:18;17955:26;;18027:9;18021:4;18017:20;18013:1;18002:9;17998:17;17991:47;18055:131;18181:4;18055:131;:::i;:::-;18047:139;;17774:419;;;:::o;18199:182::-;18339:34;18335:1;18327:6;18323:14;18316:58;18199:182;:::o;18387:366::-;18529:3;18550:67;18614:2;18609:3;18550:67;:::i;:::-;18543:74;;18626:93;18715:3;18626:93;:::i;:::-;18744:2;18739:3;18735:12;18728:19;;18387:366;;;:::o;18759:419::-;18925:4;18963:2;18952:9;18948:18;18940:26;;19012:9;19006:4;19002:20;18998:1;18987:9;18983:17;18976:47;19040:131;19166:4;19040:131;:::i;:::-;19032:139;;18759:419;;;:::o

Swarm Source

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