ETH Price: $3,380.32 (-1.94%)
Gas: 4 Gwei

Token

RED PILL (RPILL)
 

Overview

Max Total Supply

1,000,000,000,000 RPILL

Holders

3,189

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
14,987,229.533525749402699525 RPILL

Value
$0.00
0xde6815d0695dbc303db571598064ed4bf7d3ed2a
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:
RedPillToken

Compiler Version
v0.8.22+commit.4fc1097e

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-10-31
*/

// SPDX-License-Identifier: MIT
// File: @openzeppelin/[email protected]/interfaces/draft-IERC6093.sol


// OpenZeppelin Contracts (last updated v5.0.0) (interfaces/draft-IERC6093.sol)
pragma solidity ^0.8.20;

/**
 * @dev Standard ERC20 Errors
 * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC20 tokens.
 */
interface IERC20Errors {
    /**
     * @dev Indicates an error related to the current `balance` of a `sender`. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     * @param balance Current balance for the interacting account.
     * @param needed Minimum amount required to perform a transfer.
     */
    error ERC20InsufficientBalance(address sender, uint256 balance, uint256 needed);

    /**
     * @dev Indicates a failure with the token `sender`. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     */
    error ERC20InvalidSender(address sender);

    /**
     * @dev Indicates a failure with the token `receiver`. Used in transfers.
     * @param receiver Address to which tokens are being transferred.
     */
    error ERC20InvalidReceiver(address receiver);

    /**
     * @dev Indicates a failure with the `spender`’s `allowance`. Used in transfers.
     * @param spender Address that may be allowed to operate on tokens without being their owner.
     * @param allowance Amount of tokens a `spender` is allowed to operate with.
     * @param needed Minimum amount required to perform a transfer.
     */
    error ERC20InsufficientAllowance(address spender, uint256 allowance, uint256 needed);

    /**
     * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals.
     * @param approver Address initiating an approval operation.
     */
    error ERC20InvalidApprover(address approver);

    /**
     * @dev Indicates a failure with the `spender` to be approved. Used in approvals.
     * @param spender Address that may be allowed to operate on tokens without being their owner.
     */
    error ERC20InvalidSpender(address spender);
}

/**
 * @dev Standard ERC721 Errors
 * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC721 tokens.
 */
interface IERC721Errors {
    /**
     * @dev Indicates that an address can't be an owner. For example, `address(0)` is a forbidden owner in EIP-20.
     * Used in balance queries.
     * @param owner Address of the current owner of a token.
     */
    error ERC721InvalidOwner(address owner);

    /**
     * @dev Indicates a `tokenId` whose `owner` is the zero address.
     * @param tokenId Identifier number of a token.
     */
    error ERC721NonexistentToken(uint256 tokenId);

    /**
     * @dev Indicates an error related to the ownership over a particular token. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     * @param tokenId Identifier number of a token.
     * @param owner Address of the current owner of a token.
     */
    error ERC721IncorrectOwner(address sender, uint256 tokenId, address owner);

    /**
     * @dev Indicates a failure with the token `sender`. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     */
    error ERC721InvalidSender(address sender);

    /**
     * @dev Indicates a failure with the token `receiver`. Used in transfers.
     * @param receiver Address to which tokens are being transferred.
     */
    error ERC721InvalidReceiver(address receiver);

    /**
     * @dev Indicates a failure with the `operator`’s approval. Used in transfers.
     * @param operator Address that may be allowed to operate on tokens without being their owner.
     * @param tokenId Identifier number of a token.
     */
    error ERC721InsufficientApproval(address operator, uint256 tokenId);

    /**
     * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals.
     * @param approver Address initiating an approval operation.
     */
    error ERC721InvalidApprover(address approver);

    /**
     * @dev Indicates a failure with the `operator` to be approved. Used in approvals.
     * @param operator Address that may be allowed to operate on tokens without being their owner.
     */
    error ERC721InvalidOperator(address operator);
}

/**
 * @dev Standard ERC1155 Errors
 * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC1155 tokens.
 */
interface IERC1155Errors {
    /**
     * @dev Indicates an error related to the current `balance` of a `sender`. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     * @param balance Current balance for the interacting account.
     * @param needed Minimum amount required to perform a transfer.
     * @param tokenId Identifier number of a token.
     */
    error ERC1155InsufficientBalance(address sender, uint256 balance, uint256 needed, uint256 tokenId);

    /**
     * @dev Indicates a failure with the token `sender`. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     */
    error ERC1155InvalidSender(address sender);

    /**
     * @dev Indicates a failure with the token `receiver`. Used in transfers.
     * @param receiver Address to which tokens are being transferred.
     */
    error ERC1155InvalidReceiver(address receiver);

    /**
     * @dev Indicates a failure with the `operator`’s approval. Used in transfers.
     * @param operator Address that may be allowed to operate on tokens without being their owner.
     * @param owner Address of the current owner of a token.
     */
    error ERC1155MissingApprovalForAll(address operator, address owner);

    /**
     * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals.
     * @param approver Address initiating an approval operation.
     */
    error ERC1155InvalidApprover(address approver);

    /**
     * @dev Indicates a failure with the `operator` to be approved. Used in approvals.
     * @param operator Address that may be allowed to operate on tokens without being their owner.
     */
    error ERC1155InvalidOperator(address operator);

    /**
     * @dev Indicates an array length mismatch between ids and values in a safeBatchTransferFrom operation.
     * Used in batch transfers.
     * @param idsLength Length of the array of token identifiers
     * @param valuesLength Length of the array of token amounts
     */
    error ERC1155InvalidArrayLength(uint256 idsLength, uint256 valuesLength);
}

// File: @openzeppelin/[email protected]/utils/Context.sol


// OpenZeppelin Contracts (last updated v5.0.0) (utils/Context.sol)

pragma solidity ^0.8.20;

/**
 * @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/[email protected]/access/Ownable.sol


// OpenZeppelin Contracts (last updated v5.0.0) (access/Ownable.sol)

pragma solidity ^0.8.20;


/**
 * @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.
 *
 * The initial owner is set to the address provided by the deployer. 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;

    /**
     * @dev The caller account is not authorized to perform an operation.
     */
    error OwnableUnauthorizedAccount(address account);

    /**
     * @dev The owner is not a valid owner account. (eg. `address(0)`)
     */
    error OwnableInvalidOwner(address owner);

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

    /**
     * @dev Initializes the contract setting the address provided by the deployer as the initial owner.
     */
    constructor(address initialOwner) {
        if (initialOwner == address(0)) {
            revert OwnableInvalidOwner(address(0));
        }
        _transferOwnership(initialOwner);
    }

    /**
     * @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 {
        if (owner() != _msgSender()) {
            revert OwnableUnauthorizedAccount(_msgSender());
        }
    }

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby disabling 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 {
        if (newOwner == address(0)) {
            revert OwnableInvalidOwner(address(0));
        }
        _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: @openzeppelin/[email protected]/token/ERC20/IERC20.sol


// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.20;

/**
 * @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 value of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

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

    /**
     * @dev Moves a `value` amount of 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 value) 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 a `value` amount of tokens 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 value) external returns (bool);

    /**
     * @dev Moves a `value` amount of tokens from `from` to `to` using the
     * allowance mechanism. `value` 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 value) external returns (bool);
}

// File: @openzeppelin/[email protected]/token/ERC20/extensions/IERC20Metadata.sol


// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/extensions/IERC20Metadata.sol)

pragma solidity ^0.8.20;


/**
 * @dev Interface for the optional metadata functions from the ERC20 standard.
 */
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/[email protected]/token/ERC20/ERC20.sol


// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/ERC20.sol)

pragma solidity ^0.8.20;





/**
 * @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}.
 *
 * 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].
 *
 * The default value of {decimals} is 18. To change this, you should override
 * this function so it returns a different value.
 *
 * 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.
 */
abstract contract ERC20 is Context, IERC20, IERC20Metadata, IERC20Errors {
    mapping(address account => uint256) private _balances;

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * 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 returns (string memory) {
        return _name;
    }

    /**
     * @dev Returns the symbol of the token, usually a shorter version of the
     * name.
     */
    function symbol() public view virtual 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 default value returned by this function, unless
     * it's 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 returns (uint8) {
        return 18;
    }

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

    /**
     * @dev See {IERC20-balanceOf}.
     */
    function balanceOf(address account) public view virtual 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 `value`.
     */
    function transfer(address to, uint256 value) public virtual returns (bool) {
        address owner = _msgSender();
        _transfer(owner, to, value);
        return true;
    }

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

    /**
     * @dev See {IERC20-approve}.
     *
     * NOTE: If `value` 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 value) public virtual returns (bool) {
        address owner = _msgSender();
        _approve(owner, spender, value);
        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 `value`.
     * - the caller must have allowance for ``from``'s tokens of at least
     * `value`.
     */
    function transferFrom(address from, address to, uint256 value) public virtual returns (bool) {
        address spender = _msgSender();
        _spendAllowance(from, spender, value);
        _transfer(from, to, value);
        return true;
    }

    /**
     * @dev Moves a `value` 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.
     *
     * NOTE: This function is not virtual, {_update} should be overridden instead.
     */
    function _transfer(address from, address to, uint256 value) internal {
        if (from == address(0)) {
            revert ERC20InvalidSender(address(0));
        }
        if (to == address(0)) {
            revert ERC20InvalidReceiver(address(0));
        }
        _update(from, to, value);
    }

    /**
     * @dev Transfers a `value` amount of tokens from `from` to `to`, or alternatively mints (or burns) if `from`
     * (or `to`) is the zero address. All customizations to transfers, mints, and burns should be done by overriding
     * this function.
     *
     * Emits a {Transfer} event.
     */
    function _update(address from, address to, uint256 value) internal virtual {
        if (from == address(0)) {
            // Overflow check required: The rest of the code assumes that totalSupply never overflows
            _totalSupply += value;
        } else {
            uint256 fromBalance = _balances[from];
            if (fromBalance < value) {
                revert ERC20InsufficientBalance(from, fromBalance, value);
            }
            unchecked {
                // Overflow not possible: value <= fromBalance <= totalSupply.
                _balances[from] = fromBalance - value;
            }
        }

        if (to == address(0)) {
            unchecked {
                // Overflow not possible: value <= totalSupply or value <= fromBalance <= totalSupply.
                _totalSupply -= value;
            }
        } else {
            unchecked {
                // Overflow not possible: balance + value is at most totalSupply, which we know fits into a uint256.
                _balances[to] += value;
            }
        }

        emit Transfer(from, to, value);
    }

    /**
     * @dev Creates a `value` amount of tokens and assigns them to `account`, by transferring it from address(0).
     * Relies on the `_update` mechanism
     *
     * Emits a {Transfer} event with `from` set to the zero address.
     *
     * NOTE: This function is not virtual, {_update} should be overridden instead.
     */
    function _mint(address account, uint256 value) internal {
        if (account == address(0)) {
            revert ERC20InvalidReceiver(address(0));
        }
        _update(address(0), account, value);
    }

    /**
     * @dev Destroys a `value` amount of tokens from `account`, lowering the total supply.
     * Relies on the `_update` mechanism.
     *
     * Emits a {Transfer} event with `to` set to the zero address.
     *
     * NOTE: This function is not virtual, {_update} should be overridden instead
     */
    function _burn(address account, uint256 value) internal {
        if (account == address(0)) {
            revert ERC20InvalidSender(address(0));
        }
        _update(account, address(0), value);
    }

    /**
     * @dev Sets `value` 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.
     *
     * Overrides to this logic should be done to the variant with an additional `bool emitEvent` argument.
     */
    function _approve(address owner, address spender, uint256 value) internal {
        _approve(owner, spender, value, true);
    }

    /**
     * @dev Variant of {_approve} with an optional flag to enable or disable the {Approval} event.
     *
     * By default (when calling {_approve}) the flag is set to true. On the other hand, approval changes made by
     * `_spendAllowance` during the `transferFrom` operation set the flag to false. This saves gas by not emitting any
     * `Approval` event during `transferFrom` operations.
     *
     * Anyone who wishes to continue emitting `Approval` events on the`transferFrom` operation can force the flag to
     * true using the following override:
     * ```
     * function _approve(address owner, address spender, uint256 value, bool) internal virtual override {
     *     super._approve(owner, spender, value, true);
     * }
     * ```
     *
     * Requirements are the same as {_approve}.
     */
    function _approve(address owner, address spender, uint256 value, bool emitEvent) internal virtual {
        if (owner == address(0)) {
            revert ERC20InvalidApprover(address(0));
        }
        if (spender == address(0)) {
            revert ERC20InvalidSpender(address(0));
        }
        _allowances[owner][spender] = value;
        if (emitEvent) {
            emit Approval(owner, spender, value);
        }
    }

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

// File: contract-RPILL.sol


pragma solidity ^0.8.20;



contract RedPillToken is ERC20, Ownable {
    mapping(address => bool) private isBlacklisted;
    address public blacklistManager;
    address public unblacklistManager;

    modifier onlyBlacklistManager() {
        require(msg.sender == blacklistManager, "Not authorized");
        _;
    }

    modifier onlyUnblacklistManager() {
        require(msg.sender == unblacklistManager, "Not authorized");
        _;
    }

    constructor(address initialOwner)
        ERC20("RED PILL", "RPILL")
        Ownable(initialOwner)
    {
        _mint(msg.sender, 1000000000000 * 10 ** decimals());
        blacklistManager = msg.sender;
        unblacklistManager = msg.sender;
    }

    function setBlacklistManager(address _manager) public onlyBlacklistManager {
        require(blacklistManager != address(0), "Blacklist manager cannot be changed after set to address(0)");
        blacklistManager = _manager;
    }

    function setUnblacklistManager(address _manager) public onlyUnblacklistManager {
        require(unblacklistManager != address(0), "Unblacklist manager cannot be changed after set to address(0)");
        unblacklistManager = _manager;
    }

    function addToBlacklist(address account) public onlyBlacklistManager {
        isBlacklisted[account] = true;
    }

    function removeFromBlacklist(address account) public onlyUnblacklistManager {
        isBlacklisted[account] = false;
    }

    function isBlacklistedAddress(address account) public view returns (bool) {
        return isBlacklisted[account];
    }

    function transfer(address recipient, uint256 amount) public override returns (bool) {
        require(!isBlacklisted[msg.sender], "Sender is blacklisted");
        require(!isBlacklisted[recipient], "Recipient is blacklisted");
        return super.transfer(recipient, amount);
    }

    function renounceBlacklist() public onlyBlacklistManager {
        blacklistManager = address(0);
    }

    function renounceUnblacklist() public onlyUnblacklistManager {
        unblacklistManager = address(0);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"initialOwner","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"allowance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientAllowance","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"uint256","name":"balance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientBalance","type":"error"},{"inputs":[{"internalType":"address","name":"approver","type":"address"}],"name":"ERC20InvalidApprover","type":"error"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"}],"name":"ERC20InvalidReceiver","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"}],"name":"ERC20InvalidSender","type":"error"},{"inputs":[{"internalType":"address","name":"spender","type":"address"}],"name":"ERC20InvalidSpender","type":"error"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"OwnableInvalidOwner","type":"error"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"OwnableUnauthorizedAccount","type":"error"},{"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":"account","type":"address"}],"name":"addToBlacklist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"value","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":[],"name":"blacklistManager","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isBlacklistedAddress","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"removeFromBlacklist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceBlacklist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceUnblacklist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_manager","type":"address"}],"name":"setBlacklistManager","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_manager","type":"address"}],"name":"setUnblacklistManager","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unblacklistManager","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"}]

608060405234801562000010575f80fd5b506040516200288e3803806200288e8339818101604052810190620000369190620005f4565b806040518060400160405280600881526020017f5245442050494c4c0000000000000000000000000000000000000000000000008152506040518060400160405280600581526020017f5250494c4c0000000000000000000000000000000000000000000000000000008152508160039081620000b4919062000888565b508060049081620000c6919062000888565b5050505f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036200013c575f6040517f1e4fbdf70000000000000000000000000000000000000000000000000000000081526004016200013391906200097d565b60405180910390fd5b6200014d816200021660201b60201c565b506200018f3362000163620002d960201b60201c565b600a62000171919062000b21565b64e8d4a5100062000183919062000b71565b620002e160201b60201c565b3360075f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055503360085f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505062000c5c565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f6012905090565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000354575f6040517fec442f050000000000000000000000000000000000000000000000000000000081526004016200034b91906200097d565b60405180910390fd5b620003675f83836200036b60201b60201c565b5050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603620003bf578060025f828254620003b2919062000bbb565b9250508190555062000490565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050818110156200044b578381836040517fe450d38c000000000000000000000000000000000000000000000000000000008152600401620004429392919062000c06565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550505b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603620004d9578060025f828254039250508190555062000523565b805f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000582919062000c41565b60405180910390a3505050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f620005be8262000593565b9050919050565b620005d081620005b2565b8114620005db575f80fd5b50565b5f81519050620005ee81620005c5565b92915050565b5f602082840312156200060c576200060b6200058f565b5b5f6200061b84828501620005de565b91505092915050565b5f81519050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f6002820490506001821680620006a057607f821691505b602082108103620006b657620006b56200065b565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f600883026200071a7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82620006dd565b620007268683620006dd565b95508019841693508086168417925050509392505050565b5f819050919050565b5f819050919050565b5f620007706200076a62000764846200073e565b62000747565b6200073e565b9050919050565b5f819050919050565b6200078b8362000750565b620007a36200079a8262000777565b848454620006e9565b825550505050565b5f90565b620007b9620007ab565b620007c681848462000780565b505050565b5b81811015620007ed57620007e15f82620007af565b600181019050620007cc565b5050565b601f8211156200083c576200080681620006bc565b6200081184620006ce565b8101602085101562000821578190505b620008396200083085620006ce565b830182620007cb565b50505b505050565b5f82821c905092915050565b5f6200085e5f198460080262000841565b1980831691505092915050565b5f6200087883836200084d565b9150826002028217905092915050565b620008938262000624565b67ffffffffffffffff811115620008af57620008ae6200062e565b5b620008bb825462000688565b620008c8828285620007f1565b5f60209050601f831160018114620008fe575f8415620008e9578287015190505b620008f585826200086b565b86555062000964565b601f1984166200090e86620006bc565b5f5b82811015620009375784890151825560018201915060208501945060208101905062000910565b8683101562000957578489015162000953601f8916826200084d565b8355505b6001600288020188555050505b505050505050565b6200097781620005b2565b82525050565b5f602082019050620009925f8301846200096c565b92915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f8160011c9050919050565b5f808291508390505b600185111562000a2257808604811115620009fa57620009f962000998565b5b600185161562000a0a5780820291505b808102905062000a1a85620009c5565b9450620009da565b94509492505050565b5f8262000a3c576001905062000b0e565b8162000a4b575f905062000b0e565b816001811462000a64576002811462000a6f5762000aa5565b600191505062000b0e565b60ff84111562000a845762000a8362000998565b5b8360020a91508482111562000a9e5762000a9d62000998565b5b5062000b0e565b5060208310610133831016604e8410600b841016171562000adf5782820a90508381111562000ad95762000ad862000998565b5b62000b0e565b62000aee8484846001620009d1565b9250905081840481111562000b085762000b0762000998565b5b81810290505b9392505050565b5f60ff82169050919050565b5f62000b2d826200073e565b915062000b3a8362000b15565b925062000b697fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff848462000a2b565b905092915050565b5f62000b7d826200073e565b915062000b8a836200073e565b925082820262000b9a816200073e565b9150828204841483151762000bb45762000bb362000998565b5b5092915050565b5f62000bc7826200073e565b915062000bd4836200073e565b925082820190508082111562000bef5762000bee62000998565b5b92915050565b62000c00816200073e565b82525050565b5f60608201905062000c1b5f8301866200096c565b62000c2a602083018562000bf5565b62000c39604083018462000bf5565b949350505050565b5f60208201905062000c565f83018462000bf5565b92915050565b611c248062000c6a5f395ff3fe608060405234801561000f575f80fd5b5060043610610135575f3560e01c80635f189361116100b6578063a1b1106a1161007a578063a1b1106a14610315578063a56c62cf1461031f578063a9059cbb1461033b578063d9dbf6571461036b578063dd62ed3e14610389578063f2fde38b146103b957610135565b80635f1893611461029557806370a082311461029f578063715018a6146102cf5780638da5cb5b146102d957806395d89b41146102f757610135565b806323b872dd116100fd57806323b872dd146101f1578063313ce5671461022157806333886f7a1461023f57806344337ea11461025d578063537df3b61461027957610135565b806306fdde0314610139578063095ea7b3146101575780630bef0ec71461018757806310d5a77e146101b757806318160ddd146101d3575b5f80fd5b6101416103d5565b60405161014e9190611649565b60405180910390f35b610171600480360381019061016c91906116fa565b610465565b60405161017e9190611752565b60405180910390f35b6101a1600480360381019061019c919061176b565b610487565b6040516101ae9190611752565b60405180910390f35b6101d160048036038101906101cc919061176b565b6104d9565b005b6101db61063a565b6040516101e891906117a5565b60405180910390f35b61020b600480360381019061020691906117be565b610643565b6040516102189190611752565b60405180910390f35b610229610671565b6040516102369190611829565b60405180910390f35b610247610679565b6040516102549190611851565b60405180910390f35b6102776004803603810190610272919061176b565b61069e565b005b610293600480360381019061028e919061176b565b610785565b005b61029d61086b565b005b6102b960048036038101906102b4919061176b565b61093c565b6040516102c691906117a5565b60405180910390f35b6102d7610981565b005b6102e1610994565b6040516102ee9190611851565b60405180910390f35b6102ff6109bc565b60405161030c9190611649565b60405180910390f35b61031d610a4c565b005b6103396004803603810190610334919061176b565b610b1d565b005b610355600480360381019061035091906116fa565b610c7e565b6040516103629190611752565b60405180910390f35b610373610da5565b6040516103809190611851565b60405180910390f35b6103a3600480360381019061039e919061186a565b610dca565b6040516103b091906117a5565b60405180910390f35b6103d360048036038101906103ce919061176b565b610e4c565b005b6060600380546103e4906118d5565b80601f0160208091040260200160405190810160405280929190818152602001828054610410906118d5565b801561045b5780601f106104325761010080835404028352916020019161045b565b820191905f5260205f20905b81548152906001019060200180831161043e57829003601f168201915b5050505050905090565b5f8061046f610ed0565b905061047c818585610ed7565b600191505092915050565b5f60065f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff169050919050565b60085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610568576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161055f9061194f565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff1660085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16036105f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105ee906119dd565b60405180910390fd5b8060085f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b5f600254905090565b5f8061064d610ed0565b905061065a858285610ee9565b610665858585610f7b565b60019150509392505050565b5f6012905090565b60085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461072d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107249061194f565b60405180910390fd5b600160065f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff02191690831515021790555050565b60085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610814576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161080b9061194f565b60405180910390fd5b5f60065f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff02191690831515021790555050565b60075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146108fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108f19061194f565b60405180910390fd5b5f60075f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b61098961106b565b6109925f6110f2565b565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600480546109cb906118d5565b80601f01602080910402602001604051908101604052809291908181526020018280546109f7906118d5565b8015610a425780601f10610a1957610100808354040283529160200191610a42565b820191905f5260205f20905b815481529060010190602001808311610a2557829003601f168201915b5050505050905090565b60085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610adb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ad29061194f565b60405180910390fd5b5f60085f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b60075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610bac576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ba39061194f565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff1660075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1603610c3b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c3290611a6b565b60405180910390fd5b8060075f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b5f60065f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1615610d09576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d0090611ad3565b60405180910390fd5b60065f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1615610d93576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d8a90611b3b565b60405180910390fd5b610d9d83836111b5565b905092915050565b60075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b610e5461106b565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610ec4575f6040517f1e4fbdf7000000000000000000000000000000000000000000000000000000008152600401610ebb9190611851565b60405180910390fd5b610ecd816110f2565b50565b5f33905090565b610ee483838360016111d7565b505050565b5f610ef48484610dca565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610f755781811015610f66578281836040517ffb8f41b2000000000000000000000000000000000000000000000000000000008152600401610f5d93929190611b59565b60405180910390fd5b610f7484848484035f6111d7565b5b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610feb575f6040517f96c6fd1e000000000000000000000000000000000000000000000000000000008152600401610fe29190611851565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361105b575f6040517fec442f050000000000000000000000000000000000000000000000000000000081526004016110529190611851565b60405180910390fd5b6110668383836113a6565b505050565b611073610ed0565b73ffffffffffffffffffffffffffffffffffffffff16611091610994565b73ffffffffffffffffffffffffffffffffffffffff16146110f0576110b4610ed0565b6040517f118cdaa70000000000000000000000000000000000000000000000000000000081526004016110e79190611851565b60405180910390fd5b565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f806111bf610ed0565b90506111cc818585610f7b565b600191505092915050565b5f73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603611247575f6040517fe602df0500000000000000000000000000000000000000000000000000000000815260040161123e9190611851565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036112b7575f6040517f94280d620000000000000000000000000000000000000000000000000000000081526004016112ae9190611851565b60405180910390fd5b8160015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f208190555080156113a0578273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258460405161139791906117a5565b60405180910390a35b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036113f6578060025f8282546113ea9190611bbb565b925050819055506114c4565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205490508181101561147f578381836040517fe450d38c00000000000000000000000000000000000000000000000000000000815260040161147693929190611b59565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550505b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361150b578060025f8282540392505081905550611555565b805f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516115b291906117a5565b60405180910390a3505050565b5f81519050919050565b5f82825260208201905092915050565b5f5b838110156115f65780820151818401526020810190506115db565b5f8484015250505050565b5f601f19601f8301169050919050565b5f61161b826115bf565b61162581856115c9565b93506116358185602086016115d9565b61163e81611601565b840191505092915050565b5f6020820190508181035f8301526116618184611611565b905092915050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f6116968261166d565b9050919050565b6116a68161168c565b81146116b0575f80fd5b50565b5f813590506116c18161169d565b92915050565b5f819050919050565b6116d9816116c7565b81146116e3575f80fd5b50565b5f813590506116f4816116d0565b92915050565b5f80604083850312156117105761170f611669565b5b5f61171d858286016116b3565b925050602061172e858286016116e6565b9150509250929050565b5f8115159050919050565b61174c81611738565b82525050565b5f6020820190506117655f830184611743565b92915050565b5f602082840312156117805761177f611669565b5b5f61178d848285016116b3565b91505092915050565b61179f816116c7565b82525050565b5f6020820190506117b85f830184611796565b92915050565b5f805f606084860312156117d5576117d4611669565b5b5f6117e2868287016116b3565b93505060206117f3868287016116b3565b9250506040611804868287016116e6565b9150509250925092565b5f60ff82169050919050565b6118238161180e565b82525050565b5f60208201905061183c5f83018461181a565b92915050565b61184b8161168c565b82525050565b5f6020820190506118645f830184611842565b92915050565b5f80604083850312156118805761187f611669565b5b5f61188d858286016116b3565b925050602061189e858286016116b3565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f60028204905060018216806118ec57607f821691505b6020821081036118ff576118fe6118a8565b5b50919050565b7f4e6f7420617574686f72697a65640000000000000000000000000000000000005f82015250565b5f611939600e836115c9565b915061194482611905565b602082019050919050565b5f6020820190508181035f8301526119668161192d565b9050919050565b7f556e626c61636b6c697374206d616e616765722063616e6e6f742062652063685f8201527f616e6765642061667465722073657420746f2061646472657373283029000000602082015250565b5f6119c7603d836115c9565b91506119d28261196d565b604082019050919050565b5f6020820190508181035f8301526119f4816119bb565b9050919050565b7f426c61636b6c697374206d616e616765722063616e6e6f74206265206368616e5f8201527f6765642061667465722073657420746f20616464726573732830290000000000602082015250565b5f611a55603b836115c9565b9150611a60826119fb565b604082019050919050565b5f6020820190508181035f830152611a8281611a49565b9050919050565b7f53656e64657220697320626c61636b6c697374656400000000000000000000005f82015250565b5f611abd6015836115c9565b9150611ac882611a89565b602082019050919050565b5f6020820190508181035f830152611aea81611ab1565b9050919050565b7f526563697069656e7420697320626c61636b6c697374656400000000000000005f82015250565b5f611b256018836115c9565b9150611b3082611af1565b602082019050919050565b5f6020820190508181035f830152611b5281611b19565b9050919050565b5f606082019050611b6c5f830186611842565b611b796020830185611796565b611b866040830184611796565b949350505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f611bc5826116c7565b9150611bd0836116c7565b9250828201905080821115611be857611be7611b8e565b5b9291505056fea26469706673582212201ba97302672d03d538bae5555f41b161d30ecdc2786a3d97bdccea3bd3939e0364736f6c634300081600330000000000000000000000008f090d3cd657db526a505fe2a6385db06f6dac22

Deployed Bytecode

0x608060405234801561000f575f80fd5b5060043610610135575f3560e01c80635f189361116100b6578063a1b1106a1161007a578063a1b1106a14610315578063a56c62cf1461031f578063a9059cbb1461033b578063d9dbf6571461036b578063dd62ed3e14610389578063f2fde38b146103b957610135565b80635f1893611461029557806370a082311461029f578063715018a6146102cf5780638da5cb5b146102d957806395d89b41146102f757610135565b806323b872dd116100fd57806323b872dd146101f1578063313ce5671461022157806333886f7a1461023f57806344337ea11461025d578063537df3b61461027957610135565b806306fdde0314610139578063095ea7b3146101575780630bef0ec71461018757806310d5a77e146101b757806318160ddd146101d3575b5f80fd5b6101416103d5565b60405161014e9190611649565b60405180910390f35b610171600480360381019061016c91906116fa565b610465565b60405161017e9190611752565b60405180910390f35b6101a1600480360381019061019c919061176b565b610487565b6040516101ae9190611752565b60405180910390f35b6101d160048036038101906101cc919061176b565b6104d9565b005b6101db61063a565b6040516101e891906117a5565b60405180910390f35b61020b600480360381019061020691906117be565b610643565b6040516102189190611752565b60405180910390f35b610229610671565b6040516102369190611829565b60405180910390f35b610247610679565b6040516102549190611851565b60405180910390f35b6102776004803603810190610272919061176b565b61069e565b005b610293600480360381019061028e919061176b565b610785565b005b61029d61086b565b005b6102b960048036038101906102b4919061176b565b61093c565b6040516102c691906117a5565b60405180910390f35b6102d7610981565b005b6102e1610994565b6040516102ee9190611851565b60405180910390f35b6102ff6109bc565b60405161030c9190611649565b60405180910390f35b61031d610a4c565b005b6103396004803603810190610334919061176b565b610b1d565b005b610355600480360381019061035091906116fa565b610c7e565b6040516103629190611752565b60405180910390f35b610373610da5565b6040516103809190611851565b60405180910390f35b6103a3600480360381019061039e919061186a565b610dca565b6040516103b091906117a5565b60405180910390f35b6103d360048036038101906103ce919061176b565b610e4c565b005b6060600380546103e4906118d5565b80601f0160208091040260200160405190810160405280929190818152602001828054610410906118d5565b801561045b5780601f106104325761010080835404028352916020019161045b565b820191905f5260205f20905b81548152906001019060200180831161043e57829003601f168201915b5050505050905090565b5f8061046f610ed0565b905061047c818585610ed7565b600191505092915050565b5f60065f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff169050919050565b60085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610568576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161055f9061194f565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff1660085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16036105f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105ee906119dd565b60405180910390fd5b8060085f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b5f600254905090565b5f8061064d610ed0565b905061065a858285610ee9565b610665858585610f7b565b60019150509392505050565b5f6012905090565b60085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461072d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107249061194f565b60405180910390fd5b600160065f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff02191690831515021790555050565b60085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610814576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161080b9061194f565b60405180910390fd5b5f60065f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff02191690831515021790555050565b60075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146108fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108f19061194f565b60405180910390fd5b5f60075f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b61098961106b565b6109925f6110f2565b565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600480546109cb906118d5565b80601f01602080910402602001604051908101604052809291908181526020018280546109f7906118d5565b8015610a425780601f10610a1957610100808354040283529160200191610a42565b820191905f5260205f20905b815481529060010190602001808311610a2557829003601f168201915b5050505050905090565b60085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610adb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ad29061194f565b60405180910390fd5b5f60085f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b60075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610bac576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ba39061194f565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff1660075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1603610c3b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c3290611a6b565b60405180910390fd5b8060075f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b5f60065f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1615610d09576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d0090611ad3565b60405180910390fd5b60065f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1615610d93576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d8a90611b3b565b60405180910390fd5b610d9d83836111b5565b905092915050565b60075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b610e5461106b565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610ec4575f6040517f1e4fbdf7000000000000000000000000000000000000000000000000000000008152600401610ebb9190611851565b60405180910390fd5b610ecd816110f2565b50565b5f33905090565b610ee483838360016111d7565b505050565b5f610ef48484610dca565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610f755781811015610f66578281836040517ffb8f41b2000000000000000000000000000000000000000000000000000000008152600401610f5d93929190611b59565b60405180910390fd5b610f7484848484035f6111d7565b5b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610feb575f6040517f96c6fd1e000000000000000000000000000000000000000000000000000000008152600401610fe29190611851565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361105b575f6040517fec442f050000000000000000000000000000000000000000000000000000000081526004016110529190611851565b60405180910390fd5b6110668383836113a6565b505050565b611073610ed0565b73ffffffffffffffffffffffffffffffffffffffff16611091610994565b73ffffffffffffffffffffffffffffffffffffffff16146110f0576110b4610ed0565b6040517f118cdaa70000000000000000000000000000000000000000000000000000000081526004016110e79190611851565b60405180910390fd5b565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f806111bf610ed0565b90506111cc818585610f7b565b600191505092915050565b5f73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603611247575f6040517fe602df0500000000000000000000000000000000000000000000000000000000815260040161123e9190611851565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036112b7575f6040517f94280d620000000000000000000000000000000000000000000000000000000081526004016112ae9190611851565b60405180910390fd5b8160015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f208190555080156113a0578273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258460405161139791906117a5565b60405180910390a35b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036113f6578060025f8282546113ea9190611bbb565b925050819055506114c4565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205490508181101561147f578381836040517fe450d38c00000000000000000000000000000000000000000000000000000000815260040161147693929190611b59565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550505b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361150b578060025f8282540392505081905550611555565b805f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516115b291906117a5565b60405180910390a3505050565b5f81519050919050565b5f82825260208201905092915050565b5f5b838110156115f65780820151818401526020810190506115db565b5f8484015250505050565b5f601f19601f8301169050919050565b5f61161b826115bf565b61162581856115c9565b93506116358185602086016115d9565b61163e81611601565b840191505092915050565b5f6020820190508181035f8301526116618184611611565b905092915050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f6116968261166d565b9050919050565b6116a68161168c565b81146116b0575f80fd5b50565b5f813590506116c18161169d565b92915050565b5f819050919050565b6116d9816116c7565b81146116e3575f80fd5b50565b5f813590506116f4816116d0565b92915050565b5f80604083850312156117105761170f611669565b5b5f61171d858286016116b3565b925050602061172e858286016116e6565b9150509250929050565b5f8115159050919050565b61174c81611738565b82525050565b5f6020820190506117655f830184611743565b92915050565b5f602082840312156117805761177f611669565b5b5f61178d848285016116b3565b91505092915050565b61179f816116c7565b82525050565b5f6020820190506117b85f830184611796565b92915050565b5f805f606084860312156117d5576117d4611669565b5b5f6117e2868287016116b3565b93505060206117f3868287016116b3565b9250506040611804868287016116e6565b9150509250925092565b5f60ff82169050919050565b6118238161180e565b82525050565b5f60208201905061183c5f83018461181a565b92915050565b61184b8161168c565b82525050565b5f6020820190506118645f830184611842565b92915050565b5f80604083850312156118805761187f611669565b5b5f61188d858286016116b3565b925050602061189e858286016116b3565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f60028204905060018216806118ec57607f821691505b6020821081036118ff576118fe6118a8565b5b50919050565b7f4e6f7420617574686f72697a65640000000000000000000000000000000000005f82015250565b5f611939600e836115c9565b915061194482611905565b602082019050919050565b5f6020820190508181035f8301526119668161192d565b9050919050565b7f556e626c61636b6c697374206d616e616765722063616e6e6f742062652063685f8201527f616e6765642061667465722073657420746f2061646472657373283029000000602082015250565b5f6119c7603d836115c9565b91506119d28261196d565b604082019050919050565b5f6020820190508181035f8301526119f4816119bb565b9050919050565b7f426c61636b6c697374206d616e616765722063616e6e6f74206265206368616e5f8201527f6765642061667465722073657420746f20616464726573732830290000000000602082015250565b5f611a55603b836115c9565b9150611a60826119fb565b604082019050919050565b5f6020820190508181035f830152611a8281611a49565b9050919050565b7f53656e64657220697320626c61636b6c697374656400000000000000000000005f82015250565b5f611abd6015836115c9565b9150611ac882611a89565b602082019050919050565b5f6020820190508181035f830152611aea81611ab1565b9050919050565b7f526563697069656e7420697320626c61636b6c697374656400000000000000005f82015250565b5f611b256018836115c9565b9150611b3082611af1565b602082019050919050565b5f6020820190508181035f830152611b5281611b19565b9050919050565b5f606082019050611b6c5f830186611842565b611b796020830185611796565b611b866040830184611796565b949350505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f611bc5826116c7565b9150611bd0836116c7565b9250828201905080821115611be857611be7611b8e565b5b9291505056fea26469706673582212201ba97302672d03d538bae5555f41b161d30ecdc2786a3d97bdccea3bd3939e0364736f6c63430008160033

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

0000000000000000000000008f090d3cd657db526a505fe2a6385db06f6dac22

-----Decoded View---------------
Arg [0] : initialOwner (address): 0x8f090d3CD657db526A505Fe2A6385db06f6dAC22

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 0000000000000000000000008f090d3cd657db526a505fe2a6385db06f6dac22


Deployed Bytecode Sourcemap

25835:2110:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16440:91;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18733:190;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27293:122;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26783:244;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;17542:99;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19501:249;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17393:84;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25973:33;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27035:117;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;27160:125;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;27718:105;;;:::i;:::-;;17704:118;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10035:103;;;:::i;:::-;;9360:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16650:95;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27831:111;;;:::i;:::-;;26541:234;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;27423:287;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25935:31;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18272:142;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10293:220;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;16440:91;16485:13;16518:5;16511:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16440:91;:::o;18733:190::-;18806:4;18823:13;18839:12;:10;:12::i;:::-;18823:28;;18862:31;18871:5;18878:7;18887:5;18862:8;:31::i;:::-;18911:4;18904:11;;;18733:190;;;;:::o;27293:122::-;27361:4;27385:13;:22;27399:7;27385:22;;;;;;;;;;;;;;;;;;;;;;;;;27378:29;;27293:122;;;:::o;26783:244::-;26210:18;;;;;;;;;;;26196:32;;:10;:32;;;26188:59;;;;;;;;;;;;:::i;:::-;;;;;;;;;26911:1:::1;26881:32;;:18;;;;;;;;;;;:32;;::::0;26873:106:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;27011:8;26990:18;;:29;;;;;;;;;;;;;;;;;;26783:244:::0;:::o;17542:99::-;17594:7;17621:12;;17614:19;;17542:99;:::o;19501:249::-;19588:4;19605:15;19623:12;:10;:12::i;:::-;19605:30;;19646:37;19662:4;19668:7;19677:5;19646:15;:37::i;:::-;19694:26;19704:4;19710:2;19714:5;19694:9;:26::i;:::-;19738:4;19731:11;;;19501:249;;;;;:::o;17393:84::-;17442:5;17467:2;17460:9;;17393:84;:::o;25973:33::-;;;;;;;;;;;;;:::o;27035:117::-;26080:16;;;;;;;;;;;26066:30;;:10;:30;;;26058:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;27140:4:::1;27115:13;:22;27129:7;27115:22;;;;;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;27035:117:::0;:::o;27160:125::-;26210:18;;;;;;;;;;;26196:32;;:10;:32;;;26188:59;;;;;;;;;;;;:::i;:::-;;;;;;;;;27272:5:::1;27247:13;:22;27261:7;27247:22;;;;;;;;;;;;;;;;:30;;;;;;;;;;;;;;;;;;27160:125:::0;:::o;27718:105::-;26080:16;;;;;;;;;;;26066:30;;:10;:30;;;26058:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;27813:1:::1;27786:16;;:29;;;;;;;;;;;;;;;;;;27718:105::o:0;17704:118::-;17769:7;17796:9;:18;17806:7;17796:18;;;;;;;;;;;;;;;;17789:25;;17704:118;;;:::o;10035:103::-;9246:13;:11;:13::i;:::-;10100:30:::1;10127:1;10100:18;:30::i;:::-;10035:103::o:0;9360:87::-;9406:7;9433:6;;;;;;;;;;;9426:13;;9360:87;:::o;16650:95::-;16697:13;16730:7;16723:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16650:95;:::o;27831:111::-;26210:18;;;;;;;;;;;26196:32;;:10;:32;;;26188:59;;;;;;;;;;;;:::i;:::-;;;;;;;;;27932:1:::1;27903:18;;:31;;;;;;;;;;;;;;;;;;27831:111::o:0;26541:234::-;26080:16;;;;;;;;;;;26066:30;;:10;:30;;;26058:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;26663:1:::1;26635:30;;:16;;;;;;;;;;;:30;;::::0;26627:102:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;26759:8;26740:16;;:27;;;;;;;;;;;;;;;;;;26541:234:::0;:::o;27423:287::-;27501:4;27527:13;:25;27541:10;27527:25;;;;;;;;;;;;;;;;;;;;;;;;;27526:26;27518:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;27598:13;:24;27612:9;27598:24;;;;;;;;;;;;;;;;;;;;;;;;;27597:25;27589:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;27669:33;27684:9;27695:6;27669:14;:33::i;:::-;27662:40;;27423:287;;;;:::o;25935:31::-;;;;;;;;;;;;;:::o;18272:142::-;18352:7;18379:11;:18;18391:5;18379:18;;;;;;;;;;;;;;;:27;18398:7;18379:27;;;;;;;;;;;;;;;;18372:34;;18272:142;;;;:::o;10293:220::-;9246:13;:11;:13::i;:::-;10398:1:::1;10378:22;;:8;:22;;::::0;10374:93:::1;;10452:1;10424:31;;;;;;;;;;;:::i;:::-;;;;;;;;10374:93;10477:28;10496:8;10477:18;:28::i;:::-;10293:220:::0;:::o;7470:98::-;7523:7;7550:10;7543:17;;7470:98;:::o;23560:130::-;23645:37;23654:5;23661:7;23670:5;23677:4;23645:8;:37::i;:::-;23560:130;;;:::o;25276:487::-;25376:24;25403:25;25413:5;25420:7;25403:9;:25::i;:::-;25376:52;;25463:17;25443:16;:37;25439:317;;25520:5;25501:16;:24;25497:132;;;25580:7;25589:16;25607:5;25553:60;;;;;;;;;;;;;:::i;:::-;;;;;;;;25497:132;25672:57;25681:5;25688:7;25716:5;25697:16;:24;25723:5;25672:8;:57::i;:::-;25439:317;25365:398;25276:487;;;:::o;20135:308::-;20235:1;20219:18;;:4;:18;;;20215:88;;20288:1;20261:30;;;;;;;;;;;:::i;:::-;;;;;;;;20215:88;20331:1;20317:16;;:2;:16;;;20313:88;;20386:1;20357:32;;;;;;;;;;;:::i;:::-;;;;;;;;20313:88;20411:24;20419:4;20425:2;20429:5;20411:7;:24::i;:::-;20135:308;;;:::o;9525:166::-;9596:12;:10;:12::i;:::-;9585:23;;:7;:5;:7::i;:::-;:23;;;9581:103;;9659:12;:10;:12::i;:::-;9632:40;;;;;;;;;;;:::i;:::-;;;;;;;;9581:103;9525:166::o;10673:191::-;10747:16;10766:6;;;;;;;;;;;10747:25;;10792:8;10783:6;;:17;;;;;;;;;;;;;;;;;;10847:8;10816:40;;10837:8;10816:40;;;;;;;;;;;;10736:128;10673:191;:::o;18027:182::-;18096:4;18113:13;18129:12;:10;:12::i;:::-;18113:28;;18152:27;18162:5;18169:2;18173:5;18152:9;:27::i;:::-;18197:4;18190:11;;;18027:182;;;;:::o;24541:443::-;24671:1;24654:19;;:5;:19;;;24650:91;;24726:1;24697:32;;;;;;;;;;;:::i;:::-;;;;;;;;24650:91;24774:1;24755:21;;:7;:21;;;24751:92;;24828:1;24800:31;;;;;;;;;;;:::i;:::-;;;;;;;;24751:92;24883:5;24853:11;:18;24865:5;24853:18;;;;;;;;;;;;;;;:27;24872:7;24853:27;;;;;;;;;;;;;;;:35;;;;24903:9;24899:78;;;24950:7;24934:31;;24943:5;24934:31;;;24959:5;24934:31;;;;;;:::i;:::-;;;;;;;;24899:78;24541:443;;;;:::o;20767:1135::-;20873:1;20857:18;;:4;:18;;;20853:552;;21011:5;20995:12;;:21;;;;;;;:::i;:::-;;;;;;;;20853:552;;;21049:19;21071:9;:15;21081:4;21071:15;;;;;;;;;;;;;;;;21049:37;;21119:5;21105:11;:19;21101:117;;;21177:4;21183:11;21196:5;21152:50;;;;;;;;;;;;;:::i;:::-;;;;;;;;21101:117;21373:5;21359:11;:19;21341:9;:15;21351:4;21341:15;;;;;;;;;;;;;;;:37;;;;21034:371;20853:552;21435:1;21421:16;;:2;:16;;;21417:435;;21603:5;21587:12;;:21;;;;;;;;;;;21417:435;;;21820:5;21803:9;:13;21813:2;21803:13;;;;;;;;;;;;;;;;:22;;;;;;;;;;;21417:435;21884:2;21869:25;;21878:4;21869:25;;;21888:5;21869:25;;;;;;:::i;:::-;;;;;;;;20767:1135;;;:::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:329::-;3505:6;3554:2;3542:9;3533:7;3529:23;3525:32;3522:119;;;3560:79;;:::i;:::-;3522:119;3680:1;3705:53;3750:7;3741:6;3730:9;3726:22;3705:53;:::i;:::-;3695:63;;3651:117;3446:329;;;;:::o;3781:118::-;3868:24;3886:5;3868:24;:::i;:::-;3863:3;3856:37;3781:118;;:::o;3905:222::-;3998:4;4036:2;4025:9;4021:18;4013:26;;4049:71;4117:1;4106:9;4102:17;4093:6;4049:71;:::i;:::-;3905:222;;;;:::o;4133:619::-;4210:6;4218;4226;4275:2;4263:9;4254:7;4250:23;4246:32;4243:119;;;4281:79;;:::i;:::-;4243:119;4401:1;4426:53;4471:7;4462:6;4451:9;4447:22;4426:53;:::i;:::-;4416:63;;4372:117;4528:2;4554:53;4599:7;4590:6;4579:9;4575:22;4554:53;:::i;:::-;4544:63;;4499:118;4656:2;4682:53;4727:7;4718:6;4707:9;4703:22;4682:53;:::i;:::-;4672:63;;4627:118;4133:619;;;;;:::o;4758:86::-;4793:7;4833:4;4826:5;4822:16;4811:27;;4758:86;;;:::o;4850:112::-;4933:22;4949:5;4933:22;:::i;:::-;4928:3;4921:35;4850:112;;:::o;4968:214::-;5057:4;5095:2;5084:9;5080:18;5072:26;;5108:67;5172:1;5161:9;5157:17;5148:6;5108:67;:::i;:::-;4968:214;;;;:::o;5188:118::-;5275:24;5293:5;5275:24;:::i;:::-;5270:3;5263:37;5188:118;;:::o;5312:222::-;5405:4;5443:2;5432:9;5428:18;5420:26;;5456:71;5524:1;5513:9;5509:17;5500:6;5456:71;:::i;:::-;5312:222;;;;:::o;5540:474::-;5608:6;5616;5665:2;5653:9;5644:7;5640:23;5636:32;5633:119;;;5671:79;;:::i;:::-;5633:119;5791:1;5816:53;5861:7;5852:6;5841:9;5837:22;5816:53;:::i;:::-;5806:63;;5762:117;5918:2;5944:53;5989:7;5980:6;5969:9;5965:22;5944:53;:::i;:::-;5934:63;;5889:118;5540:474;;;;;:::o;6020:180::-;6068:77;6065:1;6058:88;6165:4;6162:1;6155:15;6189:4;6186:1;6179:15;6206:320;6250:6;6287:1;6281:4;6277:12;6267:22;;6334:1;6328:4;6324:12;6355:18;6345:81;;6411:4;6403:6;6399:17;6389:27;;6345:81;6473:2;6465:6;6462:14;6442:18;6439:38;6436:84;;6492:18;;:::i;:::-;6436:84;6257:269;6206:320;;;:::o;6532:164::-;6672:16;6668:1;6660:6;6656:14;6649:40;6532:164;:::o;6702:366::-;6844:3;6865:67;6929:2;6924:3;6865:67;:::i;:::-;6858:74;;6941:93;7030:3;6941:93;:::i;:::-;7059:2;7054:3;7050:12;7043:19;;6702:366;;;:::o;7074:419::-;7240:4;7278:2;7267:9;7263:18;7255:26;;7327:9;7321:4;7317:20;7313:1;7302:9;7298:17;7291:47;7355:131;7481:4;7355:131;:::i;:::-;7347:139;;7074:419;;;:::o;7499:248::-;7639:34;7635:1;7627:6;7623:14;7616:58;7708:31;7703:2;7695:6;7691:15;7684:56;7499:248;:::o;7753:366::-;7895:3;7916:67;7980:2;7975:3;7916:67;:::i;:::-;7909:74;;7992:93;8081:3;7992:93;:::i;:::-;8110:2;8105:3;8101:12;8094:19;;7753:366;;;:::o;8125:419::-;8291:4;8329:2;8318:9;8314:18;8306:26;;8378:9;8372:4;8368:20;8364:1;8353:9;8349:17;8342:47;8406:131;8532:4;8406:131;:::i;:::-;8398:139;;8125:419;;;:::o;8550:246::-;8690:34;8686:1;8678:6;8674:14;8667:58;8759:29;8754:2;8746:6;8742:15;8735:54;8550:246;:::o;8802:366::-;8944:3;8965:67;9029:2;9024:3;8965:67;:::i;:::-;8958:74;;9041:93;9130:3;9041:93;:::i;:::-;9159:2;9154:3;9150:12;9143:19;;8802:366;;;:::o;9174:419::-;9340:4;9378:2;9367:9;9363:18;9355:26;;9427:9;9421:4;9417:20;9413:1;9402:9;9398:17;9391:47;9455:131;9581:4;9455:131;:::i;:::-;9447:139;;9174:419;;;:::o;9599:171::-;9739:23;9735:1;9727:6;9723:14;9716:47;9599:171;:::o;9776:366::-;9918:3;9939:67;10003:2;9998:3;9939:67;:::i;:::-;9932:74;;10015:93;10104:3;10015:93;:::i;:::-;10133:2;10128:3;10124:12;10117:19;;9776:366;;;:::o;10148:419::-;10314:4;10352:2;10341:9;10337:18;10329:26;;10401:9;10395:4;10391:20;10387:1;10376:9;10372:17;10365:47;10429:131;10555:4;10429:131;:::i;:::-;10421:139;;10148:419;;;:::o;10573:174::-;10713:26;10709:1;10701:6;10697:14;10690:50;10573:174;:::o;10753:366::-;10895:3;10916:67;10980:2;10975:3;10916:67;:::i;:::-;10909:74;;10992:93;11081:3;10992:93;:::i;:::-;11110:2;11105:3;11101:12;11094:19;;10753:366;;;:::o;11125:419::-;11291:4;11329:2;11318:9;11314:18;11306:26;;11378:9;11372:4;11368:20;11364:1;11353:9;11349:17;11342:47;11406:131;11532:4;11406:131;:::i;:::-;11398:139;;11125:419;;;:::o;11550:442::-;11699:4;11737:2;11726:9;11722:18;11714:26;;11750:71;11818:1;11807:9;11803:17;11794:6;11750:71;:::i;:::-;11831:72;11899:2;11888:9;11884:18;11875:6;11831:72;:::i;:::-;11913;11981:2;11970:9;11966:18;11957:6;11913:72;:::i;:::-;11550:442;;;;;;:::o;11998:180::-;12046:77;12043:1;12036:88;12143:4;12140:1;12133:15;12167:4;12164:1;12157:15;12184:191;12224:3;12243:20;12261:1;12243:20;:::i;:::-;12238:25;;12277:20;12295:1;12277:20;:::i;:::-;12272:25;;12320:1;12317;12313:9;12306:16;;12341:3;12338:1;12335:10;12332:36;;;12348:18;;:::i;:::-;12332:36;12184:191;;;;:::o

Swarm Source

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