ETH Price: $2,411.54 (+3.09%)

Token

StonerMoonBird (Bird)
 

Overview

Max Total Supply

423 Bird

Holders

87

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
boboball.eth
Balance
4 Bird
0x7afb7c6723c2c23f90d14b6de88819ac20883867
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:
StonerMoonBird

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-04-20
*/

// File: contracts/nft.sol

/**
 *Submitted for verification at Etherscan.io on 2022-02-16
*/

// File @openzeppelin/contracts/utils/[email protected]

// 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/[email protected]


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



/**
 * @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/[email protected]


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



/**
 * @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/introspection/[email protected]


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



/**
 * @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/token/ERC721/[email protected]


// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol)



/**
 * @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`, 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 Returns the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId) external view returns (address operator);

    /**
     * @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 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);

    /**
     * @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;
}


// File @openzeppelin/contracts/token/ERC721/[email protected]


// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol)



/**
 * @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 `IERC721.onERC721Received.selector`.
     */
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}


// File @openzeppelin/contracts/token/ERC721/extensions/[email protected]


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



/**
 * @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 @openzeppelin/contracts/token/ERC721/extensions/[email protected]


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



/**
 * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Enumerable is IERC721 {
    /**
     * @dev Returns the total amount of tokens stored by the contract.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns a token ID owned by `owner` at a given `index` of its token list.
     * Use along with {balanceOf} to enumerate all of ``owner``'s tokens.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256 tokenId);

    /**
     * @dev Returns a token ID at a given `index` of all the tokens stored by the contract.
     * Use along with {totalSupply} to enumerate all tokens.
     */
    function tokenByIndex(uint256 index) external view returns (uint256);
}


// File @openzeppelin/contracts/utils/[email protected]


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



/**
 * @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
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize, which returns 0 for contracts in
        // construction, since the code is only stored at the end of the
        // constructor execution.

        uint256 size;
        assembly {
            size := extcodesize(account)
        }
        return size > 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/utils/introspection/[email protected]


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



/**
 * @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 contracts/ERC721A.sol


/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata and Enumerable extension. Built to optimize for lower gas during batch mints.
 *
 * Assumes serials are sequentially minted starting at 0 (e.g. 0, 1, 2, 3..).
 *
 * Does not support burning tokens to address(0).
 *
 * Assumes that an owner cannot have more than the 2**128 (max value of uint128) of supply
 */

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 See {IERC721Enumerable-totalSupply}.
     * @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;
    }

    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 {
        _mint(to, quantity, _data, true);
    }

    /**
     * @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,
        bytes memory _data,
        bool safe
    ) 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 (safe && 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 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 This is 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/StonerBird.sol
//moonbirds

contract StonerMoonBird is ERC721A, Ownable {

    string public baseURI = "";
    string public constant baseExtension = ".json";
    // Mainnet - 0xa5409ec958C83C3f309868babACA7c86DCB077c1
    // Rinkeby - 0xF57B2c51dED3A29e6891aba85459d600256Cf317
    address public constant proxyRegistryAddress = 0xa5409ec958C83C3f309868babACA7c86DCB077c1;

    uint256 public constant MAX_PER_TX_FREE = 4;
    uint256 public constant MAX_PER_TX = 10;
    uint256 public constant FREE_MAX_SUPPLY = 420;
    uint256 public constant MAX_SUPPLY = 4200;
    uint256 public constant price = 0.0069 ether;
    uint256 public maxSupply;

    bool public paused = true;
    bool public revealed = false;

    constructor(string memory baseURI_) ERC721A("StonerMoonBird", "Bird") {
        maxSupply = MAX_SUPPLY;
        baseURI = baseURI_;
    }

    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");

        if(FREE_MAX_SUPPLY > totalSupply() + _amount){
            //Minted supply is less than Max Free & Amount being minted won't exceed Max Free
            require(FREE_MAX_SUPPLY - totalSupply() > _amount, "Free supply over!");
            require(MAX_PER_TX_FREE >= _amount , "Excess max per free tx");
        }else{
            require(MAX_PER_TX >= _amount , "Excess max per paid tx");
            require(_amount * price == msg.value, "Invalid funds provided");
        }

        _safeMint(_caller, _amount);
    }

    function isApprovedForAll(address owner, address operator)
        override
        public
        view
        returns (bool)
    {
        // Whitelist OpenSea proxy contract for easy trading.
        ProxyRegistry proxyRegistry = ProxyRegistry(proxyRegistryAddress);
        if (address(proxyRegistry.proxies(owner)) == operator) {
            return true;
        }

        return super.isApprovedForAll(owner, operator);
    }

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

    function setupOS() external onlyOwner {
        _safeMint(_msgSender(), 1);
    }

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

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

    function changeRevealed(bool _revealed) public onlyOwner {
        revealed = _revealed;
    }

    function tokenURI(uint256 _tokenId) public view override returns (string memory) {
        require(_exists(_tokenId), "Token does not exist.");

        if (revealed) {
            return bytes(baseURI).length > 0 ? string(
                abi.encodePacked(
                baseURI,
                Strings.toString(_tokenId),
                baseExtension
                )
            ) : "";
            } else {
            return string(abi.encodePacked(baseURI, "unrevealed.json"));
        }
    }
    function setNewMaxSupply(uint256 newMaxSupply) external onlyOwner {
        require(newMaxSupply < maxSupply, "you can only decrease it");
        maxSupply = newMaxSupply;
    }

    function renounceOwnership() public override onlyOwner {}
}

contract OwnableDelegateProxy { }
contract ProxyRegistry {
    mapping(address => OwnableDelegateProxy) public proxies;
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"baseURI_","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"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":"FREE_MAX_SUPPLY","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_PER_TX_FREE","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":[{"internalType":"bool","name":"_revealed","type":"bool"}],"name":"changeRevealed","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"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":"proxyRegistryAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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":"newMaxSupply","type":"uint256"}],"name":"setNewMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setupOS","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

608060405260405180602001604052806000815250600990805190602001906200002b92919062000267565b506001600b60006101000a81548160ff0219169083151502179055506000600b60016101000a81548160ff0219169083151502179055503480156200006f57600080fd5b506040516200442838038062004428833981810160405281019062000095919062000395565b6040518060400160405280600e81526020017f53746f6e65724d6f6f6e426972640000000000000000000000000000000000008152506040518060400160405280600481526020017f426972640000000000000000000000000000000000000000000000000000000081525081600290805190602001906200011992919062000267565b5080600390805190602001906200013292919062000267565b50620001436200019460201b60201c565b60008190555050506200016b6200015f6200019960201b60201c565b620001a160201b60201c565b611068600a8190555080600990805190602001906200018c92919062000267565b50506200056a565b600090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b82805462000275906200047b565b90600052602060002090601f016020900481019282620002995760008555620002e5565b82601f10620002b457805160ff1916838001178555620002e5565b82800160010185558215620002e5579182015b82811115620002e4578251825591602001919060010190620002c7565b5b509050620002f49190620002f8565b5090565b5b8082111562000313576000816000905550600101620002f9565b5090565b60006200032e62000328846200040f565b620003e6565b9050828152602081018484840111156200034d576200034c6200054a565b5b6200035a84828562000445565b509392505050565b600082601f8301126200037a576200037962000545565b5b81516200038c84826020860162000317565b91505092915050565b600060208284031215620003ae57620003ad62000554565b5b600082015167ffffffffffffffff811115620003cf57620003ce6200054f565b5b620003dd8482850162000362565b91505092915050565b6000620003f262000405565b9050620004008282620004b1565b919050565b6000604051905090565b600067ffffffffffffffff8211156200042d576200042c62000516565b5b620004388262000559565b9050602081019050919050565b60005b838110156200046557808201518184015260208101905062000448565b8381111562000475576000848401525b50505050565b600060028204905060018216806200049457607f821691505b60208210811415620004ab57620004aa620004e7565b5b50919050565b620004bc8262000559565b810181811067ffffffffffffffff82111715620004de57620004dd62000516565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b613eae806200057a6000396000f3fe6080604052600436106102045760003560e01c806370a0823111610118578063b88d4fde116100a0578063cf3604dc1161006f578063cf3604dc14610712578063d5abeb011461073b578063e985e9c514610766578063f2fde38b146107a3578063f43a22dc146107cc57610204565b8063b88d4fde14610656578063c66828621461067f578063c87b56dd146106aa578063cd7c0326146106e757610204565b806395d89b41116100e757806395d89b4114610592578063a035b1fe146105bd578063a0712d68146105e8578063a22cb46514610604578063b7c7d9a71461062d57610204565b806370a08231146104e8578063715018a6146105255780638069876d1461053c5780638da5cb5b1461056757610204565b80633ccfd60b1161019b57806355f804b31161016a57806355f804b3146104155780635c975abb1461043e5780636352211e14610469578063698982ba146104a65780636c0360eb146104bd57610204565b80633ccfd60b1461037f57806342842e0e14610396578063463fff79146103bf57806351830227146103ea57610204565b8063095ea7b3116101d7578063095ea7b3146102d757806318160ddd1461030057806323b872dd1461032b57806332cb6b0c1461035457610204565b806301ffc9a71461020957806302329a291461024657806306fdde031461026f578063081812fc1461029a575b600080fd5b34801561021557600080fd5b50610230600480360381019061022b9190612fca565b6107f7565b60405161023d91906134f2565b60405180910390f35b34801561025257600080fd5b5061026d60048036038101906102689190612f9d565b6108d9565b005b34801561027b57600080fd5b50610284610972565b604051610291919061350d565b60405180910390f35b3480156102a657600080fd5b506102c160048036038101906102bc919061309a565b610a04565b6040516102ce919061348b565b60405180910390f35b3480156102e357600080fd5b506102fe60048036038101906102f99190612f5d565b610a80565b005b34801561030c57600080fd5b50610315610b8b565b60405161032291906136cf565b60405180910390f35b34801561033757600080fd5b50610352600480360381019061034d9190612e47565b610ba2565b005b34801561036057600080fd5b50610369610bb2565b60405161037691906136cf565b60405180910390f35b34801561038b57600080fd5b50610394610bb8565b005b3480156103a257600080fd5b506103bd60048036038101906103b89190612e47565b610cf0565b005b3480156103cb57600080fd5b506103d4610d10565b6040516103e191906136cf565b60405180910390f35b3480156103f657600080fd5b506103ff610d15565b60405161040c91906134f2565b60405180910390f35b34801561042157600080fd5b5061043c60048036038101906104379190613051565b610d28565b005b34801561044a57600080fd5b50610453610dbe565b60405161046091906134f2565b60405180910390f35b34801561047557600080fd5b50610490600480360381019061048b919061309a565b610dd1565b60405161049d919061348b565b60405180910390f35b3480156104b257600080fd5b506104bb610de7565b005b3480156104c957600080fd5b506104d2610e77565b6040516104df919061350d565b60405180910390f35b3480156104f457600080fd5b5061050f600480360381019061050a9190612dda565b610f05565b60405161051c91906136cf565b60405180910390f35b34801561053157600080fd5b5061053a610fd5565b005b34801561054857600080fd5b50610551611053565b60405161055e91906136cf565b60405180910390f35b34801561057357600080fd5b5061057c611059565b604051610589919061348b565b60405180910390f35b34801561059e57600080fd5b506105a7611083565b6040516105b4919061350d565b60405180910390f35b3480156105c957600080fd5b506105d2611115565b6040516105df91906136cf565b60405180910390f35b61060260048036038101906105fd919061309a565b611120565b005b34801561061057600080fd5b5061062b60048036038101906106269190612f1d565b6113e6565b005b34801561063957600080fd5b50610654600480360381019061064f919061309a565b61155e565b005b34801561066257600080fd5b5061067d60048036038101906106789190612e9a565b611628565b005b34801561068b57600080fd5b506106946116a4565b6040516106a1919061350d565b60405180910390f35b3480156106b657600080fd5b506106d160048036038101906106cc919061309a565b6116dd565b6040516106de919061350d565b60405180910390f35b3480156106f357600080fd5b506106fc6117fa565b604051610709919061348b565b60405180910390f35b34801561071e57600080fd5b5061073960048036038101906107349190612f9d565b611812565b005b34801561074757600080fd5b506107506118ab565b60405161075d91906136cf565b60405180910390f35b34801561077257600080fd5b5061078d60048036038101906107889190612e07565b6118b1565b60405161079a91906134f2565b60405180910390f35b3480156107af57600080fd5b506107ca60048036038101906107c59190612dda565b6119a5565b005b3480156107d857600080fd5b506107e1611a9d565b6040516107ee91906136cf565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806108c257507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108d257506108d182611aa2565b5b9050919050565b6108e1611b0c565b73ffffffffffffffffffffffffffffffffffffffff166108ff611059565b73ffffffffffffffffffffffffffffffffffffffff1614610955576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161094c9061362f565b60405180910390fd5b80600b60006101000a81548160ff02191690831515021790555050565b606060028054610981906139b1565b80601f01602080910402602001604051908101604052809291908181526020018280546109ad906139b1565b80156109fa5780601f106109cf576101008083540402835291602001916109fa565b820191906000526020600020905b8154815290600101906020018083116109dd57829003601f168201915b5050505050905090565b6000610a0f82611b14565b610a45576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610a8b82610dd1565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610af3576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610b12611b0c565b73ffffffffffffffffffffffffffffffffffffffff1614158015610b445750610b4281610b3d611b0c565b6118b1565b155b15610b7b576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610b86838383611b62565b505050565b6000610b95611c14565b6001546000540303905090565b610bad838383611c19565b505050565b61106881565b610bc0611b0c565b73ffffffffffffffffffffffffffffffffffffffff16610bde611059565b73ffffffffffffffffffffffffffffffffffffffff1614610c34576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c2b9061362f565b60405180910390fd5b60004790506000610c43611b0c565b73ffffffffffffffffffffffffffffffffffffffff1682604051610c6690613476565b60006040518083038185875af1925050503d8060008114610ca3576040519150601f19603f3d011682016040523d82523d6000602084013e610ca8565b606091505b5050905080610cec576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ce39061368f565b60405180910390fd5b5050565b610d0b83838360405180602001604052806000815250611628565b505050565b600481565b600b60019054906101000a900460ff1681565b610d30611b0c565b73ffffffffffffffffffffffffffffffffffffffff16610d4e611059565b73ffffffffffffffffffffffffffffffffffffffff1614610da4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d9b9061362f565b60405180910390fd5b8060099080519060200190610dba929190612b96565b5050565b600b60009054906101000a900460ff1681565b6000610ddc826120cf565b600001519050919050565b610def611b0c565b73ffffffffffffffffffffffffffffffffffffffff16610e0d611059565b73ffffffffffffffffffffffffffffffffffffffff1614610e63576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e5a9061362f565b60405180910390fd5b610e75610e6e611b0c565b600161235e565b565b60098054610e84906139b1565b80601f0160208091040260200160405190810160405280929190818152602001828054610eb0906139b1565b8015610efd5780601f10610ed257610100808354040283529160200191610efd565b820191906000526020600020905b815481529060010190602001808311610ee057829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610f6d576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b610fdd611b0c565b73ffffffffffffffffffffffffffffffffffffffff16610ffb611059565b73ffffffffffffffffffffffffffffffffffffffff1614611051576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110489061362f565b60405180910390fd5b565b6101a481565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060038054611092906139b1565b80601f01602080910402602001604051908101604052809291908181526020018280546110be906139b1565b801561110b5780601f106110e05761010080835404028352916020019161110b565b820191906000526020600020905b8154815290600101906020018083116110ee57829003601f168201915b5050505050905090565b6618838370f3400081565b600061112a611b0c565b9050600b60009054906101000a900460ff161561117c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111739061352f565b60405180910390fd5b81611185610b8b565b61118f91906137d4565b61106810156111d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111ca906135ef565b60405180910390fd5b60008211611216576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161120d9061356f565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614611284576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161127b906136af565b60405180910390fd5b8161128d610b8b565b61129791906137d4565b6101a4111561133f57816112a9610b8b565b6101a46112b691906138b5565b116112f6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112ed906135af565b60405180910390fd5b816004101561133a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611331906135cf565b60405180910390fd5b6113d8565b81600a1015611383576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161137a9061358f565b60405180910390fd5b346618838370f3400083611397919061385b565b146113d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113ce9061364f565b60405180910390fd5b5b6113e2818361235e565b5050565b6113ee611b0c565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611453576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000611460611b0c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661150d611b0c565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161155291906134f2565b60405180910390a35050565b611566611b0c565b73ffffffffffffffffffffffffffffffffffffffff16611584611059565b73ffffffffffffffffffffffffffffffffffffffff16146115da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115d19061362f565b60405180910390fd5b600a54811061161e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116159061366f565b60405180910390fd5b80600a8190555050565b611633848484611c19565b6116528373ffffffffffffffffffffffffffffffffffffffff1661237c565b801561166757506116658484848461238f565b155b1561169e576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b6040518060400160405280600581526020017f2e6a736f6e00000000000000000000000000000000000000000000000000000081525081565b60606116e882611b14565b611727576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161171e9061360f565b60405180910390fd5b600b60019054906101000a900460ff16156117d15760006009805461174b906139b1565b90501161176757604051806020016040528060008152506117ca565b6009611772836124ef565b6040518060400160405280600581526020017f2e6a736f6e0000000000000000000000000000000000000000000000000000008152506040516020016117ba93929190613423565b6040516020818303038152906040525b90506117f5565b60096040516020016117e39190613454565b60405160208183030381529060405290505b919050565b73a5409ec958c83c3f309868babaca7c86dcb077c181565b61181a611b0c565b73ffffffffffffffffffffffffffffffffffffffff16611838611059565b73ffffffffffffffffffffffffffffffffffffffff161461188e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118859061362f565b60405180910390fd5b80600b60016101000a81548160ff02191690831515021790555050565b600a5481565b60008073a5409ec958c83c3f309868babaca7c86dcb077c190508273ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1663c4552791866040518263ffffffff1660e01b815260040161191b919061348b565b60206040518083038186803b15801561193357600080fd5b505afa158015611947573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061196b9190613024565b73ffffffffffffffffffffffffffffffffffffffff16141561199157600191505061199f565b61199b8484612650565b9150505b92915050565b6119ad611b0c565b73ffffffffffffffffffffffffffffffffffffffff166119cb611059565b73ffffffffffffffffffffffffffffffffffffffff1614611a21576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a189061362f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611a91576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a889061354f565b60405180910390fd5b611a9a816126e4565b50565b600a81565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b600081611b1f611c14565b11158015611b2e575060005482105b8015611b5b575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600090565b6000611c24826120cf565b90508373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614611c8f576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff16611cb0611b0c565b73ffffffffffffffffffffffffffffffffffffffff161480611cdf5750611cde85611cd9611b0c565b6118b1565b5b80611d245750611ced611b0c565b73ffffffffffffffffffffffffffffffffffffffff16611d0c84610a04565b73ffffffffffffffffffffffffffffffffffffffff16145b905080611d5d576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611dc4576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611dd185858560016127aa565b611ddd60008487611b62565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600460008581526020019081526020016000209050848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060006001850190506000600460008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141561205d57600054821461205c57878160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b505050828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46120c885858560016127b0565b5050505050565b6120d7612c1c565b6000829050806120e5611c14565b111580156120f4575060005481105b15612327576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050806040015161232557600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612209578092505050612359565b5b60011561232457818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461231f578092505050612359565b61220a565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6123788282604051806020016040528060008152506127b6565b5050565b600080823b905060008111915050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a026123b5611b0c565b8786866040518563ffffffff1660e01b81526004016123d794939291906134a6565b602060405180830381600087803b1580156123f157600080fd5b505af192505050801561242257506040513d601f19601f8201168201806040525081019061241f9190612ff7565b60015b61249c573d8060008114612452576040519150601f19603f3d011682016040523d82523d6000602084013e612457565b606091505b50600081511415612494576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60606000821415612537576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061264b565b600082905060005b6000821461256957808061255290613a14565b915050600a82612562919061382a565b915061253f565b60008167ffffffffffffffff81111561258557612584613b4a565b5b6040519080825280601f01601f1916602001820160405280156125b75781602001600182028036833780820191505090505b5090505b60008514612644576001826125d091906138b5565b9150600a856125df9190613a5d565b60306125eb91906137d4565b60f81b81838151811061260157612600613b1b565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561263d919061382a565b94506125bb565b8093505050505b919050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b50505050565b50505050565b6127c383838360016127c8565b505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415612835576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000841415612870576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61287d60008683876127aa565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060008582019050838015612a475750612a468773ffffffffffffffffffffffffffffffffffffffff1661237c565b5b15612b0d575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612abc600088848060010195508861238f565b612af2576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80821415612a4d578260005414612b0857600080fd5b612b79565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a480821415612b0e575b816000819055505050612b8f60008683876127b0565b5050505050565b828054612ba2906139b1565b90600052602060002090601f016020900481019282612bc45760008555612c0b565b82601f10612bdd57805160ff1916838001178555612c0b565b82800160010185558215612c0b579182015b82811115612c0a578251825591602001919060010190612bef565b5b509050612c189190612c5f565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b80821115612c78576000816000905550600101612c60565b5090565b6000612c8f612c8a8461370f565b6136ea565b905082815260208101848484011115612cab57612caa613b7e565b5b612cb684828561396f565b509392505050565b6000612cd1612ccc84613740565b6136ea565b905082815260208101848484011115612ced57612cec613b7e565b5b612cf884828561396f565b509392505050565b600081359050612d0f81613e05565b92915050565b600081359050612d2481613e1c565b92915050565b600081359050612d3981613e33565b92915050565b600081519050612d4e81613e33565b92915050565b600082601f830112612d6957612d68613b79565b5b8135612d79848260208601612c7c565b91505092915050565b600081519050612d9181613e4a565b92915050565b600082601f830112612dac57612dab613b79565b5b8135612dbc848260208601612cbe565b91505092915050565b600081359050612dd481613e61565b92915050565b600060208284031215612df057612def613b88565b5b6000612dfe84828501612d00565b91505092915050565b60008060408385031215612e1e57612e1d613b88565b5b6000612e2c85828601612d00565b9250506020612e3d85828601612d00565b9150509250929050565b600080600060608486031215612e6057612e5f613b88565b5b6000612e6e86828701612d00565b9350506020612e7f86828701612d00565b9250506040612e9086828701612dc5565b9150509250925092565b60008060008060808587031215612eb457612eb3613b88565b5b6000612ec287828801612d00565b9450506020612ed387828801612d00565b9350506040612ee487828801612dc5565b925050606085013567ffffffffffffffff811115612f0557612f04613b83565b5b612f1187828801612d54565b91505092959194509250565b60008060408385031215612f3457612f33613b88565b5b6000612f4285828601612d00565b9250506020612f5385828601612d15565b9150509250929050565b60008060408385031215612f7457612f73613b88565b5b6000612f8285828601612d00565b9250506020612f9385828601612dc5565b9150509250929050565b600060208284031215612fb357612fb2613b88565b5b6000612fc184828501612d15565b91505092915050565b600060208284031215612fe057612fdf613b88565b5b6000612fee84828501612d2a565b91505092915050565b60006020828403121561300d5761300c613b88565b5b600061301b84828501612d3f565b91505092915050565b60006020828403121561303a57613039613b88565b5b600061304884828501612d82565b91505092915050565b60006020828403121561306757613066613b88565b5b600082013567ffffffffffffffff81111561308557613084613b83565b5b61309184828501612d97565b91505092915050565b6000602082840312156130b0576130af613b88565b5b60006130be84828501612dc5565b91505092915050565b6130d0816138e9565b82525050565b6130df816138fb565b82525050565b60006130f082613786565b6130fa818561379c565b935061310a81856020860161397e565b61311381613b8d565b840191505092915050565b600061312982613791565b61313381856137b8565b935061314381856020860161397e565b61314c81613b8d565b840191505092915050565b600061316282613791565b61316c81856137c9565b935061317c81856020860161397e565b80840191505092915050565b60008154613195816139b1565b61319f81866137c9565b945060018216600081146131ba57600181146131cb576131fe565b60ff198316865281860193506131fe565b6131d485613771565b60005b838110156131f6578154818901526001820191506020810190506131d7565b838801955050505b50505092915050565b60006132146006836137b8565b915061321f82613b9e565b602082019050919050565b60006132376026836137b8565b915061324282613bc7565b604082019050919050565b600061325a600a836137b8565b915061326582613c16565b602082019050919050565b600061327d6016836137b8565b915061328882613c3f565b602082019050919050565b60006132a0600f836137c9565b91506132ab82613c68565b600f82019050919050565b60006132c36011836137b8565b91506132ce82613c91565b602082019050919050565b60006132e66016836137b8565b91506132f182613cba565b602082019050919050565b60006133096012836137b8565b915061331482613ce3565b602082019050919050565b600061332c6015836137b8565b915061333782613d0c565b602082019050919050565b600061334f6020836137b8565b915061335a82613d35565b602082019050919050565b60006133726016836137b8565b915061337d82613d5e565b602082019050919050565b60006133956018836137b8565b91506133a082613d87565b602082019050919050565b60006133b86000836137ad565b91506133c382613db0565b600082019050919050565b60006133db600e836137b8565b91506133e682613db3565b602082019050919050565b60006133fe600c836137b8565b915061340982613ddc565b602082019050919050565b61341d81613965565b82525050565b600061342f8286613188565b915061343b8285613157565b91506134478284613157565b9150819050949350505050565b60006134608284613188565b915061346b82613293565b915081905092915050565b6000613481826133ab565b9150819050919050565b60006020820190506134a060008301846130c7565b92915050565b60006080820190506134bb60008301876130c7565b6134c860208301866130c7565b6134d56040830185613414565b81810360608301526134e781846130e5565b905095945050505050565b600060208201905061350760008301846130d6565b92915050565b60006020820190508181036000830152613527818461311e565b905092915050565b6000602082019050818103600083015261354881613207565b9050919050565b600060208201905081810360008301526135688161322a565b9050919050565b600060208201905081810360008301526135888161324d565b9050919050565b600060208201905081810360008301526135a881613270565b9050919050565b600060208201905081810360008301526135c8816132b6565b9050919050565b600060208201905081810360008301526135e8816132d9565b9050919050565b60006020820190508181036000830152613608816132fc565b9050919050565b600060208201905081810360008301526136288161331f565b9050919050565b6000602082019050818103600083015261364881613342565b9050919050565b6000602082019050818103600083015261366881613365565b9050919050565b6000602082019050818103600083015261368881613388565b9050919050565b600060208201905081810360008301526136a8816133ce565b9050919050565b600060208201905081810360008301526136c8816133f1565b9050919050565b60006020820190506136e46000830184613414565b92915050565b60006136f4613705565b905061370082826139e3565b919050565b6000604051905090565b600067ffffffffffffffff82111561372a57613729613b4a565b5b61373382613b8d565b9050602081019050919050565b600067ffffffffffffffff82111561375b5761375a613b4a565b5b61376482613b8d565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b60006137df82613965565b91506137ea83613965565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561381f5761381e613a8e565b5b828201905092915050565b600061383582613965565b915061384083613965565b9250826138505761384f613abd565b5b828204905092915050565b600061386682613965565b915061387183613965565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156138aa576138a9613a8e565b5b828202905092915050565b60006138c082613965565b91506138cb83613965565b9250828210156138de576138dd613a8e565b5b828203905092915050565b60006138f482613945565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600061393e826138e9565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561399c578082015181840152602081019050613981565b838111156139ab576000848401525b50505050565b600060028204905060018216806139c957607f821691505b602082108114156139dd576139dc613aec565b5b50919050565b6139ec82613b8d565b810181811067ffffffffffffffff82111715613a0b57613a0a613b4a565b5b80604052505050565b6000613a1f82613965565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613a5257613a51613a8e565b5b600182019050919050565b6000613a6882613965565b9150613a7383613965565b925082613a8357613a82613abd565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f5061757365640000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4e6f2030206d696e747300000000000000000000000000000000000000000000600082015250565b7f457863657373206d617820706572207061696420747800000000000000000000600082015250565b7f756e72657665616c65642e6a736f6e0000000000000000000000000000000000600082015250565b7f4672656520737570706c79206f76657221000000000000000000000000000000600082015250565b7f457863657373206d617820706572206672656520747800000000000000000000600082015250565b7f45786365656473206d617820737570706c790000000000000000000000000000600082015250565b7f546f6b656e20646f6573206e6f742065786973742e0000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f496e76616c69642066756e64732070726f766964656400000000000000000000600082015250565b7f796f752063616e206f6e6c792064656372656173652069740000000000000000600082015250565b50565b7f4661696c656420746f2073656e64000000000000000000000000000000000000600082015250565b7f4e6f20636f6e7472616374730000000000000000000000000000000000000000600082015250565b613e0e816138e9565b8114613e1957600080fd5b50565b613e25816138fb565b8114613e3057600080fd5b50565b613e3c81613907565b8114613e4757600080fd5b50565b613e5381613933565b8114613e5e57600080fd5b50565b613e6a81613965565b8114613e7557600080fd5b5056fea2646970667358221220fe8ebe4965f7c26204e21675b78b9639f70d73dbc5876f80853ddc8114c8947b64736f6c634300080700330000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000004468747470733a2f2f697066732e696f2f697066732f516d54534446763852457870486433416a59397566356d4446754767435971755251754c7344797265634571366d2f00000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106102045760003560e01c806370a0823111610118578063b88d4fde116100a0578063cf3604dc1161006f578063cf3604dc14610712578063d5abeb011461073b578063e985e9c514610766578063f2fde38b146107a3578063f43a22dc146107cc57610204565b8063b88d4fde14610656578063c66828621461067f578063c87b56dd146106aa578063cd7c0326146106e757610204565b806395d89b41116100e757806395d89b4114610592578063a035b1fe146105bd578063a0712d68146105e8578063a22cb46514610604578063b7c7d9a71461062d57610204565b806370a08231146104e8578063715018a6146105255780638069876d1461053c5780638da5cb5b1461056757610204565b80633ccfd60b1161019b57806355f804b31161016a57806355f804b3146104155780635c975abb1461043e5780636352211e14610469578063698982ba146104a65780636c0360eb146104bd57610204565b80633ccfd60b1461037f57806342842e0e14610396578063463fff79146103bf57806351830227146103ea57610204565b8063095ea7b3116101d7578063095ea7b3146102d757806318160ddd1461030057806323b872dd1461032b57806332cb6b0c1461035457610204565b806301ffc9a71461020957806302329a291461024657806306fdde031461026f578063081812fc1461029a575b600080fd5b34801561021557600080fd5b50610230600480360381019061022b9190612fca565b6107f7565b60405161023d91906134f2565b60405180910390f35b34801561025257600080fd5b5061026d60048036038101906102689190612f9d565b6108d9565b005b34801561027b57600080fd5b50610284610972565b604051610291919061350d565b60405180910390f35b3480156102a657600080fd5b506102c160048036038101906102bc919061309a565b610a04565b6040516102ce919061348b565b60405180910390f35b3480156102e357600080fd5b506102fe60048036038101906102f99190612f5d565b610a80565b005b34801561030c57600080fd5b50610315610b8b565b60405161032291906136cf565b60405180910390f35b34801561033757600080fd5b50610352600480360381019061034d9190612e47565b610ba2565b005b34801561036057600080fd5b50610369610bb2565b60405161037691906136cf565b60405180910390f35b34801561038b57600080fd5b50610394610bb8565b005b3480156103a257600080fd5b506103bd60048036038101906103b89190612e47565b610cf0565b005b3480156103cb57600080fd5b506103d4610d10565b6040516103e191906136cf565b60405180910390f35b3480156103f657600080fd5b506103ff610d15565b60405161040c91906134f2565b60405180910390f35b34801561042157600080fd5b5061043c60048036038101906104379190613051565b610d28565b005b34801561044a57600080fd5b50610453610dbe565b60405161046091906134f2565b60405180910390f35b34801561047557600080fd5b50610490600480360381019061048b919061309a565b610dd1565b60405161049d919061348b565b60405180910390f35b3480156104b257600080fd5b506104bb610de7565b005b3480156104c957600080fd5b506104d2610e77565b6040516104df919061350d565b60405180910390f35b3480156104f457600080fd5b5061050f600480360381019061050a9190612dda565b610f05565b60405161051c91906136cf565b60405180910390f35b34801561053157600080fd5b5061053a610fd5565b005b34801561054857600080fd5b50610551611053565b60405161055e91906136cf565b60405180910390f35b34801561057357600080fd5b5061057c611059565b604051610589919061348b565b60405180910390f35b34801561059e57600080fd5b506105a7611083565b6040516105b4919061350d565b60405180910390f35b3480156105c957600080fd5b506105d2611115565b6040516105df91906136cf565b60405180910390f35b61060260048036038101906105fd919061309a565b611120565b005b34801561061057600080fd5b5061062b60048036038101906106269190612f1d565b6113e6565b005b34801561063957600080fd5b50610654600480360381019061064f919061309a565b61155e565b005b34801561066257600080fd5b5061067d60048036038101906106789190612e9a565b611628565b005b34801561068b57600080fd5b506106946116a4565b6040516106a1919061350d565b60405180910390f35b3480156106b657600080fd5b506106d160048036038101906106cc919061309a565b6116dd565b6040516106de919061350d565b60405180910390f35b3480156106f357600080fd5b506106fc6117fa565b604051610709919061348b565b60405180910390f35b34801561071e57600080fd5b5061073960048036038101906107349190612f9d565b611812565b005b34801561074757600080fd5b506107506118ab565b60405161075d91906136cf565b60405180910390f35b34801561077257600080fd5b5061078d60048036038101906107889190612e07565b6118b1565b60405161079a91906134f2565b60405180910390f35b3480156107af57600080fd5b506107ca60048036038101906107c59190612dda565b6119a5565b005b3480156107d857600080fd5b506107e1611a9d565b6040516107ee91906136cf565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806108c257507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108d257506108d182611aa2565b5b9050919050565b6108e1611b0c565b73ffffffffffffffffffffffffffffffffffffffff166108ff611059565b73ffffffffffffffffffffffffffffffffffffffff1614610955576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161094c9061362f565b60405180910390fd5b80600b60006101000a81548160ff02191690831515021790555050565b606060028054610981906139b1565b80601f01602080910402602001604051908101604052809291908181526020018280546109ad906139b1565b80156109fa5780601f106109cf576101008083540402835291602001916109fa565b820191906000526020600020905b8154815290600101906020018083116109dd57829003601f168201915b5050505050905090565b6000610a0f82611b14565b610a45576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610a8b82610dd1565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610af3576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610b12611b0c565b73ffffffffffffffffffffffffffffffffffffffff1614158015610b445750610b4281610b3d611b0c565b6118b1565b155b15610b7b576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610b86838383611b62565b505050565b6000610b95611c14565b6001546000540303905090565b610bad838383611c19565b505050565b61106881565b610bc0611b0c565b73ffffffffffffffffffffffffffffffffffffffff16610bde611059565b73ffffffffffffffffffffffffffffffffffffffff1614610c34576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c2b9061362f565b60405180910390fd5b60004790506000610c43611b0c565b73ffffffffffffffffffffffffffffffffffffffff1682604051610c6690613476565b60006040518083038185875af1925050503d8060008114610ca3576040519150601f19603f3d011682016040523d82523d6000602084013e610ca8565b606091505b5050905080610cec576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ce39061368f565b60405180910390fd5b5050565b610d0b83838360405180602001604052806000815250611628565b505050565b600481565b600b60019054906101000a900460ff1681565b610d30611b0c565b73ffffffffffffffffffffffffffffffffffffffff16610d4e611059565b73ffffffffffffffffffffffffffffffffffffffff1614610da4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d9b9061362f565b60405180910390fd5b8060099080519060200190610dba929190612b96565b5050565b600b60009054906101000a900460ff1681565b6000610ddc826120cf565b600001519050919050565b610def611b0c565b73ffffffffffffffffffffffffffffffffffffffff16610e0d611059565b73ffffffffffffffffffffffffffffffffffffffff1614610e63576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e5a9061362f565b60405180910390fd5b610e75610e6e611b0c565b600161235e565b565b60098054610e84906139b1565b80601f0160208091040260200160405190810160405280929190818152602001828054610eb0906139b1565b8015610efd5780601f10610ed257610100808354040283529160200191610efd565b820191906000526020600020905b815481529060010190602001808311610ee057829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610f6d576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b610fdd611b0c565b73ffffffffffffffffffffffffffffffffffffffff16610ffb611059565b73ffffffffffffffffffffffffffffffffffffffff1614611051576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110489061362f565b60405180910390fd5b565b6101a481565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060038054611092906139b1565b80601f01602080910402602001604051908101604052809291908181526020018280546110be906139b1565b801561110b5780601f106110e05761010080835404028352916020019161110b565b820191906000526020600020905b8154815290600101906020018083116110ee57829003601f168201915b5050505050905090565b6618838370f3400081565b600061112a611b0c565b9050600b60009054906101000a900460ff161561117c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111739061352f565b60405180910390fd5b81611185610b8b565b61118f91906137d4565b61106810156111d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111ca906135ef565b60405180910390fd5b60008211611216576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161120d9061356f565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614611284576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161127b906136af565b60405180910390fd5b8161128d610b8b565b61129791906137d4565b6101a4111561133f57816112a9610b8b565b6101a46112b691906138b5565b116112f6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112ed906135af565b60405180910390fd5b816004101561133a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611331906135cf565b60405180910390fd5b6113d8565b81600a1015611383576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161137a9061358f565b60405180910390fd5b346618838370f3400083611397919061385b565b146113d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113ce9061364f565b60405180910390fd5b5b6113e2818361235e565b5050565b6113ee611b0c565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611453576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000611460611b0c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661150d611b0c565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161155291906134f2565b60405180910390a35050565b611566611b0c565b73ffffffffffffffffffffffffffffffffffffffff16611584611059565b73ffffffffffffffffffffffffffffffffffffffff16146115da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115d19061362f565b60405180910390fd5b600a54811061161e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116159061366f565b60405180910390fd5b80600a8190555050565b611633848484611c19565b6116528373ffffffffffffffffffffffffffffffffffffffff1661237c565b801561166757506116658484848461238f565b155b1561169e576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b6040518060400160405280600581526020017f2e6a736f6e00000000000000000000000000000000000000000000000000000081525081565b60606116e882611b14565b611727576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161171e9061360f565b60405180910390fd5b600b60019054906101000a900460ff16156117d15760006009805461174b906139b1565b90501161176757604051806020016040528060008152506117ca565b6009611772836124ef565b6040518060400160405280600581526020017f2e6a736f6e0000000000000000000000000000000000000000000000000000008152506040516020016117ba93929190613423565b6040516020818303038152906040525b90506117f5565b60096040516020016117e39190613454565b60405160208183030381529060405290505b919050565b73a5409ec958c83c3f309868babaca7c86dcb077c181565b61181a611b0c565b73ffffffffffffffffffffffffffffffffffffffff16611838611059565b73ffffffffffffffffffffffffffffffffffffffff161461188e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118859061362f565b60405180910390fd5b80600b60016101000a81548160ff02191690831515021790555050565b600a5481565b60008073a5409ec958c83c3f309868babaca7c86dcb077c190508273ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1663c4552791866040518263ffffffff1660e01b815260040161191b919061348b565b60206040518083038186803b15801561193357600080fd5b505afa158015611947573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061196b9190613024565b73ffffffffffffffffffffffffffffffffffffffff16141561199157600191505061199f565b61199b8484612650565b9150505b92915050565b6119ad611b0c565b73ffffffffffffffffffffffffffffffffffffffff166119cb611059565b73ffffffffffffffffffffffffffffffffffffffff1614611a21576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a189061362f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611a91576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a889061354f565b60405180910390fd5b611a9a816126e4565b50565b600a81565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b600081611b1f611c14565b11158015611b2e575060005482105b8015611b5b575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600090565b6000611c24826120cf565b90508373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614611c8f576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff16611cb0611b0c565b73ffffffffffffffffffffffffffffffffffffffff161480611cdf5750611cde85611cd9611b0c565b6118b1565b5b80611d245750611ced611b0c565b73ffffffffffffffffffffffffffffffffffffffff16611d0c84610a04565b73ffffffffffffffffffffffffffffffffffffffff16145b905080611d5d576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611dc4576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611dd185858560016127aa565b611ddd60008487611b62565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600460008581526020019081526020016000209050848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060006001850190506000600460008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141561205d57600054821461205c57878160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b505050828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46120c885858560016127b0565b5050505050565b6120d7612c1c565b6000829050806120e5611c14565b111580156120f4575060005481105b15612327576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050806040015161232557600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612209578092505050612359565b5b60011561232457818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461231f578092505050612359565b61220a565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6123788282604051806020016040528060008152506127b6565b5050565b600080823b905060008111915050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a026123b5611b0c565b8786866040518563ffffffff1660e01b81526004016123d794939291906134a6565b602060405180830381600087803b1580156123f157600080fd5b505af192505050801561242257506040513d601f19601f8201168201806040525081019061241f9190612ff7565b60015b61249c573d8060008114612452576040519150601f19603f3d011682016040523d82523d6000602084013e612457565b606091505b50600081511415612494576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60606000821415612537576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061264b565b600082905060005b6000821461256957808061255290613a14565b915050600a82612562919061382a565b915061253f565b60008167ffffffffffffffff81111561258557612584613b4a565b5b6040519080825280601f01601f1916602001820160405280156125b75781602001600182028036833780820191505090505b5090505b60008514612644576001826125d091906138b5565b9150600a856125df9190613a5d565b60306125eb91906137d4565b60f81b81838151811061260157612600613b1b565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561263d919061382a565b94506125bb565b8093505050505b919050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b50505050565b50505050565b6127c383838360016127c8565b505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415612835576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000841415612870576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61287d60008683876127aa565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060008582019050838015612a475750612a468773ffffffffffffffffffffffffffffffffffffffff1661237c565b5b15612b0d575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612abc600088848060010195508861238f565b612af2576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80821415612a4d578260005414612b0857600080fd5b612b79565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a480821415612b0e575b816000819055505050612b8f60008683876127b0565b5050505050565b828054612ba2906139b1565b90600052602060002090601f016020900481019282612bc45760008555612c0b565b82601f10612bdd57805160ff1916838001178555612c0b565b82800160010185558215612c0b579182015b82811115612c0a578251825591602001919060010190612bef565b5b509050612c189190612c5f565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b80821115612c78576000816000905550600101612c60565b5090565b6000612c8f612c8a8461370f565b6136ea565b905082815260208101848484011115612cab57612caa613b7e565b5b612cb684828561396f565b509392505050565b6000612cd1612ccc84613740565b6136ea565b905082815260208101848484011115612ced57612cec613b7e565b5b612cf884828561396f565b509392505050565b600081359050612d0f81613e05565b92915050565b600081359050612d2481613e1c565b92915050565b600081359050612d3981613e33565b92915050565b600081519050612d4e81613e33565b92915050565b600082601f830112612d6957612d68613b79565b5b8135612d79848260208601612c7c565b91505092915050565b600081519050612d9181613e4a565b92915050565b600082601f830112612dac57612dab613b79565b5b8135612dbc848260208601612cbe565b91505092915050565b600081359050612dd481613e61565b92915050565b600060208284031215612df057612def613b88565b5b6000612dfe84828501612d00565b91505092915050565b60008060408385031215612e1e57612e1d613b88565b5b6000612e2c85828601612d00565b9250506020612e3d85828601612d00565b9150509250929050565b600080600060608486031215612e6057612e5f613b88565b5b6000612e6e86828701612d00565b9350506020612e7f86828701612d00565b9250506040612e9086828701612dc5565b9150509250925092565b60008060008060808587031215612eb457612eb3613b88565b5b6000612ec287828801612d00565b9450506020612ed387828801612d00565b9350506040612ee487828801612dc5565b925050606085013567ffffffffffffffff811115612f0557612f04613b83565b5b612f1187828801612d54565b91505092959194509250565b60008060408385031215612f3457612f33613b88565b5b6000612f4285828601612d00565b9250506020612f5385828601612d15565b9150509250929050565b60008060408385031215612f7457612f73613b88565b5b6000612f8285828601612d00565b9250506020612f9385828601612dc5565b9150509250929050565b600060208284031215612fb357612fb2613b88565b5b6000612fc184828501612d15565b91505092915050565b600060208284031215612fe057612fdf613b88565b5b6000612fee84828501612d2a565b91505092915050565b60006020828403121561300d5761300c613b88565b5b600061301b84828501612d3f565b91505092915050565b60006020828403121561303a57613039613b88565b5b600061304884828501612d82565b91505092915050565b60006020828403121561306757613066613b88565b5b600082013567ffffffffffffffff81111561308557613084613b83565b5b61309184828501612d97565b91505092915050565b6000602082840312156130b0576130af613b88565b5b60006130be84828501612dc5565b91505092915050565b6130d0816138e9565b82525050565b6130df816138fb565b82525050565b60006130f082613786565b6130fa818561379c565b935061310a81856020860161397e565b61311381613b8d565b840191505092915050565b600061312982613791565b61313381856137b8565b935061314381856020860161397e565b61314c81613b8d565b840191505092915050565b600061316282613791565b61316c81856137c9565b935061317c81856020860161397e565b80840191505092915050565b60008154613195816139b1565b61319f81866137c9565b945060018216600081146131ba57600181146131cb576131fe565b60ff198316865281860193506131fe565b6131d485613771565b60005b838110156131f6578154818901526001820191506020810190506131d7565b838801955050505b50505092915050565b60006132146006836137b8565b915061321f82613b9e565b602082019050919050565b60006132376026836137b8565b915061324282613bc7565b604082019050919050565b600061325a600a836137b8565b915061326582613c16565b602082019050919050565b600061327d6016836137b8565b915061328882613c3f565b602082019050919050565b60006132a0600f836137c9565b91506132ab82613c68565b600f82019050919050565b60006132c36011836137b8565b91506132ce82613c91565b602082019050919050565b60006132e66016836137b8565b91506132f182613cba565b602082019050919050565b60006133096012836137b8565b915061331482613ce3565b602082019050919050565b600061332c6015836137b8565b915061333782613d0c565b602082019050919050565b600061334f6020836137b8565b915061335a82613d35565b602082019050919050565b60006133726016836137b8565b915061337d82613d5e565b602082019050919050565b60006133956018836137b8565b91506133a082613d87565b602082019050919050565b60006133b86000836137ad565b91506133c382613db0565b600082019050919050565b60006133db600e836137b8565b91506133e682613db3565b602082019050919050565b60006133fe600c836137b8565b915061340982613ddc565b602082019050919050565b61341d81613965565b82525050565b600061342f8286613188565b915061343b8285613157565b91506134478284613157565b9150819050949350505050565b60006134608284613188565b915061346b82613293565b915081905092915050565b6000613481826133ab565b9150819050919050565b60006020820190506134a060008301846130c7565b92915050565b60006080820190506134bb60008301876130c7565b6134c860208301866130c7565b6134d56040830185613414565b81810360608301526134e781846130e5565b905095945050505050565b600060208201905061350760008301846130d6565b92915050565b60006020820190508181036000830152613527818461311e565b905092915050565b6000602082019050818103600083015261354881613207565b9050919050565b600060208201905081810360008301526135688161322a565b9050919050565b600060208201905081810360008301526135888161324d565b9050919050565b600060208201905081810360008301526135a881613270565b9050919050565b600060208201905081810360008301526135c8816132b6565b9050919050565b600060208201905081810360008301526135e8816132d9565b9050919050565b60006020820190508181036000830152613608816132fc565b9050919050565b600060208201905081810360008301526136288161331f565b9050919050565b6000602082019050818103600083015261364881613342565b9050919050565b6000602082019050818103600083015261366881613365565b9050919050565b6000602082019050818103600083015261368881613388565b9050919050565b600060208201905081810360008301526136a8816133ce565b9050919050565b600060208201905081810360008301526136c8816133f1565b9050919050565b60006020820190506136e46000830184613414565b92915050565b60006136f4613705565b905061370082826139e3565b919050565b6000604051905090565b600067ffffffffffffffff82111561372a57613729613b4a565b5b61373382613b8d565b9050602081019050919050565b600067ffffffffffffffff82111561375b5761375a613b4a565b5b61376482613b8d565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b60006137df82613965565b91506137ea83613965565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561381f5761381e613a8e565b5b828201905092915050565b600061383582613965565b915061384083613965565b9250826138505761384f613abd565b5b828204905092915050565b600061386682613965565b915061387183613965565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156138aa576138a9613a8e565b5b828202905092915050565b60006138c082613965565b91506138cb83613965565b9250828210156138de576138dd613a8e565b5b828203905092915050565b60006138f482613945565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600061393e826138e9565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561399c578082015181840152602081019050613981565b838111156139ab576000848401525b50505050565b600060028204905060018216806139c957607f821691505b602082108114156139dd576139dc613aec565b5b50919050565b6139ec82613b8d565b810181811067ffffffffffffffff82111715613a0b57613a0a613b4a565b5b80604052505050565b6000613a1f82613965565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613a5257613a51613a8e565b5b600182019050919050565b6000613a6882613965565b9150613a7383613965565b925082613a8357613a82613abd565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f5061757365640000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4e6f2030206d696e747300000000000000000000000000000000000000000000600082015250565b7f457863657373206d617820706572207061696420747800000000000000000000600082015250565b7f756e72657665616c65642e6a736f6e0000000000000000000000000000000000600082015250565b7f4672656520737570706c79206f76657221000000000000000000000000000000600082015250565b7f457863657373206d617820706572206672656520747800000000000000000000600082015250565b7f45786365656473206d617820737570706c790000000000000000000000000000600082015250565b7f546f6b656e20646f6573206e6f742065786973742e0000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f496e76616c69642066756e64732070726f766964656400000000000000000000600082015250565b7f796f752063616e206f6e6c792064656372656173652069740000000000000000600082015250565b50565b7f4661696c656420746f2073656e64000000000000000000000000000000000000600082015250565b7f4e6f20636f6e7472616374730000000000000000000000000000000000000000600082015250565b613e0e816138e9565b8114613e1957600080fd5b50565b613e25816138fb565b8114613e3057600080fd5b50565b613e3c81613907565b8114613e4757600080fd5b50565b613e5381613933565b8114613e5e57600080fd5b50565b613e6a81613965565b8114613e7557600080fd5b5056fea2646970667358221220fe8ebe4965f7c26204e21675b78b9639f70d73dbc5876f80853ddc8114c8947b64736f6c63430008070033

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

0000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000004468747470733a2f2f697066732e696f2f697066732f516d54534446763852457870486433416a59397566356d4446754767435971755251754c7344797265634571366d2f00000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : baseURI_ (string): https://ipfs.io/ipfs/QmTSDFv8RExpHd3AjY9uf5mDFuGgCYquRQuLsDyrecEq6m/

-----Encoded View---------------
5 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000044
Arg [2] : 68747470733a2f2f697066732e696f2f697066732f516d545344467638524578
Arg [3] : 70486433416a59397566356d4446754767435971755251754c73447972656345
Arg [4] : 71366d2f00000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

45890:3546:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28083:305;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48362:81;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;31196:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32699:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32262:371;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;27332:303;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33564:170;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46397:41;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48054:209;;;;;;;;;;;;;:::i;:::-;;33805:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46249:43;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46561:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48451:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46529:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31004:125;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48271:83;;;;;;;;;;;;;:::i;:::-;;45943:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28452:206;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49376:57;;;;;;;;;;;;;:::i;:::-;;46345:45;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2043:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31365:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46445:44;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46746:847;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;32975:287;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;49187:181;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34061:369;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;45976:46;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48663:518;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46151:89;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48559:96;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46496:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47601:445;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2952:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46299:39;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28083:305;28185:4;28237:25;28222:40;;;:11;:40;;;;:105;;;;28294:33;28279:48;;;:11;:48;;;;28222:105;:158;;;;28344:36;28368:11;28344:23;:36::i;:::-;28222:158;28202:178;;28083:305;;;:::o;48362:81::-;2274:12;:10;:12::i;:::-;2263:23;;:7;:5;:7::i;:::-;:23;;;2255:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;48429:6:::1;48420;;:15;;;;;;;;;;;;;;;;;;48362:81:::0;:::o;31196:100::-;31250:13;31283:5;31276:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31196:100;:::o;32699:204::-;32767:7;32792:16;32800:7;32792;:16::i;:::-;32787:64;;32817:34;;;;;;;;;;;;;;32787:64;32871:15;:24;32887:7;32871:24;;;;;;;;;;;;;;;;;;;;;32864:31;;32699:204;;;:::o;32262:371::-;32335:13;32351:24;32367:7;32351:15;:24::i;:::-;32335:40;;32396:5;32390:11;;:2;:11;;;32386:48;;;32410:24;;;;;;;;;;;;;;32386:48;32467:5;32451:21;;:12;:10;:12::i;:::-;:21;;;;:63;;;;;32477:37;32494:5;32501:12;:10;:12::i;:::-;32477:16;:37::i;:::-;32476:38;32451:63;32447:138;;;32538:35;;;;;;;;;;;;;;32447:138;32597:28;32606:2;32610:7;32619:5;32597:8;:28::i;:::-;32324:309;32262:371;;:::o;27332:303::-;27376:7;27601:15;:13;:15::i;:::-;27586:12;;27570:13;;:28;:46;27563:53;;27332:303;:::o;33564:170::-;33698:28;33708:4;33714:2;33718:7;33698:9;:28::i;:::-;33564:170;;;:::o;46397:41::-;46434:4;46397:41;:::o;48054:209::-;2274:12;:10;:12::i;:::-;2263:23;;:7;:5;:7::i;:::-;:23;;;2255:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;48104:15:::1;48122:21;48104:39;;48155:12;48173;:10;:12::i;:::-;:17;;48198:7;48173:37;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48154:56;;;48229:7;48221:34;;;;;;;;;;;;:::i;:::-;;;;;;;;;48093:170;;48054:209::o:0;33805:185::-;33943:39;33960:4;33966:2;33970:7;33943:39;;;;;;;;;;;;:16;:39::i;:::-;33805:185;;;:::o;46249:43::-;46291:1;46249:43;:::o;46561:28::-;;;;;;;;;;;;;:::o;48451:100::-;2274:12;:10;:12::i;:::-;2263:23;;:7;:5;:7::i;:::-;:23;;;2255:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;48535:8:::1;48525:7;:18;;;;;;;;;;;;:::i;:::-;;48451:100:::0;:::o;46529:25::-;;;;;;;;;;;;;:::o;31004:125::-;31068:7;31095:21;31108:7;31095:12;:21::i;:::-;:26;;;31088:33;;31004:125;;;:::o;48271:83::-;2274:12;:10;:12::i;:::-;2263:23;;:7;:5;:7::i;:::-;:23;;;2255:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;48320:26:::1;48330:12;:10;:12::i;:::-;48344:1;48320:9;:26::i;:::-;48271:83::o:0;45943:26::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;28452:206::-;28516:7;28557:1;28540:19;;:5;:19;;;28536:60;;;28568:28;;;;;;;;;;;;;;28536:60;28622:12;:19;28635:5;28622:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;28614:36;;28607:43;;28452:206;;;:::o;49376:57::-;2274:12;:10;:12::i;:::-;2263:23;;:7;:5;:7::i;:::-;:23;;;2255:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;49376:57::o;46345:45::-;46387:3;46345:45;:::o;2043:87::-;2089:7;2116:6;;;;;;;;;;;2109:13;;2043:87;:::o;31365:104::-;31421:13;31454:7;31447:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31365:104;:::o;46445:44::-;46477:12;46445:44;:::o;46746:847::-;46805:15;46823:12;:10;:12::i;:::-;46805:30;;46855:6;;;;;;;;;;;46854:7;46846:26;;;;;;;;;;;;:::i;:::-;;;;;;;;;46921:7;46905:13;:11;:13::i;:::-;:23;;;;:::i;:::-;46434:4;46891:37;;46883:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;46980:1;46970:7;:11;46962:34;;;;;;;;;;;;:::i;:::-;;;;;;;;;47028:7;47015:20;;:9;:20;;;47007:45;;;;;;;;;;;;:::i;:::-;;;;;;;;;47102:7;47086:13;:11;:13::i;:::-;:23;;;;:::i;:::-;46387:3;47068:41;47065:481;;;47262:7;47246:13;:11;:13::i;:::-;46387:3;47228:31;;;;:::i;:::-;:41;47220:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;47333:7;46291:1;47314:26;;47306:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;47065:481;;;47421:7;46336:2;47407:21;;47399:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;47498:9;46477:12;47479:7;:15;;;;:::i;:::-;:28;47471:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;47065:481;47558:27;47568:7;47577;47558:9;:27::i;:::-;46794:799;46746:847;:::o;32975:287::-;33086:12;:10;:12::i;:::-;33074:24;;:8;:24;;;33070:54;;;33107:17;;;;;;;;;;;;;;33070:54;33182:8;33137:18;:32;33156:12;:10;:12::i;:::-;33137:32;;;;;;;;;;;;;;;:42;33170:8;33137:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;33235:8;33206:48;;33221:12;:10;:12::i;:::-;33206:48;;;33245:8;33206:48;;;;;;:::i;:::-;;;;;;;;32975:287;;:::o;49187:181::-;2274:12;:10;:12::i;:::-;2263:23;;:7;:5;:7::i;:::-;:23;;;2255:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;49287:9:::1;;49272:12;:24;49264:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;49348:12;49336:9;:24;;;;49187:181:::0;:::o;34061:369::-;34228:28;34238:4;34244:2;34248:7;34228:9;:28::i;:::-;34271:15;:2;:13;;;:15::i;:::-;:76;;;;;34291:56;34322:4;34328:2;34332:7;34341:5;34291:30;:56::i;:::-;34290:57;34271:76;34267:156;;;34371:40;;;;;;;;;;;;;;34267:156;34061:369;;;;:::o;45976:46::-;;;;;;;;;;;;;;;;;;;:::o;48663:518::-;48729:13;48763:17;48771:8;48763:7;:17::i;:::-;48755:51;;;;;;;;;;;;:::i;:::-;;;;;;;;;48823:8;;;;;;;;;;;48819:355;;;48879:1;48861:7;48855:21;;;;;:::i;:::-;;;:25;:211;;;;;;;;;;;;;;;;;48943:7;48969:26;48986:8;48969:16;:26::i;:::-;49014:13;;;;;;;;;;;;;;;;;48908:138;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;48855:211;48848:218;;;;48819:355;49134:7;49117:44;;;;;;;;:::i;:::-;;;;;;;;;;;;;49103:59;;48663:518;;;;:::o;46151:89::-;46198:42;46151:89;:::o;48559:96::-;2274:12;:10;:12::i;:::-;2263:23;;:7;:5;:7::i;:::-;:23;;;2255:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;48638:9:::1;48627:8;;:20;;;;;;;;;;;;;;;;;;48559:96:::0;:::o;46496:24::-;;;;:::o;47601:445::-;47726:4;47811:27;46198:42;47811:65;;47932:8;47891:49;;47899:13;:21;;;47921:5;47899:28;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;47891:49;;;47887:93;;;47964:4;47957:11;;;;;47887:93;47999:39;48022:5;48029:8;47999:22;:39::i;:::-;47992:46;;;47601:445;;;;;:::o;2952:201::-;2274:12;:10;:12::i;:::-;2263:23;;:7;:5;:7::i;:::-;:23;;;2255:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;3061:1:::1;3041:22;;:8;:22;;;;3033:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;3117:28;3136:8;3117:18;:28::i;:::-;2952:201:::0;:::o;46299:39::-;46336:2;46299:39;:::o;23219:157::-;23304:4;23343:25;23328:40;;;:11;:40;;;;23321:47;;23219:157;;;:::o;784:98::-;837:7;864:10;857:17;;784:98;:::o;34685:187::-;34742:4;34785:7;34766:15;:13;:15::i;:::-;:26;;:53;;;;;34806:13;;34796:7;:23;34766:53;:98;;;;;34837:11;:20;34849:7;34837:20;;;;;;;;;;;:27;;;;;;;;;;;;34836:28;34766:98;34759:105;;34685:187;;;:::o;42855:196::-;42997:2;42970:15;:24;42986:7;42970:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;43035:7;43031:2;43015:28;;43024:5;43015:28;;;;;;;;;;;;42855:196;;;:::o;27056:92::-;27112:7;27056:92;:::o;37798:2130::-;37913:35;37951:21;37964:7;37951:12;:21::i;:::-;37913:59;;38011:4;37989:26;;:13;:18;;;:26;;;37985:67;;38024:28;;;;;;;;;;;;;;37985:67;38065:22;38107:4;38091:20;;:12;:10;:12::i;:::-;:20;;;:73;;;;38128:36;38145:4;38151:12;:10;:12::i;:::-;38128:16;:36::i;:::-;38091:73;:126;;;;38205:12;:10;:12::i;:::-;38181:36;;:20;38193:7;38181:11;:20::i;:::-;:36;;;38091:126;38065:153;;38236:17;38231:66;;38262:35;;;;;;;;;;;;;;38231:66;38326:1;38312:16;;:2;:16;;;38308:52;;;38337:23;;;;;;;;;;;;;;38308:52;38373:43;38395:4;38401:2;38405:7;38414:1;38373:21;:43::i;:::-;38481:35;38498:1;38502:7;38511:4;38481:8;:35::i;:::-;38842:1;38812:12;:18;38825:4;38812:18;;;;;;;;;;;;;;;:26;;;:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38886:1;38858:12;:16;38871:2;38858:16;;;;;;;;;;;;;;;:24;;;:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38904:31;38938:11;:20;38950:7;38938:20;;;;;;;;;;;38904:54;;38989:2;38973:8;:13;;;:18;;;;;;;;;;;;;;;;;;39039:15;39006:8;:23;;;:49;;;;;;;;;;;;;;;;;;39307:19;39339:1;39329:7;:11;39307:33;;39355:31;39389:11;:24;39401:11;39389:24;;;;;;;;;;;39355:58;;39457:1;39432:27;;:8;:13;;;;;;;;;;;;:27;;;39428:384;;;39642:13;;39627:11;:28;39623:174;;39696:4;39680:8;:13;;;:20;;;;;;;;;;;;;;;;;;39749:13;:28;;;39723:8;:23;;;:54;;;;;;;;;;;;;;;;;;39623:174;39428:384;38787:1036;;;39859:7;39855:2;39840:27;;39849:4;39840:27;;;;;;;;;;;;39878:42;39899:4;39905:2;39909:7;39918:1;39878:20;:42::i;:::-;37902:2026;;37798:2130;;;:::o;29833:1109::-;29895:21;;:::i;:::-;29929:12;29944:7;29929:22;;30012:4;29993:15;:13;:15::i;:::-;:23;;:47;;;;;30027:13;;30020:4;:20;29993:47;29989:886;;;30061:31;30095:11;:17;30107:4;30095:17;;;;;;;;;;;30061:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30136:9;:16;;;30131:729;;30207:1;30181:28;;:9;:14;;;:28;;;30177:101;;30245:9;30238:16;;;;;;30177:101;30580:261;30587:4;30580:261;;;30620:6;;;;;;;;30665:11;:17;30677:4;30665:17;;;;;;;;;;;30653:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30739:1;30713:28;;:9;:14;;;:28;;;30709:109;;30781:9;30774:16;;;;;;30709:109;30580:261;;;30131:729;30042:833;29989:886;30903:31;;;;;;;;;;;;;;29833:1109;;;;:::o;34880:104::-;34949:27;34959:2;34963:8;34949:27;;;;;;;;;;;;:9;:27::i;:::-;34880:104;;:::o;15040:387::-;15100:4;15308:12;15375:7;15363:20;15355:28;;15418:1;15411:4;:8;15404:15;;;15040:387;;;:::o;43543:667::-;43706:4;43743:2;43727:36;;;43764:12;:10;:12::i;:::-;43778:4;43784:7;43793:5;43727:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;43723:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43978:1;43961:6;:13;:18;43957:235;;;44007:40;;;;;;;;;;;;;;43957:235;44150:6;44144:13;44135:6;44131:2;44127:15;44120:38;43723:480;43856:45;;;43846:55;;;:6;:55;;;;43839:62;;;43543:667;;;;;;:::o;3861:723::-;3917:13;4147:1;4138:5;:10;4134:53;;;4165:10;;;;;;;;;;;;;;;;;;;;;4134:53;4197:12;4212:5;4197:20;;4228:14;4253:78;4268:1;4260:4;:9;4253:78;;4286:8;;;;;:::i;:::-;;;;4317:2;4309:10;;;;;:::i;:::-;;;4253:78;;;4341:19;4373:6;4363:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4341:39;;4391:154;4407:1;4398:5;:10;4391:154;;4435:1;4425:11;;;;;:::i;:::-;;;4502:2;4494:5;:10;;;;:::i;:::-;4481:2;:24;;;;:::i;:::-;4468:39;;4451:6;4458;4451:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;4531:2;4522:11;;;;;:::i;:::-;;;4391:154;;;4569:6;4555:21;;;;;3861:723;;;;:::o;33333:164::-;33430:4;33454:18;:25;33473:5;33454:25;;;;;;;;;;;;;;;:35;33480:8;33454:35;;;;;;;;;;;;;;;;;;;;;;;;;33447:42;;33333:164;;;;:::o;3313:191::-;3387:16;3406:6;;;;;;;;;;;3387:25;;3432:8;3423:6;;:17;;;;;;;;;;;;;;;;;;3487:8;3456:40;;3477:8;3456:40;;;;;;;;;;;;3376:128;3313:191;:::o;44858:159::-;;;;;:::o;45676:158::-;;;;;:::o;35347:163::-;35470:32;35476:2;35480:8;35490:5;35497:4;35470:5;:32::i;:::-;35347:163;;;:::o;35769:1775::-;35908:20;35931:13;;35908:36;;35973:1;35959:16;;:2;:16;;;35955:48;;;35984:19;;;;;;;;;;;;;;35955:48;36030:1;36018:8;:13;36014:44;;;36040:18;;;;;;;;;;;;;;36014:44;36071:61;36101:1;36105:2;36109:12;36123:8;36071:21;:61::i;:::-;36444:8;36409:12;:16;36422:2;36409:16;;;;;;;;;;;;;;;:24;;;:44;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36508:8;36468:12;:16;36481:2;36468:16;;;;;;;;;;;;;;;:29;;;:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36567:2;36534:11;:25;36546:12;36534:25;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;36634:15;36584:11;:25;36596:12;36584:25;;;;;;;;;;;:40;;;:66;;;;;;;;;;;;;;;;;;36667:20;36690:12;36667:35;;36717:11;36746:8;36731:12;:23;36717:37;;36775:4;:23;;;;;36783:15;:2;:13;;;:15::i;:::-;36775:23;36771:641;;;36819:314;36875:12;36871:2;36850:38;;36867:1;36850:38;;;;;;;;;;;;36916:69;36955:1;36959:2;36963:14;;;;;;36979:5;36916:30;:69::i;:::-;36911:174;;37021:40;;;;;;;;;;;;;;36911:174;37128:3;37112:12;:19;;36819:314;;37214:12;37197:13;;:29;37193:43;;37228:8;;;37193:43;36771:641;;;37277:120;37333:14;;;;;;37329:2;37308:40;;37325:1;37308:40;;;;;;;;;;;;37392:3;37376:12;:19;;37277:120;;36771:641;37442:12;37426:13;:28;;;;36384:1082;;37476:60;37505:1;37509:2;37513:12;37527:8;37476:20;:60::i;:::-;35897:1647;35769:1775;;;;:::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;1772:201::-;1858:5;1889:6;1883:13;1874:22;;1905:62;1961:5;1905:62;:::i;:::-;1772:201;;;;:::o;1993:340::-;2049:5;2098:3;2091:4;2083:6;2079:17;2075:27;2065:122;;2106:79;;:::i;:::-;2065:122;2223:6;2210:20;2248:79;2323:3;2315:6;2308:4;2300:6;2296:17;2248:79;:::i;:::-;2239:88;;2055:278;1993:340;;;;:::o;2339:139::-;2385:5;2423:6;2410:20;2401:29;;2439:33;2466:5;2439:33;:::i;:::-;2339:139;;;;:::o;2484:329::-;2543:6;2592:2;2580:9;2571:7;2567:23;2563:32;2560:119;;;2598:79;;:::i;:::-;2560:119;2718:1;2743:53;2788:7;2779:6;2768:9;2764:22;2743:53;:::i;:::-;2733:63;;2689:117;2484:329;;;;:::o;2819:474::-;2887:6;2895;2944:2;2932:9;2923:7;2919:23;2915:32;2912:119;;;2950:79;;:::i;:::-;2912:119;3070:1;3095:53;3140:7;3131:6;3120:9;3116:22;3095:53;:::i;:::-;3085:63;;3041:117;3197:2;3223:53;3268:7;3259:6;3248:9;3244:22;3223:53;:::i;:::-;3213:63;;3168:118;2819:474;;;;;:::o;3299:619::-;3376:6;3384;3392;3441:2;3429:9;3420:7;3416:23;3412:32;3409:119;;;3447:79;;:::i;:::-;3409:119;3567:1;3592:53;3637:7;3628:6;3617:9;3613:22;3592:53;:::i;:::-;3582:63;;3538:117;3694:2;3720:53;3765:7;3756:6;3745:9;3741:22;3720:53;:::i;:::-;3710:63;;3665:118;3822:2;3848:53;3893:7;3884:6;3873:9;3869:22;3848:53;:::i;:::-;3838:63;;3793:118;3299:619;;;;;:::o;3924:943::-;4019:6;4027;4035;4043;4092:3;4080:9;4071:7;4067:23;4063:33;4060:120;;;4099:79;;:::i;:::-;4060:120;4219:1;4244:53;4289:7;4280:6;4269:9;4265:22;4244:53;:::i;:::-;4234:63;;4190:117;4346:2;4372:53;4417:7;4408:6;4397:9;4393:22;4372:53;:::i;:::-;4362:63;;4317:118;4474:2;4500:53;4545:7;4536:6;4525:9;4521:22;4500:53;:::i;:::-;4490:63;;4445:118;4630:2;4619:9;4615:18;4602:32;4661:18;4653:6;4650:30;4647:117;;;4683:79;;:::i;:::-;4647:117;4788:62;4842:7;4833:6;4822:9;4818:22;4788:62;:::i;:::-;4778:72;;4573:287;3924:943;;;;;;;:::o;4873:468::-;4938:6;4946;4995:2;4983:9;4974:7;4970:23;4966:32;4963:119;;;5001:79;;:::i;:::-;4963:119;5121:1;5146:53;5191:7;5182:6;5171:9;5167:22;5146:53;:::i;:::-;5136:63;;5092:117;5248:2;5274:50;5316:7;5307:6;5296:9;5292:22;5274:50;:::i;:::-;5264:60;;5219:115;4873:468;;;;;:::o;5347:474::-;5415:6;5423;5472:2;5460:9;5451:7;5447:23;5443:32;5440:119;;;5478:79;;:::i;:::-;5440:119;5598:1;5623:53;5668:7;5659:6;5648:9;5644:22;5623:53;:::i;:::-;5613:63;;5569:117;5725:2;5751:53;5796:7;5787:6;5776:9;5772:22;5751:53;:::i;:::-;5741:63;;5696:118;5347:474;;;;;:::o;5827:323::-;5883:6;5932:2;5920:9;5911:7;5907:23;5903:32;5900:119;;;5938:79;;:::i;:::-;5900:119;6058:1;6083:50;6125:7;6116:6;6105:9;6101:22;6083:50;:::i;:::-;6073:60;;6029:114;5827:323;;;;:::o;6156:327::-;6214:6;6263:2;6251:9;6242:7;6238:23;6234:32;6231:119;;;6269:79;;:::i;:::-;6231:119;6389:1;6414:52;6458:7;6449:6;6438:9;6434:22;6414:52;:::i;:::-;6404:62;;6360:116;6156:327;;;;:::o;6489:349::-;6558:6;6607:2;6595:9;6586:7;6582:23;6578:32;6575:119;;;6613:79;;:::i;:::-;6575:119;6733:1;6758:63;6813:7;6804:6;6793:9;6789:22;6758:63;:::i;:::-;6748:73;;6704:127;6489:349;;;;:::o;6844:409::-;6943:6;6992:2;6980:9;6971:7;6967:23;6963:32;6960:119;;;6998:79;;:::i;:::-;6960:119;7118:1;7143:93;7228:7;7219:6;7208:9;7204:22;7143:93;:::i;:::-;7133:103;;7089:157;6844:409;;;;:::o;7259:509::-;7328:6;7377:2;7365:9;7356:7;7352:23;7348:32;7345:119;;;7383:79;;:::i;:::-;7345:119;7531:1;7520:9;7516:17;7503:31;7561:18;7553:6;7550:30;7547:117;;;7583:79;;:::i;:::-;7547:117;7688:63;7743:7;7734:6;7723:9;7719:22;7688:63;:::i;:::-;7678:73;;7474:287;7259:509;;;;:::o;7774:329::-;7833:6;7882:2;7870:9;7861:7;7857:23;7853:32;7850:119;;;7888:79;;:::i;:::-;7850:119;8008:1;8033:53;8078:7;8069:6;8058:9;8054:22;8033:53;:::i;:::-;8023:63;;7979:117;7774:329;;;;:::o;8109:118::-;8196:24;8214:5;8196:24;:::i;:::-;8191:3;8184:37;8109:118;;:::o;8233:109::-;8314:21;8329:5;8314:21;:::i;:::-;8309:3;8302:34;8233:109;;:::o;8348:360::-;8434:3;8462:38;8494:5;8462:38;:::i;:::-;8516:70;8579:6;8574:3;8516:70;:::i;:::-;8509:77;;8595:52;8640:6;8635:3;8628:4;8621:5;8617:16;8595:52;:::i;:::-;8672:29;8694:6;8672:29;:::i;:::-;8667:3;8663:39;8656:46;;8438:270;8348:360;;;;:::o;8714:364::-;8802:3;8830:39;8863:5;8830:39;:::i;:::-;8885:71;8949:6;8944:3;8885:71;:::i;:::-;8878:78;;8965:52;9010:6;9005:3;8998:4;8991:5;8987:16;8965:52;:::i;:::-;9042:29;9064:6;9042:29;:::i;:::-;9037:3;9033:39;9026:46;;8806:272;8714:364;;;;:::o;9084:377::-;9190:3;9218:39;9251:5;9218:39;:::i;:::-;9273:89;9355:6;9350:3;9273:89;:::i;:::-;9266:96;;9371:52;9416:6;9411:3;9404:4;9397:5;9393:16;9371:52;:::i;:::-;9448:6;9443:3;9439:16;9432:23;;9194:267;9084:377;;;;:::o;9491:845::-;9594:3;9631:5;9625:12;9660:36;9686:9;9660:36;:::i;:::-;9712:89;9794:6;9789:3;9712:89;:::i;:::-;9705:96;;9832:1;9821:9;9817:17;9848:1;9843:137;;;;9994:1;9989:341;;;;9810:520;;9843:137;9927:4;9923:9;9912;9908:25;9903:3;9896:38;9963:6;9958:3;9954:16;9947:23;;9843:137;;9989:341;10056:38;10088:5;10056:38;:::i;:::-;10116:1;10130:154;10144:6;10141:1;10138:13;10130:154;;;10218:7;10212:14;10208:1;10203:3;10199:11;10192:35;10268:1;10259:7;10255:15;10244:26;;10166:4;10163:1;10159:12;10154:17;;10130:154;;;10313:6;10308:3;10304:16;10297:23;;9996:334;;9810:520;;9598:738;;9491:845;;;;:::o;10342:365::-;10484:3;10505:66;10569:1;10564:3;10505:66;:::i;:::-;10498:73;;10580:93;10669:3;10580:93;:::i;:::-;10698:2;10693:3;10689:12;10682:19;;10342:365;;;:::o;10713:366::-;10855:3;10876:67;10940:2;10935:3;10876:67;:::i;:::-;10869:74;;10952:93;11041:3;10952:93;:::i;:::-;11070:2;11065:3;11061:12;11054:19;;10713:366;;;:::o;11085:::-;11227:3;11248:67;11312:2;11307:3;11248:67;:::i;:::-;11241:74;;11324:93;11413:3;11324:93;:::i;:::-;11442:2;11437:3;11433:12;11426:19;;11085:366;;;:::o;11457:::-;11599:3;11620:67;11684:2;11679:3;11620:67;:::i;:::-;11613:74;;11696:93;11785:3;11696:93;:::i;:::-;11814:2;11809:3;11805:12;11798:19;;11457:366;;;:::o;11829:402::-;11989:3;12010:85;12092:2;12087:3;12010:85;:::i;:::-;12003:92;;12104:93;12193:3;12104:93;:::i;:::-;12222:2;12217:3;12213:12;12206:19;;11829:402;;;:::o;12237:366::-;12379:3;12400:67;12464:2;12459:3;12400:67;:::i;:::-;12393:74;;12476:93;12565:3;12476:93;:::i;:::-;12594:2;12589:3;12585:12;12578:19;;12237:366;;;:::o;12609:::-;12751:3;12772:67;12836:2;12831:3;12772:67;:::i;:::-;12765:74;;12848:93;12937:3;12848:93;:::i;:::-;12966:2;12961:3;12957:12;12950:19;;12609:366;;;:::o;12981:::-;13123:3;13144:67;13208:2;13203:3;13144:67;:::i;:::-;13137:74;;13220:93;13309:3;13220:93;:::i;:::-;13338:2;13333:3;13329:12;13322:19;;12981:366;;;:::o;13353:::-;13495:3;13516:67;13580:2;13575:3;13516:67;:::i;:::-;13509:74;;13592:93;13681:3;13592:93;:::i;:::-;13710:2;13705:3;13701:12;13694:19;;13353:366;;;:::o;13725:::-;13867:3;13888:67;13952:2;13947:3;13888:67;:::i;:::-;13881:74;;13964:93;14053:3;13964:93;:::i;:::-;14082:2;14077:3;14073:12;14066:19;;13725:366;;;:::o;14097:::-;14239:3;14260:67;14324:2;14319:3;14260:67;:::i;:::-;14253:74;;14336:93;14425:3;14336:93;:::i;:::-;14454:2;14449:3;14445:12;14438:19;;14097:366;;;:::o;14469:::-;14611:3;14632:67;14696:2;14691:3;14632:67;:::i;:::-;14625:74;;14708:93;14797:3;14708:93;:::i;:::-;14826:2;14821:3;14817:12;14810:19;;14469:366;;;:::o;14841:398::-;15000:3;15021:83;15102:1;15097:3;15021:83;:::i;:::-;15014:90;;15113:93;15202:3;15113:93;:::i;:::-;15231:1;15226:3;15222:11;15215:18;;14841:398;;;:::o;15245:366::-;15387:3;15408:67;15472:2;15467:3;15408:67;:::i;:::-;15401:74;;15484:93;15573:3;15484:93;:::i;:::-;15602:2;15597:3;15593:12;15586:19;;15245:366;;;:::o;15617:::-;15759:3;15780:67;15844:2;15839:3;15780:67;:::i;:::-;15773:74;;15856:93;15945:3;15856:93;:::i;:::-;15974:2;15969:3;15965:12;15958:19;;15617:366;;;:::o;15989:118::-;16076:24;16094:5;16076:24;:::i;:::-;16071:3;16064:37;15989:118;;:::o;16113:589::-;16338:3;16360:92;16448:3;16439:6;16360:92;:::i;:::-;16353:99;;16469:95;16560:3;16551:6;16469:95;:::i;:::-;16462:102;;16581:95;16672:3;16663:6;16581:95;:::i;:::-;16574:102;;16693:3;16686:10;;16113:589;;;;;;:::o;16708:535::-;16938:3;16960:92;17048:3;17039:6;16960:92;:::i;:::-;16953:99;;17069:148;17213:3;17069:148;:::i;:::-;17062:155;;17234:3;17227:10;;16708:535;;;;:::o;17249:379::-;17433:3;17455:147;17598:3;17455:147;:::i;:::-;17448:154;;17619:3;17612:10;;17249:379;;;:::o;17634:222::-;17727:4;17765:2;17754:9;17750:18;17742:26;;17778:71;17846:1;17835:9;17831:17;17822:6;17778:71;:::i;:::-;17634:222;;;;:::o;17862:640::-;18057:4;18095:3;18084:9;18080:19;18072:27;;18109:71;18177:1;18166:9;18162:17;18153:6;18109:71;:::i;:::-;18190:72;18258:2;18247:9;18243:18;18234:6;18190:72;:::i;:::-;18272;18340:2;18329:9;18325:18;18316:6;18272:72;:::i;:::-;18391:9;18385:4;18381:20;18376:2;18365:9;18361:18;18354:48;18419:76;18490:4;18481:6;18419:76;:::i;:::-;18411:84;;17862:640;;;;;;;:::o;18508:210::-;18595:4;18633:2;18622:9;18618:18;18610:26;;18646:65;18708:1;18697:9;18693:17;18684:6;18646:65;:::i;:::-;18508:210;;;;:::o;18724:313::-;18837:4;18875:2;18864:9;18860:18;18852:26;;18924:9;18918:4;18914:20;18910:1;18899:9;18895:17;18888:47;18952:78;19025:4;19016:6;18952:78;:::i;:::-;18944:86;;18724:313;;;;:::o;19043:419::-;19209:4;19247:2;19236:9;19232:18;19224:26;;19296:9;19290:4;19286:20;19282:1;19271:9;19267:17;19260:47;19324:131;19450:4;19324:131;:::i;:::-;19316:139;;19043:419;;;:::o;19468:::-;19634:4;19672:2;19661:9;19657:18;19649:26;;19721:9;19715:4;19711:20;19707:1;19696:9;19692:17;19685:47;19749:131;19875:4;19749:131;:::i;:::-;19741:139;;19468:419;;;:::o;19893:::-;20059:4;20097:2;20086:9;20082:18;20074:26;;20146:9;20140:4;20136:20;20132:1;20121:9;20117:17;20110:47;20174:131;20300:4;20174:131;:::i;:::-;20166:139;;19893:419;;;:::o;20318:::-;20484:4;20522:2;20511:9;20507:18;20499:26;;20571:9;20565:4;20561:20;20557:1;20546:9;20542:17;20535:47;20599:131;20725:4;20599:131;:::i;:::-;20591:139;;20318:419;;;:::o;20743:::-;20909:4;20947:2;20936:9;20932:18;20924:26;;20996:9;20990:4;20986:20;20982:1;20971:9;20967:17;20960:47;21024:131;21150:4;21024:131;:::i;:::-;21016:139;;20743:419;;;:::o;21168:::-;21334:4;21372:2;21361:9;21357:18;21349:26;;21421:9;21415:4;21411:20;21407:1;21396:9;21392:17;21385:47;21449:131;21575:4;21449:131;:::i;:::-;21441:139;;21168:419;;;:::o;21593:::-;21759:4;21797:2;21786:9;21782:18;21774:26;;21846:9;21840:4;21836:20;21832:1;21821:9;21817:17;21810:47;21874:131;22000:4;21874:131;:::i;:::-;21866:139;;21593:419;;;:::o;22018:::-;22184:4;22222:2;22211:9;22207:18;22199:26;;22271:9;22265:4;22261:20;22257:1;22246:9;22242:17;22235:47;22299:131;22425:4;22299:131;:::i;:::-;22291:139;;22018:419;;;:::o;22443:::-;22609:4;22647:2;22636:9;22632:18;22624:26;;22696:9;22690:4;22686:20;22682:1;22671:9;22667:17;22660:47;22724:131;22850:4;22724:131;:::i;:::-;22716:139;;22443:419;;;:::o;22868:::-;23034:4;23072:2;23061:9;23057:18;23049:26;;23121:9;23115:4;23111:20;23107:1;23096:9;23092:17;23085:47;23149:131;23275:4;23149:131;:::i;:::-;23141:139;;22868:419;;;:::o;23293:::-;23459:4;23497:2;23486:9;23482:18;23474:26;;23546:9;23540:4;23536:20;23532:1;23521:9;23517:17;23510:47;23574:131;23700:4;23574:131;:::i;:::-;23566:139;;23293:419;;;:::o;23718:::-;23884:4;23922:2;23911:9;23907:18;23899:26;;23971:9;23965:4;23961:20;23957:1;23946:9;23942:17;23935:47;23999:131;24125:4;23999:131;:::i;:::-;23991:139;;23718:419;;;:::o;24143:::-;24309:4;24347:2;24336:9;24332:18;24324:26;;24396:9;24390:4;24386:20;24382:1;24371:9;24367:17;24360:47;24424:131;24550:4;24424:131;:::i;:::-;24416:139;;24143:419;;;:::o;24568:222::-;24661:4;24699:2;24688:9;24684:18;24676:26;;24712:71;24780:1;24769:9;24765:17;24756:6;24712:71;:::i;:::-;24568:222;;;;:::o;24796:129::-;24830:6;24857:20;;:::i;:::-;24847:30;;24886:33;24914:4;24906:6;24886:33;:::i;:::-;24796:129;;;:::o;24931:75::-;24964:6;24997:2;24991:9;24981:19;;24931:75;:::o;25012:307::-;25073:4;25163:18;25155:6;25152:30;25149:56;;;25185:18;;:::i;:::-;25149:56;25223:29;25245:6;25223:29;:::i;:::-;25215:37;;25307:4;25301;25297:15;25289:23;;25012:307;;;:::o;25325:308::-;25387:4;25477:18;25469:6;25466:30;25463:56;;;25499:18;;:::i;:::-;25463:56;25537:29;25559:6;25537:29;:::i;:::-;25529:37;;25621:4;25615;25611:15;25603:23;;25325:308;;;:::o;25639:141::-;25688:4;25711:3;25703:11;;25734:3;25731:1;25724:14;25768:4;25765:1;25755:18;25747:26;;25639:141;;;:::o;25786:98::-;25837:6;25871:5;25865:12;25855:22;;25786:98;;;:::o;25890:99::-;25942:6;25976:5;25970:12;25960:22;;25890:99;;;:::o;25995:168::-;26078:11;26112:6;26107:3;26100:19;26152:4;26147:3;26143:14;26128:29;;25995:168;;;;:::o;26169:147::-;26270:11;26307:3;26292:18;;26169:147;;;;:::o;26322:169::-;26406:11;26440:6;26435:3;26428:19;26480:4;26475:3;26471:14;26456:29;;26322:169;;;;:::o;26497:148::-;26599:11;26636:3;26621:18;;26497:148;;;;:::o;26651:305::-;26691:3;26710:20;26728:1;26710:20;:::i;:::-;26705:25;;26744:20;26762:1;26744:20;:::i;:::-;26739:25;;26898:1;26830:66;26826:74;26823:1;26820:81;26817:107;;;26904:18;;:::i;:::-;26817:107;26948:1;26945;26941:9;26934:16;;26651:305;;;;:::o;26962:185::-;27002:1;27019:20;27037:1;27019:20;:::i;:::-;27014:25;;27053:20;27071:1;27053:20;:::i;:::-;27048:25;;27092:1;27082:35;;27097:18;;:::i;:::-;27082:35;27139:1;27136;27132:9;27127:14;;26962:185;;;;:::o;27153:348::-;27193:7;27216:20;27234:1;27216:20;:::i;:::-;27211:25;;27250:20;27268:1;27250:20;:::i;:::-;27245:25;;27438:1;27370:66;27366:74;27363:1;27360:81;27355:1;27348:9;27341:17;27337:105;27334:131;;;27445:18;;:::i;:::-;27334:131;27493:1;27490;27486:9;27475:20;;27153:348;;;;:::o;27507:191::-;27547:4;27567:20;27585:1;27567:20;:::i;:::-;27562:25;;27601:20;27619:1;27601:20;:::i;:::-;27596:25;;27640:1;27637;27634:8;27631:34;;;27645:18;;:::i;:::-;27631:34;27690:1;27687;27683:9;27675:17;;27507:191;;;;:::o;27704:96::-;27741:7;27770:24;27788:5;27770:24;:::i;:::-;27759:35;;27704:96;;;:::o;27806:90::-;27840:7;27883:5;27876:13;27869:21;27858:32;;27806:90;;;:::o;27902:149::-;27938:7;27978:66;27971:5;27967:78;27956:89;;27902:149;;;:::o;28057:125::-;28123:7;28152:24;28170:5;28152:24;:::i;:::-;28141:35;;28057:125;;;:::o;28188:126::-;28225:7;28265:42;28258:5;28254:54;28243:65;;28188:126;;;:::o;28320:77::-;28357:7;28386:5;28375:16;;28320:77;;;:::o;28403:154::-;28487:6;28482:3;28477;28464:30;28549:1;28540:6;28535:3;28531:16;28524:27;28403:154;;;:::o;28563:307::-;28631:1;28641:113;28655:6;28652:1;28649:13;28641:113;;;28740:1;28735:3;28731:11;28725:18;28721:1;28716:3;28712:11;28705:39;28677:2;28674:1;28670:10;28665:15;;28641:113;;;28772:6;28769:1;28766:13;28763:101;;;28852:1;28843:6;28838:3;28834:16;28827:27;28763:101;28612:258;28563:307;;;:::o;28876:320::-;28920:6;28957:1;28951:4;28947:12;28937:22;;29004:1;28998:4;28994:12;29025:18;29015:81;;29081:4;29073:6;29069:17;29059:27;;29015:81;29143:2;29135:6;29132:14;29112:18;29109:38;29106:84;;;29162:18;;:::i;:::-;29106:84;28927:269;28876:320;;;:::o;29202:281::-;29285:27;29307:4;29285:27;:::i;:::-;29277:6;29273:40;29415:6;29403:10;29400:22;29379:18;29367:10;29364:34;29361:62;29358:88;;;29426:18;;:::i;:::-;29358:88;29466:10;29462:2;29455:22;29245:238;29202:281;;:::o;29489:233::-;29528:3;29551:24;29569:5;29551:24;:::i;:::-;29542:33;;29597:66;29590:5;29587:77;29584:103;;;29667:18;;:::i;:::-;29584:103;29714:1;29707:5;29703:13;29696:20;;29489:233;;;:::o;29728:176::-;29760:1;29777:20;29795:1;29777:20;:::i;:::-;29772:25;;29811:20;29829:1;29811:20;:::i;:::-;29806:25;;29850:1;29840:35;;29855:18;;:::i;:::-;29840:35;29896:1;29893;29889:9;29884:14;;29728:176;;;;:::o;29910:180::-;29958:77;29955:1;29948:88;30055:4;30052:1;30045:15;30079:4;30076:1;30069:15;30096:180;30144:77;30141:1;30134:88;30241:4;30238:1;30231:15;30265:4;30262:1;30255:15;30282:180;30330:77;30327:1;30320:88;30427:4;30424:1;30417:15;30451:4;30448:1;30441:15;30468:180;30516:77;30513:1;30506:88;30613:4;30610:1;30603:15;30637:4;30634:1;30627:15;30654:180;30702:77;30699:1;30692:88;30799:4;30796:1;30789:15;30823:4;30820:1;30813:15;30840:117;30949:1;30946;30939:12;30963:117;31072:1;31069;31062:12;31086:117;31195:1;31192;31185:12;31209:117;31318:1;31315;31308:12;31332:102;31373:6;31424:2;31420:7;31415:2;31408:5;31404:14;31400:28;31390:38;;31332:102;;;:::o;31440:156::-;31580:8;31576:1;31568:6;31564:14;31557:32;31440:156;:::o;31602:225::-;31742:34;31738:1;31730:6;31726:14;31719:58;31811:8;31806:2;31798:6;31794:15;31787:33;31602:225;:::o;31833:160::-;31973:12;31969:1;31961:6;31957:14;31950:36;31833:160;:::o;31999:172::-;32139:24;32135:1;32127:6;32123:14;32116:48;31999:172;:::o;32177:165::-;32317:17;32313:1;32305:6;32301:14;32294:41;32177:165;:::o;32348:167::-;32488:19;32484:1;32476:6;32472:14;32465:43;32348:167;:::o;32521:172::-;32661:24;32657:1;32649:6;32645:14;32638:48;32521:172;:::o;32699:168::-;32839:20;32835:1;32827:6;32823:14;32816:44;32699:168;:::o;32873:171::-;33013:23;33009:1;33001:6;32997:14;32990:47;32873:171;:::o;33050:182::-;33190:34;33186:1;33178:6;33174:14;33167:58;33050:182;:::o;33238:172::-;33378:24;33374:1;33366:6;33362:14;33355:48;33238:172;:::o;33416:174::-;33556:26;33552:1;33544:6;33540:14;33533:50;33416:174;:::o;33596:114::-;;:::o;33716:164::-;33856:16;33852:1;33844:6;33840:14;33833:40;33716:164;:::o;33886:162::-;34026:14;34022:1;34014:6;34010:14;34003:38;33886:162;:::o;34054:122::-;34127:24;34145:5;34127:24;:::i;:::-;34120:5;34117:35;34107:63;;34166:1;34163;34156:12;34107:63;34054:122;:::o;34182:116::-;34252:21;34267:5;34252:21;:::i;:::-;34245:5;34242:32;34232:60;;34288:1;34285;34278:12;34232:60;34182:116;:::o;34304:120::-;34376:23;34393:5;34376:23;:::i;:::-;34369:5;34366:34;34356:62;;34414:1;34411;34404:12;34356:62;34304:120;:::o;34430:180::-;34532:53;34579:5;34532:53;:::i;:::-;34525:5;34522:64;34512:92;;34600:1;34597;34590:12;34512:92;34430:180;:::o;34616:122::-;34689:24;34707:5;34689:24;:::i;:::-;34682:5;34679:35;34669:63;;34728:1;34725;34718:12;34669:63;34616:122;:::o

Swarm Source

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