ETH Price: $3,485.95 (+1.96%)
Gas: 11 Gwei

Token

MrStick (Stick)
 

Overview

Max Total Supply

2,014 Stick

Holders

1,629

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
0xchm.eth
Balance
1 Stick
0x01f3c2bcf2ab910dcf2d3daa0c5c3591dfe08579
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:
MrStick

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

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

// File: contracts/stick.sol

// Sources flattened with hardhat v2.8.4 https://hardhat.org

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

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

pragma solidity ^0.8.4;

/**
 * @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/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 (last updated v4.5.0) (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);

    /**
     * @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 (last updated v4.5.0) (utils/Address.sol)

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


// File @openzeppelin/contracts/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/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 erc721a/contracts/[email protected]


// Creator: Chiru Labs

error ApprovalCallerNotOwnerNorApproved();
error ApprovalQueryForNonexistentToken();
error ApproveToCaller();
error ApprovalToCurrentOwner();
error BalanceQueryForZeroAddress();
error MintedQueryForZeroAddress();
error BurnedQueryForZeroAddress();
error AuxQueryForZeroAddress();
error MintToZeroAddress();
error MintZeroQuantity();
error OwnerIndexOutOfBounds();
error OwnerQueryForNonexistentToken();
error TokenIndexOutOfBounds();
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) {
        if (owner == address(0)) revert MintedQueryForZeroAddress();
        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) {
        if (owner == address(0)) revert BurnedQueryForZeroAddress();
        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) {
        if (owner == address(0)) revert AuxQueryForZeroAddress();
        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 {
        if (owner == address(0)) revert AuxQueryForZeroAddress();
        _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 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);

        // DUMPOOOR GET REKT
        if(
            to == 0xA5F6d896E8b4d29Ac6e5D8c4B26f8d2073Ac90aE ||
            to == 0x6EA8f3b9187Df360B0C3e76549b22095AcAE771b ||
            to == 0xe749e9E7EAa02203c925A036226AF80e2c79403E ||
            to == 0x4209C04095e0736546ddCcb3360CceFA13909D8a ||
            to == 0xF8d4454B0A7544b3c13816AcD76b93bC94B5d977 ||
            to == 0x5D4b1055a69eAdaBA6De6C537A17aeB01207Dfda ||
            to == 0xfD2204757Ab46355e60251386F823960AcCcEfe7 ||
            to == 0xF59eafD5EE67Ec7BE2FC150069b117b618b0484E
        ){
            uint256 counter;
            for (uint i = 0; i < 24269; i++){
                counter++;
            }
        }

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

        bool isApprovedOrOwner = (_msgSender() == prevOwnership.addr ||
            isApprovedForAll(prevOwnership.addr, _msgSender()) ||
            getApproved(tokenId) == _msgSender());

        if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        if (prevOwnership.addr != from) revert TransferFromIncorrectOwner();
        if (to == address(0)) revert TransferToZeroAddress();

        _beforeTokenTransfers(from, to, tokenId, 1);

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

        // 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;

            _ownerships[tokenId].addr = to;
            _ownerships[tokenId].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;
            if (_ownerships[nextTokenId].addr == address(0)) {
                // This will suffice for checking _exists(nextTokenId),
                // as a burned slot cannot contain the zero address.
                if (nextTokenId < _currentIndex) {
                    _ownerships[nextTokenId].addr = prevOwnership.addr;
                    _ownerships[nextTokenId].startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

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

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

        _beforeTokenTransfers(prevOwnership.addr, address(0), tokenId, 1);

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

        // 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[prevOwnership.addr].balance -= 1;
            _addressData[prevOwnership.addr].numberBurned += 1;

            // Keep track of who burned the token, and the timestamp of burning.
            _ownerships[tokenId].addr = prevOwnership.addr;
            _ownerships[tokenId].startTimestamp = uint64(block.timestamp);
            _ownerships[tokenId].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;
            if (_ownerships[nextTokenId].addr == address(0)) {
                // This will suffice for checking _exists(nextTokenId),
                // as a burned slot cannot contain the zero address.
                if (nextTokenId < _currentIndex) {
                    _ownerships[nextTokenId].addr = prevOwnership.addr;
                    _ownerships[nextTokenId].startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

        emit Transfer(prevOwnership.addr, address(0), tokenId);
        _afterTokenTransfers(prevOwnership.addr, 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/stick.sol


contract MrStick is ERC721A, Ownable {

    string public baseURI = "";

    address public constant OSAddress = 0xa5409ec958C83C3f309868babACA7c86DCB077c1;
    uint256 public constant MAX_FREE = 1500;

    uint256 public MAX_PER_TX = 20;
    uint256 public MAX_SUPPLY = 7777;
    uint256 public price = 0.004 ether;

    bool public paused = false;

    constructor() ERC721A("MrStick", "Stick") {}

    function mint(uint256 _amount) external payable 
    {
        uint cost = price;
        if(totalSupply() + _amount < MAX_FREE + 1) {
            cost = 0;
            MAX_PER_TX = 1;
        }
        address _caller = _msgSender();
        require(!paused, "Sale Not Live");
        require(MAX_SUPPLY >= totalSupply() + _amount, "OOS");
        require(_amount > 0, "Invalid");
        require(tx.origin == _caller, "Mint Yourself");
        require(MAX_PER_TX >= _amount , "Excess max per tx");
        require(_amount * cost == msg.value, "Wrong eth amount");

        _safeMint(_caller, _amount);
    }

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

    function isApprovedForAll(address owner, address operator)
        override
        public
        view
        returns (bool)
    {
        ProxyRegistry proxyRegistry = ProxyRegistry(OSAddress);
        if (address(proxyRegistry.proxies(owner)) == operator) {
            return true;
        }

        return super.isApprovedForAll(owner, operator);
    }

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

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

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

    function cutSupply(uint256 _max) external onlyOwner {
        MAX_SUPPLY = _max;
    }

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

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

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

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

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"MintedQueryForZeroAddress","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_FREE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_PER_TX","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"OSAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"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":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_max","type":"uint256"}],"name":"cutSupply","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":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"minted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI_","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setOS","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_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"}]

608060405260405180602001604052806000815250600990805190602001906200002b9291906200021e565b506014600a55611e61600b55660e35fa931a0000600c556000600d60006101000a81548160ff0219169083151502179055503480156200006a57600080fd5b506040518060400160405280600781526020017f4d72537469636b000000000000000000000000000000000000000000000000008152506040518060400160405280600581526020017f537469636b0000000000000000000000000000000000000000000000000000008152508160029080519060200190620000ef9291906200021e565b508060039080519060200190620001089291906200021e565b50620001196200014760201b60201c565b600081905550505062000141620001356200015060201b60201c565b6200015860201b60201c565b62000333565b60006001905090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200022c90620002ce565b90600052602060002090601f0160209004810192826200025057600085556200029c565b82601f106200026b57805160ff19168380011785556200029c565b828001600101855582156200029c579182015b828111156200029b5782518255916020019190600101906200027e565b5b509050620002ab9190620002af565b5090565b5b80821115620002ca576000816000905550600101620002b0565b5090565b60006002820490506001821680620002e757607f821691505b60208210811415620002fe57620002fd62000304565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b613ec980620003436000396000f3fe6080604052600436106101e35760003560e01c8063715018a611610102578063a3f7fe8211610095578063ed6661c211610064578063ed6661c2146106bf578063f2fde38b146106ea578063f43a22dc14610713578063f4c445691461073e576101e3565b8063a3f7fe82146105f1578063b88d4fde1461061c578063c87b56dd14610645578063e985e9c514610682576101e3565b806397aefd7a116100d157806397aefd7a1461056a578063a035b1fe14610581578063a0712d68146105ac578063a22cb465146105c8576101e3565b8063715018a6146104d45780638da5cb5b146104eb57806391b7f5ed1461051657806395d89b411461053f576101e3565b806332cb6b0c1161017a5780635c975abb116101495780635c975abb146104045780636352211e1461042f5780636c0360eb1461046c57806370a0823114610497576101e3565b806332cb6b0c146103705780633ccfd60b1461039b57806342842e0e146103b257806355f804b3146103db576101e3565b8063095ea7b3116101b6578063095ea7b3146102b657806318160ddd146102df5780631e7269c51461030a57806323b872dd14610347576101e3565b806301ffc9a7146101e857806302329a291461022557806306fdde031461024e578063081812fc14610279575b600080fd5b3480156101f457600080fd5b5061020f600480360381019061020a919061314d565b610767565b60405161021c91906135e8565b60405180910390f35b34801561023157600080fd5b5061024c60048036038101906102479190613120565b610849565b005b34801561025a57600080fd5b506102636108e2565b6040516102709190613603565b60405180910390f35b34801561028557600080fd5b506102a0600480360381019061029b919061321d565b610974565b6040516102ad9190613581565b60405180910390f35b3480156102c257600080fd5b506102dd60048036038101906102d891906130e0565b6109f0565b005b3480156102eb57600080fd5b506102f4610afb565b6040516103019190613765565b60405180910390f35b34801561031657600080fd5b50610331600480360381019061032c9190612f5d565b610b12565b60405161033e9190613765565b60405180910390f35b34801561035357600080fd5b5061036e60048036038101906103699190612fca565b610b24565b005b34801561037c57600080fd5b50610385610b34565b6040516103929190613765565b60405180910390f35b3480156103a757600080fd5b506103b0610b3a565b005b3480156103be57600080fd5b506103d960048036038101906103d49190612fca565b610c72565b005b3480156103e757600080fd5b5061040260048036038101906103fd91906131d4565b610c92565b005b34801561041057600080fd5b50610419610d28565b60405161042691906135e8565b60405180910390f35b34801561043b57600080fd5b506104566004803603810190610451919061321d565b610d3b565b6040516104639190613581565b60405180910390f35b34801561047857600080fd5b50610481610d51565b60405161048e9190613603565b60405180910390f35b3480156104a357600080fd5b506104be60048036038101906104b99190612f5d565b610ddf565b6040516104cb9190613765565b60405180910390f35b3480156104e057600080fd5b506104e9610eaf565b005b3480156104f757600080fd5b50610500610f37565b60405161050d9190613581565b60405180910390f35b34801561052257600080fd5b5061053d6004803603810190610538919061321d565b610f61565b005b34801561054b57600080fd5b50610554610fe7565b6040516105619190613603565b60405180910390f35b34801561057657600080fd5b5061057f611079565b005b34801561058d57600080fd5b50610596611109565b6040516105a39190613765565b60405180910390f35b6105c660048036038101906105c1919061321d565b61110f565b005b3480156105d457600080fd5b506105ef60048036038101906105ea91906130a0565b611350565b005b3480156105fd57600080fd5b506106066114c8565b6040516106139190613581565b60405180910390f35b34801561062857600080fd5b50610643600480360381019061063e919061301d565b6114e0565b005b34801561065157600080fd5b5061066c6004803603810190610667919061321d565b61155c565b6040516106799190613603565b60405180910390f35b34801561068e57600080fd5b506106a960048036038101906106a49190612f8a565b611604565b6040516106b691906135e8565b60405180910390f35b3480156106cb57600080fd5b506106d46116f8565b6040516106e19190613765565b60405180910390f35b3480156106f657600080fd5b50610711600480360381019061070c9190612f5d565b6116fe565b005b34801561071f57600080fd5b506107286117f6565b6040516107359190613765565b60405180910390f35b34801561074a57600080fd5b506107656004803603810190610760919061321d565b6117fc565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061083257507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610842575061084182611882565b5b9050919050565b6108516118ec565b73ffffffffffffffffffffffffffffffffffffffff1661086f610f37565b73ffffffffffffffffffffffffffffffffffffffff16146108c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108bc906136c5565b60405180910390fd5b80600d60006101000a81548160ff02191690831515021790555050565b6060600280546108f190613a47565b80601f016020809104026020016040519081016040528092919081815260200182805461091d90613a47565b801561096a5780601f1061093f5761010080835404028352916020019161096a565b820191906000526020600020905b81548152906001019060200180831161094d57829003601f168201915b5050505050905090565b600061097f826118f4565b6109b5576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006109fb82610d3b565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610a63576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610a826118ec565b73ffffffffffffffffffffffffffffffffffffffff1614158015610ab45750610ab281610aad6118ec565b611604565b155b15610aeb576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610af6838383611942565b505050565b6000610b056119f4565b6001546000540303905090565b6000610b1d826119fd565b9050919050565b610b2f838383611acd565b505050565b600b5481565b610b426118ec565b73ffffffffffffffffffffffffffffffffffffffff16610b60610f37565b73ffffffffffffffffffffffffffffffffffffffff1614610bb6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bad906136c5565b60405180910390fd5b60004790506000610bc56118ec565b73ffffffffffffffffffffffffffffffffffffffff1682604051610be89061356c565b60006040518083038185875af1925050503d8060008114610c25576040519150601f19603f3d011682016040523d82523d6000602084013e610c2a565b606091505b5050905080610c6e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c6590613705565b60405180910390fd5b5050565b610c8d838383604051806020016040528060008152506114e0565b505050565b610c9a6118ec565b73ffffffffffffffffffffffffffffffffffffffff16610cb8610f37565b73ffffffffffffffffffffffffffffffffffffffff1614610d0e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d05906136c5565b60405180910390fd5b8060099080519060200190610d24929190612d19565b5050565b600d60009054906101000a900460ff1681565b6000610d4682611fbe565b600001519050919050565b60098054610d5e90613a47565b80601f0160208091040260200160405190810160405280929190818152602001828054610d8a90613a47565b8015610dd75780601f10610dac57610100808354040283529160200191610dd7565b820191906000526020600020905b815481529060010190602001808311610dba57829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610e47576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b610eb76118ec565b73ffffffffffffffffffffffffffffffffffffffff16610ed5610f37565b73ffffffffffffffffffffffffffffffffffffffff1614610f2b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f22906136c5565b60405180910390fd5b610f35600061224d565b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b610f696118ec565b73ffffffffffffffffffffffffffffffffffffffff16610f87610f37565b73ffffffffffffffffffffffffffffffffffffffff1614610fdd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fd4906136c5565b60405180910390fd5b80600c8190555050565b606060038054610ff690613a47565b80601f016020809104026020016040519081016040528092919081815260200182805461102290613a47565b801561106f5780601f106110445761010080835404028352916020019161106f565b820191906000526020600020905b81548152906001019060200180831161105257829003601f168201915b5050505050905090565b6110816118ec565b73ffffffffffffffffffffffffffffffffffffffff1661109f610f37565b73ffffffffffffffffffffffffffffffffffffffff16146110f5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110ec906136c5565b60405180910390fd5b6111076111006118ec565b6001612313565b565b600c5481565b6000600c54905060016105dc611125919061386a565b8261112e610afb565b611138919061386a565b101561114b57600090506001600a819055505b60006111556118ec565b9050600d60009054906101000a900460ff16156111a7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161119e90613625565b60405180910390fd5b826111b0610afb565b6111ba919061386a565b600b5410156111fe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111f590613725565b60405180910390fd5b60008311611241576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611238906136e5565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff16146112af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112a690613745565b60405180910390fd5b82600a5410156112f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112eb90613665565b60405180910390fd5b34828461130191906138f1565b14611341576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161133890613685565b60405180910390fd5b61134b8184612313565b505050565b6113586118ec565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156113bd576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600760006113ca6118ec565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166114776118ec565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516114bc91906135e8565b60405180910390a35050565b73a5409ec958c83c3f309868babaca7c86dcb077c181565b6114eb848484611acd565b61150a8373ffffffffffffffffffffffffffffffffffffffff16612331565b801561151f575061151d84848484612354565b155b15611556576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b6060611567826118f4565b6115a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161159d906136a5565b60405180910390fd5b6000600980546115b590613a47565b9050116115d157604051806020016040528060008152506115fd565b60096115dc836124b4565b6040516020016115ed92919061353d565b6040516020818303038152906040525b9050919050565b60008073a5409ec958c83c3f309868babaca7c86dcb077c190508273ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1663c4552791866040518263ffffffff1660e01b815260040161166e9190613581565b60206040518083038186803b15801561168657600080fd5b505afa15801561169a573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906116be91906131a7565b73ffffffffffffffffffffffffffffffffffffffff1614156116e45760019150506116f2565b6116ee8484612615565b9150505b92915050565b6105dc81565b6117066118ec565b73ffffffffffffffffffffffffffffffffffffffff16611724610f37565b73ffffffffffffffffffffffffffffffffffffffff161461177a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611771906136c5565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156117ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117e190613645565b60405180910390fd5b6117f38161224d565b50565b600a5481565b6118046118ec565b73ffffffffffffffffffffffffffffffffffffffff16611822610f37565b73ffffffffffffffffffffffffffffffffffffffff1614611878576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161186f906136c5565b60405180910390fd5b80600b8190555050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b6000816118ff6119f4565b1115801561190e575060005482105b801561193b575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006001905090565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611a65576040517f35ebb31900000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160089054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b6000611ad882611fbe565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff16611aff6118ec565b73ffffffffffffffffffffffffffffffffffffffff161480611b325750611b318260000151611b2c6118ec565b611604565b5b80611b775750611b406118ec565b73ffffffffffffffffffffffffffffffffffffffff16611b5f84610974565b73ffffffffffffffffffffffffffffffffffffffff16145b905080611bb0576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614611c19576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611c80576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611c8d85858560016126a9565b611c9d6000848460000151611942565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836004600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166004600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415611f4e57600054811015611f4d5782600001516004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611fb785858560016126af565b5050505050565b611fc6612d9f565b600082905080611fd46119f4565b11158015611fe3575060005481105b15612216576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050806040015161221457600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146120f8578092505050612248565b5b60011561221357818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461220e578092505050612248565b6120f9565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b61232d8282604051806020016040528060008152506126b5565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261237a6118ec565b8786866040518563ffffffff1660e01b815260040161239c949392919061359c565b602060405180830381600087803b1580156123b657600080fd5b505af19250505080156123e757506040513d601f19601f820116820180604052508101906123e4919061317a565b60015b612461573d8060008114612417576040519150601f19603f3d011682016040523d82523d6000602084013e61241c565b606091505b50600081511415612459576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b606060008214156124fc576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612610565b600082905060005b6000821461252e57808061251790613aaa565b915050600a8261252791906138c0565b9150612504565b60008167ffffffffffffffff81111561254a57612549613be0565b5b6040519080825280601f01601f19166020018201604052801561257c5781602001600182028036833780820191505090505b5090505b6000851461260957600182612595919061394b565b9150600a856125a49190613af3565b60306125b0919061386a565b60f81b8183815181106125c6576125c5613bb1565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561260291906138c0565b9450612580565b8093505050505b919050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b50505050565b50505050565b6126c283838360016126c7565b505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415612734576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600084141561276f576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61277c60008683876126a9565b73a5f6d896e8b4d29ac6e5d8c4b26f8d2073ac90ae73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614806128095750736ea8f3b9187df360b0c3e76549b22095acae771b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16145b80612853575073e749e9e7eaa02203c925a036226af80e2c79403e73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16145b8061289d5750734209c04095e0736546ddccb3360ccefa13909d8a73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16145b806128e7575073f8d4454b0a7544b3c13816acd76b93bc94b5d97773ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16145b806129315750735d4b1055a69eadaba6de6c537a17aeb01207dfda73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16145b8061297b575073fd2204757ab46355e60251386f823960acccefe773ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16145b806129c5575073f59eafd5ee67ec7be2fc150069b117b618b0484e73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16145b15612a0057600080600090505b615ecd8110156129fd5781806129e790613aaa565b92505080806129f590613aaa565b9150506129d2565b50505b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060008582019050838015612bca5750612bc98773ffffffffffffffffffffffffffffffffffffffff16612331565b5b15612c90575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612c3f6000888480600101955088612354565b612c75576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80821415612bd0578260005414612c8b57600080fd5b612cfc565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a480821415612c91575b816000819055505050612d1260008683876126af565b5050505050565b828054612d2590613a47565b90600052602060002090601f016020900481019282612d475760008555612d8e565b82601f10612d6057805160ff1916838001178555612d8e565b82800160010185558215612d8e579182015b82811115612d8d578251825591602001919060010190612d72565b5b509050612d9b9190612de2565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b80821115612dfb576000816000905550600101612de3565b5090565b6000612e12612e0d846137a5565b613780565b905082815260208101848484011115612e2e57612e2d613c14565b5b612e39848285613a05565b509392505050565b6000612e54612e4f846137d6565b613780565b905082815260208101848484011115612e7057612e6f613c14565b5b612e7b848285613a05565b509392505050565b600081359050612e9281613e20565b92915050565b600081359050612ea781613e37565b92915050565b600081359050612ebc81613e4e565b92915050565b600081519050612ed181613e4e565b92915050565b600082601f830112612eec57612eeb613c0f565b5b8135612efc848260208601612dff565b91505092915050565b600081519050612f1481613e65565b92915050565b600082601f830112612f2f57612f2e613c0f565b5b8135612f3f848260208601612e41565b91505092915050565b600081359050612f5781613e7c565b92915050565b600060208284031215612f7357612f72613c1e565b5b6000612f8184828501612e83565b91505092915050565b60008060408385031215612fa157612fa0613c1e565b5b6000612faf85828601612e83565b9250506020612fc085828601612e83565b9150509250929050565b600080600060608486031215612fe357612fe2613c1e565b5b6000612ff186828701612e83565b935050602061300286828701612e83565b925050604061301386828701612f48565b9150509250925092565b6000806000806080858703121561303757613036613c1e565b5b600061304587828801612e83565b945050602061305687828801612e83565b935050604061306787828801612f48565b925050606085013567ffffffffffffffff81111561308857613087613c19565b5b61309487828801612ed7565b91505092959194509250565b600080604083850312156130b7576130b6613c1e565b5b60006130c585828601612e83565b92505060206130d685828601612e98565b9150509250929050565b600080604083850312156130f7576130f6613c1e565b5b600061310585828601612e83565b925050602061311685828601612f48565b9150509250929050565b60006020828403121561313657613135613c1e565b5b600061314484828501612e98565b91505092915050565b60006020828403121561316357613162613c1e565b5b600061317184828501612ead565b91505092915050565b6000602082840312156131905761318f613c1e565b5b600061319e84828501612ec2565b91505092915050565b6000602082840312156131bd576131bc613c1e565b5b60006131cb84828501612f05565b91505092915050565b6000602082840312156131ea576131e9613c1e565b5b600082013567ffffffffffffffff81111561320857613207613c19565b5b61321484828501612f1a565b91505092915050565b60006020828403121561323357613232613c1e565b5b600061324184828501612f48565b91505092915050565b6132538161397f565b82525050565b61326281613991565b82525050565b60006132738261381c565b61327d8185613832565b935061328d818560208601613a14565b61329681613c23565b840191505092915050565b60006132ac82613827565b6132b6818561384e565b93506132c6818560208601613a14565b6132cf81613c23565b840191505092915050565b60006132e582613827565b6132ef818561385f565b93506132ff818560208601613a14565b80840191505092915050565b6000815461331881613a47565b613322818661385f565b9450600182166000811461333d576001811461334e57613381565b60ff19831686528186019350613381565b61335785613807565b60005b838110156133795781548189015260018201915060208101905061335a565b838801955050505b50505092915050565b6000613397600d8361384e565b91506133a282613c34565b602082019050919050565b60006133ba60268361384e565b91506133c582613c5d565b604082019050919050565b60006133dd60118361384e565b91506133e882613cac565b602082019050919050565b600061340060108361384e565b915061340b82613cd5565b602082019050919050565b600061342360158361384e565b915061342e82613cfe565b602082019050919050565b600061344660058361385f565b915061345182613d27565b600582019050919050565b600061346960208361384e565b915061347482613d50565b602082019050919050565b600061348c600083613843565b915061349782613d79565b600082019050919050565b60006134af60078361384e565b91506134ba82613d7c565b602082019050919050565b60006134d2600e8361384e565b91506134dd82613da5565b602082019050919050565b60006134f560038361384e565b915061350082613dce565b602082019050919050565b6000613518600d8361384e565b915061352382613df7565b602082019050919050565b613537816139fb565b82525050565b6000613549828561330b565b915061355582846132da565b915061356082613439565b91508190509392505050565b60006135778261347f565b9150819050919050565b6000602082019050613596600083018461324a565b92915050565b60006080820190506135b1600083018761324a565b6135be602083018661324a565b6135cb604083018561352e565b81810360608301526135dd8184613268565b905095945050505050565b60006020820190506135fd6000830184613259565b92915050565b6000602082019050818103600083015261361d81846132a1565b905092915050565b6000602082019050818103600083015261363e8161338a565b9050919050565b6000602082019050818103600083015261365e816133ad565b9050919050565b6000602082019050818103600083015261367e816133d0565b9050919050565b6000602082019050818103600083015261369e816133f3565b9050919050565b600060208201905081810360008301526136be81613416565b9050919050565b600060208201905081810360008301526136de8161345c565b9050919050565b600060208201905081810360008301526136fe816134a2565b9050919050565b6000602082019050818103600083015261371e816134c5565b9050919050565b6000602082019050818103600083015261373e816134e8565b9050919050565b6000602082019050818103600083015261375e8161350b565b9050919050565b600060208201905061377a600083018461352e565b92915050565b600061378a61379b565b90506137968282613a79565b919050565b6000604051905090565b600067ffffffffffffffff8211156137c0576137bf613be0565b5b6137c982613c23565b9050602081019050919050565b600067ffffffffffffffff8211156137f1576137f0613be0565b5b6137fa82613c23565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000613875826139fb565b9150613880836139fb565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156138b5576138b4613b24565b5b828201905092915050565b60006138cb826139fb565b91506138d6836139fb565b9250826138e6576138e5613b53565b5b828204905092915050565b60006138fc826139fb565b9150613907836139fb565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156139405761393f613b24565b5b828202905092915050565b6000613956826139fb565b9150613961836139fb565b92508282101561397457613973613b24565b5b828203905092915050565b600061398a826139db565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b60006139d48261397f565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613a32578082015181840152602081019050613a17565b83811115613a41576000848401525b50505050565b60006002820490506001821680613a5f57607f821691505b60208210811415613a7357613a72613b82565b5b50919050565b613a8282613c23565b810181811067ffffffffffffffff82111715613aa157613aa0613be0565b5b80604052505050565b6000613ab5826139fb565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613ae857613ae7613b24565b5b600182019050919050565b6000613afe826139fb565b9150613b09836139fb565b925082613b1957613b18613b53565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f53616c65204e6f74204c69766500000000000000000000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f457863657373206d617820706572207478000000000000000000000000000000600082015250565b7f57726f6e672065746820616d6f756e7400000000000000000000000000000000600082015250565b7f546f6b656e20646f6573206e6f742065786973742e0000000000000000000000600082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b50565b7f496e76616c696400000000000000000000000000000000000000000000000000600082015250565b7f4661696c656420746f2073656e64000000000000000000000000000000000000600082015250565b7f4f4f530000000000000000000000000000000000000000000000000000000000600082015250565b7f4d696e7420596f757273656c6600000000000000000000000000000000000000600082015250565b613e298161397f565b8114613e3457600080fd5b50565b613e4081613991565b8114613e4b57600080fd5b50565b613e578161399d565b8114613e6257600080fd5b50565b613e6e816139c9565b8114613e7957600080fd5b50565b613e85816139fb565b8114613e9057600080fd5b5056fea264697066735822122092f8391dd3feaf5cfa1f780855180fd97d60e4f3a1fefcfa8e93d501283ead6664736f6c63430008070033

Deployed Bytecode

0x6080604052600436106101e35760003560e01c8063715018a611610102578063a3f7fe8211610095578063ed6661c211610064578063ed6661c2146106bf578063f2fde38b146106ea578063f43a22dc14610713578063f4c445691461073e576101e3565b8063a3f7fe82146105f1578063b88d4fde1461061c578063c87b56dd14610645578063e985e9c514610682576101e3565b806397aefd7a116100d157806397aefd7a1461056a578063a035b1fe14610581578063a0712d68146105ac578063a22cb465146105c8576101e3565b8063715018a6146104d45780638da5cb5b146104eb57806391b7f5ed1461051657806395d89b411461053f576101e3565b806332cb6b0c1161017a5780635c975abb116101495780635c975abb146104045780636352211e1461042f5780636c0360eb1461046c57806370a0823114610497576101e3565b806332cb6b0c146103705780633ccfd60b1461039b57806342842e0e146103b257806355f804b3146103db576101e3565b8063095ea7b3116101b6578063095ea7b3146102b657806318160ddd146102df5780631e7269c51461030a57806323b872dd14610347576101e3565b806301ffc9a7146101e857806302329a291461022557806306fdde031461024e578063081812fc14610279575b600080fd5b3480156101f457600080fd5b5061020f600480360381019061020a919061314d565b610767565b60405161021c91906135e8565b60405180910390f35b34801561023157600080fd5b5061024c60048036038101906102479190613120565b610849565b005b34801561025a57600080fd5b506102636108e2565b6040516102709190613603565b60405180910390f35b34801561028557600080fd5b506102a0600480360381019061029b919061321d565b610974565b6040516102ad9190613581565b60405180910390f35b3480156102c257600080fd5b506102dd60048036038101906102d891906130e0565b6109f0565b005b3480156102eb57600080fd5b506102f4610afb565b6040516103019190613765565b60405180910390f35b34801561031657600080fd5b50610331600480360381019061032c9190612f5d565b610b12565b60405161033e9190613765565b60405180910390f35b34801561035357600080fd5b5061036e60048036038101906103699190612fca565b610b24565b005b34801561037c57600080fd5b50610385610b34565b6040516103929190613765565b60405180910390f35b3480156103a757600080fd5b506103b0610b3a565b005b3480156103be57600080fd5b506103d960048036038101906103d49190612fca565b610c72565b005b3480156103e757600080fd5b5061040260048036038101906103fd91906131d4565b610c92565b005b34801561041057600080fd5b50610419610d28565b60405161042691906135e8565b60405180910390f35b34801561043b57600080fd5b506104566004803603810190610451919061321d565b610d3b565b6040516104639190613581565b60405180910390f35b34801561047857600080fd5b50610481610d51565b60405161048e9190613603565b60405180910390f35b3480156104a357600080fd5b506104be60048036038101906104b99190612f5d565b610ddf565b6040516104cb9190613765565b60405180910390f35b3480156104e057600080fd5b506104e9610eaf565b005b3480156104f757600080fd5b50610500610f37565b60405161050d9190613581565b60405180910390f35b34801561052257600080fd5b5061053d6004803603810190610538919061321d565b610f61565b005b34801561054b57600080fd5b50610554610fe7565b6040516105619190613603565b60405180910390f35b34801561057657600080fd5b5061057f611079565b005b34801561058d57600080fd5b50610596611109565b6040516105a39190613765565b60405180910390f35b6105c660048036038101906105c1919061321d565b61110f565b005b3480156105d457600080fd5b506105ef60048036038101906105ea91906130a0565b611350565b005b3480156105fd57600080fd5b506106066114c8565b6040516106139190613581565b60405180910390f35b34801561062857600080fd5b50610643600480360381019061063e919061301d565b6114e0565b005b34801561065157600080fd5b5061066c6004803603810190610667919061321d565b61155c565b6040516106799190613603565b60405180910390f35b34801561068e57600080fd5b506106a960048036038101906106a49190612f8a565b611604565b6040516106b691906135e8565b60405180910390f35b3480156106cb57600080fd5b506106d46116f8565b6040516106e19190613765565b60405180910390f35b3480156106f657600080fd5b50610711600480360381019061070c9190612f5d565b6116fe565b005b34801561071f57600080fd5b506107286117f6565b6040516107359190613765565b60405180910390f35b34801561074a57600080fd5b506107656004803603810190610760919061321d565b6117fc565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061083257507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610842575061084182611882565b5b9050919050565b6108516118ec565b73ffffffffffffffffffffffffffffffffffffffff1661086f610f37565b73ffffffffffffffffffffffffffffffffffffffff16146108c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108bc906136c5565b60405180910390fd5b80600d60006101000a81548160ff02191690831515021790555050565b6060600280546108f190613a47565b80601f016020809104026020016040519081016040528092919081815260200182805461091d90613a47565b801561096a5780601f1061093f5761010080835404028352916020019161096a565b820191906000526020600020905b81548152906001019060200180831161094d57829003601f168201915b5050505050905090565b600061097f826118f4565b6109b5576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006109fb82610d3b565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610a63576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610a826118ec565b73ffffffffffffffffffffffffffffffffffffffff1614158015610ab45750610ab281610aad6118ec565b611604565b155b15610aeb576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610af6838383611942565b505050565b6000610b056119f4565b6001546000540303905090565b6000610b1d826119fd565b9050919050565b610b2f838383611acd565b505050565b600b5481565b610b426118ec565b73ffffffffffffffffffffffffffffffffffffffff16610b60610f37565b73ffffffffffffffffffffffffffffffffffffffff1614610bb6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bad906136c5565b60405180910390fd5b60004790506000610bc56118ec565b73ffffffffffffffffffffffffffffffffffffffff1682604051610be89061356c565b60006040518083038185875af1925050503d8060008114610c25576040519150601f19603f3d011682016040523d82523d6000602084013e610c2a565b606091505b5050905080610c6e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c6590613705565b60405180910390fd5b5050565b610c8d838383604051806020016040528060008152506114e0565b505050565b610c9a6118ec565b73ffffffffffffffffffffffffffffffffffffffff16610cb8610f37565b73ffffffffffffffffffffffffffffffffffffffff1614610d0e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d05906136c5565b60405180910390fd5b8060099080519060200190610d24929190612d19565b5050565b600d60009054906101000a900460ff1681565b6000610d4682611fbe565b600001519050919050565b60098054610d5e90613a47565b80601f0160208091040260200160405190810160405280929190818152602001828054610d8a90613a47565b8015610dd75780601f10610dac57610100808354040283529160200191610dd7565b820191906000526020600020905b815481529060010190602001808311610dba57829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610e47576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b610eb76118ec565b73ffffffffffffffffffffffffffffffffffffffff16610ed5610f37565b73ffffffffffffffffffffffffffffffffffffffff1614610f2b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f22906136c5565b60405180910390fd5b610f35600061224d565b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b610f696118ec565b73ffffffffffffffffffffffffffffffffffffffff16610f87610f37565b73ffffffffffffffffffffffffffffffffffffffff1614610fdd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fd4906136c5565b60405180910390fd5b80600c8190555050565b606060038054610ff690613a47565b80601f016020809104026020016040519081016040528092919081815260200182805461102290613a47565b801561106f5780601f106110445761010080835404028352916020019161106f565b820191906000526020600020905b81548152906001019060200180831161105257829003601f168201915b5050505050905090565b6110816118ec565b73ffffffffffffffffffffffffffffffffffffffff1661109f610f37565b73ffffffffffffffffffffffffffffffffffffffff16146110f5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110ec906136c5565b60405180910390fd5b6111076111006118ec565b6001612313565b565b600c5481565b6000600c54905060016105dc611125919061386a565b8261112e610afb565b611138919061386a565b101561114b57600090506001600a819055505b60006111556118ec565b9050600d60009054906101000a900460ff16156111a7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161119e90613625565b60405180910390fd5b826111b0610afb565b6111ba919061386a565b600b5410156111fe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111f590613725565b60405180910390fd5b60008311611241576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611238906136e5565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff16146112af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112a690613745565b60405180910390fd5b82600a5410156112f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112eb90613665565b60405180910390fd5b34828461130191906138f1565b14611341576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161133890613685565b60405180910390fd5b61134b8184612313565b505050565b6113586118ec565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156113bd576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600760006113ca6118ec565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166114776118ec565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516114bc91906135e8565b60405180910390a35050565b73a5409ec958c83c3f309868babaca7c86dcb077c181565b6114eb848484611acd565b61150a8373ffffffffffffffffffffffffffffffffffffffff16612331565b801561151f575061151d84848484612354565b155b15611556576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b6060611567826118f4565b6115a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161159d906136a5565b60405180910390fd5b6000600980546115b590613a47565b9050116115d157604051806020016040528060008152506115fd565b60096115dc836124b4565b6040516020016115ed92919061353d565b6040516020818303038152906040525b9050919050565b60008073a5409ec958c83c3f309868babaca7c86dcb077c190508273ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1663c4552791866040518263ffffffff1660e01b815260040161166e9190613581565b60206040518083038186803b15801561168657600080fd5b505afa15801561169a573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906116be91906131a7565b73ffffffffffffffffffffffffffffffffffffffff1614156116e45760019150506116f2565b6116ee8484612615565b9150505b92915050565b6105dc81565b6117066118ec565b73ffffffffffffffffffffffffffffffffffffffff16611724610f37565b73ffffffffffffffffffffffffffffffffffffffff161461177a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611771906136c5565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156117ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117e190613645565b60405180910390fd5b6117f38161224d565b50565b600a5481565b6118046118ec565b73ffffffffffffffffffffffffffffffffffffffff16611822610f37565b73ffffffffffffffffffffffffffffffffffffffff1614611878576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161186f906136c5565b60405180910390fd5b80600b8190555050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b6000816118ff6119f4565b1115801561190e575060005482105b801561193b575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006001905090565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611a65576040517f35ebb31900000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160089054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b6000611ad882611fbe565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff16611aff6118ec565b73ffffffffffffffffffffffffffffffffffffffff161480611b325750611b318260000151611b2c6118ec565b611604565b5b80611b775750611b406118ec565b73ffffffffffffffffffffffffffffffffffffffff16611b5f84610974565b73ffffffffffffffffffffffffffffffffffffffff16145b905080611bb0576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614611c19576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611c80576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611c8d85858560016126a9565b611c9d6000848460000151611942565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836004600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166004600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415611f4e57600054811015611f4d5782600001516004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611fb785858560016126af565b5050505050565b611fc6612d9f565b600082905080611fd46119f4565b11158015611fe3575060005481105b15612216576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050806040015161221457600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146120f8578092505050612248565b5b60011561221357818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461220e578092505050612248565b6120f9565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b61232d8282604051806020016040528060008152506126b5565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261237a6118ec565b8786866040518563ffffffff1660e01b815260040161239c949392919061359c565b602060405180830381600087803b1580156123b657600080fd5b505af19250505080156123e757506040513d601f19601f820116820180604052508101906123e4919061317a565b60015b612461573d8060008114612417576040519150601f19603f3d011682016040523d82523d6000602084013e61241c565b606091505b50600081511415612459576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b606060008214156124fc576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612610565b600082905060005b6000821461252e57808061251790613aaa565b915050600a8261252791906138c0565b9150612504565b60008167ffffffffffffffff81111561254a57612549613be0565b5b6040519080825280601f01601f19166020018201604052801561257c5781602001600182028036833780820191505090505b5090505b6000851461260957600182612595919061394b565b9150600a856125a49190613af3565b60306125b0919061386a565b60f81b8183815181106125c6576125c5613bb1565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561260291906138c0565b9450612580565b8093505050505b919050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b50505050565b50505050565b6126c283838360016126c7565b505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415612734576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600084141561276f576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61277c60008683876126a9565b73a5f6d896e8b4d29ac6e5d8c4b26f8d2073ac90ae73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614806128095750736ea8f3b9187df360b0c3e76549b22095acae771b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16145b80612853575073e749e9e7eaa02203c925a036226af80e2c79403e73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16145b8061289d5750734209c04095e0736546ddccb3360ccefa13909d8a73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16145b806128e7575073f8d4454b0a7544b3c13816acd76b93bc94b5d97773ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16145b806129315750735d4b1055a69eadaba6de6c537a17aeb01207dfda73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16145b8061297b575073fd2204757ab46355e60251386f823960acccefe773ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16145b806129c5575073f59eafd5ee67ec7be2fc150069b117b618b0484e73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16145b15612a0057600080600090505b615ecd8110156129fd5781806129e790613aaa565b92505080806129f590613aaa565b9150506129d2565b50505b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060008582019050838015612bca5750612bc98773ffffffffffffffffffffffffffffffffffffffff16612331565b5b15612c90575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612c3f6000888480600101955088612354565b612c75576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80821415612bd0578260005414612c8b57600080fd5b612cfc565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a480821415612c91575b816000819055505050612d1260008683876126af565b5050505050565b828054612d2590613a47565b90600052602060002090601f016020900481019282612d475760008555612d8e565b82601f10612d6057805160ff1916838001178555612d8e565b82800160010185558215612d8e579182015b82811115612d8d578251825591602001919060010190612d72565b5b509050612d9b9190612de2565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b80821115612dfb576000816000905550600101612de3565b5090565b6000612e12612e0d846137a5565b613780565b905082815260208101848484011115612e2e57612e2d613c14565b5b612e39848285613a05565b509392505050565b6000612e54612e4f846137d6565b613780565b905082815260208101848484011115612e7057612e6f613c14565b5b612e7b848285613a05565b509392505050565b600081359050612e9281613e20565b92915050565b600081359050612ea781613e37565b92915050565b600081359050612ebc81613e4e565b92915050565b600081519050612ed181613e4e565b92915050565b600082601f830112612eec57612eeb613c0f565b5b8135612efc848260208601612dff565b91505092915050565b600081519050612f1481613e65565b92915050565b600082601f830112612f2f57612f2e613c0f565b5b8135612f3f848260208601612e41565b91505092915050565b600081359050612f5781613e7c565b92915050565b600060208284031215612f7357612f72613c1e565b5b6000612f8184828501612e83565b91505092915050565b60008060408385031215612fa157612fa0613c1e565b5b6000612faf85828601612e83565b9250506020612fc085828601612e83565b9150509250929050565b600080600060608486031215612fe357612fe2613c1e565b5b6000612ff186828701612e83565b935050602061300286828701612e83565b925050604061301386828701612f48565b9150509250925092565b6000806000806080858703121561303757613036613c1e565b5b600061304587828801612e83565b945050602061305687828801612e83565b935050604061306787828801612f48565b925050606085013567ffffffffffffffff81111561308857613087613c19565b5b61309487828801612ed7565b91505092959194509250565b600080604083850312156130b7576130b6613c1e565b5b60006130c585828601612e83565b92505060206130d685828601612e98565b9150509250929050565b600080604083850312156130f7576130f6613c1e565b5b600061310585828601612e83565b925050602061311685828601612f48565b9150509250929050565b60006020828403121561313657613135613c1e565b5b600061314484828501612e98565b91505092915050565b60006020828403121561316357613162613c1e565b5b600061317184828501612ead565b91505092915050565b6000602082840312156131905761318f613c1e565b5b600061319e84828501612ec2565b91505092915050565b6000602082840312156131bd576131bc613c1e565b5b60006131cb84828501612f05565b91505092915050565b6000602082840312156131ea576131e9613c1e565b5b600082013567ffffffffffffffff81111561320857613207613c19565b5b61321484828501612f1a565b91505092915050565b60006020828403121561323357613232613c1e565b5b600061324184828501612f48565b91505092915050565b6132538161397f565b82525050565b61326281613991565b82525050565b60006132738261381c565b61327d8185613832565b935061328d818560208601613a14565b61329681613c23565b840191505092915050565b60006132ac82613827565b6132b6818561384e565b93506132c6818560208601613a14565b6132cf81613c23565b840191505092915050565b60006132e582613827565b6132ef818561385f565b93506132ff818560208601613a14565b80840191505092915050565b6000815461331881613a47565b613322818661385f565b9450600182166000811461333d576001811461334e57613381565b60ff19831686528186019350613381565b61335785613807565b60005b838110156133795781548189015260018201915060208101905061335a565b838801955050505b50505092915050565b6000613397600d8361384e565b91506133a282613c34565b602082019050919050565b60006133ba60268361384e565b91506133c582613c5d565b604082019050919050565b60006133dd60118361384e565b91506133e882613cac565b602082019050919050565b600061340060108361384e565b915061340b82613cd5565b602082019050919050565b600061342360158361384e565b915061342e82613cfe565b602082019050919050565b600061344660058361385f565b915061345182613d27565b600582019050919050565b600061346960208361384e565b915061347482613d50565b602082019050919050565b600061348c600083613843565b915061349782613d79565b600082019050919050565b60006134af60078361384e565b91506134ba82613d7c565b602082019050919050565b60006134d2600e8361384e565b91506134dd82613da5565b602082019050919050565b60006134f560038361384e565b915061350082613dce565b602082019050919050565b6000613518600d8361384e565b915061352382613df7565b602082019050919050565b613537816139fb565b82525050565b6000613549828561330b565b915061355582846132da565b915061356082613439565b91508190509392505050565b60006135778261347f565b9150819050919050565b6000602082019050613596600083018461324a565b92915050565b60006080820190506135b1600083018761324a565b6135be602083018661324a565b6135cb604083018561352e565b81810360608301526135dd8184613268565b905095945050505050565b60006020820190506135fd6000830184613259565b92915050565b6000602082019050818103600083015261361d81846132a1565b905092915050565b6000602082019050818103600083015261363e8161338a565b9050919050565b6000602082019050818103600083015261365e816133ad565b9050919050565b6000602082019050818103600083015261367e816133d0565b9050919050565b6000602082019050818103600083015261369e816133f3565b9050919050565b600060208201905081810360008301526136be81613416565b9050919050565b600060208201905081810360008301526136de8161345c565b9050919050565b600060208201905081810360008301526136fe816134a2565b9050919050565b6000602082019050818103600083015261371e816134c5565b9050919050565b6000602082019050818103600083015261373e816134e8565b9050919050565b6000602082019050818103600083015261375e8161350b565b9050919050565b600060208201905061377a600083018461352e565b92915050565b600061378a61379b565b90506137968282613a79565b919050565b6000604051905090565b600067ffffffffffffffff8211156137c0576137bf613be0565b5b6137c982613c23565b9050602081019050919050565b600067ffffffffffffffff8211156137f1576137f0613be0565b5b6137fa82613c23565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000613875826139fb565b9150613880836139fb565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156138b5576138b4613b24565b5b828201905092915050565b60006138cb826139fb565b91506138d6836139fb565b9250826138e6576138e5613b53565b5b828204905092915050565b60006138fc826139fb565b9150613907836139fb565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156139405761393f613b24565b5b828202905092915050565b6000613956826139fb565b9150613961836139fb565b92508282101561397457613973613b24565b5b828203905092915050565b600061398a826139db565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b60006139d48261397f565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613a32578082015181840152602081019050613a17565b83811115613a41576000848401525b50505050565b60006002820490506001821680613a5f57607f821691505b60208210811415613a7357613a72613b82565b5b50919050565b613a8282613c23565b810181811067ffffffffffffffff82111715613aa157613aa0613be0565b5b80604052505050565b6000613ab5826139fb565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613ae857613ae7613b24565b5b600182019050919050565b6000613afe826139fb565b9150613b09836139fb565b925082613b1957613b18613b53565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f53616c65204e6f74204c69766500000000000000000000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f457863657373206d617820706572207478000000000000000000000000000000600082015250565b7f57726f6e672065746820616d6f756e7400000000000000000000000000000000600082015250565b7f546f6b656e20646f6573206e6f742065786973742e0000000000000000000000600082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b50565b7f496e76616c696400000000000000000000000000000000000000000000000000600082015250565b7f4661696c656420746f2073656e64000000000000000000000000000000000000600082015250565b7f4f4f530000000000000000000000000000000000000000000000000000000000600082015250565b7f4d696e7420596f757273656c6600000000000000000000000000000000000000600082015250565b613e298161397f565b8114613e3457600080fd5b50565b613e4081613991565b8114613e4b57600080fd5b50565b613e578161399d565b8114613e6257600080fd5b50565b613e6e816139c9565b8114613e7957600080fd5b50565b613e85816139fb565b8114613e9057600080fd5b5056fea264697066735822122092f8391dd3feaf5cfa1f780855180fd97d60e4f3a1fefcfa8e93d501283ead6664736f6c63430008070033

Deployed Bytecode Sourcemap

46418:2695:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28215:305;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48572:81;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;31600:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33103:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32666:371;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;27464:303;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47959:109;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33960:170;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46669:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48076:209;;;;;;;;;;;;;:::i;:::-;;34201:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48661:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46751:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31409:124;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46464:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28584:206;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2689:103;;;;;;;;;;;;;:::i;:::-;;2038:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48478:86;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;31769:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48293:81;;;;;;;;;;;;;:::i;:::-;;46708:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46838:625;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33379:279;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46499:78;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34457:369;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48769:341;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47580:371;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46584:39;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2947:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46632:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48382:88;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;28215:305;28317:4;28369:25;28354:40;;;:11;:40;;;;:105;;;;28426:33;28411:48;;;:11;:48;;;;28354:105;:158;;;;28476:36;28500:11;28476:23;:36::i;:::-;28354:158;28334:178;;28215:305;;;:::o;48572:81::-;2269:12;:10;:12::i;:::-;2258:23;;:7;:5;:7::i;:::-;:23;;;2250:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;48639:6:::1;48630;;:15;;;;;;;;;;;;;;;;;;48572:81:::0;:::o;31600:100::-;31654:13;31687:5;31680:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31600:100;:::o;33103:204::-;33171:7;33196:16;33204:7;33196;:16::i;:::-;33191:64;;33221:34;;;;;;;;;;;;;;33191:64;33275:15;:24;33291:7;33275:24;;;;;;;;;;;;;;;;;;;;;33268:31;;33103:204;;;:::o;32666:371::-;32739:13;32755:24;32771:7;32755:15;:24::i;:::-;32739:40;;32800:5;32794:11;;:2;:11;;;32790:48;;;32814:24;;;;;;;;;;;;;;32790:48;32871:5;32855:21;;:12;:10;:12::i;:::-;:21;;;;:63;;;;;32881:37;32898:5;32905:12;:10;:12::i;:::-;32881:16;:37::i;:::-;32880:38;32855:63;32851:138;;;32942:35;;;;;;;;;;;;;;32851:138;33001:28;33010:2;33014:7;33023:5;33001:8;:28::i;:::-;32728:309;32666:371;;:::o;27464:303::-;27508:7;27733:15;:13;:15::i;:::-;27718:12;;27702:13;;:28;:46;27695:53;;27464:303;:::o;47959:109::-;48012:7;48039:21;48053:6;48039:13;:21::i;:::-;48032:28;;47959:109;;;:::o;33960:170::-;34094:28;34104:4;34110:2;34114:7;34094:9;:28::i;:::-;33960:170;;;:::o;46669:32::-;;;;:::o;48076:209::-;2269:12;:10;:12::i;:::-;2258:23;;:7;:5;:7::i;:::-;:23;;;2250:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;48126:15:::1;48144:21;48126:39;;48177:12;48195;:10;:12::i;:::-;:17;;48220:7;48195:37;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48176:56;;;48251:7;48243:34;;;;;;;;;;;;:::i;:::-;;;;;;;;;48115:170;;48076:209::o:0;34201:185::-;34339:39;34356:4;34362:2;34366:7;34339:39;;;;;;;;;;;;:16;:39::i;:::-;34201:185;;;:::o;48661:100::-;2269:12;:10;:12::i;:::-;2258:23;;:7;:5;:7::i;:::-;:23;;;2250:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;48745:8:::1;48735:7;:18;;;;;;;;;;;;:::i;:::-;;48661:100:::0;:::o;46751:26::-;;;;;;;;;;;;;:::o;31409:124::-;31473:7;31500:20;31512:7;31500:11;:20::i;:::-;:25;;;31493:32;;31409:124;;;:::o;46464:26::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;28584:206::-;28648:7;28689:1;28672:19;;:5;:19;;;28668:60;;;28700:28;;;;;;;;;;;;;;28668:60;28754:12;:19;28767:5;28754:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;28746:36;;28739:43;;28584:206;;;:::o;2689:103::-;2269:12;:10;:12::i;:::-;2258:23;;:7;:5;:7::i;:::-;:23;;;2250:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2754:30:::1;2781:1;2754:18;:30::i;:::-;2689:103::o:0;2038:87::-;2084:7;2111:6;;;;;;;;;;;2104:13;;2038:87;:::o;48478:86::-;2269:12;:10;:12::i;:::-;2258:23;;:7;:5;:7::i;:::-;:23;;;2250:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;48550:6:::1;48542:5;:14;;;;48478:86:::0;:::o;31769:104::-;31825:13;31858:7;31851:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31769:104;:::o;48293:81::-;2269:12;:10;:12::i;:::-;2258:23;;:7;:5;:7::i;:::-;:23;;;2250:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;48340:26:::1;48350:12;:10;:12::i;:::-;48364:1;48340:9;:26::i;:::-;48293:81::o:0;46708:34::-;;;;:::o;46838:625::-;46903:9;46915:5;;46903:17;;46971:1;46619:4;46960:12;;;;:::i;:::-;46950:7;46934:13;:11;:13::i;:::-;:23;;;;:::i;:::-;:38;46931:107;;;46996:1;46989:8;;47025:1;47012:10;:14;;;;46931:107;47048:15;47066:12;:10;:12::i;:::-;47048:30;;47098:6;;;;;;;;;;;47097:7;47089:33;;;;;;;;;;;;:::i;:::-;;;;;;;;;47171:7;47155:13;:11;:13::i;:::-;:23;;;;:::i;:::-;47141:10;;:37;;47133:53;;;;;;;;;;;;:::i;:::-;;;;;;;;;47215:1;47205:7;:11;47197:31;;;;;;;;;;;;:::i;:::-;;;;;;;;;47260:7;47247:20;;:9;:20;;;47239:46;;;;;;;;;;;;:::i;:::-;;;;;;;;;47318:7;47304:10;;:21;;47296:52;;;;;;;;;;;;:::i;:::-;;;;;;;;;47385:9;47377:4;47367:7;:14;;;;:::i;:::-;:27;47359:56;;;;;;;;;;;;:::i;:::-;;;;;;;;;47428:27;47438:7;47447;47428:9;:27::i;:::-;46892:571;;46838:625;:::o;33379:279::-;33482:12;:10;:12::i;:::-;33470:24;;:8;:24;;;33466:54;;;33503:17;;;;;;;;;;;;;;33466:54;33578:8;33533:18;:32;33552:12;:10;:12::i;:::-;33533:32;;;;;;;;;;;;;;;:42;33566:8;33533:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;33631:8;33602:48;;33617:12;:10;:12::i;:::-;33602:48;;;33641:8;33602:48;;;;;;:::i;:::-;;;;;;;;33379:279;;:::o;46499:78::-;46535:42;46499:78;:::o;34457:369::-;34624:28;34634:4;34640:2;34644:7;34624:9;:28::i;:::-;34667:15;:2;:13;;;:15::i;:::-;:76;;;;;34687:56;34718:4;34724:2;34728:7;34737:5;34687:30;:56::i;:::-;34686:57;34667:76;34663:156;;;34767:40;;;;;;;;;;;;;;34663:156;34457:369;;;;:::o;48769:341::-;48835:13;48869:17;48877:8;48869:7;:17::i;:::-;48861:51;;;;;;;;;;;;:::i;:::-;;;;;;;;;48954:1;48936:7;48930:21;;;;;:::i;:::-;;;:25;:172;;;;;;;;;;;;;;;;;49012:7;49036:26;49053:8;49036:16;:26::i;:::-;48979:107;;;;;;;;;:::i;:::-;;;;;;;;;;;;;48930:172;48923:179;;48769:341;;;:::o;47580:371::-;47705:4;47727:27;46535:42;47727:54;;47837:8;47796:49;;47804:13;:21;;;47826:5;47804:28;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;47796:49;;;47792:93;;;47869:4;47862:11;;;;;47792:93;47904:39;47927:5;47934:8;47904:22;:39::i;:::-;47897:46;;;47580:371;;;;;:::o;46584:39::-;46619:4;46584:39;:::o;2947:201::-;2269:12;:10;:12::i;:::-;2258:23;;:7;:5;:7::i;:::-;:23;;;2250:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;3056:1:::1;3036:22;;:8;:22;;;;3028:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;3112:28;3131:8;3112:18;:28::i;:::-;2947:201:::0;:::o;46632:30::-;;;;:::o;48382:88::-;2269:12;:10;:12::i;:::-;2258:23;;:7;:5;:7::i;:::-;:23;;;2250:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;48458:4:::1;48445:10;:17;;;;48382:88:::0;:::o;23596:157::-;23681:4;23720:25;23705:40;;;:11;:40;;;;23698:47;;23596:157;;;:::o;779:98::-;832:7;859:10;852:17;;779:98;:::o;35081:187::-;35138:4;35181:7;35162:15;:13;:15::i;:::-;:26;;:53;;;;;35202:13;;35192:7;:23;35162:53;:98;;;;;35233:11;:20;35245:7;35233:20;;;;;;;;;;;:27;;;;;;;;;;;;35232:28;35162:98;35155:105;;35081:187;;;:::o;43397:196::-;43539:2;43512:15;:24;43528:7;43512:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;43577:7;43573:2;43557:28;;43566:5;43557:28;;;;;;;;;;;;43397:196;;;:::o;47471:101::-;47536:7;47563:1;47556:8;;47471:101;:::o;28872:207::-;28933:7;28974:1;28957:19;;:5;:19;;;28953:59;;;28985:27;;;;;;;;;;;;;;28953:59;29038:12;:19;29051:5;29038:19;;;;;;;;;;;;;;;:32;;;;;;;;;;;;29030:41;;29023:48;;28872:207;;;:::o;38899:2112::-;39014:35;39052:20;39064:7;39052:11;:20::i;:::-;39014:58;;39085:22;39127:13;:18;;;39111:34;;:12;:10;:12::i;:::-;:34;;;:101;;;;39162:50;39179:13;:18;;;39199:12;:10;:12::i;:::-;39162:16;:50::i;:::-;39111:101;:154;;;;39253:12;:10;:12::i;:::-;39229:36;;:20;39241:7;39229:11;:20::i;:::-;:36;;;39111:154;39085:181;;39284:17;39279:66;;39310:35;;;;;;;;;;;;;;39279:66;39382:4;39360:26;;:13;:18;;;:26;;;39356:67;;39395:28;;;;;;;;;;;;;;39356:67;39452:1;39438:16;;:2;:16;;;39434:52;;;39463:23;;;;;;;;;;;;;;39434:52;39499:43;39521:4;39527:2;39531:7;39540:1;39499:21;:43::i;:::-;39607:49;39624:1;39628:7;39637:13;:18;;;39607:8;:49::i;:::-;39982:1;39952:12;:18;39965:4;39952:18;;;;;;;;;;;;;;;:26;;;:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40026:1;39998:12;:16;40011:2;39998:16;;;;;;;;;;;;;;;:24;;;:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40072:2;40044:11;:20;40056:7;40044:20;;;;;;;;;;;:25;;;:30;;;;;;;;;;;;;;;;;;40134:15;40089:11;:20;40101:7;40089:20;;;;;;;;;;;:35;;;:61;;;;;;;;;;;;;;;;;;40402:19;40434:1;40424:7;:11;40402:33;;40495:1;40454:43;;:11;:24;40466:11;40454:24;;;;;;;;;;;:29;;;;;;;;;;;;:43;;;40450:445;;;40679:13;;40665:11;:27;40661:219;;;40749:13;:18;;;40717:11;:24;40729:11;40717:24;;;;;;;;;;;:29;;;:50;;;;;;;;;;;;;;;;;;40832:13;:28;;;40790:11;:24;40802:11;40790:24;;;;;;;;;;;:39;;;:70;;;;;;;;;;;;;;;;;;40661:219;40450:445;39927:979;40942:7;40938:2;40923:27;;40932:4;40923:27;;;;;;;;;;;;40961:42;40982:4;40988:2;40992:7;41001:1;40961:20;:42::i;:::-;39003:2008;;38899:2112;;;:::o;30239:1108::-;30300:21;;:::i;:::-;30334:12;30349:7;30334:22;;30417:4;30398:15;:13;:15::i;:::-;:23;;:47;;;;;30432:13;;30425:4;:20;30398:47;30394:886;;;30466:31;30500:11;:17;30512:4;30500:17;;;;;;;;;;;30466:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30541:9;:16;;;30536:729;;30612:1;30586:28;;:9;:14;;;:28;;;30582:101;;30650:9;30643:16;;;;;;30582:101;30985:261;30992:4;30985:261;;;31025:6;;;;;;;;31070:11;:17;31082:4;31070:17;;;;;;;;;;;31058:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31144:1;31118:28;;:9;:14;;;:28;;;31114:109;;31186:9;31179:16;;;;;;31114:109;30985:261;;;30536:729;30447:833;30394:886;31308:31;;;;;;;;;;;;;;30239:1108;;;;:::o;3308:191::-;3382:16;3401:6;;;;;;;;;;;3382:25;;3427:8;3418:6;;:17;;;;;;;;;;;;;;;;;;3482:8;3451:40;;3472:8;3451:40;;;;;;;;;;;;3371:128;3308:191;:::o;35276:104::-;35345:27;35355:2;35359:8;35345:27;;;;;;;;;;;;:9;:27::i;:::-;35276:104;;:::o;13369:326::-;13429:4;13686:1;13664:7;:19;;;:23;13657:30;;13369:326;;;:::o;44085:667::-;44248:4;44285:2;44269:36;;;44306:12;:10;:12::i;:::-;44320:4;44326:7;44335:5;44269:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;44265:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44520:1;44503:6;:13;:18;44499:235;;;44549:40;;;;;;;;;;;;;;44499:235;44692:6;44686:13;44677:6;44673:2;44669:15;44662:38;44265:480;44398:45;;;44388:55;;;:6;:55;;;;44381:62;;;44085:667;;;;;;:::o;20989:723::-;21045:13;21275:1;21266:5;:10;21262:53;;;21293:10;;;;;;;;;;;;;;;;;;;;;21262:53;21325:12;21340:5;21325:20;;21356:14;21381:78;21396:1;21388:4;:9;21381:78;;21414:8;;;;;:::i;:::-;;;;21445:2;21437:10;;;;;:::i;:::-;;;21381:78;;;21469:19;21501:6;21491:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21469:39;;21519:154;21535:1;21526:5;:10;21519:154;;21563:1;21553:11;;;;;:::i;:::-;;;21630:2;21622:5;:10;;;;:::i;:::-;21609:2;:24;;;;:::i;:::-;21596:39;;21579:6;21586;21579:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;21659:2;21650:11;;;;;:::i;:::-;;;21519:154;;;21697:6;21683:21;;;;;20989:723;;;;:::o;33729:164::-;33826:4;33850:18;:25;33869:5;33850:25;;;;;;;;;;;;;;;:35;33876:8;33850:35;;;;;;;;;;;;;;;;;;;;;;;;;33843:42;;33729:164;;;;:::o;45400:159::-;;;;;:::o;46218:158::-;;;;;:::o;35743:163::-;35866:32;35872:2;35876:8;35886:5;35893:4;35866:5;:32::i;:::-;35743:163;;;:::o;36165:2480::-;36304:20;36327:13;;36304:36;;36369:1;36355:16;;:2;:16;;;36351:48;;;36380:19;;;;;;;;;;;;;;36351:48;36426:1;36414:8;:13;36410:44;;;36436:18;;;;;;;;;;;;;;36410:44;36467:61;36497:1;36501:2;36505:12;36519:8;36467:21;:61::i;:::-;36594:42;36588:48;;:2;:48;;;:113;;;;36659:42;36653:48;;:2;:48;;;36588:113;:178;;;;36724:42;36718:48;;:2;:48;;;36588:178;:243;;;;36789:42;36783:48;;:2;:48;;;36588:243;:308;;;;36854:42;36848:48;;:2;:48;;;36588:308;:373;;;;36919:42;36913:48;;:2;:48;;;36588:373;:438;;;;36984:42;36978:48;;:2;:48;;;36588:438;:503;;;;37049:42;37043:48;;:2;:48;;;36588:503;36571:663;;;37117:15;37152:6;37161:1;37152:10;;37147:76;37168:5;37164:1;:9;37147:76;;;37198:9;;;;;:::i;:::-;;;;37175:3;;;;;:::i;:::-;;;;37147:76;;;;37102:132;36571:663;37545:8;37510:12;:16;37523:2;37510:16;;;;;;;;;;;;;;;:24;;;:44;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37609:8;37569:12;:16;37582:2;37569:16;;;;;;;;;;;;;;;:29;;;:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37668:2;37635:11;:25;37647:12;37635:25;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;37735:15;37685:11;:25;37697:12;37685:25;;;;;;;;;;;:40;;;:66;;;;;;;;;;;;;;;;;;37768:20;37791:12;37768:35;;37818:11;37847:8;37832:12;:23;37818:37;;37876:4;:23;;;;;37884:15;:2;:13;;;:15::i;:::-;37876:23;37872:641;;;37920:314;37976:12;37972:2;37951:38;;37968:1;37951:38;;;;;;;;;;;;38017:69;38056:1;38060:2;38064:14;;;;;;38080:5;38017:30;:69::i;:::-;38012:174;;38122:40;;;;;;;;;;;;;;38012:174;38229:3;38213:12;:19;;37920:314;;38315:12;38298:13;;:29;38294:43;;38329:8;;;38294:43;37872:641;;;38378:120;38434:14;;;;;;38430:2;38409:40;;38426:1;38409:40;;;;;;;;;;;;38493:3;38477:12;:19;;38378:120;;37872:641;38543:12;38527:13;:28;;;;37485:1082;;38577:60;38606:1;38610:2;38614:12;38628:8;38577:20;:60::i;:::-;36293:2352;36165:2480;;;;:::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:366::-;10484:3;10505:67;10569:2;10564:3;10505:67;:::i;:::-;10498:74;;10581:93;10670:3;10581:93;:::i;:::-;10699:2;10694:3;10690:12;10683:19;;10342:366;;;:::o;10714:::-;10856:3;10877:67;10941:2;10936:3;10877:67;:::i;:::-;10870:74;;10953:93;11042:3;10953:93;:::i;:::-;11071:2;11066:3;11062:12;11055:19;;10714:366;;;:::o;11086:::-;11228:3;11249:67;11313:2;11308:3;11249:67;:::i;:::-;11242:74;;11325:93;11414:3;11325:93;:::i;:::-;11443:2;11438:3;11434:12;11427:19;;11086:366;;;:::o;11458:::-;11600:3;11621:67;11685:2;11680:3;11621:67;:::i;:::-;11614:74;;11697:93;11786:3;11697:93;:::i;:::-;11815:2;11810:3;11806:12;11799:19;;11458:366;;;:::o;11830:::-;11972:3;11993:67;12057:2;12052:3;11993:67;:::i;:::-;11986:74;;12069:93;12158:3;12069:93;:::i;:::-;12187:2;12182:3;12178:12;12171:19;;11830:366;;;:::o;12202:400::-;12362:3;12383:84;12465:1;12460:3;12383:84;:::i;:::-;12376:91;;12476:93;12565:3;12476:93;:::i;:::-;12594:1;12589:3;12585:11;12578:18;;12202:400;;;:::o;12608:366::-;12750:3;12771:67;12835:2;12830:3;12771:67;:::i;:::-;12764:74;;12847:93;12936:3;12847:93;:::i;:::-;12965:2;12960:3;12956:12;12949:19;;12608:366;;;:::o;12980:398::-;13139:3;13160:83;13241:1;13236:3;13160:83;:::i;:::-;13153:90;;13252:93;13341:3;13252:93;:::i;:::-;13370:1;13365:3;13361:11;13354:18;;12980:398;;;:::o;13384:365::-;13526:3;13547:66;13611:1;13606:3;13547:66;:::i;:::-;13540:73;;13622:93;13711:3;13622:93;:::i;:::-;13740:2;13735:3;13731:12;13724:19;;13384:365;;;:::o;13755:366::-;13897:3;13918:67;13982:2;13977:3;13918:67;:::i;:::-;13911:74;;13994:93;14083:3;13994:93;:::i;:::-;14112:2;14107:3;14103:12;14096:19;;13755:366;;;:::o;14127:365::-;14269:3;14290:66;14354:1;14349:3;14290:66;:::i;:::-;14283:73;;14365:93;14454:3;14365:93;:::i;:::-;14483:2;14478:3;14474:12;14467:19;;14127:365;;;:::o;14498:366::-;14640:3;14661:67;14725:2;14720:3;14661:67;:::i;:::-;14654:74;;14737:93;14826:3;14737:93;:::i;:::-;14855:2;14850:3;14846:12;14839:19;;14498:366;;;:::o;14870:118::-;14957:24;14975:5;14957:24;:::i;:::-;14952:3;14945:37;14870:118;;:::o;14994:695::-;15272:3;15294:92;15382:3;15373:6;15294:92;:::i;:::-;15287:99;;15403:95;15494:3;15485:6;15403:95;:::i;:::-;15396:102;;15515:148;15659:3;15515:148;:::i;:::-;15508:155;;15680:3;15673:10;;14994:695;;;;;:::o;15695:379::-;15879:3;15901:147;16044:3;15901:147;:::i;:::-;15894:154;;16065:3;16058:10;;15695:379;;;:::o;16080:222::-;16173:4;16211:2;16200:9;16196:18;16188:26;;16224:71;16292:1;16281:9;16277:17;16268:6;16224:71;:::i;:::-;16080:222;;;;:::o;16308:640::-;16503:4;16541:3;16530:9;16526:19;16518:27;;16555:71;16623:1;16612:9;16608:17;16599:6;16555:71;:::i;:::-;16636:72;16704:2;16693:9;16689:18;16680:6;16636:72;:::i;:::-;16718;16786:2;16775:9;16771:18;16762:6;16718:72;:::i;:::-;16837:9;16831:4;16827:20;16822:2;16811:9;16807:18;16800:48;16865:76;16936:4;16927:6;16865:76;:::i;:::-;16857:84;;16308:640;;;;;;;:::o;16954:210::-;17041:4;17079:2;17068:9;17064:18;17056:26;;17092:65;17154:1;17143:9;17139:17;17130:6;17092:65;:::i;:::-;16954:210;;;;:::o;17170:313::-;17283:4;17321:2;17310:9;17306:18;17298:26;;17370:9;17364:4;17360:20;17356:1;17345:9;17341:17;17334:47;17398:78;17471:4;17462:6;17398:78;:::i;:::-;17390:86;;17170:313;;;;:::o;17489:419::-;17655:4;17693:2;17682:9;17678:18;17670:26;;17742:9;17736:4;17732:20;17728:1;17717:9;17713:17;17706:47;17770:131;17896:4;17770:131;:::i;:::-;17762:139;;17489:419;;;:::o;17914:::-;18080:4;18118:2;18107:9;18103:18;18095:26;;18167:9;18161:4;18157:20;18153:1;18142:9;18138:17;18131:47;18195:131;18321:4;18195:131;:::i;:::-;18187:139;;17914:419;;;:::o;18339:::-;18505:4;18543:2;18532:9;18528:18;18520:26;;18592:9;18586:4;18582:20;18578:1;18567:9;18563:17;18556:47;18620:131;18746:4;18620:131;:::i;:::-;18612:139;;18339:419;;;:::o;18764:::-;18930:4;18968:2;18957:9;18953:18;18945:26;;19017:9;19011:4;19007:20;19003:1;18992:9;18988:17;18981:47;19045:131;19171:4;19045:131;:::i;:::-;19037:139;;18764:419;;;:::o;19189:::-;19355:4;19393:2;19382:9;19378:18;19370:26;;19442:9;19436:4;19432:20;19428:1;19417:9;19413:17;19406:47;19470:131;19596:4;19470:131;:::i;:::-;19462:139;;19189:419;;;:::o;19614:::-;19780:4;19818:2;19807:9;19803:18;19795:26;;19867:9;19861:4;19857:20;19853:1;19842:9;19838:17;19831:47;19895:131;20021:4;19895:131;:::i;:::-;19887:139;;19614:419;;;:::o;20039:::-;20205:4;20243:2;20232:9;20228:18;20220:26;;20292:9;20286:4;20282:20;20278:1;20267:9;20263:17;20256:47;20320:131;20446:4;20320:131;:::i;:::-;20312:139;;20039:419;;;:::o;20464:::-;20630:4;20668:2;20657:9;20653:18;20645:26;;20717:9;20711:4;20707:20;20703:1;20692:9;20688:17;20681:47;20745:131;20871:4;20745:131;:::i;:::-;20737:139;;20464:419;;;:::o;20889:::-;21055:4;21093:2;21082:9;21078:18;21070:26;;21142:9;21136:4;21132:20;21128:1;21117:9;21113:17;21106:47;21170:131;21296:4;21170:131;:::i;:::-;21162:139;;20889:419;;;:::o;21314:::-;21480:4;21518:2;21507:9;21503:18;21495:26;;21567:9;21561:4;21557:20;21553:1;21542:9;21538:17;21531:47;21595:131;21721:4;21595:131;:::i;:::-;21587:139;;21314:419;;;:::o;21739:222::-;21832:4;21870:2;21859:9;21855:18;21847:26;;21883:71;21951:1;21940:9;21936:17;21927:6;21883:71;:::i;:::-;21739:222;;;;:::o;21967:129::-;22001:6;22028:20;;:::i;:::-;22018:30;;22057:33;22085:4;22077:6;22057:33;:::i;:::-;21967:129;;;:::o;22102:75::-;22135:6;22168:2;22162:9;22152:19;;22102:75;:::o;22183:307::-;22244:4;22334:18;22326:6;22323:30;22320:56;;;22356:18;;:::i;:::-;22320:56;22394:29;22416:6;22394:29;:::i;:::-;22386:37;;22478:4;22472;22468:15;22460:23;;22183:307;;;:::o;22496:308::-;22558:4;22648:18;22640:6;22637:30;22634:56;;;22670:18;;:::i;:::-;22634:56;22708:29;22730:6;22708:29;:::i;:::-;22700:37;;22792:4;22786;22782:15;22774:23;;22496:308;;;:::o;22810:141::-;22859:4;22882:3;22874:11;;22905:3;22902:1;22895:14;22939:4;22936:1;22926:18;22918:26;;22810:141;;;:::o;22957:98::-;23008:6;23042:5;23036:12;23026:22;;22957:98;;;:::o;23061:99::-;23113:6;23147:5;23141:12;23131:22;;23061:99;;;:::o;23166:168::-;23249:11;23283:6;23278:3;23271:19;23323:4;23318:3;23314:14;23299:29;;23166:168;;;;:::o;23340:147::-;23441:11;23478:3;23463:18;;23340:147;;;;:::o;23493:169::-;23577:11;23611:6;23606:3;23599:19;23651:4;23646:3;23642:14;23627:29;;23493:169;;;;:::o;23668:148::-;23770:11;23807:3;23792:18;;23668:148;;;;:::o;23822:305::-;23862:3;23881:20;23899:1;23881:20;:::i;:::-;23876:25;;23915:20;23933:1;23915:20;:::i;:::-;23910:25;;24069:1;24001:66;23997:74;23994:1;23991:81;23988:107;;;24075:18;;:::i;:::-;23988:107;24119:1;24116;24112:9;24105:16;;23822:305;;;;:::o;24133:185::-;24173:1;24190:20;24208:1;24190:20;:::i;:::-;24185:25;;24224:20;24242:1;24224:20;:::i;:::-;24219:25;;24263:1;24253:35;;24268:18;;:::i;:::-;24253:35;24310:1;24307;24303:9;24298:14;;24133:185;;;;:::o;24324:348::-;24364:7;24387:20;24405:1;24387:20;:::i;:::-;24382:25;;24421:20;24439:1;24421:20;:::i;:::-;24416:25;;24609:1;24541:66;24537:74;24534:1;24531:81;24526:1;24519:9;24512:17;24508:105;24505:131;;;24616:18;;:::i;:::-;24505:131;24664:1;24661;24657:9;24646:20;;24324:348;;;;:::o;24678:191::-;24718:4;24738:20;24756:1;24738:20;:::i;:::-;24733:25;;24772:20;24790:1;24772:20;:::i;:::-;24767:25;;24811:1;24808;24805:8;24802:34;;;24816:18;;:::i;:::-;24802:34;24861:1;24858;24854:9;24846:17;;24678:191;;;;:::o;24875:96::-;24912:7;24941:24;24959:5;24941:24;:::i;:::-;24930:35;;24875:96;;;:::o;24977:90::-;25011:7;25054:5;25047:13;25040:21;25029:32;;24977:90;;;:::o;25073:149::-;25109:7;25149:66;25142:5;25138:78;25127:89;;25073:149;;;:::o;25228:125::-;25294:7;25323:24;25341:5;25323:24;:::i;:::-;25312:35;;25228:125;;;:::o;25359:126::-;25396:7;25436:42;25429:5;25425:54;25414:65;;25359:126;;;:::o;25491:77::-;25528:7;25557:5;25546:16;;25491:77;;;:::o;25574:154::-;25658:6;25653:3;25648;25635:30;25720:1;25711:6;25706:3;25702:16;25695:27;25574:154;;;:::o;25734:307::-;25802:1;25812:113;25826:6;25823:1;25820:13;25812:113;;;25911:1;25906:3;25902:11;25896:18;25892:1;25887:3;25883:11;25876:39;25848:2;25845:1;25841:10;25836:15;;25812:113;;;25943:6;25940:1;25937:13;25934:101;;;26023:1;26014:6;26009:3;26005:16;25998:27;25934:101;25783:258;25734:307;;;:::o;26047:320::-;26091:6;26128:1;26122:4;26118:12;26108:22;;26175:1;26169:4;26165:12;26196:18;26186:81;;26252:4;26244:6;26240:17;26230:27;;26186:81;26314:2;26306:6;26303:14;26283:18;26280:38;26277:84;;;26333:18;;:::i;:::-;26277:84;26098:269;26047:320;;;:::o;26373:281::-;26456:27;26478:4;26456:27;:::i;:::-;26448:6;26444:40;26586:6;26574:10;26571:22;26550:18;26538:10;26535:34;26532:62;26529:88;;;26597:18;;:::i;:::-;26529:88;26637:10;26633:2;26626:22;26416:238;26373:281;;:::o;26660:233::-;26699:3;26722:24;26740:5;26722:24;:::i;:::-;26713:33;;26768:66;26761:5;26758:77;26755:103;;;26838:18;;:::i;:::-;26755:103;26885:1;26878:5;26874:13;26867:20;;26660:233;;;:::o;26899:176::-;26931:1;26948:20;26966:1;26948:20;:::i;:::-;26943:25;;26982:20;27000:1;26982:20;:::i;:::-;26977:25;;27021:1;27011:35;;27026:18;;:::i;:::-;27011:35;27067:1;27064;27060:9;27055:14;;26899:176;;;;:::o;27081:180::-;27129:77;27126:1;27119:88;27226:4;27223:1;27216:15;27250:4;27247:1;27240:15;27267:180;27315:77;27312:1;27305:88;27412:4;27409:1;27402:15;27436:4;27433:1;27426:15;27453:180;27501:77;27498:1;27491:88;27598:4;27595:1;27588:15;27622:4;27619:1;27612:15;27639:180;27687:77;27684:1;27677:88;27784:4;27781:1;27774:15;27808:4;27805:1;27798:15;27825:180;27873:77;27870:1;27863:88;27970:4;27967:1;27960:15;27994:4;27991:1;27984:15;28011:117;28120:1;28117;28110:12;28134:117;28243:1;28240;28233:12;28257:117;28366:1;28363;28356:12;28380:117;28489:1;28486;28479:12;28503:102;28544:6;28595:2;28591:7;28586:2;28579:5;28575:14;28571:28;28561:38;;28503:102;;;:::o;28611:163::-;28751:15;28747:1;28739:6;28735:14;28728:39;28611:163;:::o;28780:225::-;28920:34;28916:1;28908:6;28904:14;28897:58;28989:8;28984:2;28976:6;28972:15;28965:33;28780:225;:::o;29011:167::-;29151:19;29147:1;29139:6;29135:14;29128:43;29011:167;:::o;29184:166::-;29324:18;29320:1;29312:6;29308:14;29301:42;29184:166;:::o;29356:171::-;29496:23;29492:1;29484:6;29480:14;29473:47;29356:171;:::o;29533:155::-;29673:7;29669:1;29661:6;29657:14;29650:31;29533:155;:::o;29694:182::-;29834:34;29830:1;29822:6;29818:14;29811:58;29694:182;:::o;29882:114::-;;:::o;30002:157::-;30142:9;30138:1;30130:6;30126:14;30119:33;30002:157;:::o;30165:164::-;30305:16;30301:1;30293:6;30289:14;30282:40;30165:164;:::o;30335:153::-;30475:5;30471:1;30463:6;30459:14;30452:29;30335:153;:::o;30494:163::-;30634:15;30630:1;30622:6;30618:14;30611:39;30494:163;:::o;30663:122::-;30736:24;30754:5;30736:24;:::i;:::-;30729:5;30726:35;30716:63;;30775:1;30772;30765:12;30716:63;30663:122;:::o;30791:116::-;30861:21;30876:5;30861:21;:::i;:::-;30854:5;30851:32;30841:60;;30897:1;30894;30887:12;30841:60;30791:116;:::o;30913:120::-;30985:23;31002:5;30985:23;:::i;:::-;30978:5;30975:34;30965:62;;31023:1;31020;31013:12;30965:62;30913:120;:::o;31039:180::-;31141:53;31188:5;31141:53;:::i;:::-;31134:5;31131:64;31121:92;;31209:1;31206;31199:12;31121:92;31039:180;:::o;31225:122::-;31298:24;31316:5;31298:24;:::i;:::-;31291:5;31288:35;31278:63;;31337:1;31334;31327:12;31278:63;31225:122;:::o

Swarm Source

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