ETH Price: $2,386.71 (-0.11%)

Token

PSYCOC (PSC)
 

Overview

Max Total Supply

11,111 PSC

Holders

763

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
20 PSC
0x0c70c309536dE9Aa4957cc78483fAeD8B51534C3
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:
NFT_Contract

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// File: @openzeppelin/contracts/utils/cryptography/MerkleProof.sol


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

pragma solidity ^0.8.0;

/**
 * @dev These functions deal with verification of Merkle Trees proofs.
 *
 * The proofs can be generated using the JavaScript library
 * https://github.com/miguelmota/merkletreejs[merkletreejs].
 * Note: the hashing algorithm should be keccak256 and pair sorting should be enabled.
 *
 * See `test/utils/cryptography/MerkleProof.test.js` for some examples.
 */
library MerkleProof {
    /**
     * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree
     * defined by `root`. For this, a `proof` must be provided, containing
     * sibling hashes on the branch from the leaf to the root of the tree. Each
     * pair of leaves and each pair of pre-images are assumed to be sorted.
     */
    function verify(
        bytes32[] memory proof,
        bytes32 root,
        bytes32 leaf
    ) internal pure returns (bool) {
        return processProof(proof, leaf) == root;
    }

    /**
     * @dev Returns the rebuilt hash obtained by traversing a Merklee tree up
     * from `leaf` using `proof`. A `proof` is valid if and only if the rebuilt
     * hash matches the root of the tree. When processing the proof, the pairs
     * of leafs & pre-images are assumed to be sorted.
     *
     * _Available since v4.4._
     */
    function processProof(bytes32[] memory proof, bytes32 leaf) internal pure returns (bytes32) {
        bytes32 computedHash = leaf;
        for (uint256 i = 0; i < proof.length; i++) {
            bytes32 proofElement = proof[i];
            if (computedHash <= proofElement) {
                // Hash(current computed hash + current element of the proof)
                computedHash = _efficientHash(computedHash, proofElement);
            } else {
                // Hash(current element of the proof + current computed hash)
                computedHash = _efficientHash(proofElement, computedHash);
            }
        }
        return computedHash;
    }

    function _efficientHash(bytes32 a, bytes32 b) private pure returns (bytes32 value) {
        assembly {
            mstore(0x00, a)
            mstore(0x20, b)
            value := keccak256(0x00, 0x40)
        }
    }
}

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

    /**
     * @dev Returns the address of the current owner.
     */
    function owner() public view virtual returns (address) {
        return _owner;
    }

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
        _;
    }

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        _transferOwnership(address(0));
    }

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

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

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


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

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC165 standard, as defined in the
 * https://eips.ethereum.org/EIPS/eip-165[EIP].
 *
 * Implementers can declare support of contract interfaces, which can then be
 * queried by others ({ERC165Checker}).
 *
 * For an implementation, see {ERC165}.
 */
interface IERC165 {
    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section]
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30 000 gas.
     */
    function supportsInterface(bytes4 interfaceId) external view returns (bool);
}

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


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

pragma solidity ^0.8.0;


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

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


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

pragma solidity ^0.8.0;


/**
 * @dev Required interface of an ERC721 compliant contract.
 */
interface IERC721 is IERC165 {
    /**
     * @dev Emitted when `tokenId` token is transferred from `from` to `to`.
     */
    event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);

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

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

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

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

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, 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/extensions/IERC721Metadata.sol


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

pragma solidity ^0.8.0;


/**
 * @title ERC-721 Non-Fungible Token Standard, optional metadata extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Metadata is IERC721 {
    /**
     * @dev Returns the token collection name.
     */
    function name() external view returns (string memory);

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

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

// File: ERC721A.sol


// Creator: Chiru Labs

pragma solidity ^0.8.4;








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

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

    // Compiler will pack this into a single 256bit word.
    struct TokenOwnership {
        // The address of the owner.
        address addr;
        // Keeps track of the start time of ownership with minimal overhead for tokenomics.
        uint64 startTimestamp;
        // Whether the token has been burned.
        bool burned;
    }

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

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to ownership details
    // An empty struct value does not necessarily mean the token is unowned. See _ownershipOf implementation for details.
    mapping(uint256 => TokenOwnership) internal _ownerships;

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

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

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

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

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

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

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

    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) {
        return
            interfaceId == type(IERC721).interfaceId ||
            interfaceId == type(IERC721Metadata).interfaceId ||
            super.supportsInterface(interfaceId);
    }

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

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

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

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

    /**
     * Sets the auxillary data for `owner`. (e.g. number of whitelist mint slots used).
     * If there are multiple variables, please pack them into a uint64.
     */
    function _setAux(address owner, uint64 aux) internal {
        _addressData[owner].aux = aux;
    }

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

        unchecked {
            if (_startTokenId() <= curr && curr < _currentIndex) {
                TokenOwnership memory ownership = _ownerships[curr];
                if (!ownership.burned) {
                    if (ownership.addr != address(0)) {
                        return ownership;
                    }
                    // Invariant:
                    // There will always be an ownership that has an address and is not burned
                    // before an ownership that does not have an address and is not burned.
                    // Hence, curr will not underflow.
                    while (true) {
                        curr--;
                        ownership = _ownerships[curr];
                        if (ownership.addr != address(0)) {
                            return ownership;
                        }
                    }
                }
            }
        }
        revert OwnerQueryForNonexistentToken();
    }

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

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

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

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

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

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

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

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

        _approve(to, tokenId, owner);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

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

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

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

    function _safeMint(address to, uint256 quantity) internal {
        _safeMint(to, quantity, '');
    }

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

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

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

        // Overflows are incredibly unrealistic.
        // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1
        // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1
        unchecked {
            _addressData[to].balance += uint64(quantity);
            _addressData[to].numberMinted += uint64(quantity);

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

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

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

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

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

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

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

        _beforeTokenTransfers(from, to, tokenId, 1);

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

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

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

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

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

    /**
     * @dev This is equivalent to _burn(tokenId, false)
     */
    function _burn(uint256 tokenId) internal virtual {
        _burn(tokenId, false);
    }

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

        address from = prevOwnership.addr;

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

            if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        }

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

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

        // Underflow of the sender's balance is impossible because we check for
        // ownership above and the recipient's balance can't realistically overflow.
        // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256.
        unchecked {
            AddressData storage addressData = _addressData[from];
            addressData.balance -= 1;
            addressData.numberBurned += 1;

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

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

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

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

    /**
     * @dev Approve `to` to operate on `tokenId`
     *
     * Emits a {Approval} event.
     */
    function _approve(
        address to,
        uint256 tokenId,
        address owner
    ) private {
        _tokenApprovals[tokenId] = to;
        emit Approval(owner, to, tokenId);
    }

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

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

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


pragma solidity ^0.8.4;





contract NFT_Contract is ERC721A, Ownable {
    using Strings for uint256;
    mapping(address => uint256) public whitelistClaimed;
    mapping(address => uint256) public publicClaimed;

    string public baseURI;
    string public baseExtension = ".json";
    uint256 public whitelistCost = 0.069 ether;
    uint256 public publicCost = 0.11 ether;
    bool public whitelistEnabled = false;
    bool public paused = true;
    bytes32 public merkleRoot;
    uint256 public maxWhitelist = 11;
    uint256 public maxPublic = 11;
    uint256 public mintPerTx = 11;
    uint256 public maxSupply = 11111;

    uint96 public royaltyFeesInBips;
    address public royaltyAddress;
    string public contractURI;

    constructor(
        string memory _initBaseURI,
        uint96 _royaltyFeesInBips
    ) ERC721A("PSYCOC", "PSC") {
        royaltyFeesInBips = _royaltyFeesInBips;
        royaltyAddress = owner();
        setBaseURI(_initBaseURI);
    }

    function whitelistMint(uint256 quantity, bytes32[] calldata _merkleProof)
        public
        payable
    {
        uint256 supply = totalSupply();
        require(quantity > 0, "Quantity Must Be Higher Than Zero");
        require(supply + quantity <= maxSupply, "Max Supply Reached");
        require(whitelistEnabled, "The whitelist sale is not enabled!");
        require(
            whitelistClaimed[msg.sender] + quantity <= maxWhitelist,
            "You're not allowed to mint this Much!"
        );
        require(msg.value >= whitelistCost * quantity, "Insufficient Funds");
        bytes32 leaf = keccak256(abi.encodePacked(msg.sender));
        require(
            MerkleProof.verify(_merkleProof, merkleRoot, leaf),
            "Invalid proof!"
        );

        whitelistClaimed[msg.sender] += quantity;
        _safeMint(msg.sender, quantity);
    }

    function mint(uint256 quantity) external payable {
        uint256 supply = totalSupply();
        require(!paused, "The contract is paused!");
        require(!whitelistEnabled, "Public mint is disable!");
        require(quantity > 0, "Quantity Must Be Higher Than Zero!");
        require(supply + quantity <= maxSupply, "Max Supply Reached!");

        if (msg.sender != owner()) {
            require(
            publicClaimed[msg.sender] + quantity <= maxPublic,
                "You're not allowed to mint this Much!"
            );
            require(
                quantity <= maxPublic,
                "You're Not Allowed To Mint more than maxMint Amount"
            );
            require(msg.value >= publicCost * quantity, "Insufficient Funds");
        }
        publicClaimed[msg.sender] += quantity;
        _safeMint(msg.sender, quantity);
    }

    // internal
    function _baseURI() internal view virtual override returns (string memory) {
        return baseURI;
    }

    function tokenURI(uint256 tokenId)
        public
        view
        virtual
        override
        returns (string memory)
    {
        require(
            _exists(tokenId),
            "ERC721Metadata: URI query for nonexistent token"
        );

        string memory currentBaseURI = _baseURI();
        return
            bytes(currentBaseURI).length > 0
                ? string(
                    abi.encodePacked(
                        currentBaseURI,
                        tokenId.toString(),
                        baseExtension
                    )
                )
                : "";
    }

    function setCost(uint256 _whitelistCost, uint256 _publicCost)
        public
        onlyOwner
    {
        whitelistCost = _whitelistCost;
        publicCost = _publicCost;
    }

    function setMax(uint256 _whitelist, uint256 _public) public onlyOwner {
        maxWhitelist = _whitelist;
        maxPublic = _public;
    }

    function setMintPerTx(uint256 quantity) public onlyOwner {
        mintPerTx = quantity;
    }

    function setMaxSuppy(uint256 _amount) public onlyOwner {
        maxSupply = _amount;
    }

    function setMerkleRoot(bytes32 _merkleRoot) public onlyOwner {
        merkleRoot = _merkleRoot;
    }

    function setWhitelistEnabled(bool _state) public onlyOwner {
        whitelistEnabled = _state;
    }

    function setPaused(bool _state) public onlyOwner {
        paused = _state;
    }

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

    function mintForAddresses(uint256 quantity, address _address) public onlyOwner {
        require(!paused, "The contract is paused!");
        _safeMint(_address, quantity);
    }

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

    function setRoyaltyReciever(address _address) public onlyOwner {
        royaltyAddress = _address;
    }

    function royaltyInfo(uint256 _tokenId, uint256 _salePrice)
        external
        view
        returns (address, uint256)
    {
        _tokenId; // silence solc warning
        return (royaltyAddress, calculateRoyalty(_salePrice));
    }

    function calculateRoyalty(uint256 _salePrice) view public returns (uint256) {
        return (_salePrice / 10000) * royaltyFeesInBips;
    }

    function supportsInterface(bytes4 interfaceId)
            public
            view
            override(ERC721A)
            returns (bool)
    {
        return interfaceId == 0x2a55205a || super.supportsInterface(interfaceId);
    }

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_initBaseURI","type":"string"},{"internalType":"uint96","name":"_royaltyFeesInBips","type":"uint96"}],"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":[{"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":"_salePrice","type":"uint256"}],"name":"calculateRoyalty","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":[],"name":"maxPublic","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWhitelist","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"merkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"},{"internalType":"address","name":"_address","type":"address"}],"name":"mintForAddresses","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"mintPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"publicClaimed","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicCost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"royaltyAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"royaltyFeesInBips","outputs":[{"internalType":"uint96","name":"","type":"uint96"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"},{"internalType":"uint256","name":"_salePrice","type":"uint256"}],"name":"royaltyInfo","outputs":[{"internalType":"address","name":"","type":"address"},{"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":"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":"_newBaseExtension","type":"string"}],"name":"setBaseExtension","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_whitelistCost","type":"uint256"},{"internalType":"uint256","name":"_publicCost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_whitelist","type":"uint256"},{"internalType":"uint256","name":"_public","type":"uint256"}],"name":"setMax","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"setMaxSuppy","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_merkleRoot","type":"bytes32"}],"name":"setMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"setMintPerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setPaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"setRoyaltyReciever","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setWhitelistEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"whitelistClaimed","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"whitelistCost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"whitelistEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"},{"internalType":"bytes32[]","name":"_merkleProof","type":"bytes32[]"}],"name":"whitelistMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526040518060400160405280600581526020017f2e6a736f6e000000000000000000000000000000000000000000000000000000815250600c90805190602001906200005192919062000403565b5066f5232269808000600d55670186cc6acd4b0000600e556000600f60006101000a81548160ff0219169083151502179055506001600f60016101000a81548160ff021916908315150217905550600b601155600b601255600b601355612b67601455348015620000c157600080fd5b506040516200555f3803806200555f8339818101604052810190620000e7919062000548565b6040518060400160405280600681526020017f505359434f4300000000000000000000000000000000000000000000000000008152506040518060400160405280600381526020017f505343000000000000000000000000000000000000000000000000000000000081525081600290805190602001906200016b92919062000403565b5080600390805190602001906200018492919062000403565b50620001956200025760201b60201c565b6000819055505050620001bd620001b16200026060201b60201c565b6200026860201b60201c565b80601560006101000a8154816bffffffffffffffffffffffff02191690836bffffffffffffffffffffffff160217905550620001fe6200032e60201b60201c565b6015600c6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506200024f826200035860201b60201c565b5050620007e7565b60006001905090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b620003686200026060201b60201c565b73ffffffffffffffffffffffffffffffffffffffff166200038e6200032e60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1614620003e7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620003de90620005d5565b60405180910390fd5b80600b9080519060200190620003ff92919062000403565b5050565b8280546200041190620006b5565b90600052602060002090601f01602090048101928262000435576000855562000481565b82601f106200045057805160ff191683800117855562000481565b8280016001018555821562000481579182015b828111156200048057825182559160200191906001019062000463565b5b50905062000490919062000494565b5090565b5b80821115620004af57600081600090555060010162000495565b5090565b6000620004ca620004c48462000620565b620005f7565b905082815260208101848484011115620004e957620004e862000784565b5b620004f68482856200067f565b509392505050565b600082601f8301126200051657620005156200077f565b5b815162000528848260208601620004b3565b91505092915050565b6000815190506200054281620007cd565b92915050565b600080604083850312156200056257620005616200078e565b5b600083015167ffffffffffffffff81111562000583576200058262000789565b5b6200059185828601620004fe565b9250506020620005a48582860162000531565b9150509250929050565b6000620005bd60208362000656565b9150620005ca82620007a4565b602082019050919050565b60006020820190508181036000830152620005f081620005ae565b9050919050565b60006200060362000616565b9050620006118282620006eb565b919050565b6000604051905090565b600067ffffffffffffffff8211156200063e576200063d62000750565b5b620006498262000793565b9050602081019050919050565b600082825260208201905092915050565b60006bffffffffffffffffffffffff82169050919050565b60005b838110156200069f57808201518184015260208101905062000682565b83811115620006af576000848401525b50505050565b60006002820490506001821680620006ce57607f821691505b60208210811415620006e557620006e462000721565b5b50919050565b620006f68262000793565b810181811067ffffffffffffffff8211171562000718576200071762000750565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b620007d88162000667565b8114620007e457600080fd5b50565b614d6880620007f76000396000f3fe6080604052600436106102ae5760003560e01c80637696e08811610175578063b88d4fde116100dc578063d78e89bd11610095578063e7b99ec71161006f578063e7b99ec714610a7f578063e8a3d48514610aaa578063e985e9c514610ad5578063f2fde38b14610b12576102ae565b8063d78e89bd146109ee578063da3ef23f14610a19578063db4bec4414610a42576102ae565b8063b88d4fde146108eb578063bf0d96c314610914578063c66828621461093f578063c87b56dd1461096a578063d2cab056146109a7578063d5abeb01146109c3576102ae565b80639ec571d51161012e5780639ec571d5146107d8578063a0712d6814610801578063a22cb4651461081d578063a2e6961314610846578063ad2f852a14610883578063b5b1cd7c146108ae576102ae565b80637696e088146106da5780637cb64759146107035780637dc429751461072c5780638693da20146107575780638da5cb5b1461078257806395d89b41146107ad576102ae565b80633ccfd60b116102195780636352211e116101d25780636352211e146105ca578063698c8765146106075780636c0360eb1461063057806370a082311461065b578063715018a61461069857806373c7400e146106af576102ae565b80633ccfd60b146104e257806342842e0e146104f9578063481fbef01461052257806351fb012d1461054b57806355f804b3146105765780635c975abb1461059f576102ae565b806318160ddd1161026b57806318160ddd146103d35780631d4b4a83146103fe57806323b872dd146104275780632a55205a146104505780632eb4a7ab1461048e5780633b91ceef146104b9576102ae565b806301ffc9a7146102b3578063052d9e7e146102f057806306fdde0314610319578063081812fc14610344578063095ea7b31461038157806316c38b3c146103aa575b600080fd5b3480156102bf57600080fd5b506102da60048036038101906102d59190613bf5565b610b3b565b6040516102e79190614227565b60405180910390f35b3480156102fc57600080fd5b5061031760048036038101906103129190613b9b565b610b7d565b005b34801561032557600080fd5b5061032e610c16565b60405161033b919061425d565b60405180910390f35b34801561035057600080fd5b5061036b60048036038101906103669190613c98565b610ca8565b6040516103789190614197565b60405180910390f35b34801561038d57600080fd5b506103a860048036038101906103a39190613b5b565b610d24565b005b3480156103b657600080fd5b506103d160048036038101906103cc9190613b9b565b610e2f565b005b3480156103df57600080fd5b506103e8610ec8565b6040516103f5919061443f565b60405180910390f35b34801561040a57600080fd5b50610425600480360381019061042091906139d8565b610edf565b005b34801561043357600080fd5b5061044e60048036038101906104499190613a45565b610f9f565b005b34801561045c57600080fd5b5061047760048036038101906104729190613d65565b610faf565b6040516104859291906141fe565b60405180910390f35b34801561049a57600080fd5b506104a3610fe9565b6040516104b09190614242565b60405180910390f35b3480156104c557600080fd5b506104e060048036038101906104db9190613d65565b610fef565b005b3480156104ee57600080fd5b506104f761107d565b005b34801561050557600080fd5b50610520600480360381019061051b9190613a45565b611179565b005b34801561052e57600080fd5b5061054960048036038101906105449190613c98565b611199565b005b34801561055757600080fd5b5061056061121f565b60405161056d9190614227565b60405180910390f35b34801561058257600080fd5b5061059d60048036038101906105989190613c4f565b611232565b005b3480156105ab57600080fd5b506105b46112c8565b6040516105c19190614227565b60405180910390f35b3480156105d657600080fd5b506105f160048036038101906105ec9190613c98565b6112db565b6040516105fe9190614197565b60405180910390f35b34801561061357600080fd5b5061062e60048036038101906106299190613cc5565b6112f1565b005b34801561063c57600080fd5b506106456113cb565b604051610652919061425d565b60405180910390f35b34801561066757600080fd5b50610682600480360381019061067d91906139d8565b611459565b60405161068f919061443f565b60405180910390f35b3480156106a457600080fd5b506106ad611529565b005b3480156106bb57600080fd5b506106c46115b1565b6040516106d1919061445a565b60405180910390f35b3480156106e657600080fd5b5061070160048036038101906106fc9190613d65565b6115cf565b005b34801561070f57600080fd5b5061072a60048036038101906107259190613bc8565b61165d565b005b34801561073857600080fd5b506107416116e3565b60405161074e919061443f565b60405180910390f35b34801561076357600080fd5b5061076c6116e9565b604051610779919061443f565b60405180910390f35b34801561078e57600080fd5b506107976116ef565b6040516107a49190614197565b60405180910390f35b3480156107b957600080fd5b506107c2611719565b6040516107cf919061425d565b60405180910390f35b3480156107e457600080fd5b506107ff60048036038101906107fa9190613c98565b6117ab565b005b61081b60048036038101906108169190613c98565b611831565b005b34801561082957600080fd5b50610844600480360381019061083f9190613b1b565b611b33565b005b34801561085257600080fd5b5061086d60048036038101906108689190613c98565b611cab565b60405161087a919061443f565b60405180910390f35b34801561088f57600080fd5b50610898611cf5565b6040516108a59190614197565b60405180910390f35b3480156108ba57600080fd5b506108d560048036038101906108d091906139d8565b611d1b565b6040516108e2919061443f565b60405180910390f35b3480156108f757600080fd5b50610912600480360381019061090d9190613a98565b611d33565b005b34801561092057600080fd5b50610929611daf565b604051610936919061443f565b60405180910390f35b34801561094b57600080fd5b50610954611db5565b604051610961919061425d565b60405180910390f35b34801561097657600080fd5b50610991600480360381019061098c9190613c98565b611e43565b60405161099e919061425d565b60405180910390f35b6109c160048036038101906109bc9190613d05565b611eed565b005b3480156109cf57600080fd5b506109d86121d9565b6040516109e5919061443f565b60405180910390f35b3480156109fa57600080fd5b50610a036121df565b604051610a10919061443f565b60405180910390f35b348015610a2557600080fd5b50610a406004803603810190610a3b9190613c4f565b6121e5565b005b348015610a4e57600080fd5b50610a696004803603810190610a6491906139d8565b61227b565b604051610a76919061443f565b60405180910390f35b348015610a8b57600080fd5b50610a94612293565b604051610aa1919061443f565b60405180910390f35b348015610ab657600080fd5b50610abf612299565b604051610acc919061425d565b60405180910390f35b348015610ae157600080fd5b50610afc6004803603810190610af79190613a05565b612327565b604051610b099190614227565b60405180910390f35b348015610b1e57600080fd5b50610b396004803603810190610b3491906139d8565b6123bb565b005b6000632a55205a60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610b765750610b75826124b3565b5b9050919050565b610b85612595565b73ffffffffffffffffffffffffffffffffffffffff16610ba36116ef565b73ffffffffffffffffffffffffffffffffffffffff1614610bf9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bf09061431f565b60405180910390fd5b80600f60006101000a81548160ff02191690831515021790555050565b606060028054610c259061474c565b80601f0160208091040260200160405190810160405280929190818152602001828054610c519061474c565b8015610c9e5780601f10610c7357610100808354040283529160200191610c9e565b820191906000526020600020905b815481529060010190602001808311610c8157829003601f168201915b5050505050905090565b6000610cb38261259d565b610ce9576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610d2f826112db565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610d97576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610db6612595565b73ffffffffffffffffffffffffffffffffffffffff1614158015610de85750610de681610de1612595565b612327565b155b15610e1f576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610e2a8383836125eb565b505050565b610e37612595565b73ffffffffffffffffffffffffffffffffffffffff16610e556116ef565b73ffffffffffffffffffffffffffffffffffffffff1614610eab576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ea29061431f565b60405180910390fd5b80600f60016101000a81548160ff02191690831515021790555050565b6000610ed261269d565b6001546000540303905090565b610ee7612595565b73ffffffffffffffffffffffffffffffffffffffff16610f056116ef565b73ffffffffffffffffffffffffffffffffffffffff1614610f5b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f529061431f565b60405180910390fd5b806015600c6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b610faa8383836126a6565b505050565b6000806015600c9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16610fde84611cab565b915091509250929050565b60105481565b610ff7612595565b73ffffffffffffffffffffffffffffffffffffffff166110156116ef565b73ffffffffffffffffffffffffffffffffffffffff161461106b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110629061431f565b60405180910390fd5b81601181905550806012819055505050565b611085612595565b73ffffffffffffffffffffffffffffffffffffffff166110a36116ef565b73ffffffffffffffffffffffffffffffffffffffff16146110f9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110f09061431f565b60405180910390fd5b60006111036116ef565b73ffffffffffffffffffffffffffffffffffffffff164760405161112690614182565b60006040518083038185875af1925050503d8060008114611163576040519150601f19603f3d011682016040523d82523d6000602084013e611168565b606091505b505090508061117657600080fd5b50565b61119483838360405180602001604052806000815250611d33565b505050565b6111a1612595565b73ffffffffffffffffffffffffffffffffffffffff166111bf6116ef565b73ffffffffffffffffffffffffffffffffffffffff1614611215576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161120c9061431f565b60405180910390fd5b8060138190555050565b600f60009054906101000a900460ff1681565b61123a612595565b73ffffffffffffffffffffffffffffffffffffffff166112586116ef565b73ffffffffffffffffffffffffffffffffffffffff16146112ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112a59061431f565b60405180910390fd5b80600b90805190602001906112c492919061373e565b5050565b600f60019054906101000a900460ff1681565b60006112e682612b5c565b600001519050919050565b6112f9612595565b73ffffffffffffffffffffffffffffffffffffffff166113176116ef565b73ffffffffffffffffffffffffffffffffffffffff161461136d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113649061431f565b60405180910390fd5b600f60019054906101000a900460ff16156113bd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113b49061433f565b60405180910390fd5b6113c78183612deb565b5050565b600b80546113d89061474c565b80601f01602080910402602001604051908101604052809291908181526020018280546114049061474c565b80156114515780601f1061142657610100808354040283529160200191611451565b820191906000526020600020905b81548152906001019060200180831161143457829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156114c1576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b611531612595565b73ffffffffffffffffffffffffffffffffffffffff1661154f6116ef565b73ffffffffffffffffffffffffffffffffffffffff16146115a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161159c9061431f565b60405180910390fd5b6115af6000612e09565b565b601560009054906101000a90046bffffffffffffffffffffffff1681565b6115d7612595565b73ffffffffffffffffffffffffffffffffffffffff166115f56116ef565b73ffffffffffffffffffffffffffffffffffffffff161461164b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116429061431f565b60405180910390fd5b81600d8190555080600e819055505050565b611665612595565b73ffffffffffffffffffffffffffffffffffffffff166116836116ef565b73ffffffffffffffffffffffffffffffffffffffff16146116d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116d09061431f565b60405180910390fd5b8060108190555050565b60125481565b600e5481565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600380546117289061474c565b80601f01602080910402602001604051908101604052809291908181526020018280546117549061474c565b80156117a15780601f10611776576101008083540402835291602001916117a1565b820191906000526020600020905b81548152906001019060200180831161178457829003601f168201915b5050505050905090565b6117b3612595565b73ffffffffffffffffffffffffffffffffffffffff166117d16116ef565b73ffffffffffffffffffffffffffffffffffffffff1614611827576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161181e9061431f565b60405180910390fd5b8060148190555050565b600061183b610ec8565b9050600f60019054906101000a900460ff161561188d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118849061433f565b60405180910390fd5b600f60009054906101000a900460ff16156118dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118d49061439f565b60405180910390fd5b60008211611920576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119179061437f565b60405180910390fd5b601454828261192f919061455f565b1115611970576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119679061441f565b60405180910390fd5b6119786116ef565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611acf5760125482600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546119f8919061455f565b1115611a39576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a309061427f565b60405180910390fd5b601254821115611a7e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a75906143bf565b60405180910390fd5b81600e54611a8c91906145e6565b341015611ace576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ac5906142ff565b60405180910390fd5b5b81600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611b1e919061455f565b92505081905550611b2f3383612deb565b5050565b611b3b612595565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611ba0576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000611bad612595565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611c5a612595565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611c9f9190614227565b60405180910390a35050565b6000601560009054906101000a90046bffffffffffffffffffffffff166bffffffffffffffffffffffff1661271083611ce491906145b5565b611cee91906145e6565b9050919050565b6015600c9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600a6020528060005260406000206000915090505481565b611d3e8484846126a6565b611d5d8373ffffffffffffffffffffffffffffffffffffffff16612ecf565b8015611d725750611d7084848484612ef2565b155b15611da9576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b60115481565b600c8054611dc29061474c565b80601f0160208091040260200160405190810160405280929190818152602001828054611dee9061474c565b8015611e3b5780601f10611e1057610100808354040283529160200191611e3b565b820191906000526020600020905b815481529060010190602001808311611e1e57829003601f168201915b505050505081565b6060611e4e8261259d565b611e8d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e849061435f565b60405180910390fd5b6000611e97613052565b90506000815111611eb75760405180602001604052806000815250611ee5565b80611ec1846130e4565b600c604051602001611ed593929190614151565b6040516020818303038152906040525b915050919050565b6000611ef7610ec8565b905060008411611f3c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f33906142df565b60405180910390fd5b6014548482611f4b919061455f565b1115611f8c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f83906143ff565b60405180910390fd5b600f60009054906101000a900460ff16611fdb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fd2906143df565b60405180910390fd5b60115484600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612029919061455f565b111561206a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120619061427f565b60405180910390fd5b83600d5461207891906145e6565b3410156120ba576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120b1906142ff565b60405180910390fd5b6000336040516020016120cd9190614136565b604051602081830303815290604052805190602001209050612133848480806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f8201169050808301925050505050505060105483613245565b612172576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121699061429f565b60405180910390fd5b84600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546121c1919061455f565b925050819055506121d23386612deb565b5050505050565b60145481565b60135481565b6121ed612595565b73ffffffffffffffffffffffffffffffffffffffff1661220b6116ef565b73ffffffffffffffffffffffffffffffffffffffff1614612261576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122589061431f565b60405180910390fd5b80600c908051906020019061227792919061373e565b5050565b60096020528060005260406000206000915090505481565b600d5481565b601680546122a69061474c565b80601f01602080910402602001604051908101604052809291908181526020018280546122d29061474c565b801561231f5780601f106122f45761010080835404028352916020019161231f565b820191906000526020600020905b81548152906001019060200180831161230257829003601f168201915b505050505081565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6123c3612595565b73ffffffffffffffffffffffffffffffffffffffff166123e16116ef565b73ffffffffffffffffffffffffffffffffffffffff1614612437576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161242e9061431f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156124a7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161249e906142bf565b60405180910390fd5b6124b081612e09565b50565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061257e57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061258e575061258d8261325c565b5b9050919050565b600033905090565b6000816125a861269d565b111580156125b7575060005482105b80156125e4575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006001905090565b60006126b182612b5c565b90508373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461271c576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff1661273d612595565b73ffffffffffffffffffffffffffffffffffffffff16148061276c575061276b85612766612595565b612327565b5b806127b1575061277a612595565b73ffffffffffffffffffffffffffffffffffffffff1661279984610ca8565b73ffffffffffffffffffffffffffffffffffffffff16145b9050806127ea576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612851576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61285e85858560016132c6565b61286a600084876125eb565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600460008581526020019081526020016000209050848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060006001850190506000600460008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415612aea576000548214612ae957878160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b505050828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612b5585858560016132cc565b5050505050565b612b646137c4565b600082905080612b7261269d565b11158015612b81575060005481105b15612db4576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff16151515158152505090508060400151612db257600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612c96578092505050612de6565b5b600115612db157818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612dac578092505050612de6565b612c97565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b612e058282604051806020016040528060008152506132d2565b5050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612f18612595565b8786866040518563ffffffff1660e01b8152600401612f3a94939291906141b2565b602060405180830381600087803b158015612f5457600080fd5b505af1925050508015612f8557506040513d601f19601f82011682018060405250810190612f829190613c22565b60015b612fff573d8060008114612fb5576040519150601f19603f3d011682016040523d82523d6000602084013e612fba565b606091505b50600081511415612ff7576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600b80546130619061474c565b80601f016020809104026020016040519081016040528092919081815260200182805461308d9061474c565b80156130da5780601f106130af576101008083540402835291602001916130da565b820191906000526020600020905b8154815290600101906020018083116130bd57829003601f168201915b5050505050905090565b6060600082141561312c576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050613240565b600082905060005b6000821461315e578080613147906147af565b915050600a8261315791906145b5565b9150613134565b60008167ffffffffffffffff81111561317a57613179614909565b5b6040519080825280601f01601f1916602001820160405280156131ac5781602001600182028036833780820191505090505b5090505b60008514613239576001826131c59190614640565b9150600a856131d4919061481c565b60306131e0919061455f565b60f81b8183815181106131f6576131f56148da565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561323291906145b5565b94506131b0565b8093505050505b919050565b60008261325285846132e4565b1490509392505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b50505050565b50505050565b6132df8383836001613359565b505050565b60008082905060005b845181101561334e57600085828151811061330b5761330a6148da565b5b6020026020010151905080831161332d576133268382613727565b925061333a565b6133378184613727565b92505b508080613346906147af565b9150506132ed565b508091505092915050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614156133c6576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000841415613401576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61340e60008683876132c6565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000819050600085820190508380156135d857506135d78773ffffffffffffffffffffffffffffffffffffffff16612ecf565b5b1561369e575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461364d6000888480600101955088612ef2565b613683576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b808214156135de57826000541461369957600080fd5b61370a565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a48082141561369f575b81600081905550505061372060008683876132cc565b5050505050565b600082600052816020526040600020905092915050565b82805461374a9061474c565b90600052602060002090601f01602090048101928261376c57600085556137b3565b82601f1061378557805160ff19168380011785556137b3565b828001600101855582156137b3579182015b828111156137b2578251825591602001919060010190613797565b5b5090506137c09190613807565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b80821115613820576000816000905550600101613808565b5090565b60006138376138328461449a565b614475565b90508281526020810184848401111561385357613852614947565b5b61385e84828561470a565b509392505050565b6000613879613874846144cb565b614475565b90508281526020810184848401111561389557613894614947565b5b6138a084828561470a565b509392505050565b6000813590506138b781614cbf565b92915050565b60008083601f8401126138d3576138d261493d565b5b8235905067ffffffffffffffff8111156138f0576138ef614938565b5b60208301915083602082028301111561390c5761390b614942565b5b9250929050565b60008135905061392281614cd6565b92915050565b60008135905061393781614ced565b92915050565b60008135905061394c81614d04565b92915050565b60008151905061396181614d04565b92915050565b600082601f83011261397c5761397b61493d565b5b813561398c848260208601613824565b91505092915050565b600082601f8301126139aa576139a961493d565b5b81356139ba848260208601613866565b91505092915050565b6000813590506139d281614d1b565b92915050565b6000602082840312156139ee576139ed614951565b5b60006139fc848285016138a8565b91505092915050565b60008060408385031215613a1c57613a1b614951565b5b6000613a2a858286016138a8565b9250506020613a3b858286016138a8565b9150509250929050565b600080600060608486031215613a5e57613a5d614951565b5b6000613a6c868287016138a8565b9350506020613a7d868287016138a8565b9250506040613a8e868287016139c3565b9150509250925092565b60008060008060808587031215613ab257613ab1614951565b5b6000613ac0878288016138a8565b9450506020613ad1878288016138a8565b9350506040613ae2878288016139c3565b925050606085013567ffffffffffffffff811115613b0357613b0261494c565b5b613b0f87828801613967565b91505092959194509250565b60008060408385031215613b3257613b31614951565b5b6000613b40858286016138a8565b9250506020613b5185828601613913565b9150509250929050565b60008060408385031215613b7257613b71614951565b5b6000613b80858286016138a8565b9250506020613b91858286016139c3565b9150509250929050565b600060208284031215613bb157613bb0614951565b5b6000613bbf84828501613913565b91505092915050565b600060208284031215613bde57613bdd614951565b5b6000613bec84828501613928565b91505092915050565b600060208284031215613c0b57613c0a614951565b5b6000613c198482850161393d565b91505092915050565b600060208284031215613c3857613c37614951565b5b6000613c4684828501613952565b91505092915050565b600060208284031215613c6557613c64614951565b5b600082013567ffffffffffffffff811115613c8357613c8261494c565b5b613c8f84828501613995565b91505092915050565b600060208284031215613cae57613cad614951565b5b6000613cbc848285016139c3565b91505092915050565b60008060408385031215613cdc57613cdb614951565b5b6000613cea858286016139c3565b9250506020613cfb858286016138a8565b9150509250929050565b600080600060408486031215613d1e57613d1d614951565b5b6000613d2c868287016139c3565b935050602084013567ffffffffffffffff811115613d4d57613d4c61494c565b5b613d59868287016138bd565b92509250509250925092565b60008060408385031215613d7c57613d7b614951565b5b6000613d8a858286016139c3565b9250506020613d9b858286016139c3565b9150509250929050565b613dae81614674565b82525050565b613dc5613dc082614674565b6147f8565b82525050565b613dd481614686565b82525050565b613de381614692565b82525050565b6000613df482614511565b613dfe8185614527565b9350613e0e818560208601614719565b613e1781614956565b840191505092915050565b6000613e2d8261451c565b613e378185614543565b9350613e47818560208601614719565b613e5081614956565b840191505092915050565b6000613e668261451c565b613e708185614554565b9350613e80818560208601614719565b80840191505092915050565b60008154613e998161474c565b613ea38186614554565b94506001821660008114613ebe5760018114613ecf57613f02565b60ff19831686528186019350613f02565b613ed8856144fc565b60005b83811015613efa57815481890152600182019150602081019050613edb565b838801955050505b50505092915050565b6000613f18602583614543565b9150613f2382614974565b604082019050919050565b6000613f3b600e83614543565b9150613f46826149c3565b602082019050919050565b6000613f5e602683614543565b9150613f69826149ec565b604082019050919050565b6000613f81602183614543565b9150613f8c82614a3b565b604082019050919050565b6000613fa4601283614543565b9150613faf82614a8a565b602082019050919050565b6000613fc7602083614543565b9150613fd282614ab3565b602082019050919050565b6000613fea601783614543565b9150613ff582614adc565b602082019050919050565b600061400d602f83614543565b915061401882614b05565b604082019050919050565b6000614030602283614543565b915061403b82614b54565b604082019050919050565b6000614053601783614543565b915061405e82614ba3565b602082019050919050565b6000614076603383614543565b915061408182614bcc565b604082019050919050565b6000614099600083614538565b91506140a482614c1b565b600082019050919050565b60006140bc602283614543565b91506140c782614c1e565b604082019050919050565b60006140df601283614543565b91506140ea82614c6d565b602082019050919050565b6000614102601383614543565b915061410d82614c96565b602082019050919050565b614121816146e8565b82525050565b614130816146f2565b82525050565b60006141428284613db4565b60148201915081905092915050565b600061415d8286613e5b565b91506141698285613e5b565b91506141758284613e8c565b9150819050949350505050565b600061418d8261408c565b9150819050919050565b60006020820190506141ac6000830184613da5565b92915050565b60006080820190506141c76000830187613da5565b6141d46020830186613da5565b6141e16040830185614118565b81810360608301526141f38184613de9565b905095945050505050565b60006040820190506142136000830185613da5565b6142206020830184614118565b9392505050565b600060208201905061423c6000830184613dcb565b92915050565b60006020820190506142576000830184613dda565b92915050565b600060208201905081810360008301526142778184613e22565b905092915050565b6000602082019050818103600083015261429881613f0b565b9050919050565b600060208201905081810360008301526142b881613f2e565b9050919050565b600060208201905081810360008301526142d881613f51565b9050919050565b600060208201905081810360008301526142f881613f74565b9050919050565b6000602082019050818103600083015261431881613f97565b9050919050565b6000602082019050818103600083015261433881613fba565b9050919050565b6000602082019050818103600083015261435881613fdd565b9050919050565b6000602082019050818103600083015261437881614000565b9050919050565b6000602082019050818103600083015261439881614023565b9050919050565b600060208201905081810360008301526143b881614046565b9050919050565b600060208201905081810360008301526143d881614069565b9050919050565b600060208201905081810360008301526143f8816140af565b9050919050565b60006020820190508181036000830152614418816140d2565b9050919050565b60006020820190508181036000830152614438816140f5565b9050919050565b60006020820190506144546000830184614118565b92915050565b600060208201905061446f6000830184614127565b92915050565b600061447f614490565b905061448b828261477e565b919050565b6000604051905090565b600067ffffffffffffffff8211156144b5576144b4614909565b5b6144be82614956565b9050602081019050919050565b600067ffffffffffffffff8211156144e6576144e5614909565b5b6144ef82614956565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b600061456a826146e8565b9150614575836146e8565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156145aa576145a961484d565b5b828201905092915050565b60006145c0826146e8565b91506145cb836146e8565b9250826145db576145da61487c565b5b828204905092915050565b60006145f1826146e8565b91506145fc836146e8565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156146355761463461484d565b5b828202905092915050565b600061464b826146e8565b9150614656836146e8565b9250828210156146695761466861484d565b5b828203905092915050565b600061467f826146c8565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b60006bffffffffffffffffffffffff82169050919050565b82818337600083830152505050565b60005b8381101561473757808201518184015260208101905061471c565b83811115614746576000848401525b50505050565b6000600282049050600182168061476457607f821691505b60208210811415614778576147776148ab565b5b50919050565b61478782614956565b810181811067ffffffffffffffff821117156147a6576147a5614909565b5b80604052505050565b60006147ba826146e8565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156147ed576147ec61484d565b5b600182019050919050565b60006148038261480a565b9050919050565b600061481582614967565b9050919050565b6000614827826146e8565b9150614832836146e8565b9250826148425761484161487c565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f596f75277265206e6f7420616c6c6f77656420746f206d696e7420746869732060008201527f4d75636821000000000000000000000000000000000000000000000000000000602082015250565b7f496e76616c69642070726f6f6621000000000000000000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f5175616e74697479204d75737420426520486967686572205468616e205a657260008201527f6f00000000000000000000000000000000000000000000000000000000000000602082015250565b7f496e73756666696369656e742046756e64730000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f54686520636f6e74726163742069732070617573656421000000000000000000600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f5175616e74697479204d75737420426520486967686572205468616e205a657260008201527f6f21000000000000000000000000000000000000000000000000000000000000602082015250565b7f5075626c6963206d696e742069732064697361626c6521000000000000000000600082015250565b7f596f75277265204e6f7420416c6c6f77656420546f204d696e74206d6f72652060008201527f7468616e206d61784d696e7420416d6f756e7400000000000000000000000000602082015250565b50565b7f5468652077686974656c6973742073616c65206973206e6f7420656e61626c6560008201527f6421000000000000000000000000000000000000000000000000000000000000602082015250565b7f4d617820537570706c7920526561636865640000000000000000000000000000600082015250565b7f4d617820537570706c7920526561636865642100000000000000000000000000600082015250565b614cc881614674565b8114614cd357600080fd5b50565b614cdf81614686565b8114614cea57600080fd5b50565b614cf681614692565b8114614d0157600080fd5b50565b614d0d8161469c565b8114614d1857600080fd5b50565b614d24816146e8565b8114614d2f57600080fd5b5056fea2646970667358221220e9d69c315b42e478a4b48c05dc614a8546caa8ed3da917363dc73b00481b09dc64736f6c63430008070033000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000002ee0000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d63474e6a6269414b32657a76557935467646736157676569426e546e38366b564b6674546b684a43676a31662f00000000000000000000

Deployed Bytecode

0x6080604052600436106102ae5760003560e01c80637696e08811610175578063b88d4fde116100dc578063d78e89bd11610095578063e7b99ec71161006f578063e7b99ec714610a7f578063e8a3d48514610aaa578063e985e9c514610ad5578063f2fde38b14610b12576102ae565b8063d78e89bd146109ee578063da3ef23f14610a19578063db4bec4414610a42576102ae565b8063b88d4fde146108eb578063bf0d96c314610914578063c66828621461093f578063c87b56dd1461096a578063d2cab056146109a7578063d5abeb01146109c3576102ae565b80639ec571d51161012e5780639ec571d5146107d8578063a0712d6814610801578063a22cb4651461081d578063a2e6961314610846578063ad2f852a14610883578063b5b1cd7c146108ae576102ae565b80637696e088146106da5780637cb64759146107035780637dc429751461072c5780638693da20146107575780638da5cb5b1461078257806395d89b41146107ad576102ae565b80633ccfd60b116102195780636352211e116101d25780636352211e146105ca578063698c8765146106075780636c0360eb1461063057806370a082311461065b578063715018a61461069857806373c7400e146106af576102ae565b80633ccfd60b146104e257806342842e0e146104f9578063481fbef01461052257806351fb012d1461054b57806355f804b3146105765780635c975abb1461059f576102ae565b806318160ddd1161026b57806318160ddd146103d35780631d4b4a83146103fe57806323b872dd146104275780632a55205a146104505780632eb4a7ab1461048e5780633b91ceef146104b9576102ae565b806301ffc9a7146102b3578063052d9e7e146102f057806306fdde0314610319578063081812fc14610344578063095ea7b31461038157806316c38b3c146103aa575b600080fd5b3480156102bf57600080fd5b506102da60048036038101906102d59190613bf5565b610b3b565b6040516102e79190614227565b60405180910390f35b3480156102fc57600080fd5b5061031760048036038101906103129190613b9b565b610b7d565b005b34801561032557600080fd5b5061032e610c16565b60405161033b919061425d565b60405180910390f35b34801561035057600080fd5b5061036b60048036038101906103669190613c98565b610ca8565b6040516103789190614197565b60405180910390f35b34801561038d57600080fd5b506103a860048036038101906103a39190613b5b565b610d24565b005b3480156103b657600080fd5b506103d160048036038101906103cc9190613b9b565b610e2f565b005b3480156103df57600080fd5b506103e8610ec8565b6040516103f5919061443f565b60405180910390f35b34801561040a57600080fd5b50610425600480360381019061042091906139d8565b610edf565b005b34801561043357600080fd5b5061044e60048036038101906104499190613a45565b610f9f565b005b34801561045c57600080fd5b5061047760048036038101906104729190613d65565b610faf565b6040516104859291906141fe565b60405180910390f35b34801561049a57600080fd5b506104a3610fe9565b6040516104b09190614242565b60405180910390f35b3480156104c557600080fd5b506104e060048036038101906104db9190613d65565b610fef565b005b3480156104ee57600080fd5b506104f761107d565b005b34801561050557600080fd5b50610520600480360381019061051b9190613a45565b611179565b005b34801561052e57600080fd5b5061054960048036038101906105449190613c98565b611199565b005b34801561055757600080fd5b5061056061121f565b60405161056d9190614227565b60405180910390f35b34801561058257600080fd5b5061059d60048036038101906105989190613c4f565b611232565b005b3480156105ab57600080fd5b506105b46112c8565b6040516105c19190614227565b60405180910390f35b3480156105d657600080fd5b506105f160048036038101906105ec9190613c98565b6112db565b6040516105fe9190614197565b60405180910390f35b34801561061357600080fd5b5061062e60048036038101906106299190613cc5565b6112f1565b005b34801561063c57600080fd5b506106456113cb565b604051610652919061425d565b60405180910390f35b34801561066757600080fd5b50610682600480360381019061067d91906139d8565b611459565b60405161068f919061443f565b60405180910390f35b3480156106a457600080fd5b506106ad611529565b005b3480156106bb57600080fd5b506106c46115b1565b6040516106d1919061445a565b60405180910390f35b3480156106e657600080fd5b5061070160048036038101906106fc9190613d65565b6115cf565b005b34801561070f57600080fd5b5061072a60048036038101906107259190613bc8565b61165d565b005b34801561073857600080fd5b506107416116e3565b60405161074e919061443f565b60405180910390f35b34801561076357600080fd5b5061076c6116e9565b604051610779919061443f565b60405180910390f35b34801561078e57600080fd5b506107976116ef565b6040516107a49190614197565b60405180910390f35b3480156107b957600080fd5b506107c2611719565b6040516107cf919061425d565b60405180910390f35b3480156107e457600080fd5b506107ff60048036038101906107fa9190613c98565b6117ab565b005b61081b60048036038101906108169190613c98565b611831565b005b34801561082957600080fd5b50610844600480360381019061083f9190613b1b565b611b33565b005b34801561085257600080fd5b5061086d60048036038101906108689190613c98565b611cab565b60405161087a919061443f565b60405180910390f35b34801561088f57600080fd5b50610898611cf5565b6040516108a59190614197565b60405180910390f35b3480156108ba57600080fd5b506108d560048036038101906108d091906139d8565b611d1b565b6040516108e2919061443f565b60405180910390f35b3480156108f757600080fd5b50610912600480360381019061090d9190613a98565b611d33565b005b34801561092057600080fd5b50610929611daf565b604051610936919061443f565b60405180910390f35b34801561094b57600080fd5b50610954611db5565b604051610961919061425d565b60405180910390f35b34801561097657600080fd5b50610991600480360381019061098c9190613c98565b611e43565b60405161099e919061425d565b60405180910390f35b6109c160048036038101906109bc9190613d05565b611eed565b005b3480156109cf57600080fd5b506109d86121d9565b6040516109e5919061443f565b60405180910390f35b3480156109fa57600080fd5b50610a036121df565b604051610a10919061443f565b60405180910390f35b348015610a2557600080fd5b50610a406004803603810190610a3b9190613c4f565b6121e5565b005b348015610a4e57600080fd5b50610a696004803603810190610a6491906139d8565b61227b565b604051610a76919061443f565b60405180910390f35b348015610a8b57600080fd5b50610a94612293565b604051610aa1919061443f565b60405180910390f35b348015610ab657600080fd5b50610abf612299565b604051610acc919061425d565b60405180910390f35b348015610ae157600080fd5b50610afc6004803603810190610af79190613a05565b612327565b604051610b099190614227565b60405180910390f35b348015610b1e57600080fd5b50610b396004803603810190610b3491906139d8565b6123bb565b005b6000632a55205a60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610b765750610b75826124b3565b5b9050919050565b610b85612595565b73ffffffffffffffffffffffffffffffffffffffff16610ba36116ef565b73ffffffffffffffffffffffffffffffffffffffff1614610bf9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bf09061431f565b60405180910390fd5b80600f60006101000a81548160ff02191690831515021790555050565b606060028054610c259061474c565b80601f0160208091040260200160405190810160405280929190818152602001828054610c519061474c565b8015610c9e5780601f10610c7357610100808354040283529160200191610c9e565b820191906000526020600020905b815481529060010190602001808311610c8157829003601f168201915b5050505050905090565b6000610cb38261259d565b610ce9576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610d2f826112db565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610d97576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610db6612595565b73ffffffffffffffffffffffffffffffffffffffff1614158015610de85750610de681610de1612595565b612327565b155b15610e1f576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610e2a8383836125eb565b505050565b610e37612595565b73ffffffffffffffffffffffffffffffffffffffff16610e556116ef565b73ffffffffffffffffffffffffffffffffffffffff1614610eab576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ea29061431f565b60405180910390fd5b80600f60016101000a81548160ff02191690831515021790555050565b6000610ed261269d565b6001546000540303905090565b610ee7612595565b73ffffffffffffffffffffffffffffffffffffffff16610f056116ef565b73ffffffffffffffffffffffffffffffffffffffff1614610f5b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f529061431f565b60405180910390fd5b806015600c6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b610faa8383836126a6565b505050565b6000806015600c9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16610fde84611cab565b915091509250929050565b60105481565b610ff7612595565b73ffffffffffffffffffffffffffffffffffffffff166110156116ef565b73ffffffffffffffffffffffffffffffffffffffff161461106b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110629061431f565b60405180910390fd5b81601181905550806012819055505050565b611085612595565b73ffffffffffffffffffffffffffffffffffffffff166110a36116ef565b73ffffffffffffffffffffffffffffffffffffffff16146110f9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110f09061431f565b60405180910390fd5b60006111036116ef565b73ffffffffffffffffffffffffffffffffffffffff164760405161112690614182565b60006040518083038185875af1925050503d8060008114611163576040519150601f19603f3d011682016040523d82523d6000602084013e611168565b606091505b505090508061117657600080fd5b50565b61119483838360405180602001604052806000815250611d33565b505050565b6111a1612595565b73ffffffffffffffffffffffffffffffffffffffff166111bf6116ef565b73ffffffffffffffffffffffffffffffffffffffff1614611215576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161120c9061431f565b60405180910390fd5b8060138190555050565b600f60009054906101000a900460ff1681565b61123a612595565b73ffffffffffffffffffffffffffffffffffffffff166112586116ef565b73ffffffffffffffffffffffffffffffffffffffff16146112ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112a59061431f565b60405180910390fd5b80600b90805190602001906112c492919061373e565b5050565b600f60019054906101000a900460ff1681565b60006112e682612b5c565b600001519050919050565b6112f9612595565b73ffffffffffffffffffffffffffffffffffffffff166113176116ef565b73ffffffffffffffffffffffffffffffffffffffff161461136d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113649061431f565b60405180910390fd5b600f60019054906101000a900460ff16156113bd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113b49061433f565b60405180910390fd5b6113c78183612deb565b5050565b600b80546113d89061474c565b80601f01602080910402602001604051908101604052809291908181526020018280546114049061474c565b80156114515780601f1061142657610100808354040283529160200191611451565b820191906000526020600020905b81548152906001019060200180831161143457829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156114c1576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b611531612595565b73ffffffffffffffffffffffffffffffffffffffff1661154f6116ef565b73ffffffffffffffffffffffffffffffffffffffff16146115a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161159c9061431f565b60405180910390fd5b6115af6000612e09565b565b601560009054906101000a90046bffffffffffffffffffffffff1681565b6115d7612595565b73ffffffffffffffffffffffffffffffffffffffff166115f56116ef565b73ffffffffffffffffffffffffffffffffffffffff161461164b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116429061431f565b60405180910390fd5b81600d8190555080600e819055505050565b611665612595565b73ffffffffffffffffffffffffffffffffffffffff166116836116ef565b73ffffffffffffffffffffffffffffffffffffffff16146116d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116d09061431f565b60405180910390fd5b8060108190555050565b60125481565b600e5481565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600380546117289061474c565b80601f01602080910402602001604051908101604052809291908181526020018280546117549061474c565b80156117a15780601f10611776576101008083540402835291602001916117a1565b820191906000526020600020905b81548152906001019060200180831161178457829003601f168201915b5050505050905090565b6117b3612595565b73ffffffffffffffffffffffffffffffffffffffff166117d16116ef565b73ffffffffffffffffffffffffffffffffffffffff1614611827576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161181e9061431f565b60405180910390fd5b8060148190555050565b600061183b610ec8565b9050600f60019054906101000a900460ff161561188d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118849061433f565b60405180910390fd5b600f60009054906101000a900460ff16156118dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118d49061439f565b60405180910390fd5b60008211611920576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119179061437f565b60405180910390fd5b601454828261192f919061455f565b1115611970576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119679061441f565b60405180910390fd5b6119786116ef565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611acf5760125482600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546119f8919061455f565b1115611a39576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a309061427f565b60405180910390fd5b601254821115611a7e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a75906143bf565b60405180910390fd5b81600e54611a8c91906145e6565b341015611ace576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ac5906142ff565b60405180910390fd5b5b81600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611b1e919061455f565b92505081905550611b2f3383612deb565b5050565b611b3b612595565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611ba0576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000611bad612595565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611c5a612595565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611c9f9190614227565b60405180910390a35050565b6000601560009054906101000a90046bffffffffffffffffffffffff166bffffffffffffffffffffffff1661271083611ce491906145b5565b611cee91906145e6565b9050919050565b6015600c9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600a6020528060005260406000206000915090505481565b611d3e8484846126a6565b611d5d8373ffffffffffffffffffffffffffffffffffffffff16612ecf565b8015611d725750611d7084848484612ef2565b155b15611da9576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b60115481565b600c8054611dc29061474c565b80601f0160208091040260200160405190810160405280929190818152602001828054611dee9061474c565b8015611e3b5780601f10611e1057610100808354040283529160200191611e3b565b820191906000526020600020905b815481529060010190602001808311611e1e57829003601f168201915b505050505081565b6060611e4e8261259d565b611e8d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e849061435f565b60405180910390fd5b6000611e97613052565b90506000815111611eb75760405180602001604052806000815250611ee5565b80611ec1846130e4565b600c604051602001611ed593929190614151565b6040516020818303038152906040525b915050919050565b6000611ef7610ec8565b905060008411611f3c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f33906142df565b60405180910390fd5b6014548482611f4b919061455f565b1115611f8c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f83906143ff565b60405180910390fd5b600f60009054906101000a900460ff16611fdb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fd2906143df565b60405180910390fd5b60115484600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612029919061455f565b111561206a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120619061427f565b60405180910390fd5b83600d5461207891906145e6565b3410156120ba576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120b1906142ff565b60405180910390fd5b6000336040516020016120cd9190614136565b604051602081830303815290604052805190602001209050612133848480806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f8201169050808301925050505050505060105483613245565b612172576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121699061429f565b60405180910390fd5b84600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546121c1919061455f565b925050819055506121d23386612deb565b5050505050565b60145481565b60135481565b6121ed612595565b73ffffffffffffffffffffffffffffffffffffffff1661220b6116ef565b73ffffffffffffffffffffffffffffffffffffffff1614612261576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122589061431f565b60405180910390fd5b80600c908051906020019061227792919061373e565b5050565b60096020528060005260406000206000915090505481565b600d5481565b601680546122a69061474c565b80601f01602080910402602001604051908101604052809291908181526020018280546122d29061474c565b801561231f5780601f106122f45761010080835404028352916020019161231f565b820191906000526020600020905b81548152906001019060200180831161230257829003601f168201915b505050505081565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6123c3612595565b73ffffffffffffffffffffffffffffffffffffffff166123e16116ef565b73ffffffffffffffffffffffffffffffffffffffff1614612437576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161242e9061431f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156124a7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161249e906142bf565b60405180910390fd5b6124b081612e09565b50565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061257e57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061258e575061258d8261325c565b5b9050919050565b600033905090565b6000816125a861269d565b111580156125b7575060005482105b80156125e4575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006001905090565b60006126b182612b5c565b90508373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461271c576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff1661273d612595565b73ffffffffffffffffffffffffffffffffffffffff16148061276c575061276b85612766612595565b612327565b5b806127b1575061277a612595565b73ffffffffffffffffffffffffffffffffffffffff1661279984610ca8565b73ffffffffffffffffffffffffffffffffffffffff16145b9050806127ea576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612851576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61285e85858560016132c6565b61286a600084876125eb565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600460008581526020019081526020016000209050848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060006001850190506000600460008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415612aea576000548214612ae957878160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b505050828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612b5585858560016132cc565b5050505050565b612b646137c4565b600082905080612b7261269d565b11158015612b81575060005481105b15612db4576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff16151515158152505090508060400151612db257600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612c96578092505050612de6565b5b600115612db157818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612dac578092505050612de6565b612c97565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b612e058282604051806020016040528060008152506132d2565b5050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612f18612595565b8786866040518563ffffffff1660e01b8152600401612f3a94939291906141b2565b602060405180830381600087803b158015612f5457600080fd5b505af1925050508015612f8557506040513d601f19601f82011682018060405250810190612f829190613c22565b60015b612fff573d8060008114612fb5576040519150601f19603f3d011682016040523d82523d6000602084013e612fba565b606091505b50600081511415612ff7576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600b80546130619061474c565b80601f016020809104026020016040519081016040528092919081815260200182805461308d9061474c565b80156130da5780601f106130af576101008083540402835291602001916130da565b820191906000526020600020905b8154815290600101906020018083116130bd57829003601f168201915b5050505050905090565b6060600082141561312c576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050613240565b600082905060005b6000821461315e578080613147906147af565b915050600a8261315791906145b5565b9150613134565b60008167ffffffffffffffff81111561317a57613179614909565b5b6040519080825280601f01601f1916602001820160405280156131ac5781602001600182028036833780820191505090505b5090505b60008514613239576001826131c59190614640565b9150600a856131d4919061481c565b60306131e0919061455f565b60f81b8183815181106131f6576131f56148da565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561323291906145b5565b94506131b0565b8093505050505b919050565b60008261325285846132e4565b1490509392505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b50505050565b50505050565b6132df8383836001613359565b505050565b60008082905060005b845181101561334e57600085828151811061330b5761330a6148da565b5b6020026020010151905080831161332d576133268382613727565b925061333a565b6133378184613727565b92505b508080613346906147af565b9150506132ed565b508091505092915050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614156133c6576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000841415613401576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61340e60008683876132c6565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000819050600085820190508380156135d857506135d78773ffffffffffffffffffffffffffffffffffffffff16612ecf565b5b1561369e575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461364d6000888480600101955088612ef2565b613683576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b808214156135de57826000541461369957600080fd5b61370a565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a48082141561369f575b81600081905550505061372060008683876132cc565b5050505050565b600082600052816020526040600020905092915050565b82805461374a9061474c565b90600052602060002090601f01602090048101928261376c57600085556137b3565b82601f1061378557805160ff19168380011785556137b3565b828001600101855582156137b3579182015b828111156137b2578251825591602001919060010190613797565b5b5090506137c09190613807565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b80821115613820576000816000905550600101613808565b5090565b60006138376138328461449a565b614475565b90508281526020810184848401111561385357613852614947565b5b61385e84828561470a565b509392505050565b6000613879613874846144cb565b614475565b90508281526020810184848401111561389557613894614947565b5b6138a084828561470a565b509392505050565b6000813590506138b781614cbf565b92915050565b60008083601f8401126138d3576138d261493d565b5b8235905067ffffffffffffffff8111156138f0576138ef614938565b5b60208301915083602082028301111561390c5761390b614942565b5b9250929050565b60008135905061392281614cd6565b92915050565b60008135905061393781614ced565b92915050565b60008135905061394c81614d04565b92915050565b60008151905061396181614d04565b92915050565b600082601f83011261397c5761397b61493d565b5b813561398c848260208601613824565b91505092915050565b600082601f8301126139aa576139a961493d565b5b81356139ba848260208601613866565b91505092915050565b6000813590506139d281614d1b565b92915050565b6000602082840312156139ee576139ed614951565b5b60006139fc848285016138a8565b91505092915050565b60008060408385031215613a1c57613a1b614951565b5b6000613a2a858286016138a8565b9250506020613a3b858286016138a8565b9150509250929050565b600080600060608486031215613a5e57613a5d614951565b5b6000613a6c868287016138a8565b9350506020613a7d868287016138a8565b9250506040613a8e868287016139c3565b9150509250925092565b60008060008060808587031215613ab257613ab1614951565b5b6000613ac0878288016138a8565b9450506020613ad1878288016138a8565b9350506040613ae2878288016139c3565b925050606085013567ffffffffffffffff811115613b0357613b0261494c565b5b613b0f87828801613967565b91505092959194509250565b60008060408385031215613b3257613b31614951565b5b6000613b40858286016138a8565b9250506020613b5185828601613913565b9150509250929050565b60008060408385031215613b7257613b71614951565b5b6000613b80858286016138a8565b9250506020613b91858286016139c3565b9150509250929050565b600060208284031215613bb157613bb0614951565b5b6000613bbf84828501613913565b91505092915050565b600060208284031215613bde57613bdd614951565b5b6000613bec84828501613928565b91505092915050565b600060208284031215613c0b57613c0a614951565b5b6000613c198482850161393d565b91505092915050565b600060208284031215613c3857613c37614951565b5b6000613c4684828501613952565b91505092915050565b600060208284031215613c6557613c64614951565b5b600082013567ffffffffffffffff811115613c8357613c8261494c565b5b613c8f84828501613995565b91505092915050565b600060208284031215613cae57613cad614951565b5b6000613cbc848285016139c3565b91505092915050565b60008060408385031215613cdc57613cdb614951565b5b6000613cea858286016139c3565b9250506020613cfb858286016138a8565b9150509250929050565b600080600060408486031215613d1e57613d1d614951565b5b6000613d2c868287016139c3565b935050602084013567ffffffffffffffff811115613d4d57613d4c61494c565b5b613d59868287016138bd565b92509250509250925092565b60008060408385031215613d7c57613d7b614951565b5b6000613d8a858286016139c3565b9250506020613d9b858286016139c3565b9150509250929050565b613dae81614674565b82525050565b613dc5613dc082614674565b6147f8565b82525050565b613dd481614686565b82525050565b613de381614692565b82525050565b6000613df482614511565b613dfe8185614527565b9350613e0e818560208601614719565b613e1781614956565b840191505092915050565b6000613e2d8261451c565b613e378185614543565b9350613e47818560208601614719565b613e5081614956565b840191505092915050565b6000613e668261451c565b613e708185614554565b9350613e80818560208601614719565b80840191505092915050565b60008154613e998161474c565b613ea38186614554565b94506001821660008114613ebe5760018114613ecf57613f02565b60ff19831686528186019350613f02565b613ed8856144fc565b60005b83811015613efa57815481890152600182019150602081019050613edb565b838801955050505b50505092915050565b6000613f18602583614543565b9150613f2382614974565b604082019050919050565b6000613f3b600e83614543565b9150613f46826149c3565b602082019050919050565b6000613f5e602683614543565b9150613f69826149ec565b604082019050919050565b6000613f81602183614543565b9150613f8c82614a3b565b604082019050919050565b6000613fa4601283614543565b9150613faf82614a8a565b602082019050919050565b6000613fc7602083614543565b9150613fd282614ab3565b602082019050919050565b6000613fea601783614543565b9150613ff582614adc565b602082019050919050565b600061400d602f83614543565b915061401882614b05565b604082019050919050565b6000614030602283614543565b915061403b82614b54565b604082019050919050565b6000614053601783614543565b915061405e82614ba3565b602082019050919050565b6000614076603383614543565b915061408182614bcc565b604082019050919050565b6000614099600083614538565b91506140a482614c1b565b600082019050919050565b60006140bc602283614543565b91506140c782614c1e565b604082019050919050565b60006140df601283614543565b91506140ea82614c6d565b602082019050919050565b6000614102601383614543565b915061410d82614c96565b602082019050919050565b614121816146e8565b82525050565b614130816146f2565b82525050565b60006141428284613db4565b60148201915081905092915050565b600061415d8286613e5b565b91506141698285613e5b565b91506141758284613e8c565b9150819050949350505050565b600061418d8261408c565b9150819050919050565b60006020820190506141ac6000830184613da5565b92915050565b60006080820190506141c76000830187613da5565b6141d46020830186613da5565b6141e16040830185614118565b81810360608301526141f38184613de9565b905095945050505050565b60006040820190506142136000830185613da5565b6142206020830184614118565b9392505050565b600060208201905061423c6000830184613dcb565b92915050565b60006020820190506142576000830184613dda565b92915050565b600060208201905081810360008301526142778184613e22565b905092915050565b6000602082019050818103600083015261429881613f0b565b9050919050565b600060208201905081810360008301526142b881613f2e565b9050919050565b600060208201905081810360008301526142d881613f51565b9050919050565b600060208201905081810360008301526142f881613f74565b9050919050565b6000602082019050818103600083015261431881613f97565b9050919050565b6000602082019050818103600083015261433881613fba565b9050919050565b6000602082019050818103600083015261435881613fdd565b9050919050565b6000602082019050818103600083015261437881614000565b9050919050565b6000602082019050818103600083015261439881614023565b9050919050565b600060208201905081810360008301526143b881614046565b9050919050565b600060208201905081810360008301526143d881614069565b9050919050565b600060208201905081810360008301526143f8816140af565b9050919050565b60006020820190508181036000830152614418816140d2565b9050919050565b60006020820190508181036000830152614438816140f5565b9050919050565b60006020820190506144546000830184614118565b92915050565b600060208201905061446f6000830184614127565b92915050565b600061447f614490565b905061448b828261477e565b919050565b6000604051905090565b600067ffffffffffffffff8211156144b5576144b4614909565b5b6144be82614956565b9050602081019050919050565b600067ffffffffffffffff8211156144e6576144e5614909565b5b6144ef82614956565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b600061456a826146e8565b9150614575836146e8565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156145aa576145a961484d565b5b828201905092915050565b60006145c0826146e8565b91506145cb836146e8565b9250826145db576145da61487c565b5b828204905092915050565b60006145f1826146e8565b91506145fc836146e8565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156146355761463461484d565b5b828202905092915050565b600061464b826146e8565b9150614656836146e8565b9250828210156146695761466861484d565b5b828203905092915050565b600061467f826146c8565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b60006bffffffffffffffffffffffff82169050919050565b82818337600083830152505050565b60005b8381101561473757808201518184015260208101905061471c565b83811115614746576000848401525b50505050565b6000600282049050600182168061476457607f821691505b60208210811415614778576147776148ab565b5b50919050565b61478782614956565b810181811067ffffffffffffffff821117156147a6576147a5614909565b5b80604052505050565b60006147ba826146e8565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156147ed576147ec61484d565b5b600182019050919050565b60006148038261480a565b9050919050565b600061481582614967565b9050919050565b6000614827826146e8565b9150614832836146e8565b9250826148425761484161487c565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f596f75277265206e6f7420616c6c6f77656420746f206d696e7420746869732060008201527f4d75636821000000000000000000000000000000000000000000000000000000602082015250565b7f496e76616c69642070726f6f6621000000000000000000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f5175616e74697479204d75737420426520486967686572205468616e205a657260008201527f6f00000000000000000000000000000000000000000000000000000000000000602082015250565b7f496e73756666696369656e742046756e64730000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f54686520636f6e74726163742069732070617573656421000000000000000000600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f5175616e74697479204d75737420426520486967686572205468616e205a657260008201527f6f21000000000000000000000000000000000000000000000000000000000000602082015250565b7f5075626c6963206d696e742069732064697361626c6521000000000000000000600082015250565b7f596f75277265204e6f7420416c6c6f77656420546f204d696e74206d6f72652060008201527f7468616e206d61784d696e7420416d6f756e7400000000000000000000000000602082015250565b50565b7f5468652077686974656c6973742073616c65206973206e6f7420656e61626c6560008201527f6421000000000000000000000000000000000000000000000000000000000000602082015250565b7f4d617820537570706c7920526561636865640000000000000000000000000000600082015250565b7f4d617820537570706c7920526561636865642100000000000000000000000000600082015250565b614cc881614674565b8114614cd357600080fd5b50565b614cdf81614686565b8114614cea57600080fd5b50565b614cf681614692565b8114614d0157600080fd5b50565b614d0d8161469c565b8114614d1857600080fd5b50565b614d24816146e8565b8114614d2f57600080fd5b5056fea2646970667358221220e9d69c315b42e478a4b48c05dc614a8546caa8ed3da917363dc73b00481b09dc64736f6c63430008070033

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

000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000002ee0000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d63474e6a6269414b32657a76557935467646736157676569426e546e38366b564b6674546b684a43676a31662f00000000000000000000

-----Decoded View---------------
Arg [0] : _initBaseURI (string): ipfs://QmcGNjbiAK2ezvUy5FvFsaWgeiBnTn86kVKftTkhJCgj1f/
Arg [1] : _royaltyFeesInBips (uint96): 750

-----Encoded View---------------
5 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 00000000000000000000000000000000000000000000000000000000000002ee
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000036
Arg [3] : 697066733a2f2f516d63474e6a6269414b32657a765579354676467361576765
Arg [4] : 69426e546e38366b564b6674546b684a43676a31662f00000000000000000000


Deployed Bytecode Sourcemap

47146:5804:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52552:240;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51370:103;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;32456:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33959:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33522:371;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;51481:83;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;28592:303;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;52032:107;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34824:170;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;52147:247;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;;:::i;:::-;;;;;;;;47583:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50901:144;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;52800:147;;;;;;;;;;;;;:::i;:::-;;35065:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;51053:96;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47508:36;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51572:104;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47551:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32264:125;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51684:181;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47342:21;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29712:206;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7119:103;;;;;;;;;;;;;:::i;:::-;;47767:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50707:186;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;51258:104;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47654:29;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47463:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6468:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32625:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51157:93;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;49028:888;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34235:287;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;52402:142;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47805:29;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47285:48;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35321:369;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47615:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47370:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50057:642;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48127:893;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47726:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47690:29;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51873:151;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47227:51;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47414:42;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47841:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34593:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7377:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;52552:240;52690:4;52734:10;52719:25;;:11;:25;;;;:65;;;;52748:36;52772:11;52748:23;:36::i;:::-;52719:65;52712:72;;52552:240;;;:::o;51370:103::-;6699:12;:10;:12::i;:::-;6688:23;;:7;:5;:7::i;:::-;:23;;;6680:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;51459:6:::1;51440:16;;:25;;;;;;;;;;;;;;;;;;51370:103:::0;:::o;32456:100::-;32510:13;32543:5;32536:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32456:100;:::o;33959:204::-;34027:7;34052:16;34060:7;34052;:16::i;:::-;34047:64;;34077:34;;;;;;;;;;;;;;34047:64;34131:15;:24;34147:7;34131:24;;;;;;;;;;;;;;;;;;;;;34124:31;;33959:204;;;:::o;33522:371::-;33595:13;33611:24;33627:7;33611:15;:24::i;:::-;33595:40;;33656:5;33650:11;;:2;:11;;;33646:48;;;33670:24;;;;;;;;;;;;;;33646:48;33727:5;33711:21;;:12;:10;:12::i;:::-;:21;;;;:63;;;;;33737:37;33754:5;33761:12;:10;:12::i;:::-;33737:16;:37::i;:::-;33736:38;33711:63;33707:138;;;33798:35;;;;;;;;;;;;;;33707:138;33857:28;33866:2;33870:7;33879:5;33857:8;:28::i;:::-;33584:309;33522:371;;:::o;51481:83::-;6699:12;:10;:12::i;:::-;6688:23;;:7;:5;:7::i;:::-;:23;;;6680:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;51550:6:::1;51541;;:15;;;;;;;;;;;;;;;;;;51481:83:::0;:::o;28592:303::-;28636:7;28861:15;:13;:15::i;:::-;28846:12;;28830:13;;:28;:46;28823:53;;28592:303;:::o;52032:107::-;6699:12;:10;:12::i;:::-;6688:23;;:7;:5;:7::i;:::-;:23;;;6680:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;52123:8:::1;52106:14;;:25;;;;;;;;;;;;;;;;;;52032:107:::0;:::o;34824:170::-;34958:28;34968:4;34974:2;34978:7;34958:9;:28::i;:::-;34824:170;;;:::o;52147:247::-;52256:7;52265;52341:14;;;;;;;;;;;52357:28;52374:10;52357:16;:28::i;:::-;52333:53;;;;52147:247;;;;;:::o;47583:25::-;;;;:::o;50901:144::-;6699:12;:10;:12::i;:::-;6688:23;;:7;:5;:7::i;:::-;:23;;;6680:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;50997:10:::1;50982:12;:25;;;;51030:7;51018:9;:19;;;;50901:144:::0;;:::o;52800:147::-;6699:12;:10;:12::i;:::-;6688:23;;:7;:5;:7::i;:::-;:23;;;6680:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;52849:7:::1;52870;:5;:7::i;:::-;52862:21;;52891;52862:55;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52848:69;;;52936:2;52928:11;;;::::0;::::1;;52837:110;52800:147::o:0;35065:185::-;35203:39;35220:4;35226:2;35230:7;35203:39;;;;;;;;;;;;:16;:39::i;:::-;35065:185;;;:::o;51053:96::-;6699:12;:10;:12::i;:::-;6688:23;;:7;:5;:7::i;:::-;:23;;;6680:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;51133:8:::1;51121:9;:20;;;;51053:96:::0;:::o;47508:36::-;;;;;;;;;;;;;:::o;51572:104::-;6699:12;:10;:12::i;:::-;6688:23;;:7;:5;:7::i;:::-;:23;;;6680:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;51657:11:::1;51647:7;:21;;;;;;;;;;;;:::i;:::-;;51572:104:::0;:::o;47551:25::-;;;;;;;;;;;;;:::o;32264:125::-;32328:7;32355:21;32368:7;32355:12;:21::i;:::-;:26;;;32348:33;;32264:125;;;:::o;51684:181::-;6699:12;:10;:12::i;:::-;6688:23;;:7;:5;:7::i;:::-;:23;;;6680:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;51783:6:::1;;;;;;;;;;;51782:7;51774:43;;;;;;;;;;;;:::i;:::-;;;;;;;;;51828:29;51838:8;51848;51828:9;:29::i;:::-;51684:181:::0;;:::o;47342:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;29712:206::-;29776:7;29817:1;29800:19;;:5;:19;;;29796:60;;;29828:28;;;;;;;;;;;;;;29796:60;29882:12;:19;29895:5;29882:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;29874:36;;29867:43;;29712:206;;;:::o;7119:103::-;6699:12;:10;:12::i;:::-;6688:23;;:7;:5;:7::i;:::-;:23;;;6680:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;7184:30:::1;7211:1;7184:18;:30::i;:::-;7119:103::o:0;47767:31::-;;;;;;;;;;;;;:::o;50707:186::-;6699:12;:10;:12::i;:::-;6688:23;;:7;:5;:7::i;:::-;:23;;;6680:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;50836:14:::1;50820:13;:30;;;;50874:11;50861:10;:24;;;;50707:186:::0;;:::o;51258:104::-;6699:12;:10;:12::i;:::-;6688:23;;:7;:5;:7::i;:::-;:23;;;6680:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;51343:11:::1;51330:10;:24;;;;51258:104:::0;:::o;47654:29::-;;;;:::o;47463:38::-;;;;:::o;6468:87::-;6514:7;6541:6;;;;;;;;;;;6534:13;;6468:87;:::o;32625:104::-;32681:13;32714:7;32707:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32625:104;:::o;51157:93::-;6699:12;:10;:12::i;:::-;6688:23;;:7;:5;:7::i;:::-;:23;;;6680:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;51235:7:::1;51223:9;:19;;;;51157:93:::0;:::o;49028:888::-;49088:14;49105:13;:11;:13::i;:::-;49088:30;;49138:6;;;;;;;;;;;49137:7;49129:43;;;;;;;;;;;;:::i;:::-;;;;;;;;;49192:16;;;;;;;;;;;49191:17;49183:53;;;;;;;;;;;;:::i;:::-;;;;;;;;;49266:1;49255:8;:12;49247:59;;;;;;;;;;;;:::i;:::-;;;;;;;;;49346:9;;49334:8;49325:6;:17;;;;:::i;:::-;:30;;49317:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;49410:7;:5;:7::i;:::-;49396:21;;:10;:21;;;49392:427;;49496:9;;49484:8;49456:13;:25;49470:10;49456:25;;;;;;;;;;;;;;;;:36;;;;:::i;:::-;:49;;49434:144;;;;;;;;;;;;:::i;:::-;;;;;;;;;49631:9;;49619:8;:21;;49593:134;;;;;;;;;;;;:::i;:::-;;;;;;;;;49776:8;49763:10;;:21;;;;:::i;:::-;49750:9;:34;;49742:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;49392:427;49858:8;49829:13;:25;49843:10;49829:25;;;;;;;;;;;;;;;;:37;;;;;;;:::i;:::-;;;;;;;;49877:31;49887:10;49899:8;49877:9;:31::i;:::-;49077:839;49028:888;:::o;34235:287::-;34346:12;:10;:12::i;:::-;34334:24;;:8;:24;;;34330:54;;;34367:17;;;;;;;;;;;;;;34330:54;34442:8;34397:18;:32;34416:12;:10;:12::i;:::-;34397:32;;;;;;;;;;;;;;;:42;34430:8;34397:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;34495:8;34466:48;;34481:12;:10;:12::i;:::-;34466:48;;;34505:8;34466:48;;;;;;:::i;:::-;;;;;;;;34235:287;;:::o;52402:142::-;52469:7;52519:17;;;;;;;;;;;52496:40;;52510:5;52497:10;:18;;;;:::i;:::-;52496:40;;;;:::i;:::-;52489:47;;52402:142;;;:::o;47805:29::-;;;;;;;;;;;;;:::o;47285:48::-;;;;;;;;;;;;;;;;;:::o;35321:369::-;35488:28;35498:4;35504:2;35508:7;35488:9;:28::i;:::-;35531:15;:2;:13;;;:15::i;:::-;:76;;;;;35551:56;35582:4;35588:2;35592:7;35601:5;35551:30;:56::i;:::-;35550:57;35531:76;35527:156;;;35631:40;;;;;;;;;;;;;;35527:156;35321:369;;;;:::o;47615:32::-;;;;:::o;47370:37::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;50057:642::-;50175:13;50228:16;50236:7;50228;:16::i;:::-;50206:113;;;;;;;;;;;;:::i;:::-;;;;;;;;;50332:28;50363:10;:8;:10::i;:::-;50332:41;;50435:1;50410:14;50404:28;:32;:287;;;;;;;;;;;;;;;;;50528:14;50569:18;:7;:16;:18::i;:::-;50614:13;50485:165;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;50404:287;50384:307;;;50057:642;;;:::o;48127:893::-;48250:14;48267:13;:11;:13::i;:::-;48250:30;;48310:1;48299:8;:12;48291:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;48389:9;;48377:8;48368:6;:17;;;;:::i;:::-;:30;;48360:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;48440:16;;;;;;;;;;;48432:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;48571:12;;48559:8;48528:16;:28;48545:10;48528:28;;;;;;;;;;;;;;;;:39;;;;:::i;:::-;:55;;48506:142;;;;;;;;;;;;:::i;:::-;;;;;;;;;48696:8;48680:13;;:24;;;;:::i;:::-;48667:9;:37;;48659:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;48738:12;48780:10;48763:28;;;;;;;;:::i;:::-;;;;;;;;;;;;;48753:39;;;;;;48738:54;;48825:50;48844:12;;48825:50;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48858:10;;48870:4;48825:18;:50::i;:::-;48803:114;;;;;;;;;;;;:::i;:::-;;;;;;;;;48962:8;48930:16;:28;48947:10;48930:28;;;;;;;;;;;;;;;;:40;;;;;;;:::i;:::-;;;;;;;;48981:31;48991:10;49003:8;48981:9;:31::i;:::-;48239:781;;48127:893;;;:::o;47726:32::-;;;;:::o;47690:29::-;;;;:::o;51873:151::-;6699:12;:10;:12::i;:::-;6688:23;;:7;:5;:7::i;:::-;:23;;;6680:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;51999:17:::1;51983:13;:33;;;;;;;;;;;;:::i;:::-;;51873:151:::0;:::o;47227:51::-;;;;;;;;;;;;;;;;;:::o;47414:42::-;;;;:::o;47841:25::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;34593:164::-;34690:4;34714:18;:25;34733:5;34714:25;;;;;;;;;;;;;;;:35;34740:8;34714:35;;;;;;;;;;;;;;;;;;;;;;;;;34707:42;;34593:164;;;;:::o;7377:201::-;6699:12;:10;:12::i;:::-;6688:23;;:7;:5;:7::i;:::-;:23;;;6680:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;7486:1:::1;7466:22;;:8;:22;;;;7458:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;7542:28;7561:8;7542:18;:28::i;:::-;7377:201:::0;:::o;29343:305::-;29445:4;29497:25;29482:40;;;:11;:40;;;;:105;;;;29554:33;29539:48;;;:11;:48;;;;29482:105;:158;;;;29604:36;29628:11;29604:23;:36::i;:::-;29482:158;29462:178;;29343:305;;;:::o;5192:98::-;5245:7;5272:10;5265:17;;5192:98;:::o;35945:174::-;36002:4;36045:7;36026:15;:13;:15::i;:::-;:26;;:53;;;;;36066:13;;36056:7;:23;36026:53;:85;;;;;36084:11;:20;36096:7;36084:20;;;;;;;;;;;:27;;;;;;;;;;;;36083:28;36026:85;36019:92;;35945:174;;;:::o;44102:196::-;44244:2;44217:15;:24;44233:7;44217:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;44282:7;44278:2;44262:28;;44271:5;44262:28;;;;;;;;;;;;44102:196;;;:::o;28366:92::-;28422:7;28449:1;28442:8;;28366:92;:::o;39045:2130::-;39160:35;39198:21;39211:7;39198:12;:21::i;:::-;39160:59;;39258:4;39236:26;;:13;:18;;;:26;;;39232:67;;39271:28;;;;;;;;;;;;;;39232:67;39312:22;39354:4;39338:20;;:12;:10;:12::i;:::-;:20;;;:73;;;;39375:36;39392:4;39398:12;:10;:12::i;:::-;39375:16;:36::i;:::-;39338:73;:126;;;;39452:12;:10;:12::i;:::-;39428:36;;:20;39440:7;39428:11;:20::i;:::-;:36;;;39338:126;39312:153;;39483:17;39478:66;;39509:35;;;;;;;;;;;;;;39478:66;39573:1;39559:16;;:2;:16;;;39555:52;;;39584:23;;;;;;;;;;;;;;39555:52;39620:43;39642:4;39648:2;39652:7;39661:1;39620:21;:43::i;:::-;39728:35;39745:1;39749:7;39758:4;39728:8;:35::i;:::-;40089:1;40059:12;:18;40072:4;40059:18;;;;;;;;;;;;;;;:26;;;:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40133:1;40105:12;:16;40118:2;40105:16;;;;;;;;;;;;;;;:24;;;:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40151:31;40185:11;:20;40197:7;40185:20;;;;;;;;;;;40151:54;;40236:2;40220:8;:13;;;:18;;;;;;;;;;;;;;;;;;40286:15;40253:8;:23;;;:49;;;;;;;;;;;;;;;;;;40554:19;40586:1;40576:7;:11;40554:33;;40602:31;40636:11;:24;40648:11;40636:24;;;;;;;;;;;40602:58;;40704:1;40679:27;;:8;:13;;;;;;;;;;;;:27;;;40675:384;;;40889:13;;40874:11;:28;40870:174;;40943:4;40927:8;:13;;;:20;;;;;;;;;;;;;;;;;;40996:13;:28;;;40970:8;:23;;;:54;;;;;;;;;;;;;;;;;;40870:174;40675:384;40034:1036;;;41106:7;41102:2;41087:27;;41096:4;41087:27;;;;;;;;;;;;41125:42;41146:4;41152:2;41156:7;41165:1;41125:20;:42::i;:::-;39149:2026;;39045:2130;;;:::o;31093:1109::-;31155:21;;:::i;:::-;31189:12;31204:7;31189:22;;31272:4;31253:15;:13;:15::i;:::-;:23;;:47;;;;;31287:13;;31280:4;:20;31253:47;31249:886;;;31321:31;31355:11;:17;31367:4;31355:17;;;;;;;;;;;31321:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31396:9;:16;;;31391:729;;31467:1;31441:28;;:9;:14;;;:28;;;31437:101;;31505:9;31498:16;;;;;;31437:101;31840:261;31847:4;31840:261;;;31880:6;;;;;;;;31925:11;:17;31937:4;31925:17;;;;;;;;;;;31913:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31999:1;31973:28;;:9;:14;;;:28;;;31969:109;;32041:9;32034:16;;;;;;31969:109;31840:261;;;31391:729;31302:833;31249:886;32163:31;;;;;;;;;;;;;;31093:1109;;;;:::o;36127:104::-;36196:27;36206:2;36210:8;36196:27;;;;;;;;;;;;:9;:27::i;:::-;36127:104;;:::o;7738:191::-;7812:16;7831:6;;;;;;;;;;;7812:25;;7857:8;7848:6;;:17;;;;;;;;;;;;;;;;;;7912:8;7881:40;;7902:8;7881:40;;;;;;;;;;;;7801:128;7738:191;:::o;9169:326::-;9229:4;9486:1;9464:7;:19;;;:23;9457:30;;9169:326;;;:::o;44790:667::-;44953:4;44990:2;44974:36;;;45011:12;:10;:12::i;:::-;45025:4;45031:7;45040:5;44974:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;44970:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45225:1;45208:6;:13;:18;45204:235;;;45254:40;;;;;;;;;;;;;;45204:235;45397:6;45391:13;45382:6;45378:2;45374:15;45367:38;44970:480;45103:45;;;45093:55;;;:6;:55;;;;45086:62;;;44790:667;;;;;;:::o;49941:108::-;50001:13;50034:7;50027:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49941:108;:::o;2754:723::-;2810:13;3040:1;3031:5;:10;3027:53;;;3058:10;;;;;;;;;;;;;;;;;;;;;3027:53;3090:12;3105:5;3090:20;;3121:14;3146:78;3161:1;3153:4;:9;3146:78;;3179:8;;;;;:::i;:::-;;;;3210:2;3202:10;;;;;:::i;:::-;;;3146:78;;;3234:19;3266:6;3256:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3234:39;;3284:154;3300:1;3291:5;:10;3284:154;;3328:1;3318:11;;;;;:::i;:::-;;;3395:2;3387:5;:10;;;;:::i;:::-;3374:2;:24;;;;:::i;:::-;3361:39;;3344:6;3351;3344:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;3424:2;3415:11;;;;;:::i;:::-;;;3284:154;;;3462:6;3448:21;;;;;2754:723;;;;:::o;923:190::-;1048:4;1101;1072:25;1085:5;1092:4;1072:12;:25::i;:::-;:33;1065:40;;923:190;;;;;:::o;19252:157::-;19337:4;19376:25;19361:40;;;:11;:40;;;;19354:47;;19252:157;;;:::o;46105:159::-;;;;;:::o;46923:158::-;;;;;:::o;36594:163::-;36717:32;36723:2;36727:8;36737:5;36744:4;36717:5;:32::i;:::-;36594:163;;;:::o;1475:675::-;1558:7;1578:20;1601:4;1578:27;;1621:9;1616:497;1640:5;:12;1636:1;:16;1616:497;;;1674:20;1697:5;1703:1;1697:8;;;;;;;;:::i;:::-;;;;;;;;1674:31;;1740:12;1724;:28;1720:382;;1867:42;1882:12;1896;1867:14;:42::i;:::-;1852:57;;1720:382;;;2044:42;2059:12;2073;2044:14;:42::i;:::-;2029:57;;1720:382;1659:454;1654:3;;;;;:::i;:::-;;;;1616:497;;;;2130:12;2123:19;;;1475:675;;;;:::o;37016:1775::-;37155:20;37178:13;;37155:36;;37220:1;37206:16;;:2;:16;;;37202:48;;;37231:19;;;;;;;;;;;;;;37202:48;37277:1;37265:8;:13;37261:44;;;37287:18;;;;;;;;;;;;;;37261:44;37318:61;37348:1;37352:2;37356:12;37370:8;37318:21;:61::i;:::-;37691:8;37656:12;:16;37669:2;37656:16;;;;;;;;;;;;;;;:24;;;:44;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37755:8;37715:12;:16;37728:2;37715:16;;;;;;;;;;;;;;;:29;;;:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37814:2;37781:11;:25;37793:12;37781:25;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;37881:15;37831:11;:25;37843:12;37831:25;;;;;;;;;;;:40;;;:66;;;;;;;;;;;;;;;;;;37914:20;37937:12;37914:35;;37964:11;37993:8;37978:12;:23;37964:37;;38022:4;:23;;;;;38030:15;:2;:13;;;:15::i;:::-;38022:23;38018:641;;;38066:314;38122:12;38118:2;38097:38;;38114:1;38097:38;;;;;;;;;;;;38163:69;38202:1;38206:2;38210:14;;;;;;38226:5;38163:30;:69::i;:::-;38158:174;;38268:40;;;;;;;;;;;;;;38158:174;38375:3;38359:12;:19;;38066:314;;38461:12;38444:13;;:29;38440:43;;38475:8;;;38440:43;38018:641;;;38524:120;38580:14;;;;;;38576:2;38555:40;;38572:1;38555:40;;;;;;;;;;;;38639:3;38623:12;:19;;38524:120;;38018:641;38689:12;38673:13;:28;;;;37631:1082;;38723:60;38752:1;38756:2;38760:12;38774:8;38723:20;:60::i;:::-;37144:1647;37016:1775;;;;:::o;2158:224::-;2226:13;2289:1;2283:4;2276:15;2318:1;2312:4;2305:15;2359:4;2353;2343:21;2334:30;;2158:224;;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:410:1:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:112;;;280:79;;:::i;:::-;249:112;370:41;404:6;399:3;394;370:41;:::i;:::-;90:327;7:410;;;;;:::o;423:412::-;501:5;526:66;542:49;584:6;542:49;:::i;:::-;526:66;:::i;:::-;517:75;;615:6;608:5;601:21;653:4;646:5;642:16;691:3;682:6;677:3;673:16;670:25;667:112;;;698:79;;:::i;:::-;667:112;788:41;822:6;817:3;812;788:41;:::i;:::-;507:328;423:412;;;;;:::o;841:139::-;887:5;925:6;912:20;903:29;;941:33;968:5;941:33;:::i;:::-;841:139;;;;:::o;1003:568::-;1076:8;1086:6;1136:3;1129:4;1121:6;1117:17;1113:27;1103:122;;1144:79;;:::i;:::-;1103:122;1257:6;1244:20;1234:30;;1287:18;1279:6;1276:30;1273:117;;;1309:79;;:::i;:::-;1273:117;1423:4;1415:6;1411:17;1399:29;;1477:3;1469:4;1461:6;1457:17;1447:8;1443:32;1440:41;1437:128;;;1484:79;;:::i;:::-;1437:128;1003:568;;;;;:::o;1577:133::-;1620:5;1658:6;1645:20;1636:29;;1674:30;1698:5;1674:30;:::i;:::-;1577:133;;;;:::o;1716:139::-;1762:5;1800:6;1787:20;1778:29;;1816:33;1843:5;1816:33;:::i;:::-;1716:139;;;;:::o;1861:137::-;1906:5;1944:6;1931:20;1922:29;;1960:32;1986:5;1960:32;:::i;:::-;1861:137;;;;:::o;2004:141::-;2060:5;2091:6;2085:13;2076:22;;2107:32;2133:5;2107:32;:::i;:::-;2004:141;;;;:::o;2164:338::-;2219:5;2268:3;2261:4;2253:6;2249:17;2245:27;2235:122;;2276:79;;:::i;:::-;2235:122;2393:6;2380:20;2418:78;2492:3;2484:6;2477:4;2469:6;2465:17;2418:78;:::i;:::-;2409:87;;2225:277;2164:338;;;;:::o;2522:340::-;2578:5;2627:3;2620:4;2612:6;2608:17;2604:27;2594:122;;2635:79;;:::i;:::-;2594:122;2752:6;2739:20;2777:79;2852:3;2844:6;2837:4;2829:6;2825:17;2777:79;:::i;:::-;2768:88;;2584:278;2522:340;;;;:::o;2868:139::-;2914:5;2952:6;2939:20;2930:29;;2968:33;2995:5;2968:33;:::i;:::-;2868:139;;;;:::o;3013:329::-;3072:6;3121:2;3109:9;3100:7;3096:23;3092:32;3089:119;;;3127:79;;:::i;:::-;3089:119;3247:1;3272:53;3317:7;3308:6;3297:9;3293:22;3272:53;:::i;:::-;3262:63;;3218:117;3013:329;;;;:::o;3348:474::-;3416:6;3424;3473:2;3461:9;3452:7;3448:23;3444:32;3441:119;;;3479:79;;:::i;:::-;3441:119;3599:1;3624:53;3669:7;3660:6;3649:9;3645:22;3624:53;:::i;:::-;3614:63;;3570:117;3726:2;3752:53;3797:7;3788:6;3777:9;3773:22;3752:53;:::i;:::-;3742:63;;3697:118;3348:474;;;;;:::o;3828:619::-;3905:6;3913;3921;3970:2;3958:9;3949:7;3945:23;3941:32;3938:119;;;3976:79;;:::i;:::-;3938:119;4096:1;4121:53;4166:7;4157:6;4146:9;4142:22;4121:53;:::i;:::-;4111:63;;4067:117;4223:2;4249:53;4294:7;4285:6;4274:9;4270:22;4249:53;:::i;:::-;4239:63;;4194:118;4351:2;4377:53;4422:7;4413:6;4402:9;4398:22;4377:53;:::i;:::-;4367:63;;4322:118;3828:619;;;;;:::o;4453:943::-;4548:6;4556;4564;4572;4621:3;4609:9;4600:7;4596:23;4592:33;4589:120;;;4628:79;;:::i;:::-;4589:120;4748:1;4773:53;4818:7;4809:6;4798:9;4794:22;4773:53;:::i;:::-;4763:63;;4719:117;4875:2;4901:53;4946:7;4937:6;4926:9;4922:22;4901:53;:::i;:::-;4891:63;;4846:118;5003:2;5029:53;5074:7;5065:6;5054:9;5050:22;5029:53;:::i;:::-;5019:63;;4974:118;5159:2;5148:9;5144:18;5131:32;5190:18;5182:6;5179:30;5176:117;;;5212:79;;:::i;:::-;5176:117;5317:62;5371:7;5362:6;5351:9;5347:22;5317:62;:::i;:::-;5307:72;;5102:287;4453:943;;;;;;;:::o;5402:468::-;5467:6;5475;5524:2;5512:9;5503:7;5499:23;5495:32;5492:119;;;5530:79;;:::i;:::-;5492:119;5650:1;5675:53;5720:7;5711:6;5700:9;5696:22;5675:53;:::i;:::-;5665:63;;5621:117;5777:2;5803:50;5845:7;5836:6;5825:9;5821:22;5803:50;:::i;:::-;5793:60;;5748:115;5402:468;;;;;:::o;5876:474::-;5944:6;5952;6001:2;5989:9;5980:7;5976:23;5972:32;5969:119;;;6007:79;;:::i;:::-;5969:119;6127:1;6152:53;6197:7;6188:6;6177:9;6173:22;6152:53;:::i;:::-;6142:63;;6098:117;6254:2;6280:53;6325:7;6316:6;6305:9;6301:22;6280:53;:::i;:::-;6270:63;;6225:118;5876:474;;;;;:::o;6356:323::-;6412:6;6461:2;6449:9;6440:7;6436:23;6432:32;6429:119;;;6467:79;;:::i;:::-;6429:119;6587:1;6612:50;6654:7;6645:6;6634:9;6630:22;6612:50;:::i;:::-;6602:60;;6558:114;6356:323;;;;:::o;6685:329::-;6744:6;6793:2;6781:9;6772:7;6768:23;6764:32;6761:119;;;6799:79;;:::i;:::-;6761:119;6919:1;6944:53;6989:7;6980:6;6969:9;6965:22;6944:53;:::i;:::-;6934:63;;6890:117;6685:329;;;;:::o;7020:327::-;7078:6;7127:2;7115:9;7106:7;7102:23;7098:32;7095:119;;;7133:79;;:::i;:::-;7095:119;7253:1;7278:52;7322:7;7313:6;7302:9;7298:22;7278:52;:::i;:::-;7268:62;;7224:116;7020:327;;;;:::o;7353:349::-;7422:6;7471:2;7459:9;7450:7;7446:23;7442:32;7439:119;;;7477:79;;:::i;:::-;7439:119;7597:1;7622:63;7677:7;7668:6;7657:9;7653:22;7622:63;:::i;:::-;7612:73;;7568:127;7353:349;;;;:::o;7708:509::-;7777:6;7826:2;7814:9;7805:7;7801:23;7797:32;7794:119;;;7832:79;;:::i;:::-;7794:119;7980:1;7969:9;7965:17;7952:31;8010:18;8002:6;7999:30;7996:117;;;8032:79;;:::i;:::-;7996:117;8137:63;8192:7;8183:6;8172:9;8168:22;8137:63;:::i;:::-;8127:73;;7923:287;7708:509;;;;:::o;8223:329::-;8282:6;8331:2;8319:9;8310:7;8306:23;8302:32;8299:119;;;8337:79;;:::i;:::-;8299:119;8457:1;8482:53;8527:7;8518:6;8507:9;8503:22;8482:53;:::i;:::-;8472:63;;8428:117;8223:329;;;;:::o;8558:474::-;8626:6;8634;8683:2;8671:9;8662:7;8658:23;8654:32;8651:119;;;8689:79;;:::i;:::-;8651:119;8809:1;8834:53;8879:7;8870:6;8859:9;8855:22;8834:53;:::i;:::-;8824:63;;8780:117;8936:2;8962:53;9007:7;8998:6;8987:9;8983:22;8962:53;:::i;:::-;8952:63;;8907:118;8558:474;;;;;:::o;9038:704::-;9133:6;9141;9149;9198:2;9186:9;9177:7;9173:23;9169:32;9166:119;;;9204:79;;:::i;:::-;9166:119;9324:1;9349:53;9394:7;9385:6;9374:9;9370:22;9349:53;:::i;:::-;9339:63;;9295:117;9479:2;9468:9;9464:18;9451:32;9510:18;9502:6;9499:30;9496:117;;;9532:79;;:::i;:::-;9496:117;9645:80;9717:7;9708:6;9697:9;9693:22;9645:80;:::i;:::-;9627:98;;;;9422:313;9038:704;;;;;:::o;9748:474::-;9816:6;9824;9873:2;9861:9;9852:7;9848:23;9844:32;9841:119;;;9879:79;;:::i;:::-;9841:119;9999:1;10024:53;10069:7;10060:6;10049:9;10045:22;10024:53;:::i;:::-;10014:63;;9970:117;10126:2;10152:53;10197:7;10188:6;10177:9;10173:22;10152:53;:::i;:::-;10142:63;;10097:118;9748:474;;;;;:::o;10228:118::-;10315:24;10333:5;10315:24;:::i;:::-;10310:3;10303:37;10228:118;;:::o;10352:157::-;10457:45;10477:24;10495:5;10477:24;:::i;:::-;10457:45;:::i;:::-;10452:3;10445:58;10352:157;;:::o;10515:109::-;10596:21;10611:5;10596:21;:::i;:::-;10591:3;10584:34;10515:109;;:::o;10630:118::-;10717:24;10735:5;10717:24;:::i;:::-;10712:3;10705:37;10630:118;;:::o;10754:360::-;10840:3;10868:38;10900:5;10868:38;:::i;:::-;10922:70;10985:6;10980:3;10922:70;:::i;:::-;10915:77;;11001:52;11046:6;11041:3;11034:4;11027:5;11023:16;11001:52;:::i;:::-;11078:29;11100:6;11078:29;:::i;:::-;11073:3;11069:39;11062:46;;10844:270;10754:360;;;;:::o;11120:364::-;11208:3;11236:39;11269:5;11236:39;:::i;:::-;11291:71;11355:6;11350:3;11291:71;:::i;:::-;11284:78;;11371:52;11416:6;11411:3;11404:4;11397:5;11393:16;11371:52;:::i;:::-;11448:29;11470:6;11448:29;:::i;:::-;11443:3;11439:39;11432:46;;11212:272;11120:364;;;;:::o;11490:377::-;11596:3;11624:39;11657:5;11624:39;:::i;:::-;11679:89;11761:6;11756:3;11679:89;:::i;:::-;11672:96;;11777:52;11822:6;11817:3;11810:4;11803:5;11799:16;11777:52;:::i;:::-;11854:6;11849:3;11845:16;11838:23;;11600:267;11490:377;;;;:::o;11897:845::-;12000:3;12037:5;12031:12;12066:36;12092:9;12066:36;:::i;:::-;12118:89;12200:6;12195:3;12118:89;:::i;:::-;12111:96;;12238:1;12227:9;12223:17;12254:1;12249:137;;;;12400:1;12395:341;;;;12216:520;;12249:137;12333:4;12329:9;12318;12314:25;12309:3;12302:38;12369:6;12364:3;12360:16;12353:23;;12249:137;;12395:341;12462:38;12494:5;12462:38;:::i;:::-;12522:1;12536:154;12550:6;12547:1;12544:13;12536:154;;;12624:7;12618:14;12614:1;12609:3;12605:11;12598:35;12674:1;12665:7;12661:15;12650:26;;12572:4;12569:1;12565:12;12560:17;;12536:154;;;12719:6;12714:3;12710:16;12703:23;;12402:334;;12216:520;;12004:738;;11897:845;;;;:::o;12748:366::-;12890:3;12911:67;12975:2;12970:3;12911:67;:::i;:::-;12904:74;;12987:93;13076:3;12987:93;:::i;:::-;13105:2;13100:3;13096:12;13089:19;;12748:366;;;:::o;13120:::-;13262:3;13283:67;13347:2;13342:3;13283:67;:::i;:::-;13276:74;;13359:93;13448:3;13359:93;:::i;:::-;13477:2;13472:3;13468:12;13461:19;;13120:366;;;:::o;13492:::-;13634:3;13655:67;13719:2;13714:3;13655:67;:::i;:::-;13648:74;;13731:93;13820:3;13731:93;:::i;:::-;13849:2;13844:3;13840:12;13833:19;;13492:366;;;:::o;13864:::-;14006:3;14027:67;14091:2;14086:3;14027:67;:::i;:::-;14020:74;;14103:93;14192:3;14103:93;:::i;:::-;14221:2;14216:3;14212:12;14205:19;;13864:366;;;:::o;14236:::-;14378:3;14399:67;14463:2;14458:3;14399:67;:::i;:::-;14392:74;;14475:93;14564:3;14475:93;:::i;:::-;14593:2;14588:3;14584:12;14577:19;;14236:366;;;:::o;14608:::-;14750:3;14771:67;14835:2;14830:3;14771:67;:::i;:::-;14764:74;;14847:93;14936:3;14847:93;:::i;:::-;14965:2;14960:3;14956:12;14949:19;;14608:366;;;:::o;14980:::-;15122:3;15143:67;15207:2;15202:3;15143:67;:::i;:::-;15136:74;;15219:93;15308:3;15219:93;:::i;:::-;15337:2;15332:3;15328:12;15321:19;;14980:366;;;:::o;15352:::-;15494:3;15515:67;15579:2;15574:3;15515:67;:::i;:::-;15508:74;;15591:93;15680:3;15591:93;:::i;:::-;15709:2;15704:3;15700:12;15693:19;;15352:366;;;:::o;15724:::-;15866:3;15887:67;15951:2;15946:3;15887:67;:::i;:::-;15880:74;;15963:93;16052:3;15963:93;:::i;:::-;16081:2;16076:3;16072:12;16065:19;;15724:366;;;:::o;16096:::-;16238:3;16259:67;16323:2;16318:3;16259:67;:::i;:::-;16252:74;;16335:93;16424:3;16335:93;:::i;:::-;16453:2;16448:3;16444:12;16437:19;;16096:366;;;:::o;16468:::-;16610:3;16631:67;16695:2;16690:3;16631:67;:::i;:::-;16624:74;;16707:93;16796:3;16707:93;:::i;:::-;16825:2;16820:3;16816:12;16809:19;;16468:366;;;:::o;16840:398::-;16999:3;17020:83;17101:1;17096:3;17020:83;:::i;:::-;17013:90;;17112:93;17201:3;17112:93;:::i;:::-;17230:1;17225:3;17221:11;17214:18;;16840:398;;;:::o;17244:366::-;17386:3;17407:67;17471:2;17466:3;17407:67;:::i;:::-;17400:74;;17483:93;17572:3;17483:93;:::i;:::-;17601:2;17596:3;17592:12;17585:19;;17244:366;;;:::o;17616:::-;17758:3;17779:67;17843:2;17838:3;17779:67;:::i;:::-;17772:74;;17855:93;17944:3;17855:93;:::i;:::-;17973:2;17968:3;17964:12;17957:19;;17616:366;;;:::o;17988:::-;18130:3;18151:67;18215:2;18210:3;18151:67;:::i;:::-;18144:74;;18227:93;18316:3;18227:93;:::i;:::-;18345:2;18340:3;18336:12;18329:19;;17988:366;;;:::o;18360:118::-;18447:24;18465:5;18447:24;:::i;:::-;18442:3;18435:37;18360:118;;:::o;18484:115::-;18569:23;18586:5;18569:23;:::i;:::-;18564:3;18557:36;18484:115;;:::o;18605:256::-;18717:3;18732:75;18803:3;18794:6;18732:75;:::i;:::-;18832:2;18827:3;18823:12;18816:19;;18852:3;18845:10;;18605:256;;;;:::o;18867:589::-;19092:3;19114:95;19205:3;19196:6;19114:95;:::i;:::-;19107:102;;19226:95;19317:3;19308:6;19226:95;:::i;:::-;19219:102;;19338:92;19426:3;19417:6;19338:92;:::i;:::-;19331:99;;19447:3;19440:10;;18867:589;;;;;;:::o;19462:379::-;19646:3;19668:147;19811:3;19668:147;:::i;:::-;19661:154;;19832:3;19825:10;;19462:379;;;:::o;19847:222::-;19940:4;19978:2;19967:9;19963:18;19955:26;;19991:71;20059:1;20048:9;20044:17;20035:6;19991:71;:::i;:::-;19847:222;;;;:::o;20075:640::-;20270:4;20308:3;20297:9;20293:19;20285:27;;20322:71;20390:1;20379:9;20375:17;20366:6;20322:71;:::i;:::-;20403:72;20471:2;20460:9;20456:18;20447:6;20403:72;:::i;:::-;20485;20553:2;20542:9;20538:18;20529:6;20485:72;:::i;:::-;20604:9;20598:4;20594:20;20589:2;20578:9;20574:18;20567:48;20632:76;20703:4;20694:6;20632:76;:::i;:::-;20624:84;;20075:640;;;;;;;:::o;20721:332::-;20842:4;20880:2;20869:9;20865:18;20857:26;;20893:71;20961:1;20950:9;20946:17;20937:6;20893:71;:::i;:::-;20974:72;21042:2;21031:9;21027:18;21018:6;20974:72;:::i;:::-;20721:332;;;;;:::o;21059:210::-;21146:4;21184:2;21173:9;21169:18;21161:26;;21197:65;21259:1;21248:9;21244:17;21235:6;21197:65;:::i;:::-;21059:210;;;;:::o;21275:222::-;21368:4;21406:2;21395:9;21391:18;21383:26;;21419:71;21487:1;21476:9;21472:17;21463:6;21419:71;:::i;:::-;21275:222;;;;:::o;21503:313::-;21616:4;21654:2;21643:9;21639:18;21631:26;;21703:9;21697:4;21693:20;21689:1;21678:9;21674:17;21667:47;21731:78;21804:4;21795:6;21731:78;:::i;:::-;21723:86;;21503:313;;;;:::o;21822:419::-;21988:4;22026:2;22015:9;22011:18;22003:26;;22075:9;22069:4;22065:20;22061:1;22050:9;22046:17;22039:47;22103:131;22229:4;22103:131;:::i;:::-;22095:139;;21822:419;;;:::o;22247:::-;22413:4;22451:2;22440:9;22436:18;22428:26;;22500:9;22494:4;22490:20;22486:1;22475:9;22471:17;22464:47;22528:131;22654:4;22528:131;:::i;:::-;22520:139;;22247:419;;;:::o;22672:::-;22838:4;22876:2;22865:9;22861:18;22853:26;;22925:9;22919:4;22915:20;22911:1;22900:9;22896:17;22889:47;22953:131;23079:4;22953:131;:::i;:::-;22945:139;;22672:419;;;:::o;23097:::-;23263:4;23301:2;23290:9;23286:18;23278:26;;23350:9;23344:4;23340:20;23336:1;23325:9;23321:17;23314:47;23378:131;23504:4;23378:131;:::i;:::-;23370:139;;23097:419;;;:::o;23522:::-;23688:4;23726:2;23715:9;23711:18;23703:26;;23775:9;23769:4;23765:20;23761:1;23750:9;23746:17;23739:47;23803:131;23929:4;23803:131;:::i;:::-;23795:139;;23522:419;;;:::o;23947:::-;24113:4;24151:2;24140:9;24136:18;24128:26;;24200:9;24194:4;24190:20;24186:1;24175:9;24171:17;24164:47;24228:131;24354:4;24228:131;:::i;:::-;24220:139;;23947:419;;;:::o;24372:::-;24538:4;24576:2;24565:9;24561:18;24553:26;;24625:9;24619:4;24615:20;24611:1;24600:9;24596:17;24589:47;24653:131;24779:4;24653:131;:::i;:::-;24645:139;;24372:419;;;:::o;24797:::-;24963:4;25001:2;24990:9;24986:18;24978:26;;25050:9;25044:4;25040:20;25036:1;25025:9;25021:17;25014:47;25078:131;25204:4;25078:131;:::i;:::-;25070:139;;24797:419;;;:::o;25222:::-;25388:4;25426:2;25415:9;25411:18;25403:26;;25475:9;25469:4;25465:20;25461:1;25450:9;25446:17;25439:47;25503:131;25629:4;25503:131;:::i;:::-;25495:139;;25222:419;;;:::o;25647:::-;25813:4;25851:2;25840:9;25836:18;25828:26;;25900:9;25894:4;25890:20;25886:1;25875:9;25871:17;25864:47;25928:131;26054:4;25928:131;:::i;:::-;25920:139;;25647:419;;;:::o;26072:::-;26238:4;26276:2;26265:9;26261:18;26253:26;;26325:9;26319:4;26315:20;26311:1;26300:9;26296:17;26289:47;26353:131;26479:4;26353:131;:::i;:::-;26345:139;;26072:419;;;:::o;26497:::-;26663:4;26701:2;26690:9;26686:18;26678:26;;26750:9;26744:4;26740:20;26736:1;26725:9;26721:17;26714:47;26778:131;26904:4;26778:131;:::i;:::-;26770:139;;26497:419;;;:::o;26922:::-;27088:4;27126:2;27115:9;27111:18;27103:26;;27175:9;27169:4;27165:20;27161:1;27150:9;27146:17;27139:47;27203:131;27329:4;27203:131;:::i;:::-;27195:139;;26922:419;;;:::o;27347:::-;27513:4;27551:2;27540:9;27536:18;27528:26;;27600:9;27594:4;27590:20;27586:1;27575:9;27571:17;27564:47;27628:131;27754:4;27628:131;:::i;:::-;27620:139;;27347:419;;;:::o;27772:222::-;27865:4;27903:2;27892:9;27888:18;27880:26;;27916:71;27984:1;27973:9;27969:17;27960:6;27916:71;:::i;:::-;27772:222;;;;:::o;28000:218::-;28091:4;28129:2;28118:9;28114:18;28106:26;;28142:69;28208:1;28197:9;28193:17;28184:6;28142:69;:::i;:::-;28000:218;;;;:::o;28224:129::-;28258:6;28285:20;;:::i;:::-;28275:30;;28314:33;28342:4;28334:6;28314:33;:::i;:::-;28224:129;;;:::o;28359:75::-;28392:6;28425:2;28419:9;28409:19;;28359:75;:::o;28440:307::-;28501:4;28591:18;28583:6;28580:30;28577:56;;;28613:18;;:::i;:::-;28577:56;28651:29;28673:6;28651:29;:::i;:::-;28643:37;;28735:4;28729;28725:15;28717:23;;28440:307;;;:::o;28753:308::-;28815:4;28905:18;28897:6;28894:30;28891:56;;;28927:18;;:::i;:::-;28891:56;28965:29;28987:6;28965:29;:::i;:::-;28957:37;;29049:4;29043;29039:15;29031:23;;28753:308;;;:::o;29067:141::-;29116:4;29139:3;29131:11;;29162:3;29159:1;29152:14;29196:4;29193:1;29183:18;29175:26;;29067:141;;;:::o;29214:98::-;29265:6;29299:5;29293:12;29283:22;;29214:98;;;:::o;29318:99::-;29370:6;29404:5;29398:12;29388:22;;29318:99;;;:::o;29423:168::-;29506:11;29540:6;29535:3;29528:19;29580:4;29575:3;29571:14;29556:29;;29423:168;;;;:::o;29597:147::-;29698:11;29735:3;29720:18;;29597:147;;;;:::o;29750:169::-;29834:11;29868:6;29863:3;29856:19;29908:4;29903:3;29899:14;29884:29;;29750:169;;;;:::o;29925:148::-;30027:11;30064:3;30049:18;;29925:148;;;;:::o;30079:305::-;30119:3;30138:20;30156:1;30138:20;:::i;:::-;30133:25;;30172:20;30190:1;30172:20;:::i;:::-;30167:25;;30326:1;30258:66;30254:74;30251:1;30248:81;30245:107;;;30332:18;;:::i;:::-;30245:107;30376:1;30373;30369:9;30362:16;;30079:305;;;;:::o;30390:185::-;30430:1;30447:20;30465:1;30447:20;:::i;:::-;30442:25;;30481:20;30499:1;30481:20;:::i;:::-;30476:25;;30520:1;30510:35;;30525:18;;:::i;:::-;30510:35;30567:1;30564;30560:9;30555:14;;30390:185;;;;:::o;30581:348::-;30621:7;30644:20;30662:1;30644:20;:::i;:::-;30639:25;;30678:20;30696:1;30678:20;:::i;:::-;30673:25;;30866:1;30798:66;30794:74;30791:1;30788:81;30783:1;30776:9;30769:17;30765:105;30762:131;;;30873:18;;:::i;:::-;30762:131;30921:1;30918;30914:9;30903:20;;30581:348;;;;:::o;30935:191::-;30975:4;30995:20;31013:1;30995:20;:::i;:::-;30990:25;;31029:20;31047:1;31029:20;:::i;:::-;31024:25;;31068:1;31065;31062:8;31059:34;;;31073:18;;:::i;:::-;31059:34;31118:1;31115;31111:9;31103:17;;30935:191;;;;:::o;31132:96::-;31169:7;31198:24;31216:5;31198:24;:::i;:::-;31187:35;;31132:96;;;:::o;31234:90::-;31268:7;31311:5;31304:13;31297:21;31286:32;;31234:90;;;:::o;31330:77::-;31367:7;31396:5;31385:16;;31330:77;;;:::o;31413:149::-;31449:7;31489:66;31482:5;31478:78;31467:89;;31413:149;;;:::o;31568:126::-;31605:7;31645:42;31638:5;31634:54;31623:65;;31568:126;;;:::o;31700:77::-;31737:7;31766:5;31755:16;;31700:77;;;:::o;31783:109::-;31819:7;31859:26;31852:5;31848:38;31837:49;;31783:109;;;:::o;31898:154::-;31982:6;31977:3;31972;31959:30;32044:1;32035:6;32030:3;32026:16;32019:27;31898:154;;;:::o;32058:307::-;32126:1;32136:113;32150:6;32147:1;32144:13;32136:113;;;32235:1;32230:3;32226:11;32220:18;32216:1;32211:3;32207:11;32200:39;32172:2;32169:1;32165:10;32160:15;;32136:113;;;32267:6;32264:1;32261:13;32258:101;;;32347:1;32338:6;32333:3;32329:16;32322:27;32258:101;32107:258;32058:307;;;:::o;32371:320::-;32415:6;32452:1;32446:4;32442:12;32432:22;;32499:1;32493:4;32489:12;32520:18;32510:81;;32576:4;32568:6;32564:17;32554:27;;32510:81;32638:2;32630:6;32627:14;32607:18;32604:38;32601:84;;;32657:18;;:::i;:::-;32601:84;32422:269;32371:320;;;:::o;32697:281::-;32780:27;32802:4;32780:27;:::i;:::-;32772:6;32768:40;32910:6;32898:10;32895:22;32874:18;32862:10;32859:34;32856:62;32853:88;;;32921:18;;:::i;:::-;32853:88;32961:10;32957:2;32950:22;32740:238;32697:281;;:::o;32984:233::-;33023:3;33046:24;33064:5;33046:24;:::i;:::-;33037:33;;33092:66;33085:5;33082:77;33079:103;;;33162:18;;:::i;:::-;33079:103;33209:1;33202:5;33198:13;33191:20;;32984:233;;;:::o;33223:100::-;33262:7;33291:26;33311:5;33291:26;:::i;:::-;33280:37;;33223:100;;;:::o;33329:94::-;33368:7;33397:20;33411:5;33397:20;:::i;:::-;33386:31;;33329:94;;;:::o;33429:176::-;33461:1;33478:20;33496:1;33478:20;:::i;:::-;33473:25;;33512:20;33530:1;33512:20;:::i;:::-;33507:25;;33551:1;33541:35;;33556:18;;:::i;:::-;33541:35;33597:1;33594;33590:9;33585:14;;33429:176;;;;:::o;33611:180::-;33659:77;33656:1;33649:88;33756:4;33753:1;33746:15;33780:4;33777:1;33770:15;33797:180;33845:77;33842:1;33835:88;33942:4;33939:1;33932:15;33966:4;33963:1;33956:15;33983:180;34031:77;34028:1;34021:88;34128:4;34125:1;34118:15;34152:4;34149:1;34142:15;34169:180;34217:77;34214:1;34207:88;34314:4;34311:1;34304:15;34338:4;34335:1;34328:15;34355:180;34403:77;34400:1;34393:88;34500:4;34497:1;34490:15;34524:4;34521:1;34514:15;34541:117;34650:1;34647;34640:12;34664:117;34773:1;34770;34763:12;34787:117;34896:1;34893;34886:12;34910:117;35019:1;35016;35009:12;35033:117;35142:1;35139;35132:12;35156:117;35265:1;35262;35255:12;35279:102;35320:6;35371:2;35367:7;35362:2;35355:5;35351:14;35347:28;35337:38;;35279:102;;;:::o;35387:94::-;35420:8;35468:5;35464:2;35460:14;35439:35;;35387:94;;;:::o;35487:224::-;35627:34;35623:1;35615:6;35611:14;35604:58;35696:7;35691:2;35683:6;35679:15;35672:32;35487:224;:::o;35717:164::-;35857:16;35853:1;35845:6;35841:14;35834:40;35717:164;:::o;35887:225::-;36027:34;36023:1;36015:6;36011:14;36004:58;36096:8;36091:2;36083:6;36079:15;36072:33;35887:225;:::o;36118:220::-;36258:34;36254:1;36246:6;36242:14;36235:58;36327:3;36322:2;36314:6;36310:15;36303:28;36118:220;:::o;36344:168::-;36484:20;36480:1;36472:6;36468:14;36461:44;36344:168;:::o;36518:182::-;36658:34;36654:1;36646:6;36642:14;36635:58;36518:182;:::o;36706:173::-;36846:25;36842:1;36834:6;36830:14;36823:49;36706:173;:::o;36885:234::-;37025:34;37021:1;37013:6;37009:14;37002:58;37094:17;37089:2;37081:6;37077:15;37070:42;36885:234;:::o;37125:221::-;37265:34;37261:1;37253:6;37249:14;37242:58;37334:4;37329:2;37321:6;37317:15;37310:29;37125:221;:::o;37352:173::-;37492:25;37488:1;37480:6;37476:14;37469:49;37352:173;:::o;37531:238::-;37671:34;37667:1;37659:6;37655:14;37648:58;37740:21;37735:2;37727:6;37723:15;37716:46;37531:238;:::o;37775:114::-;;:::o;37895:221::-;38035:34;38031:1;38023:6;38019:14;38012:58;38104:4;38099:2;38091:6;38087:15;38080:29;37895:221;:::o;38122:168::-;38262:20;38258:1;38250:6;38246:14;38239:44;38122:168;:::o;38296:169::-;38436:21;38432:1;38424:6;38420:14;38413:45;38296:169;:::o;38471:122::-;38544:24;38562:5;38544:24;:::i;:::-;38537:5;38534:35;38524:63;;38583:1;38580;38573:12;38524:63;38471:122;:::o;38599:116::-;38669:21;38684:5;38669:21;:::i;:::-;38662:5;38659:32;38649:60;;38705:1;38702;38695:12;38649:60;38599:116;:::o;38721:122::-;38794:24;38812:5;38794:24;:::i;:::-;38787:5;38784:35;38774:63;;38833:1;38830;38823:12;38774:63;38721:122;:::o;38849:120::-;38921:23;38938:5;38921:23;:::i;:::-;38914:5;38911:34;38901:62;;38959:1;38956;38949:12;38901:62;38849:120;:::o;38975:122::-;39048:24;39066:5;39048:24;:::i;:::-;39041:5;39038:35;39028:63;;39087:1;39084;39077:12;39028:63;38975:122;:::o

Swarm Source

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