ETH Price: $2,760.83 (+5.23%)

Token

Tell me a joke (TellMeAJoke)
 

Overview

Max Total Supply

877 TellMeAJoke

Holders

376

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Balance
1 TellMeAJoke
0x02ce81b59bde47eac9ae52a57c8c78db954b858b
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:
TellMeAJoke

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// SPDX-License-Identifier: MIT
// 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: @openzeppelin/contracts/utils/Address.sol


// OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol)

pragma solidity ^0.8.1;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     *
     * [IMPORTANT]
     * ====
     * You shouldn't rely on `isContract` to protect against flash loan attacks!
     *
     * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
     * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
     * constructor.
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize/address.code.length, which returns 0
        // for contracts in construction, since the code is only stored at the end
        // of the constructor execution.

        return account.code.length > 0;
    }

    /**
     * @dev Replacement for Solidity's `transfer`: sends `amount` wei to
     * `recipient`, forwarding all available gas and reverting on errors.
     *
     * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
     * of certain opcodes, possibly making contracts go over the 2300 gas limit
     * imposed by `transfer`, making them unable to receive funds via
     * `transfer`. {sendValue} removes this limitation.
     *
     * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].
     *
     * IMPORTANT: because control is transferred to `recipient`, care must be
     * taken to not create reentrancy vulnerabilities. Consider using
     * {ReentrancyGuard} or the
     * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
     */
    function sendValue(address payable recipient, uint256 amount) internal {
        require(address(this).balance >= amount, "Address: insufficient balance");

        (bool success, ) = recipient.call{value: amount}("");
        require(success, "Address: unable to send value, recipient may have reverted");
    }

    /**
     * @dev Performs a Solidity function call using a low level `call`. A
     * plain `call` is an unsafe replacement for a function call: use this
     * function instead.
     *
     * If `target` reverts with a revert reason, it is bubbled up by this
     * function (like regular Solidity function calls).
     *
     * Returns the raw returned data. To convert to the expected return value,
     * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
     *
     * Requirements:
     *
     * - `target` must be a contract.
     * - calling `target` with `data` must not revert.
     *
     * _Available since v3.1._
     */
    function functionCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionCall(target, data, "Address: low-level call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
     * `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, 0, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but also transferring `value` wei to `target`.
     *
     * Requirements:
     *
     * - the calling contract must have an ETH balance of at least `value`.
     * - the called Solidity function must be `payable`.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, value, "Address: low-level call with value failed");
    }

    /**
     * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
     * with `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(address(this).balance >= value, "Address: insufficient balance for call");
        require(isContract(target), "Address: call to non-contract");

        (bool success, bytes memory returndata) = target.call{value: value}(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
        return functionStaticCall(target, data, "Address: low-level static call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal view returns (bytes memory) {
        require(isContract(target), "Address: static call to non-contract");

        (bool success, bytes memory returndata) = target.staticcall(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionDelegateCall(target, data, "Address: low-level delegate call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(isContract(target), "Address: delegate call to non-contract");

        (bool success, bytes memory returndata) = target.delegatecall(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the
     * revert reason using the provided one.
     *
     * _Available since v4.3._
     */
    function verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal pure returns (bytes memory) {
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly

                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

// File: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol


// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721Receiver.sol)

pragma solidity ^0.8.0;

/**
 * @title ERC721 token receiver interface
 * @dev Interface for any contract that wants to support safeTransfers
 * from ERC721 asset contracts.
 */
interface IERC721Receiver {
    /**
     * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom}
     * by `operator` from `from`, this function is called.
     *
     * It must return its Solidity selector to confirm the token transfer.
     * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted.
     *
     * The selector can be obtained in Solidity with `IERC721Receiver.onERC721Received.selector`.
     */
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}

// File: @openzeppelin/contracts/utils/introspection/IERC165.sol


// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC165 standard, as defined in the
 * https://eips.ethereum.org/EIPS/eip-165[EIP].
 *
 * Implementers can declare support of contract interfaces, which can then be
 * queried by others ({ERC165Checker}).
 *
 * For an implementation, see {ERC165}.
 */
interface 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);
}

// File: @openzeppelin/contracts/utils/introspection/ERC165.sol


// OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol)

pragma solidity ^0.8.0;


/**
 * @dev Implementation of the {IERC165} interface.
 *
 * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check
 * for the additional interface id that will be supported. For example:
 *
 * ```solidity
 * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
 *     return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId);
 * }
 * ```
 *
 * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation.
 */
abstract contract ERC165 is IERC165 {
    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        return interfaceId == type(IERC165).interfaceId;
    }
}

// File: @openzeppelin/contracts/token/ERC721/IERC721.sol


// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;


/**
 * @dev Required interface of an ERC721 compliant contract.
 */
interface IERC721 is IERC165 {
    /**
     * @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);
}

// File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol)

pragma solidity ^0.8.0;


/**
 * @title ERC-721 Non-Fungible Token Standard, optional metadata extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Metadata is IERC721 {
    /**
     * @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


// Creator: Chiru Labs

pragma solidity ^0.8.4;








error ApprovalCallerNotOwnerNorApproved();
error ApprovalQueryForNonexistentToken();
error ApproveToCaller();
error ApprovalToCurrentOwner();
error BalanceQueryForZeroAddress();
error MintToZeroAddress();
error MintZeroQuantity();
error OwnerQueryForNonexistentToken();
error TransferCallerNotOwnerNorApproved();
error TransferFromIncorrectOwner();
error TransferToNonERC721ReceiverImplementer();
error TransferToZeroAddress();
error URIQueryForNonexistentToken();

/**
 * @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 Context, ERC165, IERC721, IERC721Metadata {
    using Address for address;
    using Strings for uint256;

    // Compiler will pack this into a single 256bit word.
    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;
    }

    // Compiler will pack this into a single 256bit word.
    struct AddressData {
        // Realistically, 2**64-1 is more than enough.
        uint64 balance;
        // Keeps track of mint count with minimal overhead for tokenomics.
        uint64 numberMinted;
        // Keeps track of burn count with minimal overhead for tokenomics.
        uint64 numberBurned;
        // For miscellaneous variable(s) pertaining to the address
        // (e.g. number of whitelist mint slots used).
        // If there are multiple variables, please pack them into a uint64.
        uint64 aux;
    }

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

    // The number of tokens burned.
    uint256 internal _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 _ownershipOf implementation for details.
    mapping(uint256 => TokenOwnership) internal _ownerships;

    // Mapping owner address to address data
    mapping(address => AddressData) private _addressData;

    // 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();
    }

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

    /**
     * @dev Burned tokens are calculated here, use _totalMinted() if you want to count just minted tokens.
     */
    function totalSupply() public view returns (uint256) {
        // Counter underflow is impossible as _burnCounter cannot be incremented
        // more than _currentIndex - _startTokenId() times
        unchecked {
            return _currentIndex - _burnCounter - _startTokenId();
        }
    }

    /**
     * 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 See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) {
        return
            interfaceId == type(IERC721).interfaceId ||
            interfaceId == type(IERC721Metadata).interfaceId ||
            super.supportsInterface(interfaceId);
    }

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

    /**
     * Returns the number of tokens minted by `owner`.
     */
    function _numberMinted(address owner) internal view returns (uint256) {
        return uint256(_addressData[owner].numberMinted);
    }

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

    /**
     * Returns the auxillary data for `owner`. (e.g. number of whitelist mint slots used).
     */
    function _getAux(address owner) internal view returns (uint64) {
        return _addressData[owner].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 {
        _addressData[owner].aux = aux;
    }

    /**
     * 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) {
        uint256 curr = tokenId;

        unchecked {
            if (_startTokenId() <= curr && curr < _currentIndex) {
                TokenOwnership memory ownership = _ownerships[curr];
                if (!ownership.burned) {
                    if (ownership.addr != address(0)) {
                        return ownership;
                    }
                    // 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.
                    while (true) {
                        curr--;
                        ownership = _ownerships[curr];
                        if (ownership.addr != address(0)) {
                            return ownership;
                        }
                    }
                }
            }
        }
        revert OwnerQueryForNonexistentToken();
    }

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

    /**
     * @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, tokenId.toString())) : '';
    }

    /**
     * @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 See {IERC721-approve}.
     */
    function approve(address to, uint256 tokenId) public override {
        address owner = ERC721A.ownerOf(tokenId);
        if (to == owner) revert ApprovalToCurrentOwner();

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

        _approve(to, tokenId, owner);
    }

    /**
     * @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 == _msgSender()) revert ApproveToCaller();

        _operatorApprovals[_msgSender()][operator] = approved;
        emit ApprovalForAll(_msgSender(), 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.isContract() && !_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 && !_ownerships[tokenId].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 (to == address(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 {
            _addressData[to].balance += uint64(quantity);
            _addressData[to].numberMinted += uint64(quantity);

            _ownerships[startTokenId].addr = to;
            _ownerships[startTokenId].startTimestamp = uint64(block.timestamp);

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

            if (to.isContract()) {
                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 (to == address(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 {
            _addressData[to].balance += uint64(quantity);
            _addressData[to].numberMinted += uint64(quantity);

            _ownerships[startTokenId].addr = to;
            _ownerships[startTokenId].startTimestamp = uint64(block.timestamp);

            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 {
        TokenOwnership memory prevOwnership = _ownershipOf(tokenId);

        if (prevOwnership.addr != from) revert TransferFromIncorrectOwner();

        bool isApprovedOrOwner = (_msgSender() == from ||
            isApprovedForAll(from, _msgSender()) ||
            getApproved(tokenId) == _msgSender());

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

        _beforeTokenTransfers(from, to, tokenId, 1);

        // Clear approvals from the previous owner
        _approve(address(0), tokenId, from);

        // 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 {
            _addressData[from].balance -= 1;
            _addressData[to].balance += 1;

            TokenOwnership storage currSlot = _ownerships[tokenId];
            currSlot.addr = to;
            currSlot.startTimestamp = uint64(block.timestamp);

            // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it.
            // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.
            uint256 nextTokenId = tokenId + 1;
            TokenOwnership storage nextSlot = _ownerships[nextTokenId];
            if (nextSlot.addr == address(0)) {
                // This will suffice for checking _exists(nextTokenId),
                // as a burned slot cannot contain the zero address.
                if (nextTokenId != _currentIndex) {
                    nextSlot.addr = from;
                    nextSlot.startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

        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 {
        TokenOwnership memory prevOwnership = _ownershipOf(tokenId);

        address from = prevOwnership.addr;

        if (approvalCheck) {
            bool isApprovedOrOwner = (_msgSender() == from ||
                isApprovedForAll(from, _msgSender()) ||
                getApproved(tokenId) == _msgSender());

            if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        }

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

        // Clear approvals from the previous owner
        _approve(address(0), tokenId, from);

        // 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 {
            AddressData storage addressData = _addressData[from];
            addressData.balance -= 1;
            addressData.numberBurned += 1;

            // Keep track of who burned the token, and the timestamp of burning.
            TokenOwnership storage currSlot = _ownerships[tokenId];
            currSlot.addr = from;
            currSlot.startTimestamp = uint64(block.timestamp);
            currSlot.burned = true;

            // If the ownership slot of tokenId+1 is not explicitly set, that means the burn initiator owns it.
            // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.
            uint256 nextTokenId = tokenId + 1;
            TokenOwnership storage nextSlot = _ownerships[nextTokenId];
            if (nextSlot.addr == address(0)) {
                // This will suffice for checking _exists(nextTokenId),
                // as a burned slot cannot contain the zero address.
                if (nextTokenId != _currentIndex) {
                    nextSlot.addr = from;
                    nextSlot.startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

        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 Approve `to` to operate on `tokenId`
     *
     * Emits a {Approval} event.
     */
    function _approve(
        address to,
        uint256 tokenId,
        address owner
    ) private {
        _tokenApprovals[tokenId] = to;
        emit Approval(owner, to, tokenId);
    }

    /**
     * @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 IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) {
            return retval == 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 {}
}
// File: contracts/ERC721AQueryable.sol


// Creator: Chiru Labs

pragma solidity ^0.8.4;


error InvalidQueryRange();

/**
 * @title ERC721A Queryable
 * @dev ERC721A subclass with convenience query functions.
 */
abstract contract ERC721AQueryable is ERC721A {
    /**
     * @dev Returns the `TokenOwnership` struct at `tokenId` without reverting.
     *
     * If the `tokenId` is out of bounds:
     *   - `addr` = `address(0)`
     *   - `startTimestamp` = `0`
     *   - `burned` = `false`
     *
     * If the `tokenId` is burned:
     *   - `addr` = `<Address of owner before token was burned>`
     *   - `startTimestamp` = `<Timestamp when token was burned>`
     *   - `burned = `true`
     *
     * Otherwise:
     *   - `addr` = `<Address of owner>`
     *   - `startTimestamp` = `<Timestamp of start of ownership>`
     *   - `burned = `false`
     */
    function explicitOwnershipOf(uint256 tokenId) public view returns (TokenOwnership memory) {
        TokenOwnership memory ownership;
        if (tokenId < _startTokenId() || tokenId >= _currentIndex) {
            return ownership;
        }
        ownership = _ownerships[tokenId];
        if (ownership.burned) {
            return ownership;
        }
        return _ownershipOf(tokenId);
    }

    /**
     * @dev Returns an array of `TokenOwnership` structs at `tokenIds` in order.
     * See {ERC721AQueryable-explicitOwnershipOf}
     */
    function explicitOwnershipsOf(uint256[] memory tokenIds) external view returns (TokenOwnership[] memory) {
        unchecked {
            uint256 tokenIdsLength = tokenIds.length;
            TokenOwnership[] memory ownerships = new TokenOwnership[](tokenIdsLength);
            for (uint256 i; i != tokenIdsLength; ++i) {
                ownerships[i] = explicitOwnershipOf(tokenIds[i]);
            }
            return ownerships;
        }
    }

    /**
     * @dev Returns an array of token IDs owned by `owner`,
     * in the range [`start`, `stop`)
     * (i.e. `start <= tokenId < stop`).
     *
     * This function allows for tokens to be queried if the collection
     * grows too big for a single call of {ERC721AQueryable-tokensOfOwner}.
     *
     * Requirements:
     *
     * - `start` < `stop`
     */
    function tokensOfOwnerIn(
        address owner,
        uint256 start,
        uint256 stop
    ) external view returns (uint256[] memory) {
        unchecked {
            if (start >= stop) revert InvalidQueryRange();
            uint256 tokenIdsIdx;
            uint256 stopLimit = _currentIndex;
            // Set `start = max(start, _startTokenId())`.
            if (start < _startTokenId()) {
                start = _startTokenId();
            }
            // Set `stop = min(stop, _currentIndex)`.
            if (stop > stopLimit) {
                stop = stopLimit;
            }
            uint256 tokenIdsMaxLength = balanceOf(owner);
            // Set `tokenIdsMaxLength = min(balanceOf(owner), stop - start)`,
            // to cater for cases where `balanceOf(owner)` is too big.
            if (start < stop) {
                uint256 rangeLength = stop - start;
                if (rangeLength < tokenIdsMaxLength) {
                    tokenIdsMaxLength = rangeLength;
                }
            } else {
                tokenIdsMaxLength = 0;
            }
            uint256[] memory tokenIds = new uint256[](tokenIdsMaxLength);
            if (tokenIdsMaxLength == 0) {
                return tokenIds;
            }
            // We need to call `explicitOwnershipOf(start)`,
            // because the slot at `start` may not be initialized.
            TokenOwnership memory ownership = explicitOwnershipOf(start);
            address currOwnershipAddr;
            // If the starting slot exists (i.e. not burned), initialize `currOwnershipAddr`.
            // `ownership.address` will not be zero, as `start` is clamped to the valid token ID range.
            if (!ownership.burned) {
                currOwnershipAddr = ownership.addr;
            }
            for (uint256 i = start; i != stop && tokenIdsIdx != tokenIdsMaxLength; ++i) {
                ownership = _ownerships[i];
                if (ownership.burned) {
                    continue;
                }
                if (ownership.addr != address(0)) {
                    currOwnershipAddr = ownership.addr;
                }
                if (currOwnershipAddr == owner) {
                    tokenIds[tokenIdsIdx++] = i;
                }
            }
            // Downsize the array to fit.
            assembly {
                mstore(tokenIds, tokenIdsIdx)
            }
            return tokenIds;
        }
    }

    /**
     * @dev Returns an array of token IDs owned by `owner`.
     *
     * This function scans the ownership mapping and is O(totalSupply) in complexity.
     * It is meant to be called off-chain.
     *
     * See {ERC721AQueryable-tokensOfOwnerIn} for splitting the scan into
     * multiple smaller scans if the collection is large enough to cause
     * an out-of-gas error (10K pfp collections should be fine).
     */
    function tokensOfOwner(address owner) external view returns (uint256[] memory) {
        unchecked {
            uint256 tokenIdsIdx;
            address currOwnershipAddr;
            uint256 tokenIdsLength = balanceOf(owner);
            uint256[] memory tokenIds = new uint256[](tokenIdsLength);
            TokenOwnership memory ownership;
            for (uint256 i = _startTokenId(); tokenIdsIdx != tokenIdsLength; ++i) {
                ownership = _ownerships[i];
                if (ownership.burned) {
                    continue;
                }
                if (ownership.addr != address(0)) {
                    currOwnershipAddr = ownership.addr;
                }
                if (currOwnershipAddr == owner) {
                    tokenIds[tokenIdsIdx++] = i;
                }
            }
            return tokenIds;
        }
    }
}
// File: contracts/joke.sol



pragma solidity ^0.8.4;




contract TellMeAJoke is ERC721A, Ownable {

    string public baseURI = "https://gateway.pinata.cloud/ipfs/QmYWhpNAkbhJJERGdgzUWFMS925fBHxphGXEiXDFZ5fAUq/";
    string public constant baseExtension = ".json";
    uint256 public constant MAX_FREE = 1;
    uint256 public constant MAX_PER_TX = 10;
    uint256 public constant MAX_SUPPLY = 3000;
    uint256 public price = 0.005 ether;

    bool public paused = true;

    constructor() ERC721A("Tell me a joke", "TellMeAJoke") {}

    function mint(uint256 _amount) external payable {
        address _caller = _msgSender();
        require(!paused, "Paused");
        require(MAX_SUPPLY >= totalSupply() + _amount, "Exceeds max supply");
        require(_amount > 0, "No 0 mints");
        require(tx.origin == _caller, "No contracts");
        require(MAX_PER_TX >= _amount , "Excess max per paid tx");
        require(_amount * price == msg.value, "Invalid funds provided");

        _safeMint(_caller, _amount);
    }

    function freeMint() external payable {
        address _caller = _msgSender();
        require(!paused, "Paused");
        require(MAX_SUPPLY >= totalSupply() + 1, "Exceeds max supply");
        require(tx.origin == _caller, "No contracts");
        require(MAX_FREE >= uint256(_getAux(_caller)) + 1, "Excess max per free wallet");

        _setAux(_caller, 1);
        _safeMint(_caller, 1);
    }

    function _startTokenId() internal override view virtual returns (uint256) {
        return 1;
    }

    function minted(address _owner) public view returns (uint256) {
        return _numberMinted(_owner);
    }

    function withdraw() external onlyOwner {
        uint256 balance = address(this).balance;
        (bool success, ) = _msgSender().call{value: balance}("");
        require(success, "Failed to send");
    }

    function teamMint(uint256 _number) external onlyOwner {
        _safeMint(_msgSender(), _number);
    }

    function setPrice(uint256 _price) external onlyOwner {
        price = _price;
    }

    function pause(bool _state) external onlyOwner {
        paused = _state;
    }

    function setBaseURI(string memory baseURI_) external onlyOwner {
        baseURI = baseURI_;
    }

    function tokenURI(uint256 _tokenId) public view override returns (string memory) {
        require(_exists(_tokenId), "Token does not exist.");
        return bytes(baseURI).length > 0 ? string(
            abi.encodePacked(
              baseURI,
              Strings.toString(_tokenId),
              baseExtension
            )
        ) : "";
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"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"},{"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":[],"name":"MAX_FREE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_PER_TX","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"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":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"freeMint","outputs":[],"stateMutability":"payable","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":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"minted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI_","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"setPrice","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":"_number","type":"uint256"}],"name":"teamMint","outputs":[],"stateMutability":"nonpayable","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":"nonpayable","type":"function"}]

608060405260405180608001604052806051815260200162003f7e6051913960099080519060200190620000359291906200021d565b506611c37937e08000600a556001600b60006101000a81548160ff0219169083151502179055503480156200006957600080fd5b506040518060400160405280600e81526020017f54656c6c206d652061206a6f6b650000000000000000000000000000000000008152506040518060400160405280600b81526020017f54656c6c4d65414a6f6b650000000000000000000000000000000000000000008152508160029080519060200190620000ee9291906200021d565b508060039080519060200190620001079291906200021d565b50620001186200014660201b60201c565b600081905550505062000140620001346200014f60201b60201c565b6200015760201b60201c565b62000332565b60006001905090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200022b90620002cd565b90600052602060002090601f0160209004810192826200024f57600085556200029b565b82601f106200026a57805160ff19168380011785556200029b565b828001600101855582156200029b579182015b828111156200029a5782518255916020019190600101906200027d565b5b509050620002aa9190620002ae565b5090565b5b80821115620002c9576000816000905550600101620002af565b5090565b60006002820490506001821680620002e657607f821691505b60208210811415620002fd57620002fc62000303565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b613c3c80620003426000396000f3fe6080604052600436106101e35760003560e01c80636c0360eb11610102578063a22cb46511610095578063e985e9c511610064578063e985e9c51461069e578063ed6661c2146106db578063f2fde38b14610706578063f43a22dc1461072f576101e3565b8063a22cb465146105e4578063b88d4fde1461060d578063c668286214610636578063c87b56dd14610661576101e3565b806391b7f5ed116100d157806391b7f5ed1461054957806395d89b4114610572578063a035b1fe1461059d578063a0712d68146105c8576101e3565b80636c0360eb1461049f57806370a08231146104ca578063715018a6146105075780638da5cb5b1461051e576101e3565b80632fbba1151161017a57806355f804b31161014957806355f804b3146104045780635b70ea9f1461042d5780635c975abb146104375780636352211e14610462576101e3565b80632fbba1151461037057806332cb6b0c146103995780633ccfd60b146103c457806342842e0e146103db576101e3565b8063095ea7b3116101b6578063095ea7b3146102b657806318160ddd146102df5780631e7269c51461030a57806323b872dd14610347576101e3565b806301ffc9a7146101e857806302329a291461022557806306fdde031461024e578063081812fc14610279575b600080fd5b3480156101f457600080fd5b5061020f600480360381019061020a9190612ef4565b61075a565b60405161021c9190613364565b60405180910390f35b34801561023157600080fd5b5061024c60048036038101906102479190612ec7565b61083c565b005b34801561025a57600080fd5b506102636108d5565b604051610270919061337f565b60405180910390f35b34801561028557600080fd5b506102a0600480360381019061029b9190612f97565b610967565b6040516102ad91906132fd565b60405180910390f35b3480156102c257600080fd5b506102dd60048036038101906102d89190612e87565b6109e3565b005b3480156102eb57600080fd5b506102f4610aee565b6040516103019190613501565b60405180910390f35b34801561031657600080fd5b50610331600480360381019061032c9190612d04565b610b05565b60405161033e9190613501565b60405180910390f35b34801561035357600080fd5b5061036e60048036038101906103699190612d71565b610b17565b005b34801561037c57600080fd5b5061039760048036038101906103929190612f97565b610b27565b005b3480156103a557600080fd5b506103ae610bb7565b6040516103bb9190613501565b60405180910390f35b3480156103d057600080fd5b506103d9610bbd565b005b3480156103e757600080fd5b5061040260048036038101906103fd9190612d71565b610cf5565b005b34801561041057600080fd5b5061042b60048036038101906104269190612f4e565b610d15565b005b610435610dab565b005b34801561044357600080fd5b5061044c610f48565b6040516104599190613364565b60405180910390f35b34801561046e57600080fd5b5061048960048036038101906104849190612f97565b610f5b565b60405161049691906132fd565b60405180910390f35b3480156104ab57600080fd5b506104b4610f71565b6040516104c1919061337f565b60405180910390f35b3480156104d657600080fd5b506104f160048036038101906104ec9190612d04565b610fff565b6040516104fe9190613501565b60405180910390f35b34801561051357600080fd5b5061051c6110cf565b005b34801561052a57600080fd5b50610533611157565b60405161054091906132fd565b60405180910390f35b34801561055557600080fd5b50610570600480360381019061056b9190612f97565b611181565b005b34801561057e57600080fd5b50610587611207565b604051610594919061337f565b60405180910390f35b3480156105a957600080fd5b506105b2611299565b6040516105bf9190613501565b60405180910390f35b6105e260048036038101906105dd9190612f97565b61129f565b005b3480156105f057600080fd5b5061060b60048036038101906106069190612e47565b6114a4565b005b34801561061957600080fd5b50610634600480360381019061062f9190612dc4565b61161c565b005b34801561064257600080fd5b5061064b611698565b604051610658919061337f565b60405180910390f35b34801561066d57600080fd5b5061068860048036038101906106839190612f97565b6116d1565b604051610695919061337f565b60405180910390f35b3480156106aa57600080fd5b506106c560048036038101906106c09190612d31565b6117b0565b6040516106d29190613364565b60405180910390f35b3480156106e757600080fd5b506106f0611844565b6040516106fd9190613501565b60405180910390f35b34801561071257600080fd5b5061072d60048036038101906107289190612d04565b611849565b005b34801561073b57600080fd5b50610744611941565b6040516107519190613501565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061082557507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610835575061083482611946565b5b9050919050565b6108446119b0565b73ffffffffffffffffffffffffffffffffffffffff16610862611157565b73ffffffffffffffffffffffffffffffffffffffff16146108b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108af90613481565b60405180910390fd5b80600b60006101000a81548160ff02191690831515021790555050565b6060600280546108e4906137d1565b80601f0160208091040260200160405190810160405280929190818152602001828054610910906137d1565b801561095d5780601f106109325761010080835404028352916020019161095d565b820191906000526020600020905b81548152906001019060200180831161094057829003601f168201915b5050505050905090565b6000610972826119b8565b6109a8576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006109ee82610f5b565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610a56576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610a756119b0565b73ffffffffffffffffffffffffffffffffffffffff1614158015610aa75750610aa581610aa06119b0565b6117b0565b155b15610ade576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610ae9838383611a06565b505050565b6000610af8611ab8565b6001546000540303905090565b6000610b1082611ac1565b9050919050565b610b22838383611b2b565b505050565b610b2f6119b0565b73ffffffffffffffffffffffffffffffffffffffff16610b4d611157565b73ffffffffffffffffffffffffffffffffffffffff1614610ba3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b9a90613481565b60405180910390fd5b610bb4610bae6119b0565b82611fe1565b50565b610bb881565b610bc56119b0565b73ffffffffffffffffffffffffffffffffffffffff16610be3611157565b73ffffffffffffffffffffffffffffffffffffffff1614610c39576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c3090613481565b60405180910390fd5b60004790506000610c486119b0565b73ffffffffffffffffffffffffffffffffffffffff1682604051610c6b906132e8565b60006040518083038185875af1925050503d8060008114610ca8576040519150601f19603f3d011682016040523d82523d6000602084013e610cad565b606091505b5050905080610cf1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ce8906134c1565b60405180910390fd5b5050565b610d108383836040518060200160405280600081525061161c565b505050565b610d1d6119b0565b73ffffffffffffffffffffffffffffffffffffffff16610d3b611157565b73ffffffffffffffffffffffffffffffffffffffff1614610d91576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d8890613481565b60405180910390fd5b8060099080519060200190610da7929190612ad5565b5050565b6000610db56119b0565b9050600b60009054906101000a900460ff1615610e07576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dfe906133a1565b60405180910390fd5b6001610e11610aee565b610e1b9190613606565b610bb81015610e5f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e5690613441565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614610ecd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ec4906134e1565b60405180910390fd5b6001610ed882611fff565b67ffffffffffffffff16610eec9190613606565b60011015610f2f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f2690613421565b60405180910390fd5b610f3a81600161205f565b610f45816001611fe1565b50565b600b60009054906101000a900460ff1681565b6000610f66826120cc565b600001519050919050565b60098054610f7e906137d1565b80601f0160208091040260200160405190810160405280929190818152602001828054610faa906137d1565b8015610ff75780601f10610fcc57610100808354040283529160200191610ff7565b820191906000526020600020905b815481529060010190602001808311610fda57829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611067576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b6110d76119b0565b73ffffffffffffffffffffffffffffffffffffffff166110f5611157565b73ffffffffffffffffffffffffffffffffffffffff161461114b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161114290613481565b60405180910390fd5b611155600061235b565b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6111896119b0565b73ffffffffffffffffffffffffffffffffffffffff166111a7611157565b73ffffffffffffffffffffffffffffffffffffffff16146111fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111f490613481565b60405180910390fd5b80600a8190555050565b606060038054611216906137d1565b80601f0160208091040260200160405190810160405280929190818152602001828054611242906137d1565b801561128f5780601f106112645761010080835404028352916020019161128f565b820191906000526020600020905b81548152906001019060200180831161127257829003601f168201915b5050505050905090565b600a5481565b60006112a96119b0565b9050600b60009054906101000a900460ff16156112fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112f2906133a1565b60405180910390fd5b81611304610aee565b61130e9190613606565b610bb81015611352576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161134990613441565b60405180910390fd5b60008211611395576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161138c906133e1565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614611403576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113fa906134e1565b60405180910390fd5b81600a1015611447576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161143e90613401565b60405180910390fd5b34600a5483611456919061368d565b14611496576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161148d906134a1565b60405180910390fd5b6114a08183611fe1565b5050565b6114ac6119b0565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611511576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806007600061151e6119b0565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166115cb6119b0565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516116109190613364565b60405180910390a35050565b611627848484611b2b565b6116468373ffffffffffffffffffffffffffffffffffffffff16612421565b801561165b575061165984848484612444565b155b15611692576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b6040518060400160405280600581526020017f2e6a736f6e00000000000000000000000000000000000000000000000000000081525081565b60606116dc826119b8565b61171b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161171290613461565b60405180910390fd5b60006009805461172a906137d1565b90501161174657604051806020016040528060008152506117a9565b6009611751836125a4565b6040518060400160405280600581526020017f2e6a736f6e000000000000000000000000000000000000000000000000000000815250604051602001611799939291906132b7565b6040516020818303038152906040525b9050919050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600181565b6118516119b0565b73ffffffffffffffffffffffffffffffffffffffff1661186f611157565b73ffffffffffffffffffffffffffffffffffffffff16146118c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118bc90613481565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611935576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161192c906133c1565b60405180910390fd5b61193e8161235b565b50565b600a81565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b6000816119c3611ab8565b111580156119d2575060005482105b80156119ff575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006001905090565b6000600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160089054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b6000611b36826120cc565b90508373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614611ba1576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff16611bc26119b0565b73ffffffffffffffffffffffffffffffffffffffff161480611bf15750611bf085611beb6119b0565b6117b0565b5b80611c365750611bff6119b0565b73ffffffffffffffffffffffffffffffffffffffff16611c1e84610967565b73ffffffffffffffffffffffffffffffffffffffff16145b905080611c6f576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611cd6576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611ce38585856001612705565b611cef60008487611a06565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600460008581526020019081526020016000209050848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060006001850190506000600460008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415611f6f576000548214611f6e57878160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b505050828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611fda858585600161270b565b5050505050565b611ffb828260405180602001604052806000815250612711565b5050565b6000600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160189054906101000a900467ffffffffffffffff169050919050565b80600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160186101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505050565b6120d4612b5b565b6000829050806120e2611ab8565b111580156120f1575060005481105b15612324576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050806040015161232257600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612206578092505050612356565b5b60011561232157818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461231c578092505050612356565b612207565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261246a6119b0565b8786866040518563ffffffff1660e01b815260040161248c9493929190613318565b602060405180830381600087803b1580156124a657600080fd5b505af19250505080156124d757506040513d601f19601f820116820180604052508101906124d49190612f21565b60015b612551573d8060008114612507576040519150601f19603f3d011682016040523d82523d6000602084013e61250c565b606091505b50600081511415612549576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b606060008214156125ec576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612700565b600082905060005b6000821461261e57808061260790613834565b915050600a82612617919061365c565b91506125f4565b60008167ffffffffffffffff81111561263a5761263961396a565b5b6040519080825280601f01601f19166020018201604052801561266c5781602001600182028036833780820191505090505b5090505b600085146126f95760018261268591906136e7565b9150600a85612694919061387d565b60306126a09190613606565b60f81b8183815181106126b6576126b561393b565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856126f2919061365c565b9450612670565b8093505050505b919050565b50505050565b50505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16141561277e576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008314156127b9576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6127c66000858386612705565b82600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555082600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000819050600084820190506129878673ffffffffffffffffffffffffffffffffffffffff16612421565b15612a4d575b818673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46129fc6000878480600101955087612444565b612a32576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8082141561298d578260005414612a4857600080fd5b612ab9565b5b818060010192508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a480821415612a4e575b816000819055505050612acf600085838661270b565b50505050565b828054612ae1906137d1565b90600052602060002090601f016020900481019282612b035760008555612b4a565b82601f10612b1c57805160ff1916838001178555612b4a565b82800160010185558215612b4a579182015b82811115612b49578251825591602001919060010190612b2e565b5b509050612b579190612b9e565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b80821115612bb7576000816000905550600101612b9f565b5090565b6000612bce612bc984613541565b61351c565b905082815260208101848484011115612bea57612be961399e565b5b612bf584828561378f565b509392505050565b6000612c10612c0b84613572565b61351c565b905082815260208101848484011115612c2c57612c2b61399e565b5b612c3784828561378f565b509392505050565b600081359050612c4e81613baa565b92915050565b600081359050612c6381613bc1565b92915050565b600081359050612c7881613bd8565b92915050565b600081519050612c8d81613bd8565b92915050565b600082601f830112612ca857612ca7613999565b5b8135612cb8848260208601612bbb565b91505092915050565b600082601f830112612cd657612cd5613999565b5b8135612ce6848260208601612bfd565b91505092915050565b600081359050612cfe81613bef565b92915050565b600060208284031215612d1a57612d196139a8565b5b6000612d2884828501612c3f565b91505092915050565b60008060408385031215612d4857612d476139a8565b5b6000612d5685828601612c3f565b9250506020612d6785828601612c3f565b9150509250929050565b600080600060608486031215612d8a57612d896139a8565b5b6000612d9886828701612c3f565b9350506020612da986828701612c3f565b9250506040612dba86828701612cef565b9150509250925092565b60008060008060808587031215612dde57612ddd6139a8565b5b6000612dec87828801612c3f565b9450506020612dfd87828801612c3f565b9350506040612e0e87828801612cef565b925050606085013567ffffffffffffffff811115612e2f57612e2e6139a3565b5b612e3b87828801612c93565b91505092959194509250565b60008060408385031215612e5e57612e5d6139a8565b5b6000612e6c85828601612c3f565b9250506020612e7d85828601612c54565b9150509250929050565b60008060408385031215612e9e57612e9d6139a8565b5b6000612eac85828601612c3f565b9250506020612ebd85828601612cef565b9150509250929050565b600060208284031215612edd57612edc6139a8565b5b6000612eeb84828501612c54565b91505092915050565b600060208284031215612f0a57612f096139a8565b5b6000612f1884828501612c69565b91505092915050565b600060208284031215612f3757612f366139a8565b5b6000612f4584828501612c7e565b91505092915050565b600060208284031215612f6457612f636139a8565b5b600082013567ffffffffffffffff811115612f8257612f816139a3565b5b612f8e84828501612cc1565b91505092915050565b600060208284031215612fad57612fac6139a8565b5b6000612fbb84828501612cef565b91505092915050565b612fcd8161371b565b82525050565b612fdc8161372d565b82525050565b6000612fed826135b8565b612ff781856135ce565b935061300781856020860161379e565b613010816139ad565b840191505092915050565b6000613026826135c3565b61303081856135ea565b935061304081856020860161379e565b613049816139ad565b840191505092915050565b600061305f826135c3565b61306981856135fb565b935061307981856020860161379e565b80840191505092915050565b60008154613092816137d1565b61309c81866135fb565b945060018216600081146130b757600181146130c8576130fb565b60ff198316865281860193506130fb565b6130d1856135a3565b60005b838110156130f3578154818901526001820191506020810190506130d4565b838801955050505b50505092915050565b60006131116006836135ea565b915061311c826139be565b602082019050919050565b60006131346026836135ea565b915061313f826139e7565b604082019050919050565b6000613157600a836135ea565b915061316282613a36565b602082019050919050565b600061317a6016836135ea565b915061318582613a5f565b602082019050919050565b600061319d601a836135ea565b91506131a882613a88565b602082019050919050565b60006131c06012836135ea565b91506131cb82613ab1565b602082019050919050565b60006131e36015836135ea565b91506131ee82613ada565b602082019050919050565b60006132066020836135ea565b915061321182613b03565b602082019050919050565b60006132296016836135ea565b915061323482613b2c565b602082019050919050565b600061324c6000836135df565b915061325782613b55565b600082019050919050565b600061326f600e836135ea565b915061327a82613b58565b602082019050919050565b6000613292600c836135ea565b915061329d82613b81565b602082019050919050565b6132b181613785565b82525050565b60006132c38286613085565b91506132cf8285613054565b91506132db8284613054565b9150819050949350505050565b60006132f38261323f565b9150819050919050565b60006020820190506133126000830184612fc4565b92915050565b600060808201905061332d6000830187612fc4565b61333a6020830186612fc4565b61334760408301856132a8565b81810360608301526133598184612fe2565b905095945050505050565b60006020820190506133796000830184612fd3565b92915050565b60006020820190508181036000830152613399818461301b565b905092915050565b600060208201905081810360008301526133ba81613104565b9050919050565b600060208201905081810360008301526133da81613127565b9050919050565b600060208201905081810360008301526133fa8161314a565b9050919050565b6000602082019050818103600083015261341a8161316d565b9050919050565b6000602082019050818103600083015261343a81613190565b9050919050565b6000602082019050818103600083015261345a816131b3565b9050919050565b6000602082019050818103600083015261347a816131d6565b9050919050565b6000602082019050818103600083015261349a816131f9565b9050919050565b600060208201905081810360008301526134ba8161321c565b9050919050565b600060208201905081810360008301526134da81613262565b9050919050565b600060208201905081810360008301526134fa81613285565b9050919050565b600060208201905061351660008301846132a8565b92915050565b6000613526613537565b90506135328282613803565b919050565b6000604051905090565b600067ffffffffffffffff82111561355c5761355b61396a565b5b613565826139ad565b9050602081019050919050565b600067ffffffffffffffff82111561358d5761358c61396a565b5b613596826139ad565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b600061361182613785565b915061361c83613785565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613651576136506138ae565b5b828201905092915050565b600061366782613785565b915061367283613785565b925082613682576136816138dd565b5b828204905092915050565b600061369882613785565b91506136a383613785565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156136dc576136db6138ae565b5b828202905092915050565b60006136f282613785565b91506136fd83613785565b9250828210156137105761370f6138ae565b5b828203905092915050565b600061372682613765565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156137bc5780820151818401526020810190506137a1565b838111156137cb576000848401525b50505050565b600060028204905060018216806137e957607f821691505b602082108114156137fd576137fc61390c565b5b50919050565b61380c826139ad565b810181811067ffffffffffffffff8211171561382b5761382a61396a565b5b80604052505050565b600061383f82613785565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613872576138716138ae565b5b600182019050919050565b600061388882613785565b915061389383613785565b9250826138a3576138a26138dd565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f5061757365640000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4e6f2030206d696e747300000000000000000000000000000000000000000000600082015250565b7f457863657373206d617820706572207061696420747800000000000000000000600082015250565b7f457863657373206d61782070657220667265652077616c6c6574000000000000600082015250565b7f45786365656473206d617820737570706c790000000000000000000000000000600082015250565b7f546f6b656e20646f6573206e6f742065786973742e0000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f496e76616c69642066756e64732070726f766964656400000000000000000000600082015250565b50565b7f4661696c656420746f2073656e64000000000000000000000000000000000000600082015250565b7f4e6f20636f6e7472616374730000000000000000000000000000000000000000600082015250565b613bb38161371b565b8114613bbe57600080fd5b50565b613bca8161372d565b8114613bd557600080fd5b50565b613be181613739565b8114613bec57600080fd5b50565b613bf881613785565b8114613c0357600080fd5b5056fea2646970667358221220825f40ad3aa5cc664dc27c7718a23174aa68130e145b15fbe4810986c293337864736f6c6343000807003368747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066732f516d595768704e416b62684a4a45524764677a5557464d53393235664248787068475845695844465a35664155712f

Deployed Bytecode

0x6080604052600436106101e35760003560e01c80636c0360eb11610102578063a22cb46511610095578063e985e9c511610064578063e985e9c51461069e578063ed6661c2146106db578063f2fde38b14610706578063f43a22dc1461072f576101e3565b8063a22cb465146105e4578063b88d4fde1461060d578063c668286214610636578063c87b56dd14610661576101e3565b806391b7f5ed116100d157806391b7f5ed1461054957806395d89b4114610572578063a035b1fe1461059d578063a0712d68146105c8576101e3565b80636c0360eb1461049f57806370a08231146104ca578063715018a6146105075780638da5cb5b1461051e576101e3565b80632fbba1151161017a57806355f804b31161014957806355f804b3146104045780635b70ea9f1461042d5780635c975abb146104375780636352211e14610462576101e3565b80632fbba1151461037057806332cb6b0c146103995780633ccfd60b146103c457806342842e0e146103db576101e3565b8063095ea7b3116101b6578063095ea7b3146102b657806318160ddd146102df5780631e7269c51461030a57806323b872dd14610347576101e3565b806301ffc9a7146101e857806302329a291461022557806306fdde031461024e578063081812fc14610279575b600080fd5b3480156101f457600080fd5b5061020f600480360381019061020a9190612ef4565b61075a565b60405161021c9190613364565b60405180910390f35b34801561023157600080fd5b5061024c60048036038101906102479190612ec7565b61083c565b005b34801561025a57600080fd5b506102636108d5565b604051610270919061337f565b60405180910390f35b34801561028557600080fd5b506102a0600480360381019061029b9190612f97565b610967565b6040516102ad91906132fd565b60405180910390f35b3480156102c257600080fd5b506102dd60048036038101906102d89190612e87565b6109e3565b005b3480156102eb57600080fd5b506102f4610aee565b6040516103019190613501565b60405180910390f35b34801561031657600080fd5b50610331600480360381019061032c9190612d04565b610b05565b60405161033e9190613501565b60405180910390f35b34801561035357600080fd5b5061036e60048036038101906103699190612d71565b610b17565b005b34801561037c57600080fd5b5061039760048036038101906103929190612f97565b610b27565b005b3480156103a557600080fd5b506103ae610bb7565b6040516103bb9190613501565b60405180910390f35b3480156103d057600080fd5b506103d9610bbd565b005b3480156103e757600080fd5b5061040260048036038101906103fd9190612d71565b610cf5565b005b34801561041057600080fd5b5061042b60048036038101906104269190612f4e565b610d15565b005b610435610dab565b005b34801561044357600080fd5b5061044c610f48565b6040516104599190613364565b60405180910390f35b34801561046e57600080fd5b5061048960048036038101906104849190612f97565b610f5b565b60405161049691906132fd565b60405180910390f35b3480156104ab57600080fd5b506104b4610f71565b6040516104c1919061337f565b60405180910390f35b3480156104d657600080fd5b506104f160048036038101906104ec9190612d04565b610fff565b6040516104fe9190613501565b60405180910390f35b34801561051357600080fd5b5061051c6110cf565b005b34801561052a57600080fd5b50610533611157565b60405161054091906132fd565b60405180910390f35b34801561055557600080fd5b50610570600480360381019061056b9190612f97565b611181565b005b34801561057e57600080fd5b50610587611207565b604051610594919061337f565b60405180910390f35b3480156105a957600080fd5b506105b2611299565b6040516105bf9190613501565b60405180910390f35b6105e260048036038101906105dd9190612f97565b61129f565b005b3480156105f057600080fd5b5061060b60048036038101906106069190612e47565b6114a4565b005b34801561061957600080fd5b50610634600480360381019061062f9190612dc4565b61161c565b005b34801561064257600080fd5b5061064b611698565b604051610658919061337f565b60405180910390f35b34801561066d57600080fd5b5061068860048036038101906106839190612f97565b6116d1565b604051610695919061337f565b60405180910390f35b3480156106aa57600080fd5b506106c560048036038101906106c09190612d31565b6117b0565b6040516106d29190613364565b60405180910390f35b3480156106e757600080fd5b506106f0611844565b6040516106fd9190613501565b60405180910390f35b34801561071257600080fd5b5061072d60048036038101906107289190612d04565b611849565b005b34801561073b57600080fd5b50610744611941565b6040516107519190613501565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061082557507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610835575061083482611946565b5b9050919050565b6108446119b0565b73ffffffffffffffffffffffffffffffffffffffff16610862611157565b73ffffffffffffffffffffffffffffffffffffffff16146108b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108af90613481565b60405180910390fd5b80600b60006101000a81548160ff02191690831515021790555050565b6060600280546108e4906137d1565b80601f0160208091040260200160405190810160405280929190818152602001828054610910906137d1565b801561095d5780601f106109325761010080835404028352916020019161095d565b820191906000526020600020905b81548152906001019060200180831161094057829003601f168201915b5050505050905090565b6000610972826119b8565b6109a8576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006109ee82610f5b565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610a56576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610a756119b0565b73ffffffffffffffffffffffffffffffffffffffff1614158015610aa75750610aa581610aa06119b0565b6117b0565b155b15610ade576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610ae9838383611a06565b505050565b6000610af8611ab8565b6001546000540303905090565b6000610b1082611ac1565b9050919050565b610b22838383611b2b565b505050565b610b2f6119b0565b73ffffffffffffffffffffffffffffffffffffffff16610b4d611157565b73ffffffffffffffffffffffffffffffffffffffff1614610ba3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b9a90613481565b60405180910390fd5b610bb4610bae6119b0565b82611fe1565b50565b610bb881565b610bc56119b0565b73ffffffffffffffffffffffffffffffffffffffff16610be3611157565b73ffffffffffffffffffffffffffffffffffffffff1614610c39576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c3090613481565b60405180910390fd5b60004790506000610c486119b0565b73ffffffffffffffffffffffffffffffffffffffff1682604051610c6b906132e8565b60006040518083038185875af1925050503d8060008114610ca8576040519150601f19603f3d011682016040523d82523d6000602084013e610cad565b606091505b5050905080610cf1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ce8906134c1565b60405180910390fd5b5050565b610d108383836040518060200160405280600081525061161c565b505050565b610d1d6119b0565b73ffffffffffffffffffffffffffffffffffffffff16610d3b611157565b73ffffffffffffffffffffffffffffffffffffffff1614610d91576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d8890613481565b60405180910390fd5b8060099080519060200190610da7929190612ad5565b5050565b6000610db56119b0565b9050600b60009054906101000a900460ff1615610e07576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dfe906133a1565b60405180910390fd5b6001610e11610aee565b610e1b9190613606565b610bb81015610e5f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e5690613441565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614610ecd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ec4906134e1565b60405180910390fd5b6001610ed882611fff565b67ffffffffffffffff16610eec9190613606565b60011015610f2f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f2690613421565b60405180910390fd5b610f3a81600161205f565b610f45816001611fe1565b50565b600b60009054906101000a900460ff1681565b6000610f66826120cc565b600001519050919050565b60098054610f7e906137d1565b80601f0160208091040260200160405190810160405280929190818152602001828054610faa906137d1565b8015610ff75780601f10610fcc57610100808354040283529160200191610ff7565b820191906000526020600020905b815481529060010190602001808311610fda57829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611067576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b6110d76119b0565b73ffffffffffffffffffffffffffffffffffffffff166110f5611157565b73ffffffffffffffffffffffffffffffffffffffff161461114b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161114290613481565b60405180910390fd5b611155600061235b565b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6111896119b0565b73ffffffffffffffffffffffffffffffffffffffff166111a7611157565b73ffffffffffffffffffffffffffffffffffffffff16146111fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111f490613481565b60405180910390fd5b80600a8190555050565b606060038054611216906137d1565b80601f0160208091040260200160405190810160405280929190818152602001828054611242906137d1565b801561128f5780601f106112645761010080835404028352916020019161128f565b820191906000526020600020905b81548152906001019060200180831161127257829003601f168201915b5050505050905090565b600a5481565b60006112a96119b0565b9050600b60009054906101000a900460ff16156112fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112f2906133a1565b60405180910390fd5b81611304610aee565b61130e9190613606565b610bb81015611352576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161134990613441565b60405180910390fd5b60008211611395576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161138c906133e1565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614611403576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113fa906134e1565b60405180910390fd5b81600a1015611447576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161143e90613401565b60405180910390fd5b34600a5483611456919061368d565b14611496576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161148d906134a1565b60405180910390fd5b6114a08183611fe1565b5050565b6114ac6119b0565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611511576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806007600061151e6119b0565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166115cb6119b0565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516116109190613364565b60405180910390a35050565b611627848484611b2b565b6116468373ffffffffffffffffffffffffffffffffffffffff16612421565b801561165b575061165984848484612444565b155b15611692576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b6040518060400160405280600581526020017f2e6a736f6e00000000000000000000000000000000000000000000000000000081525081565b60606116dc826119b8565b61171b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161171290613461565b60405180910390fd5b60006009805461172a906137d1565b90501161174657604051806020016040528060008152506117a9565b6009611751836125a4565b6040518060400160405280600581526020017f2e6a736f6e000000000000000000000000000000000000000000000000000000815250604051602001611799939291906132b7565b6040516020818303038152906040525b9050919050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600181565b6118516119b0565b73ffffffffffffffffffffffffffffffffffffffff1661186f611157565b73ffffffffffffffffffffffffffffffffffffffff16146118c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118bc90613481565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611935576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161192c906133c1565b60405180910390fd5b61193e8161235b565b50565b600a81565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b6000816119c3611ab8565b111580156119d2575060005482105b80156119ff575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006001905090565b6000600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160089054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b6000611b36826120cc565b90508373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614611ba1576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff16611bc26119b0565b73ffffffffffffffffffffffffffffffffffffffff161480611bf15750611bf085611beb6119b0565b6117b0565b5b80611c365750611bff6119b0565b73ffffffffffffffffffffffffffffffffffffffff16611c1e84610967565b73ffffffffffffffffffffffffffffffffffffffff16145b905080611c6f576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611cd6576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611ce38585856001612705565b611cef60008487611a06565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600460008581526020019081526020016000209050848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060006001850190506000600460008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415611f6f576000548214611f6e57878160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b505050828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611fda858585600161270b565b5050505050565b611ffb828260405180602001604052806000815250612711565b5050565b6000600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160189054906101000a900467ffffffffffffffff169050919050565b80600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160186101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505050565b6120d4612b5b565b6000829050806120e2611ab8565b111580156120f1575060005481105b15612324576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050806040015161232257600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612206578092505050612356565b5b60011561232157818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461231c578092505050612356565b612207565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261246a6119b0565b8786866040518563ffffffff1660e01b815260040161248c9493929190613318565b602060405180830381600087803b1580156124a657600080fd5b505af19250505080156124d757506040513d601f19601f820116820180604052508101906124d49190612f21565b60015b612551573d8060008114612507576040519150601f19603f3d011682016040523d82523d6000602084013e61250c565b606091505b50600081511415612549576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b606060008214156125ec576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612700565b600082905060005b6000821461261e57808061260790613834565b915050600a82612617919061365c565b91506125f4565b60008167ffffffffffffffff81111561263a5761263961396a565b5b6040519080825280601f01601f19166020018201604052801561266c5781602001600182028036833780820191505090505b5090505b600085146126f95760018261268591906136e7565b9150600a85612694919061387d565b60306126a09190613606565b60f81b8183815181106126b6576126b561393b565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856126f2919061365c565b9450612670565b8093505050505b919050565b50505050565b50505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16141561277e576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008314156127b9576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6127c66000858386612705565b82600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555082600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000819050600084820190506129878673ffffffffffffffffffffffffffffffffffffffff16612421565b15612a4d575b818673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46129fc6000878480600101955087612444565b612a32576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8082141561298d578260005414612a4857600080fd5b612ab9565b5b818060010192508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a480821415612a4e575b816000819055505050612acf600085838661270b565b50505050565b828054612ae1906137d1565b90600052602060002090601f016020900481019282612b035760008555612b4a565b82601f10612b1c57805160ff1916838001178555612b4a565b82800160010185558215612b4a579182015b82811115612b49578251825591602001919060010190612b2e565b5b509050612b579190612b9e565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b80821115612bb7576000816000905550600101612b9f565b5090565b6000612bce612bc984613541565b61351c565b905082815260208101848484011115612bea57612be961399e565b5b612bf584828561378f565b509392505050565b6000612c10612c0b84613572565b61351c565b905082815260208101848484011115612c2c57612c2b61399e565b5b612c3784828561378f565b509392505050565b600081359050612c4e81613baa565b92915050565b600081359050612c6381613bc1565b92915050565b600081359050612c7881613bd8565b92915050565b600081519050612c8d81613bd8565b92915050565b600082601f830112612ca857612ca7613999565b5b8135612cb8848260208601612bbb565b91505092915050565b600082601f830112612cd657612cd5613999565b5b8135612ce6848260208601612bfd565b91505092915050565b600081359050612cfe81613bef565b92915050565b600060208284031215612d1a57612d196139a8565b5b6000612d2884828501612c3f565b91505092915050565b60008060408385031215612d4857612d476139a8565b5b6000612d5685828601612c3f565b9250506020612d6785828601612c3f565b9150509250929050565b600080600060608486031215612d8a57612d896139a8565b5b6000612d9886828701612c3f565b9350506020612da986828701612c3f565b9250506040612dba86828701612cef565b9150509250925092565b60008060008060808587031215612dde57612ddd6139a8565b5b6000612dec87828801612c3f565b9450506020612dfd87828801612c3f565b9350506040612e0e87828801612cef565b925050606085013567ffffffffffffffff811115612e2f57612e2e6139a3565b5b612e3b87828801612c93565b91505092959194509250565b60008060408385031215612e5e57612e5d6139a8565b5b6000612e6c85828601612c3f565b9250506020612e7d85828601612c54565b9150509250929050565b60008060408385031215612e9e57612e9d6139a8565b5b6000612eac85828601612c3f565b9250506020612ebd85828601612cef565b9150509250929050565b600060208284031215612edd57612edc6139a8565b5b6000612eeb84828501612c54565b91505092915050565b600060208284031215612f0a57612f096139a8565b5b6000612f1884828501612c69565b91505092915050565b600060208284031215612f3757612f366139a8565b5b6000612f4584828501612c7e565b91505092915050565b600060208284031215612f6457612f636139a8565b5b600082013567ffffffffffffffff811115612f8257612f816139a3565b5b612f8e84828501612cc1565b91505092915050565b600060208284031215612fad57612fac6139a8565b5b6000612fbb84828501612cef565b91505092915050565b612fcd8161371b565b82525050565b612fdc8161372d565b82525050565b6000612fed826135b8565b612ff781856135ce565b935061300781856020860161379e565b613010816139ad565b840191505092915050565b6000613026826135c3565b61303081856135ea565b935061304081856020860161379e565b613049816139ad565b840191505092915050565b600061305f826135c3565b61306981856135fb565b935061307981856020860161379e565b80840191505092915050565b60008154613092816137d1565b61309c81866135fb565b945060018216600081146130b757600181146130c8576130fb565b60ff198316865281860193506130fb565b6130d1856135a3565b60005b838110156130f3578154818901526001820191506020810190506130d4565b838801955050505b50505092915050565b60006131116006836135ea565b915061311c826139be565b602082019050919050565b60006131346026836135ea565b915061313f826139e7565b604082019050919050565b6000613157600a836135ea565b915061316282613a36565b602082019050919050565b600061317a6016836135ea565b915061318582613a5f565b602082019050919050565b600061319d601a836135ea565b91506131a882613a88565b602082019050919050565b60006131c06012836135ea565b91506131cb82613ab1565b602082019050919050565b60006131e36015836135ea565b91506131ee82613ada565b602082019050919050565b60006132066020836135ea565b915061321182613b03565b602082019050919050565b60006132296016836135ea565b915061323482613b2c565b602082019050919050565b600061324c6000836135df565b915061325782613b55565b600082019050919050565b600061326f600e836135ea565b915061327a82613b58565b602082019050919050565b6000613292600c836135ea565b915061329d82613b81565b602082019050919050565b6132b181613785565b82525050565b60006132c38286613085565b91506132cf8285613054565b91506132db8284613054565b9150819050949350505050565b60006132f38261323f565b9150819050919050565b60006020820190506133126000830184612fc4565b92915050565b600060808201905061332d6000830187612fc4565b61333a6020830186612fc4565b61334760408301856132a8565b81810360608301526133598184612fe2565b905095945050505050565b60006020820190506133796000830184612fd3565b92915050565b60006020820190508181036000830152613399818461301b565b905092915050565b600060208201905081810360008301526133ba81613104565b9050919050565b600060208201905081810360008301526133da81613127565b9050919050565b600060208201905081810360008301526133fa8161314a565b9050919050565b6000602082019050818103600083015261341a8161316d565b9050919050565b6000602082019050818103600083015261343a81613190565b9050919050565b6000602082019050818103600083015261345a816131b3565b9050919050565b6000602082019050818103600083015261347a816131d6565b9050919050565b6000602082019050818103600083015261349a816131f9565b9050919050565b600060208201905081810360008301526134ba8161321c565b9050919050565b600060208201905081810360008301526134da81613262565b9050919050565b600060208201905081810360008301526134fa81613285565b9050919050565b600060208201905061351660008301846132a8565b92915050565b6000613526613537565b90506135328282613803565b919050565b6000604051905090565b600067ffffffffffffffff82111561355c5761355b61396a565b5b613565826139ad565b9050602081019050919050565b600067ffffffffffffffff82111561358d5761358c61396a565b5b613596826139ad565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b600061361182613785565b915061361c83613785565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613651576136506138ae565b5b828201905092915050565b600061366782613785565b915061367283613785565b925082613682576136816138dd565b5b828204905092915050565b600061369882613785565b91506136a383613785565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156136dc576136db6138ae565b5b828202905092915050565b60006136f282613785565b91506136fd83613785565b9250828210156137105761370f6138ae565b5b828203905092915050565b600061372682613765565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156137bc5780820151818401526020810190506137a1565b838111156137cb576000848401525b50505050565b600060028204905060018216806137e957607f821691505b602082108114156137fd576137fc61390c565b5b50919050565b61380c826139ad565b810181811067ffffffffffffffff8211171561382b5761382a61396a565b5b80604052505050565b600061383f82613785565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613872576138716138ae565b5b600182019050919050565b600061388882613785565b915061389383613785565b9250826138a3576138a26138dd565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f5061757365640000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4e6f2030206d696e747300000000000000000000000000000000000000000000600082015250565b7f457863657373206d617820706572207061696420747800000000000000000000600082015250565b7f457863657373206d61782070657220667265652077616c6c6574000000000000600082015250565b7f45786365656473206d617820737570706c790000000000000000000000000000600082015250565b7f546f6b656e20646f6573206e6f742065786973742e0000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f496e76616c69642066756e64732070726f766964656400000000000000000000600082015250565b50565b7f4661696c656420746f2073656e64000000000000000000000000000000000000600082015250565b7f4e6f20636f6e7472616374730000000000000000000000000000000000000000600082015250565b613bb38161371b565b8114613bbe57600080fd5b50565b613bca8161372d565b8114613bd557600080fd5b50565b613be181613739565b8114613bec57600080fd5b50565b613bf881613785565b8114613c0357600080fd5b5056fea2646970667358221220825f40ad3aa5cc664dc27c7718a23174aa68130e145b15fbe4810986c293337864736f6c63430008070033

Deployed Bytecode Sourcemap

52070:2627:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27035:305;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;54135:81;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;30148:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31651:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31214:371;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26284:303;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;53594:109;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32516:170;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;53928:105;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;52376:41;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;53711:209;;;;;;;;;;;;;:::i;:::-;;32757:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;54224:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;53070:407;;;:::i;:::-;;52467:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29956:125;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;52120:107;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27404:206;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4763:103;;;;;;;;;;;;;:::i;:::-;;4112:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;54041:86;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;30317:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;52424:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;52566:496;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;31927:287;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33013:369;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;52234:46;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;54332:362;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32285:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;52287:36;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5021:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;52330:39;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27035:305;27137:4;27189:25;27174:40;;;:11;:40;;;;:105;;;;27246:33;27231:48;;;:11;:48;;;;27174:105;:158;;;;27296:36;27320:11;27296:23;:36::i;:::-;27174:158;27154:178;;27035:305;;;:::o;54135:81::-;4343:12;:10;:12::i;:::-;4332:23;;:7;:5;:7::i;:::-;:23;;;4324:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;54202:6:::1;54193;;:15;;;;;;;;;;;;;;;;;;54135:81:::0;:::o;30148:100::-;30202:13;30235:5;30228:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30148:100;:::o;31651:204::-;31719:7;31744:16;31752:7;31744;:16::i;:::-;31739:64;;31769:34;;;;;;;;;;;;;;31739:64;31823:15;:24;31839:7;31823:24;;;;;;;;;;;;;;;;;;;;;31816:31;;31651:204;;;:::o;31214:371::-;31287:13;31303:24;31319:7;31303:15;:24::i;:::-;31287:40;;31348:5;31342:11;;:2;:11;;;31338:48;;;31362:24;;;;;;;;;;;;;;31338:48;31419:5;31403:21;;:12;:10;:12::i;:::-;:21;;;;:63;;;;;31429:37;31446:5;31453:12;:10;:12::i;:::-;31429:16;:37::i;:::-;31428:38;31403:63;31399:138;;;31490:35;;;;;;;;;;;;;;31399:138;31549:28;31558:2;31562:7;31571:5;31549:8;:28::i;:::-;31276:309;31214:371;;:::o;26284:303::-;26328:7;26553:15;:13;:15::i;:::-;26538:12;;26522:13;;:28;:46;26515:53;;26284:303;:::o;53594:109::-;53647:7;53674:21;53688:6;53674:13;:21::i;:::-;53667:28;;53594:109;;;:::o;32516:170::-;32650:28;32660:4;32666:2;32670:7;32650:9;:28::i;:::-;32516:170;;;:::o;53928:105::-;4343:12;:10;:12::i;:::-;4332:23;;:7;:5;:7::i;:::-;:23;;;4324:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;53993:32:::1;54003:12;:10;:12::i;:::-;54017:7;53993:9;:32::i;:::-;53928:105:::0;:::o;52376:41::-;52413:4;52376:41;:::o;53711:209::-;4343:12;:10;:12::i;:::-;4332:23;;:7;:5;:7::i;:::-;:23;;;4324:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;53761:15:::1;53779:21;53761:39;;53812:12;53830;:10;:12::i;:::-;:17;;53855:7;53830:37;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53811:56;;;53886:7;53878:34;;;;;;;;;;;;:::i;:::-;;;;;;;;;53750:170;;53711:209::o:0;32757:185::-;32895:39;32912:4;32918:2;32922:7;32895:39;;;;;;;;;;;;:16;:39::i;:::-;32757:185;;;:::o;54224:100::-;4343:12;:10;:12::i;:::-;4332:23;;:7;:5;:7::i;:::-;:23;;;4324:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;54308:8:::1;54298:7;:18;;;;;;;;;;;;:::i;:::-;;54224:100:::0;:::o;53070:407::-;53118:15;53136:12;:10;:12::i;:::-;53118:30;;53168:6;;;;;;;;;;;53167:7;53159:26;;;;;;;;;;;;:::i;:::-;;;;;;;;;53234:1;53218:13;:11;:13::i;:::-;:17;;;;:::i;:::-;52413:4;53204:31;;53196:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;53290:7;53277:20;;:9;:20;;;53269:45;;;;;;;;;;;;:::i;:::-;;;;;;;;;53373:1;53353:16;53361:7;53353;:16::i;:::-;53345:25;;:29;;;;:::i;:::-;52322:1;53333:41;;53325:80;;;;;;;;;;;;:::i;:::-;;;;;;;;;53418:19;53426:7;53435:1;53418:7;:19::i;:::-;53448:21;53458:7;53467:1;53448:9;:21::i;:::-;53107:370;53070:407::o;52467:25::-;;;;;;;;;;;;;:::o;29956:125::-;30020:7;30047:21;30060:7;30047:12;:21::i;:::-;:26;;;30040:33;;29956:125;;;:::o;52120:107::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;27404:206::-;27468:7;27509:1;27492:19;;:5;:19;;;27488:60;;;27520:28;;;;;;;;;;;;;;27488:60;27574:12;:19;27587:5;27574:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;27566:36;;27559:43;;27404:206;;;:::o;4763:103::-;4343:12;:10;:12::i;:::-;4332:23;;:7;:5;:7::i;:::-;:23;;;4324:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;4828:30:::1;4855:1;4828:18;:30::i;:::-;4763:103::o:0;4112:87::-;4158:7;4185:6;;;;;;;;;;;4178:13;;4112:87;:::o;54041:86::-;4343:12;:10;:12::i;:::-;4332:23;;:7;:5;:7::i;:::-;:23;;;4324:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;54113:6:::1;54105:5;:14;;;;54041:86:::0;:::o;30317:104::-;30373:13;30406:7;30399:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30317:104;:::o;52424:34::-;;;;:::o;52566:496::-;52625:15;52643:12;:10;:12::i;:::-;52625:30;;52675:6;;;;;;;;;;;52674:7;52666:26;;;;;;;;;;;;:::i;:::-;;;;;;;;;52741:7;52725:13;:11;:13::i;:::-;:23;;;;:::i;:::-;52413:4;52711:37;;52703:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;52800:1;52790:7;:11;52782:34;;;;;;;;;;;;:::i;:::-;;;;;;;;;52848:7;52835:20;;:9;:20;;;52827:45;;;;;;;;;;;;:::i;:::-;;;;;;;;;52905:7;52367:2;52891:21;;52883:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;52978:9;52969:5;;52959:7;:15;;;;:::i;:::-;:28;52951:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;53027:27;53037:7;53046;53027:9;:27::i;:::-;52614:448;52566:496;:::o;31927:287::-;32038:12;:10;:12::i;:::-;32026:24;;:8;:24;;;32022:54;;;32059:17;;;;;;;;;;;;;;32022:54;32134:8;32089:18;:32;32108:12;:10;:12::i;:::-;32089:32;;;;;;;;;;;;;;;:42;32122:8;32089:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;32187:8;32158:48;;32173:12;:10;:12::i;:::-;32158:48;;;32197:8;32158:48;;;;;;:::i;:::-;;;;;;;;31927:287;;:::o;33013:369::-;33180:28;33190:4;33196:2;33200:7;33180:9;:28::i;:::-;33223:15;:2;:13;;;:15::i;:::-;:76;;;;;33243:56;33274:4;33280:2;33284:7;33293:5;33243:30;:56::i;:::-;33242:57;33223:76;33219:156;;;33323:40;;;;;;;;;;;;;;33219:156;33013:369;;;;:::o;52234:46::-;;;;;;;;;;;;;;;;;;;:::o;54332:362::-;54398:13;54432:17;54440:8;54432:7;:17::i;:::-;54424:51;;;;;;;;;;;;:::i;:::-;;;;;;;;;54517:1;54499:7;54493:21;;;;;:::i;:::-;;;:25;:193;;;;;;;;;;;;;;;;;54575:7;54599:26;54616:8;54599:16;:26::i;:::-;54642:13;;;;;;;;;;;;;;;;;54542:128;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;54493:193;54486:200;;54332:362;;;:::o;32285:164::-;32382:4;32406:18;:25;32425:5;32406:25;;;;;;;;;;;;;;;:35;32432:8;32406:35;;;;;;;;;;;;;;;;;;;;;;;;;32399:42;;32285:164;;;;:::o;52287:36::-;52322:1;52287:36;:::o;5021:201::-;4343:12;:10;:12::i;:::-;4332:23;;:7;:5;:7::i;:::-;:23;;;4324:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;5130:1:::1;5110:22;;:8;:22;;;;5102:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;5186:28;5205:8;5186:18;:28::i;:::-;5021:201:::0;:::o;52330:39::-;52367:2;52330:39;:::o;16919:157::-;17004:4;17043:25;17028:40;;;:11;:40;;;;17021:47;;16919:157;;;:::o;2836:98::-;2889:7;2916:10;2909:17;;2836:98;:::o;33637:174::-;33694:4;33737:7;33718:15;:13;:15::i;:::-;:26;;:53;;;;;33758:13;;33748:7;:23;33718:53;:85;;;;;33776:11;:20;33788:7;33776:20;;;;;;;;;;;:27;;;;;;;;;;;;33775:28;33718:85;33711:92;;33637:174;;;:::o;42863:196::-;43005:2;42978:15;:24;42994:7;42978:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;43043:7;43039:2;43023:28;;43032:5;43023:28;;;;;;;;;;;;42863:196;;;:::o;53485:101::-;53550:7;53577:1;53570:8;;53485:101;:::o;27692:137::-;27753:7;27788:12;:19;27801:5;27788:19;;;;;;;;;;;;;;;:32;;;;;;;;;;;;27780:41;;27773:48;;27692:137;;;:::o;37811:2130::-;37926:35;37964:21;37977:7;37964:12;:21::i;:::-;37926:59;;38024:4;38002:26;;:13;:18;;;:26;;;37998:67;;38037:28;;;;;;;;;;;;;;37998:67;38078:22;38120:4;38104:20;;:12;:10;:12::i;:::-;:20;;;:73;;;;38141:36;38158:4;38164:12;:10;:12::i;:::-;38141:16;:36::i;:::-;38104:73;:126;;;;38218:12;:10;:12::i;:::-;38194:36;;:20;38206:7;38194:11;:20::i;:::-;:36;;;38104:126;38078:153;;38249:17;38244:66;;38275:35;;;;;;;;;;;;;;38244:66;38339:1;38325:16;;:2;:16;;;38321:52;;;38350:23;;;;;;;;;;;;;;38321:52;38386:43;38408:4;38414:2;38418:7;38427:1;38386:21;:43::i;:::-;38494:35;38511:1;38515:7;38524:4;38494:8;:35::i;:::-;38855:1;38825:12;:18;38838:4;38825:18;;;;;;;;;;;;;;;:26;;;:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38899:1;38871:12;:16;38884:2;38871:16;;;;;;;;;;;;;;;:24;;;:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38917:31;38951:11;:20;38963:7;38951:20;;;;;;;;;;;38917:54;;39002:2;38986:8;:13;;;:18;;;;;;;;;;;;;;;;;;39052:15;39019:8;:23;;;:49;;;;;;;;;;;;;;;;;;39320:19;39352:1;39342:7;:11;39320:33;;39368:31;39402:11;:24;39414:11;39402:24;;;;;;;;;;;39368:58;;39470:1;39445:27;;:8;:13;;;;;;;;;;;;:27;;;39441:384;;;39655:13;;39640:11;:28;39636:174;;39709:4;39693:8;:13;;;:20;;;;;;;;;;;;;;;;;;39762:13;:28;;;39736:8;:23;;;:54;;;;;;;;;;;;;;;;;;39636:174;39441:384;38800:1036;;;39872:7;39868:2;39853:27;;39862:4;39853:27;;;;;;;;;;;;39891:42;39912:4;39918:2;39922:7;39931:1;39891:20;:42::i;:::-;37915:2026;;37811:2130;;;:::o;33895:104::-;33964:27;33974:2;33978:8;33964:27;;;;;;;;;;;;:9;:27::i;:::-;33895:104;;:::o;28182:112::-;28237:6;28263:12;:19;28276:5;28263:19;;;;;;;;;;;;;;;:23;;;;;;;;;;;;28256:30;;28182:112;;;:::o;28482:101::-;28572:3;28546:12;:19;28559:5;28546:19;;;;;;;;;;;;;;;:23;;;:29;;;;;;;;;;;;;;;;;;28482:101;;:::o;28785:1109::-;28847:21;;:::i;:::-;28881:12;28896:7;28881:22;;28964:4;28945:15;:13;:15::i;:::-;:23;;:47;;;;;28979:13;;28972:4;:20;28945:47;28941:886;;;29013:31;29047:11;:17;29059:4;29047:17;;;;;;;;;;;29013:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29088:9;:16;;;29083:729;;29159:1;29133:28;;:9;:14;;;:28;;;29129:101;;29197:9;29190:16;;;;;;29129:101;29532:261;29539:4;29532:261;;;29572:6;;;;;;;;29617:11;:17;29629:4;29617:17;;;;;;;;;;;29605:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29691:1;29665:28;;:9;:14;;;:28;;;29661:109;;29733:9;29726:16;;;;;;29661:109;29532:261;;;29083:729;28994:833;28941:886;29855:31;;;;;;;;;;;;;;28785:1109;;;;:::o;5382:191::-;5456:16;5475:6;;;;;;;;;;;5456:25;;5501:8;5492:6;;:17;;;;;;;;;;;;;;;;;;5556:8;5525:40;;5546:8;5525:40;;;;;;;;;;;;5445:128;5382:191;:::o;6813:326::-;6873:4;7130:1;7108:7;:19;;;:23;7101:30;;6813:326;;;:::o;43551:667::-;43714:4;43751:2;43735:36;;;43772:12;:10;:12::i;:::-;43786:4;43792:7;43801:5;43735:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;43731:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43986:1;43969:6;:13;:18;43965:235;;;44015:40;;;;;;;;;;;;;;43965:235;44158:6;44152:13;44143:6;44139:2;44135:15;44128:38;43731:480;43864:45;;;43854:55;;;:6;:55;;;;43847:62;;;43551:667;;;;;;:::o;398:723::-;454:13;684:1;675:5;:10;671:53;;;702:10;;;;;;;;;;;;;;;;;;;;;671:53;734:12;749:5;734:20;;765:14;790:78;805:1;797:4;:9;790:78;;823:8;;;;;:::i;:::-;;;;854:2;846:10;;;;;:::i;:::-;;;790:78;;;878:19;910:6;900:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;878:39;;928:154;944:1;935:5;:10;928:154;;972:1;962:11;;;;;:::i;:::-;;;1039:2;1031:5;:10;;;;:::i;:::-;1018:2;:24;;;;:::i;:::-;1005:39;;988:6;995;988:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;1068:2;1059:11;;;;;:::i;:::-;;;928:154;;;1106:6;1092:21;;;;;398:723;;;;:::o;44866:159::-;;;;;:::o;45684:158::-;;;;;:::o;34373:1751::-;34496:20;34519:13;;34496:36;;34561:1;34547:16;;:2;:16;;;34543:48;;;34572:19;;;;;;;;;;;;;;34543:48;34618:1;34606:8;:13;34602:44;;;34628:18;;;;;;;;;;;;;;34602:44;34659:61;34689:1;34693:2;34697:12;34711:8;34659:21;:61::i;:::-;35032:8;34997:12;:16;35010:2;34997:16;;;;;;;;;;;;;;;:24;;;:44;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35096:8;35056:12;:16;35069:2;35056:16;;;;;;;;;;;;;;;:29;;;:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35155:2;35122:11;:25;35134:12;35122:25;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;35222:15;35172:11;:25;35184:12;35172:25;;;;;;;;;;;:40;;;:66;;;;;;;;;;;;;;;;;;35255:20;35278:12;35255:35;;35305:11;35334:8;35319:12;:23;35305:37;;35363:15;:2;:13;;;:15::i;:::-;35359:633;;;35399:314;35455:12;35451:2;35430:38;;35447:1;35430:38;;;;;;;;;;;;35496:69;35535:1;35539:2;35543:14;;;;;;35559:5;35496:30;:69::i;:::-;35491:174;;35601:40;;;;;;;;;;;;;;35491:174;35708:3;35692:12;:19;;35399:314;;35794:12;35777:13;;:29;35773:43;;35808:8;;;35773:43;35359:633;;;35857:120;35913:14;;;;;;35909:2;35888:40;;35905:1;35888:40;;;;;;;;;;;;35972:3;35956:12;:19;;35857:120;;35359:633;36022:12;36006:13;:28;;;;34972:1074;;36056:60;36085:1;36089:2;36093:12;36107:8;36056:20;:60::i;:::-;34485:1639;34373:1751;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:410: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:112;;;280:79;;:::i;:::-;249:112;370:41;404:6;399:3;394;370:41;:::i;:::-;90:327;7:410;;;;;:::o;423:412::-;501:5;526:66;542:49;584:6;542:49;:::i;:::-;526:66;:::i;:::-;517:75;;615:6;608:5;601:21;653:4;646:5;642:16;691:3;682:6;677:3;673:16;670:25;667:112;;;698:79;;:::i;:::-;667:112;788:41;822:6;817:3;812;788:41;:::i;:::-;507:328;423:412;;;;;:::o;841:139::-;887:5;925:6;912:20;903:29;;941:33;968:5;941:33;:::i;:::-;841:139;;;;:::o;986:133::-;1029:5;1067:6;1054:20;1045:29;;1083:30;1107:5;1083:30;:::i;:::-;986:133;;;;:::o;1125:137::-;1170:5;1208:6;1195:20;1186:29;;1224:32;1250:5;1224:32;:::i;:::-;1125:137;;;;:::o;1268:141::-;1324:5;1355:6;1349:13;1340:22;;1371:32;1397:5;1371:32;:::i;:::-;1268:141;;;;:::o;1428:338::-;1483:5;1532:3;1525:4;1517:6;1513:17;1509:27;1499:122;;1540:79;;:::i;:::-;1499:122;1657:6;1644:20;1682:78;1756:3;1748:6;1741:4;1733:6;1729:17;1682:78;:::i;:::-;1673:87;;1489:277;1428:338;;;;:::o;1786:340::-;1842:5;1891:3;1884:4;1876:6;1872:17;1868:27;1858:122;;1899:79;;:::i;:::-;1858:122;2016:6;2003:20;2041:79;2116:3;2108:6;2101:4;2093:6;2089:17;2041:79;:::i;:::-;2032:88;;1848:278;1786:340;;;;:::o;2132:139::-;2178:5;2216:6;2203:20;2194:29;;2232:33;2259:5;2232:33;:::i;:::-;2132:139;;;;:::o;2277:329::-;2336:6;2385:2;2373:9;2364:7;2360:23;2356:32;2353:119;;;2391:79;;:::i;:::-;2353:119;2511:1;2536:53;2581:7;2572:6;2561:9;2557:22;2536:53;:::i;:::-;2526:63;;2482:117;2277:329;;;;:::o;2612:474::-;2680:6;2688;2737:2;2725:9;2716:7;2712:23;2708:32;2705:119;;;2743:79;;:::i;:::-;2705:119;2863:1;2888:53;2933:7;2924:6;2913:9;2909:22;2888:53;:::i;:::-;2878:63;;2834:117;2990:2;3016:53;3061:7;3052:6;3041:9;3037:22;3016:53;:::i;:::-;3006:63;;2961:118;2612:474;;;;;:::o;3092:619::-;3169:6;3177;3185;3234:2;3222:9;3213:7;3209:23;3205:32;3202:119;;;3240:79;;:::i;:::-;3202:119;3360:1;3385:53;3430:7;3421:6;3410:9;3406:22;3385:53;:::i;:::-;3375:63;;3331:117;3487:2;3513:53;3558:7;3549:6;3538:9;3534:22;3513:53;:::i;:::-;3503:63;;3458:118;3615:2;3641:53;3686:7;3677:6;3666:9;3662:22;3641:53;:::i;:::-;3631:63;;3586:118;3092:619;;;;;:::o;3717:943::-;3812:6;3820;3828;3836;3885:3;3873:9;3864:7;3860:23;3856:33;3853:120;;;3892:79;;:::i;:::-;3853:120;4012:1;4037:53;4082:7;4073:6;4062:9;4058:22;4037:53;:::i;:::-;4027:63;;3983:117;4139:2;4165:53;4210:7;4201:6;4190:9;4186:22;4165:53;:::i;:::-;4155:63;;4110:118;4267:2;4293:53;4338:7;4329:6;4318:9;4314:22;4293:53;:::i;:::-;4283:63;;4238:118;4423:2;4412:9;4408:18;4395:32;4454:18;4446:6;4443:30;4440:117;;;4476:79;;:::i;:::-;4440:117;4581:62;4635:7;4626:6;4615:9;4611:22;4581:62;:::i;:::-;4571:72;;4366:287;3717:943;;;;;;;:::o;4666:468::-;4731:6;4739;4788:2;4776:9;4767:7;4763:23;4759:32;4756:119;;;4794:79;;:::i;:::-;4756:119;4914:1;4939:53;4984:7;4975:6;4964:9;4960:22;4939:53;:::i;:::-;4929:63;;4885:117;5041:2;5067:50;5109:7;5100:6;5089:9;5085:22;5067:50;:::i;:::-;5057:60;;5012:115;4666:468;;;;;:::o;5140:474::-;5208:6;5216;5265:2;5253:9;5244:7;5240:23;5236:32;5233:119;;;5271:79;;:::i;:::-;5233:119;5391:1;5416:53;5461:7;5452:6;5441:9;5437:22;5416:53;:::i;:::-;5406:63;;5362:117;5518:2;5544:53;5589:7;5580:6;5569:9;5565:22;5544:53;:::i;:::-;5534:63;;5489:118;5140:474;;;;;:::o;5620:323::-;5676:6;5725:2;5713:9;5704:7;5700:23;5696:32;5693:119;;;5731:79;;:::i;:::-;5693:119;5851:1;5876:50;5918:7;5909:6;5898:9;5894:22;5876:50;:::i;:::-;5866:60;;5822:114;5620:323;;;;:::o;5949:327::-;6007:6;6056:2;6044:9;6035:7;6031:23;6027:32;6024:119;;;6062:79;;:::i;:::-;6024:119;6182:1;6207:52;6251:7;6242:6;6231:9;6227:22;6207:52;:::i;:::-;6197:62;;6153:116;5949:327;;;;:::o;6282:349::-;6351:6;6400:2;6388:9;6379:7;6375:23;6371:32;6368:119;;;6406:79;;:::i;:::-;6368:119;6526:1;6551:63;6606:7;6597:6;6586:9;6582:22;6551:63;:::i;:::-;6541:73;;6497:127;6282:349;;;;:::o;6637:509::-;6706:6;6755:2;6743:9;6734:7;6730:23;6726:32;6723:119;;;6761:79;;:::i;:::-;6723:119;6909:1;6898:9;6894:17;6881:31;6939:18;6931:6;6928:30;6925:117;;;6961:79;;:::i;:::-;6925:117;7066:63;7121:7;7112:6;7101:9;7097:22;7066:63;:::i;:::-;7056:73;;6852:287;6637:509;;;;:::o;7152:329::-;7211:6;7260:2;7248:9;7239:7;7235:23;7231:32;7228:119;;;7266:79;;:::i;:::-;7228:119;7386:1;7411:53;7456:7;7447:6;7436:9;7432:22;7411:53;:::i;:::-;7401:63;;7357:117;7152:329;;;;:::o;7487:118::-;7574:24;7592:5;7574:24;:::i;:::-;7569:3;7562:37;7487:118;;:::o;7611:109::-;7692:21;7707:5;7692:21;:::i;:::-;7687:3;7680:34;7611:109;;:::o;7726:360::-;7812:3;7840:38;7872:5;7840:38;:::i;:::-;7894:70;7957:6;7952:3;7894:70;:::i;:::-;7887:77;;7973:52;8018:6;8013:3;8006:4;7999:5;7995:16;7973:52;:::i;:::-;8050:29;8072:6;8050:29;:::i;:::-;8045:3;8041:39;8034:46;;7816:270;7726:360;;;;:::o;8092:364::-;8180:3;8208:39;8241:5;8208:39;:::i;:::-;8263:71;8327:6;8322:3;8263:71;:::i;:::-;8256:78;;8343:52;8388:6;8383:3;8376:4;8369:5;8365:16;8343:52;:::i;:::-;8420:29;8442:6;8420:29;:::i;:::-;8415:3;8411:39;8404:46;;8184:272;8092:364;;;;:::o;8462:377::-;8568:3;8596:39;8629:5;8596:39;:::i;:::-;8651:89;8733:6;8728:3;8651:89;:::i;:::-;8644:96;;8749:52;8794:6;8789:3;8782:4;8775:5;8771:16;8749:52;:::i;:::-;8826:6;8821:3;8817:16;8810:23;;8572:267;8462:377;;;;:::o;8869:845::-;8972:3;9009:5;9003:12;9038:36;9064:9;9038:36;:::i;:::-;9090:89;9172:6;9167:3;9090:89;:::i;:::-;9083:96;;9210:1;9199:9;9195:17;9226:1;9221:137;;;;9372:1;9367:341;;;;9188:520;;9221:137;9305:4;9301:9;9290;9286:25;9281:3;9274:38;9341:6;9336:3;9332:16;9325:23;;9221:137;;9367:341;9434:38;9466:5;9434:38;:::i;:::-;9494:1;9508:154;9522:6;9519:1;9516:13;9508:154;;;9596:7;9590:14;9586:1;9581:3;9577:11;9570:35;9646:1;9637:7;9633:15;9622:26;;9544:4;9541:1;9537:12;9532:17;;9508:154;;;9691:6;9686:3;9682:16;9675:23;;9374:334;;9188:520;;8976:738;;8869:845;;;;:::o;9720:365::-;9862:3;9883:66;9947:1;9942:3;9883:66;:::i;:::-;9876:73;;9958:93;10047:3;9958:93;:::i;:::-;10076:2;10071:3;10067:12;10060:19;;9720:365;;;:::o;10091:366::-;10233:3;10254:67;10318:2;10313:3;10254:67;:::i;:::-;10247:74;;10330:93;10419:3;10330:93;:::i;:::-;10448:2;10443:3;10439:12;10432:19;;10091:366;;;:::o;10463:::-;10605:3;10626:67;10690:2;10685:3;10626:67;:::i;:::-;10619:74;;10702:93;10791:3;10702:93;:::i;:::-;10820:2;10815:3;10811:12;10804:19;;10463:366;;;:::o;10835:::-;10977:3;10998:67;11062:2;11057:3;10998:67;:::i;:::-;10991:74;;11074:93;11163:3;11074:93;:::i;:::-;11192:2;11187:3;11183:12;11176:19;;10835:366;;;:::o;11207:::-;11349:3;11370:67;11434:2;11429:3;11370:67;:::i;:::-;11363:74;;11446:93;11535:3;11446:93;:::i;:::-;11564:2;11559:3;11555:12;11548:19;;11207:366;;;:::o;11579:::-;11721:3;11742:67;11806:2;11801:3;11742:67;:::i;:::-;11735:74;;11818:93;11907:3;11818:93;:::i;:::-;11936:2;11931:3;11927:12;11920:19;;11579:366;;;:::o;11951:::-;12093:3;12114:67;12178:2;12173:3;12114:67;:::i;:::-;12107:74;;12190:93;12279:3;12190:93;:::i;:::-;12308:2;12303:3;12299:12;12292:19;;11951:366;;;:::o;12323:::-;12465:3;12486:67;12550:2;12545:3;12486:67;:::i;:::-;12479:74;;12562:93;12651:3;12562:93;:::i;:::-;12680:2;12675:3;12671:12;12664:19;;12323:366;;;:::o;12695:::-;12837:3;12858:67;12922:2;12917:3;12858:67;:::i;:::-;12851:74;;12934:93;13023:3;12934:93;:::i;:::-;13052:2;13047:3;13043:12;13036:19;;12695:366;;;:::o;13067:398::-;13226:3;13247:83;13328:1;13323:3;13247:83;:::i;:::-;13240:90;;13339:93;13428:3;13339:93;:::i;:::-;13457:1;13452:3;13448:11;13441:18;;13067:398;;;:::o;13471:366::-;13613:3;13634:67;13698:2;13693:3;13634:67;:::i;:::-;13627:74;;13710:93;13799:3;13710:93;:::i;:::-;13828:2;13823:3;13819:12;13812:19;;13471:366;;;:::o;13843:::-;13985:3;14006:67;14070:2;14065:3;14006:67;:::i;:::-;13999:74;;14082:93;14171:3;14082:93;:::i;:::-;14200:2;14195:3;14191:12;14184:19;;13843:366;;;:::o;14215:118::-;14302:24;14320:5;14302:24;:::i;:::-;14297:3;14290:37;14215:118;;:::o;14339:589::-;14564:3;14586:92;14674:3;14665:6;14586:92;:::i;:::-;14579:99;;14695:95;14786:3;14777:6;14695:95;:::i;:::-;14688:102;;14807:95;14898:3;14889:6;14807:95;:::i;:::-;14800:102;;14919:3;14912:10;;14339:589;;;;;;:::o;14934:379::-;15118:3;15140:147;15283:3;15140:147;:::i;:::-;15133:154;;15304:3;15297:10;;14934:379;;;:::o;15319:222::-;15412:4;15450:2;15439:9;15435:18;15427:26;;15463:71;15531:1;15520:9;15516:17;15507:6;15463:71;:::i;:::-;15319:222;;;;:::o;15547:640::-;15742:4;15780:3;15769:9;15765:19;15757:27;;15794:71;15862:1;15851:9;15847:17;15838:6;15794:71;:::i;:::-;15875:72;15943:2;15932:9;15928:18;15919:6;15875:72;:::i;:::-;15957;16025:2;16014:9;16010:18;16001:6;15957:72;:::i;:::-;16076:9;16070:4;16066:20;16061:2;16050:9;16046:18;16039:48;16104:76;16175:4;16166:6;16104:76;:::i;:::-;16096:84;;15547:640;;;;;;;:::o;16193:210::-;16280:4;16318:2;16307:9;16303:18;16295:26;;16331:65;16393:1;16382:9;16378:17;16369:6;16331:65;:::i;:::-;16193:210;;;;:::o;16409:313::-;16522:4;16560:2;16549:9;16545:18;16537:26;;16609:9;16603:4;16599:20;16595:1;16584:9;16580:17;16573:47;16637:78;16710:4;16701:6;16637:78;:::i;:::-;16629:86;;16409:313;;;;:::o;16728:419::-;16894:4;16932:2;16921:9;16917:18;16909:26;;16981:9;16975:4;16971:20;16967:1;16956:9;16952:17;16945:47;17009:131;17135:4;17009:131;:::i;:::-;17001:139;;16728:419;;;:::o;17153:::-;17319:4;17357:2;17346:9;17342:18;17334:26;;17406:9;17400:4;17396:20;17392:1;17381:9;17377:17;17370:47;17434:131;17560:4;17434:131;:::i;:::-;17426:139;;17153:419;;;:::o;17578:::-;17744:4;17782:2;17771:9;17767:18;17759:26;;17831:9;17825:4;17821:20;17817:1;17806:9;17802:17;17795:47;17859:131;17985:4;17859:131;:::i;:::-;17851:139;;17578:419;;;:::o;18003:::-;18169:4;18207:2;18196:9;18192:18;18184:26;;18256:9;18250:4;18246:20;18242:1;18231:9;18227:17;18220:47;18284:131;18410:4;18284:131;:::i;:::-;18276:139;;18003:419;;;:::o;18428:::-;18594:4;18632:2;18621:9;18617:18;18609:26;;18681:9;18675:4;18671:20;18667:1;18656:9;18652:17;18645:47;18709:131;18835:4;18709:131;:::i;:::-;18701:139;;18428:419;;;:::o;18853:::-;19019:4;19057:2;19046:9;19042:18;19034:26;;19106:9;19100:4;19096:20;19092:1;19081:9;19077:17;19070:47;19134:131;19260:4;19134:131;:::i;:::-;19126:139;;18853:419;;;:::o;19278:::-;19444:4;19482:2;19471:9;19467:18;19459:26;;19531:9;19525:4;19521:20;19517:1;19506:9;19502:17;19495:47;19559:131;19685:4;19559:131;:::i;:::-;19551:139;;19278:419;;;:::o;19703:::-;19869:4;19907:2;19896:9;19892:18;19884:26;;19956:9;19950:4;19946:20;19942:1;19931:9;19927:17;19920:47;19984:131;20110:4;19984:131;:::i;:::-;19976:139;;19703:419;;;:::o;20128:::-;20294:4;20332:2;20321:9;20317:18;20309:26;;20381:9;20375:4;20371:20;20367:1;20356:9;20352:17;20345:47;20409:131;20535:4;20409:131;:::i;:::-;20401:139;;20128:419;;;:::o;20553:::-;20719:4;20757:2;20746:9;20742:18;20734:26;;20806:9;20800:4;20796:20;20792:1;20781:9;20777:17;20770:47;20834:131;20960:4;20834:131;:::i;:::-;20826:139;;20553:419;;;:::o;20978:::-;21144:4;21182:2;21171:9;21167:18;21159:26;;21231:9;21225:4;21221:20;21217:1;21206:9;21202:17;21195:47;21259:131;21385:4;21259:131;:::i;:::-;21251:139;;20978:419;;;:::o;21403:222::-;21496:4;21534:2;21523:9;21519:18;21511:26;;21547:71;21615:1;21604:9;21600:17;21591:6;21547:71;:::i;:::-;21403:222;;;;:::o;21631:129::-;21665:6;21692:20;;:::i;:::-;21682:30;;21721:33;21749:4;21741:6;21721:33;:::i;:::-;21631:129;;;:::o;21766:75::-;21799:6;21832:2;21826:9;21816:19;;21766:75;:::o;21847:307::-;21908:4;21998:18;21990:6;21987:30;21984:56;;;22020:18;;:::i;:::-;21984:56;22058:29;22080:6;22058:29;:::i;:::-;22050:37;;22142:4;22136;22132:15;22124:23;;21847:307;;;:::o;22160:308::-;22222:4;22312:18;22304:6;22301:30;22298:56;;;22334:18;;:::i;:::-;22298:56;22372:29;22394:6;22372:29;:::i;:::-;22364:37;;22456:4;22450;22446:15;22438:23;;22160:308;;;:::o;22474:141::-;22523:4;22546:3;22538:11;;22569:3;22566:1;22559:14;22603:4;22600:1;22590:18;22582:26;;22474:141;;;:::o;22621:98::-;22672:6;22706:5;22700:12;22690:22;;22621:98;;;:::o;22725:99::-;22777:6;22811:5;22805:12;22795:22;;22725:99;;;:::o;22830:168::-;22913:11;22947:6;22942:3;22935:19;22987:4;22982:3;22978:14;22963:29;;22830:168;;;;:::o;23004:147::-;23105:11;23142:3;23127:18;;23004:147;;;;:::o;23157:169::-;23241:11;23275:6;23270:3;23263:19;23315:4;23310:3;23306:14;23291:29;;23157:169;;;;:::o;23332:148::-;23434:11;23471:3;23456:18;;23332:148;;;;:::o;23486:305::-;23526:3;23545:20;23563:1;23545:20;:::i;:::-;23540:25;;23579:20;23597:1;23579:20;:::i;:::-;23574:25;;23733:1;23665:66;23661:74;23658:1;23655:81;23652:107;;;23739:18;;:::i;:::-;23652:107;23783:1;23780;23776:9;23769:16;;23486:305;;;;:::o;23797:185::-;23837:1;23854:20;23872:1;23854:20;:::i;:::-;23849:25;;23888:20;23906:1;23888:20;:::i;:::-;23883:25;;23927:1;23917:35;;23932:18;;:::i;:::-;23917:35;23974:1;23971;23967:9;23962:14;;23797:185;;;;:::o;23988:348::-;24028:7;24051:20;24069:1;24051:20;:::i;:::-;24046:25;;24085:20;24103:1;24085:20;:::i;:::-;24080:25;;24273:1;24205:66;24201:74;24198:1;24195:81;24190:1;24183:9;24176:17;24172:105;24169:131;;;24280:18;;:::i;:::-;24169:131;24328:1;24325;24321:9;24310:20;;23988:348;;;;:::o;24342:191::-;24382:4;24402:20;24420:1;24402:20;:::i;:::-;24397:25;;24436:20;24454:1;24436:20;:::i;:::-;24431:25;;24475:1;24472;24469:8;24466:34;;;24480:18;;:::i;:::-;24466:34;24525:1;24522;24518:9;24510:17;;24342:191;;;;:::o;24539:96::-;24576:7;24605:24;24623:5;24605:24;:::i;:::-;24594:35;;24539:96;;;:::o;24641:90::-;24675:7;24718:5;24711:13;24704:21;24693:32;;24641:90;;;:::o;24737:149::-;24773:7;24813:66;24806:5;24802:78;24791:89;;24737:149;;;:::o;24892:126::-;24929:7;24969:42;24962:5;24958:54;24947:65;;24892:126;;;:::o;25024:77::-;25061:7;25090:5;25079:16;;25024:77;;;:::o;25107:154::-;25191:6;25186:3;25181;25168:30;25253:1;25244:6;25239:3;25235:16;25228:27;25107:154;;;:::o;25267:307::-;25335:1;25345:113;25359:6;25356:1;25353:13;25345:113;;;25444:1;25439:3;25435:11;25429:18;25425:1;25420:3;25416:11;25409:39;25381:2;25378:1;25374:10;25369:15;;25345:113;;;25476:6;25473:1;25470:13;25467:101;;;25556:1;25547:6;25542:3;25538:16;25531:27;25467:101;25316:258;25267:307;;;:::o;25580:320::-;25624:6;25661:1;25655:4;25651:12;25641:22;;25708:1;25702:4;25698:12;25729:18;25719:81;;25785:4;25777:6;25773:17;25763:27;;25719:81;25847:2;25839:6;25836:14;25816:18;25813:38;25810:84;;;25866:18;;:::i;:::-;25810:84;25631:269;25580:320;;;:::o;25906:281::-;25989:27;26011:4;25989:27;:::i;:::-;25981:6;25977:40;26119:6;26107:10;26104:22;26083:18;26071:10;26068:34;26065:62;26062:88;;;26130:18;;:::i;:::-;26062:88;26170:10;26166:2;26159:22;25949:238;25906:281;;:::o;26193:233::-;26232:3;26255:24;26273:5;26255:24;:::i;:::-;26246:33;;26301:66;26294:5;26291:77;26288:103;;;26371:18;;:::i;:::-;26288:103;26418:1;26411:5;26407:13;26400:20;;26193:233;;;:::o;26432:176::-;26464:1;26481:20;26499:1;26481:20;:::i;:::-;26476:25;;26515:20;26533:1;26515:20;:::i;:::-;26510:25;;26554:1;26544:35;;26559:18;;:::i;:::-;26544:35;26600:1;26597;26593:9;26588:14;;26432:176;;;;:::o;26614:180::-;26662:77;26659:1;26652:88;26759:4;26756:1;26749:15;26783:4;26780:1;26773:15;26800:180;26848:77;26845:1;26838:88;26945:4;26942:1;26935:15;26969:4;26966:1;26959:15;26986:180;27034:77;27031:1;27024:88;27131:4;27128:1;27121:15;27155:4;27152:1;27145:15;27172:180;27220:77;27217:1;27210:88;27317:4;27314:1;27307:15;27341:4;27338:1;27331:15;27358:180;27406:77;27403:1;27396:88;27503:4;27500:1;27493:15;27527:4;27524:1;27517:15;27544:117;27653:1;27650;27643:12;27667:117;27776:1;27773;27766:12;27790:117;27899:1;27896;27889:12;27913:117;28022:1;28019;28012:12;28036:102;28077:6;28128:2;28124:7;28119:2;28112:5;28108:14;28104:28;28094:38;;28036:102;;;:::o;28144:156::-;28284:8;28280:1;28272:6;28268:14;28261:32;28144:156;:::o;28306:225::-;28446:34;28442:1;28434:6;28430:14;28423:58;28515:8;28510:2;28502:6;28498:15;28491:33;28306:225;:::o;28537:160::-;28677:12;28673:1;28665:6;28661:14;28654:36;28537:160;:::o;28703:172::-;28843:24;28839:1;28831:6;28827:14;28820:48;28703:172;:::o;28881:176::-;29021:28;29017:1;29009:6;29005:14;28998:52;28881:176;:::o;29063:168::-;29203:20;29199:1;29191:6;29187:14;29180:44;29063:168;:::o;29237:171::-;29377:23;29373:1;29365:6;29361:14;29354:47;29237:171;:::o;29414:182::-;29554:34;29550:1;29542:6;29538:14;29531:58;29414:182;:::o;29602:172::-;29742:24;29738:1;29730:6;29726:14;29719:48;29602:172;:::o;29780:114::-;;:::o;29900:164::-;30040:16;30036:1;30028:6;30024:14;30017:40;29900:164;:::o;30070:162::-;30210:14;30206:1;30198:6;30194:14;30187:38;30070:162;:::o;30238:122::-;30311:24;30329:5;30311:24;:::i;:::-;30304:5;30301:35;30291:63;;30350:1;30347;30340:12;30291:63;30238:122;:::o;30366:116::-;30436:21;30451:5;30436:21;:::i;:::-;30429:5;30426:32;30416:60;;30472:1;30469;30462:12;30416:60;30366:116;:::o;30488:120::-;30560:23;30577:5;30560:23;:::i;:::-;30553:5;30550:34;30540:62;;30598:1;30595;30588:12;30540:62;30488:120;:::o;30614:122::-;30687:24;30705:5;30687:24;:::i;:::-;30680:5;30677:35;30667:63;;30726:1;30723;30716:12;30667:63;30614:122;:::o

Swarm Source

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