ETH Price: $3,099.26 (+0.99%)
Gas: 8 Gwei

Token

Party Apes Club (PAC)
 

Overview

Max Total Supply

72 PAC

Holders

47

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
nftcasually.eth
Balance
1 PAC
0xd9e1da631da9b9bd061f47725fa624f407e51dd6
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:
PartyApesClub

Compiler Version
v0.8.17+commit.8df45f5f

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// SPDX-License-Identifier: MIT

// File: IOperatorFilterRegistry.sol


pragma solidity ^0.8.13;

interface IOperatorFilterRegistry {
    function isOperatorAllowed(address registrant, address operator) external view returns (bool);
    function register(address registrant) external;
    function registerAndSubscribe(address registrant, address subscription) external;
    function registerAndCopyEntries(address registrant, address registrantToCopy) external;
    function updateOperator(address registrant, address operator, bool filtered) external;
    function updateOperators(address registrant, address[] calldata operators, bool filtered) external;
    function updateCodeHash(address registrant, bytes32 codehash, bool filtered) external;
    function updateCodeHashes(address registrant, bytes32[] calldata codeHashes, bool filtered) external;
    function subscribe(address registrant, address registrantToSubscribe) external;
    function unsubscribe(address registrant, bool copyExistingEntries) external;
    function subscriptionOf(address addr) external returns (address registrant);
    function subscribers(address registrant) external returns (address[] memory);
    function subscriberAt(address registrant, uint256 index) external returns (address);
    function copyEntriesOf(address registrant, address registrantToCopy) external;
    function isOperatorFiltered(address registrant, address operator) external returns (bool);
    function isCodeHashOfFiltered(address registrant, address operatorWithCode) external returns (bool);
    function isCodeHashFiltered(address registrant, bytes32 codeHash) external returns (bool);
    function filteredOperators(address addr) external returns (address[] memory);
    function filteredCodeHashes(address addr) external returns (bytes32[] memory);
    function filteredOperatorAt(address registrant, uint256 index) external returns (address);
    function filteredCodeHashAt(address registrant, uint256 index) external returns (bytes32);
    function isRegistered(address addr) external returns (bool);
    function codeHashOf(address addr) external returns (bytes32);
}

// File: OperatorFilterer.sol


pragma solidity ^0.8.13;


abstract contract OperatorFilterer {
    error OperatorNotAllowed(address operator);

    IOperatorFilterRegistry constant operatorFilterRegistry =
        IOperatorFilterRegistry(0x000000000000AAeB6D7670E522A718067333cd4E);

    constructor(address subscriptionOrRegistrantToCopy, bool subscribe) {
        // If an inheriting token contract is deployed to a network without the registry deployed, the modifier
        // will not revert, but the contract will need to be registered with the registry once it is deployed in
        // order for the modifier to filter addresses.
        if (address(operatorFilterRegistry).code.length > 0) {
            if (subscribe) {
                operatorFilterRegistry.registerAndSubscribe(address(this), subscriptionOrRegistrantToCopy);
            } else {
                if (subscriptionOrRegistrantToCopy != address(0)) {
                    operatorFilterRegistry.registerAndCopyEntries(address(this), subscriptionOrRegistrantToCopy);
                } else {
                    operatorFilterRegistry.register(address(this));
                }
            }
        }
    }

    modifier onlyAllowedOperator(address from) virtual {
        // Check registry code length to facilitate testing in environments without a deployed registry.
        if (address(operatorFilterRegistry).code.length > 0) {
            // Allow spending tokens from addresses with balance
            // Note that this still allows listings and marketplaces with escrow to transfer tokens if transferred
            // from an EOA.
            if (from == msg.sender) {
                _;
                return;
            }
            if (
                !(
                    operatorFilterRegistry.isOperatorAllowed(address(this), msg.sender)
                        && operatorFilterRegistry.isOperatorAllowed(address(this), from)
                )
            ) {
                revert OperatorNotAllowed(msg.sender);
            }
        }
        _;
    }
}

// File: DefaultOperatorFilterer.sol


pragma solidity ^0.8.13;


abstract contract DefaultOperatorFilterer is OperatorFilterer {
    address constant DEFAULT_SUBSCRIPTION = address(0x3cc6CddA760b79bAfa08dF41ECFA224f810dCeB6);

    constructor() OperatorFilterer(DEFAULT_SUBSCRIPTION, true) {}
}

// File: pac-contract.sol



// File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/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.
 *
 * WARNING: You should avoid using leaf values that are 64 bytes long prior to
 * hashing, or use a hash function other than keccak256 for hashing leaves.
 * This is because the concatenation of a sorted pair of internal nodes in
 * the merkle tree could be reinterpreted as a leaf value.
 */
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 Merkle 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/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: @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: contracts/erc721a.sol



// Creator: Chiru Labs



pragma solidity ^0.8.4;










error ApprovalCallerNotOwnerNorApproved();

error ApprovalQueryForNonexistentToken();

error ApproveToCaller();

error ApprovalToCurrentOwner();

error BalanceQueryForZeroAddress();

error MintToZeroAddress();

error MintZeroQuantity();

error OwnerQueryForNonexistentToken();

error TransferCallerNotOwnerNorApproved();

error TransferFromIncorrectOwner();

error TransferToNonERC721ReceiverImplementer();

error TransferToZeroAddress();

error URIQueryForNonexistentToken();



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

contract ERC721A is Context, ERC165, IERC721, IERC721Metadata {

    using Address for address;

    using Strings for uint256;



    // Compiler will pack this into a single 256bit word.

    struct TokenOwnership {

        // The address of the owner.

        address addr;

        // Keeps track of the start time of ownership with minimal overhead for tokenomics.

        uint64 startTimestamp;

        // Whether the token has been burned.

        bool burned;

    }



    // Compiler will pack this into a single 256bit word.

    struct AddressData {

        // Realistically, 2**64-1 is more than enough.

        uint64 balance;

        // Keeps track of mint count with minimal overhead for tokenomics.

        uint64 numberMinted;

        // Keeps track of burn count with minimal overhead for tokenomics.

        uint64 numberBurned;

        // For miscellaneous variable(s) pertaining to the address

        // (e.g. number of whitelist mint slots used).

        // If there are multiple variables, please pack them into a uint64.

        uint64 aux;

    }



    // The tokenId of the next token to be minted.

    uint256 internal _currentIndex;



    // The number of tokens burned.

    uint256 internal _burnCounter;



    // Token name

    string private _name;



    // Token symbol

    string private _symbol;



    // Mapping from token ID to ownership details

    // An empty struct value does not necessarily mean the token is unowned. See _ownershipOf implementation for details.

    mapping(uint256 => TokenOwnership) internal _ownerships;



    // Mapping owner address to address data

    mapping(address => AddressData) private _addressData;



    // Mapping from token ID to approved address

    mapping(uint256 => address) private _tokenApprovals;



    // Mapping from owner to operator approvals

    mapping(address => mapping(address => bool)) private _operatorApprovals;



    constructor(string memory name_, string memory symbol_) {

        _name = name_;

        _symbol = symbol_;

        _currentIndex = _startTokenId();

    }



    /**
     * To change the starting tokenId, please override this function.
     */

    function _startTokenId() internal view virtual returns (uint256) {

        return 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: @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 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);
    }
}


pragma solidity ^0.8.4;

contract PartyApesClub is ERC721A, Ownable, DefaultOperatorFilterer {
   using Strings for uint256;
    string private baseTokenURI;
 
    enum SaleConfig {
        PAUSED,
        PHASE1PRESALE,
        PHASE1PUBLIC,
        PHASE2PRESALE,
        PHASE2PUBLIC
    }

    SaleConfig public saleConfig = SaleConfig.PAUSED;


    uint256 public constant maxSupply = 11000;
    uint256 public constant teamSupply = 22;
    uint256 public constant phaseOneSupply = 1111;
    uint256 public constant phaseTwoSupply = 9889;
    uint256 public teamAmountMinted = 0;
    uint256 public presaleCost = 0.25 ether;
    uint256 public publicSaleCost = 0.28 ether;
    uint256 public collabCost;

    uint256 public phaseTwoCollabSupply = 0;
    uint256 public phaseTwoCollabAmountMinted = 0;

    uint256 public maxAmountPerPublicSaleAccount = 10;
    uint256 public maxAmountPerPresaleAccount = 10;
    uint256 public maxAmountPerCollabAccount = 1;

    bytes32 public merkleRoot;

    constructor() ERC721A("Party Apes Club", "PAC") {}


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

    function maxSupplyPerPhase() internal view returns (uint256) {
        if (saleConfig == SaleConfig.PHASE1PUBLIC||saleConfig == SaleConfig.PHASE1PRESALE)
            return phaseOneSupply;
        if (saleConfig == SaleConfig.PHASE2PUBLIC||saleConfig == SaleConfig.PHASE2PRESALE)
            return phaseOneSupply + phaseTwoSupply;
        return phaseOneSupply + phaseTwoSupply;
    }

    modifier mintCompliance(uint256 _mintAmount) {
        require(_mintAmount > 0 , "Invalid mint amount!");
        require(totalMinted() + _mintAmount <= maxSupplyPerPhase(), "Max supply exceeded!");
        _;
    }

    modifier callerIsUser() {
        require(tx.origin == msg.sender, "The caller is another contract");
        _;
    }

    function isPresaleActive() public view returns (bool) {
        if (saleConfig == SaleConfig.PHASE1PRESALE || saleConfig == SaleConfig.PHASE2PRESALE) return true;
        return false;
    }

    function isPublicSaleActive() public view returns (bool) {
        if (saleConfig == SaleConfig.PHASE1PUBLIC || saleConfig == SaleConfig.PHASE2PUBLIC) return true;
        return false;
    }

    ///Mints NFTs for whitelist members during the presale
    function presaleMint(bytes32[] calldata _merkleProof, uint64 _mintAmount) public payable callerIsUser mintCompliance(_mintAmount) {
        require(isPresaleActive(), "Presale is not Active");
        require(numberMinted(msg.sender) + _mintAmount <= maxAmountPerPresaleAccount, "Mint limit exceeded." );
        require(msg.value == presaleCost * _mintAmount, "Insufficient funds!");

        ///verify the provided _merkleProof
        bytes32 leaf = keccak256(abi.encodePacked(msg.sender));
        require(MerkleProof.verify(_merkleProof, merkleRoot, leaf), "Not part of the Presale whitelist.");

        _safeMint(msg.sender, _mintAmount);
    }

    ///Allows any address to mint when the public sale is open
    function publicMint(uint64 _mintAmount) public payable callerIsUser mintCompliance(_mintAmount) {
        require(isPublicSaleActive(), "Public sale is not Active");
        require(msg.value == publicSaleCost * _mintAmount, "Insufficient funds!");

        uint64 publicAmountMinted = getPublicAmountMinted(msg.sender);
        require(publicAmountMinted + _mintAmount <= maxAmountPerPublicSaleAccount, "Mint limit exceeded." );
   
        setPublicAmountMinted(msg.sender,publicAmountMinted + _mintAmount);
        
        _safeMint(msg.sender, _mintAmount);
    }

    ///Mints NFTs for collab members during phase 2
    function phase2CollabMint(bytes32[] calldata _merkleProof, uint64 _mintAmount) public payable callerIsUser mintCompliance(_mintAmount) {
        require(saleConfig == SaleConfig.PHASE2PUBLIC || saleConfig == SaleConfig.PHASE2PRESALE, "Phase 2 not active yet");
        require(numberMinted(msg.sender) + _mintAmount <= maxAmountPerCollabAccount, "Mint limit exceeded." );
        require(phaseTwoCollabAmountMinted + _mintAmount <= phaseTwoCollabSupply, "Supply exceeded." );
        require(msg.value == collabCost * _mintAmount, "Insufficient funds!");

        ///verify the provided _merkleProof
        bytes32 leaf = keccak256(abi.encodePacked(msg.sender));
        require(MerkleProof.verify(_merkleProof, merkleRoot, leaf), "Not part of the Presale whitelist.");
        phaseTwoCollabAmountMinted+=_mintAmount;
        _safeMint(msg.sender, _mintAmount);
    }

    ///Allows owner of the collection to airdrop a token
    function mintForAddress(uint64 _mintAmount, address _receiver) public mintCompliance(_mintAmount) onlyOwner {
        _safeMint(_receiver, _mintAmount);
    }

    ///Allows owner of the collection to airdrop a token to the team
    function mintForSelf(uint64 _mintAmount) public mintCompliance(_mintAmount) onlyOwner {
        require(teamAmountMinted + _mintAmount <= teamSupply, "Mint limit exceeded.");
        teamAmountMinted+=_mintAmount;
        _safeMint(msg.sender, _mintAmount);
    }

    function crossmint(address _to) public payable mintCompliance(1) {
        require(isPublicSaleActive(), "Sale is not Active");
        require(msg.value >= publicSaleCost * 1, "Insufficient funds!");
        uint64 publicAmountMinted = getPublicAmountMinted(_to);

        require(publicAmountMinted+ 1 <= maxAmountPerPublicSaleAccount,  "Max mint amount per wallet reached" );
        require(msg.sender == 0xdAb1a1854214684acE522439684a145E62505233, "This function is for Crossmint only." );

        setPublicAmountMinted(_to,publicAmountMinted + 1);
        _safeMint(_to,1);
    }

    //@return token ids owned by an address in the collection
    function walletOfOwner(address _owner)
        external
        view
        returns (uint256[] memory)
    {
        uint256 ownerTokenCount = balanceOf(_owner);
        uint256[] memory ownedTokenIds = new uint256[](ownerTokenCount);
        uint256 currentTokenId = 1;
        uint256 ownedTokenIndex = 0;

        while (ownedTokenIndex < ownerTokenCount && currentTokenId <= maxSupply) {
            if(exists(currentTokenId) == true) {
                address currentTokenOwner = ownerOf(currentTokenId);

                if (currentTokenOwner == _owner) {
                    ownedTokenIds[ownedTokenIndex] = currentTokenId;
                    ownedTokenIndex++;
                }
            }
            currentTokenId++;
        }

        return ownedTokenIds;
    }

    function transferFrom(address from, address to, uint256 tokenId) public override onlyAllowedOperator(from) {
        super.transferFrom(from, to, tokenId);
    }

    function safeTransferFrom(address from, address to, uint256 tokenId) public override onlyAllowedOperator(from) {
        super.safeTransferFrom(from, to, tokenId);
    }

    function safeTransferFrom(address from, address to, uint256 tokenId, bytes memory data)
        public
        override
        onlyAllowedOperator(from)
    {
        super.safeTransferFrom(from, to, tokenId, data);
    }

    //@return full url for passed in token id 
    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(), ".json"))

            : "";
    }

    //@return amount an address has minted during the public sale
    function getPublicAmountMinted(address _owner) public view returns (uint64) {
        return _getAux(_owner);
    }

    function setPublicAmountMinted(address _owner, uint64 _aux) internal {
        _setAux(_owner, _aux);
    }

    //@return amount an address has minted during all sales
    function numberMinted(address _owner) public view returns (uint256) {
        return _numberMinted(_owner);
    }

    //@return all NFT's minted including burned tokens
    function totalMinted() public view returns (uint256) {
        return _totalMinted();
    }

    function exists(uint256 _tokenId) public view returns (bool) {
        return _exists(_tokenId);
    }

    function burn(uint256 _tokenId) public {
        require(exists(_tokenId), "Token does not exist");
        require(msg.sender == ownerOf(_tokenId), "Not the owner of the token");
        _burn(_tokenId, false);
    }

    //@return url for the nft metadata
    function _baseURI() internal view virtual override returns (string memory) {
        return baseTokenURI;
    }

    function setBaseURI(string calldata _URI) external onlyOwner {
        baseTokenURI = _URI;
    }

    function setMaxMintPerPresaleAccount(uint64 _maxAmountPerPresaleAccount) public onlyOwner {
        maxAmountPerPresaleAccount = _maxAmountPerPresaleAccount;
    }
   
    function setMaxMintPerPublicAccount(uint64 _maxAmountPerPublicSaleAccount) public onlyOwner {
        maxAmountPerPublicSaleAccount = _maxAmountPerPublicSaleAccount;
    }

    function setMaxPerCollabAccount(uint64 _maxAmountPerCollabAccount) public onlyOwner {
        maxAmountPerCollabAccount = _maxAmountPerCollabAccount;
    }

    function setPhaseTwoCollabSupply(uint64 _phaseTwoCollabSupply) public onlyOwner {
        phaseTwoCollabSupply = _phaseTwoCollabSupply;
    }

    ///sets merkle tree root which determines the whitelisted addresses
    function setMerkleRoot(bytes32 _merkleRoot) public onlyOwner {
        merkleRoot = _merkleRoot;
    }

    function setSaleConfig(SaleConfig _status) external onlyOwner {
        saleConfig = _status;
    }

    function setPublicSaleCost(uint256 _publicSaleCost) public onlyOwner {
        publicSaleCost = _publicSaleCost;
    }

    function setPresaleCost(uint256 _presaleCost) public onlyOwner {
        presaleCost = _presaleCost;
    }

    function setCollabCost(uint256 _collabCost) public onlyOwner {
        collabCost = _collabCost;
    }

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

    /// Fallbacks 
    receive() external payable { }
    fallback() external payable { }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[{"internalType":"address","name":"operator","type":"address"}],"name":"OperatorNotAllowed","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"},{"stateMutability":"payable","type":"fallback"},{"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":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"collabCost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"}],"name":"crossmint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"exists","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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"}],"name":"getPublicAmountMinted","outputs":[{"internalType":"uint64","name":"","type":"uint64"}],"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":"isPresaleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isPublicSaleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxAmountPerCollabAccount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxAmountPerPresaleAccount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxAmountPerPublicSaleAccount","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":"merkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint64","name":"_mintAmount","type":"uint64"},{"internalType":"address","name":"_receiver","type":"address"}],"name":"mintForAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint64","name":"_mintAmount","type":"uint64"}],"name":"mintForSelf","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"numberMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"_merkleProof","type":"bytes32[]"},{"internalType":"uint64","name":"_mintAmount","type":"uint64"}],"name":"phase2CollabMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"phaseOneSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"phaseTwoCollabAmountMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"phaseTwoCollabSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"phaseTwoSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"presaleCost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"_merkleProof","type":"bytes32[]"},{"internalType":"uint64","name":"_mintAmount","type":"uint64"}],"name":"presaleMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint64","name":"_mintAmount","type":"uint64"}],"name":"publicMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"publicSaleCost","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":"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":[],"name":"saleConfig","outputs":[{"internalType":"enum PartyApesClub.SaleConfig","name":"","type":"uint8"}],"stateMutability":"view","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":"_URI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_collabCost","type":"uint256"}],"name":"setCollabCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint64","name":"_maxAmountPerPresaleAccount","type":"uint64"}],"name":"setMaxMintPerPresaleAccount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint64","name":"_maxAmountPerPublicSaleAccount","type":"uint64"}],"name":"setMaxMintPerPublicAccount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint64","name":"_maxAmountPerCollabAccount","type":"uint64"}],"name":"setMaxPerCollabAccount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_merkleRoot","type":"bytes32"}],"name":"setMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint64","name":"_phaseTwoCollabSupply","type":"uint64"}],"name":"setPhaseTwoCollabSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_presaleCost","type":"uint256"}],"name":"setPresaleCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_publicSaleCost","type":"uint256"}],"name":"setPublicSaleCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"enum PartyApesClub.SaleConfig","name":"_status","type":"uint8"}],"name":"setSaleConfig","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":[],"name":"teamAmountMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"teamSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"totalMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

6080604052600a805460ff191681556000600b8190556703782dace9d90000600c556703e2c284391c0000600d55600f819055601055601181905560125560016013553480156200004f57600080fd5b50733cc6cdda760b79bafa08df41ecfa224f810dceb660016040518060400160405280600f81526020016e2830b93a3c9020b832b99021b63ab160891b8152506040518060400160405280600381526020016250414360e81b8152508160029081620000bc919062000322565b506003620000cb828262000322565b5050600160005550620000de336200022b565b6daaeb6d7670e522a718067333cd4e3b15620002235780156200017157604051633e9f1edf60e11b81523060048201526001600160a01b03831660248201526daaeb6d7670e522a718067333cd4e90637d3e3dbe906044015b600060405180830381600087803b1580156200015257600080fd5b505af115801562000167573d6000803e3d6000fd5b5050505062000223565b6001600160a01b03821615620001c25760405163a0af290360e01b81523060048201526001600160a01b03831660248201526daaeb6d7670e522a718067333cd4e9063a0af29039060440162000137565b604051632210724360e11b81523060048201526daaeb6d7670e522a718067333cd4e90634420e48690602401600060405180830381600087803b1580156200020957600080fd5b505af11580156200021e573d6000803e3d6000fd5b505050505b5050620003ee565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b634e487b7160e01b600052604160045260246000fd5b600181811c90821680620002a857607f821691505b602082108103620002c957634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200031d57600081815260208120601f850160051c81016020861015620002f85750805b601f850160051c820191505b81811015620003195782815560010162000304565b5050505b505050565b81516001600160401b038111156200033e576200033e6200027d565b62000356816200034f845462000293565b84620002cf565b602080601f8311600181146200038e5760008415620003755750858301515b600019600386901b1c1916600185901b17855562000319565b600085815260208120601f198616915b82811015620003bf578886015182559484019460019091019084016200039e565b5085821015620003de5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b61353980620003fe6000396000f3fe60806040526004361061033f5760003560e01c80636afcb7b0116101ae57806395d89b41116100eb578063ca4c65461161008f578063dc33e6811161006c578063dc33e6811461093e578063e985e9c51461095e578063f2fde38b1461097e578063f72fd7f61461099e57005b8063ca4c6546146108d0578063cd11ddc4146108f0578063d5abeb011461092857005b8063b220b77a116100c8578063b220b77a1461085a578063b88d4fde1461087a578063b8939a581461089a578063c87b56dd146108b057005b806395d89b4114610810578063a22cb46514610825578063a2309ff81461084557005b80638da5cb5b1161015257806390aa0b0f1161012f57806390aa0b0f146107a057806391904ced146107c757806391afca55146107dd57806392305466146107f057005b80638da5cb5b146107425780638dbb7c06146107605780638fdcf9421461078057005b80637c0617411161018b5780637c061741146106d65780637cb64759146106f65780637d06848f1461071657806387a8906f1461072c57005b80636afcb7b01461068d57806370812fee146106a057806370a08231146106b657005b8063381a99391161027c57806347fa1e751161022057806355f804b3116101fd57806355f804b314610622578063595d22131461064257806360d938dc146106585780636352211e1461066d57005b806347fa1e75146105d95780634f558e79146105ec57806355a16c241461060c57005b806342842e0e1161025957806342842e0e1461055657806342966c6814610576578063438b630014610596578063453afb0f146105c357005b8063381a9939146105015780633ccfd60b1461052157806340af91ec1461053657005b806318a1c113116102e3578063254077f7116102c0578063254077f7146104ad5780632a23d07d146104c05780632cfac6ec146104d65780632eb4a7ab146104eb57005b806318a1c113146104585780631e84c4131461047857806323b872dd1461048d57005b8063095ea7b31161031c578063095ea7b3146103d7578063112b46cb146103f75780631233339f1461041757806318160ddd1461043b57005b806301ffc9a71461034857806306fdde031461037d578063081812fc1461039f57005b3661034657005b005b34801561035457600080fd5b50610368610363366004612c16565b6109b4565b60405190151581526020015b60405180910390f35b34801561038957600080fd5b50610392610a06565b6040516103749190612c83565b3480156103ab57600080fd5b506103bf6103ba366004612c96565b610a98565b6040516001600160a01b039091168152602001610374565b3480156103e357600080fd5b506103466103f2366004612ccb565b610adc565b34801561040357600080fd5b50610346610412366004612c96565b610b69565b34801561042357600080fd5b5061042d600f5481565b604051908152602001610374565b34801561044757600080fd5b50600154600054036000190161042d565b34801561046457600080fd5b50610346610473366004612d0c565b610ba1565b34801561048457600080fd5b50610368610bd9565b34801561049957600080fd5b506103466104a8366004612d27565b610c28565b6103466104bb366004612d63565b610d84565b3480156104cc57600080fd5b5061042d600c5481565b3480156104e257600080fd5b5061042d601681565b3480156104f757600080fd5b5061042d60145481565b34801561050d57600080fd5b5061034661051c366004612d0c565b611025565b34801561052d57600080fd5b50610346611121565b34801561054257600080fd5b50610346610551366004612de6565b6111bf565b34801561056257600080fd5b50610346610571366004612d27565b611210565b34801561058257600080fd5b50610346610591366004612c96565b611361565b3480156105a257600080fd5b506105b66105b1366004612e07565b611421565b6040516103749190612e22565b3480156105cf57600080fd5b5061042d600d5481565b6103466105e7366004612d63565b611513565b3480156105f857600080fd5b50610368610607366004612c96565b6116fd565b34801561061857600080fd5b5061042d61045781565b34801561062e57600080fd5b5061034661063d366004612e66565b611708565b34801561064e57600080fd5b5061042d6126a181565b34801561066457600080fd5b5061036861173f565b34801561067957600080fd5b506103bf610688366004612c96565b611768565b61034661069b366004612d0c565b61177a565b3480156106ac57600080fd5b5061042d600b5481565b3480156106c257600080fd5b5061042d6106d1366004612e07565b611922565b3480156106e257600080fd5b506103466106f1366004612ed7565b611970565b34801561070257600080fd5b50610346610711366004612c96565b611a10565b34801561072257600080fd5b5061042d600e5481565b34801561073857600080fd5b5061042d60135481565b34801561074e57600080fd5b506008546001600160a01b03166103bf565b34801561076c57600080fd5b5061034661077b366004612c96565b611a3f565b34801561078c57600080fd5b5061034661079b366004612c96565b611a6e565b3480156107ac57600080fd5b50600a546107ba9060ff1681565b6040516103749190612f20565b3480156107d357600080fd5b5061042d60125481565b6103466107eb366004612e07565b611a9d565b3480156107fc57600080fd5b5061034661080b366004612d0c565b611c55565b34801561081c57600080fd5b50610392611c8d565b34801561083157600080fd5b50610346610840366004612f56565b611c9c565b34801561085157600080fd5b5061042d611d31565b34801561086657600080fd5b50610346610875366004612d0c565b611d40565b34801561088657600080fd5b50610346610895366004612fa3565b611d78565b3480156108a657600080fd5b5061042d60115481565b3480156108bc57600080fd5b506103926108cb366004612c96565b611ed0565b3480156108dc57600080fd5b506103466108eb366004612d0c565b611f9b565b3480156108fc57600080fd5b5061091061090b366004612e07565b611fd3565b6040516001600160401b039091168152602001610374565b34801561093457600080fd5b5061042d612af881565b34801561094a57600080fd5b5061042d610959366004612e07565b612001565b34801561096a57600080fd5b5061036861097936600461307e565b61202f565b34801561098a57600080fd5b50610346610999366004612e07565b61205d565b3480156109aa57600080fd5b5061042d60105481565b60006001600160e01b031982166380ac58cd60e01b14806109e557506001600160e01b03198216635b5e139f60e01b145b80610a0057506301ffc9a760e01b6001600160e01b03198316145b92915050565b606060028054610a159061309a565b80601f0160208091040260200160405190810160405280929190818152602001828054610a419061309a565b8015610a8e5780601f10610a6357610100808354040283529160200191610a8e565b820191906000526020600020905b815481529060010190602001808311610a7157829003601f168201915b5050505050905090565b6000610aa3826120f5565b610ac0576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b6000610ae782611768565b9050806001600160a01b0316836001600160a01b031603610b1b5760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b03821614801590610b3b5750610b39813361202f565b155b15610b59576040516367d9dca160e11b815260040160405180910390fd5b610b6483838361212e565b505050565b6008546001600160a01b03163314610b9c5760405162461bcd60e51b8152600401610b93906130d4565b60405180910390fd5b600e55565b6008546001600160a01b03163314610bcb5760405162461bcd60e51b8152600401610b93906130d4565b6001600160401b0316601155565b60006002600a5460ff166004811115610bf457610bf4612f0a565b1480610c17575060045b600a5460ff166004811115610c1557610c15612f0a565b145b15610c225750600190565b50600090565b826daaeb6d7670e522a718067333cd4e3b15610d7357336001600160a01b03821603610c5e57610c5984848461218a565b610d7e565b604051633185c44d60e21b81523060048201523360248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa158015610cad573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610cd19190613109565b8015610d545750604051633185c44d60e21b81523060048201526001600160a01b03821660248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa158015610d30573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d549190613109565b610d7357604051633b79c77360e21b8152336004820152602401610b93565b610d7e84848461218a565b50505050565b323314610da35760405162461bcd60e51b8152600401610b9390613126565b806001600160401b031660008111610dcd5760405162461bcd60e51b8152600401610b939061315d565b610dd5612195565b81610dde611d31565b610de891906131a1565b1115610e065760405162461bcd60e51b8152600401610b93906131b4565b6004600a5460ff166004811115610e1f57610e1f612f0a565b1480610e4157506003600a5460ff166004811115610e3f57610e3f612f0a565b145b610e865760405162461bcd60e51b8152602060048201526016602482015275141a185cd9480c881b9bdd081858dd1a5d99481e595d60521b6044820152606401610b93565b601354826001600160401b0316610e9c33612001565b610ea691906131a1565b1115610ec45760405162461bcd60e51b8152600401610b93906131e2565b600f54826001600160401b0316601054610ede91906131a1565b1115610f1f5760405162461bcd60e51b815260206004820152601060248201526f29bab838363c9032bc31b2b2b232b21760811b6044820152606401610b93565b816001600160401b0316600e54610f369190613210565b3414610f545760405162461bcd60e51b8152600401610b9390613227565b6040516bffffffffffffffffffffffff193360601b166020820152600090603401604051602081830303815290604052805190602001209050610fce85858080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050601454915084905061223a565b610fea5760405162461bcd60e51b8152600401610b9390613254565b826001600160401b03166010600082825461100591906131a1565b9091555061101e9050336001600160401b038516612250565b5050505050565b806001600160401b03166000811161104f5760405162461bcd60e51b8152600401610b939061315d565b611057612195565b81611060611d31565b61106a91906131a1565b11156110885760405162461bcd60e51b8152600401610b93906131b4565b6008546001600160a01b031633146110b25760405162461bcd60e51b8152600401610b93906130d4565b6016826001600160401b0316600b546110cb91906131a1565b11156110e95760405162461bcd60e51b8152600401610b93906131e2565b816001600160401b0316600b600082825461110491906131a1565b9091555061111d9050336001600160401b038416612250565b5050565b6008546001600160a01b0316331461114b5760405162461bcd60e51b8152600401610b93906130d4565b600061115f6008546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d80600081146111a9576040519150601f19603f3d011682016040523d82523d6000602084013e6111ae565b606091505b50509050806111bc57600080fd5b50565b6008546001600160a01b031633146111e95760405162461bcd60e51b8152600401610b93906130d4565b600a805482919060ff1916600183600481111561120857611208612f0a565b021790555050565b826daaeb6d7670e522a718067333cd4e3b1561135657336001600160a01b0382160361124157610c5984848461226a565b604051633185c44d60e21b81523060048201523360248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa158015611290573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112b49190613109565b80156113375750604051633185c44d60e21b81523060048201526001600160a01b03821660248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa158015611313573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906113379190613109565b61135657604051633b79c77360e21b8152336004820152602401610b93565b610d7e84848461226a565b61136a816116fd565b6113ad5760405162461bcd60e51b8152602060048201526014602482015273151bdad95b88191bd95cc81b9bdd08195e1a5cdd60621b6044820152606401610b93565b6113b681611768565b6001600160a01b0316336001600160a01b0316146114165760405162461bcd60e51b815260206004820152601a60248201527f4e6f7420746865206f776e6572206f662074686520746f6b656e0000000000006044820152606401610b93565b6111bc816000612285565b6060600061142e83611922565b90506000816001600160401b0381111561144a5761144a612f8d565b604051908082528060200260200182016040528015611473578160200160208202803683370190505b509050600160005b838110801561148c5750612af88211155b156115095761149a826116fd565b15156001036114f75760006114ae83611768565b9050866001600160a01b0316816001600160a01b0316036114f557828483815181106114dc576114dc613296565b6020908102919091010152816114f1816132ac565b9250505b505b81611501816132ac565b92505061147b565b5090949350505050565b3233146115325760405162461bcd60e51b8152600401610b9390613126565b806001600160401b03166000811161155c5760405162461bcd60e51b8152600401610b939061315d565b611564612195565b8161156d611d31565b61157791906131a1565b11156115955760405162461bcd60e51b8152600401610b93906131b4565b61159d61173f565b6115e15760405162461bcd60e51b815260206004820152601560248201527450726573616c65206973206e6f742041637469766560581b6044820152606401610b93565b601254826001600160401b03166115f733612001565b61160191906131a1565b111561161f5760405162461bcd60e51b8152600401610b93906131e2565b816001600160401b0316600c546116369190613210565b34146116545760405162461bcd60e51b8152600401610b9390613227565b6040516bffffffffffffffffffffffff193360601b1660208201526000906034016040516020818303038152906040528051906020012090506116ce85858080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050601454915084905061223a565b6116ea5760405162461bcd60e51b8152600401610b9390613254565b61101e33846001600160401b0316612250565b6000610a00826120f5565b6008546001600160a01b031633146117325760405162461bcd60e51b8152600401610b93906130d4565b6009610b64828483613313565b60006001600a5460ff16600481111561175a5761175a612f0a565b1480610c1757506003610bfe565b600061177382612438565b5192915050565b3233146117995760405162461bcd60e51b8152600401610b9390613126565b806001600160401b0316600081116117c35760405162461bcd60e51b8152600401610b939061315d565b6117cb612195565b816117d4611d31565b6117de91906131a1565b11156117fc5760405162461bcd60e51b8152600401610b93906131b4565b611804610bd9565b6118505760405162461bcd60e51b815260206004820152601960248201527f5075626c69632073616c65206973206e6f7420416374697665000000000000006044820152606401610b93565b816001600160401b0316600d546118679190613210565b34146118855760405162461bcd60e51b8152600401610b9390613227565b600061189033611fd3565b6011549091506118a084836133d2565b6001600160401b031611156118c75760405162461bcd60e51b8152600401610b93906131e2565b61190f336118d585846133d2565b6001600160a01b038216600090815260056020526040902080546001600160c01b0316600160c01b6001600160401b038416021790555050565b610b6433846001600160401b0316612250565b60006001600160a01b03821661194b576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600560205260409020546001600160401b031690565b816001600160401b03166000811161199a5760405162461bcd60e51b8152600401610b939061315d565b6119a2612195565b816119ab611d31565b6119b591906131a1565b11156119d35760405162461bcd60e51b8152600401610b93906131b4565b6008546001600160a01b031633146119fd5760405162461bcd60e51b8152600401610b93906130d4565b610b6482846001600160401b0316612250565b6008546001600160a01b03163314611a3a5760405162461bcd60e51b8152600401610b93906130d4565b601455565b6008546001600160a01b03163314611a695760405162461bcd60e51b8152600401610b93906130d4565b600d55565b6008546001600160a01b03163314611a985760405162461bcd60e51b8152600401610b93906130d4565b600c55565b6001611aa7612195565b81611ab0611d31565b611aba91906131a1565b1115611ad85760405162461bcd60e51b8152600401610b93906131b4565b611ae0610bd9565b611b215760405162461bcd60e51b815260206004820152601260248201527153616c65206973206e6f742041637469766560701b6044820152606401610b93565b600d54611b2f906001613210565b341015611b4e5760405162461bcd60e51b8152600401610b9390613227565b6000611b5983611fd3565b601154909150611b6a8260016133d2565b6001600160401b03161115611bcc5760405162461bcd60e51b815260206004820152602260248201527f4d6178206d696e7420616d6f756e74207065722077616c6c6574207265616368604482015261195960f21b6064820152608401610b93565b73dab1a1854214684ace522439684a145e625052333314611c3b5760405162461bcd60e51b8152602060048201526024808201527f546869732066756e6374696f6e20697320666f722043726f73736d696e74206f60448201526337363c9760e11b6064820152608401610b93565b611c4a836118d58360016133d2565b610b64836001612250565b6008546001600160a01b03163314611c7f5760405162461bcd60e51b8152600401610b93906130d4565b6001600160401b0316600f55565b606060038054610a159061309a565b336001600160a01b03831603611cc55760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6000546000190190565b905090565b6008546001600160a01b03163314611d6a5760405162461bcd60e51b8152600401610b93906130d4565b6001600160401b0316601255565b836daaeb6d7670e522a718067333cd4e3b15611ec457336001600160a01b03821603611daf57611daa8585858561255f565b61101e565b604051633185c44d60e21b81523060048201523360248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa158015611dfe573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611e229190613109565b8015611ea55750604051633185c44d60e21b81523060048201526001600160a01b03821660248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa158015611e81573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611ea59190613109565b611ec457604051633b79c77360e21b8152336004820152602401610b93565b61101e8585858561255f565b6060611edb826120f5565b611f3f5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610b93565b6000611f496125aa565b90506000815111611f695760405180602001604052806000815250611f94565b80611f73846125b9565b604051602001611f849291906133f9565b6040516020818303038152906040525b9392505050565b6008546001600160a01b03163314611fc55760405162461bcd60e51b8152600401610b93906130d4565b6001600160401b0316601355565b6001600160a01b038116600090815260056020526040812054600160c01b90046001600160401b0316610a00565b6001600160a01b038116600090815260056020526040812054600160401b90046001600160401b0316610a00565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b6008546001600160a01b031633146120875760405162461bcd60e51b8152600401610b93906130d4565b6001600160a01b0381166120ec5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610b93565b6111bc816126c1565b600081600111158015612109575060005482105b8015610a00575050600090815260046020526040902054600160e01b900460ff161590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b610b64838383612713565b60006002600a5460ff1660048111156121b0576121b0612f0a565b14806121d257506001600a5460ff1660048111156121d0576121d0612f0a565b145b156121de575061045790565b6004600a5460ff1660048111156121f7576121f7612f0a565b148061221957506003600a5460ff16600481111561221757612217612f0a565b145b1561222c57611d3b6126a16104576131a1565b611d3b6126a16104576131a1565b60008261224785846128ec565b14949350505050565b61111d828260405180602001604052806000815250612960565b610b6483838360405180602001604052806000815250611d78565b600061229083612438565b805190915082156122f6576000336001600160a01b03831614806122b957506122b9823361202f565b806122d45750336122c986610a98565b6001600160a01b0316145b9050806122f457604051632ce44b5f60e11b815260040160405180910390fd5b505b6123026000858361212e565b6001600160a01b0380821660008181526005602090815260408083208054600160801b6000196001600160401b0380841691909101811667ffffffffffffffff198416811783900482166001908101831690930277ffffffffffffffff0000000000000000ffffffffffffffff19909416179290921783558b86526004909452828520805460ff60e01b1942909316600160a01b026001600160e01b03199091169097179690961716600160e01b17855591890180845292208054919490911661240057600054821461240057805460208701516001600160401b0316600160a01b026001600160e01b03199091166001600160a01b038716171781555b5050604051869250600091506001600160a01b038416906000805160206134e4833981519152908390a4505060018054810190555050565b60408051606081018252600080825260208201819052918101919091528180600111158015612468575060005481105b1561254657600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff161515918101829052906125445780516001600160a01b0316156124db579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b82046001600160401b031693830193909352600160e01b900460ff161515928101929092521561253f579392505050565b6124db565b505b604051636f96cda160e11b815260040160405180910390fd5b61256a848484612713565b6001600160a01b0383163b1515801561258c575061258a8484848461296d565b155b15610d7e576040516368d2bf6b60e11b815260040160405180910390fd5b606060098054610a159061309a565b6060816000036125e05750506040805180820190915260018152600360fc1b602082015290565b8160005b811561260a57806125f4816132ac565b91506126039050600a8361344e565b91506125e4565b6000816001600160401b0381111561262457612624612f8d565b6040519080825280601f01601f19166020018201604052801561264e576020820181803683370190505b5090505b84156126b957612663600183613462565b9150612670600a86613475565b61267b9060306131a1565b60f81b81838151811061269057612690613296565b60200101906001600160f81b031916908160001a9053506126b2600a8661344e565b9450612652565b949350505050565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600061271e82612438565b9050836001600160a01b031681600001516001600160a01b0316146127555760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b03861614806127735750612773853361202f565b8061278e57503361278384610a98565b6001600160a01b0316145b9050806127ae57604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b0384166127d557604051633a954ecd60e21b815260040160405180910390fd5b6127e16000848761212e565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff198082166001600160401b0392831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b429092169190910217835587018084529220805491939091166128b55760005482146128b557805460208601516001600160401b0316600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b03166000805160206134e483398151915260405160405180910390a461101e565b600081815b845181101561295857600085828151811061290e5761290e613296565b602002602001015190508083116129345760008381526020829052604090209250612945565b600081815260208490526040902092505b5080612950816132ac565b9150506128f1565b509392505050565b610b648383836001612a58565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a02906129a2903390899088908890600401613489565b6020604051808303816000875af19250505080156129dd575060408051601f3d908101601f191682019092526129da918101906134c6565b60015b612a3b573d808015612a0b576040519150601f19603f3d011682016040523d82523d6000602084013e612a10565b606091505b508051600003612a33576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050949350505050565b6000546001600160a01b038516612a8157604051622e076360e81b815260040160405180910390fd5b83600003612aa25760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff1981166001600160401b038083168c018116918217600160401b67ffffffffffffffff1990941690921783900481168c01811690920217909155858452600490925290912080546001600160e01b031916909217600160a01b429092169190910217905580808501838015612b4e57506001600160a01b0387163b15155b15612bc4575b60405182906001600160a01b038916906000906000805160206134e4833981519152908290a4612b8d600088848060010195508861296d565b612baa576040516368d2bf6b60e11b815260040160405180910390fd5b808203612b54578260005414612bbf57600080fd5b612bf7565b5b6040516001830192906001600160a01b038916906000906000805160206134e4833981519152908290a4808203612bc5575b5060005561101e565b6001600160e01b0319811681146111bc57600080fd5b600060208284031215612c2857600080fd5b8135611f9481612c00565b60005b83811015612c4e578181015183820152602001612c36565b50506000910152565b60008151808452612c6f816020860160208601612c33565b601f01601f19169290920160200192915050565b602081526000611f946020830184612c57565b600060208284031215612ca857600080fd5b5035919050565b80356001600160a01b0381168114612cc657600080fd5b919050565b60008060408385031215612cde57600080fd5b612ce783612caf565b946020939093013593505050565b80356001600160401b0381168114612cc657600080fd5b600060208284031215612d1e57600080fd5b611f9482612cf5565b600080600060608486031215612d3c57600080fd5b612d4584612caf565b9250612d5360208501612caf565b9150604084013590509250925092565b600080600060408486031215612d7857600080fd5b83356001600160401b0380821115612d8f57600080fd5b818601915086601f830112612da357600080fd5b813581811115612db257600080fd5b8760208260051b8501011115612dc757600080fd5b602092830195509350612ddd9186019050612cf5565b90509250925092565b600060208284031215612df857600080fd5b813560058110611f9457600080fd5b600060208284031215612e1957600080fd5b611f9482612caf565b6020808252825182820181905260009190848201906040850190845b81811015612e5a57835183529284019291840191600101612e3e565b50909695505050505050565b60008060208385031215612e7957600080fd5b82356001600160401b0380821115612e9057600080fd5b818501915085601f830112612ea457600080fd5b813581811115612eb357600080fd5b866020828501011115612ec557600080fd5b60209290920196919550909350505050565b60008060408385031215612eea57600080fd5b612ef383612cf5565b9150612f0160208401612caf565b90509250929050565b634e487b7160e01b600052602160045260246000fd5b6020810160058310612f4257634e487b7160e01b600052602160045260246000fd5b91905290565b80151581146111bc57600080fd5b60008060408385031215612f6957600080fd5b612f7283612caf565b91506020830135612f8281612f48565b809150509250929050565b634e487b7160e01b600052604160045260246000fd5b60008060008060808587031215612fb957600080fd5b612fc285612caf565b9350612fd060208601612caf565b92506040850135915060608501356001600160401b0380821115612ff357600080fd5b818701915087601f83011261300757600080fd5b81358181111561301957613019612f8d565b604051601f8201601f19908116603f0116810190838211818310171561304157613041612f8d565b816040528281528a602084870101111561305a57600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b6000806040838503121561309157600080fd5b612ef383612caf565b600181811c908216806130ae57607f821691505b6020821081036130ce57634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60006020828403121561311b57600080fd5b8151611f9481612f48565b6020808252601e908201527f5468652063616c6c657220697320616e6f7468657220636f6e74726163740000604082015260600190565b602080825260149082015273496e76616c6964206d696e7420616d6f756e742160601b604082015260600190565b634e487b7160e01b600052601160045260246000fd5b80820180821115610a0057610a0061318b565b6020808252601490820152734d617820737570706c792065786365656465642160601b604082015260600190565b60208082526014908201527326b4b73a103634b6b4ba1032bc31b2b2b232b21760611b604082015260600190565b8082028115828204841417610a0057610a0061318b565b602080825260139082015272496e73756666696369656e742066756e64732160681b604082015260600190565b60208082526022908201527f4e6f742070617274206f66207468652050726573616c652077686974656c69736040820152613a1760f11b606082015260800190565b634e487b7160e01b600052603260045260246000fd5b6000600182016132be576132be61318b565b5060010190565b601f821115610b6457600081815260208120601f850160051c810160208610156132ec5750805b601f850160051c820191505b8181101561330b578281556001016132f8565b505050505050565b6001600160401b0383111561332a5761332a612f8d565b61333e83613338835461309a565b836132c5565b6000601f841160018114613372576000851561335a5750838201355b600019600387901b1c1916600186901b17835561101e565b600083815260209020601f19861690835b828110156133a35786850135825560209485019460019092019101613383565b50868210156133c05760001960f88860031b161c19848701351681555b505060018560011b0183555050505050565b6001600160401b038181168382160190808211156133f2576133f261318b565b5092915050565b6000835161340b818460208801612c33565b83519083019061341f818360208801612c33565b64173539b7b760d91b9101908152600501949350505050565b634e487b7160e01b600052601260045260246000fd5b60008261345d5761345d613438565b500490565b81810381811115610a0057610a0061318b565b60008261348457613484613438565b500690565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906134bc90830184612c57565b9695505050505050565b6000602082840312156134d857600080fd5b8151611f9481612c0056feddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa264697066735822122077d0d96faa42e713ac3d75909ef611163df8a1b6285ae7dda781dd019141422564736f6c63430008110033

Deployed Bytecode

0x60806040526004361061033f5760003560e01c80636afcb7b0116101ae57806395d89b41116100eb578063ca4c65461161008f578063dc33e6811161006c578063dc33e6811461093e578063e985e9c51461095e578063f2fde38b1461097e578063f72fd7f61461099e57005b8063ca4c6546146108d0578063cd11ddc4146108f0578063d5abeb011461092857005b8063b220b77a116100c8578063b220b77a1461085a578063b88d4fde1461087a578063b8939a581461089a578063c87b56dd146108b057005b806395d89b4114610810578063a22cb46514610825578063a2309ff81461084557005b80638da5cb5b1161015257806390aa0b0f1161012f57806390aa0b0f146107a057806391904ced146107c757806391afca55146107dd57806392305466146107f057005b80638da5cb5b146107425780638dbb7c06146107605780638fdcf9421461078057005b80637c0617411161018b5780637c061741146106d65780637cb64759146106f65780637d06848f1461071657806387a8906f1461072c57005b80636afcb7b01461068d57806370812fee146106a057806370a08231146106b657005b8063381a99391161027c57806347fa1e751161022057806355f804b3116101fd57806355f804b314610622578063595d22131461064257806360d938dc146106585780636352211e1461066d57005b806347fa1e75146105d95780634f558e79146105ec57806355a16c241461060c57005b806342842e0e1161025957806342842e0e1461055657806342966c6814610576578063438b630014610596578063453afb0f146105c357005b8063381a9939146105015780633ccfd60b1461052157806340af91ec1461053657005b806318a1c113116102e3578063254077f7116102c0578063254077f7146104ad5780632a23d07d146104c05780632cfac6ec146104d65780632eb4a7ab146104eb57005b806318a1c113146104585780631e84c4131461047857806323b872dd1461048d57005b8063095ea7b31161031c578063095ea7b3146103d7578063112b46cb146103f75780631233339f1461041757806318160ddd1461043b57005b806301ffc9a71461034857806306fdde031461037d578063081812fc1461039f57005b3661034657005b005b34801561035457600080fd5b50610368610363366004612c16565b6109b4565b60405190151581526020015b60405180910390f35b34801561038957600080fd5b50610392610a06565b6040516103749190612c83565b3480156103ab57600080fd5b506103bf6103ba366004612c96565b610a98565b6040516001600160a01b039091168152602001610374565b3480156103e357600080fd5b506103466103f2366004612ccb565b610adc565b34801561040357600080fd5b50610346610412366004612c96565b610b69565b34801561042357600080fd5b5061042d600f5481565b604051908152602001610374565b34801561044757600080fd5b50600154600054036000190161042d565b34801561046457600080fd5b50610346610473366004612d0c565b610ba1565b34801561048457600080fd5b50610368610bd9565b34801561049957600080fd5b506103466104a8366004612d27565b610c28565b6103466104bb366004612d63565b610d84565b3480156104cc57600080fd5b5061042d600c5481565b3480156104e257600080fd5b5061042d601681565b3480156104f757600080fd5b5061042d60145481565b34801561050d57600080fd5b5061034661051c366004612d0c565b611025565b34801561052d57600080fd5b50610346611121565b34801561054257600080fd5b50610346610551366004612de6565b6111bf565b34801561056257600080fd5b50610346610571366004612d27565b611210565b34801561058257600080fd5b50610346610591366004612c96565b611361565b3480156105a257600080fd5b506105b66105b1366004612e07565b611421565b6040516103749190612e22565b3480156105cf57600080fd5b5061042d600d5481565b6103466105e7366004612d63565b611513565b3480156105f857600080fd5b50610368610607366004612c96565b6116fd565b34801561061857600080fd5b5061042d61045781565b34801561062e57600080fd5b5061034661063d366004612e66565b611708565b34801561064e57600080fd5b5061042d6126a181565b34801561066457600080fd5b5061036861173f565b34801561067957600080fd5b506103bf610688366004612c96565b611768565b61034661069b366004612d0c565b61177a565b3480156106ac57600080fd5b5061042d600b5481565b3480156106c257600080fd5b5061042d6106d1366004612e07565b611922565b3480156106e257600080fd5b506103466106f1366004612ed7565b611970565b34801561070257600080fd5b50610346610711366004612c96565b611a10565b34801561072257600080fd5b5061042d600e5481565b34801561073857600080fd5b5061042d60135481565b34801561074e57600080fd5b506008546001600160a01b03166103bf565b34801561076c57600080fd5b5061034661077b366004612c96565b611a3f565b34801561078c57600080fd5b5061034661079b366004612c96565b611a6e565b3480156107ac57600080fd5b50600a546107ba9060ff1681565b6040516103749190612f20565b3480156107d357600080fd5b5061042d60125481565b6103466107eb366004612e07565b611a9d565b3480156107fc57600080fd5b5061034661080b366004612d0c565b611c55565b34801561081c57600080fd5b50610392611c8d565b34801561083157600080fd5b50610346610840366004612f56565b611c9c565b34801561085157600080fd5b5061042d611d31565b34801561086657600080fd5b50610346610875366004612d0c565b611d40565b34801561088657600080fd5b50610346610895366004612fa3565b611d78565b3480156108a657600080fd5b5061042d60115481565b3480156108bc57600080fd5b506103926108cb366004612c96565b611ed0565b3480156108dc57600080fd5b506103466108eb366004612d0c565b611f9b565b3480156108fc57600080fd5b5061091061090b366004612e07565b611fd3565b6040516001600160401b039091168152602001610374565b34801561093457600080fd5b5061042d612af881565b34801561094a57600080fd5b5061042d610959366004612e07565b612001565b34801561096a57600080fd5b5061036861097936600461307e565b61202f565b34801561098a57600080fd5b50610346610999366004612e07565b61205d565b3480156109aa57600080fd5b5061042d60105481565b60006001600160e01b031982166380ac58cd60e01b14806109e557506001600160e01b03198216635b5e139f60e01b145b80610a0057506301ffc9a760e01b6001600160e01b03198316145b92915050565b606060028054610a159061309a565b80601f0160208091040260200160405190810160405280929190818152602001828054610a419061309a565b8015610a8e5780601f10610a6357610100808354040283529160200191610a8e565b820191906000526020600020905b815481529060010190602001808311610a7157829003601f168201915b5050505050905090565b6000610aa3826120f5565b610ac0576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b6000610ae782611768565b9050806001600160a01b0316836001600160a01b031603610b1b5760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b03821614801590610b3b5750610b39813361202f565b155b15610b59576040516367d9dca160e11b815260040160405180910390fd5b610b6483838361212e565b505050565b6008546001600160a01b03163314610b9c5760405162461bcd60e51b8152600401610b93906130d4565b60405180910390fd5b600e55565b6008546001600160a01b03163314610bcb5760405162461bcd60e51b8152600401610b93906130d4565b6001600160401b0316601155565b60006002600a5460ff166004811115610bf457610bf4612f0a565b1480610c17575060045b600a5460ff166004811115610c1557610c15612f0a565b145b15610c225750600190565b50600090565b826daaeb6d7670e522a718067333cd4e3b15610d7357336001600160a01b03821603610c5e57610c5984848461218a565b610d7e565b604051633185c44d60e21b81523060048201523360248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa158015610cad573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610cd19190613109565b8015610d545750604051633185c44d60e21b81523060048201526001600160a01b03821660248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa158015610d30573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d549190613109565b610d7357604051633b79c77360e21b8152336004820152602401610b93565b610d7e84848461218a565b50505050565b323314610da35760405162461bcd60e51b8152600401610b9390613126565b806001600160401b031660008111610dcd5760405162461bcd60e51b8152600401610b939061315d565b610dd5612195565b81610dde611d31565b610de891906131a1565b1115610e065760405162461bcd60e51b8152600401610b93906131b4565b6004600a5460ff166004811115610e1f57610e1f612f0a565b1480610e4157506003600a5460ff166004811115610e3f57610e3f612f0a565b145b610e865760405162461bcd60e51b8152602060048201526016602482015275141a185cd9480c881b9bdd081858dd1a5d99481e595d60521b6044820152606401610b93565b601354826001600160401b0316610e9c33612001565b610ea691906131a1565b1115610ec45760405162461bcd60e51b8152600401610b93906131e2565b600f54826001600160401b0316601054610ede91906131a1565b1115610f1f5760405162461bcd60e51b815260206004820152601060248201526f29bab838363c9032bc31b2b2b232b21760811b6044820152606401610b93565b816001600160401b0316600e54610f369190613210565b3414610f545760405162461bcd60e51b8152600401610b9390613227565b6040516bffffffffffffffffffffffff193360601b166020820152600090603401604051602081830303815290604052805190602001209050610fce85858080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050601454915084905061223a565b610fea5760405162461bcd60e51b8152600401610b9390613254565b826001600160401b03166010600082825461100591906131a1565b9091555061101e9050336001600160401b038516612250565b5050505050565b806001600160401b03166000811161104f5760405162461bcd60e51b8152600401610b939061315d565b611057612195565b81611060611d31565b61106a91906131a1565b11156110885760405162461bcd60e51b8152600401610b93906131b4565b6008546001600160a01b031633146110b25760405162461bcd60e51b8152600401610b93906130d4565b6016826001600160401b0316600b546110cb91906131a1565b11156110e95760405162461bcd60e51b8152600401610b93906131e2565b816001600160401b0316600b600082825461110491906131a1565b9091555061111d9050336001600160401b038416612250565b5050565b6008546001600160a01b0316331461114b5760405162461bcd60e51b8152600401610b93906130d4565b600061115f6008546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d80600081146111a9576040519150601f19603f3d011682016040523d82523d6000602084013e6111ae565b606091505b50509050806111bc57600080fd5b50565b6008546001600160a01b031633146111e95760405162461bcd60e51b8152600401610b93906130d4565b600a805482919060ff1916600183600481111561120857611208612f0a565b021790555050565b826daaeb6d7670e522a718067333cd4e3b1561135657336001600160a01b0382160361124157610c5984848461226a565b604051633185c44d60e21b81523060048201523360248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa158015611290573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112b49190613109565b80156113375750604051633185c44d60e21b81523060048201526001600160a01b03821660248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa158015611313573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906113379190613109565b61135657604051633b79c77360e21b8152336004820152602401610b93565b610d7e84848461226a565b61136a816116fd565b6113ad5760405162461bcd60e51b8152602060048201526014602482015273151bdad95b88191bd95cc81b9bdd08195e1a5cdd60621b6044820152606401610b93565b6113b681611768565b6001600160a01b0316336001600160a01b0316146114165760405162461bcd60e51b815260206004820152601a60248201527f4e6f7420746865206f776e6572206f662074686520746f6b656e0000000000006044820152606401610b93565b6111bc816000612285565b6060600061142e83611922565b90506000816001600160401b0381111561144a5761144a612f8d565b604051908082528060200260200182016040528015611473578160200160208202803683370190505b509050600160005b838110801561148c5750612af88211155b156115095761149a826116fd565b15156001036114f75760006114ae83611768565b9050866001600160a01b0316816001600160a01b0316036114f557828483815181106114dc576114dc613296565b6020908102919091010152816114f1816132ac565b9250505b505b81611501816132ac565b92505061147b565b5090949350505050565b3233146115325760405162461bcd60e51b8152600401610b9390613126565b806001600160401b03166000811161155c5760405162461bcd60e51b8152600401610b939061315d565b611564612195565b8161156d611d31565b61157791906131a1565b11156115955760405162461bcd60e51b8152600401610b93906131b4565b61159d61173f565b6115e15760405162461bcd60e51b815260206004820152601560248201527450726573616c65206973206e6f742041637469766560581b6044820152606401610b93565b601254826001600160401b03166115f733612001565b61160191906131a1565b111561161f5760405162461bcd60e51b8152600401610b93906131e2565b816001600160401b0316600c546116369190613210565b34146116545760405162461bcd60e51b8152600401610b9390613227565b6040516bffffffffffffffffffffffff193360601b1660208201526000906034016040516020818303038152906040528051906020012090506116ce85858080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050601454915084905061223a565b6116ea5760405162461bcd60e51b8152600401610b9390613254565b61101e33846001600160401b0316612250565b6000610a00826120f5565b6008546001600160a01b031633146117325760405162461bcd60e51b8152600401610b93906130d4565b6009610b64828483613313565b60006001600a5460ff16600481111561175a5761175a612f0a565b1480610c1757506003610bfe565b600061177382612438565b5192915050565b3233146117995760405162461bcd60e51b8152600401610b9390613126565b806001600160401b0316600081116117c35760405162461bcd60e51b8152600401610b939061315d565b6117cb612195565b816117d4611d31565b6117de91906131a1565b11156117fc5760405162461bcd60e51b8152600401610b93906131b4565b611804610bd9565b6118505760405162461bcd60e51b815260206004820152601960248201527f5075626c69632073616c65206973206e6f7420416374697665000000000000006044820152606401610b93565b816001600160401b0316600d546118679190613210565b34146118855760405162461bcd60e51b8152600401610b9390613227565b600061189033611fd3565b6011549091506118a084836133d2565b6001600160401b031611156118c75760405162461bcd60e51b8152600401610b93906131e2565b61190f336118d585846133d2565b6001600160a01b038216600090815260056020526040902080546001600160c01b0316600160c01b6001600160401b038416021790555050565b610b6433846001600160401b0316612250565b60006001600160a01b03821661194b576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600560205260409020546001600160401b031690565b816001600160401b03166000811161199a5760405162461bcd60e51b8152600401610b939061315d565b6119a2612195565b816119ab611d31565b6119b591906131a1565b11156119d35760405162461bcd60e51b8152600401610b93906131b4565b6008546001600160a01b031633146119fd5760405162461bcd60e51b8152600401610b93906130d4565b610b6482846001600160401b0316612250565b6008546001600160a01b03163314611a3a5760405162461bcd60e51b8152600401610b93906130d4565b601455565b6008546001600160a01b03163314611a695760405162461bcd60e51b8152600401610b93906130d4565b600d55565b6008546001600160a01b03163314611a985760405162461bcd60e51b8152600401610b93906130d4565b600c55565b6001611aa7612195565b81611ab0611d31565b611aba91906131a1565b1115611ad85760405162461bcd60e51b8152600401610b93906131b4565b611ae0610bd9565b611b215760405162461bcd60e51b815260206004820152601260248201527153616c65206973206e6f742041637469766560701b6044820152606401610b93565b600d54611b2f906001613210565b341015611b4e5760405162461bcd60e51b8152600401610b9390613227565b6000611b5983611fd3565b601154909150611b6a8260016133d2565b6001600160401b03161115611bcc5760405162461bcd60e51b815260206004820152602260248201527f4d6178206d696e7420616d6f756e74207065722077616c6c6574207265616368604482015261195960f21b6064820152608401610b93565b73dab1a1854214684ace522439684a145e625052333314611c3b5760405162461bcd60e51b8152602060048201526024808201527f546869732066756e6374696f6e20697320666f722043726f73736d696e74206f60448201526337363c9760e11b6064820152608401610b93565b611c4a836118d58360016133d2565b610b64836001612250565b6008546001600160a01b03163314611c7f5760405162461bcd60e51b8152600401610b93906130d4565b6001600160401b0316600f55565b606060038054610a159061309a565b336001600160a01b03831603611cc55760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6000546000190190565b905090565b6008546001600160a01b03163314611d6a5760405162461bcd60e51b8152600401610b93906130d4565b6001600160401b0316601255565b836daaeb6d7670e522a718067333cd4e3b15611ec457336001600160a01b03821603611daf57611daa8585858561255f565b61101e565b604051633185c44d60e21b81523060048201523360248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa158015611dfe573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611e229190613109565b8015611ea55750604051633185c44d60e21b81523060048201526001600160a01b03821660248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa158015611e81573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611ea59190613109565b611ec457604051633b79c77360e21b8152336004820152602401610b93565b61101e8585858561255f565b6060611edb826120f5565b611f3f5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610b93565b6000611f496125aa565b90506000815111611f695760405180602001604052806000815250611f94565b80611f73846125b9565b604051602001611f849291906133f9565b6040516020818303038152906040525b9392505050565b6008546001600160a01b03163314611fc55760405162461bcd60e51b8152600401610b93906130d4565b6001600160401b0316601355565b6001600160a01b038116600090815260056020526040812054600160c01b90046001600160401b0316610a00565b6001600160a01b038116600090815260056020526040812054600160401b90046001600160401b0316610a00565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b6008546001600160a01b031633146120875760405162461bcd60e51b8152600401610b93906130d4565b6001600160a01b0381166120ec5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610b93565b6111bc816126c1565b600081600111158015612109575060005482105b8015610a00575050600090815260046020526040902054600160e01b900460ff161590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b610b64838383612713565b60006002600a5460ff1660048111156121b0576121b0612f0a565b14806121d257506001600a5460ff1660048111156121d0576121d0612f0a565b145b156121de575061045790565b6004600a5460ff1660048111156121f7576121f7612f0a565b148061221957506003600a5460ff16600481111561221757612217612f0a565b145b1561222c57611d3b6126a16104576131a1565b611d3b6126a16104576131a1565b60008261224785846128ec565b14949350505050565b61111d828260405180602001604052806000815250612960565b610b6483838360405180602001604052806000815250611d78565b600061229083612438565b805190915082156122f6576000336001600160a01b03831614806122b957506122b9823361202f565b806122d45750336122c986610a98565b6001600160a01b0316145b9050806122f457604051632ce44b5f60e11b815260040160405180910390fd5b505b6123026000858361212e565b6001600160a01b0380821660008181526005602090815260408083208054600160801b6000196001600160401b0380841691909101811667ffffffffffffffff198416811783900482166001908101831690930277ffffffffffffffff0000000000000000ffffffffffffffff19909416179290921783558b86526004909452828520805460ff60e01b1942909316600160a01b026001600160e01b03199091169097179690961716600160e01b17855591890180845292208054919490911661240057600054821461240057805460208701516001600160401b0316600160a01b026001600160e01b03199091166001600160a01b038716171781555b5050604051869250600091506001600160a01b038416906000805160206134e4833981519152908390a4505060018054810190555050565b60408051606081018252600080825260208201819052918101919091528180600111158015612468575060005481105b1561254657600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff161515918101829052906125445780516001600160a01b0316156124db579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b82046001600160401b031693830193909352600160e01b900460ff161515928101929092521561253f579392505050565b6124db565b505b604051636f96cda160e11b815260040160405180910390fd5b61256a848484612713565b6001600160a01b0383163b1515801561258c575061258a8484848461296d565b155b15610d7e576040516368d2bf6b60e11b815260040160405180910390fd5b606060098054610a159061309a565b6060816000036125e05750506040805180820190915260018152600360fc1b602082015290565b8160005b811561260a57806125f4816132ac565b91506126039050600a8361344e565b91506125e4565b6000816001600160401b0381111561262457612624612f8d565b6040519080825280601f01601f19166020018201604052801561264e576020820181803683370190505b5090505b84156126b957612663600183613462565b9150612670600a86613475565b61267b9060306131a1565b60f81b81838151811061269057612690613296565b60200101906001600160f81b031916908160001a9053506126b2600a8661344e565b9450612652565b949350505050565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600061271e82612438565b9050836001600160a01b031681600001516001600160a01b0316146127555760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b03861614806127735750612773853361202f565b8061278e57503361278384610a98565b6001600160a01b0316145b9050806127ae57604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b0384166127d557604051633a954ecd60e21b815260040160405180910390fd5b6127e16000848761212e565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff198082166001600160401b0392831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b429092169190910217835587018084529220805491939091166128b55760005482146128b557805460208601516001600160401b0316600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b03166000805160206134e483398151915260405160405180910390a461101e565b600081815b845181101561295857600085828151811061290e5761290e613296565b602002602001015190508083116129345760008381526020829052604090209250612945565b600081815260208490526040902092505b5080612950816132ac565b9150506128f1565b509392505050565b610b648383836001612a58565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a02906129a2903390899088908890600401613489565b6020604051808303816000875af19250505080156129dd575060408051601f3d908101601f191682019092526129da918101906134c6565b60015b612a3b573d808015612a0b576040519150601f19603f3d011682016040523d82523d6000602084013e612a10565b606091505b508051600003612a33576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050949350505050565b6000546001600160a01b038516612a8157604051622e076360e81b815260040160405180910390fd5b83600003612aa25760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff1981166001600160401b038083168c018116918217600160401b67ffffffffffffffff1990941690921783900481168c01811690920217909155858452600490925290912080546001600160e01b031916909217600160a01b429092169190910217905580808501838015612b4e57506001600160a01b0387163b15155b15612bc4575b60405182906001600160a01b038916906000906000805160206134e4833981519152908290a4612b8d600088848060010195508861296d565b612baa576040516368d2bf6b60e11b815260040160405180910390fd5b808203612b54578260005414612bbf57600080fd5b612bf7565b5b6040516001830192906001600160a01b038916906000906000805160206134e4833981519152908290a4808203612bc5575b5060005561101e565b6001600160e01b0319811681146111bc57600080fd5b600060208284031215612c2857600080fd5b8135611f9481612c00565b60005b83811015612c4e578181015183820152602001612c36565b50506000910152565b60008151808452612c6f816020860160208601612c33565b601f01601f19169290920160200192915050565b602081526000611f946020830184612c57565b600060208284031215612ca857600080fd5b5035919050565b80356001600160a01b0381168114612cc657600080fd5b919050565b60008060408385031215612cde57600080fd5b612ce783612caf565b946020939093013593505050565b80356001600160401b0381168114612cc657600080fd5b600060208284031215612d1e57600080fd5b611f9482612cf5565b600080600060608486031215612d3c57600080fd5b612d4584612caf565b9250612d5360208501612caf565b9150604084013590509250925092565b600080600060408486031215612d7857600080fd5b83356001600160401b0380821115612d8f57600080fd5b818601915086601f830112612da357600080fd5b813581811115612db257600080fd5b8760208260051b8501011115612dc757600080fd5b602092830195509350612ddd9186019050612cf5565b90509250925092565b600060208284031215612df857600080fd5b813560058110611f9457600080fd5b600060208284031215612e1957600080fd5b611f9482612caf565b6020808252825182820181905260009190848201906040850190845b81811015612e5a57835183529284019291840191600101612e3e565b50909695505050505050565b60008060208385031215612e7957600080fd5b82356001600160401b0380821115612e9057600080fd5b818501915085601f830112612ea457600080fd5b813581811115612eb357600080fd5b866020828501011115612ec557600080fd5b60209290920196919550909350505050565b60008060408385031215612eea57600080fd5b612ef383612cf5565b9150612f0160208401612caf565b90509250929050565b634e487b7160e01b600052602160045260246000fd5b6020810160058310612f4257634e487b7160e01b600052602160045260246000fd5b91905290565b80151581146111bc57600080fd5b60008060408385031215612f6957600080fd5b612f7283612caf565b91506020830135612f8281612f48565b809150509250929050565b634e487b7160e01b600052604160045260246000fd5b60008060008060808587031215612fb957600080fd5b612fc285612caf565b9350612fd060208601612caf565b92506040850135915060608501356001600160401b0380821115612ff357600080fd5b818701915087601f83011261300757600080fd5b81358181111561301957613019612f8d565b604051601f8201601f19908116603f0116810190838211818310171561304157613041612f8d565b816040528281528a602084870101111561305a57600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b6000806040838503121561309157600080fd5b612ef383612caf565b600181811c908216806130ae57607f821691505b6020821081036130ce57634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60006020828403121561311b57600080fd5b8151611f9481612f48565b6020808252601e908201527f5468652063616c6c657220697320616e6f7468657220636f6e74726163740000604082015260600190565b602080825260149082015273496e76616c6964206d696e7420616d6f756e742160601b604082015260600190565b634e487b7160e01b600052601160045260246000fd5b80820180821115610a0057610a0061318b565b6020808252601490820152734d617820737570706c792065786365656465642160601b604082015260600190565b60208082526014908201527326b4b73a103634b6b4ba1032bc31b2b2b232b21760611b604082015260600190565b8082028115828204841417610a0057610a0061318b565b602080825260139082015272496e73756666696369656e742066756e64732160681b604082015260600190565b60208082526022908201527f4e6f742070617274206f66207468652050726573616c652077686974656c69736040820152613a1760f11b606082015260800190565b634e487b7160e01b600052603260045260246000fd5b6000600182016132be576132be61318b565b5060010190565b601f821115610b6457600081815260208120601f850160051c810160208610156132ec5750805b601f850160051c820191505b8181101561330b578281556001016132f8565b505050505050565b6001600160401b0383111561332a5761332a612f8d565b61333e83613338835461309a565b836132c5565b6000601f841160018114613372576000851561335a5750838201355b600019600387901b1c1916600186901b17835561101e565b600083815260209020601f19861690835b828110156133a35786850135825560209485019460019092019101613383565b50868210156133c05760001960f88860031b161c19848701351681555b505060018560011b0183555050505050565b6001600160401b038181168382160190808211156133f2576133f261318b565b5092915050565b6000835161340b818460208801612c33565b83519083019061341f818360208801612c33565b64173539b7b760d91b9101908152600501949350505050565b634e487b7160e01b600052601260045260246000fd5b60008261345d5761345d613438565b500490565b81810381811115610a0057610a0061318b565b60008261348457613484613438565b500690565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906134bc90830184612c57565b9695505050505050565b6000602082840312156134d857600080fd5b8151611f9481612c0056feddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa264697066735822122077d0d96faa42e713ac3d75909ef611163df8a1b6285ae7dda781dd019141422564736f6c63430008110033

Deployed Bytecode Sourcemap

52609:10657:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32002:315;;;;;;;;;;-1:-1:-1;32002:315:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;32002:315:0;;;;;;;;35249:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;36822:212::-;;;;;;;;;;-1:-1:-1;36822:212:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1697:32:1;;;1679:51;;1667:2;1652:18;36822:212:0;1533:203:1;36361:389:0;;;;;;;;;;-1:-1:-1;36361:389:0;;;;;:::i;:::-;;:::i;62909:104::-;;;;;;;;;;-1:-1:-1;62909:104:0;;;;;:::i;:::-;;:::i;53322:39::-;;;;;;;;;;;;;;;;;;;2324:25:1;;;2312:2;2297:18;53322:39:0;2178:177:1;31215:315:0;;;;;;;;;;-1:-1:-1;53770:1:0;31477:12;31259:7;31461:13;:28;-1:-1:-1;;31461:46:0;31215:315;;61874:173;;;;;;;;;;-1:-1:-1;61874:173:0;;;;;:::i;:::-;;:::i;54743:194::-;;;;;;;;;;;;;:::i;59313:163::-;;;;;;;;;;-1:-1:-1;59313:163:0;;;;;:::i;:::-;;:::i;56377:880::-;;;;;;:::i;:::-;;:::i;53193:39::-;;;;;;;;;;;;;;;;53001;;;;;;;;;;;;53038:2;53001:39;;53584:25;;;;;;;;;;;;;;;;57561:267;;;;;;;;;;-1:-1:-1;57561:267:0;;;;;:::i;:::-;;:::i;63021:147::-;;;;;;;;;;;;;:::i;62556:101::-;;;;;;;;;;-1:-1:-1;62556:101:0;;;;;:::i;:::-;;:::i;59484:171::-;;;;;;;;;;-1:-1:-1;59484:171:0;;;;;:::i;:::-;;:::i;61201:221::-;;;;;;;;;;-1:-1:-1;61201:221:0;;;;;:::i;:::-;;:::i;58503:802::-;;;;;;;;;;-1:-1:-1;58503:802:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;53239:42::-;;;;;;;;;;;;;;;;55005:661;;;;;;:::i;:::-;;:::i;61089:104::-;;;;;;;;;;-1:-1:-1;61089:104:0;;;;;:::i;:::-;;:::i;53047:45::-;;;;;;;;;;;;53088:4;53047:45;;61591:99;;;;;;;;;;-1:-1:-1;61591:99:0;;;;;:::i;:::-;;:::i;53099:45::-;;;;;;;;;;;;53140:4;53099:45;;54542:193;;;;;;;;;;;;;:::i;35047:129::-;;;;;;;;;;-1:-1:-1;35047:129:0;;;;;:::i;:::-;;:::i;55738:578::-;;;;;;:::i;:::-;;:::i;53151:35::-;;;;;;;;;;;;;;;;32387:212;;;;;;;;;;-1:-1:-1;32387:212:0;;;;;:::i;:::-;;:::i;57323:160::-;;;;;;;;;;-1:-1:-1;57323:160:0;;;;;:::i;:::-;;:::i;62444:104::-;;;;;;;;;;-1:-1:-1;62444:104:0;;;;;:::i;:::-;;:::i;53288:25::-;;;;;;;;;;;;;;;;53531:44;;;;;;;;;;;;;;;;51566:87;;;;;;;;;;-1:-1:-1;51639:6:0;;-1:-1:-1;;;;;51639:6:0;51566:87;;62665:120;;;;;;;;;;-1:-1:-1;62665:120:0;;;;;:::i;:::-;;:::i;62793:108::-;;;;;;;;;;-1:-1:-1;62793:108:0;;;;;:::i;:::-;;:::i;52894:48::-;;;;;;;;;;-1:-1:-1;52894:48:0;;;;;;;;;;;;;;;:::i;53478:46::-;;;;;;;;;;;;;;;;57836:596;;;;;;:::i;:::-;;:::i;62220:143::-;;;;;;;;;;-1:-1:-1;62220:143:0;;;;;:::i;:::-;;:::i;35428:108::-;;;;;;;;;;;;;:::i;37112:297::-;;;;;;;;;;-1:-1:-1;37112:297:0;;;;;:::i;:::-;;:::i;60988:93::-;;;;;;;;;;;;;:::i;61698:165::-;;;;;;;;;;-1:-1:-1;61698:165:0;;;;;:::i;:::-;;:::i;59663:228::-;;;;;;;;;;-1:-1:-1;59663:228:0;;;;;:::i;:::-;;:::i;53422:49::-;;;;;;;;;;;;;;;;59947:484;;;;;;;;;;-1:-1:-1;59947:484:0;;;;;:::i;:::-;;:::i;62055:157::-;;;;;;;;;;-1:-1:-1;62055:157:0;;;;;:::i;:::-;;:::i;60506:117::-;;;;;;;;;;-1:-1:-1;60506:117:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;8447:31:1;;;8429:50;;8417:2;8402:18;60506:117:0;8285:200:1;52953:41:0;;;;;;;;;;;;52989:5;52953:41;;60809:115;;;;;;;;;;-1:-1:-1;60809:115:0;;;;;:::i;:::-;;:::i;37486:168::-;;;;;;;;;;-1:-1:-1;37486:168:0;;;;;:::i;:::-;;:::i;52021:201::-;;;;;;;;;;-1:-1:-1;52021:201:0;;;;;:::i;:::-;;:::i;53368:45::-;;;;;;;;;;;;;;;;32002:315;32104:4;-1:-1:-1;;;;;;32145:40:0;;-1:-1:-1;;;32145:40:0;;:107;;-1:-1:-1;;;;;;;32204:48:0;;-1:-1:-1;;;32204:48:0;32145:107;:162;;;-1:-1:-1;;;;;;;;;;20911:40:0;;;32271:36;32123:184;32002:315;-1:-1:-1;;32002:315:0:o;35249:104::-;35303:13;35338:5;35331:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35249:104;:::o;36822:212::-;36890:7;36917:16;36925:7;36917;:16::i;:::-;36912:64;;36942:34;;-1:-1:-1;;;36942:34:0;;;;;;;;;;;36912:64;-1:-1:-1;37000:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;37000:24:0;;36822:212::o;36361:389::-;36436:13;36452:24;36468:7;36452:15;:24::i;:::-;36436:40;;36499:5;-1:-1:-1;;;;;36493:11:0;:2;-1:-1:-1;;;;;36493:11:0;;36489:48;;36513:24;;-1:-1:-1;;;36513:24:0;;;;;;;;;;;36489:48;27400:10;-1:-1:-1;;;;;36558:21:0;;;;;;:63;;-1:-1:-1;36584:37:0;36601:5;27400:10;37486:168;:::i;36584:37::-;36583:38;36558:63;36554:142;;;36647:35;;-1:-1:-1;;;36647:35:0;;;;;;;;;;;36554:142;36712:28;36721:2;36725:7;36734:5;36712:8;:28::i;:::-;36423:327;36361:389;;:::o;62909:104::-;51639:6;;-1:-1:-1;;;;;51639:6:0;27400:10;51786:23;51778:68;;;;-1:-1:-1;;;51778:68:0;;;;;;;:::i;:::-;;;;;;;;;62981:10:::1;:24:::0;62909:104::o;61874:173::-;51639:6;;-1:-1:-1;;;;;51639:6:0;27400:10;51786:23;51778:68;;;;-1:-1:-1;;;51778:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;61977:62:0::1;:29;:62:::0;61874:173::o;54743:194::-;54794:4;54829:23;54815:10;;;;:37;;;;;;;;:::i;:::-;;:78;;;-1:-1:-1;54870:23:0;54856:37;:10;;;;:37;;;;;;;;:::i;:::-;;54815:78;54811:95;;;-1:-1:-1;54902:4:0;;54743:194::o;54811:95::-;-1:-1:-1;54924:5:0;;54743:194::o;59313:163::-;59414:4;2421:42;3561:43;:47;3557:699;;3848:10;-1:-1:-1;;;;;3840:18:0;;;3836:85;;59431:37:::1;59450:4;59456:2;59460:7;59431:18;:37::i;:::-;3899:7:::0;;3836:85;3981:67;;-1:-1:-1;;;3981:67:0;;4030:4;3981:67;;;9713:34:1;4037:10:0;9763:18:1;;;9756:43;2421:42:0;;3981:40;;9648:18:1;;3981:67:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:157;;;;-1:-1:-1;4077:61:0;;-1:-1:-1;;;4077:61:0;;4126:4;4077:61;;;9713:34:1;-1:-1:-1;;;;;9783:15:1;;9763:18;;;9756:43;2421:42:0;;4077:40;;9648:18:1;;4077:61:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;3935:310;;4199:30;;-1:-1:-1;;;4199:30:0;;4218:10;4199:30;;;1679:51:1;1652:18;;4199:30:0;1533:203:1;3935:310:0;59431:37:::1;59450:4;59456:2;59460:7;59431:18;:37::i;:::-;59313:163:::0;;;;:::o;56377:880::-;54456:9;54469:10;54456:23;54448:66;;;;-1:-1:-1;;;54448:66:0;;;;;;;:::i;:::-;56499:11:::1;-1:-1:-1::0;;;;;54186:219:0::1;54264:1;54250:11;:15;54242:49;;;;-1:-1:-1::0;;;54242:49:0::1;;;;;;;:::i;:::-;54341:19;:17;:19::i;:::-;54326:11;54310:13;:11;:13::i;:::-;:27;;;;:::i;:::-;:50;;54302:83;;;;-1:-1:-1::0;;;54302:83:0::1;;;;;;;:::i;:::-;56545:23:::2;56531:10;::::0;::::2;;:37;::::0;::::2;;;;;;:::i;:::-;;:79;;;-1:-1:-1::0;56586:24:0::2;56572:10;::::0;::::2;;:38;::::0;::::2;;;;;;:::i;:::-;;56531:79;56523:114;;;::::0;-1:-1:-1;;;56523:114:0;;11581:2:1;56523:114:0::2;::::0;::::2;11563:21:1::0;11620:2;11600:18;;;11593:30;-1:-1:-1;;;11639:18:1;;;11632:52;11701:18;;56523:114:0::2;11379:346:1::0;56523:114:0::2;56698:25;;56683:11;-1:-1:-1::0;;;;;56656:38:0::2;:24;56669:10;56656:12;:24::i;:::-;:38;;;;:::i;:::-;:67;;56648:101;;;;-1:-1:-1::0;;;56648:101:0::2;;;;;;;:::i;:::-;56812:20;;56797:11;-1:-1:-1::0;;;;;56768:40:0::2;:26;;:40;;;;:::i;:::-;:64;;56760:94;;;::::0;-1:-1:-1;;;56760:94:0;;12281:2:1;56760:94:0::2;::::0;::::2;12263:21:1::0;12320:2;12300:18;;;12293:30;-1:-1:-1;;;12339:18:1;;;12332:46;12395:18;;56760:94:0::2;12079:340:1::0;56760:94:0::2;56899:11;-1:-1:-1::0;;;;;56886:24:0::2;:10;;:24;;;;:::i;:::-;56873:9;:37;56865:69;;;;-1:-1:-1::0;;;56865:69:0::2;;;;;;;:::i;:::-;57017:28;::::0;-1:-1:-1;;57034:10:0::2;13094:2:1::0;13090:15;13086:53;57017:28:0::2;::::0;::::2;13074:66:1::0;56992:12:0::2;::::0;13156::1;;57017:28:0::2;;;;;;;;;;;;57007:39;;;;;;56992:54;;57065:50;57084:12;;57065:50;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::2;::::0;;;;-1:-1:-1;;57098:10:0::2;::::0;;-1:-1:-1;57110:4:0;;-1:-1:-1;57065:18:0::2;:50::i;:::-;57057:97;;;;-1:-1:-1::0;;;57057:97:0::2;;;;;;;:::i;:::-;57193:11;-1:-1:-1::0;;;;;57165:39:0::2;:26;;:39;;;;;;;:::i;:::-;::::0;;;-1:-1:-1;57215:34:0::2;::::0;-1:-1:-1;57225:10:0::2;-1:-1:-1::0;;;;;57215:34:0;::::2;:9;:34::i;:::-;56512:745;54525:1:::1;56377:880:::0;;;:::o;57561:267::-;57624:11;-1:-1:-1;;;;;54186:219:0;54264:1;54250:11;:15;54242:49;;;;-1:-1:-1;;;54242:49:0;;;;;;;:::i;:::-;54341:19;:17;:19::i;:::-;54326:11;54310:13;:11;:13::i;:::-;:27;;;;:::i;:::-;:50;;54302:83;;;;-1:-1:-1;;;54302:83:0;;;;;;;:::i;:::-;51639:6;;-1:-1:-1;;;;;51639:6:0;27400:10;51786:23:::1;51778:68;;;;-1:-1:-1::0;;;51778:68:0::1;;;;;;;:::i;:::-;53038:2:::2;57685:11;-1:-1:-1::0;;;;;57666:30:0::2;:16;;:30;;;;:::i;:::-;:44;;57658:77;;;;-1:-1:-1::0;;;57658:77:0::2;;;;;;;:::i;:::-;57764:11;-1:-1:-1::0;;;;;57746:29:0::2;:16;;:29;;;;;;;:::i;:::-;::::0;;;-1:-1:-1;57786:34:0::2;::::0;-1:-1:-1;57796:10:0::2;-1:-1:-1::0;;;;;57786:34:0;::::2;:9;:34::i;:::-;57561:267:::0;;:::o;63021:147::-;51639:6;;-1:-1:-1;;;;;51639:6:0;27400:10;51786:23;51778:68;;;;-1:-1:-1;;;51778:68:0;;;;;;;:::i;:::-;63070:7:::1;63091;51639:6:::0;;-1:-1:-1;;;;;51639:6:0;;51566:87;63091:7:::1;-1:-1:-1::0;;;;;63083:21:0::1;63112;63083:55;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;63069:69;;;63157:2;63149:11;;;::::0;::::1;;63058:110;63021:147::o:0;62556:101::-;51639:6;;-1:-1:-1;;;;;51639:6:0;27400:10;51786:23;51778:68;;;;-1:-1:-1;;;51778:68:0;;;;;;;:::i;:::-;62629:10:::1;:20:::0;;62642:7;;62629:10;-1:-1:-1;;62629:20:0::1;::::0;62642:7;62629:20:::1;::::0;::::1;;;;;;:::i;:::-;;;;;;62556:101:::0;:::o;59484:171::-;59589:4;2421:42;3561:43;:47;3557:699;;3848:10;-1:-1:-1;;;;;3840:18:0;;;3836:85;;59606:41:::1;59629:4;59635:2;59639:7;59606:22;:41::i;3836:85::-:0;3981:67;;-1:-1:-1;;;3981:67:0;;4030:4;3981:67;;;9713:34:1;4037:10:0;9763:18:1;;;9756:43;2421:42:0;;3981:40;;9648:18:1;;3981:67:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:157;;;;-1:-1:-1;4077:61:0;;-1:-1:-1;;;4077:61:0;;4126:4;4077:61;;;9713:34:1;-1:-1:-1;;;;;9783:15:1;;9763:18;;;9756:43;2421:42:0;;4077:40;;9648:18:1;;4077:61:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;3935:310;;4199:30;;-1:-1:-1;;;4199:30:0;;4218:10;4199:30;;;1679:51:1;1652:18;;4199:30:0;1533:203:1;3935:310:0;59606:41:::1;59629:4;59635:2;59639:7;59606:22;:41::i;61201:221::-:0;61259:16;61266:8;61259:6;:16::i;:::-;61251:49;;;;-1:-1:-1;;;61251:49:0;;13994:2:1;61251:49:0;;;13976:21:1;14033:2;14013:18;;;14006:30;-1:-1:-1;;;14052:18:1;;;14045:50;14112:18;;61251:49:0;13792:344:1;61251:49:0;61333:17;61341:8;61333:7;:17::i;:::-;-1:-1:-1;;;;;61319:31:0;:10;-1:-1:-1;;;;;61319:31:0;;61311:70;;;;-1:-1:-1;;;61311:70:0;;14343:2:1;61311:70:0;;;14325:21:1;14382:2;14362:18;;;14355:30;14421:28;14401:18;;;14394:56;14467:18;;61311:70:0;14141:350:1;61311:70:0;61392:22;61398:8;61408:5;61392;:22::i;58503:802::-;58592:16;58626:23;58652:17;58662:6;58652:9;:17::i;:::-;58626:43;;58680:30;58727:15;-1:-1:-1;;;;;58713:30:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;58713:30:0;-1:-1:-1;58680:63:0;-1:-1:-1;58779:1:0;58754:22;58831:434;58856:15;58838;:33;:64;;;;;52989:5;58875:14;:27;;58838:64;58831:434;;;58922:22;58929:14;58922:6;:22::i;:::-;:30;;58948:4;58922:30;58919:304;;58973:25;59001:23;59009:14;59001:7;:23::i;:::-;58973:51;;59070:6;-1:-1:-1;;;;;59049:27:0;:17;-1:-1:-1;;;;;59049:27:0;;59045:163;;59134:14;59101:13;59115:15;59101:30;;;;;;;;:::i;:::-;;;;;;;;;;:47;59171:17;;;;:::i;:::-;;;;59045:163;58954:269;58919:304;59237:16;;;;:::i;:::-;;;;58831:434;;;-1:-1:-1;59284:13:0;;58503:802;-1:-1:-1;;;;58503:802:0:o;55005:661::-;54456:9;54469:10;54456:23;54448:66;;;;-1:-1:-1;;;54448:66:0;;;;;;;:::i;:::-;55122:11:::1;-1:-1:-1::0;;;;;54186:219:0::1;54264:1;54250:11;:15;54242:49;;;;-1:-1:-1::0;;;54242:49:0::1;;;;;;;:::i;:::-;54341:19;:17;:19::i;:::-;54326:11;54310:13;:11;:13::i;:::-;:27;;;;:::i;:::-;:50;;54302:83;;;;-1:-1:-1::0;;;54302:83:0::1;;;;;;;:::i;:::-;55154:17:::2;:15;:17::i;:::-;55146:51;;;::::0;-1:-1:-1;;;55146:51:0;;14970:2:1;55146:51:0::2;::::0;::::2;14952:21:1::0;15009:2;14989:18;;;14982:30;-1:-1:-1;;;15028:18:1;;;15021:51;15089:18;;55146:51:0::2;14768:345:1::0;55146:51:0::2;55258:26;;55243:11;-1:-1:-1::0;;;;;55216:38:0::2;:24;55229:10;55216:12;:24::i;:::-;:38;;;;:::i;:::-;:68;;55208:102;;;;-1:-1:-1::0;;;55208:102:0::2;;;;;;;:::i;:::-;55356:11;-1:-1:-1::0;;;;;55342:25:0::2;:11;;:25;;;;:::i;:::-;55329:9;:38;55321:70;;;;-1:-1:-1::0;;;55321:70:0::2;;;;;;;:::i;:::-;55474:28;::::0;-1:-1:-1;;55491:10:0::2;13094:2:1::0;13090:15;13086:53;55474:28:0::2;::::0;::::2;13074:66:1::0;55449:12:0::2;::::0;13156::1;;55474:28:0::2;;;;;;;;;;;;55464:39;;;;;;55449:54;;55522:50;55541:12;;55522:50;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::2;::::0;;;;-1:-1:-1;;55555:10:0::2;::::0;;-1:-1:-1;55567:4:0;;-1:-1:-1;55522:18:0::2;:50::i;:::-;55514:97;;;;-1:-1:-1::0;;;55514:97:0::2;;;;;;;:::i;:::-;55624:34;55634:10;55646:11;-1:-1:-1::0;;;;;55624:34:0::2;:9;:34::i;61089:104::-:0;61144:4;61168:17;61176:8;61168:7;:17::i;61591:99::-;51639:6;;-1:-1:-1;;;;;51639:6:0;27400:10;51786:23;51778:68;;;;-1:-1:-1;;;51778:68:0;;;;;;;:::i;:::-;61663:12:::1;:19;61678:4:::0;;61663:12;:19:::1;:::i;54542:193::-:0;54590:4;54625:24;54611:10;;;;:38;;;;;;;;:::i;:::-;;:80;;;-1:-1:-1;54667:24:0;54653:38;;35047:129;35111:7;35140:21;35153:7;35140:12;:21::i;:::-;:26;;35047:129;-1:-1:-1;;35047:129:0:o;55738:578::-;54456:9;54469:10;54456:23;54448:66;;;;-1:-1:-1;;;54448:66:0;;;;;;;:::i;:::-;55821:11:::1;-1:-1:-1::0;;;;;54186:219:0::1;54264:1;54250:11;:15;54242:49;;;;-1:-1:-1::0;;;54242:49:0::1;;;;;;;:::i;:::-;54341:19;:17;:19::i;:::-;54326:11;54310:13;:11;:13::i;:::-;:27;;;;:::i;:::-;:50;;54302:83;;;;-1:-1:-1::0;;;54302:83:0::1;;;;;;;:::i;:::-;55853:20:::2;:18;:20::i;:::-;55845:58;;;::::0;-1:-1:-1;;;55845:58:0;;17378:2:1;55845:58:0::2;::::0;::::2;17360:21:1::0;17417:2;17397:18;;;17390:30;17456:27;17436:18;;;17429:55;17501:18;;55845:58:0::2;17176:349:1::0;55845:58:0::2;55952:11;-1:-1:-1::0;;;;;55935:28:0::2;:14;;:28;;;;:::i;:::-;55922:9;:41;55914:73;;;;-1:-1:-1::0;;;55914:73:0::2;;;;;;;:::i;:::-;56000:25;56028:33;56050:10;56028:21;:33::i;:::-;56116:29;::::0;56000:61;;-1:-1:-1;56080:32:0::2;56101:11:::0;56000:61;56080:32:::2;:::i;:::-;-1:-1:-1::0;;;;;56080:65:0::2;;;56072:99;;;;-1:-1:-1::0;;;56072:99:0::2;;;;;;;:::i;:::-;56187:66;56209:10;56220:32;56241:11:::0;56220:18;:32:::2;:::i;:::-;-1:-1:-1::0;;;;;33573:19:0;;;;;;:12;:19;;;;;:29;;-1:-1:-1;;;;;33573:29:0;-1:-1:-1;;;;;;;;33573:29:0;;;;;;57561:267;;;56187:66:::2;56274:34;56284:10;56296:11;-1:-1:-1::0;;;;;56274:34:0::2;:9;:34::i;32387:212::-:0;32451:7;-1:-1:-1;;;;;32477:19:0;;32473:60;;32505:28;;-1:-1:-1;;;32505:28:0;;;;;;;;;;;32473:60;-1:-1:-1;;;;;;32561:19:0;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;32561:27:0;;32387:212::o;57323:160::-;57408:11;-1:-1:-1;;;;;54186:219:0;54264:1;54250:11;:15;54242:49;;;;-1:-1:-1;;;54242:49:0;;;;;;;:::i;:::-;54341:19;:17;:19::i;:::-;54326:11;54310:13;:11;:13::i;:::-;:27;;;;:::i;:::-;:50;;54302:83;;;;-1:-1:-1;;;54302:83:0;;;;;;;:::i;:::-;51639:6;;-1:-1:-1;;;;;51639:6:0;27400:10;51786:23:::1;51778:68;;;;-1:-1:-1::0;;;51778:68:0::1;;;;;;;:::i;:::-;57442:33:::2;57452:9;57463:11;-1:-1:-1::0;;;;;57442:33:0::2;:9;:33::i;62444:104::-:0;51639:6;;-1:-1:-1;;;;;51639:6:0;27400:10;51786:23;51778:68;;;;-1:-1:-1;;;51778:68:0;;;;;;;:::i;:::-;62516:10:::1;:24:::0;62444:104::o;62665:120::-;51639:6;;-1:-1:-1;;;;;51639:6:0;27400:10;51786:23;51778:68;;;;-1:-1:-1;;;51778:68:0;;;;;;;:::i;:::-;62745:14:::1;:32:::0;62665:120::o;62793:108::-;51639:6;;-1:-1:-1;;;;;51639:6:0;27400:10;51786:23;51778:68;;;;-1:-1:-1;;;51778:68:0;;;;;;;:::i;:::-;62867:11:::1;:26:::0;62793:108::o;57836:596::-;57898:1;54341:19;:17;:19::i;:::-;54326:11;54310:13;:11;:13::i;:::-;:27;;;;:::i;:::-;:50;;54302:83;;;;-1:-1:-1;;;54302:83:0;;;;;;;:::i;:::-;57920:20:::1;:18;:20::i;:::-;57912:51;;;::::0;-1:-1:-1;;;57912:51:0;;17917:2:1;57912:51:0::1;::::0;::::1;17899:21:1::0;17956:2;17936:18;;;17929:30;-1:-1:-1;;;17975:18:1;;;17968:48;18033:18;;57912:51:0::1;17715:342:1::0;57912:51:0::1;57995:14;::::0;:18:::1;::::0;58012:1:::1;57995:18;:::i;:::-;57982:9;:31;;57974:63;;;;-1:-1:-1::0;;;57974:63:0::1;;;;;;;:::i;:::-;58048:25;58076:26;58098:3;58076:21;:26::i;:::-;58148:29;::::0;58048:54;;-1:-1:-1;58123:21:0::1;58048:54:::0;58143:1:::1;58123:21;:::i;:::-;-1:-1:-1::0;;;;;58123:54:0::1;;;58115:103;;;::::0;-1:-1:-1;;;58115:103:0;;18264:2:1;58115:103:0::1;::::0;::::1;18246:21:1::0;18303:2;18283:18;;;18276:30;18342:34;18322:18;;;18315:62;-1:-1:-1;;;18393:18:1;;;18386:32;18435:19;;58115:103:0::1;18062:398:1::0;58115:103:0::1;58251:42;58237:10;:56;58229:106;;;::::0;-1:-1:-1;;;58229:106:0;;18667:2:1;58229:106:0::1;::::0;::::1;18649:21:1::0;18706:2;18686:18;;;18679:30;18745:34;18725:18;;;18718:62;-1:-1:-1;;;18796:18:1;;;18789:34;18840:19;;58229:106:0::1;18465:400:1::0;58229:106:0::1;58348:49;58370:3:::0;58374:22:::1;:18:::0;58395:1:::1;58374:22;:::i;58348:49::-;58408:16;58418:3;58422:1;58408:9;:16::i;62220:143::-:0;51639:6;;-1:-1:-1;;;;;51639:6:0;27400:10;51786:23;51778:68;;;;-1:-1:-1;;;51778:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;62311:44:0::1;:20;:44:::0;62220:143::o;35428:108::-;35484:13;35519:7;35512:14;;;;;:::i;37112:297::-;27400:10;-1:-1:-1;;;;;37213:24:0;;;37209:54;;37246:17;;-1:-1:-1;;;37246:17:0;;;;;;;;;;;37209:54;27400:10;37280:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;37280:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;37280:53:0;;;;;;;;;;37351:48;;540:41:1;;;37280:42:0;;27400:10;37351:48;;513:18:1;37351:48:0;;;;;;;37112:297;;:::o;60988:93::-;61032:7;31870:13;-1:-1:-1;;31870:31:0;;60988:93::o;61059:14::-;61052:21;;60988:93;:::o;61698:165::-;51639:6;;-1:-1:-1;;;;;51639:6:0;27400:10;51786:23;51778:68;;;;-1:-1:-1;;;51778:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;61799:56:0::1;:26;:56:::0;61698:165::o;59663:228::-;59814:4;2421:42;3561:43;:47;3557:699;;3848:10;-1:-1:-1;;;;;3840:18:0;;;3836:85;;59836:47:::1;59859:4;59865:2;59869:7;59878:4;59836:22;:47::i;:::-;3899:7:::0;;3836:85;3981:67;;-1:-1:-1;;;3981:67:0;;4030:4;3981:67;;;9713:34:1;4037:10:0;9763:18:1;;;9756:43;2421:42:0;;3981:40;;9648:18:1;;3981:67:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:157;;;;-1:-1:-1;4077:61:0;;-1:-1:-1;;;4077:61:0;;4126:4;4077:61;;;9713:34:1;-1:-1:-1;;;;;9783:15:1;;9763:18;;;9756:43;2421:42:0;;4077:40;;9648:18:1;;4077:61:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;3935:310;;4199:30;;-1:-1:-1;;;4199:30:0;;4218:10;4199:30;;;1679:51:1;1652:18;;4199:30:0;1533:203:1;3935:310:0;59836:47:::1;59859:4;59865:2;59869:7;59878:4;59836:22;:47::i;59947:484::-:0;60068:13;60121:17;60129:8;60121:7;:17::i;:::-;60103:106;;;;-1:-1:-1;;;60103:106:0;;19072:2:1;60103:106:0;;;19054:21:1;19111:2;19091:18;;;19084:30;19150:34;19130:18;;;19123:62;-1:-1:-1;;;19201:18:1;;;19194:45;19256:19;;60103:106:0;18870:411:1;60103:106:0;60222:28;60253:10;:8;:10::i;:::-;60222:41;;60314:1;60289:14;60283:28;:32;:140;;;;;;;;;;;;;;;;;60357:14;60373:19;:8;:17;:19::i;:::-;60340:62;;;;;;;;;:::i;:::-;;;;;;;;;;;;;60283:140;60276:147;59947:484;-1:-1:-1;;;59947:484:0:o;62055:157::-;51639:6;;-1:-1:-1;;;;;51639:6:0;27400:10;51786:23;51778:68;;;;-1:-1:-1;;;51778:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;62150:54:0::1;:25;:54:::0;62055:157::o;60506:117::-;-1:-1:-1;;;;;33280:19:0;;60574:6;33280:19;;;:12;:19;;;;;:23;-1:-1:-1;;;33280:23:0;;-1:-1:-1;;;;;33280:23:0;60600:15;33197:116;60809:115;-1:-1:-1;;;;;32785:19:0;;60868:7;32785:19;;;:12;:19;;;;;:32;-1:-1:-1;;;32785:32:0;;-1:-1:-1;;;;;32785:32:0;60895:21;32687:141;37486:168;-1:-1:-1;;;;;37609:25:0;;;37583:4;37609:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;37486:168::o;52021:201::-;51639:6;;-1:-1:-1;;;;;51639:6:0;27400:10;51786:23;51778:68;;;;-1:-1:-1;;;51778:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;52110:22:0;::::1;52102:73;;;::::0;-1:-1:-1;;;52102:73:0;;20156:2:1;52102:73:0::1;::::0;::::1;20138:21:1::0;20195:2;20175:18;;;20168:30;20234:34;20214:18;;;20207:62;-1:-1:-1;;;20285:18:1;;;20278:36;20331:19;;52102:73:0::1;19954:402:1::0;52102:73:0::1;52186:28;52205:8;52186:18;:28::i;38910:193::-:0;38967:4;39012:7;53770:1;38993:26;;:53;;;;;39033:13;;39023:7;:23;38993:53;:100;;;;-1:-1:-1;;39066:20:0;;;;:11;:20;;;;;:27;-1:-1:-1;;;39066:27:0;;;;39065:28;;38910:193::o;47432:210::-;47557:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;47557:29:0;-1:-1:-1;;;;;47557:29:0;;;;;;;;;47604:28;;47557:24;;47604:28;;;;;;;47432:210;;;:::o;37727:182::-;37871:28;37881:4;37887:2;37891:7;37871:9;:28::i;53787:391::-;53839:7;53877:23;53863:10;;;;:37;;;;;;;;:::i;:::-;;:77;;;-1:-1:-1;53916:24:0;53902:10;;;;:38;;;;;;;;:::i;:::-;;53863:77;53859:117;;;-1:-1:-1;53088:4:0;;53787:391::o;53859:117::-;54005:23;53991:10;;;;:37;;;;;;;;:::i;:::-;;:77;;;-1:-1:-1;54044:24:0;54030:10;;;;:38;;;;;;;;:::i;:::-;;53991:77;53987:134;;;54090:31;53140:4;53088;54090:31;:::i;53987:134::-;54139:31;53140:4;53088;54139:31;:::i;5897:190::-;6022:4;6075;6046:25;6059:5;6066:4;6046:12;:25::i;:::-;:33;;5897:190;-1:-1:-1;;;;5897:190:0:o;39115:108::-;39186:27;39196:2;39200:8;39186:27;;;;;;;;;;;;:9;:27::i;37986:197::-;38134:39;38151:4;38157:2;38161:7;38134:39;;;;;;;;;;;;:16;:39::i;44794:2514::-;44876:35;44914:21;44927:7;44914:12;:21::i;:::-;44967:18;;44876:59;;-1:-1:-1;45002:302:0;;;;45038:22;27400:10;-1:-1:-1;;;;;45064:20:0;;;;:79;;-1:-1:-1;45107:36:0;45124:4;27400:10;37486:168;:::i;45107:36::-;45064:138;;;-1:-1:-1;27400:10:0;45166:20;45178:7;45166:11;:20::i;:::-;-1:-1:-1;;;;;45166:36:0;;45064:138;45038:165;;45229:17;45224:66;;45255:35;;-1:-1:-1;;;45255:35:0;;;;;;;;;;;45224:66;45021:283;45002:302;45442:35;45459:1;45463:7;45472:4;45442:8;:35::i;:::-;-1:-1:-1;;;;;45819:18:0;;;45785:31;45819:18;;;:12;:18;;;;;;;;45854:24;;-1:-1:-1;;;;;;;;;;45854:24:0;;;;;;;;;-1:-1:-1;;45854:24:0;;;;45895:29;;;;;45877:1;45895:29;;;;;;;;-1:-1:-1;;45895:29:0;;;;;;;;;;46063:20;;;:11;:20;;;;;;46100;;-1:-1:-1;;;;46170:15:0;46137:49;;;-1:-1:-1;;;46137:49:0;-1:-1:-1;;;;;;46137:49:0;;;;;;;;;;46203:22;-1:-1:-1;;;46203:22:0;;;46503:11;;;46565:24;;;;;46610:13;;45819:18;;46565:24;;46610:13;46606:398;;46826:13;;46811:11;:28;46807:180;;46866:20;;46937:28;;;;-1:-1:-1;;;;;46911:54:0;-1:-1:-1;;;46911:54:0;-1:-1:-1;;;;;;46911:54:0;;;-1:-1:-1;;;;;46866:20:0;;46911:54;;;;46807:180;-1:-1:-1;;47038:35:0;;47065:7;;-1:-1:-1;47061:1:0;;-1:-1:-1;;;;;;47038:35:0;;;-1:-1:-1;;;;;;;;;;;47038:35:0;47061:1;;47038:35;-1:-1:-1;;47271:12:0;:14;;;;;;-1:-1:-1;;44794:2514:0:o;33820:1159::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;33933:7:0;;53770:1;33988:23;;:47;;;;;34022:13;;34015:4;:20;33988:47;33984:922;;;34058:31;34092:17;;;:11;:17;;;;;;;;;34058:51;;;;;;;;;-1:-1:-1;;;;;34058:51:0;;;;-1:-1:-1;;;34058:51:0;;-1:-1:-1;;;;;34058:51:0;;;;;;;;-1:-1:-1;;;34058:51:0;;;;;;;;;;;;;;34130:759;;34182:14;;-1:-1:-1;;;;;34182:28:0;;34178:105;;34248:9;33820:1159;-1:-1:-1;;;33820:1159:0:o;34178:105::-;-1:-1:-1;;;34637:6:0;34684:17;;;;:11;:17;;;;;;;;;34672:29;;;;;;;;;-1:-1:-1;;;;;34672:29:0;;;;;-1:-1:-1;;;34672:29:0;;-1:-1:-1;;;;;34672:29:0;;;;;;;;-1:-1:-1;;;34672:29:0;;;;;;;;;;;;;34734:28;34730:113;;34804:9;33820:1159;-1:-1:-1;;;33820:1159:0:o;34730:113::-;34595:273;;;34037:869;33984:922;34938:31;;-1:-1:-1;;;34938:31:0;;;;;;;;;;;38260:389;38439:28;38449:4;38455:2;38459:7;38439:9;:28::i;:::-;-1:-1:-1;;;;;38484:13:0;;11014:19;:23;;38484:76;;;;;38504:56;38535:4;38541:2;38545:7;38554:5;38504:30;:56::i;:::-;38503:57;38484:76;38480:160;;;38586:40;;-1:-1:-1;;;38586:40:0;;;;;;;;;;;61470:113;61530:13;61563:12;61556:19;;;;;:::i;7727:723::-;7783:13;8004:5;8013:1;8004:10;8000:53;;-1:-1:-1;;8031:10:0;;;;;;;;;;;;-1:-1:-1;;;8031:10:0;;;;;7727:723::o;8000:53::-;8078:5;8063:12;8119:78;8126:9;;8119:78;;8152:8;;;;:::i;:::-;;-1:-1:-1;8175:10:0;;-1:-1:-1;8183:2:0;8175:10;;:::i;:::-;;;8119:78;;;8207:19;8239:6;-1:-1:-1;;;;;8229:17:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;8229:17:0;;8207:39;;8257:154;8264:10;;8257:154;;8291:11;8301:1;8291:11;;:::i;:::-;;-1:-1:-1;8360:10:0;8368:2;8360:5;:10;:::i;:::-;8347:24;;:2;:24;:::i;:::-;8334:39;;8317:6;8324;8317:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;8317:56:0;;;;;;;;-1:-1:-1;8388:11:0;8397:2;8388:11;;:::i;:::-;;;8257:154;;;8435:6;7727:723;-1:-1:-1;;;;7727:723:0:o;52382:191::-;52475:6;;;-1:-1:-1;;;;;52492:17:0;;;-1:-1:-1;;;;;;52492:17:0;;;;;;;52525:40;;52475:6;;;52492:17;52475:6;;52525:40;;52456:16;;52525:40;52445:128;52382:191;:::o;42151:2226::-;42276:35;42314:21;42327:7;42314:12;:21::i;:::-;42276:59;;42378:4;-1:-1:-1;;;;;42356:26:0;:13;:18;;;-1:-1:-1;;;;;42356:26:0;;42352:67;;42391:28;;-1:-1:-1;;;42391:28:0;;;;;;;;;;;42352:67;42436:22;27400:10;-1:-1:-1;;;;;42462:20:0;;;;:75;;-1:-1:-1;42501:36:0;42518:4;27400:10;37486:168;:::i;42501:36::-;42462:130;;;-1:-1:-1;27400:10:0;42556:20;42568:7;42556:11;:20::i;:::-;-1:-1:-1;;;;;42556:36:0;;42462:130;42436:157;;42615:17;42610:66;;42641:35;;-1:-1:-1;;;42641:35:0;;;;;;;;;;;42610:66;-1:-1:-1;;;;;42693:16:0;;42689:52;;42718:23;;-1:-1:-1;;;42718:23:0;;;;;;;;;;;42689:52;42872:35;42889:1;42893:7;42902:4;42872:8;:35::i;:::-;-1:-1:-1;;;;;43215:18:0;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;43215:31:0;;;-1:-1:-1;;;;;43215:31:0;;;-1:-1:-1;;43215:31:0;;;;;;;43263:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;43263:29:0;;;;;;;;;;;43347:20;;;:11;:20;;;;;;43384:18;;-1:-1:-1;;;;;;43419:49:0;;;;-1:-1:-1;;;43452:15:0;43419:49;;;;;;;;;;43750:11;;43812:24;;;;;43857:13;;43347:20;;43812:24;;43857:13;43853:398;;44073:13;;44058:11;:28;44054:180;;44113:20;;44184:28;;;;-1:-1:-1;;;;;44158:54:0;-1:-1:-1;;;44158:54:0;-1:-1:-1;;;;;;44158:54:0;;;-1:-1:-1;;;;;44113:20:0;;44158:54;;;;44054:180;43188:1076;;;44304:7;44300:2;-1:-1:-1;;;;;44285:27:0;44294:4;-1:-1:-1;;;;;44285:27:0;-1:-1:-1;;;;;;;;;;;44285:27:0;;;;;;;;;44325:42;59313:163;6448:675;6531:7;6574:4;6531:7;6589:497;6613:5;:12;6609:1;:16;6589:497;;;6647:20;6670:5;6676:1;6670:8;;;;;;;;:::i;:::-;;;;;;;6647:31;;6713:12;6697;:28;6693:382;;7199:13;7249:15;;;7285:4;7278:15;;;7332:4;7316:21;;6825:57;;6693:382;;;7199:13;7249:15;;;7285:4;7278:15;;;7332:4;7316:21;;7002:57;;6693:382;-1:-1:-1;6627:3:0;;;;:::i;:::-;;;;6589:497;;;-1:-1:-1;7103:12:0;6448:675;-1:-1:-1;;;6448:675:0:o;39592:175::-;39725:32;39731:2;39735:8;39745:5;39752:4;39725:5;:32::i;48140:701::-;48336:72;;-1:-1:-1;;;48336:72:0;;48313:4;;-1:-1:-1;;;;;48336:36:0;;;;;:72;;27400:10;;48387:4;;48393:7;;48402:5;;48336:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;48336:72:0;;;;;;;;-1:-1:-1;;48336:72:0;;;;;;;;;;;;:::i;:::-;;;48332:500;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48576:6;:13;48593:1;48576:18;48572:247;;48624:40;;-1:-1:-1;;;48624:40:0;;;;;;;;;;;48572:247;48773:6;48767:13;48758:6;48754:2;48750:15;48743:38;48332:500;-1:-1:-1;;;;;;48457:55:0;-1:-1:-1;;;48457:55:0;;-1:-1:-1;48140:701:0;;;;;;:::o;40032:1859::-;40183:20;40206:13;-1:-1:-1;;;;;40236:16:0;;40232:48;;40261:19;;-1:-1:-1;;;40261:19:0;;;;;;;;;;;40232:48;40297:8;40309:1;40297:13;40293:44;;40319:18;;-1:-1:-1;;;40319:18:0;;;;;;;;;;;40293:44;-1:-1:-1;;;;;40704:16:0;;;;;;:12;:16;;;;;;;;:44;;-1:-1:-1;;40765:49:0;;-1:-1:-1;;;;;40704:44:0;;;;;;;40765:49;;;-1:-1:-1;;;;;40704:44:0;;;;;;40765:49;;;;;;;;;;;;;;;;40835:25;;;:11;:25;;;;;;:35;;-1:-1:-1;;;;;;40887:66:0;;;;-1:-1:-1;;;40937:15:0;40887:66;;;;;;;;;;40835:25;41040:23;;;41088:4;:23;;;;-1:-1:-1;;;;;;41096:13:0;;11014:19;:23;;41096:15;41084:667;;;41134:324;41167:38;;41192:12;;-1:-1:-1;;;;;41167:38:0;;;41184:1;;-1:-1:-1;;;;;;;;;;;41167:38:0;41184:1;;41167:38;41235:69;41274:1;41278:2;41282:14;;;;;;41298:5;41235:30;:69::i;:::-;41230:178;;41342:40;;-1:-1:-1;;;41342:40:0;;;;;;;;;;;41230:178;41453:3;41437:12;:19;41134:324;;41543:12;41526:13;;:29;41522:43;;41557:8;;;41522:43;41084:667;;;41610:124;41643:40;;41668:14;;;;;-1:-1:-1;;;;;41643:40:0;;;41660:1;;-1:-1:-1;;;;;;;;;;;41643:40:0;41660:1;;41643:40;41729:3;41713:12;:19;41610:124;;41084:667;-1:-1:-1;41767:13:0;:28;41821:60;59313:163;14:131:1;-1:-1:-1;;;;;;88:32:1;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;592:250::-;677:1;687:113;701:6;698:1;695:13;687:113;;;777:11;;;771:18;758:11;;;751:39;723:2;716:10;687:113;;;-1:-1:-1;;834:1:1;816:16;;809:27;592:250::o;847:271::-;889:3;927:5;921:12;954:6;949:3;942:19;970:76;1039:6;1032:4;1027:3;1023:14;1016:4;1009:5;1005:16;970:76;:::i;:::-;1100:2;1079:15;-1:-1:-1;;1075:29:1;1066:39;;;;1107:4;1062:50;;847:271;-1:-1:-1;;847:271:1:o;1123:220::-;1272:2;1261:9;1254:21;1235:4;1292:45;1333:2;1322:9;1318:18;1310:6;1292:45;:::i;1348:180::-;1407:6;1460:2;1448:9;1439:7;1435:23;1431:32;1428:52;;;1476:1;1473;1466:12;1428:52;-1:-1:-1;1499:23:1;;1348:180;-1:-1:-1;1348:180:1:o;1741:173::-;1809:20;;-1:-1:-1;;;;;1858:31:1;;1848:42;;1838:70;;1904:1;1901;1894:12;1838:70;1741:173;;;:::o;1919:254::-;1987:6;1995;2048:2;2036:9;2027:7;2023:23;2019:32;2016:52;;;2064:1;2061;2054:12;2016:52;2087:29;2106:9;2087:29;:::i;:::-;2077:39;2163:2;2148:18;;;;2135:32;;-1:-1:-1;;;1919:254:1:o;2360:171::-;2427:20;;-1:-1:-1;;;;;2476:30:1;;2466:41;;2456:69;;2521:1;2518;2511:12;2536:184;2594:6;2647:2;2635:9;2626:7;2622:23;2618:32;2615:52;;;2663:1;2660;2653:12;2615:52;2686:28;2704:9;2686:28;:::i;2725:328::-;2802:6;2810;2818;2871:2;2859:9;2850:7;2846:23;2842:32;2839:52;;;2887:1;2884;2877:12;2839:52;2910:29;2929:9;2910:29;:::i;:::-;2900:39;;2958:38;2992:2;2981:9;2977:18;2958:38;:::i;:::-;2948:48;;3043:2;3032:9;3028:18;3015:32;3005:42;;2725:328;;;;;:::o;3058:693::-;3152:6;3160;3168;3221:2;3209:9;3200:7;3196:23;3192:32;3189:52;;;3237:1;3234;3227:12;3189:52;3277:9;3264:23;-1:-1:-1;;;;;3347:2:1;3339:6;3336:14;3333:34;;;3363:1;3360;3353:12;3333:34;3401:6;3390:9;3386:22;3376:32;;3446:7;3439:4;3435:2;3431:13;3427:27;3417:55;;3468:1;3465;3458:12;3417:55;3508:2;3495:16;3534:2;3526:6;3523:14;3520:34;;;3550:1;3547;3540:12;3520:34;3605:7;3598:4;3588:6;3585:1;3581:14;3577:2;3573:23;3569:34;3566:47;3563:67;;;3626:1;3623;3616:12;3563:67;3657:4;3649:13;;;;-1:-1:-1;3681:6:1;-1:-1:-1;3706:39:1;;3724:20;;;-1:-1:-1;3706:39:1;:::i;:::-;3696:49;;3058:693;;;;;:::o;3938:271::-;4012:6;4065:2;4053:9;4044:7;4040:23;4036:32;4033:52;;;4081:1;4078;4071:12;4033:52;4120:9;4107:23;4159:1;4152:5;4149:12;4139:40;;4175:1;4172;4165:12;4214:186;4273:6;4326:2;4314:9;4305:7;4301:23;4297:32;4294:52;;;4342:1;4339;4332:12;4294:52;4365:29;4384:9;4365:29;:::i;4405:632::-;4576:2;4628:21;;;4698:13;;4601:18;;;4720:22;;;4547:4;;4576:2;4799:15;;;;4773:2;4758:18;;;4547:4;4842:169;4856:6;4853:1;4850:13;4842:169;;;4917:13;;4905:26;;4986:15;;;;4951:12;;;;4878:1;4871:9;4842:169;;;-1:-1:-1;5028:3:1;;4405:632;-1:-1:-1;;;;;;4405:632:1:o;5042:592::-;5113:6;5121;5174:2;5162:9;5153:7;5149:23;5145:32;5142:52;;;5190:1;5187;5180:12;5142:52;5230:9;5217:23;-1:-1:-1;;;;;5300:2:1;5292:6;5289:14;5286:34;;;5316:1;5313;5306:12;5286:34;5354:6;5343:9;5339:22;5329:32;;5399:7;5392:4;5388:2;5384:13;5380:27;5370:55;;5421:1;5418;5411:12;5370:55;5461:2;5448:16;5487:2;5479:6;5476:14;5473:34;;;5503:1;5500;5493:12;5473:34;5548:7;5543:2;5534:6;5530:2;5526:15;5522:24;5519:37;5516:57;;;5569:1;5566;5559:12;5516:57;5600:2;5592:11;;;;;5622:6;;-1:-1:-1;5042:592:1;;-1:-1:-1;;;;5042:592:1:o;5639:258::-;5706:6;5714;5767:2;5755:9;5746:7;5742:23;5738:32;5735:52;;;5783:1;5780;5773:12;5735:52;5806:28;5824:9;5806:28;:::i;:::-;5796:38;;5853;5887:2;5876:9;5872:18;5853:38;:::i;:::-;5843:48;;5639:258;;;;;:::o;6087:127::-;6148:10;6143:3;6139:20;6136:1;6129:31;6179:4;6176:1;6169:15;6203:4;6200:1;6193:15;6219:343;6366:2;6351:18;;6399:1;6388:13;;6378:144;;6444:10;6439:3;6435:20;6432:1;6425:31;6479:4;6476:1;6469:15;6507:4;6504:1;6497:15;6378:144;6531:25;;;6219:343;:::o;6567:118::-;6653:5;6646:13;6639:21;6632:5;6629:32;6619:60;;6675:1;6672;6665:12;6690:315;6755:6;6763;6816:2;6804:9;6795:7;6791:23;6787:32;6784:52;;;6832:1;6829;6822:12;6784:52;6855:29;6874:9;6855:29;:::i;:::-;6845:39;;6934:2;6923:9;6919:18;6906:32;6947:28;6969:5;6947:28;:::i;:::-;6994:5;6984:15;;;6690:315;;;;;:::o;7010:127::-;7071:10;7066:3;7062:20;7059:1;7052:31;7102:4;7099:1;7092:15;7126:4;7123:1;7116:15;7142:1138;7237:6;7245;7253;7261;7314:3;7302:9;7293:7;7289:23;7285:33;7282:53;;;7331:1;7328;7321:12;7282:53;7354:29;7373:9;7354:29;:::i;:::-;7344:39;;7402:38;7436:2;7425:9;7421:18;7402:38;:::i;:::-;7392:48;;7487:2;7476:9;7472:18;7459:32;7449:42;;7542:2;7531:9;7527:18;7514:32;-1:-1:-1;;;;;7606:2:1;7598:6;7595:14;7592:34;;;7622:1;7619;7612:12;7592:34;7660:6;7649:9;7645:22;7635:32;;7705:7;7698:4;7694:2;7690:13;7686:27;7676:55;;7727:1;7724;7717:12;7676:55;7763:2;7750:16;7785:2;7781;7778:10;7775:36;;;7791:18;;:::i;:::-;7866:2;7860:9;7834:2;7920:13;;-1:-1:-1;;7916:22:1;;;7940:2;7912:31;7908:40;7896:53;;;7964:18;;;7984:22;;;7961:46;7958:72;;;8010:18;;:::i;:::-;8050:10;8046:2;8039:22;8085:2;8077:6;8070:18;8125:7;8120:2;8115;8111;8107:11;8103:20;8100:33;8097:53;;;8146:1;8143;8136:12;8097:53;8202:2;8197;8193;8189:11;8184:2;8176:6;8172:15;8159:46;8247:1;8242:2;8237;8229:6;8225:15;8221:24;8214:35;8268:6;8258:16;;;;;;;7142:1138;;;;;;;:::o;8490:260::-;8558:6;8566;8619:2;8607:9;8598:7;8594:23;8590:32;8587:52;;;8635:1;8632;8625:12;8587:52;8658:29;8677:9;8658:29;:::i;8755:380::-;8834:1;8830:12;;;;8877;;;8898:61;;8952:4;8944:6;8940:17;8930:27;;8898:61;9005:2;8997:6;8994:14;8974:18;8971:38;8968:161;;9051:10;9046:3;9042:20;9039:1;9032:31;9086:4;9083:1;9076:15;9114:4;9111:1;9104:15;8968:161;;8755:380;;;:::o;9140:356::-;9342:2;9324:21;;;9361:18;;;9354:30;9420:34;9415:2;9400:18;;9393:62;9487:2;9472:18;;9140:356::o;9810:245::-;9877:6;9930:2;9918:9;9909:7;9905:23;9901:32;9898:52;;;9946:1;9943;9936:12;9898:52;9978:9;9972:16;9997:28;10019:5;9997:28;:::i;10060:354::-;10262:2;10244:21;;;10301:2;10281:18;;;10274:30;10340:32;10335:2;10320:18;;10313:60;10405:2;10390:18;;10060:354::o;10419:344::-;10621:2;10603:21;;;10660:2;10640:18;;;10633:30;-1:-1:-1;;;10694:2:1;10679:18;;10672:50;10754:2;10739:18;;10419:344::o;10768:127::-;10829:10;10824:3;10820:20;10817:1;10810:31;10860:4;10857:1;10850:15;10884:4;10881:1;10874:15;10900:125;10965:9;;;10986:10;;;10983:36;;;10999:18;;:::i;11030:344::-;11232:2;11214:21;;;11271:2;11251:18;;;11244:30;-1:-1:-1;;;11305:2:1;11290:18;;11283:50;11365:2;11350:18;;11030:344::o;11730:::-;11932:2;11914:21;;;11971:2;11951:18;;;11944:30;-1:-1:-1;;;12005:2:1;11990:18;;11983:50;12065:2;12050:18;;11730:344::o;12424:168::-;12497:9;;;12528;;12545:15;;;12539:22;;12525:37;12515:71;;12566:18;;:::i;12597:343::-;12799:2;12781:21;;;12838:2;12818:18;;;12811:30;-1:-1:-1;;;12872:2:1;12857:18;;12850:49;12931:2;12916:18;;12597:343::o;13179:398::-;13381:2;13363:21;;;13420:2;13400:18;;;13393:30;13459:34;13454:2;13439:18;;13432:62;-1:-1:-1;;;13525:2:1;13510:18;;13503:32;13567:3;13552:19;;13179:398::o;14496:127::-;14557:10;14552:3;14548:20;14545:1;14538:31;14588:4;14585:1;14578:15;14612:4;14609:1;14602:15;14628:135;14667:3;14688:17;;;14685:43;;14708:18;;:::i;:::-;-1:-1:-1;14755:1:1;14744:13;;14628:135::o;15244:545::-;15346:2;15341:3;15338:11;15335:448;;;15382:1;15407:5;15403:2;15396:17;15452:4;15448:2;15438:19;15522:2;15510:10;15506:19;15503:1;15499:27;15493:4;15489:38;15558:4;15546:10;15543:20;15540:47;;;-1:-1:-1;15581:4:1;15540:47;15636:2;15631:3;15627:12;15624:1;15620:20;15614:4;15610:31;15600:41;;15691:82;15709:2;15702:5;15699:13;15691:82;;;15754:17;;;15735:1;15724:13;15691:82;;;15695:3;;;15244:545;;;:::o;15965:1206::-;-1:-1:-1;;;;;16084:3:1;16081:27;16078:53;;;16111:18;;:::i;:::-;16140:94;16230:3;16190:38;16222:4;16216:11;16190:38;:::i;:::-;16184:4;16140:94;:::i;:::-;16260:1;16285:2;16280:3;16277:11;16302:1;16297:616;;;;16957:1;16974:3;16971:93;;;-1:-1:-1;17030:19:1;;;17017:33;16971:93;-1:-1:-1;;15922:1:1;15918:11;;;15914:24;15910:29;15900:40;15946:1;15942:11;;;15897:57;17077:78;;16270:895;;16297:616;15191:1;15184:14;;;15228:4;15215:18;;-1:-1:-1;;16333:17:1;;;16434:9;16456:229;16470:7;16467:1;16464:14;16456:229;;;16559:19;;;16546:33;16531:49;;16666:4;16651:20;;;;16619:1;16607:14;;;;16486:12;16456:229;;;16460:3;16713;16704:7;16701:16;16698:159;;;16837:1;16833:6;16827:3;16821;16818:1;16814:11;16810:21;16806:34;16802:39;16789:9;16784:3;16780:19;16767:33;16763:79;16755:6;16748:95;16698:159;;;16900:1;16894:3;16891:1;16887:11;16883:19;16877:4;16870:33;16270:895;;15965:1206;;;:::o;17530:180::-;-1:-1:-1;;;;;17635:10:1;;;17647;;;17631:27;;17670:11;;;17667:37;;;17684:18;;:::i;:::-;17667:37;17530:180;;;;:::o;19286:663::-;19566:3;19604:6;19598:13;19620:66;19679:6;19674:3;19667:4;19659:6;19655:17;19620:66;:::i;:::-;19749:13;;19708:16;;;;19771:70;19749:13;19708:16;19818:4;19806:17;;19771:70;:::i;:::-;-1:-1:-1;;;19863:20:1;;19892:22;;;19941:1;19930:13;;19286:663;-1:-1:-1;;;;19286:663:1:o;20361:127::-;20422:10;20417:3;20413:20;20410:1;20403:31;20453:4;20450:1;20443:15;20477:4;20474:1;20467:15;20493:120;20533:1;20559;20549:35;;20564:18;;:::i;:::-;-1:-1:-1;20598:9:1;;20493:120::o;20618:128::-;20685:9;;;20706:11;;;20703:37;;;20720:18;;:::i;20751:112::-;20783:1;20809;20799:35;;20814:18;;:::i;:::-;-1:-1:-1;20848:9:1;;20751:112::o;20868:489::-;-1:-1:-1;;;;;21137:15:1;;;21119:34;;21189:15;;21184:2;21169:18;;21162:43;21236:2;21221:18;;21214:34;;;21284:3;21279:2;21264:18;;21257:31;;;21062:4;;21305:46;;21331:19;;21323:6;21305:46;:::i;:::-;21297:54;20868:489;-1:-1:-1;;;;;;20868:489:1:o;21362:249::-;21431:6;21484:2;21472:9;21463:7;21459:23;21455:32;21452:52;;;21500:1;21497;21490:12;21452:52;21532:9;21526:16;21551:30;21575:5;21551:30;:::i

Swarm Source

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