ETH Price: $3,298.63 (-3.32%)
Gas: 19 Gwei

Token

ImTired (IMTD)
 

Overview

Max Total Supply

5,555 IMTD

Holders

2,378

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Balance
1 IMTD
0x9b9cc63626692b73b65b315cb586a7b543d3391f
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:
ImTired

Compiler Version
v0.8.4+commit.c7e474f2

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, GNU GPLv3 license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-06-04
*/

// SPDX-License-Identifier: GPL-3.0
// File: @openzeppelin/contracts/utils/Strings.sol


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

pragma solidity ^0.8.0;

/**
 * @dev String operations.
 */
library Strings {
    bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef";

    /**
     * @dev Converts a `uint256` to its ASCII `string` decimal representation.
     */
    function toString(uint256 value) internal pure returns (string memory) {
        // Inspired by OraclizeAPI's implementation - MIT licence
        // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol

        if (value == 0) {
            return "0";
        }
        uint256 temp = value;
        uint256 digits;
        while (temp != 0) {
            digits++;
            temp /= 10;
        }
        bytes memory buffer = new bytes(digits);
        while (value != 0) {
            digits -= 1;
            buffer[digits] = bytes1(uint8(48 + uint256(value % 10)));
            value /= 10;
        }
        return string(buffer);
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.
     */
    function toHexString(uint256 value) internal pure returns (string memory) {
        if (value == 0) {
            return "0x00";
        }
        uint256 temp = value;
        uint256 length = 0;
        while (temp != 0) {
            length++;
            temp >>= 8;
        }
        return toHexString(value, length);
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length.
     */
    function toHexString(uint256 value, uint256 length) internal pure returns (string memory) {
        bytes memory buffer = new bytes(2 * length + 2);
        buffer[0] = "0";
        buffer[1] = "x";
        for (uint256 i = 2 * length + 1; i > 1; --i) {
            buffer[i] = _HEX_SYMBOLS[value & 0xf];
            value >>= 4;
        }
        require(value == 0, "Strings: hex length insufficient");
        return string(buffer);
    }
}

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


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

pragma solidity ^0.8.0;

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

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

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


// OpenZeppelin Contracts v4.4.1 (access/Ownable.sol)

pragma solidity ^0.8.0;


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

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

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

    /**
     * @dev 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 {
        _transferOwnership(address(0));
    }

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

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Internal function without access restriction.
     */
    function _transferOwnership(address newOwner) internal virtual {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

// File: contracts/IERC721A.sol


// ERC721A Contracts v4.0.0
// Creator: Chiru Labs

pragma solidity ^0.8.4;

/**
 * @dev Interface of an ERC721A compliant contract.
 */
interface IERC721A {
    /**
     * The caller must own the token or be an approved operator.
     */
    error ApprovalCallerNotOwnerNorApproved();

    /**
     * The token does not exist.
     */
    error ApprovalQueryForNonexistentToken();

    /**
     * The caller cannot approve to their own address.
     */
    error ApproveToCaller();

    /**
     * The caller cannot approve to the current owner.
     */
    error ApprovalToCurrentOwner();

    /**
     * Cannot query the balance for the zero address.
     */
    error BalanceQueryForZeroAddress();

    /**
     * Cannot mint to the zero address.
     */
    error MintToZeroAddress();

    /**
     * The quantity of tokens minted must be more than zero.
     */
    error MintZeroQuantity();

    /**
     * The token does not exist.
     */
    error OwnerQueryForNonexistentToken();

    /**
     * The caller must own the token or be an approved operator.
     */
    error TransferCallerNotOwnerNorApproved();

    /**
     * The token must be owned by `from`.
     */
    error TransferFromIncorrectOwner();

    /**
     * Cannot safely transfer to a contract that does not implement the ERC721Receiver interface.
     */
    error TransferToNonERC721ReceiverImplementer();

    /**
     * Cannot transfer to the zero address.
     */
    error TransferToZeroAddress();

    /**
     * The token does not exist.
     */
    error URIQueryForNonexistentToken();

    struct TokenOwnership {
        // The address of the owner.
        address addr;
        // Keeps track of the start time of ownership with minimal overhead for tokenomics.
        uint64 startTimestamp;
        // Whether the token has been burned.
        bool burned;
    }

    /**
     * @dev Returns the total amount of tokens stored by the contract.
     *
     * Burned tokens are calculated here, use `_totalMinted()` if you want to count just minted tokens.
     */
    function totalSupply() external view returns (uint256);

    // ==============================
    //            IERC165
    // ==============================

    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section]
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30 000 gas.
     */
    function supportsInterface(bytes4 interfaceId) external view returns (bool);

    // ==============================
    //            IERC721
    // ==============================

    /**
     * @dev Emitted when `tokenId` token is transferred from `from` to `to`.
     */
    event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);

    /**
     * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token.
     */
    event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId);

    /**
     * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets.
     */
    event ApprovalForAll(address indexed owner, address indexed operator, bool approved);

    /**
     * @dev Returns the number of tokens in ``owner``'s account.
     */
    function balanceOf(address owner) external view returns (uint256 balance);

    /**
     * @dev Returns the owner of the `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function ownerOf(uint256 tokenId) external view returns (address owner);

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes calldata data
    ) external;

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
     * are aware of the ERC721 protocol to prevent tokens from being forever locked.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

    /**
     * @dev Transfers `tokenId` token from `from` to `to`.
     *
     * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

    /**
     * @dev Gives permission to `to` to transfer `tokenId` token to another account.
     * The approval is cleared when the token is transferred.
     *
     * Only a single account can be approved at a time, so approving the zero address clears previous approvals.
     *
     * Requirements:
     *
     * - The caller must own the token or be an approved operator.
     * - `tokenId` must exist.
     *
     * Emits an {Approval} event.
     */
    function approve(address to, uint256 tokenId) external;

    /**
     * @dev Approve or remove `operator` as an operator for the caller.
     * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller.
     *
     * Requirements:
     *
     * - The `operator` cannot be the caller.
     *
     * Emits an {ApprovalForAll} event.
     */
    function setApprovalForAll(address operator, bool _approved) external;

    /**
     * @dev Returns the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId) external view returns (address operator);

    /**
     * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`.
     *
     * See {setApprovalForAll}
     */
    function isApprovedForAll(address owner, address operator) external view returns (bool);

    // ==============================
    //        IERC721Metadata
    // ==============================

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

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

    /**
     * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token.
     */
    function tokenURI(uint256 tokenId) external view returns (string memory);
}
// File: contracts/ERC721A.sol


// ERC721A Contracts v4.0.0
// Creator: Chiru Labs

pragma solidity ^0.8.4;


/**
 * @dev ERC721 token receiver interface.
 */
interface ERC721A__IERC721Receiver {
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}

/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata extension. Built to optimize for lower gas during batch mints.
 *
 * Assumes serials are sequentially minted starting at _startTokenId() (defaults to 0, e.g. 0, 1, 2, 3..).
 *
 * Assumes that an owner cannot have more than 2**64 - 1 (max value of uint64) of supply.
 *
 * Assumes that the maximum token id cannot exceed 2**256 - 1 (max value of uint256).
 */
contract ERC721A is IERC721A {
    // Mask of an entry in packed address data.
    uint256 private constant BITMASK_ADDRESS_DATA_ENTRY = (1 << 64) - 1;

    // The bit position of `numberMinted` in packed address data.
    uint256 private constant BITPOS_NUMBER_MINTED = 64;

    // The bit position of `numberBurned` in packed address data.
    uint256 private constant BITPOS_NUMBER_BURNED = 128;

    // The bit position of `aux` in packed address data.
    uint256 private constant BITPOS_AUX = 192;

    // Mask of all 256 bits in packed address data except the 64 bits for `aux`.
    uint256 private constant BITMASK_AUX_COMPLEMENT = (1 << 192) - 1;

    // The bit position of `startTimestamp` in packed ownership.
    uint256 private constant BITPOS_START_TIMESTAMP = 160;

    // The bit mask of the `burned` bit in packed ownership.
    uint256 private constant BITMASK_BURNED = 1 << 224;

    // The bit position of the `nextInitialized` bit in packed ownership.
    uint256 private constant BITPOS_NEXT_INITIALIZED = 225;

    // The bit mask of the `nextInitialized` bit in packed ownership.
    uint256 private constant BITMASK_NEXT_INITIALIZED = 1 << 225;

    // The tokenId of the next token to be minted.
    uint256 private _currentIndex;

    // The number of tokens burned.
    uint256 private _burnCounter;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to ownership details
    // An empty struct value does not necessarily mean the token is unowned.
    // See `_packedOwnershipOf` implementation for details.
    //
    // Bits Layout:
    // - [0..159]   `addr`
    // - [160..223] `startTimestamp`
    // - [224]      `burned`
    // - [225]      `nextInitialized`
    mapping(uint256 => uint256) private _packedOwnerships;

    // Mapping owner address to address data.
    //
    // Bits Layout:
    // - [0..63]    `balance`
    // - [64..127]  `numberMinted`
    // - [128..191] `numberBurned`
    // - [192..255] `aux`
    mapping(address => uint256) private _packedAddressData;

    // Mapping from token ID to approved address.
    mapping(uint256 => address) private _tokenApprovals;

    // Mapping from owner to operator approvals
    mapping(address => mapping(address => bool)) private _operatorApprovals;

    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
        _currentIndex = _startTokenId();
    }

    /**
     * @dev Returns the starting token ID.
     * To change the starting token ID, please override this function.
     */
    function _startTokenId() internal view virtual returns (uint256) {
        return 0;
    }

    /**
     * @dev Returns the next token ID to be minted.
     */
    function _nextTokenId() internal view returns (uint256) {
        return _currentIndex;
    }

    /**
     * @dev Returns the total number of tokens in existence.
     * Burned tokens will reduce the count.
     * To get the total number of tokens minted, please see `_totalMinted`.
     */
    function totalSupply() public view override returns (uint256) {
        // Counter underflow is impossible as _burnCounter cannot be incremented
        // more than `_currentIndex - _startTokenId()` times.
        unchecked {
            return _currentIndex - _burnCounter - _startTokenId();
        }
    }

    /**
     * @dev Returns the total amount of tokens minted in the contract.
     */
    function _totalMinted() internal view returns (uint256) {
        // Counter underflow is impossible as _currentIndex does not decrement,
        // and it is initialized to `_startTokenId()`
        unchecked {
            return _currentIndex - _startTokenId();
        }
    }

    /**
     * @dev Returns the total number of tokens burned.
     */
    function _totalBurned() internal view returns (uint256) {
        return _burnCounter;
    }

    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        // The interface IDs are constants representing the first 4 bytes of the XOR of
        // all function selectors in the interface. See: https://eips.ethereum.org/EIPS/eip-165
        // e.g. `bytes4(i.functionA.selector ^ i.functionB.selector ^ ...)`
        return
            interfaceId == 0x01ffc9a7 || // ERC165 interface ID for ERC165.
            interfaceId == 0x80ac58cd || // ERC165 interface ID for ERC721.
            interfaceId == 0x5b5e139f; // ERC165 interface ID for ERC721Metadata.
    }

    /**
     * @dev See {IERC721-balanceOf}.
     */
    function balanceOf(address owner) public view override returns (uint256) {
        if (_addressToUint256(owner) == 0) revert BalanceQueryForZeroAddress();
        return _packedAddressData[owner] & BITMASK_ADDRESS_DATA_ENTRY;
    }

    /**
     * Returns the number of tokens minted by `owner`.
     */
    function _numberMinted(address owner) internal view returns (uint256) {
        return (_packedAddressData[owner] >> BITPOS_NUMBER_MINTED) & BITMASK_ADDRESS_DATA_ENTRY;
    }

    /**
     * Returns the number of tokens burned by or on behalf of `owner`.
     */
    function _numberBurned(address owner) internal view returns (uint256) {
        return (_packedAddressData[owner] >> BITPOS_NUMBER_BURNED) & BITMASK_ADDRESS_DATA_ENTRY;
    }

    /**
     * Returns the auxillary data for `owner`. (e.g. number of whitelist mint slots used).
     */
    function _getAux(address owner) internal view returns (uint64) {
        return uint64(_packedAddressData[owner] >> BITPOS_AUX);
    }

    /**
     * Sets the auxillary data for `owner`. (e.g. number of whitelist mint slots used).
     * If there are multiple variables, please pack them into a uint64.
     */
    function _setAux(address owner, uint64 aux) internal {
        uint256 packed = _packedAddressData[owner];
        uint256 auxCasted;
        assembly { // Cast aux without masking.
            auxCasted := aux
        }
        packed = (packed & BITMASK_AUX_COMPLEMENT) | (auxCasted << BITPOS_AUX);
        _packedAddressData[owner] = packed;
    }

    /**
     * Returns the packed ownership data of `tokenId`.
     */
    function _packedOwnershipOf(uint256 tokenId) private view returns (uint256) {
        uint256 curr = tokenId;

        unchecked {
            if (_startTokenId() <= curr)
                if (curr < _currentIndex) {
                    uint256 packed = _packedOwnerships[curr];
                    // If not burned.
                    if (packed & BITMASK_BURNED == 0) {
                        // Invariant:
                        // There will always be an ownership that has an address and is not burned
                        // before an ownership that does not have an address and is not burned.
                        // Hence, curr will not underflow.
                        //
                        // We can directly compare the packed value.
                        // If the address is zero, packed is zero.
                        while (packed == 0) {
                            packed = _packedOwnerships[--curr];
                        }
                        return packed;
                    }
                }
        }
        revert OwnerQueryForNonexistentToken();
    }

    /**
     * Returns the unpacked `TokenOwnership` struct from `packed`.
     */
    function _unpackedOwnership(uint256 packed) private pure returns (TokenOwnership memory ownership) {
        ownership.addr = address(uint160(packed));
        ownership.startTimestamp = uint64(packed >> BITPOS_START_TIMESTAMP);
        ownership.burned = packed & BITMASK_BURNED != 0;
    }

    /**
     * Returns the unpacked `TokenOwnership` struct at `index`.
     */
    function _ownershipAt(uint256 index) internal view returns (TokenOwnership memory) {
        return _unpackedOwnership(_packedOwnerships[index]);
    }

    /**
     * @dev Initializes the ownership slot minted at `index` for efficiency purposes.
     */
    function _initializeOwnershipAt(uint256 index) internal {
        if (_packedOwnerships[index] == 0) {
            _packedOwnerships[index] = _packedOwnershipOf(index);
        }
    }

    /**
     * Gas spent here starts off proportional to the maximum mint batch size.
     * It gradually moves to O(1) as tokens get transferred around in the collection over time.
     */
    function _ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) {
        return _unpackedOwnership(_packedOwnershipOf(tokenId));
    }

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view override returns (address) {
        return address(uint160(_packedOwnershipOf(tokenId)));
    }

    /**
     * @dev See {IERC721Metadata-name}.
     */
    function name() public view virtual override returns (string memory) {
        return _name;
    }

    /**
     * @dev See {IERC721Metadata-symbol}.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        if (!_exists(tokenId)) revert URIQueryForNonexistentToken();

        string memory baseURI = _baseURI();
        return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, _toString(tokenId))) : '';
    }

    /**
     * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each
     * token will be the concatenation of the `baseURI` and the `tokenId`. Empty
     * by default, can be overriden in child contracts.
     */
    function _baseURI() internal view virtual returns (string memory) {
        return '';
    }

    /**
     * @dev Casts the address to uint256 without masking.
     */
    function _addressToUint256(address value) private pure returns (uint256 result) {
        assembly {
            result := value
        }
    }

    /**
     * @dev Casts the boolean to uint256 without branching.
     */
    function _boolToUint256(bool value) private pure returns (uint256 result) {
        assembly {
            result := value
        }
    }

    /**
     * @dev See {IERC721-approve}.
     */
    function approve(address to, uint256 tokenId) public override {
        address owner = address(uint160(_packedOwnershipOf(tokenId)));
        if (to == owner) revert ApprovalToCurrentOwner();

        if (_msgSenderERC721A() != owner)
            if (!isApprovedForAll(owner, _msgSenderERC721A())) {
                revert ApprovalCallerNotOwnerNorApproved();
            }

        _tokenApprovals[tokenId] = to;
        emit Approval(owner, to, tokenId);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view override returns (address) {
        if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken();

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        if (operator == _msgSenderERC721A()) revert ApproveToCaller();

        _operatorApprovals[_msgSenderERC721A()][operator] = approved;
        emit ApprovalForAll(_msgSenderERC721A(), operator, approved);
    }

    /**
     * @dev See {IERC721-isApprovedForAll}.
     */
    function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) {
        return _operatorApprovals[owner][operator];
    }

    /**
     * @dev See {IERC721-transferFrom}.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        _transfer(from, to, tokenId);
    }

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        safeTransferFrom(from, to, tokenId, '');
    }

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public virtual override {
        _transfer(from, to, tokenId);
        if (to.code.length != 0)
            if (!_checkContractOnERC721Received(from, to, tokenId, _data)) {
                revert TransferToNonERC721ReceiverImplementer();
            }
    }

    /**
     * @dev Returns whether `tokenId` exists.
     *
     * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}.
     *
     * Tokens start existing when they are minted (`_mint`),
     */
    function _exists(uint256 tokenId) internal view returns (bool) {
        return
            _startTokenId() <= tokenId &&
            tokenId < _currentIndex && // If within bounds,
            _packedOwnerships[tokenId] & BITMASK_BURNED == 0; // and not burned.
    }

    /**
     * @dev Equivalent to `_safeMint(to, quantity, '')`.
     */
    function _safeMint(address to, uint256 quantity) internal {
        _safeMint(to, quantity, '');
    }

    /**
     * @dev Safely mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - If `to` refers to a smart contract, it must implement
     *   {IERC721Receiver-onERC721Received}, which is called for each safe transfer.
     * - `quantity` must be greater than 0.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(
        address to,
        uint256 quantity,
        bytes memory _data
    ) internal {
        uint256 startTokenId = _currentIndex;
        if (_addressToUint256(to) == 0) revert MintToZeroAddress();
        if (quantity == 0) revert MintZeroQuantity();

        _beforeTokenTransfers(address(0), to, startTokenId, quantity);

        // Overflows are incredibly unrealistic.
        // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1
        // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1
        unchecked {
            // Updates:
            // - `balance += quantity`.
            // - `numberMinted += quantity`.
            //
            // We can directly add to the balance and number minted.
            _packedAddressData[to] += quantity * ((1 << BITPOS_NUMBER_MINTED) | 1);

            // Updates:
            // - `address` to the owner.
            // - `startTimestamp` to the timestamp of minting.
            // - `burned` to `false`.
            // - `nextInitialized` to `quantity == 1`.
            _packedOwnerships[startTokenId] =
                _addressToUint256(to) |
                (block.timestamp << BITPOS_START_TIMESTAMP) |
                (_boolToUint256(quantity == 1) << BITPOS_NEXT_INITIALIZED);

            uint256 updatedIndex = startTokenId;
            uint256 end = updatedIndex + quantity;

            if (to.code.length != 0) {
                do {
                    emit Transfer(address(0), to, updatedIndex);
                    if (!_checkContractOnERC721Received(address(0), to, updatedIndex++, _data)) {
                        revert TransferToNonERC721ReceiverImplementer();
                    }
                } while (updatedIndex < end);
                // Reentrancy protection
                if (_currentIndex != startTokenId) revert();
            } else {
                do {
                    emit Transfer(address(0), to, updatedIndex++);
                } while (updatedIndex < end);
            }
            _currentIndex = updatedIndex;
        }
        _afterTokenTransfers(address(0), to, startTokenId, quantity);
    }

    /**
     * @dev Mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `quantity` must be greater than 0.
     *
     * Emits a {Transfer} event.
     */
    function _mint(address to, uint256 quantity) internal {
        uint256 startTokenId = _currentIndex;
        if (_addressToUint256(to) == 0) revert MintToZeroAddress();
        if (quantity == 0) revert MintZeroQuantity();

        _beforeTokenTransfers(address(0), to, startTokenId, quantity);

        // Overflows are incredibly unrealistic.
        // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1
        // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1
        unchecked {
            // Updates:
            // - `balance += quantity`.
            // - `numberMinted += quantity`.
            //
            // We can directly add to the balance and number minted.
            _packedAddressData[to] += quantity * ((1 << BITPOS_NUMBER_MINTED) | 1);

            // Updates:
            // - `address` to the owner.
            // - `startTimestamp` to the timestamp of minting.
            // - `burned` to `false`.
            // - `nextInitialized` to `quantity == 1`.
            _packedOwnerships[startTokenId] =
                _addressToUint256(to) |
                (block.timestamp << BITPOS_START_TIMESTAMP) |
                (_boolToUint256(quantity == 1) << BITPOS_NEXT_INITIALIZED);

            uint256 updatedIndex = startTokenId;
            uint256 end = updatedIndex + quantity;

            do {
                emit Transfer(address(0), to, updatedIndex++);
            } while (updatedIndex < end);

            _currentIndex = updatedIndex;
        }
        _afterTokenTransfers(address(0), to, startTokenId, quantity);
    }

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     *
     * Emits a {Transfer} event.
     */
    function _transfer(
        address from,
        address to,
        uint256 tokenId
    ) private {
        uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId);

        if (address(uint160(prevOwnershipPacked)) != from) revert TransferFromIncorrectOwner();

        address approvedAddress = _tokenApprovals[tokenId];

        bool isApprovedOrOwner = (_msgSenderERC721A() == from ||
            isApprovedForAll(from, _msgSenderERC721A()) ||
            approvedAddress == _msgSenderERC721A());

        if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        if (_addressToUint256(to) == 0) revert TransferToZeroAddress();

        _beforeTokenTransfers(from, to, tokenId, 1);

        // Clear approvals from the previous owner.
        if (_addressToUint256(approvedAddress) != 0) {
            delete _tokenApprovals[tokenId];
        }

        // Underflow of the sender's balance is impossible because we check for
        // ownership above and the recipient's balance can't realistically overflow.
        // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256.
        unchecked {
            // We can directly increment and decrement the balances.
            --_packedAddressData[from]; // Updates: `balance -= 1`.
            ++_packedAddressData[to]; // Updates: `balance += 1`.

            // Updates:
            // - `address` to the next owner.
            // - `startTimestamp` to the timestamp of transfering.
            // - `burned` to `false`.
            // - `nextInitialized` to `true`.
            _packedOwnerships[tokenId] =
                _addressToUint256(to) |
                (block.timestamp << BITPOS_START_TIMESTAMP) |
                BITMASK_NEXT_INITIALIZED;

            // If the next slot may not have been initialized (i.e. `nextInitialized == false`) .
            if (prevOwnershipPacked & BITMASK_NEXT_INITIALIZED == 0) {
                uint256 nextTokenId = tokenId + 1;
                // If the next slot's address is zero and not burned (i.e. packed value is zero).
                if (_packedOwnerships[nextTokenId] == 0) {
                    // If the next slot is within bounds.
                    if (nextTokenId != _currentIndex) {
                        // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`.
                        _packedOwnerships[nextTokenId] = prevOwnershipPacked;
                    }
                }
            }
        }

        emit Transfer(from, to, tokenId);
        _afterTokenTransfers(from, to, tokenId, 1);
    }

    /**
     * @dev Equivalent to `_burn(tokenId, false)`.
     */
    function _burn(uint256 tokenId) internal virtual {
        _burn(tokenId, false);
    }

    /**
     * @dev Destroys `tokenId`.
     * The approval is cleared when the token is burned.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     *
     * Emits a {Transfer} event.
     */
    function _burn(uint256 tokenId, bool approvalCheck) internal virtual {
        uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId);

        address from = address(uint160(prevOwnershipPacked));
        address approvedAddress = _tokenApprovals[tokenId];

        if (approvalCheck) {
            bool isApprovedOrOwner = (_msgSenderERC721A() == from ||
                isApprovedForAll(from, _msgSenderERC721A()) ||
                approvedAddress == _msgSenderERC721A());

            if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        }

        _beforeTokenTransfers(from, address(0), tokenId, 1);

        // Clear approvals from the previous owner.
        if (_addressToUint256(approvedAddress) != 0) {
            delete _tokenApprovals[tokenId];
        }

        // Underflow of the sender's balance is impossible because we check for
        // ownership above and the recipient's balance can't realistically overflow.
        // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256.
        unchecked {
            // Updates:
            // - `balance -= 1`.
            // - `numberBurned += 1`.
            //
            // We can directly decrement the balance, and increment the number burned.
            // This is equivalent to `packed -= 1; packed += 1 << BITPOS_NUMBER_BURNED;`.
            _packedAddressData[from] += (1 << BITPOS_NUMBER_BURNED) - 1;

            // Updates:
            // - `address` to the last owner.
            // - `startTimestamp` to the timestamp of burning.
            // - `burned` to `true`.
            // - `nextInitialized` to `true`.
            _packedOwnerships[tokenId] =
                _addressToUint256(from) |
                (block.timestamp << BITPOS_START_TIMESTAMP) |
                BITMASK_BURNED |
                BITMASK_NEXT_INITIALIZED;

            // If the next slot may not have been initialized (i.e. `nextInitialized == false`) .
            if (prevOwnershipPacked & BITMASK_NEXT_INITIALIZED == 0) {
                uint256 nextTokenId = tokenId + 1;
                // If the next slot's address is zero and not burned (i.e. packed value is zero).
                if (_packedOwnerships[nextTokenId] == 0) {
                    // If the next slot is within bounds.
                    if (nextTokenId != _currentIndex) {
                        // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`.
                        _packedOwnerships[nextTokenId] = prevOwnershipPacked;
                    }
                }
            }
        }

        emit Transfer(from, address(0), tokenId);
        _afterTokenTransfers(from, address(0), tokenId, 1);

        // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times.
        unchecked {
            _burnCounter++;
        }
    }

    /**
     * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target contract.
     *
     * @param from address representing the previous owner of the given token ID
     * @param to target address that will receive the tokens
     * @param tokenId uint256 ID of the token to be transferred
     * @param _data bytes optional data to send along with the call
     * @return bool whether the call correctly returned the expected magic value
     */
    function _checkContractOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) private returns (bool) {
        try ERC721A__IERC721Receiver(to).onERC721Received(_msgSenderERC721A(), from, tokenId, _data) returns (
            bytes4 retval
        ) {
            return retval == ERC721A__IERC721Receiver(to).onERC721Received.selector;
        } catch (bytes memory reason) {
            if (reason.length == 0) {
                revert TransferToNonERC721ReceiverImplementer();
            } else {
                assembly {
                    revert(add(32, reason), mload(reason))
                }
            }
        }
    }

    /**
     * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting.
     * And also called before burning one token.
     *
     * startTokenId - the first token id to be transferred
     * quantity - the amount to be transferred
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be
     * transferred to `to`.
     * - When `from` is zero, `tokenId` will be minted for `to`.
     * - When `to` is zero, `tokenId` will be burned by `from`.
     * - `from` and `to` are never both zero.
     */
    function _beforeTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}

    /**
     * @dev Hook that is called after a set of serially-ordered token ids have been transferred. This includes
     * minting.
     * And also called after one token has been burned.
     *
     * startTokenId - the first token id to be transferred
     * quantity - the amount to be transferred
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, `from`'s `tokenId` has been
     * transferred to `to`.
     * - When `from` is zero, `tokenId` has been minted for `to`.
     * - When `to` is zero, `tokenId` has been burned by `from`.
     * - `from` and `to` are never both zero.
     */
    function _afterTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}

    /**
     * @dev Returns the message sender (defaults to `msg.sender`).
     *
     * If you are writing GSN compatible contracts, you need to override this function.
     */
    function _msgSenderERC721A() internal view virtual returns (address) {
        return msg.sender;
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` decimal representation.
     */
    function _toString(uint256 value) internal pure returns (string memory ptr) {
        assembly {
            // The maximum value of a uint256 contains 78 digits (1 byte per digit),
            // but we allocate 128 bytes to keep the free memory pointer 32-byte word aliged.
            // We will need 1 32-byte word to store the length,
            // and 3 32-byte words to store a maximum of 78 digits. Total: 32 + 3 * 32 = 128.
            ptr := add(mload(0x40), 128)
            // Update the free memory pointer to allocate.
            mstore(0x40, ptr)

            // Cache the end of the memory to calculate the length later.
            let end := ptr

            // We write the string from the rightmost digit to the leftmost digit.
            // The following is essentially a do-while loop that also handles the zero case.
            // Costs a bit more than early returning for the zero case,
            // but cheaper in terms of deployment and overall runtime costs.
            for {
                // Initialize and perform the first pass without check.
                let temp := value
                // Move the pointer 1 byte leftwards to point to an empty character slot.
                ptr := sub(ptr, 1)
                // Write the character to the pointer. 48 is the ASCII index of '0'.
                mstore8(ptr, add(48, mod(temp, 10)))
                temp := div(temp, 10)
            } temp {
                // Keep dividing `temp` until zero.
                temp := div(temp, 10)
            } { // Body of the for loop.
                ptr := sub(ptr, 1)
                mstore8(ptr, add(48, mod(temp, 10)))
            }

            let length := sub(end, ptr)
            // Move the pointer 32 bytes leftwards to make room for the length.
            ptr := sub(ptr, 32)
            // Store the length.
            mstore(ptr, length)
        }
    }
}
// File: contracts/imtired.sol



pragma solidity ^0.8.4;



contract ImTired is ERC721A, Ownable {
  using Strings for uint256;

  string private baseURI;
  string public baseExtension = ".json";
  uint256 public maxSupply = 5555;
  uint256 public maxMintOneTime = 3;

  struct SaleConfig {
    uint32 freeMintCount;
    uint64 publicSalePriceWei;
    uint256 saleStartingTime;
  }
  SaleConfig public saleConfig = SaleConfig(
      2000,
      0.005 ether,
      1654362000
  );
  constructor(
    string memory _initBaseURI
  ) ERC721A("ImTired","IMTD") {
    setBaseURI(_initBaseURI);
    _safeMint(msg.sender,1);
  }


  function _baseURI() internal view virtual override returns (string memory) {
    return baseURI;
  }
  // public 
  function mint(address _to, uint256 _mintAmount) public payable {
    uint256 supply = totalSupply();
    require(block.timestamp > saleConfig.saleStartingTime,"sales not start.");
    require(_mintAmount > 0,"mint amount greater than zero.");
    require(_mintAmount <= maxMintOneTime,"can not mint this many one time");
    uint256 freeMintCount = saleConfig.freeMintCount;
    if(supply < freeMintCount){
        require(_mintAmount + supply <= saleConfig.freeMintCount,"free mint not enough");
        _safeMint(_to,_mintAmount);
    }else{
        uint256 publicSalePriceWei = saleConfig.publicSalePriceWei;
        require(supply + _mintAmount <= maxSupply,"reached max supply");
        require(msg.value >= _mintAmount * publicSalePriceWei,"not enough money");
        _safeMint(_to,_mintAmount);
    }
  }



  function tokenURI(uint256 tokenId)
    public
    view
    virtual
    override
    returns (string memory)
  {
    require(
      _exists(tokenId),
      "ERC721Metadata: URI query for nonexistent token"
    );
    string memory currentBaseURI = _baseURI();
    return bytes(currentBaseURI).length > 0
        ? string(abi.encodePacked(currentBaseURI, tokenId.toString(), baseExtension))
        : "";
  }

  //only owner
  function setStartingTime(uint256 _saleStartingTime) public onlyOwner {
    saleConfig.saleStartingTime = _saleStartingTime;
  }

  function setBaseURI(string memory _newBaseURI) public onlyOwner {
    baseURI = _newBaseURI;
  }

  function setBaseExtension(string memory _newBaseExtension) public onlyOwner {
    baseExtension = _newBaseExtension;
  }

  function withdraw() public payable onlyOwner {
    (bool os, ) = payable(owner()).call{value: address(this).balance}("");
    require(os);
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_initBaseURI","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","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":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintOneTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","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":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"saleConfig","outputs":[{"internalType":"uint32","name":"freeMintCount","type":"uint32"},{"internalType":"uint64","name":"publicSalePriceWei","type":"uint64"},{"internalType":"uint256","name":"saleStartingTime","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseExtension","type":"string"}],"name":"setBaseExtension","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_saleStartingTime","type":"uint256"}],"name":"setStartingTime","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","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":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]

60806040526040518060400160405280600581526020017f2e6a736f6e000000000000000000000000000000000000000000000000000000815250600a9080519060200190620000519291906200085e565b506115b3600b556003600c5560405180606001604052806107d063ffffffff1681526020016611c37937e0800067ffffffffffffffff16815260200163629b8f90815250600d60008201518160000160006101000a81548163ffffffff021916908363ffffffff16021790555060208201518160000160046101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506040820151816001015550503480156200010657600080fd5b5060405162003f4b38038062003f4b83398181016040528101906200012c9190620009c3565b6040518060400160405280600781526020017f496d5469726564000000000000000000000000000000000000000000000000008152506040518060400160405280600481526020017f494d5444000000000000000000000000000000000000000000000000000000008152508160029080519060200190620001b09291906200085e565b508060039080519060200190620001c99291906200085e565b50620001da6200022d60201b60201c565b600081905550505062000202620001f66200023260201b60201c565b6200023a60201b60201c565b62000213816200030060201b60201c565b62000226336001620003ab60201b60201c565b5062000d52565b600090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620003106200023260201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1662000336620003d160201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16146200038f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620003869062000ae6565b60405180910390fd5b8060099080519060200190620003a79291906200085e565b5050565b620003cd828260405180602001604052806000815250620003fb60201b60201c565b5050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60008054905060006200041485620006c460201b60201c565b14156200044d576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600083141562000489576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6200049e6000858386620006ce60201b60201c565b600160406001901b178302600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555060e16200050b60018514620006d460201b60201c565b901b60a042901b6200052386620006c460201b60201c565b1717600460008381526020019081526020016000208190555060008190506000848201905060008673ffffffffffffffffffffffffffffffffffffffff163b1462000634575b818673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4620005e06000878480600101955087620006de60201b60201c565b62000617576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b808210620005695782600054146200062e57600080fd5b620006a0565b5b818060010192508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a480821062000635575b816000819055505050620006be60008583866200085060201b60201c565b50505050565b6000819050919050565b50505050565b6000819050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a026200070c6200085660201b60201c565b8786866040518563ffffffff1660e01b815260040162000730949392919062000a92565b602060405180830381600087803b1580156200074b57600080fd5b505af19250505080156200077f57506040513d601f19601f820116820180604052508101906200077c919062000997565b60015b620007fd573d8060008114620007b2576040519150601f19603f3d011682016040523d82523d6000602084013e620007b7565b606091505b50600081511415620007f5576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b50505050565b600033905090565b8280546200086c9062000c34565b90600052602060002090601f016020900481019282620008905760008555620008dc565b82601f10620008ab57805160ff1916838001178555620008dc565b82800160010185558215620008dc579182015b82811115620008db578251825591602001919060010190620008be565b5b509050620008eb9190620008ef565b5090565b5b808211156200090a576000816000905550600101620008f0565b5090565b6000620009256200091f8462000b31565b62000b08565b9050828152602081018484840111156200093e57600080fd5b6200094b84828562000bfe565b509392505050565b600081519050620009648162000d38565b92915050565b600082601f8301126200097c57600080fd5b81516200098e8482602086016200090e565b91505092915050565b600060208284031215620009aa57600080fd5b6000620009ba8482850162000953565b91505092915050565b600060208284031215620009d657600080fd5b600082015167ffffffffffffffff811115620009f157600080fd5b620009ff848285016200096a565b91505092915050565b62000a138162000b94565b82525050565b600062000a268262000b67565b62000a32818562000b72565b935062000a4481856020860162000bfe565b62000a4f8162000cfe565b840191505092915050565b600062000a6960208362000b83565b915062000a768262000d0f565b602082019050919050565b62000a8c8162000bf4565b82525050565b600060808201905062000aa9600083018762000a08565b62000ab8602083018662000a08565b62000ac7604083018562000a81565b818103606083015262000adb818462000a19565b905095945050505050565b6000602082019050818103600083015262000b018162000a5a565b9050919050565b600062000b1462000b27565b905062000b22828262000c6a565b919050565b6000604051905090565b600067ffffffffffffffff82111562000b4f5762000b4e62000ccf565b5b62000b5a8262000cfe565b9050602081019050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600062000ba18262000bd4565b9050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b60005b8381101562000c1e57808201518184015260208101905062000c01565b8381111562000c2e576000848401525b50505050565b6000600282049050600182168062000c4d57607f821691505b6020821081141562000c645762000c6362000ca0565b5b50919050565b62000c758262000cfe565b810181811067ffffffffffffffff8211171562000c975762000c9662000ccf565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b62000d438162000ba8565b811462000d4f57600080fd5b50565b6131e98062000d626000396000f3fe6080604052600436106101815760003560e01c8063715018a6116100d1578063c66828621161008a578063da3ef23f11610064578063da3ef23f14610542578063e985e9c51461056b578063f2840c48146105a8578063f2fde38b146105d357610181565b8063c6682862146104af578063c87b56dd146104da578063d5abeb011461051757610181565b8063715018a6146103c35780638da5cb5b146103da57806390aa0b0f1461040557806395d89b4114610432578063a22cb4651461045d578063b88d4fde1461048657610181565b80633ccfd60b1161013e57806342842e0e1161011857806342842e0e146102f757806355f804b3146103205780636352211e1461034957806370a082311461038657610181565b80633ccfd60b146102a85780633f52e589146102b257806340c10f19146102db57610181565b806301ffc9a71461018657806306fdde03146101c3578063081812fc146101ee578063095ea7b31461022b57806318160ddd1461025457806323b872dd1461027f575b600080fd5b34801561019257600080fd5b506101ad60048036038101906101a89190612531565b6105fc565b6040516101ba9190612965565b60405180910390f35b3480156101cf57600080fd5b506101d861068e565b6040516101e59190612980565b60405180910390f35b3480156101fa57600080fd5b50610215600480360381019061021091906125c4565b610720565b60405161022291906128fe565b60405180910390f35b34801561023757600080fd5b50610252600480360381019061024d91906124f5565b61079c565b005b34801561026057600080fd5b50610269610943565b6040516102769190612ac2565b60405180910390f35b34801561028b57600080fd5b506102a660048036038101906102a191906123ef565b61095a565b005b6102b061096a565b005b3480156102be57600080fd5b506102d960048036038101906102d491906125c4565b610a66565b005b6102f560048036038101906102f091906124f5565b610aef565b005b34801561030357600080fd5b5061031e600480360381019061031991906123ef565b610d42565b005b34801561032c57600080fd5b5061034760048036038101906103429190612583565b610d62565b005b34801561035557600080fd5b50610370600480360381019061036b91906125c4565b610df8565b60405161037d91906128fe565b60405180910390f35b34801561039257600080fd5b506103ad60048036038101906103a8919061238a565b610e0a565b6040516103ba9190612ac2565b60405180910390f35b3480156103cf57600080fd5b506103d8610e9f565b005b3480156103e657600080fd5b506103ef610f27565b6040516103fc91906128fe565b60405180910390f35b34801561041157600080fd5b5061041a610f51565b60405161042993929190612add565b60405180910390f35b34801561043e57600080fd5b50610447610f8d565b6040516104549190612980565b60405180910390f35b34801561046957600080fd5b50610484600480360381019061047f91906124b9565b61101f565b005b34801561049257600080fd5b506104ad60048036038101906104a8919061243e565b611197565b005b3480156104bb57600080fd5b506104c461120a565b6040516104d19190612980565b60405180910390f35b3480156104e657600080fd5b5061050160048036038101906104fc91906125c4565b611298565b60405161050e9190612980565b60405180910390f35b34801561052357600080fd5b5061052c611342565b6040516105399190612ac2565b60405180910390f35b34801561054e57600080fd5b5061056960048036038101906105649190612583565b611348565b005b34801561057757600080fd5b50610592600480360381019061058d91906123b3565b6113de565b60405161059f9190612965565b60405180910390f35b3480156105b457600080fd5b506105bd611472565b6040516105ca9190612ac2565b60405180910390f35b3480156105df57600080fd5b506105fa60048036038101906105f5919061238a565b611478565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061065757506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806106875750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60606002805461069d90612ded565b80601f01602080910402602001604051908101604052809291908181526020018280546106c990612ded565b80156107165780601f106106eb57610100808354040283529160200191610716565b820191906000526020600020905b8154815290600101906020018083116106f957829003601f168201915b5050505050905090565b600061072b82611570565b610761576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006107a7826115cf565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561080f576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1661082e61169d565b73ffffffffffffffffffffffffffffffffffffffff16146108915761085a8161085561169d565b6113de565b610890576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600061094d6116a5565b6001546000540303905090565b6109658383836116aa565b505050565b610972611a72565b73ffffffffffffffffffffffffffffffffffffffff16610990610f27565b73ffffffffffffffffffffffffffffffffffffffff16146109e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109dd90612a02565b60405180910390fd5b60006109f0610f27565b73ffffffffffffffffffffffffffffffffffffffff1647604051610a13906128e9565b60006040518083038185875af1925050503d8060008114610a50576040519150601f19603f3d011682016040523d82523d6000602084013e610a55565b606091505b5050905080610a6357600080fd5b50565b610a6e611a72565b73ffffffffffffffffffffffffffffffffffffffff16610a8c610f27565b73ffffffffffffffffffffffffffffffffffffffff1614610ae2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ad990612a02565b60405180910390fd5b80600d6001018190555050565b6000610af9610943565b9050600d600101544211610b42576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b3990612a62565b60405180910390fd5b60008211610b85576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b7c90612a82565b60405180910390fd5b600c54821115610bca576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bc1906129a2565b60405180910390fd5b6000600d60000160009054906101000a900463ffffffff1663ffffffff16905080821015610c6a57600d60000160009054906101000a900463ffffffff1663ffffffff168284610c1a9190612bfe565b1115610c5b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c5290612aa2565b60405180910390fd5b610c658484611a7a565b610d3c565b6000600d60000160049054906101000a900467ffffffffffffffff1667ffffffffffffffff169050600b548484610ca19190612bfe565b1115610ce2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cd9906129e2565b60405180910390fd5b8084610cee9190612c85565b341015610d30576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d2790612a42565b60405180910390fd5b610d3a8585611a7a565b505b50505050565b610d5d83838360405180602001604052806000815250611197565b505050565b610d6a611a72565b73ffffffffffffffffffffffffffffffffffffffff16610d88610f27565b73ffffffffffffffffffffffffffffffffffffffff1614610dde576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dd590612a02565b60405180910390fd5b8060099080519060200190610df49291906121ae565b5050565b6000610e03826115cf565b9050919050565b600080610e1683611a98565b1415610e4e576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b610ea7611a72565b73ffffffffffffffffffffffffffffffffffffffff16610ec5610f27565b73ffffffffffffffffffffffffffffffffffffffff1614610f1b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f1290612a02565b60405180910390fd5b610f256000611aa2565b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600d8060000160009054906101000a900463ffffffff16908060000160049054906101000a900467ffffffffffffffff16908060010154905083565b606060038054610f9c90612ded565b80601f0160208091040260200160405190810160405280929190818152602001828054610fc890612ded565b80156110155780601f10610fea57610100808354040283529160200191611015565b820191906000526020600020905b815481529060010190602001808311610ff857829003601f168201915b5050505050905090565b61102761169d565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561108c576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806007600061109961169d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661114661169d565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161118b9190612965565b60405180910390a35050565b6111a28484846116aa565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611204576111cd84848484611b68565b611203576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b600a805461121790612ded565b80601f016020809104026020016040519081016040528092919081815260200182805461124390612ded565b80156112905780601f1061126557610100808354040283529160200191611290565b820191906000526020600020905b81548152906001019060200180831161127357829003601f168201915b505050505081565b60606112a382611570565b6112e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112d990612a22565b60405180910390fd5b60006112ec611cc8565b9050600081511161130c576040518060200160405280600081525061133a565b8061131684611d5a565b600a60405160200161132a939291906128b8565b6040516020818303038152906040525b915050919050565b600b5481565b611350611a72565b73ffffffffffffffffffffffffffffffffffffffff1661136e610f27565b73ffffffffffffffffffffffffffffffffffffffff16146113c4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113bb90612a02565b60405180910390fd5b80600a90805190602001906113da9291906121ae565b5050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600c5481565b611480611a72565b73ffffffffffffffffffffffffffffffffffffffff1661149e610f27565b73ffffffffffffffffffffffffffffffffffffffff16146114f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114eb90612a02565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611564576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161155b906129c2565b60405180910390fd5b61156d81611aa2565b50565b60008161157b6116a5565b1115801561158a575060005482105b80156115c8575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600080829050806115de6116a5565b11611666576000548110156116655760006004600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082161415611663575b600081141561165957600460008360019003935083815260200190815260200160002054905061162e565b8092505050611698565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b600033905090565b600090565b60006116b5826115cf565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161461171c576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60006006600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905060008573ffffffffffffffffffffffffffffffffffffffff1661177561169d565b73ffffffffffffffffffffffffffffffffffffffff1614806117a457506117a38661179e61169d565b6113de565b5b806117e157506117b261169d565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b90508061181a576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600061182586611a98565b141561185d576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61186a8686866001611f07565b600061187583611a98565b146118b1576006600085815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154600101919050819055507c020000000000000000000000000000000000000000000000000000000060a042901b61197887611a98565b1717600460008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084161415611a02576000600185019050600060046000838152602001908152602001600020541415611a005760005481146119ff578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611a6a8686866001611f0d565b505050505050565b600033905090565b611a94828260405180602001604052806000815250611f13565b5050565b6000819050919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611b8e61169d565b8786866040518563ffffffff1660e01b8152600401611bb09493929190612919565b602060405180830381600087803b158015611bca57600080fd5b505af1925050508015611bfb57506040513d601f19601f82011682018060405250810190611bf8919061255a565b60015b611c75573d8060008114611c2b576040519150601f19603f3d011682016040523d82523d6000602084013e611c30565b606091505b50600081511415611c6d576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b606060098054611cd790612ded565b80601f0160208091040260200160405190810160405280929190818152602001828054611d0390612ded565b8015611d505780601f10611d2557610100808354040283529160200191611d50565b820191906000526020600020905b815481529060010190602001808311611d3357829003601f168201915b5050505050905090565b60606000821415611da2576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611f02565b600082905060005b60008214611dd4578080611dbd90612e50565b915050600a82611dcd9190612c54565b9150611daa565b60008167ffffffffffffffff811115611e16577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611e485781602001600182028036833780820191505090505b5090505b60008514611efb57600182611e619190612cdf565b9150600a85611e709190612e99565b6030611e7c9190612bfe565b60f81b818381518110611eb8577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85611ef49190612c54565b9450611e4c565b8093505050505b919050565b50505050565b50505050565b6000805490506000611f2485611a98565b1415611f5c576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000831415611f97576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611fa46000858386611f07565b600160406001901b178302600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555060e1612009600185146121a4565b901b60a042901b61201986611a98565b1717600460008381526020019081526020016000208190555060008190506000848201905060008673ffffffffffffffffffffffffffffffffffffffff163b1461211d575b818673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46120cd6000878480600101955087611b68565b612103576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80821061205e57826000541461211857600080fd5b612188565b5b818060010192508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a480821061211e575b81600081905550505061219e6000858386611f0d565b50505050565b6000819050919050565b8280546121ba90612ded565b90600052602060002090601f0160209004810192826121dc5760008555612223565b82601f106121f557805160ff1916838001178555612223565b82800160010185558215612223579182015b82811115612222578251825591602001919060010190612207565b5b5090506122309190612234565b5090565b5b8082111561224d576000816000905550600101612235565b5090565b600061226461225f84612b39565b612b14565b90508281526020810184848401111561227c57600080fd5b612287848285612dab565b509392505050565b60006122a261229d84612b6a565b612b14565b9050828152602081018484840111156122ba57600080fd5b6122c5848285612dab565b509392505050565b6000813590506122dc81613157565b92915050565b6000813590506122f18161316e565b92915050565b60008135905061230681613185565b92915050565b60008151905061231b81613185565b92915050565b600082601f83011261233257600080fd5b8135612342848260208601612251565b91505092915050565b600082601f83011261235c57600080fd5b813561236c84826020860161228f565b91505092915050565b6000813590506123848161319c565b92915050565b60006020828403121561239c57600080fd5b60006123aa848285016122cd565b91505092915050565b600080604083850312156123c657600080fd5b60006123d4858286016122cd565b92505060206123e5858286016122cd565b9150509250929050565b60008060006060848603121561240457600080fd5b6000612412868287016122cd565b9350506020612423868287016122cd565b925050604061243486828701612375565b9150509250925092565b6000806000806080858703121561245457600080fd5b6000612462878288016122cd565b9450506020612473878288016122cd565b935050604061248487828801612375565b925050606085013567ffffffffffffffff8111156124a157600080fd5b6124ad87828801612321565b91505092959194509250565b600080604083850312156124cc57600080fd5b60006124da858286016122cd565b92505060206124eb858286016122e2565b9150509250929050565b6000806040838503121561250857600080fd5b6000612516858286016122cd565b925050602061252785828601612375565b9150509250929050565b60006020828403121561254357600080fd5b6000612551848285016122f7565b91505092915050565b60006020828403121561256c57600080fd5b600061257a8482850161230c565b91505092915050565b60006020828403121561259557600080fd5b600082013567ffffffffffffffff8111156125af57600080fd5b6125bb8482850161234b565b91505092915050565b6000602082840312156125d657600080fd5b60006125e484828501612375565b91505092915050565b6125f681612d13565b82525050565b61260581612d25565b82525050565b600061261682612bb0565b6126208185612bc6565b9350612630818560208601612dba565b61263981612f86565b840191505092915050565b600061264f82612bbb565b6126598185612be2565b9350612669818560208601612dba565b61267281612f86565b840191505092915050565b600061268882612bbb565b6126928185612bf3565b93506126a2818560208601612dba565b80840191505092915050565b600081546126bb81612ded565b6126c58186612bf3565b945060018216600081146126e057600181146126f157612724565b60ff19831686528186019350612724565b6126fa85612b9b565b60005b8381101561271c578154818901526001820191506020810190506126fd565b838801955050505b50505092915050565b600061273a601f83612be2565b915061274582612f97565b602082019050919050565b600061275d602683612be2565b915061276882612fc0565b604082019050919050565b6000612780601283612be2565b915061278b8261300f565b602082019050919050565b60006127a3602083612be2565b91506127ae82613038565b602082019050919050565b60006127c6602f83612be2565b91506127d182613061565b604082019050919050565b60006127e9601083612be2565b91506127f4826130b0565b602082019050919050565b600061280c601083612be2565b9150612817826130d9565b602082019050919050565b600061282f600083612bd7565b915061283a82613102565b600082019050919050565b6000612852601e83612be2565b915061285d82613105565b602082019050919050565b6000612875601483612be2565b91506128808261312e565b602082019050919050565b61289481612d7d565b82525050565b6128a381612d87565b82525050565b6128b281612d97565b82525050565b60006128c4828661267d565b91506128d0828561267d565b91506128dc82846126ae565b9150819050949350505050565b60006128f482612822565b9150819050919050565b600060208201905061291360008301846125ed565b92915050565b600060808201905061292e60008301876125ed565b61293b60208301866125ed565b612948604083018561288b565b818103606083015261295a818461260b565b905095945050505050565b600060208201905061297a60008301846125fc565b92915050565b6000602082019050818103600083015261299a8184612644565b905092915050565b600060208201905081810360008301526129bb8161272d565b9050919050565b600060208201905081810360008301526129db81612750565b9050919050565b600060208201905081810360008301526129fb81612773565b9050919050565b60006020820190508181036000830152612a1b81612796565b9050919050565b60006020820190508181036000830152612a3b816127b9565b9050919050565b60006020820190508181036000830152612a5b816127dc565b9050919050565b60006020820190508181036000830152612a7b816127ff565b9050919050565b60006020820190508181036000830152612a9b81612845565b9050919050565b60006020820190508181036000830152612abb81612868565b9050919050565b6000602082019050612ad7600083018461288b565b92915050565b6000606082019050612af2600083018661289a565b612aff60208301856128a9565b612b0c604083018461288b565b949350505050565b6000612b1e612b2f565b9050612b2a8282612e1f565b919050565b6000604051905090565b600067ffffffffffffffff821115612b5457612b53612f57565b5b612b5d82612f86565b9050602081019050919050565b600067ffffffffffffffff821115612b8557612b84612f57565b5b612b8e82612f86565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000612c0982612d7d565b9150612c1483612d7d565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612c4957612c48612eca565b5b828201905092915050565b6000612c5f82612d7d565b9150612c6a83612d7d565b925082612c7a57612c79612ef9565b5b828204905092915050565b6000612c9082612d7d565b9150612c9b83612d7d565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612cd457612cd3612eca565b5b828202905092915050565b6000612cea82612d7d565b9150612cf583612d7d565b925082821015612d0857612d07612eca565b5b828203905092915050565b6000612d1e82612d5d565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600063ffffffff82169050919050565b600067ffffffffffffffff82169050919050565b82818337600083830152505050565b60005b83811015612dd8578082015181840152602081019050612dbd565b83811115612de7576000848401525b50505050565b60006002820490506001821680612e0557607f821691505b60208210811415612e1957612e18612f28565b5b50919050565b612e2882612f86565b810181811067ffffffffffffffff82111715612e4757612e46612f57565b5b80604052505050565b6000612e5b82612d7d565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415612e8e57612e8d612eca565b5b600182019050919050565b6000612ea482612d7d565b9150612eaf83612d7d565b925082612ebf57612ebe612ef9565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f63616e206e6f74206d696e742074686973206d616e79206f6e652074696d6500600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f72656163686564206d617820737570706c790000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f6e6f7420656e6f756768206d6f6e657900000000000000000000000000000000600082015250565b7f73616c6573206e6f742073746172742e00000000000000000000000000000000600082015250565b50565b7f6d696e7420616d6f756e742067726561746572207468616e207a65726f2e0000600082015250565b7f66726565206d696e74206e6f7420656e6f756768000000000000000000000000600082015250565b61316081612d13565b811461316b57600080fd5b50565b61317781612d25565b811461318257600080fd5b50565b61318e81612d31565b811461319957600080fd5b50565b6131a581612d7d565b81146131b057600080fd5b5056fea2646970667358221220c3eb4727840b5ca1244955f9fdb54a51b1bd340029878c2f2921d0aef96cb83f64736f6c6343000804003300000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d597257414c375552434342365336376e323552454d79537a7039484e35553156656f564b5352325a743542352f00000000000000000000

Deployed Bytecode

0x6080604052600436106101815760003560e01c8063715018a6116100d1578063c66828621161008a578063da3ef23f11610064578063da3ef23f14610542578063e985e9c51461056b578063f2840c48146105a8578063f2fde38b146105d357610181565b8063c6682862146104af578063c87b56dd146104da578063d5abeb011461051757610181565b8063715018a6146103c35780638da5cb5b146103da57806390aa0b0f1461040557806395d89b4114610432578063a22cb4651461045d578063b88d4fde1461048657610181565b80633ccfd60b1161013e57806342842e0e1161011857806342842e0e146102f757806355f804b3146103205780636352211e1461034957806370a082311461038657610181565b80633ccfd60b146102a85780633f52e589146102b257806340c10f19146102db57610181565b806301ffc9a71461018657806306fdde03146101c3578063081812fc146101ee578063095ea7b31461022b57806318160ddd1461025457806323b872dd1461027f575b600080fd5b34801561019257600080fd5b506101ad60048036038101906101a89190612531565b6105fc565b6040516101ba9190612965565b60405180910390f35b3480156101cf57600080fd5b506101d861068e565b6040516101e59190612980565b60405180910390f35b3480156101fa57600080fd5b50610215600480360381019061021091906125c4565b610720565b60405161022291906128fe565b60405180910390f35b34801561023757600080fd5b50610252600480360381019061024d91906124f5565b61079c565b005b34801561026057600080fd5b50610269610943565b6040516102769190612ac2565b60405180910390f35b34801561028b57600080fd5b506102a660048036038101906102a191906123ef565b61095a565b005b6102b061096a565b005b3480156102be57600080fd5b506102d960048036038101906102d491906125c4565b610a66565b005b6102f560048036038101906102f091906124f5565b610aef565b005b34801561030357600080fd5b5061031e600480360381019061031991906123ef565b610d42565b005b34801561032c57600080fd5b5061034760048036038101906103429190612583565b610d62565b005b34801561035557600080fd5b50610370600480360381019061036b91906125c4565b610df8565b60405161037d91906128fe565b60405180910390f35b34801561039257600080fd5b506103ad60048036038101906103a8919061238a565b610e0a565b6040516103ba9190612ac2565b60405180910390f35b3480156103cf57600080fd5b506103d8610e9f565b005b3480156103e657600080fd5b506103ef610f27565b6040516103fc91906128fe565b60405180910390f35b34801561041157600080fd5b5061041a610f51565b60405161042993929190612add565b60405180910390f35b34801561043e57600080fd5b50610447610f8d565b6040516104549190612980565b60405180910390f35b34801561046957600080fd5b50610484600480360381019061047f91906124b9565b61101f565b005b34801561049257600080fd5b506104ad60048036038101906104a8919061243e565b611197565b005b3480156104bb57600080fd5b506104c461120a565b6040516104d19190612980565b60405180910390f35b3480156104e657600080fd5b5061050160048036038101906104fc91906125c4565b611298565b60405161050e9190612980565b60405180910390f35b34801561052357600080fd5b5061052c611342565b6040516105399190612ac2565b60405180910390f35b34801561054e57600080fd5b5061056960048036038101906105649190612583565b611348565b005b34801561057757600080fd5b50610592600480360381019061058d91906123b3565b6113de565b60405161059f9190612965565b60405180910390f35b3480156105b457600080fd5b506105bd611472565b6040516105ca9190612ac2565b60405180910390f35b3480156105df57600080fd5b506105fa60048036038101906105f5919061238a565b611478565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061065757506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806106875750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60606002805461069d90612ded565b80601f01602080910402602001604051908101604052809291908181526020018280546106c990612ded565b80156107165780601f106106eb57610100808354040283529160200191610716565b820191906000526020600020905b8154815290600101906020018083116106f957829003601f168201915b5050505050905090565b600061072b82611570565b610761576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006107a7826115cf565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561080f576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1661082e61169d565b73ffffffffffffffffffffffffffffffffffffffff16146108915761085a8161085561169d565b6113de565b610890576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600061094d6116a5565b6001546000540303905090565b6109658383836116aa565b505050565b610972611a72565b73ffffffffffffffffffffffffffffffffffffffff16610990610f27565b73ffffffffffffffffffffffffffffffffffffffff16146109e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109dd90612a02565b60405180910390fd5b60006109f0610f27565b73ffffffffffffffffffffffffffffffffffffffff1647604051610a13906128e9565b60006040518083038185875af1925050503d8060008114610a50576040519150601f19603f3d011682016040523d82523d6000602084013e610a55565b606091505b5050905080610a6357600080fd5b50565b610a6e611a72565b73ffffffffffffffffffffffffffffffffffffffff16610a8c610f27565b73ffffffffffffffffffffffffffffffffffffffff1614610ae2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ad990612a02565b60405180910390fd5b80600d6001018190555050565b6000610af9610943565b9050600d600101544211610b42576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b3990612a62565b60405180910390fd5b60008211610b85576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b7c90612a82565b60405180910390fd5b600c54821115610bca576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bc1906129a2565b60405180910390fd5b6000600d60000160009054906101000a900463ffffffff1663ffffffff16905080821015610c6a57600d60000160009054906101000a900463ffffffff1663ffffffff168284610c1a9190612bfe565b1115610c5b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c5290612aa2565b60405180910390fd5b610c658484611a7a565b610d3c565b6000600d60000160049054906101000a900467ffffffffffffffff1667ffffffffffffffff169050600b548484610ca19190612bfe565b1115610ce2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cd9906129e2565b60405180910390fd5b8084610cee9190612c85565b341015610d30576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d2790612a42565b60405180910390fd5b610d3a8585611a7a565b505b50505050565b610d5d83838360405180602001604052806000815250611197565b505050565b610d6a611a72565b73ffffffffffffffffffffffffffffffffffffffff16610d88610f27565b73ffffffffffffffffffffffffffffffffffffffff1614610dde576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dd590612a02565b60405180910390fd5b8060099080519060200190610df49291906121ae565b5050565b6000610e03826115cf565b9050919050565b600080610e1683611a98565b1415610e4e576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b610ea7611a72565b73ffffffffffffffffffffffffffffffffffffffff16610ec5610f27565b73ffffffffffffffffffffffffffffffffffffffff1614610f1b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f1290612a02565b60405180910390fd5b610f256000611aa2565b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600d8060000160009054906101000a900463ffffffff16908060000160049054906101000a900467ffffffffffffffff16908060010154905083565b606060038054610f9c90612ded565b80601f0160208091040260200160405190810160405280929190818152602001828054610fc890612ded565b80156110155780601f10610fea57610100808354040283529160200191611015565b820191906000526020600020905b815481529060010190602001808311610ff857829003601f168201915b5050505050905090565b61102761169d565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561108c576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806007600061109961169d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661114661169d565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161118b9190612965565b60405180910390a35050565b6111a28484846116aa565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611204576111cd84848484611b68565b611203576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b600a805461121790612ded565b80601f016020809104026020016040519081016040528092919081815260200182805461124390612ded565b80156112905780601f1061126557610100808354040283529160200191611290565b820191906000526020600020905b81548152906001019060200180831161127357829003601f168201915b505050505081565b60606112a382611570565b6112e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112d990612a22565b60405180910390fd5b60006112ec611cc8565b9050600081511161130c576040518060200160405280600081525061133a565b8061131684611d5a565b600a60405160200161132a939291906128b8565b6040516020818303038152906040525b915050919050565b600b5481565b611350611a72565b73ffffffffffffffffffffffffffffffffffffffff1661136e610f27565b73ffffffffffffffffffffffffffffffffffffffff16146113c4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113bb90612a02565b60405180910390fd5b80600a90805190602001906113da9291906121ae565b5050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600c5481565b611480611a72565b73ffffffffffffffffffffffffffffffffffffffff1661149e610f27565b73ffffffffffffffffffffffffffffffffffffffff16146114f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114eb90612a02565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611564576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161155b906129c2565b60405180910390fd5b61156d81611aa2565b50565b60008161157b6116a5565b1115801561158a575060005482105b80156115c8575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600080829050806115de6116a5565b11611666576000548110156116655760006004600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082161415611663575b600081141561165957600460008360019003935083815260200190815260200160002054905061162e565b8092505050611698565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b600033905090565b600090565b60006116b5826115cf565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161461171c576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60006006600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905060008573ffffffffffffffffffffffffffffffffffffffff1661177561169d565b73ffffffffffffffffffffffffffffffffffffffff1614806117a457506117a38661179e61169d565b6113de565b5b806117e157506117b261169d565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b90508061181a576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600061182586611a98565b141561185d576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61186a8686866001611f07565b600061187583611a98565b146118b1576006600085815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154600101919050819055507c020000000000000000000000000000000000000000000000000000000060a042901b61197887611a98565b1717600460008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084161415611a02576000600185019050600060046000838152602001908152602001600020541415611a005760005481146119ff578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611a6a8686866001611f0d565b505050505050565b600033905090565b611a94828260405180602001604052806000815250611f13565b5050565b6000819050919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611b8e61169d565b8786866040518563ffffffff1660e01b8152600401611bb09493929190612919565b602060405180830381600087803b158015611bca57600080fd5b505af1925050508015611bfb57506040513d601f19601f82011682018060405250810190611bf8919061255a565b60015b611c75573d8060008114611c2b576040519150601f19603f3d011682016040523d82523d6000602084013e611c30565b606091505b50600081511415611c6d576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b606060098054611cd790612ded565b80601f0160208091040260200160405190810160405280929190818152602001828054611d0390612ded565b8015611d505780601f10611d2557610100808354040283529160200191611d50565b820191906000526020600020905b815481529060010190602001808311611d3357829003601f168201915b5050505050905090565b60606000821415611da2576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611f02565b600082905060005b60008214611dd4578080611dbd90612e50565b915050600a82611dcd9190612c54565b9150611daa565b60008167ffffffffffffffff811115611e16577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611e485781602001600182028036833780820191505090505b5090505b60008514611efb57600182611e619190612cdf565b9150600a85611e709190612e99565b6030611e7c9190612bfe565b60f81b818381518110611eb8577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85611ef49190612c54565b9450611e4c565b8093505050505b919050565b50505050565b50505050565b6000805490506000611f2485611a98565b1415611f5c576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000831415611f97576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611fa46000858386611f07565b600160406001901b178302600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555060e1612009600185146121a4565b901b60a042901b61201986611a98565b1717600460008381526020019081526020016000208190555060008190506000848201905060008673ffffffffffffffffffffffffffffffffffffffff163b1461211d575b818673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46120cd6000878480600101955087611b68565b612103576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80821061205e57826000541461211857600080fd5b612188565b5b818060010192508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a480821061211e575b81600081905550505061219e6000858386611f0d565b50505050565b6000819050919050565b8280546121ba90612ded565b90600052602060002090601f0160209004810192826121dc5760008555612223565b82601f106121f557805160ff1916838001178555612223565b82800160010185558215612223579182015b82811115612222578251825591602001919060010190612207565b5b5090506122309190612234565b5090565b5b8082111561224d576000816000905550600101612235565b5090565b600061226461225f84612b39565b612b14565b90508281526020810184848401111561227c57600080fd5b612287848285612dab565b509392505050565b60006122a261229d84612b6a565b612b14565b9050828152602081018484840111156122ba57600080fd5b6122c5848285612dab565b509392505050565b6000813590506122dc81613157565b92915050565b6000813590506122f18161316e565b92915050565b60008135905061230681613185565b92915050565b60008151905061231b81613185565b92915050565b600082601f83011261233257600080fd5b8135612342848260208601612251565b91505092915050565b600082601f83011261235c57600080fd5b813561236c84826020860161228f565b91505092915050565b6000813590506123848161319c565b92915050565b60006020828403121561239c57600080fd5b60006123aa848285016122cd565b91505092915050565b600080604083850312156123c657600080fd5b60006123d4858286016122cd565b92505060206123e5858286016122cd565b9150509250929050565b60008060006060848603121561240457600080fd5b6000612412868287016122cd565b9350506020612423868287016122cd565b925050604061243486828701612375565b9150509250925092565b6000806000806080858703121561245457600080fd5b6000612462878288016122cd565b9450506020612473878288016122cd565b935050604061248487828801612375565b925050606085013567ffffffffffffffff8111156124a157600080fd5b6124ad87828801612321565b91505092959194509250565b600080604083850312156124cc57600080fd5b60006124da858286016122cd565b92505060206124eb858286016122e2565b9150509250929050565b6000806040838503121561250857600080fd5b6000612516858286016122cd565b925050602061252785828601612375565b9150509250929050565b60006020828403121561254357600080fd5b6000612551848285016122f7565b91505092915050565b60006020828403121561256c57600080fd5b600061257a8482850161230c565b91505092915050565b60006020828403121561259557600080fd5b600082013567ffffffffffffffff8111156125af57600080fd5b6125bb8482850161234b565b91505092915050565b6000602082840312156125d657600080fd5b60006125e484828501612375565b91505092915050565b6125f681612d13565b82525050565b61260581612d25565b82525050565b600061261682612bb0565b6126208185612bc6565b9350612630818560208601612dba565b61263981612f86565b840191505092915050565b600061264f82612bbb565b6126598185612be2565b9350612669818560208601612dba565b61267281612f86565b840191505092915050565b600061268882612bbb565b6126928185612bf3565b93506126a2818560208601612dba565b80840191505092915050565b600081546126bb81612ded565b6126c58186612bf3565b945060018216600081146126e057600181146126f157612724565b60ff19831686528186019350612724565b6126fa85612b9b565b60005b8381101561271c578154818901526001820191506020810190506126fd565b838801955050505b50505092915050565b600061273a601f83612be2565b915061274582612f97565b602082019050919050565b600061275d602683612be2565b915061276882612fc0565b604082019050919050565b6000612780601283612be2565b915061278b8261300f565b602082019050919050565b60006127a3602083612be2565b91506127ae82613038565b602082019050919050565b60006127c6602f83612be2565b91506127d182613061565b604082019050919050565b60006127e9601083612be2565b91506127f4826130b0565b602082019050919050565b600061280c601083612be2565b9150612817826130d9565b602082019050919050565b600061282f600083612bd7565b915061283a82613102565b600082019050919050565b6000612852601e83612be2565b915061285d82613105565b602082019050919050565b6000612875601483612be2565b91506128808261312e565b602082019050919050565b61289481612d7d565b82525050565b6128a381612d87565b82525050565b6128b281612d97565b82525050565b60006128c4828661267d565b91506128d0828561267d565b91506128dc82846126ae565b9150819050949350505050565b60006128f482612822565b9150819050919050565b600060208201905061291360008301846125ed565b92915050565b600060808201905061292e60008301876125ed565b61293b60208301866125ed565b612948604083018561288b565b818103606083015261295a818461260b565b905095945050505050565b600060208201905061297a60008301846125fc565b92915050565b6000602082019050818103600083015261299a8184612644565b905092915050565b600060208201905081810360008301526129bb8161272d565b9050919050565b600060208201905081810360008301526129db81612750565b9050919050565b600060208201905081810360008301526129fb81612773565b9050919050565b60006020820190508181036000830152612a1b81612796565b9050919050565b60006020820190508181036000830152612a3b816127b9565b9050919050565b60006020820190508181036000830152612a5b816127dc565b9050919050565b60006020820190508181036000830152612a7b816127ff565b9050919050565b60006020820190508181036000830152612a9b81612845565b9050919050565b60006020820190508181036000830152612abb81612868565b9050919050565b6000602082019050612ad7600083018461288b565b92915050565b6000606082019050612af2600083018661289a565b612aff60208301856128a9565b612b0c604083018461288b565b949350505050565b6000612b1e612b2f565b9050612b2a8282612e1f565b919050565b6000604051905090565b600067ffffffffffffffff821115612b5457612b53612f57565b5b612b5d82612f86565b9050602081019050919050565b600067ffffffffffffffff821115612b8557612b84612f57565b5b612b8e82612f86565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000612c0982612d7d565b9150612c1483612d7d565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612c4957612c48612eca565b5b828201905092915050565b6000612c5f82612d7d565b9150612c6a83612d7d565b925082612c7a57612c79612ef9565b5b828204905092915050565b6000612c9082612d7d565b9150612c9b83612d7d565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612cd457612cd3612eca565b5b828202905092915050565b6000612cea82612d7d565b9150612cf583612d7d565b925082821015612d0857612d07612eca565b5b828203905092915050565b6000612d1e82612d5d565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600063ffffffff82169050919050565b600067ffffffffffffffff82169050919050565b82818337600083830152505050565b60005b83811015612dd8578082015181840152602081019050612dbd565b83811115612de7576000848401525b50505050565b60006002820490506001821680612e0557607f821691505b60208210811415612e1957612e18612f28565b5b50919050565b612e2882612f86565b810181811067ffffffffffffffff82111715612e4757612e46612f57565b5b80604052505050565b6000612e5b82612d7d565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415612e8e57612e8d612eca565b5b600182019050919050565b6000612ea482612d7d565b9150612eaf83612d7d565b925082612ebf57612ebe612ef9565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f63616e206e6f74206d696e742074686973206d616e79206f6e652074696d6500600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f72656163686564206d617820737570706c790000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f6e6f7420656e6f756768206d6f6e657900000000000000000000000000000000600082015250565b7f73616c6573206e6f742073746172742e00000000000000000000000000000000600082015250565b50565b7f6d696e7420616d6f756e742067726561746572207468616e207a65726f2e0000600082015250565b7f66726565206d696e74206e6f7420656e6f756768000000000000000000000000600082015250565b61316081612d13565b811461316b57600080fd5b50565b61317781612d25565b811461318257600080fd5b50565b61318e81612d31565b811461319957600080fd5b50565b6131a581612d7d565b81146131b057600080fd5b5056fea2646970667358221220c3eb4727840b5ca1244955f9fdb54a51b1bd340029878c2f2921d0aef96cb83f64736f6c63430008040033

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

00000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d597257414c375552434342365336376e323552454d79537a7039484e35553156656f564b5352325a743542352f00000000000000000000

-----Decoded View---------------
Arg [0] : _initBaseURI (string): ipfs://QmYrWAL7URCCB6S67n25REMySzp9HN5U1VeoVKSR2Zt5B5/

-----Encoded View---------------
4 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000036
Arg [2] : 697066733a2f2f516d597257414c375552434342365336376e323552454d7953
Arg [3] : 7a7039484e35553156656f564b5352325a743542352f00000000000000000000


Deployed Bytecode Sourcemap

44253:2507:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18633:615;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23656:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25724:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25184:474;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;17687:315;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26610:170;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46612:145;;;:::i;:::-;;46245:129;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;44964:828;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26851:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46380:98;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;23445:144;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19312:234;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4767:103;;;;;;;;;;;;;:::i;:::-;;4116:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44590:98;;;;;;;;;;;;;:::i;:::-;;;;;;;;;:::i;:::-;;;;;;;;23825:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26000:308;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;27107:396;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;44354:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45802:421;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44396:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46484:122;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26379:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44432:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5025:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;18633:615;18718:4;19033:10;19018:25;;:11;:25;;;;:102;;;;19110:10;19095:25;;:11;:25;;;;19018:102;:179;;;;19187:10;19172:25;;:11;:25;;;;19018:179;18998:199;;18633:615;;;:::o;23656:100::-;23710:13;23743:5;23736:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23656:100;:::o;25724:204::-;25792:7;25817:16;25825:7;25817;:16::i;:::-;25812:64;;25842:34;;;;;;;;;;;;;;25812:64;25896:15;:24;25912:7;25896:24;;;;;;;;;;;;;;;;;;;;;25889:31;;25724:204;;;:::o;25184:474::-;25257:13;25289:27;25308:7;25289:18;:27::i;:::-;25257:61;;25339:5;25333:11;;:2;:11;;;25329:48;;;25353:24;;;;;;;;;;;;;;25329:48;25417:5;25394:28;;:19;:17;:19::i;:::-;:28;;;25390:175;;25442:44;25459:5;25466:19;:17;:19::i;:::-;25442:16;:44::i;:::-;25437:128;;25514:35;;;;;;;;;;;;;;25437:128;25390:175;25604:2;25577:15;:24;25593:7;25577:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;25642:7;25638:2;25622:28;;25631:5;25622:28;;;;;;;;;;;;25184:474;;;:::o;17687:315::-;17740:7;17968:15;:13;:15::i;:::-;17953:12;;17937:13;;:28;:46;17930:53;;17687:315;:::o;26610:170::-;26744:28;26754:4;26760:2;26764:7;26744:9;:28::i;:::-;26610:170;;;:::o;46612:145::-;4347:12;:10;:12::i;:::-;4336:23;;:7;:5;:7::i;:::-;:23;;;4328:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;46665:7:::1;46686;:5;:7::i;:::-;46678:21;;46707;46678:55;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46664:69;;;46748:2;46740:11;;;::::0;::::1;;4407:1;46612:145::o:0;46245:129::-;4347:12;:10;:12::i;:::-;4336:23;;:7;:5;:7::i;:::-;:23;;;4328:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;46351:17:::1;46321:10;:27;;:47;;;;46245:129:::0;:::o;44964:828::-;45034:14;45051:13;:11;:13::i;:::-;45034:30;;45097:10;:27;;;45079:15;:45;45071:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;45173:1;45159:11;:15;45151:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;45238:14;;45223:11;:29;;45215:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;45294:21;45318:10;:24;;;;;;;;;;;;45294:48;;;;45361:13;45352:6;:22;45349:438;;;45418:10;:24;;;;;;;;;;;;45394:48;;45408:6;45394:11;:20;;;;:::i;:::-;:48;;45386:80;;;;;;;;;;;;:::i;:::-;;;;;;;;;45477:26;45487:3;45491:11;45477:9;:26::i;:::-;45349:438;;;45526:26;45555:10;:29;;;;;;;;;;;;45526:58;;;;45627:9;;45612:11;45603:6;:20;;;;:::i;:::-;:33;;45595:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;45704:18;45690:11;:32;;;;:::i;:::-;45677:9;:45;;45669:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;45753:26;45763:3;45767:11;45753:9;:26::i;:::-;45349:438;;44964:828;;;;:::o;26851:185::-;26989:39;27006:4;27012:2;27016:7;26989:39;;;;;;;;;;;;:16;:39::i;:::-;26851:185;;;:::o;46380:98::-;4347:12;:10;:12::i;:::-;4336:23;;:7;:5;:7::i;:::-;:23;;;4328:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;46461:11:::1;46451:7;:21;;;;;;;;;;;;:::i;:::-;;46380:98:::0;:::o;23445:144::-;23509:7;23552:27;23571:7;23552:18;:27::i;:::-;23529:52;;23445:144;;;:::o;19312:234::-;19376:7;19428:1;19400:24;19418:5;19400:17;:24::i;:::-;:29;19396:70;;;19438:28;;;;;;;;;;;;;;19396:70;14657:13;19484:18;:25;19503:5;19484:25;;;;;;;;;;;;;;;;:54;19477:61;;19312:234;;;:::o;4767:103::-;4347:12;:10;:12::i;:::-;4336:23;;:7;:5;:7::i;:::-;:23;;;4328:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;4832:30:::1;4859:1;4832:18;:30::i;:::-;4767:103::o:0;4116:87::-;4162:7;4189:6;;;;;;;;;;;4182:13;;4116:87;:::o;44590:98::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;23825:104::-;23881:13;23914:7;23907:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23825:104;:::o;26000:308::-;26111:19;:17;:19::i;:::-;26099:31;;:8;:31;;;26095:61;;;26139:17;;;;;;;;;;;;;;26095:61;26221:8;26169:18;:39;26188:19;:17;:19::i;:::-;26169:39;;;;;;;;;;;;;;;:49;26209:8;26169:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;26281:8;26245:55;;26260:19;:17;:19::i;:::-;26245:55;;;26291:8;26245:55;;;;;;:::i;:::-;;;;;;;;26000:308;;:::o;27107:396::-;27274:28;27284:4;27290:2;27294:7;27274:9;:28::i;:::-;27335:1;27317:2;:14;;;:19;27313:183;;27356:56;27387:4;27393:2;27397:7;27406:5;27356:30;:56::i;:::-;27351:145;;27440:40;;;;;;;;;;;;;;27351:145;27313:183;27107:396;;;;:::o;44354:37::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;45802:421::-;45900:13;45941:16;45949:7;45941;:16::i;:::-;45925:97;;;;;;;;;;;;:::i;:::-;;;;;;;;;46029:28;46060:10;:8;:10::i;:::-;46029:41;;46115:1;46090:14;46084:28;:32;:133;;;;;;;;;;;;;;;;;46152:14;46168:18;:7;:16;:18::i;:::-;46188:13;46135:67;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;46084:133;46077:140;;;45802:421;;;:::o;44396:31::-;;;;:::o;46484:122::-;4347:12;:10;:12::i;:::-;4336:23;;:7;:5;:7::i;:::-;:23;;;4328:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;46583:17:::1;46567:13;:33;;;;;;;;;;;;:::i;:::-;;46484:122:::0;:::o;26379:164::-;26476:4;26500:18;:25;26519:5;26500:25;;;;;;;;;;;;;;;:35;26526:8;26500:35;;;;;;;;;;;;;;;;;;;;;;;;;26493:42;;26379:164;;;;:::o;44432:33::-;;;;:::o;5025:201::-;4347:12;:10;:12::i;:::-;4336:23;;:7;:5;:7::i;:::-;:23;;;4328:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;5134:1:::1;5114:22;;:8;:22;;;;5106:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;5190:28;5209:8;5190:18;:28::i;:::-;5025:201:::0;:::o;27758:273::-;27815:4;27871:7;27852:15;:13;:15::i;:::-;:26;;:66;;;;;27905:13;;27895:7;:23;27852:66;:152;;;;;28003:1;15427:8;27956:17;:26;27974:7;27956:26;;;;;;;;;;;;:43;:48;27852:152;27832:172;;27758:273;;;:::o;20960:1129::-;21027:7;21047:12;21062:7;21047:22;;21130:4;21111:15;:13;:15::i;:::-;:23;21107:915;;21164:13;;21157:4;:20;21153:869;;;21202:14;21219:17;:23;21237:4;21219:23;;;;;;;;;;;;21202:40;;21335:1;15427:8;21308:6;:23;:28;21304:699;;;21827:113;21844:1;21834:6;:11;21827:113;;;21887:17;:25;21905:6;;;;;;;21887:25;;;;;;;;;;;;21878:34;;21827:113;;;21973:6;21966:13;;;;;;21304:699;21153:869;;21107:915;22050:31;;;;;;;;;;;;;;20960:1129;;;;:::o;42025:105::-;42085:7;42112:10;42105:17;;42025:105;:::o;17211:92::-;17267:7;17211:92;:::o;33017:2654::-;33132:27;33162;33181:7;33162:18;:27::i;:::-;33132:57;;33247:4;33206:45;;33222:19;33206:45;;;33202:86;;33260:28;;;;;;;;;;;;;;33202:86;33301:23;33327:15;:24;33343:7;33327:24;;;;;;;;;;;;;;;;;;;;;33301:50;;33364:22;33413:4;33390:27;;:19;:17;:19::i;:::-;:27;;;:87;;;;33434:43;33451:4;33457:19;:17;:19::i;:::-;33434:16;:43::i;:::-;33390:87;:142;;;;33513:19;:17;:19::i;:::-;33494:38;;:15;:38;;;33390:142;33364:169;;33551:17;33546:66;;33577:35;;;;;;;;;;;;;;33546:66;33652:1;33627:21;33645:2;33627:17;:21::i;:::-;:26;33623:62;;;33662:23;;;;;;;;;;;;;;33623:62;33698:43;33720:4;33726:2;33730:7;33739:1;33698:21;:43::i;:::-;33849:1;33811:34;33829:15;33811:17;:34::i;:::-;:39;33807:103;;33874:15;:24;33890:7;33874:24;;;;;;;;;;;;33867:31;;;;;;;;;;;33807:103;34277:18;:24;34296:4;34277:24;;;;;;;;;;;;;;;;34275:26;;;;;;;;;;;;34346:18;:22;34365:2;34346:22;;;;;;;;;;;;;;;;34344:24;;;;;;;;;;;15705:8;15311:3;34727:15;:41;;34685:21;34703:2;34685:17;:21::i;:::-;:84;:128;34639:17;:26;34657:7;34639:26;;;;;;;;;;;:174;;;;34983:1;15705:8;34933:19;:46;:51;34929:626;;;35005:19;35037:1;35027:7;:11;35005:33;;35194:1;35160:17;:30;35178:11;35160:30;;;;;;;;;;;;:35;35156:384;;;35298:13;;35283:11;:28;35279:242;;35478:19;35445:17;:30;35463:11;35445:30;;;;;;;;;;;:52;;;;35279:242;35156:384;34929:626;;35602:7;35598:2;35583:27;;35592:4;35583:27;;;;;;;;;;;;35621:42;35642:4;35648:2;35652:7;35661:1;35621:20;:42::i;:::-;33017:2654;;;;;;:::o;2840:98::-;2893:7;2920:10;2913:17;;2840:98;:::o;28115:104::-;28184:27;28194:2;28198:8;28184:27;;;;;;;;;;;;:9;:27::i;:::-;28115:104;;:::o;24745:148::-;24809:14;24870:5;24860:15;;24845:41;;;:::o;5386:191::-;5460:16;5479:6;;;;;;;;;;;5460:25;;5505:8;5496:6;;:17;;;;;;;;;;;;;;;;;;5560:8;5529:40;;5550:8;5529:40;;;;;;;;;;;;5386:191;;:::o;39494:716::-;39657:4;39703:2;39678:45;;;39724:19;:17;:19::i;:::-;39745:4;39751:7;39760:5;39678:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;39674:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39978:1;39961:6;:13;:18;39957:235;;;40007:40;;;;;;;;;;;;;;39957:235;40150:6;40144:13;40135:6;40131:2;40127:15;40120:38;39674:529;39847:54;;;39837:64;;;:6;:64;;;;39830:71;;;39494:716;;;;;;:::o;44844:102::-;44904:13;44933:7;44926:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44844:102;:::o;402:723::-;458:13;688:1;679:5;:10;675:53;;;706:10;;;;;;;;;;;;;;;;;;;;;675:53;738:12;753:5;738:20;;769:14;794:78;809:1;801:4;:9;794:78;;827:8;;;;;:::i;:::-;;;;858:2;850:10;;;;;:::i;:::-;;;794:78;;;882:19;914:6;904:17;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;882:39;;932:154;948:1;939:5;:10;932:154;;976:1;966:11;;;;;:::i;:::-;;;1043:2;1035:5;:10;;;;:::i;:::-;1022:2;:24;;;;:::i;:::-;1009:39;;992:6;999;992:14;;;;;;;;;;;;;;;;;;;:56;;;;;;;;;;;1072:2;1063:11;;;;;:::i;:::-;;;932:154;;;1110:6;1096:21;;;;;402:723;;;;:::o;40858:159::-;;;;;:::o;41676:158::-;;;;;:::o;28592:2246::-;28715:20;28738:13;;28715:36;;28791:1;28766:21;28784:2;28766:17;:21::i;:::-;:26;28762:58;;;28801:19;;;;;;;;;;;;;;28762:58;28847:1;28835:8;:13;28831:44;;;28857:18;;;;;;;;;;;;;;28831:44;28888:61;28918:1;28922:2;28926:12;28940:8;28888:21;:61::i;:::-;29492:1;14794:2;29463:1;:25;;29462:31;29450:8;:44;29424:18;:22;29443:2;29424:22;;;;;;;;;;;;;;;;:70;;;;;;;;;;;15570:3;29893:29;29920:1;29908:8;:13;29893:14;:29::i;:::-;:56;;15311:3;29830:15;:41;;29788:21;29806:2;29788:17;:21::i;:::-;:84;:162;29737:17;:31;29755:12;29737:31;;;;;;;;;;;:213;;;;29967:20;29990:12;29967:35;;30017:11;30046:8;30031:12;:23;30017:37;;30093:1;30075:2;:14;;;:19;30071:635;;30115:313;30171:12;30167:2;30146:38;;30163:1;30146:38;;;;;;;;;;;;30212:69;30251:1;30255:2;30259:14;;;;;;30275:5;30212:30;:69::i;:::-;30207:174;;30317:40;;;;;;;;;;;;;;30207:174;30423:3;30408:12;:18;30115:313;;30509:12;30492:13;;:29;30488:43;;30523:8;;;30488:43;30071:635;;;30572:119;30628:14;;;;;;30624:2;30603:40;;30620:1;30603:40;;;;;;;;;;;;30686:3;30671:12;:18;30572:119;;30071:635;30736:12;30720:13;:28;;;;28592:2246;;30770:60;30799:1;30803:2;30807:12;30821:8;30770:20;:60::i;:::-;28592:2246;;;;:::o;24980:142::-;25038:14;25099:5;25089:15;;25074:41;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:343:1:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:2;;;290:1;287;280:12;249:2;303:41;337:6;332:3;327;303:41;:::i;:::-;90:260;;;;;;:::o;356:345::-;434:5;459:66;475:49;517:6;475:49;:::i;:::-;459:66;:::i;:::-;450:75;;548:6;541:5;534:21;586:4;579:5;575:16;624:3;615:6;610:3;606:16;603:25;600:2;;;641:1;638;631:12;600:2;654:41;688:6;683:3;678;654:41;:::i;:::-;440:261;;;;;;:::o;707:139::-;753:5;791:6;778:20;769:29;;807:33;834:5;807:33;:::i;:::-;759:87;;;;:::o;852:133::-;895:5;933:6;920:20;911:29;;949:30;973:5;949:30;:::i;:::-;901:84;;;;:::o;991:137::-;1036:5;1074:6;1061:20;1052:29;;1090:32;1116:5;1090:32;:::i;:::-;1042:86;;;;:::o;1134:141::-;1190:5;1221:6;1215:13;1206:22;;1237:32;1263:5;1237:32;:::i;:::-;1196:79;;;;:::o;1294:271::-;1349:5;1398:3;1391:4;1383:6;1379:17;1375:27;1365:2;;1416:1;1413;1406:12;1365:2;1456:6;1443:20;1481:78;1555:3;1547:6;1540:4;1532:6;1528:17;1481:78;:::i;:::-;1472:87;;1355:210;;;;;:::o;1585:273::-;1641:5;1690:3;1683:4;1675:6;1671:17;1667:27;1657:2;;1708:1;1705;1698:12;1657:2;1748:6;1735:20;1773:79;1848:3;1840:6;1833:4;1825:6;1821:17;1773:79;:::i;:::-;1764:88;;1647:211;;;;;:::o;1864:139::-;1910:5;1948:6;1935:20;1926:29;;1964:33;1991:5;1964:33;:::i;:::-;1916:87;;;;:::o;2009:262::-;2068:6;2117:2;2105:9;2096:7;2092:23;2088:32;2085:2;;;2133:1;2130;2123:12;2085:2;2176:1;2201:53;2246:7;2237:6;2226:9;2222:22;2201:53;:::i;:::-;2191:63;;2147:117;2075:196;;;;:::o;2277:407::-;2345:6;2353;2402:2;2390:9;2381:7;2377:23;2373:32;2370:2;;;2418:1;2415;2408:12;2370:2;2461:1;2486:53;2531:7;2522:6;2511:9;2507:22;2486:53;:::i;:::-;2476:63;;2432:117;2588:2;2614:53;2659:7;2650:6;2639:9;2635:22;2614:53;:::i;:::-;2604:63;;2559:118;2360:324;;;;;:::o;2690:552::-;2767:6;2775;2783;2832:2;2820:9;2811:7;2807:23;2803:32;2800:2;;;2848:1;2845;2838:12;2800:2;2891:1;2916:53;2961:7;2952:6;2941:9;2937:22;2916:53;:::i;:::-;2906:63;;2862:117;3018:2;3044:53;3089:7;3080:6;3069:9;3065:22;3044:53;:::i;:::-;3034:63;;2989:118;3146:2;3172:53;3217:7;3208:6;3197:9;3193:22;3172:53;:::i;:::-;3162:63;;3117:118;2790:452;;;;;:::o;3248:809::-;3343:6;3351;3359;3367;3416:3;3404:9;3395:7;3391:23;3387:33;3384:2;;;3433:1;3430;3423:12;3384:2;3476:1;3501:53;3546:7;3537:6;3526:9;3522:22;3501:53;:::i;:::-;3491:63;;3447:117;3603:2;3629:53;3674:7;3665:6;3654:9;3650:22;3629:53;:::i;:::-;3619:63;;3574:118;3731:2;3757:53;3802:7;3793:6;3782:9;3778:22;3757:53;:::i;:::-;3747:63;;3702:118;3887:2;3876:9;3872:18;3859:32;3918:18;3910:6;3907:30;3904:2;;;3950:1;3947;3940:12;3904:2;3978:62;4032:7;4023:6;4012:9;4008:22;3978:62;:::i;:::-;3968:72;;3830:220;3374:683;;;;;;;:::o;4063:401::-;4128:6;4136;4185:2;4173:9;4164:7;4160:23;4156:32;4153:2;;;4201:1;4198;4191:12;4153:2;4244:1;4269:53;4314:7;4305:6;4294:9;4290:22;4269:53;:::i;:::-;4259:63;;4215:117;4371:2;4397:50;4439:7;4430:6;4419:9;4415:22;4397:50;:::i;:::-;4387:60;;4342:115;4143:321;;;;;:::o;4470:407::-;4538:6;4546;4595:2;4583:9;4574:7;4570:23;4566:32;4563:2;;;4611:1;4608;4601:12;4563:2;4654:1;4679:53;4724:7;4715:6;4704:9;4700:22;4679:53;:::i;:::-;4669:63;;4625:117;4781:2;4807:53;4852:7;4843:6;4832:9;4828:22;4807:53;:::i;:::-;4797:63;;4752:118;4553:324;;;;;:::o;4883:260::-;4941:6;4990:2;4978:9;4969:7;4965:23;4961:32;4958:2;;;5006:1;5003;4996:12;4958:2;5049:1;5074:52;5118:7;5109:6;5098:9;5094:22;5074:52;:::i;:::-;5064:62;;5020:116;4948:195;;;;:::o;5149:282::-;5218:6;5267:2;5255:9;5246:7;5242:23;5238:32;5235:2;;;5283:1;5280;5273:12;5235:2;5326:1;5351:63;5406:7;5397:6;5386:9;5382:22;5351:63;:::i;:::-;5341:73;;5297:127;5225:206;;;;:::o;5437:375::-;5506:6;5555:2;5543:9;5534:7;5530:23;5526:32;5523:2;;;5571:1;5568;5561:12;5523:2;5642:1;5631:9;5627:17;5614:31;5672:18;5664:6;5661:30;5658:2;;;5704:1;5701;5694:12;5658:2;5732:63;5787:7;5778:6;5767:9;5763:22;5732:63;:::i;:::-;5722:73;;5585:220;5513:299;;;;:::o;5818:262::-;5877:6;5926:2;5914:9;5905:7;5901:23;5897:32;5894:2;;;5942:1;5939;5932:12;5894:2;5985:1;6010:53;6055:7;6046:6;6035:9;6031:22;6010:53;:::i;:::-;6000:63;;5956:117;5884:196;;;;:::o;6086:118::-;6173:24;6191:5;6173:24;:::i;:::-;6168:3;6161:37;6151:53;;:::o;6210:109::-;6291:21;6306:5;6291:21;:::i;:::-;6286:3;6279:34;6269:50;;:::o;6325:360::-;6411:3;6439:38;6471:5;6439:38;:::i;:::-;6493:70;6556:6;6551:3;6493:70;:::i;:::-;6486:77;;6572:52;6617:6;6612:3;6605:4;6598:5;6594:16;6572:52;:::i;:::-;6649:29;6671:6;6649:29;:::i;:::-;6644:3;6640:39;6633:46;;6415:270;;;;;:::o;6691:364::-;6779:3;6807:39;6840:5;6807:39;:::i;:::-;6862:71;6926:6;6921:3;6862:71;:::i;:::-;6855:78;;6942:52;6987:6;6982:3;6975:4;6968:5;6964:16;6942:52;:::i;:::-;7019:29;7041:6;7019:29;:::i;:::-;7014:3;7010:39;7003:46;;6783:272;;;;;:::o;7061:377::-;7167:3;7195:39;7228:5;7195:39;:::i;:::-;7250:89;7332:6;7327:3;7250:89;:::i;:::-;7243:96;;7348:52;7393:6;7388:3;7381:4;7374:5;7370:16;7348:52;:::i;:::-;7425:6;7420:3;7416:16;7409:23;;7171:267;;;;;:::o;7468:845::-;7571:3;7608:5;7602:12;7637:36;7663:9;7637:36;:::i;:::-;7689:89;7771:6;7766:3;7689:89;:::i;:::-;7682:96;;7809:1;7798:9;7794:17;7825:1;7820:137;;;;7971:1;7966:341;;;;7787:520;;7820:137;7904:4;7900:9;7889;7885:25;7880:3;7873:38;7940:6;7935:3;7931:16;7924:23;;7820:137;;7966:341;8033:38;8065:5;8033:38;:::i;:::-;8093:1;8107:154;8121:6;8118:1;8115:13;8107:154;;;8195:7;8189:14;8185:1;8180:3;8176:11;8169:35;8245:1;8236:7;8232:15;8221:26;;8143:4;8140:1;8136:12;8131:17;;8107:154;;;8290:6;8285:3;8281:16;8274:23;;7973:334;;7787:520;;7575:738;;;;;;:::o;8319:366::-;8461:3;8482:67;8546:2;8541:3;8482:67;:::i;:::-;8475:74;;8558:93;8647:3;8558:93;:::i;:::-;8676:2;8671:3;8667:12;8660:19;;8465:220;;;:::o;8691:366::-;8833:3;8854:67;8918:2;8913:3;8854:67;:::i;:::-;8847:74;;8930:93;9019:3;8930:93;:::i;:::-;9048:2;9043:3;9039:12;9032:19;;8837:220;;;:::o;9063:366::-;9205:3;9226:67;9290:2;9285:3;9226:67;:::i;:::-;9219:74;;9302:93;9391:3;9302:93;:::i;:::-;9420:2;9415:3;9411:12;9404:19;;9209:220;;;:::o;9435:366::-;9577:3;9598:67;9662:2;9657:3;9598:67;:::i;:::-;9591:74;;9674:93;9763:3;9674:93;:::i;:::-;9792:2;9787:3;9783:12;9776:19;;9581:220;;;:::o;9807:366::-;9949:3;9970:67;10034:2;10029:3;9970:67;:::i;:::-;9963:74;;10046:93;10135:3;10046:93;:::i;:::-;10164:2;10159:3;10155:12;10148:19;;9953:220;;;:::o;10179:366::-;10321:3;10342:67;10406:2;10401:3;10342:67;:::i;:::-;10335:74;;10418:93;10507:3;10418:93;:::i;:::-;10536:2;10531:3;10527:12;10520:19;;10325:220;;;:::o;10551:366::-;10693:3;10714:67;10778:2;10773:3;10714:67;:::i;:::-;10707:74;;10790:93;10879:3;10790:93;:::i;:::-;10908:2;10903:3;10899:12;10892:19;;10697:220;;;:::o;10923:398::-;11082:3;11103:83;11184:1;11179:3;11103:83;:::i;:::-;11096:90;;11195:93;11284:3;11195:93;:::i;:::-;11313:1;11308:3;11304:11;11297:18;;11086:235;;;:::o;11327:366::-;11469:3;11490:67;11554:2;11549:3;11490:67;:::i;:::-;11483:74;;11566:93;11655:3;11566:93;:::i;:::-;11684:2;11679:3;11675:12;11668:19;;11473:220;;;:::o;11699:366::-;11841:3;11862:67;11926:2;11921:3;11862:67;:::i;:::-;11855:74;;11938:93;12027:3;11938:93;:::i;:::-;12056:2;12051:3;12047:12;12040:19;;11845:220;;;:::o;12071:118::-;12158:24;12176:5;12158:24;:::i;:::-;12153:3;12146:37;12136:53;;:::o;12195:115::-;12280:23;12297:5;12280:23;:::i;:::-;12275:3;12268:36;12258:52;;:::o;12316:115::-;12401:23;12418:5;12401:23;:::i;:::-;12396:3;12389:36;12379:52;;:::o;12437:589::-;12662:3;12684:95;12775:3;12766:6;12684:95;:::i;:::-;12677:102;;12796:95;12887:3;12878:6;12796:95;:::i;:::-;12789:102;;12908:92;12996:3;12987:6;12908:92;:::i;:::-;12901:99;;13017:3;13010:10;;12666:360;;;;;;:::o;13032:379::-;13216:3;13238:147;13381:3;13238:147;:::i;:::-;13231:154;;13402:3;13395:10;;13220:191;;;:::o;13417:222::-;13510:4;13548:2;13537:9;13533:18;13525:26;;13561:71;13629:1;13618:9;13614:17;13605:6;13561:71;:::i;:::-;13515:124;;;;:::o;13645:640::-;13840:4;13878:3;13867:9;13863:19;13855:27;;13892:71;13960:1;13949:9;13945:17;13936:6;13892:71;:::i;:::-;13973:72;14041:2;14030:9;14026:18;14017:6;13973:72;:::i;:::-;14055;14123:2;14112:9;14108:18;14099:6;14055:72;:::i;:::-;14174:9;14168:4;14164:20;14159:2;14148:9;14144:18;14137:48;14202:76;14273:4;14264:6;14202:76;:::i;:::-;14194:84;;13845:440;;;;;;;:::o;14291:210::-;14378:4;14416:2;14405:9;14401:18;14393:26;;14429:65;14491:1;14480:9;14476:17;14467:6;14429:65;:::i;:::-;14383:118;;;;:::o;14507:313::-;14620:4;14658:2;14647:9;14643:18;14635:26;;14707:9;14701:4;14697:20;14693:1;14682:9;14678:17;14671:47;14735:78;14808:4;14799:6;14735:78;:::i;:::-;14727:86;;14625:195;;;;:::o;14826:419::-;14992:4;15030:2;15019:9;15015:18;15007:26;;15079:9;15073:4;15069:20;15065:1;15054:9;15050:17;15043:47;15107:131;15233:4;15107:131;:::i;:::-;15099:139;;14997:248;;;:::o;15251:419::-;15417:4;15455:2;15444:9;15440:18;15432:26;;15504:9;15498:4;15494:20;15490:1;15479:9;15475:17;15468:47;15532:131;15658:4;15532:131;:::i;:::-;15524:139;;15422:248;;;:::o;15676:419::-;15842:4;15880:2;15869:9;15865:18;15857:26;;15929:9;15923:4;15919:20;15915:1;15904:9;15900:17;15893:47;15957:131;16083:4;15957:131;:::i;:::-;15949:139;;15847:248;;;:::o;16101:419::-;16267:4;16305:2;16294:9;16290:18;16282:26;;16354:9;16348:4;16344:20;16340:1;16329:9;16325:17;16318:47;16382:131;16508:4;16382:131;:::i;:::-;16374:139;;16272:248;;;:::o;16526:419::-;16692:4;16730:2;16719:9;16715:18;16707:26;;16779:9;16773:4;16769:20;16765:1;16754:9;16750:17;16743:47;16807:131;16933:4;16807:131;:::i;:::-;16799:139;;16697:248;;;:::o;16951:419::-;17117:4;17155:2;17144:9;17140:18;17132:26;;17204:9;17198:4;17194:20;17190:1;17179:9;17175:17;17168:47;17232:131;17358:4;17232:131;:::i;:::-;17224:139;;17122:248;;;:::o;17376:419::-;17542:4;17580:2;17569:9;17565:18;17557:26;;17629:9;17623:4;17619:20;17615:1;17604:9;17600:17;17593:47;17657:131;17783:4;17657:131;:::i;:::-;17649:139;;17547:248;;;:::o;17801:419::-;17967:4;18005:2;17994:9;17990:18;17982:26;;18054:9;18048:4;18044:20;18040:1;18029:9;18025:17;18018:47;18082:131;18208:4;18082:131;:::i;:::-;18074:139;;17972:248;;;:::o;18226:419::-;18392:4;18430:2;18419:9;18415:18;18407:26;;18479:9;18473:4;18469:20;18465:1;18454:9;18450:17;18443:47;18507:131;18633:4;18507:131;:::i;:::-;18499:139;;18397:248;;;:::o;18651:222::-;18744:4;18782:2;18771:9;18767:18;18759:26;;18795:71;18863:1;18852:9;18848:17;18839:6;18795:71;:::i;:::-;18749:124;;;;:::o;18879:434::-;19024:4;19062:2;19051:9;19047:18;19039:26;;19075:69;19141:1;19130:9;19126:17;19117:6;19075:69;:::i;:::-;19154:70;19220:2;19209:9;19205:18;19196:6;19154:70;:::i;:::-;19234:72;19302:2;19291:9;19287:18;19278:6;19234:72;:::i;:::-;19029:284;;;;;;:::o;19319:129::-;19353:6;19380:20;;:::i;:::-;19370:30;;19409:33;19437:4;19429:6;19409:33;:::i;:::-;19360:88;;;:::o;19454:75::-;19487:6;19520:2;19514:9;19504:19;;19494:35;:::o;19535:307::-;19596:4;19686:18;19678:6;19675:30;19672:2;;;19708:18;;:::i;:::-;19672:2;19746:29;19768:6;19746:29;:::i;:::-;19738:37;;19830:4;19824;19820:15;19812:23;;19601:241;;;:::o;19848:308::-;19910:4;20000:18;19992:6;19989:30;19986:2;;;20022:18;;:::i;:::-;19986:2;20060:29;20082:6;20060:29;:::i;:::-;20052:37;;20144:4;20138;20134:15;20126:23;;19915:241;;;:::o;20162:141::-;20211:4;20234:3;20226:11;;20257:3;20254:1;20247:14;20291:4;20288:1;20278:18;20270:26;;20216:87;;;:::o;20309:98::-;20360:6;20394:5;20388:12;20378:22;;20367:40;;;:::o;20413:99::-;20465:6;20499:5;20493:12;20483:22;;20472:40;;;:::o;20518:168::-;20601:11;20635:6;20630:3;20623:19;20675:4;20670:3;20666:14;20651:29;;20613:73;;;;:::o;20692:147::-;20793:11;20830:3;20815:18;;20805:34;;;;:::o;20845:169::-;20929:11;20963:6;20958:3;20951:19;21003:4;20998:3;20994:14;20979:29;;20941:73;;;;:::o;21020:148::-;21122:11;21159:3;21144:18;;21134:34;;;;:::o;21174:305::-;21214:3;21233:20;21251:1;21233:20;:::i;:::-;21228:25;;21267:20;21285:1;21267:20;:::i;:::-;21262:25;;21421:1;21353:66;21349:74;21346:1;21343:81;21340:2;;;21427:18;;:::i;:::-;21340:2;21471:1;21468;21464:9;21457:16;;21218:261;;;;:::o;21485:185::-;21525:1;21542:20;21560:1;21542:20;:::i;:::-;21537:25;;21576:20;21594:1;21576:20;:::i;:::-;21571:25;;21615:1;21605:2;;21620:18;;:::i;:::-;21605:2;21662:1;21659;21655:9;21650:14;;21527:143;;;;:::o;21676:348::-;21716:7;21739:20;21757:1;21739:20;:::i;:::-;21734:25;;21773:20;21791:1;21773:20;:::i;:::-;21768:25;;21961:1;21893:66;21889:74;21886:1;21883:81;21878:1;21871:9;21864:17;21860:105;21857:2;;;21968:18;;:::i;:::-;21857:2;22016:1;22013;22009:9;21998:20;;21724:300;;;;:::o;22030:191::-;22070:4;22090:20;22108:1;22090:20;:::i;:::-;22085:25;;22124:20;22142:1;22124:20;:::i;:::-;22119:25;;22163:1;22160;22157:8;22154:2;;;22168:18;;:::i;:::-;22154:2;22213:1;22210;22206:9;22198:17;;22075:146;;;;:::o;22227:96::-;22264:7;22293:24;22311:5;22293:24;:::i;:::-;22282:35;;22272:51;;;:::o;22329:90::-;22363:7;22406:5;22399:13;22392:21;22381:32;;22371:48;;;:::o;22425:149::-;22461:7;22501:66;22494:5;22490:78;22479:89;;22469:105;;;:::o;22580:126::-;22617:7;22657:42;22650:5;22646:54;22635:65;;22625:81;;;:::o;22712:77::-;22749:7;22778:5;22767:16;;22757:32;;;:::o;22795:93::-;22831:7;22871:10;22864:5;22860:22;22849:33;;22839:49;;;:::o;22894:101::-;22930:7;22970:18;22963:5;22959:30;22948:41;;22938:57;;;:::o;23001:154::-;23085:6;23080:3;23075;23062:30;23147:1;23138:6;23133:3;23129:16;23122:27;23052:103;;;:::o;23161:307::-;23229:1;23239:113;23253:6;23250:1;23247:13;23239:113;;;23338:1;23333:3;23329:11;23323:18;23319:1;23314:3;23310:11;23303:39;23275:2;23272:1;23268:10;23263:15;;23239:113;;;23370:6;23367:1;23364:13;23361:2;;;23450:1;23441:6;23436:3;23432:16;23425:27;23361:2;23210:258;;;;:::o;23474:320::-;23518:6;23555:1;23549:4;23545:12;23535:22;;23602:1;23596:4;23592:12;23623:18;23613:2;;23679:4;23671:6;23667:17;23657:27;;23613:2;23741;23733:6;23730:14;23710:18;23707:38;23704:2;;;23760:18;;:::i;:::-;23704:2;23525:269;;;;:::o;23800:281::-;23883:27;23905:4;23883:27;:::i;:::-;23875:6;23871:40;24013:6;24001:10;23998:22;23977:18;23965:10;23962:34;23959:62;23956:2;;;24024:18;;:::i;:::-;23956:2;24064:10;24060:2;24053:22;23843:238;;;:::o;24087:233::-;24126:3;24149:24;24167:5;24149:24;:::i;:::-;24140:33;;24195:66;24188:5;24185:77;24182:2;;;24265:18;;:::i;:::-;24182:2;24312:1;24305:5;24301:13;24294:20;;24130:190;;;:::o;24326:176::-;24358:1;24375:20;24393:1;24375:20;:::i;:::-;24370:25;;24409:20;24427:1;24409:20;:::i;:::-;24404:25;;24448:1;24438:2;;24453:18;;:::i;:::-;24438:2;24494:1;24491;24487:9;24482:14;;24360:142;;;;:::o;24508:180::-;24556:77;24553:1;24546:88;24653:4;24650:1;24643:15;24677:4;24674:1;24667:15;24694:180;24742:77;24739:1;24732:88;24839:4;24836:1;24829:15;24863:4;24860:1;24853:15;24880:180;24928:77;24925:1;24918:88;25025:4;25022:1;25015:15;25049:4;25046:1;25039:15;25066:180;25114:77;25111:1;25104:88;25211:4;25208:1;25201:15;25235:4;25232:1;25225:15;25252:102;25293:6;25344:2;25340:7;25335:2;25328:5;25324:14;25320:28;25310:38;;25300:54;;;:::o;25360:181::-;25500:33;25496:1;25488:6;25484:14;25477:57;25466:75;:::o;25547:225::-;25687:34;25683:1;25675:6;25671:14;25664:58;25756:8;25751:2;25743:6;25739:15;25732:33;25653:119;:::o;25778:168::-;25918:20;25914:1;25906:6;25902:14;25895:44;25884:62;:::o;25952:182::-;26092:34;26088:1;26080:6;26076:14;26069:58;26058:76;:::o;26140:234::-;26280:34;26276:1;26268:6;26264:14;26257:58;26349:17;26344:2;26336:6;26332:15;26325:42;26246:128;:::o;26380:166::-;26520:18;26516:1;26508:6;26504:14;26497:42;26486:60;:::o;26552:166::-;26692:18;26688:1;26680:6;26676:14;26669:42;26658:60;:::o;26724:114::-;26830:8;:::o;26844:180::-;26984:32;26980:1;26972:6;26968:14;26961:56;26950:74;:::o;27030:170::-;27170:22;27166:1;27158:6;27154:14;27147:46;27136:64;:::o;27206:122::-;27279:24;27297:5;27279:24;:::i;:::-;27272:5;27269:35;27259:2;;27318:1;27315;27308:12;27259:2;27249:79;:::o;27334:116::-;27404:21;27419:5;27404:21;:::i;:::-;27397:5;27394:32;27384:2;;27440:1;27437;27430:12;27384:2;27374:76;:::o;27456:120::-;27528:23;27545:5;27528:23;:::i;:::-;27521:5;27518:34;27508:2;;27566:1;27563;27556:12;27508:2;27498:78;:::o;27582:122::-;27655:24;27673:5;27655:24;:::i;:::-;27648:5;27645:35;27635:2;;27694:1;27691;27684:12;27635:2;27625:79;:::o

Swarm Source

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