POL Price: $0.206899 (-2.42%)
 

Overview

Max Total Supply

31,415,926,535 PINU100x

Holders

4,376 (0.00%)

Market

Price

$0.00 @ 0.000000 POL

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
26,703,537,554.000000000002436011 PINU100x

Value
$0.00
0x8e49813ce6909f61f356f7f6c8fe650cfade9fd5
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

Pi INU 100x token is a Polygon custom token released as a derivative of BSC's Pi INU token.

Contract Source Code Verified (Exact Match)

Contract Name:
PINU100xToken

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 polygonscan.com on 2024-04-03
*/

// File: @openzeppelin/contracts/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/contracts/utils/Context.sol


// OpenZeppelin Contracts (last updated v5.0.1) (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;
    }

    function _contextSuffixLength() internal view virtual returns (uint256) {
        return 0;
    }
}

// File: @openzeppelin/contracts/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/contracts/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/contracts/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/contracts/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: PINU100x.sol


pragma solidity ^0.8.0;



contract PINU100xToken is ERC20, Ownable {
    constructor(address initialOwner) ERC20("Pi INU 100x", "PINU100x") Ownable(initialOwner) {
        _mint(initialOwner, 31415926535 * 10**18);
    }

    function transferFromContract(address to, uint256 amount) external onlyOwner {
        _transfer(address(this), to, amount);
    }

    function changeAdmin(address newAdmin) external onlyOwner {
        transferOwnership(newAdmin);
    }

    function multiTransfer(address[] calldata recipients, uint256[] calldata amounts) external onlyOwner {
        require(recipients.length == amounts.length, "Arrays length mismatch");
        require(recipients.length <= 500, "Exceeds maximum recipients");

        for (uint256 i = 0; i < recipients.length; i++) {
            // 1 token unit
            _transfer(owner(), recipients[i], amounts[i] * (10**18));
        }
    }
}

Contract Security Audit

Contract ABI

API
[{"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":"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":[{"internalType":"address","name":"newAdmin","type":"address"}],"name":"changeAdmin","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"recipients","type":"address[]"},{"internalType":"uint256[]","name":"amounts","type":"uint256[]"}],"name":"multiTransfer","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","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":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFromContract","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]

608060405234801562000010575f80fd5b5060405162001e8638038062001e86833981810160405281019062000036919062000549565b806040518060400160405280600b81526020017f506920494e5520313030780000000000000000000000000000000000000000008152506040518060400160405280600881526020017f50494e55313030780000000000000000000000000000000000000000000000008152508160039081620000b49190620007dd565b508060049081620000c69190620007dd565b5050505f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036200013c575f6040517f1e4fbdf7000000000000000000000000000000000000000000000000000000008152600401620001339190620008d2565b60405180910390fd5b6200014d816200017360201b60201c565b506200016c816b6582a535fe9e1fc62fbc00006200023660201b60201c565b50620009bb565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603620002a9575f6040517fec442f05000000000000000000000000000000000000000000000000000000008152600401620002a09190620008d2565b60405180910390fd5b620002bc5f8383620002c060201b60201c565b5050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160362000314578060025f8282546200030791906200091a565b92505081905550620003e5565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015620003a0578381836040517fe450d38c000000000000000000000000000000000000000000000000000000008152600401620003979392919062000965565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550505b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036200042e578060025f828254039250508190555062000478565b805f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051620004d79190620009a0565b60405180910390a3505050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f6200051382620004e8565b9050919050565b620005258162000507565b811462000530575f80fd5b50565b5f8151905062000543816200051a565b92915050565b5f60208284031215620005615762000560620004e4565b5b5f620005708482850162000533565b91505092915050565b5f81519050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f6002820490506001821680620005f557607f821691505b6020821081036200060b576200060a620005b0565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f600883026200066f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000632565b6200067b868362000632565b95508019841693508086168417925050509392505050565b5f819050919050565b5f819050919050565b5f620006c5620006bf620006b98462000693565b6200069c565b62000693565b9050919050565b5f819050919050565b620006e083620006a5565b620006f8620006ef82620006cc565b8484546200063e565b825550505050565b5f90565b6200070e62000700565b6200071b818484620006d5565b505050565b5b818110156200074257620007365f8262000704565b60018101905062000721565b5050565b601f82111562000791576200075b8162000611565b620007668462000623565b8101602085101562000776578190505b6200078e620007858562000623565b83018262000720565b50505b505050565b5f82821c905092915050565b5f620007b35f198460080262000796565b1980831691505092915050565b5f620007cd8383620007a2565b9150826002028217905092915050565b620007e88262000579565b67ffffffffffffffff81111562000804576200080362000583565b5b620008108254620005dd565b6200081d82828562000746565b5f60209050601f83116001811462000853575f84156200083e578287015190505b6200084a8582620007c0565b865550620008b9565b601f198416620008638662000611565b5f5b828110156200088c5784890151825560018201915060208501945060208101905062000865565b86831015620008ac5784890151620008a8601f891682620007a2565b8355505b6001600288020188555050505b505050505050565b620008cc8162000507565b82525050565b5f602082019050620008e75f830184620008c1565b92915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f620009268262000693565b9150620009338362000693565b92508282019050808211156200094e576200094d620008ed565b5b92915050565b6200095f8162000693565b82525050565b5f6060820190506200097a5f830186620008c1565b62000989602083018562000954565b62000998604083018462000954565b949350505050565b5f602082019050620009b55f83018462000954565b92915050565b6114bd80620009c95f395ff3fe608060405234801561000f575f80fd5b50600436106100f3575f3560e01c806370a082311161009557806395d89b411161006457806395d89b411461025d578063a9059cbb1461027b578063dd62ed3e146102ab578063f2fde38b146102db576100f3565b806370a08231146101e9578063715018a6146102195780638da5cb5b146102235780638f28397014610241576100f3565b80631a88f306116100d15780631a88f306146101635780631e89d5451461017f57806323b872dd1461019b578063313ce567146101cb576100f3565b806306fdde03146100f7578063095ea7b31461011557806318160ddd14610145575b5f80fd5b6100ff6102f7565b60405161010c9190610ec0565b60405180910390f35b61012f600480360381019061012a9190610f75565b610387565b60405161013c9190610fcd565b60405180910390f35b61014d6103a9565b60405161015a9190610ff5565b60405180910390f35b61017d60048036038101906101789190610f75565b6103b2565b005b610199600480360381019061019491906110c4565b6103c9565b005b6101b560048036038101906101b09190611142565b6104e7565b6040516101c29190610fcd565b60405180910390f35b6101d3610515565b6040516101e091906111ad565b60405180910390f35b61020360048036038101906101fe91906111c6565b61051d565b6040516102109190610ff5565b60405180910390f35b610221610562565b005b61022b610575565b6040516102389190611200565b60405180910390f35b61025b600480360381019061025691906111c6565b61059d565b005b6102656105b1565b6040516102729190610ec0565b60405180910390f35b61029560048036038101906102909190610f75565b610641565b6040516102a29190610fcd565b60405180910390f35b6102c560048036038101906102c09190611219565b610663565b6040516102d29190610ff5565b60405180910390f35b6102f560048036038101906102f091906111c6565b6106e5565b005b60606003805461030690611284565b80601f016020809104026020016040519081016040528092919081815260200182805461033290611284565b801561037d5780601f106103545761010080835404028352916020019161037d565b820191905f5260205f20905b81548152906001019060200180831161036057829003601f168201915b5050505050905090565b5f80610391610769565b905061039e818585610770565b600191505092915050565b5f600254905090565b6103ba610782565b6103c5308383610809565b5050565b6103d1610782565b818190508484905014610419576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610410906112fe565b60405180910390fd5b6101f4848490501115610461576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161045890611366565b60405180910390fd5b5f5b848490508110156104e0576104d3610479610575565b86868481811061048c5761048b611384565b5b90506020020160208101906104a191906111c6565b670de0b6b3a76400008686868181106104bd576104bc611384565b5b905060200201356104ce91906113de565b610809565b8080600101915050610463565b5050505050565b5f806104f1610769565b90506104fe8582856108f9565b610509858585610809565b60019150509392505050565b5f6012905090565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b61056a610782565b6105735f61098b565b565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6105a5610782565b6105ae816106e5565b50565b6060600480546105c090611284565b80601f01602080910402602001604051908101604052809291908181526020018280546105ec90611284565b80156106375780601f1061060e57610100808354040283529160200191610637565b820191905f5260205f20905b81548152906001019060200180831161061a57829003601f168201915b5050505050905090565b5f8061064b610769565b9050610658818585610809565b600191505092915050565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b6106ed610782565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361075d575f6040517f1e4fbdf70000000000000000000000000000000000000000000000000000000081526004016107549190611200565b60405180910390fd5b6107668161098b565b50565b5f33905090565b61077d8383836001610a4e565b505050565b61078a610769565b73ffffffffffffffffffffffffffffffffffffffff166107a8610575565b73ffffffffffffffffffffffffffffffffffffffff1614610807576107cb610769565b6040517f118cdaa70000000000000000000000000000000000000000000000000000000081526004016107fe9190611200565b60405180910390fd5b565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610879575f6040517f96c6fd1e0000000000000000000000000000000000000000000000000000000081526004016108709190611200565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036108e9575f6040517fec442f050000000000000000000000000000000000000000000000000000000081526004016108e09190611200565b60405180910390fd5b6108f4838383610c1d565b505050565b5f6109048484610663565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146109855781811015610976578281836040517ffb8f41b200000000000000000000000000000000000000000000000000000000815260040161096d9392919061141f565b60405180910390fd5b61098484848484035f610a4e565b5b50505050565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603610abe575f6040517fe602df05000000000000000000000000000000000000000000000000000000008152600401610ab59190611200565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610b2e575f6040517f94280d62000000000000000000000000000000000000000000000000000000008152600401610b259190611200565b60405180910390fd5b8160015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508015610c17578273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92584604051610c0e9190610ff5565b60405180910390a35b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610c6d578060025f828254610c619190611454565b92505081905550610d3b565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015610cf6578381836040517fe450d38c000000000000000000000000000000000000000000000000000000008152600401610ced9392919061141f565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550505b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610d82578060025f8282540392505081905550610dcc565b805f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610e299190610ff5565b60405180910390a3505050565b5f81519050919050565b5f82825260208201905092915050565b5f5b83811015610e6d578082015181840152602081019050610e52565b5f8484015250505050565b5f601f19601f8301169050919050565b5f610e9282610e36565b610e9c8185610e40565b9350610eac818560208601610e50565b610eb581610e78565b840191505092915050565b5f6020820190508181035f830152610ed88184610e88565b905092915050565b5f80fd5b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f610f1182610ee8565b9050919050565b610f2181610f07565b8114610f2b575f80fd5b50565b5f81359050610f3c81610f18565b92915050565b5f819050919050565b610f5481610f42565b8114610f5e575f80fd5b50565b5f81359050610f6f81610f4b565b92915050565b5f8060408385031215610f8b57610f8a610ee0565b5b5f610f9885828601610f2e565b9250506020610fa985828601610f61565b9150509250929050565b5f8115159050919050565b610fc781610fb3565b82525050565b5f602082019050610fe05f830184610fbe565b92915050565b610fef81610f42565b82525050565b5f6020820190506110085f830184610fe6565b92915050565b5f80fd5b5f80fd5b5f80fd5b5f8083601f84011261102f5761102e61100e565b5b8235905067ffffffffffffffff81111561104c5761104b611012565b5b60208301915083602082028301111561106857611067611016565b5b9250929050565b5f8083601f8401126110845761108361100e565b5b8235905067ffffffffffffffff8111156110a1576110a0611012565b5b6020830191508360208202830111156110bd576110bc611016565b5b9250929050565b5f805f80604085870312156110dc576110db610ee0565b5b5f85013567ffffffffffffffff8111156110f9576110f8610ee4565b5b6111058782880161101a565b9450945050602085013567ffffffffffffffff81111561112857611127610ee4565b5b6111348782880161106f565b925092505092959194509250565b5f805f6060848603121561115957611158610ee0565b5b5f61116686828701610f2e565b935050602061117786828701610f2e565b925050604061118886828701610f61565b9150509250925092565b5f60ff82169050919050565b6111a781611192565b82525050565b5f6020820190506111c05f83018461119e565b92915050565b5f602082840312156111db576111da610ee0565b5b5f6111e884828501610f2e565b91505092915050565b6111fa81610f07565b82525050565b5f6020820190506112135f8301846111f1565b92915050565b5f806040838503121561122f5761122e610ee0565b5b5f61123c85828601610f2e565b925050602061124d85828601610f2e565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061129b57607f821691505b6020821081036112ae576112ad611257565b5b50919050565b7f417272617973206c656e677468206d69736d61746368000000000000000000005f82015250565b5f6112e8601683610e40565b91506112f3826112b4565b602082019050919050565b5f6020820190508181035f830152611315816112dc565b9050919050565b7f45786365656473206d6178696d756d20726563697069656e74730000000000005f82015250565b5f611350601a83610e40565b915061135b8261131c565b602082019050919050565b5f6020820190508181035f83015261137d81611344565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f6113e882610f42565b91506113f383610f42565b925082820261140181610f42565b91508282048414831517611418576114176113b1565b5b5092915050565b5f6060820190506114325f8301866111f1565b61143f6020830185610fe6565b61144c6040830184610fe6565b949350505050565b5f61145e82610f42565b915061146983610f42565b9250828201905080821115611481576114806113b1565b5b9291505056fea264697066735822122001c96024b94d8b316af94f7e55a0f77780aacd9e934e9f472cd021e851ec6b6164736f6c634300081600330000000000000000000000001c1b394dfbcbc58164bfa48104aa57c4bb1c8075

Deployed Bytecode

0x608060405234801561000f575f80fd5b50600436106100f3575f3560e01c806370a082311161009557806395d89b411161006457806395d89b411461025d578063a9059cbb1461027b578063dd62ed3e146102ab578063f2fde38b146102db576100f3565b806370a08231146101e9578063715018a6146102195780638da5cb5b146102235780638f28397014610241576100f3565b80631a88f306116100d15780631a88f306146101635780631e89d5451461017f57806323b872dd1461019b578063313ce567146101cb576100f3565b806306fdde03146100f7578063095ea7b31461011557806318160ddd14610145575b5f80fd5b6100ff6102f7565b60405161010c9190610ec0565b60405180910390f35b61012f600480360381019061012a9190610f75565b610387565b60405161013c9190610fcd565b60405180910390f35b61014d6103a9565b60405161015a9190610ff5565b60405180910390f35b61017d60048036038101906101789190610f75565b6103b2565b005b610199600480360381019061019491906110c4565b6103c9565b005b6101b560048036038101906101b09190611142565b6104e7565b6040516101c29190610fcd565b60405180910390f35b6101d3610515565b6040516101e091906111ad565b60405180910390f35b61020360048036038101906101fe91906111c6565b61051d565b6040516102109190610ff5565b60405180910390f35b610221610562565b005b61022b610575565b6040516102389190611200565b60405180910390f35b61025b600480360381019061025691906111c6565b61059d565b005b6102656105b1565b6040516102729190610ec0565b60405180910390f35b61029560048036038101906102909190610f75565b610641565b6040516102a29190610fcd565b60405180910390f35b6102c560048036038101906102c09190611219565b610663565b6040516102d29190610ff5565b60405180910390f35b6102f560048036038101906102f091906111c6565b6106e5565b005b60606003805461030690611284565b80601f016020809104026020016040519081016040528092919081815260200182805461033290611284565b801561037d5780601f106103545761010080835404028352916020019161037d565b820191905f5260205f20905b81548152906001019060200180831161036057829003601f168201915b5050505050905090565b5f80610391610769565b905061039e818585610770565b600191505092915050565b5f600254905090565b6103ba610782565b6103c5308383610809565b5050565b6103d1610782565b818190508484905014610419576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610410906112fe565b60405180910390fd5b6101f4848490501115610461576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161045890611366565b60405180910390fd5b5f5b848490508110156104e0576104d3610479610575565b86868481811061048c5761048b611384565b5b90506020020160208101906104a191906111c6565b670de0b6b3a76400008686868181106104bd576104bc611384565b5b905060200201356104ce91906113de565b610809565b8080600101915050610463565b5050505050565b5f806104f1610769565b90506104fe8582856108f9565b610509858585610809565b60019150509392505050565b5f6012905090565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b61056a610782565b6105735f61098b565b565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6105a5610782565b6105ae816106e5565b50565b6060600480546105c090611284565b80601f01602080910402602001604051908101604052809291908181526020018280546105ec90611284565b80156106375780601f1061060e57610100808354040283529160200191610637565b820191905f5260205f20905b81548152906001019060200180831161061a57829003601f168201915b5050505050905090565b5f8061064b610769565b9050610658818585610809565b600191505092915050565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b6106ed610782565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361075d575f6040517f1e4fbdf70000000000000000000000000000000000000000000000000000000081526004016107549190611200565b60405180910390fd5b6107668161098b565b50565b5f33905090565b61077d8383836001610a4e565b505050565b61078a610769565b73ffffffffffffffffffffffffffffffffffffffff166107a8610575565b73ffffffffffffffffffffffffffffffffffffffff1614610807576107cb610769565b6040517f118cdaa70000000000000000000000000000000000000000000000000000000081526004016107fe9190611200565b60405180910390fd5b565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610879575f6040517f96c6fd1e0000000000000000000000000000000000000000000000000000000081526004016108709190611200565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036108e9575f6040517fec442f050000000000000000000000000000000000000000000000000000000081526004016108e09190611200565b60405180910390fd5b6108f4838383610c1d565b505050565b5f6109048484610663565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146109855781811015610976578281836040517ffb8f41b200000000000000000000000000000000000000000000000000000000815260040161096d9392919061141f565b60405180910390fd5b61098484848484035f610a4e565b5b50505050565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603610abe575f6040517fe602df05000000000000000000000000000000000000000000000000000000008152600401610ab59190611200565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610b2e575f6040517f94280d62000000000000000000000000000000000000000000000000000000008152600401610b259190611200565b60405180910390fd5b8160015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508015610c17578273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92584604051610c0e9190610ff5565b60405180910390a35b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610c6d578060025f828254610c619190611454565b92505081905550610d3b565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015610cf6578381836040517fe450d38c000000000000000000000000000000000000000000000000000000008152600401610ced9392919061141f565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550505b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610d82578060025f8282540392505081905550610dcc565b805f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610e299190610ff5565b60405180910390a3505050565b5f81519050919050565b5f82825260208201905092915050565b5f5b83811015610e6d578082015181840152602081019050610e52565b5f8484015250505050565b5f601f19601f8301169050919050565b5f610e9282610e36565b610e9c8185610e40565b9350610eac818560208601610e50565b610eb581610e78565b840191505092915050565b5f6020820190508181035f830152610ed88184610e88565b905092915050565b5f80fd5b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f610f1182610ee8565b9050919050565b610f2181610f07565b8114610f2b575f80fd5b50565b5f81359050610f3c81610f18565b92915050565b5f819050919050565b610f5481610f42565b8114610f5e575f80fd5b50565b5f81359050610f6f81610f4b565b92915050565b5f8060408385031215610f8b57610f8a610ee0565b5b5f610f9885828601610f2e565b9250506020610fa985828601610f61565b9150509250929050565b5f8115159050919050565b610fc781610fb3565b82525050565b5f602082019050610fe05f830184610fbe565b92915050565b610fef81610f42565b82525050565b5f6020820190506110085f830184610fe6565b92915050565b5f80fd5b5f80fd5b5f80fd5b5f8083601f84011261102f5761102e61100e565b5b8235905067ffffffffffffffff81111561104c5761104b611012565b5b60208301915083602082028301111561106857611067611016565b5b9250929050565b5f8083601f8401126110845761108361100e565b5b8235905067ffffffffffffffff8111156110a1576110a0611012565b5b6020830191508360208202830111156110bd576110bc611016565b5b9250929050565b5f805f80604085870312156110dc576110db610ee0565b5b5f85013567ffffffffffffffff8111156110f9576110f8610ee4565b5b6111058782880161101a565b9450945050602085013567ffffffffffffffff81111561112857611127610ee4565b5b6111348782880161106f565b925092505092959194509250565b5f805f6060848603121561115957611158610ee0565b5b5f61116686828701610f2e565b935050602061117786828701610f2e565b925050604061118886828701610f61565b9150509250925092565b5f60ff82169050919050565b6111a781611192565b82525050565b5f6020820190506111c05f83018461119e565b92915050565b5f602082840312156111db576111da610ee0565b5b5f6111e884828501610f2e565b91505092915050565b6111fa81610f07565b82525050565b5f6020820190506112135f8301846111f1565b92915050565b5f806040838503121561122f5761122e610ee0565b5b5f61123c85828601610f2e565b925050602061124d85828601610f2e565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061129b57607f821691505b6020821081036112ae576112ad611257565b5b50919050565b7f417272617973206c656e677468206d69736d61746368000000000000000000005f82015250565b5f6112e8601683610e40565b91506112f3826112b4565b602082019050919050565b5f6020820190508181035f830152611315816112dc565b9050919050565b7f45786365656473206d6178696d756d20726563697069656e74730000000000005f82015250565b5f611350601a83610e40565b915061135b8261131c565b602082019050919050565b5f6020820190508181035f83015261137d81611344565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f6113e882610f42565b91506113f383610f42565b925082820261140181610f42565b91508282048414831517611418576114176113b1565b5b5092915050565b5f6060820190506114325f8301866111f1565b61143f6020830185610fe6565b61144c6040830184610fe6565b949350505050565b5f61145e82610f42565b915061146983610f42565b9250828201905080821115611481576114806113b1565b5b9291505056fea264697066735822122001c96024b94d8b316af94f7e55a0f77780aacd9e934e9f472cd021e851ec6b6164736f6c63430008160033

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

0000000000000000000000001c1b394dfbcbc58164bfa48104aa57c4bb1c8075

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

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 0000000000000000000000001c1b394dfbcbc58164bfa48104aa57c4bb1c8075


Deployed Bytecode Sourcemap

25866:896:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16478:91;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18771:190;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17580:99;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26071:132;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26323:436;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;19539:249;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17431:84;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17742:118;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10091:103;;;:::i;:::-;;9416:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26211:104;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;16688:95;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18065:182;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18310:142;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10349:220;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;16478:91;16523:13;16556:5;16549:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16478:91;:::o;18771:190::-;18844:4;18861:13;18877:12;:10;:12::i;:::-;18861:28;;18900:31;18909:5;18916:7;18925:5;18900:8;:31::i;:::-;18949:4;18942:11;;;18771:190;;;;:::o;17580:99::-;17632:7;17659:12;;17652:19;;17580:99;:::o;26071:132::-;9302:13;:11;:13::i;:::-;26159:36:::1;26177:4;26184:2;26188:6;26159:9;:36::i;:::-;26071:132:::0;;:::o;26323:436::-;9302:13;:11;:13::i;:::-;26464:7:::1;;:14;;26443:10;;:17;;:35;26435:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;26545:3;26524:10;;:17;;:24;;26516:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;26597:9;26592:160;26616:10;;:17;;26612:1;:21;26592:160;;;26684:56;26694:7;:5;:7::i;:::-;26703:10;;26714:1;26703:13;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;26732:6;26718:7;;26726:1;26718:10;;;;;;;:::i;:::-;;;;;;;;:21;;;;:::i;:::-;26684:9;:56::i;:::-;26635:3;;;;;;;26592:160;;;;26323:436:::0;;;;:::o;19539:249::-;19626:4;19643:15;19661:12;:10;:12::i;:::-;19643:30;;19684:37;19700:4;19706:7;19715:5;19684:15;:37::i;:::-;19732:26;19742:4;19748:2;19752:5;19732:9;:26::i;:::-;19776:4;19769:11;;;19539:249;;;;;:::o;17431:84::-;17480:5;17505:2;17498:9;;17431:84;:::o;17742:118::-;17807:7;17834:9;:18;17844:7;17834:18;;;;;;;;;;;;;;;;17827:25;;17742:118;;;:::o;10091:103::-;9302:13;:11;:13::i;:::-;10156:30:::1;10183:1;10156:18;:30::i;:::-;10091:103::o:0;9416:87::-;9462:7;9489:6;;;;;;;;;;;9482:13;;9416:87;:::o;26211:104::-;9302:13;:11;:13::i;:::-;26280:27:::1;26298:8;26280:17;:27::i;:::-;26211:104:::0;:::o;16688:95::-;16735:13;16768:7;16761:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16688:95;:::o;18065:182::-;18134:4;18151:13;18167:12;:10;:12::i;:::-;18151:28;;18190:27;18200:5;18207:2;18211:5;18190:9;:27::i;:::-;18235:4;18228:11;;;18065:182;;;;:::o;18310:142::-;18390:7;18417:11;:18;18429:5;18417:18;;;;;;;;;;;;;;;:27;18436:7;18417:27;;;;;;;;;;;;;;;;18410:34;;18310:142;;;;:::o;10349:220::-;9302:13;:11;:13::i;:::-;10454:1:::1;10434:22;;:8;:22;;::::0;10430:93:::1;;10508:1;10480:31;;;;;;;;;;;:::i;:::-;;;;;;;;10430:93;10533:28;10552:8;10533:18;:28::i;:::-;10349:220:::0;:::o;7425:98::-;7478:7;7505:10;7498:17;;7425:98;:::o;23598:130::-;23683:37;23692:5;23699:7;23708:5;23715:4;23683:8;:37::i;:::-;23598:130;;;:::o;9581:166::-;9652:12;:10;:12::i;:::-;9641:23;;:7;:5;:7::i;:::-;:23;;;9637:103;;9715:12;:10;:12::i;:::-;9688:40;;;;;;;;;;;:::i;:::-;;;;;;;;9637:103;9581:166::o;20173:308::-;20273:1;20257:18;;:4;:18;;;20253:88;;20326:1;20299:30;;;;;;;;;;;:::i;:::-;;;;;;;;20253:88;20369:1;20355:16;;:2;:16;;;20351:88;;20424:1;20395:32;;;;;;;;;;;:::i;:::-;;;;;;;;20351:88;20449:24;20457:4;20463:2;20467:5;20449:7;:24::i;:::-;20173:308;;;:::o;25314:487::-;25414:24;25441:25;25451:5;25458:7;25441:9;:25::i;:::-;25414:52;;25501:17;25481:16;:37;25477:317;;25558:5;25539:16;:24;25535:132;;;25618:7;25627:16;25645:5;25591:60;;;;;;;;;;;;;:::i;:::-;;;;;;;;25535:132;25710:57;25719:5;25726:7;25754:5;25735:16;:24;25761:5;25710:8;:57::i;:::-;25477:317;25403:398;25314:487;;;:::o;10729:191::-;10803:16;10822:6;;;;;;;;;;;10803:25;;10848:8;10839:6;;:17;;;;;;;;;;;;;;;;;;10903:8;10872:40;;10893:8;10872:40;;;;;;;;;;;;10792:128;10729:191;:::o;24579:443::-;24709:1;24692:19;;:5;:19;;;24688:91;;24764:1;24735:32;;;;;;;;;;;:::i;:::-;;;;;;;;24688:91;24812:1;24793:21;;:7;:21;;;24789:92;;24866:1;24838:31;;;;;;;;;;;:::i;:::-;;;;;;;;24789:92;24921:5;24891:11;:18;24903:5;24891:18;;;;;;;;;;;;;;;:27;24910:7;24891:27;;;;;;;;;;;;;;;:35;;;;24941:9;24937:78;;;24988:7;24972:31;;24981:5;24972:31;;;24997:5;24972:31;;;;;;:::i;:::-;;;;;;;;24937:78;24579:443;;;;:::o;20805:1135::-;20911:1;20895:18;;:4;:18;;;20891:552;;21049:5;21033:12;;:21;;;;;;;:::i;:::-;;;;;;;;20891:552;;;21087:19;21109:9;:15;21119:4;21109:15;;;;;;;;;;;;;;;;21087:37;;21157:5;21143:11;:19;21139:117;;;21215:4;21221:11;21234:5;21190:50;;;;;;;;;;;;;:::i;:::-;;;;;;;;21139:117;21411:5;21397:11;:19;21379:9;:15;21389:4;21379:15;;;;;;;;;;;;;;;:37;;;;21072:371;20891:552;21473:1;21459:16;;:2;:16;;;21455:435;;21641:5;21625:12;;:21;;;;;;;;;;;21455:435;;;21858:5;21841:9;:13;21851:2;21841:13;;;;;;;;;;;;;;;;:22;;;;;;;;;;;21455:435;21922:2;21907:25;;21916:4;21907:25;;;21926:5;21907:25;;;;;;:::i;:::-;;;;;;;;20805: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;1553:117;1662:1;1659;1652: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:117::-;3907:1;3904;3897:12;3921:117;4030:1;4027;4020:12;4044:117;4153:1;4150;4143:12;4184:568;4257:8;4267:6;4317:3;4310:4;4302:6;4298:17;4294:27;4284:122;;4325:79;;:::i;:::-;4284:122;4438:6;4425:20;4415:30;;4468:18;4460:6;4457:30;4454:117;;;4490:79;;:::i;:::-;4454:117;4604:4;4596:6;4592:17;4580:29;;4658:3;4650:4;4642:6;4638:17;4628:8;4624:32;4621:41;4618:128;;;4665:79;;:::i;:::-;4618:128;4184:568;;;;;:::o;4775:::-;4848:8;4858:6;4908:3;4901:4;4893:6;4889:17;4885:27;4875:122;;4916:79;;:::i;:::-;4875:122;5029:6;5016:20;5006:30;;5059:18;5051:6;5048:30;5045:117;;;5081:79;;:::i;:::-;5045:117;5195:4;5187:6;5183:17;5171:29;;5249:3;5241:4;5233:6;5229:17;5219:8;5215:32;5212:41;5209:128;;;5256:79;;:::i;:::-;5209:128;4775:568;;;;;:::o;5349:934::-;5471:6;5479;5487;5495;5544:2;5532:9;5523:7;5519:23;5515:32;5512:119;;;5550:79;;:::i;:::-;5512:119;5698:1;5687:9;5683:17;5670:31;5728:18;5720:6;5717:30;5714:117;;;5750:79;;:::i;:::-;5714:117;5863:80;5935:7;5926:6;5915:9;5911:22;5863:80;:::i;:::-;5845:98;;;;5641:312;6020:2;6009:9;6005:18;5992:32;6051:18;6043:6;6040:30;6037:117;;;6073:79;;:::i;:::-;6037:117;6186:80;6258:7;6249:6;6238:9;6234:22;6186:80;:::i;:::-;6168:98;;;;5963:313;5349:934;;;;;;;:::o;6289:619::-;6366:6;6374;6382;6431:2;6419:9;6410:7;6406:23;6402:32;6399:119;;;6437:79;;:::i;:::-;6399:119;6557:1;6582:53;6627:7;6618:6;6607:9;6603:22;6582:53;:::i;:::-;6572:63;;6528:117;6684:2;6710:53;6755:7;6746:6;6735:9;6731:22;6710:53;:::i;:::-;6700:63;;6655:118;6812:2;6838:53;6883:7;6874:6;6863:9;6859:22;6838:53;:::i;:::-;6828:63;;6783:118;6289:619;;;;;:::o;6914:86::-;6949:7;6989:4;6982:5;6978:16;6967:27;;6914:86;;;:::o;7006:112::-;7089:22;7105:5;7089:22;:::i;:::-;7084:3;7077:35;7006:112;;:::o;7124:214::-;7213:4;7251:2;7240:9;7236:18;7228:26;;7264:67;7328:1;7317:9;7313:17;7304:6;7264:67;:::i;:::-;7124:214;;;;:::o;7344:329::-;7403:6;7452:2;7440:9;7431:7;7427:23;7423:32;7420:119;;;7458:79;;:::i;:::-;7420:119;7578:1;7603:53;7648:7;7639:6;7628:9;7624:22;7603:53;:::i;:::-;7593:63;;7549:117;7344:329;;;;:::o;7679:118::-;7766:24;7784:5;7766:24;:::i;:::-;7761:3;7754:37;7679:118;;:::o;7803:222::-;7896:4;7934:2;7923:9;7919:18;7911:26;;7947:71;8015:1;8004:9;8000:17;7991:6;7947:71;:::i;:::-;7803:222;;;;:::o;8031:474::-;8099:6;8107;8156:2;8144:9;8135:7;8131:23;8127:32;8124:119;;;8162:79;;:::i;:::-;8124:119;8282:1;8307:53;8352:7;8343:6;8332:9;8328:22;8307:53;:::i;:::-;8297:63;;8253:117;8409:2;8435:53;8480:7;8471:6;8460:9;8456:22;8435:53;:::i;:::-;8425:63;;8380:118;8031:474;;;;;:::o;8511:180::-;8559:77;8556:1;8549:88;8656:4;8653:1;8646:15;8680:4;8677:1;8670:15;8697:320;8741:6;8778:1;8772:4;8768:12;8758:22;;8825:1;8819:4;8815:12;8846:18;8836:81;;8902:4;8894:6;8890:17;8880:27;;8836:81;8964:2;8956:6;8953:14;8933:18;8930:38;8927:84;;8983:18;;:::i;:::-;8927:84;8748:269;8697:320;;;:::o;9023:172::-;9163:24;9159:1;9151:6;9147:14;9140:48;9023:172;:::o;9201:366::-;9343:3;9364:67;9428:2;9423:3;9364:67;:::i;:::-;9357:74;;9440:93;9529:3;9440:93;:::i;:::-;9558:2;9553:3;9549:12;9542:19;;9201:366;;;:::o;9573:419::-;9739:4;9777:2;9766:9;9762:18;9754:26;;9826:9;9820:4;9816:20;9812:1;9801:9;9797:17;9790:47;9854:131;9980:4;9854:131;:::i;:::-;9846:139;;9573:419;;;:::o;9998:176::-;10138:28;10134:1;10126:6;10122:14;10115:52;9998:176;:::o;10180:366::-;10322:3;10343:67;10407:2;10402:3;10343:67;:::i;:::-;10336:74;;10419:93;10508:3;10419:93;:::i;:::-;10537:2;10532:3;10528:12;10521:19;;10180:366;;;:::o;10552:419::-;10718:4;10756:2;10745:9;10741:18;10733:26;;10805:9;10799:4;10795:20;10791:1;10780:9;10776:17;10769:47;10833:131;10959:4;10833:131;:::i;:::-;10825:139;;10552:419;;;:::o;10977:180::-;11025:77;11022:1;11015:88;11122:4;11119:1;11112:15;11146:4;11143:1;11136:15;11163:180;11211:77;11208:1;11201:88;11308:4;11305:1;11298:15;11332:4;11329:1;11322:15;11349:410;11389:7;11412:20;11430:1;11412:20;:::i;:::-;11407:25;;11446:20;11464:1;11446:20;:::i;:::-;11441:25;;11501:1;11498;11494:9;11523:30;11541:11;11523:30;:::i;:::-;11512:41;;11702:1;11693:7;11689:15;11686:1;11683:22;11663:1;11656:9;11636:83;11613:139;;11732:18;;:::i;:::-;11613:139;11397:362;11349:410;;;;:::o;11765:442::-;11914:4;11952:2;11941:9;11937:18;11929:26;;11965:71;12033:1;12022:9;12018:17;12009:6;11965:71;:::i;:::-;12046:72;12114:2;12103:9;12099:18;12090:6;12046:72;:::i;:::-;12128;12196:2;12185:9;12181:18;12172:6;12128:72;:::i;:::-;11765:442;;;;;;:::o;12213:191::-;12253:3;12272:20;12290:1;12272:20;:::i;:::-;12267:25;;12306:20;12324:1;12306:20;:::i;:::-;12301:25;;12349:1;12346;12342:9;12335:16;;12370:3;12367:1;12364:10;12361:36;;;12377:18;;:::i;:::-;12361:36;12213:191;;;;:::o

Swarm Source

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