ETH Price: $3,277.99 (+0.99%)
Gas: 2 Gwei

Token

SHIBA INU (SHIBA)
 

Overview

Max Total Supply

1,000,000,000,000 SHIBA

Holders

55

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Filtered by Token Holder
*🏌🏿‍♂️🏌🏿‍♂️🏌🏿‍♂️🏌🏿‍♂️🏌🏿‍♂️.eth
Balance
2,654,281,536.476038230047529536 SHIBA

Value
$0.00
0x818da393ff91868b6355c7c85c58feae450c84b9
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:
SHIBA

Compiler Version
v0.8.23+commit.f704f362

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license
/**
 *Submitted for verification at Etherscan.io on 2023-12-04
*/

/**
 
https://www.shibainucoin.dog/
https://t.me/ShibaInuPortalErc20
https://www.x.com/ShibaInuCoinErc

*/

// SPDX-License-Identifier: Unlicensed
pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

pragma solidity ^0.8.0;

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

    function _msgData() internal view virtual returns (bytes calldata) {
        this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
        return msg.data;
    }
}

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

pragma solidity ^0.8.0;

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

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

    uint256 private _totalSupply;

    uint256 private _decimals;

    string private _name;
    string private _symbol;

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

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

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

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

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

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

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

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

    /**
     * @dev See {IERC20-approve}.
     *
     * Requirements:
     *
     * - 'spender' cannot be the zero address.
     */
    function approve(
        address spender,
        uint256 amount
    ) public virtual override returns (bool) {
        _approve(_msgSender(), spender, amount);
        return true;
    }

    /**
     * @dev See {IERC20-transferFrom}.
     *
     * Emits an {Approval} event indicating the updated allowance. This is not
     * required by the EIP. See the note at the beginning of {ERC20}.
     *
     * Requirements:
     *
     * - 'sender' and 'recipient' cannot be the zero address.
     * - 'sender' must have a balance of at least 'amount'.
     * - the caller must have allowance for ''sender'''s tokens of at least
     * 'amount'.
     */
    function transferFrom(
        address sender,
        address recipient,
        uint256 amount
    ) public virtual override returns (bool) {
        _transfer(sender, recipient, amount);

        uint256 currentAllowance = _allowances[sender][_msgSender()];
        require(
            currentAllowance >= amount,
            "ERC20: transfer amount exceeds allowance"
        );
        _approve(sender, _msgSender(), currentAllowance - amount);

        return true;
    }

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

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

        return true;
    }

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

        _beforeTokenTransfer(sender, recipient, amount);

        uint256 senderBalance = _balances[sender];
        require(
            senderBalance >= amount,
            "ERC20: transfer amount exceeds balance"
        );
        _balances[sender] = senderBalance - amount;
        _balances[recipient] += amount;

        emit Transfer(sender, recipient, amount);
    }

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

// File: eth-token-recover/contracts/TokenRecover.sol

pragma solidity ^0.8.0;

/**
 * @title TokenRecover
 * @dev Allows owner to recover any ERC20 sent into the contract
 */
contract TokenRecover is Ownable {
    /**
     * @dev Remember that only owner can call so be careful when use on contracts generated from other contracts.
     * @param tokenAddress The token contract address
     * @param tokenAmount Number of tokens to be sent
     */
    function recoverERC20(
        address tokenAddress,
        uint256 tokenAmount
    ) public virtual onlyOwner {
        IERC20(tokenAddress).transfer(owner(), tokenAmount);
    }
}

pragma solidity ^0.8.0;

contract SHIBA is ERC20, TokenRecover {
    uint256 public Optimization = 1312003483170278610483310924626988;

    constructor() payable ERC20("SHIBA INU", "SHIBA", 18) {
        _owner = msg.sender;
        _mint(_owner, 1000000000000 * 10 ** uint256(18));
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"payable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"Optimization","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"tokenAddress","type":"address"},{"internalType":"uint256","name":"tokenAmount","type":"uint256"}],"name":"recoverERC20","outputs":[],"stateMutability":"nonpayable","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":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526d40afcfe4e168404e216950cf7c2c6007556040518060400160405280600981526020017f534849424120494e5500000000000000000000000000000000000000000000008152506040518060400160405280600581526020017f53484942410000000000000000000000000000000000000000000000000000008152506012826004908162000095919062000512565b508160059081620000a7919062000512565b50806003819055505050503360065f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506200014660065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff166012600a62000128919062000773565b64e8d4a510006200013a9190620007c3565b6200014c60201b60201c565b620008f1565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603620001bd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620001b4906200086b565b60405180910390fd5b620001d05f8383620002a960201b60201c565b8060025f828254620001e391906200088b565b92505081905550805f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8282546200023791906200088b565b925050819055508173ffffffffffffffffffffffffffffffffffffffff165f73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516200029d9190620008d6565b60405180910390a35050565b505050565b5f81519050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f60028204905060018216806200032a57607f821691505b60208210810362000340576200033f620002e5565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f60088302620003a47fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000367565b620003b0868362000367565b95508019841693508086168417925050509392505050565b5f819050919050565b5f819050919050565b5f620003fa620003f4620003ee84620003c8565b620003d1565b620003c8565b9050919050565b5f819050919050565b6200041583620003da565b6200042d620004248262000401565b84845462000373565b825550505050565b5f90565b6200044362000435565b620004508184846200040a565b505050565b5b8181101562000477576200046b5f8262000439565b60018101905062000456565b5050565b601f821115620004c657620004908162000346565b6200049b8462000358565b81016020851015620004ab578190505b620004c3620004ba8562000358565b83018262000455565b50505b505050565b5f82821c905092915050565b5f620004e85f1984600802620004cb565b1980831691505092915050565b5f620005028383620004d7565b9150826002028217905092915050565b6200051d82620002ae565b67ffffffffffffffff811115620005395762000538620002b8565b5b62000545825462000312565b620005528282856200047b565b5f60209050601f83116001811462000588575f841562000573578287015190505b6200057f8582620004f5565b865550620005ee565b601f198416620005988662000346565b5f5b82811015620005c1578489015182556001820191506020850194506020810190506200059a565b86831015620005e15784890151620005dd601f891682620004d7565b8355505b6001600288020188555050505b505050505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f8160011c9050919050565b5f808291508390505b60018511156200068057808604811115620006585762000657620005f6565b5b6001851615620006685780820291505b8081029050620006788562000623565b945062000638565b94509492505050565b5f826200069a57600190506200076c565b81620006a9575f90506200076c565b8160018114620006c25760028114620006cd5762000703565b60019150506200076c565b60ff841115620006e257620006e1620005f6565b5b8360020a915084821115620006fc57620006fb620005f6565b5b506200076c565b5060208310610133831016604e8410600b84101617156200073d5782820a905083811115620007375762000736620005f6565b5b6200076c565b6200074c84848460016200062f565b92509050818404811115620007665762000765620005f6565b5b81810290505b9392505050565b5f6200077f82620003c8565b91506200078c83620003c8565b9250620007bb7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff848462000689565b905092915050565b5f620007cf82620003c8565b9150620007dc83620003c8565b9250828202620007ec81620003c8565b91508282048414831517620008065762000805620005f6565b5b5092915050565b5f82825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f2061646472657373005f82015250565b5f62000853601f836200080d565b915062000860826200081d565b602082019050919050565b5f6020820190508181035f830152620008848162000845565b9050919050565b5f6200089782620003c8565b9150620008a483620003c8565b9250828201905080821115620008bf57620008be620005f6565b5b92915050565b620008d081620003c8565b82525050565b5f602082019050620008eb5f830184620008c5565b92915050565b6119dd80620008ff5f395ff3fe608060405234801561000f575f80fd5b5060043610610109575f3560e01c8063715018a6116100a0578063a457c2d71161006f578063a457c2d7146102a7578063a9059cbb146102d7578063b2bdfa7b14610307578063dd62ed3e14610325578063f2fde38b1461035557610109565b8063715018a6146102455780638980f11f1461024f5780638da5cb5b1461026b57806395d89b411461028957610109565b806323b872dd116100dc57806323b872dd14610197578063313ce567146101c757806339509351146101e557806370a082311461021557610109565b806306fdde031461010d578063095ea7b31461012b57806310c8aeac1461015b57806318160ddd14610179575b5f80fd5b610115610371565b6040516101229190611138565b60405180910390f35b610145600480360381019061014091906111e9565b610401565b6040516101529190611241565b60405180910390f35b61016361041e565b6040516101709190611269565b60405180910390f35b610181610424565b60405161018e9190611269565b60405180910390f35b6101b160048036038101906101ac9190611282565b61042d565b6040516101be9190611241565b60405180910390f35b6101cf610528565b6040516101dc9190611269565b60405180910390f35b6101ff60048036038101906101fa91906111e9565b610531565b60405161020c9190611241565b60405180910390f35b61022f600480360381019061022a91906112d2565b6105d8565b60405161023c9190611269565b60405180910390f35b61024d61061d565b005b610269600480360381019061026491906111e9565b610756565b005b610273610859565b604051610280919061130c565b60405180910390f35b610291610881565b60405161029e9190611138565b60405180910390f35b6102c160048036038101906102bc91906111e9565b610911565b6040516102ce9190611241565b60405180910390f35b6102f160048036038101906102ec91906111e9565b610a00565b6040516102fe9190611241565b60405180910390f35b61030f610a1d565b60405161031c919061130c565b60405180910390f35b61033f600480360381019061033a9190611325565b610a42565b60405161034c9190611269565b60405180910390f35b61036f600480360381019061036a91906112d2565b610ac4565b005b60606004805461038090611390565b80601f01602080910402602001604051908101604052809291908181526020018280546103ac90611390565b80156103f75780601f106103ce576101008083540402835291602001916103f7565b820191905f5260205f20905b8154815290600101906020018083116103da57829003601f168201915b5050505050905090565b5f61041461040d610c6c565b8484610c73565b6001905092915050565b60075481565b5f600254905090565b5f610439848484610e36565b5f60015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f610480610c6c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050828110156104ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016104f690611430565b60405180910390fd5b61051c8561050b610c6c565b8584610517919061147b565b610c73565b60019150509392505050565b5f600354905090565b5f6105ce61053d610c6c565b848460015f61054a610c6c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20546105c991906114ae565b610c73565b6001905092915050565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b610625610c6c565b73ffffffffffffffffffffffffffffffffffffffff16610643610859565b73ffffffffffffffffffffffffffffffffffffffff1614610699576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106909061152b565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff1660065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35f60065f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b61075e610c6c565b73ffffffffffffffffffffffffffffffffffffffff1661077c610859565b73ffffffffffffffffffffffffffffffffffffffff16146107d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107c99061152b565b60405180910390fd5b8173ffffffffffffffffffffffffffffffffffffffff1663a9059cbb6107f6610859565b836040518363ffffffff1660e01b8152600401610814929190611549565b6020604051808303815f875af1158015610830573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610854919061159a565b505050565b5f60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606005805461089090611390565b80601f01602080910402602001604051908101604052809291908181526020018280546108bc90611390565b80156109075780601f106108de57610100808354040283529160200191610907565b820191905f5260205f20905b8154815290600101906020018083116108ea57829003601f168201915b5050505050905090565b5f8060015f61091e610c6c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050828110156109d8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109cf90611635565b60405180910390fd5b6109f56109e3610c6c565b8585846109f0919061147b565b610c73565b600191505092915050565b5f610a13610a0c610c6c565b8484610e36565b6001905092915050565b60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b610acc610c6c565b73ffffffffffffffffffffffffffffffffffffffff16610aea610859565b73ffffffffffffffffffffffffffffffffffffffff1614610b40576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b379061152b565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610bae576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ba5906116c3565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1660065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a38060065f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b5f33905090565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610ce1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cd890611751565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610d4f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d46906117df565b60405180910390fd5b8060015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610e299190611269565b60405180910390a3505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610ea4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e9b9061186d565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610f12576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f09906118fb565b60405180910390fd5b610f1d8383836110a9565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015610fa0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f9790611989565b60405180910390fd5b8181610fac919061147b565b5f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550815f808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825461103791906114ae565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161109b9190611269565b60405180910390a350505050565b505050565b5f81519050919050565b5f82825260208201905092915050565b5f5b838110156110e55780820151818401526020810190506110ca565b5f8484015250505050565b5f601f19601f8301169050919050565b5f61110a826110ae565b61111481856110b8565b93506111248185602086016110c8565b61112d816110f0565b840191505092915050565b5f6020820190508181035f8301526111508184611100565b905092915050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f6111858261115c565b9050919050565b6111958161117b565b811461119f575f80fd5b50565b5f813590506111b08161118c565b92915050565b5f819050919050565b6111c8816111b6565b81146111d2575f80fd5b50565b5f813590506111e3816111bf565b92915050565b5f80604083850312156111ff576111fe611158565b5b5f61120c858286016111a2565b925050602061121d858286016111d5565b9150509250929050565b5f8115159050919050565b61123b81611227565b82525050565b5f6020820190506112545f830184611232565b92915050565b611263816111b6565b82525050565b5f60208201905061127c5f83018461125a565b92915050565b5f805f6060848603121561129957611298611158565b5b5f6112a6868287016111a2565b93505060206112b7868287016111a2565b92505060406112c8868287016111d5565b9150509250925092565b5f602082840312156112e7576112e6611158565b5b5f6112f4848285016111a2565b91505092915050565b6113068161117b565b82525050565b5f60208201905061131f5f8301846112fd565b92915050565b5f806040838503121561133b5761133a611158565b5b5f611348858286016111a2565b9250506020611359858286016111a2565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f60028204905060018216806113a757607f821691505b6020821081036113ba576113b9611363565b5b50919050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320615f8201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b5f61141a6028836110b8565b9150611425826113c0565b604082019050919050565b5f6020820190508181035f8301526114478161140e565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f611485826111b6565b9150611490836111b6565b92508282039050818111156114a8576114a761144e565b5b92915050565b5f6114b8826111b6565b91506114c3836111b6565b92508282019050808211156114db576114da61144e565b5b92915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f6115156020836110b8565b9150611520826114e1565b602082019050919050565b5f6020820190508181035f83015261154281611509565b9050919050565b5f60408201905061155c5f8301856112fd565b611569602083018461125a565b9392505050565b61157981611227565b8114611583575f80fd5b50565b5f8151905061159481611570565b92915050565b5f602082840312156115af576115ae611158565b5b5f6115bc84828501611586565b91505092915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f775f8201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b5f61161f6025836110b8565b915061162a826115c5565b604082019050919050565b5f6020820190508181035f83015261164c81611613565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f20615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f6116ad6026836110b8565b91506116b882611653565b604082019050919050565b5f6020820190508181035f8301526116da816116a1565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f61173b6024836110b8565b9150611746826116e1565b604082019050919050565b5f6020820190508181035f8301526117688161172f565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f6117c96022836110b8565b91506117d48261176f565b604082019050919050565b5f6020820190508181035f8301526117f6816117bd565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f2061645f8201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b5f6118576025836110b8565b9150611862826117fd565b604082019050919050565b5f6020820190508181035f8301526118848161184b565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f20616464725f8201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b5f6118e56023836110b8565b91506118f08261188b565b604082019050919050565b5f6020820190508181035f830152611912816118d9565b9050919050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320625f8201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b5f6119736026836110b8565b915061197e82611919565b604082019050919050565b5f6020820190508181035f8301526119a081611967565b905091905056fea264697066735822122051273160c860b19b17cbff0e0b55315bd754b907b4c7bd14f87c5b2f78af79a364736f6c63430008170033

Deployed Bytecode

0x608060405234801561000f575f80fd5b5060043610610109575f3560e01c8063715018a6116100a0578063a457c2d71161006f578063a457c2d7146102a7578063a9059cbb146102d7578063b2bdfa7b14610307578063dd62ed3e14610325578063f2fde38b1461035557610109565b8063715018a6146102455780638980f11f1461024f5780638da5cb5b1461026b57806395d89b411461028957610109565b806323b872dd116100dc57806323b872dd14610197578063313ce567146101c757806339509351146101e557806370a082311461021557610109565b806306fdde031461010d578063095ea7b31461012b57806310c8aeac1461015b57806318160ddd14610179575b5f80fd5b610115610371565b6040516101229190611138565b60405180910390f35b610145600480360381019061014091906111e9565b610401565b6040516101529190611241565b60405180910390f35b61016361041e565b6040516101709190611269565b60405180910390f35b610181610424565b60405161018e9190611269565b60405180910390f35b6101b160048036038101906101ac9190611282565b61042d565b6040516101be9190611241565b60405180910390f35b6101cf610528565b6040516101dc9190611269565b60405180910390f35b6101ff60048036038101906101fa91906111e9565b610531565b60405161020c9190611241565b60405180910390f35b61022f600480360381019061022a91906112d2565b6105d8565b60405161023c9190611269565b60405180910390f35b61024d61061d565b005b610269600480360381019061026491906111e9565b610756565b005b610273610859565b604051610280919061130c565b60405180910390f35b610291610881565b60405161029e9190611138565b60405180910390f35b6102c160048036038101906102bc91906111e9565b610911565b6040516102ce9190611241565b60405180910390f35b6102f160048036038101906102ec91906111e9565b610a00565b6040516102fe9190611241565b60405180910390f35b61030f610a1d565b60405161031c919061130c565b60405180910390f35b61033f600480360381019061033a9190611325565b610a42565b60405161034c9190611269565b60405180910390f35b61036f600480360381019061036a91906112d2565b610ac4565b005b60606004805461038090611390565b80601f01602080910402602001604051908101604052809291908181526020018280546103ac90611390565b80156103f75780601f106103ce576101008083540402835291602001916103f7565b820191905f5260205f20905b8154815290600101906020018083116103da57829003601f168201915b5050505050905090565b5f61041461040d610c6c565b8484610c73565b6001905092915050565b60075481565b5f600254905090565b5f610439848484610e36565b5f60015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f610480610c6c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050828110156104ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016104f690611430565b60405180910390fd5b61051c8561050b610c6c565b8584610517919061147b565b610c73565b60019150509392505050565b5f600354905090565b5f6105ce61053d610c6c565b848460015f61054a610c6c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20546105c991906114ae565b610c73565b6001905092915050565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b610625610c6c565b73ffffffffffffffffffffffffffffffffffffffff16610643610859565b73ffffffffffffffffffffffffffffffffffffffff1614610699576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106909061152b565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff1660065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35f60065f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b61075e610c6c565b73ffffffffffffffffffffffffffffffffffffffff1661077c610859565b73ffffffffffffffffffffffffffffffffffffffff16146107d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107c99061152b565b60405180910390fd5b8173ffffffffffffffffffffffffffffffffffffffff1663a9059cbb6107f6610859565b836040518363ffffffff1660e01b8152600401610814929190611549565b6020604051808303815f875af1158015610830573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610854919061159a565b505050565b5f60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606005805461089090611390565b80601f01602080910402602001604051908101604052809291908181526020018280546108bc90611390565b80156109075780601f106108de57610100808354040283529160200191610907565b820191905f5260205f20905b8154815290600101906020018083116108ea57829003601f168201915b5050505050905090565b5f8060015f61091e610c6c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050828110156109d8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109cf90611635565b60405180910390fd5b6109f56109e3610c6c565b8585846109f0919061147b565b610c73565b600191505092915050565b5f610a13610a0c610c6c565b8484610e36565b6001905092915050565b60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b610acc610c6c565b73ffffffffffffffffffffffffffffffffffffffff16610aea610859565b73ffffffffffffffffffffffffffffffffffffffff1614610b40576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b379061152b565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610bae576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ba5906116c3565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1660065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a38060065f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b5f33905090565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610ce1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cd890611751565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610d4f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d46906117df565b60405180910390fd5b8060015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610e299190611269565b60405180910390a3505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610ea4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e9b9061186d565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610f12576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f09906118fb565b60405180910390fd5b610f1d8383836110a9565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015610fa0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f9790611989565b60405180910390fd5b8181610fac919061147b565b5f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550815f808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825461103791906114ae565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161109b9190611269565b60405180910390a350505050565b505050565b5f81519050919050565b5f82825260208201905092915050565b5f5b838110156110e55780820151818401526020810190506110ca565b5f8484015250505050565b5f601f19601f8301169050919050565b5f61110a826110ae565b61111481856110b8565b93506111248185602086016110c8565b61112d816110f0565b840191505092915050565b5f6020820190508181035f8301526111508184611100565b905092915050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f6111858261115c565b9050919050565b6111958161117b565b811461119f575f80fd5b50565b5f813590506111b08161118c565b92915050565b5f819050919050565b6111c8816111b6565b81146111d2575f80fd5b50565b5f813590506111e3816111bf565b92915050565b5f80604083850312156111ff576111fe611158565b5b5f61120c858286016111a2565b925050602061121d858286016111d5565b9150509250929050565b5f8115159050919050565b61123b81611227565b82525050565b5f6020820190506112545f830184611232565b92915050565b611263816111b6565b82525050565b5f60208201905061127c5f83018461125a565b92915050565b5f805f6060848603121561129957611298611158565b5b5f6112a6868287016111a2565b93505060206112b7868287016111a2565b92505060406112c8868287016111d5565b9150509250925092565b5f602082840312156112e7576112e6611158565b5b5f6112f4848285016111a2565b91505092915050565b6113068161117b565b82525050565b5f60208201905061131f5f8301846112fd565b92915050565b5f806040838503121561133b5761133a611158565b5b5f611348858286016111a2565b9250506020611359858286016111a2565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f60028204905060018216806113a757607f821691505b6020821081036113ba576113b9611363565b5b50919050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320615f8201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b5f61141a6028836110b8565b9150611425826113c0565b604082019050919050565b5f6020820190508181035f8301526114478161140e565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f611485826111b6565b9150611490836111b6565b92508282039050818111156114a8576114a761144e565b5b92915050565b5f6114b8826111b6565b91506114c3836111b6565b92508282019050808211156114db576114da61144e565b5b92915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f6115156020836110b8565b9150611520826114e1565b602082019050919050565b5f6020820190508181035f83015261154281611509565b9050919050565b5f60408201905061155c5f8301856112fd565b611569602083018461125a565b9392505050565b61157981611227565b8114611583575f80fd5b50565b5f8151905061159481611570565b92915050565b5f602082840312156115af576115ae611158565b5b5f6115bc84828501611586565b91505092915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f775f8201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b5f61161f6025836110b8565b915061162a826115c5565b604082019050919050565b5f6020820190508181035f83015261164c81611613565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f20615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f6116ad6026836110b8565b91506116b882611653565b604082019050919050565b5f6020820190508181035f8301526116da816116a1565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f61173b6024836110b8565b9150611746826116e1565b604082019050919050565b5f6020820190508181035f8301526117688161172f565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f6117c96022836110b8565b91506117d48261176f565b604082019050919050565b5f6020820190508181035f8301526117f6816117bd565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f2061645f8201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b5f6118576025836110b8565b9150611862826117fd565b604082019050919050565b5f6020820190508181035f8301526118848161184b565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f20616464725f8201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b5f6118e56023836110b8565b91506118f08261188b565b604082019050919050565b5f6020820190508181035f830152611912816118d9565b9050919050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320625f8201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b5f6119736026836110b8565b915061197e82611919565b604082019050919050565b5f6020820190508181035f8301526119a081611967565b905091905056fea264697066735822122051273160c860b19b17cbff0e0b55315bd754b907b4c7bd14f87c5b2f78af79a364736f6c63430008170033

Deployed Bytecode Sourcemap

18769:272:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6771:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9013:194;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18814:64;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7900:108;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9689:493;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7733:102;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10591:290;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8071:143;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17492:148;;;:::i;:::-;;18550:185;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;16841:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6990:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11384:439;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8427:200;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16621:21;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8690:176;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17795:281;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;6771:100;6825:13;6858:5;6851:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6771:100;:::o;9013:194::-;9121:4;9138:39;9147:12;:10;:12::i;:::-;9161:7;9170:6;9138:8;:39::i;:::-;9195:4;9188:11;;9013:194;;;;:::o;18814:64::-;;;;:::o;7900:108::-;7961:7;7988:12;;7981:19;;7900:108;:::o;9689:493::-;9829:4;9846:36;9856:6;9864:9;9875:6;9846:9;:36::i;:::-;9895:24;9922:11;:19;9934:6;9922:19;;;;;;;;;;;;;;;:33;9942:12;:10;:12::i;:::-;9922:33;;;;;;;;;;;;;;;;9895:60;;10008:6;9988:16;:26;;9966:116;;;;;;;;;;;;:::i;:::-;;;;;;;;;10093:57;10102:6;10110:12;:10;:12::i;:::-;10143:6;10124:16;:25;;;;:::i;:::-;10093:8;:57::i;:::-;10170:4;10163:11;;;9689:493;;;;;:::o;7733:102::-;7791:7;7818:9;;7811:16;;7733:102;:::o;10591:290::-;10704:4;10721:130;10744:12;:10;:12::i;:::-;10771:7;10830:10;10793:11;:25;10805:12;:10;:12::i;:::-;10793:25;;;;;;;;;;;;;;;:34;10819:7;10793:34;;;;;;;;;;;;;;;;:47;;;;:::i;:::-;10721:8;:130::i;:::-;10869:4;10862:11;;10591:290;;;;:::o;8071:143::-;8161:7;8188:9;:18;8198:7;8188:18;;;;;;;;;;;;;;;;8181:25;;8071:143;;;:::o;17492:148::-;17072:12;:10;:12::i;:::-;17061:23;;:7;:5;:7::i;:::-;:23;;;17053:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;17599:1:::1;17562:40;;17583:6;;;;;;;;;;;17562:40;;;;;;;;;;;;17630:1;17613:6;;:19;;;;;;;;;;;;;;;;;;17492:148::o:0;18550:185::-;17072:12;:10;:12::i;:::-;17061:23;;:7;:5;:7::i;:::-;:23;;;17053:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;18683:12:::1;18676:29;;;18706:7;:5;:7::i;:::-;18715:11;18676:51;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;18550:185:::0;;:::o;16841:87::-;16887:7;16914:6;;;;;;;;;;;16907:13;;16841:87;:::o;6990:104::-;7046:13;7079:7;7072:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6990:104;:::o;11384:439::-;11502:4;11519:24;11546:11;:25;11558:12;:10;:12::i;:::-;11546:25;;;;;;;;;;;;;;;:34;11572:7;11546:34;;;;;;;;;;;;;;;;11519:61;;11633:15;11613:16;:35;;11591:122;;;;;;;;;;;;:::i;:::-;;;;;;;;;11724:67;11733:12;:10;:12::i;:::-;11747:7;11775:15;11756:16;:34;;;;:::i;:::-;11724:8;:67::i;:::-;11811:4;11804:11;;;11384:439;;;;:::o;8427:200::-;8538:4;8555:42;8565:12;:10;:12::i;:::-;8579:9;8590:6;8555:9;:42::i;:::-;8615:4;8608:11;;8427:200;;;;:::o;16621:21::-;;;;;;;;;;;;;:::o;8690:176::-;8804:7;8831:11;:18;8843:5;8831:18;;;;;;;;;;;;;;;:27;8850:7;8831:27;;;;;;;;;;;;;;;;8824:34;;8690:176;;;;:::o;17795:281::-;17072:12;:10;:12::i;:::-;17061:23;;:7;:5;:7::i;:::-;:23;;;17053:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;17918:1:::1;17898:22;;:8;:22;;::::0;17876:110:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;18031:8;18002:38;;18023:6;;;;;;;;;;;18002:38;;;;;;;;;;;;18060:8;18051:6;;:17;;;;;;;;;;;;;;;;;;17795:281:::0;:::o;4287:98::-;4340:7;4367:10;4360:17;;4287:98;:::o;14873:380::-;15026:1;15009:19;;:5;:19;;;15001:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;15107:1;15088:21;;:7;:21;;;15080:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;15191:6;15161:11;:18;15173:5;15161:18;;;;;;;;;;;;;;;:27;15180:7;15161:27;;;;;;;;;;;;;;;:36;;;;15229:7;15213:32;;15222:5;15213:32;;;15238:6;15213:32;;;;;;:::i;:::-;;;;;;;;14873:380;;;:::o;12313:675::-;12471:1;12453:20;;:6;:20;;;12445:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;12555:1;12534:23;;:9;:23;;;12526:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;12610:47;12631:6;12639:9;12650:6;12610:20;:47::i;:::-;12670:21;12694:9;:17;12704:6;12694:17;;;;;;;;;;;;;;;;12670:41;;12761:6;12744:13;:23;;12722:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;12880:6;12864:13;:22;;;;:::i;:::-;12844:9;:17;12854:6;12844:17;;;;;;;;;;;;;;;:42;;;;12921:6;12897:9;:20;12907:9;12897:20;;;;;;;;;;;;;;;;:30;;;;;;;:::i;:::-;;;;;;;;12962:9;12945:35;;12954:6;12945:35;;;12973:6;12945:35;;;;;;:::i;:::-;;;;;;;;12434:554;12313:675;;;:::o;15856:125::-;;;;:::o;7:99:1:-;59:6;93:5;87:12;77:22;;7:99;;;:::o;112:169::-;196:11;230:6;225:3;218:19;270:4;265:3;261:14;246:29;;112:169;;;;:::o;287:246::-;368:1;378:113;392:6;389:1;386:13;378:113;;;477:1;472:3;468:11;462:18;458:1;453:3;449:11;442:39;414:2;411:1;407:10;402:15;;378:113;;;525:1;516:6;511:3;507:16;500:27;349:184;287:246;;;:::o;539:102::-;580:6;631:2;627:7;622:2;615:5;611:14;607:28;597:38;;539:102;;;:::o;647:377::-;735:3;763:39;796:5;763:39;:::i;:::-;818:71;882:6;877:3;818:71;:::i;:::-;811:78;;898:65;956:6;951:3;944:4;937:5;933:16;898:65;:::i;:::-;988:29;1010:6;988:29;:::i;:::-;983:3;979:39;972:46;;739:285;647:377;;;;:::o;1030:313::-;1143:4;1181:2;1170:9;1166:18;1158:26;;1230:9;1224:4;1220:20;1216:1;1205:9;1201:17;1194:47;1258:78;1331:4;1322:6;1258:78;:::i;:::-;1250:86;;1030:313;;;;:::o;1430:117::-;1539:1;1536;1529:12;1676:126;1713:7;1753:42;1746:5;1742:54;1731:65;;1676:126;;;:::o;1808:96::-;1845:7;1874:24;1892:5;1874:24;:::i;:::-;1863:35;;1808:96;;;:::o;1910:122::-;1983:24;2001:5;1983:24;:::i;:::-;1976:5;1973:35;1963:63;;2022:1;2019;2012:12;1963:63;1910:122;:::o;2038:139::-;2084:5;2122:6;2109:20;2100:29;;2138:33;2165:5;2138:33;:::i;:::-;2038:139;;;;:::o;2183:77::-;2220:7;2249:5;2238:16;;2183:77;;;:::o;2266:122::-;2339:24;2357:5;2339:24;:::i;:::-;2332:5;2329:35;2319:63;;2378:1;2375;2368:12;2319:63;2266:122;:::o;2394:139::-;2440:5;2478:6;2465:20;2456:29;;2494:33;2521:5;2494:33;:::i;:::-;2394:139;;;;:::o;2539:474::-;2607:6;2615;2664:2;2652:9;2643:7;2639:23;2635:32;2632:119;;;2670:79;;:::i;:::-;2632:119;2790:1;2815:53;2860:7;2851:6;2840:9;2836:22;2815:53;:::i;:::-;2805:63;;2761:117;2917:2;2943:53;2988:7;2979:6;2968:9;2964:22;2943:53;:::i;:::-;2933:63;;2888:118;2539:474;;;;;:::o;3019:90::-;3053:7;3096:5;3089:13;3082:21;3071:32;;3019:90;;;:::o;3115:109::-;3196:21;3211:5;3196:21;:::i;:::-;3191:3;3184:34;3115:109;;:::o;3230:210::-;3317:4;3355:2;3344:9;3340:18;3332:26;;3368:65;3430:1;3419:9;3415:17;3406:6;3368:65;:::i;:::-;3230:210;;;;:::o;3446:118::-;3533:24;3551:5;3533:24;:::i;:::-;3528:3;3521:37;3446:118;;:::o;3570:222::-;3663:4;3701:2;3690:9;3686:18;3678:26;;3714:71;3782:1;3771:9;3767:17;3758:6;3714:71;:::i;:::-;3570:222;;;;:::o;3798:619::-;3875:6;3883;3891;3940:2;3928:9;3919:7;3915:23;3911:32;3908:119;;;3946:79;;:::i;:::-;3908:119;4066:1;4091:53;4136:7;4127:6;4116:9;4112:22;4091:53;:::i;:::-;4081:63;;4037:117;4193:2;4219:53;4264:7;4255:6;4244:9;4240:22;4219:53;:::i;:::-;4209:63;;4164:118;4321:2;4347:53;4392:7;4383:6;4372:9;4368:22;4347:53;:::i;:::-;4337:63;;4292:118;3798:619;;;;;:::o;4423:329::-;4482:6;4531:2;4519:9;4510:7;4506:23;4502:32;4499:119;;;4537:79;;:::i;:::-;4499:119;4657:1;4682:53;4727:7;4718:6;4707:9;4703:22;4682:53;:::i;:::-;4672:63;;4628:117;4423:329;;;;:::o;4758:118::-;4845:24;4863:5;4845:24;:::i;:::-;4840:3;4833:37;4758:118;;:::o;4882:222::-;4975:4;5013:2;5002:9;4998:18;4990:26;;5026:71;5094:1;5083:9;5079:17;5070:6;5026:71;:::i;:::-;4882:222;;;;:::o;5110:474::-;5178:6;5186;5235:2;5223:9;5214:7;5210:23;5206:32;5203:119;;;5241:79;;:::i;:::-;5203:119;5361:1;5386:53;5431:7;5422:6;5411:9;5407:22;5386:53;:::i;:::-;5376:63;;5332:117;5488:2;5514:53;5559:7;5550:6;5539:9;5535:22;5514:53;:::i;:::-;5504:63;;5459:118;5110:474;;;;;:::o;5590:180::-;5638:77;5635:1;5628:88;5735:4;5732:1;5725:15;5759:4;5756:1;5749:15;5776:320;5820:6;5857:1;5851:4;5847:12;5837:22;;5904:1;5898:4;5894:12;5925:18;5915:81;;5981:4;5973:6;5969:17;5959:27;;5915:81;6043:2;6035:6;6032:14;6012:18;6009:38;6006:84;;6062:18;;:::i;:::-;6006:84;5827:269;5776:320;;;:::o;6102:227::-;6242:34;6238:1;6230:6;6226:14;6219:58;6311:10;6306:2;6298:6;6294:15;6287:35;6102:227;:::o;6335:366::-;6477:3;6498:67;6562:2;6557:3;6498:67;:::i;:::-;6491:74;;6574:93;6663:3;6574:93;:::i;:::-;6692:2;6687:3;6683:12;6676:19;;6335:366;;;:::o;6707:419::-;6873:4;6911:2;6900:9;6896:18;6888:26;;6960:9;6954:4;6950:20;6946:1;6935:9;6931:17;6924:47;6988:131;7114:4;6988:131;:::i;:::-;6980:139;;6707:419;;;:::o;7132:180::-;7180:77;7177:1;7170:88;7277:4;7274:1;7267:15;7301:4;7298:1;7291:15;7318:194;7358:4;7378:20;7396:1;7378:20;:::i;:::-;7373:25;;7412:20;7430:1;7412:20;:::i;:::-;7407:25;;7456:1;7453;7449:9;7441:17;;7480:1;7474:4;7471:11;7468:37;;;7485:18;;:::i;:::-;7468:37;7318:194;;;;:::o;7518:191::-;7558:3;7577:20;7595:1;7577:20;:::i;:::-;7572:25;;7611:20;7629:1;7611:20;:::i;:::-;7606:25;;7654:1;7651;7647:9;7640:16;;7675:3;7672:1;7669:10;7666:36;;;7682:18;;:::i;:::-;7666:36;7518:191;;;;:::o;7715:182::-;7855:34;7851:1;7843:6;7839:14;7832:58;7715:182;:::o;7903:366::-;8045:3;8066:67;8130:2;8125:3;8066:67;:::i;:::-;8059:74;;8142:93;8231:3;8142:93;:::i;:::-;8260:2;8255:3;8251:12;8244:19;;7903:366;;;:::o;8275:419::-;8441:4;8479:2;8468:9;8464:18;8456:26;;8528:9;8522:4;8518:20;8514:1;8503:9;8499:17;8492:47;8556:131;8682:4;8556:131;:::i;:::-;8548:139;;8275:419;;;:::o;8700:332::-;8821:4;8859:2;8848:9;8844:18;8836:26;;8872:71;8940:1;8929:9;8925:17;8916:6;8872:71;:::i;:::-;8953:72;9021:2;9010:9;9006:18;8997:6;8953:72;:::i;:::-;8700:332;;;;;:::o;9038:116::-;9108:21;9123:5;9108:21;:::i;:::-;9101:5;9098:32;9088:60;;9144:1;9141;9134:12;9088:60;9038:116;:::o;9160:137::-;9214:5;9245:6;9239:13;9230:22;;9261:30;9285:5;9261:30;:::i;:::-;9160:137;;;;:::o;9303:345::-;9370:6;9419:2;9407:9;9398:7;9394:23;9390:32;9387:119;;;9425:79;;:::i;:::-;9387:119;9545:1;9570:61;9623:7;9614:6;9603:9;9599:22;9570:61;:::i;:::-;9560:71;;9516:125;9303:345;;;;:::o;9654:224::-;9794:34;9790:1;9782:6;9778:14;9771:58;9863:7;9858:2;9850:6;9846:15;9839:32;9654:224;:::o;9884:366::-;10026:3;10047:67;10111:2;10106:3;10047:67;:::i;:::-;10040:74;;10123:93;10212:3;10123:93;:::i;:::-;10241:2;10236:3;10232:12;10225:19;;9884:366;;;:::o;10256:419::-;10422:4;10460:2;10449:9;10445:18;10437:26;;10509:9;10503:4;10499:20;10495:1;10484:9;10480:17;10473:47;10537:131;10663:4;10537:131;:::i;:::-;10529:139;;10256:419;;;:::o;10681:225::-;10821:34;10817:1;10809:6;10805:14;10798:58;10890:8;10885:2;10877:6;10873:15;10866:33;10681:225;:::o;10912:366::-;11054:3;11075:67;11139:2;11134:3;11075:67;:::i;:::-;11068:74;;11151:93;11240:3;11151:93;:::i;:::-;11269:2;11264:3;11260:12;11253:19;;10912:366;;;:::o;11284:419::-;11450:4;11488:2;11477:9;11473:18;11465:26;;11537:9;11531:4;11527:20;11523:1;11512:9;11508:17;11501:47;11565:131;11691:4;11565:131;:::i;:::-;11557:139;;11284:419;;;:::o;11709:223::-;11849:34;11845:1;11837:6;11833:14;11826:58;11918:6;11913:2;11905:6;11901:15;11894:31;11709:223;:::o;11938:366::-;12080:3;12101:67;12165:2;12160:3;12101:67;:::i;:::-;12094:74;;12177:93;12266:3;12177:93;:::i;:::-;12295:2;12290:3;12286:12;12279:19;;11938:366;;;:::o;12310:419::-;12476:4;12514:2;12503:9;12499:18;12491:26;;12563:9;12557:4;12553:20;12549:1;12538:9;12534:17;12527:47;12591:131;12717:4;12591:131;:::i;:::-;12583:139;;12310:419;;;:::o;12735:221::-;12875:34;12871:1;12863:6;12859:14;12852:58;12944:4;12939:2;12931:6;12927:15;12920:29;12735:221;:::o;12962:366::-;13104:3;13125:67;13189:2;13184:3;13125:67;:::i;:::-;13118:74;;13201:93;13290:3;13201:93;:::i;:::-;13319:2;13314:3;13310:12;13303:19;;12962:366;;;:::o;13334:419::-;13500:4;13538:2;13527:9;13523:18;13515:26;;13587:9;13581:4;13577:20;13573:1;13562:9;13558:17;13551:47;13615:131;13741:4;13615:131;:::i;:::-;13607:139;;13334:419;;;:::o;13759:224::-;13899:34;13895:1;13887:6;13883:14;13876:58;13968:7;13963:2;13955:6;13951:15;13944:32;13759:224;:::o;13989:366::-;14131:3;14152:67;14216:2;14211:3;14152:67;:::i;:::-;14145:74;;14228:93;14317:3;14228:93;:::i;:::-;14346:2;14341:3;14337:12;14330:19;;13989:366;;;:::o;14361:419::-;14527:4;14565:2;14554:9;14550:18;14542:26;;14614:9;14608:4;14604:20;14600:1;14589:9;14585:17;14578:47;14642:131;14768:4;14642:131;:::i;:::-;14634:139;;14361:419;;;:::o;14786:222::-;14926:34;14922:1;14914:6;14910:14;14903:58;14995:5;14990:2;14982:6;14978:15;14971:30;14786:222;:::o;15014:366::-;15156:3;15177:67;15241:2;15236:3;15177:67;:::i;:::-;15170:74;;15253:93;15342:3;15253:93;:::i;:::-;15371:2;15366:3;15362:12;15355:19;;15014:366;;;:::o;15386:419::-;15552:4;15590:2;15579:9;15575:18;15567:26;;15639:9;15633:4;15629:20;15625:1;15614:9;15610:17;15603:47;15667:131;15793:4;15667:131;:::i;:::-;15659:139;;15386:419;;;:::o;15811:225::-;15951:34;15947:1;15939:6;15935:14;15928:58;16020:8;16015:2;16007:6;16003:15;15996:33;15811:225;:::o;16042:366::-;16184:3;16205:67;16269:2;16264:3;16205:67;:::i;:::-;16198:74;;16281:93;16370:3;16281:93;:::i;:::-;16399:2;16394:3;16390:12;16383:19;;16042:366;;;:::o;16414:419::-;16580:4;16618:2;16607:9;16603:18;16595:26;;16667:9;16661:4;16657:20;16653:1;16642:9;16638:17;16631:47;16695:131;16821:4;16695:131;:::i;:::-;16687:139;;16414:419;;;:::o

Swarm Source

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