ETH Price: $2,988.30 (-2.31%)
Gas: 1 Gwei

Token

PEPE CARD : BACK TO BEGIN (PPCD)
 

Overview

Max Total Supply

1,235 PPCD

Holders

458

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 PPCD
0xA287059da18eBf2205798EBec1DEA36a5c1C67C9
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:
PEPECARD

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// File: pepecard.sol


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

// 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 (last updated v4.6.0) (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 `IERC721Receiver.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 (last updated v4.6.0) (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`.
     *
     * 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;

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

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

// File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol


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

pragma solidity ^0.8.0;


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

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

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

// File: erc721a/contracts/IERC721A.sol


// ERC721A Contracts v3.3.0
// Creator: Chiru Labs

pragma solidity ^0.8.4;



/**
 * @dev Interface of an ERC721A compliant contract.
 */
interface IERC721A is IERC721, IERC721Metadata {
    /**
     * The caller must own the token or be an approved operator.
     */
    error ApprovalCallerNotOwnerNorApproved();

    /**
     * The token does not exist.
     */
    error ApprovalQueryForNonexistentToken();

    /**
     * The caller cannot approve to their own address.
     */
    error ApproveToCaller();

    /**
     * The caller cannot approve to the current owner.
     */
    error ApprovalToCurrentOwner();

    /**
     * Cannot query the balance for the zero address.
     */
    error BalanceQueryForZeroAddress();

    /**
     * Cannot mint to the zero address.
     */
    error MintToZeroAddress();

    /**
     * The quantity of tokens minted must be more than zero.
     */
    error MintZeroQuantity();

    /**
     * The token does not exist.
     */
    error OwnerQueryForNonexistentToken();

    /**
     * The caller must own the token or be an approved operator.
     */
    error TransferCallerNotOwnerNorApproved();

    /**
     * The token must be owned by `from`.
     */
    error TransferFromIncorrectOwner();

    /**
     * Cannot safely transfer to a contract that does not implement the ERC721Receiver interface.
     */
    error TransferToNonERC721ReceiverImplementer();

    /**
     * Cannot transfer to the zero address.
     */
    error TransferToZeroAddress();

    /**
     * The token does not exist.
     */
    error URIQueryForNonexistentToken();

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

    /**
     * @dev Returns the total amount of tokens stored by the contract.
     * 
     * Burned tokens are calculated here, use `_totalMinted()` if you want to count just minted tokens.
     */
    function totalSupply() external view returns (uint256);
}

// 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: erc721a/contracts/ERC721A.sol


// ERC721A Contracts v3.3.0
// Creator: Chiru Labs

pragma solidity ^0.8.4;







/**
 * @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, IERC721A {
    using Address for address;
    using Strings for uint256;

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

    /**
     * @dev Burned tokens are calculated here, use _totalMinted() if you want to count just minted tokens.
     */
    function totalSupply() public view override 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) if (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) if(!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()) if(!_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;
    }

    /**
     * @dev Equivalent to `_safeMint(to, quantity, '')`.
     */
    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 {
        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 (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 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) 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;

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

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

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



pragma solidity ^0.8.0;



contract PEPECARD is ERC721A, Ownable {
	using Strings for uint;

	uint public constant MINT_PRICE = 0.003 ether;
	uint public constant MAX_NFT_PER_TRAN = 10;
    uint public constant MAX_PER_WALLET = 11;
	address private immutable SPLITTER_ADDRESS;
	uint public maxSupply = 5555;

	bool public isPaused;
    bool public isMetadataFinal;
    string private _baseURL;
	string public prerevealURL = '';
	mapping(address => uint) private _walletMintedCount;

	constructor(address splitterAddress)
    // Name
	ERC721A('PEPE CARD : BACK TO BEGIN', 'PPCD') {
        SPLITTER_ADDRESS = splitterAddress;
    }

	function _baseURI() internal view override returns (string memory) {
		return _baseURL;
	}

	function _startTokenId() internal pure override returns (uint) {
		return 1;
	}

	function contractURI() public pure returns (string memory) {
		return "";
	}

    function finalizeMetadata() external onlyOwner {
        isMetadataFinal = true;
    }

	function reveal(string memory url) external onlyOwner {
        require(!isMetadataFinal, "Metadata is finalized");
		_baseURL = url;
	}

    function mintedCount(address owner) external view returns (uint) {
        return _walletMintedCount[owner];
    }

	function setPause(bool value) external onlyOwner {
		isPaused = value;
	}

	function withdraw() external onlyOwner {
		uint balance = address(this).balance;
		require(balance > 0, 'No balance');
		payable(SPLITTER_ADDRESS).transfer(balance);
	}

	function airdrop(address to, uint count) external onlyOwner {
		require(
			_totalMinted() + count <= maxSupply,
			'Exceeds max supply'
		);
		_safeMint(to, count);
	}

	function reduceSupply(uint newMaxSupply) external onlyOwner {
		maxSupply = newMaxSupply;
	}

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

        return bytes(_baseURI()).length > 0 
            ? string(abi.encodePacked(_baseURI(), tokenId.toString(), ".json"))
            : prerevealURL;
	}

	function mint(uint count) external payable {
		require(!isPaused, 'Sales are off');
		require(count <= MAX_NFT_PER_TRAN,'Exceeds NFT per transaction limit');
		require(_totalMinted() + count <= maxSupply,'Exceeds max supply');
        require(_walletMintedCount[msg.sender] + count <= MAX_PER_WALLET,'Exceeds max per wallet');

        uint payForCount = count;
        uint mintedSoFar = _walletMintedCount[msg.sender];
        if(mintedSoFar < 1) {
            uint remainingFreeMints = 1 - mintedSoFar;
            if(count > remainingFreeMints) {
                payForCount = count - remainingFreeMints;
            }
            else {
                payForCount = 0;
            }
        }

		require(
			msg.value >= payForCount * MINT_PRICE,
			'Ether value sent is not sufficient'
		);

		_walletMintedCount[msg.sender] += count;
		_safeMint(msg.sender, count);
	}
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"splitterAddress","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_NFT_PER_TRAN","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_PER_WALLET","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MINT_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"count","type":"uint256"}],"name":"airdrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"finalizeMetadata","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isMetadataFinal","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isPaused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"count","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"mintedCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"prerevealURL","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"newMaxSupply","type":"uint256"}],"name":"reduceSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"url","type":"string"}],"name":"reveal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"value","type":"bool"}],"name":"setPause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60a06040526115b360095560405180602001604052806000815250600c90805190602001906200003192919062000250565b503480156200003f57600080fd5b506040516200402a3803806200402a833981810160405281019062000065919062000317565b6040518060400160405280601981526020017f504550452043415244203a204241434b20544f20424547494e000000000000008152506040518060400160405280600481526020017f50504344000000000000000000000000000000000000000000000000000000008152508160029080519060200190620000e992919062000250565b5080600390805190602001906200010292919062000250565b50620001136200017960201b60201c565b60008190555050506200013b6200012f6200018260201b60201c565b6200018a60201b60201c565b8073ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff1660601b815250505062000401565b60006001905090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200025e906200037d565b90600052602060002090601f016020900481019282620002825760008555620002ce565b82601f106200029d57805160ff1916838001178555620002ce565b82800160010185558215620002ce579182015b82811115620002cd578251825591602001919060010190620002b0565b5b509050620002dd9190620002e1565b5090565b5b80821115620002fc576000816000905550600101620002e2565b5090565b6000815190506200031181620003e7565b92915050565b60006020828403121562000330576200032f620003e2565b5b6000620003408482850162000300565b91505092915050565b600062000356826200035d565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600060028204905060018216806200039657607f821691505b60208210811415620003ad57620003ac620003b3565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600080fd5b620003f28162000349565b8114620003fe57600080fd5b50565b60805160601c613c0a620004206000396000610b970152613c0a6000f3fe6080604052600436106101ee5760003560e01c80638da5cb5b1161010d578063c87b56dd116100a0578063e8a3d4851161006f578063e8a3d485146106b8578063e985e9c5146106e3578063f2fde38b14610720578063f4a560a514610749578063fddcb5ea14610760576101ee565b8063c87b56dd146105fa578063d5abeb0114610637578063d821048214610662578063e193e7e21461068d576101ee565b8063b187bd26116100dc578063b187bd2614610552578063b88d4fde1461057d578063bedb86fb146105a6578063c002d23d146105cf576101ee565b80638da5cb5b146104b757806395d89b41146104e2578063a0712d681461050d578063a22cb46514610529576101ee565b80633ccfd60b1161018557806370a082311161015457806370a0823114610411578063715018a61461044e57806380623444146104655780638ba4cc3c1461048e576101ee565b80633ccfd60b1461036b57806342842e0e146103825780634c261247146103ab5780636352211e146103d4576101ee565b80630de76de4116101c15780630de76de4146102c15780630f2cdd6c146102ec57806318160ddd1461031757806323b872dd14610342576101ee565b806301ffc9a7146101f357806306fdde0314610230578063081812fc1461025b578063095ea7b314610298575b600080fd5b3480156101ff57600080fd5b5061021a60048036038101906102159190612f4c565b61079d565b6040516102279190613303565b60405180910390f35b34801561023c57600080fd5b5061024561087f565b604051610252919061331e565b60405180910390f35b34801561026757600080fd5b50610282600480360381019061027d9190612fef565b610911565b60405161028f919061329c565b60405180910390f35b3480156102a457600080fd5b506102bf60048036038101906102ba9190612edf565b61098d565b005b3480156102cd57600080fd5b506102d6610a92565b6040516102e39190613303565b60405180910390f35b3480156102f857600080fd5b50610301610aa5565b60405161030e9190613480565b60405180910390f35b34801561032357600080fd5b5061032c610aaa565b6040516103399190613480565b60405180910390f35b34801561034e57600080fd5b5061036960048036038101906103649190612dc9565b610ac1565b005b34801561037757600080fd5b50610380610ad1565b005b34801561038e57600080fd5b506103a960048036038101906103a49190612dc9565b610bff565b005b3480156103b757600080fd5b506103d260048036038101906103cd9190612fa6565b610c1f565b005b3480156103e057600080fd5b506103fb60048036038101906103f69190612fef565b610d05565b604051610408919061329c565b60405180910390f35b34801561041d57600080fd5b5061043860048036038101906104339190612d5c565b610d1b565b6040516104459190613480565b60405180910390f35b34801561045a57600080fd5b50610463610deb565b005b34801561047157600080fd5b5061048c60048036038101906104879190612fef565b610e73565b005b34801561049a57600080fd5b506104b560048036038101906104b09190612edf565b610ef9565b005b3480156104c357600080fd5b506104cc610fda565b6040516104d9919061329c565b60405180910390f35b3480156104ee57600080fd5b506104f7611004565b604051610504919061331e565b60405180910390f35b61052760048036038101906105229190612fef565b611096565b005b34801561053557600080fd5b50610550600480360381019061054b9190612e9f565b61134e565b005b34801561055e57600080fd5b506105676114c6565b6040516105749190613303565b60405180910390f35b34801561058957600080fd5b506105a4600480360381019061059f9190612e1c565b6114d9565b005b3480156105b257600080fd5b506105cd60048036038101906105c89190612f1f565b611551565b005b3480156105db57600080fd5b506105e46115ea565b6040516105f19190613480565b60405180910390f35b34801561060657600080fd5b50610621600480360381019061061c9190612fef565b6115f5565b60405161062e919061331e565b60405180910390f35b34801561064357600080fd5b5061064c611718565b6040516106599190613480565b60405180910390f35b34801561066e57600080fd5b5061067761171e565b604051610684919061331e565b60405180910390f35b34801561069957600080fd5b506106a26117ac565b6040516106af9190613480565b60405180910390f35b3480156106c457600080fd5b506106cd6117b1565b6040516106da919061331e565b60405180910390f35b3480156106ef57600080fd5b5061070a60048036038101906107059190612d89565b6117c8565b6040516107179190613303565b60405180910390f35b34801561072c57600080fd5b5061074760048036038101906107429190612d5c565b61185c565b005b34801561075557600080fd5b5061075e611954565b005b34801561076c57600080fd5b5061078760048036038101906107829190612d5c565b6119ed565b6040516107949190613480565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061086857507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610878575061087782611a36565b5b9050919050565b60606002805461088e90613730565b80601f01602080910402602001604051908101604052809291908181526020018280546108ba90613730565b80156109075780601f106108dc57610100808354040283529160200191610907565b820191906000526020600020905b8154815290600101906020018083116108ea57829003601f168201915b5050505050905090565b600061091c82611aa0565b610952576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061099882610d05565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610a00576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610a1f611aee565b73ffffffffffffffffffffffffffffffffffffffff1614610a8257610a4b81610a46611aee565b6117c8565b610a81576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b610a8d838383611af6565b505050565b600a60019054906101000a900460ff1681565b600b81565b6000610ab4611ba8565b6001546000540303905090565b610acc838383611bb1565b505050565b610ad9611aee565b73ffffffffffffffffffffffffffffffffffffffff16610af7610fda565b73ffffffffffffffffffffffffffffffffffffffff1614610b4d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b4490613420565b60405180910390fd5b600047905060008111610b95576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b8c90613380565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610bfb573d6000803e3d6000fd5b5050565b610c1a838383604051806020016040528060008152506114d9565b505050565b610c27611aee565b73ffffffffffffffffffffffffffffffffffffffff16610c45610fda565b73ffffffffffffffffffffffffffffffffffffffff1614610c9b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c9290613420565b60405180910390fd5b600a60019054906101000a900460ff1615610ceb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ce290613340565b60405180910390fd5b80600b9080519060200190610d01929190612b2d565b5050565b6000610d1082612067565b600001519050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610d83576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b610df3611aee565b73ffffffffffffffffffffffffffffffffffffffff16610e11610fda565b73ffffffffffffffffffffffffffffffffffffffff1614610e67576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e5e90613420565b60405180910390fd5b610e7160006122f2565b565b610e7b611aee565b73ffffffffffffffffffffffffffffffffffffffff16610e99610fda565b73ffffffffffffffffffffffffffffffffffffffff1614610eef576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ee690613420565b60405180910390fd5b8060098190555050565b610f01611aee565b73ffffffffffffffffffffffffffffffffffffffff16610f1f610fda565b73ffffffffffffffffffffffffffffffffffffffff1614610f75576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f6c90613420565b60405180910390fd5b60095481610f816123b8565b610f8b9190613565565b1115610fcc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fc3906133e0565b60405180910390fd5b610fd682826123cb565b5050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606003805461101390613730565b80601f016020809104026020016040519081016040528092919081815260200182805461103f90613730565b801561108c5780601f106110615761010080835404028352916020019161108c565b820191906000526020600020905b81548152906001019060200180831161106f57829003601f168201915b5050505050905090565b600a60009054906101000a900460ff16156110e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110dd906133c0565b60405180910390fd5b600a81111561112a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611121906133a0565b60405180910390fd5b600954816111366123b8565b6111409190613565565b1115611181576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611178906133e0565b60405180910390fd5b600b81600d60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546111ce9190613565565b111561120f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161120690613460565b60405180910390fd5b60008190506000600d60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905060018110156112945760008160016112709190613646565b90508084111561128d5780846112869190613646565b9250611292565b600092505b505b660aa87bee538000826112a791906135ec565b3410156112e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112e090613400565b60405180910390fd5b82600d60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546113389190613565565b9250508190555061134933846123cb565b505050565b611356611aee565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156113bb576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600760006113c8611aee565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611475611aee565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516114ba9190613303565b60405180910390a35050565b600a60009054906101000a900460ff1681565b6114e4848484611bb1565b6115038373ffffffffffffffffffffffffffffffffffffffff166123e9565b1561154b576115148484848461240c565b61154a576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b611559611aee565b73ffffffffffffffffffffffffffffffffffffffff16611577610fda565b73ffffffffffffffffffffffffffffffffffffffff16146115cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115c490613420565b60405180910390fd5b80600a60006101000a81548160ff02191690831515021790555050565b660aa87bee53800081565b606061160082611aa0565b61163f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161163690613440565b60405180910390fd5b600061164961256c565b51116116df57600c805461165c90613730565b80601f016020809104026020016040519081016040528092919081815260200182805461168890613730565b80156116d55780601f106116aa576101008083540402835291602001916116d5565b820191906000526020600020905b8154815290600101906020018083116116b857829003601f168201915b5050505050611711565b6116e761256c565b6116f0836125fe565b60405160200161170192919061326d565b6040516020818303038152906040525b9050919050565b60095481565b600c805461172b90613730565b80601f016020809104026020016040519081016040528092919081815260200182805461175790613730565b80156117a45780601f10611779576101008083540402835291602001916117a4565b820191906000526020600020905b81548152906001019060200180831161178757829003601f168201915b505050505081565b600a81565b606060405180602001604052806000815250905090565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611864611aee565b73ffffffffffffffffffffffffffffffffffffffff16611882610fda565b73ffffffffffffffffffffffffffffffffffffffff16146118d8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118cf90613420565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611948576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161193f90613360565b60405180910390fd5b611951816122f2565b50565b61195c611aee565b73ffffffffffffffffffffffffffffffffffffffff1661197a610fda565b73ffffffffffffffffffffffffffffffffffffffff16146119d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119c790613420565b60405180910390fd5b6001600a60016101000a81548160ff021916908315150217905550565b6000600d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600081611aab611ba8565b11158015611aba575060005482105b8015611ae7575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006001905090565b6000611bbc82612067565b90508373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614611c27576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff16611c48611aee565b73ffffffffffffffffffffffffffffffffffffffff161480611c775750611c7685611c71611aee565b6117c8565b5b80611cbc5750611c85611aee565b73ffffffffffffffffffffffffffffffffffffffff16611ca484610911565b73ffffffffffffffffffffffffffffffffffffffff16145b905080611cf5576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611d5c576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611d69858585600161275f565b611d7560008487611af6565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600460008581526020019081526020016000209050848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060006001850190506000600460008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415611ff5576000548214611ff457878160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b505050828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46120608585856001612765565b5050505050565b61206f612bb3565b60008290508061207d611ba8565b116122bb576000548110156122ba576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff161515151581525050905080604001516122b857600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461219c5780925050506122ed565b5b6001156122b757818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146122b25780925050506122ed565b61219d565b5b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60006123c2611ba8565b60005403905090565b6123e582826040518060200160405280600081525061276b565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612432611aee565b8786866040518563ffffffff1660e01b815260040161245494939291906132b7565b602060405180830381600087803b15801561246e57600080fd5b505af192505050801561249f57506040513d601f19601f8201168201806040525081019061249c9190612f79565b60015b612519573d80600081146124cf576040519150601f19603f3d011682016040523d82523d6000602084013e6124d4565b606091505b50600081511415612511576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600b805461257b90613730565b80601f01602080910402602001604051908101604052809291908181526020018280546125a790613730565b80156125f45780601f106125c9576101008083540402835291602001916125f4565b820191906000526020600020905b8154815290600101906020018083116125d757829003601f168201915b5050505050905090565b60606000821415612646576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061275a565b600082905060005b6000821461267857808061266190613793565b915050600a8261267191906135bb565b915061264e565b60008167ffffffffffffffff811115612694576126936138c9565b5b6040519080825280601f01601f1916602001820160405280156126c65781602001600182028036833780820191505090505b5090505b60008514612753576001826126df9190613646565b9150600a856126ee91906137dc565b60306126fa9190613565565b60f81b8183815181106127105761270f61389a565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561274c91906135bb565b94506126ca565b8093505050505b919050565b50505050565b50505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156127d8576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000831415612813576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612820600085838661275f565b82600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555082600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000819050600084820190506129e18673ffffffffffffffffffffffffffffffffffffffff166123e9565b15612aa6575b818673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612a56600087848060010195508761240c565b612a8c576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8082106129e7578260005414612aa157600080fd5b612b11565b5b818060010192508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808210612aa7575b816000819055505050612b276000858386612765565b50505050565b828054612b3990613730565b90600052602060002090601f016020900481019282612b5b5760008555612ba2565b82601f10612b7457805160ff1916838001178555612ba2565b82800160010185558215612ba2579182015b82811115612ba1578251825591602001919060010190612b86565b5b509050612baf9190612bf6565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b80821115612c0f576000816000905550600101612bf7565b5090565b6000612c26612c21846134c0565b61349b565b905082815260208101848484011115612c4257612c416138fd565b5b612c4d8482856136ee565b509392505050565b6000612c68612c63846134f1565b61349b565b905082815260208101848484011115612c8457612c836138fd565b5b612c8f8482856136ee565b509392505050565b600081359050612ca681613b78565b92915050565b600081359050612cbb81613b8f565b92915050565b600081359050612cd081613ba6565b92915050565b600081519050612ce581613ba6565b92915050565b600082601f830112612d0057612cff6138f8565b5b8135612d10848260208601612c13565b91505092915050565b600082601f830112612d2e57612d2d6138f8565b5b8135612d3e848260208601612c55565b91505092915050565b600081359050612d5681613bbd565b92915050565b600060208284031215612d7257612d71613907565b5b6000612d8084828501612c97565b91505092915050565b60008060408385031215612da057612d9f613907565b5b6000612dae85828601612c97565b9250506020612dbf85828601612c97565b9150509250929050565b600080600060608486031215612de257612de1613907565b5b6000612df086828701612c97565b9350506020612e0186828701612c97565b9250506040612e1286828701612d47565b9150509250925092565b60008060008060808587031215612e3657612e35613907565b5b6000612e4487828801612c97565b9450506020612e5587828801612c97565b9350506040612e6687828801612d47565b925050606085013567ffffffffffffffff811115612e8757612e86613902565b5b612e9387828801612ceb565b91505092959194509250565b60008060408385031215612eb657612eb5613907565b5b6000612ec485828601612c97565b9250506020612ed585828601612cac565b9150509250929050565b60008060408385031215612ef657612ef5613907565b5b6000612f0485828601612c97565b9250506020612f1585828601612d47565b9150509250929050565b600060208284031215612f3557612f34613907565b5b6000612f4384828501612cac565b91505092915050565b600060208284031215612f6257612f61613907565b5b6000612f7084828501612cc1565b91505092915050565b600060208284031215612f8f57612f8e613907565b5b6000612f9d84828501612cd6565b91505092915050565b600060208284031215612fbc57612fbb613907565b5b600082013567ffffffffffffffff811115612fda57612fd9613902565b5b612fe684828501612d19565b91505092915050565b60006020828403121561300557613004613907565b5b600061301384828501612d47565b91505092915050565b6130258161367a565b82525050565b6130348161368c565b82525050565b600061304582613522565b61304f8185613538565b935061305f8185602086016136fd565b6130688161390c565b840191505092915050565b600061307e8261352d565b6130888185613549565b93506130988185602086016136fd565b6130a18161390c565b840191505092915050565b60006130b78261352d565b6130c1818561355a565b93506130d18185602086016136fd565b80840191505092915050565b60006130ea601583613549565b91506130f58261391d565b602082019050919050565b600061310d602683613549565b915061311882613946565b604082019050919050565b6000613130600a83613549565b915061313b82613995565b602082019050919050565b6000613153602183613549565b915061315e826139be565b604082019050919050565b6000613176600d83613549565b915061318182613a0d565b602082019050919050565b6000613199601283613549565b91506131a482613a36565b602082019050919050565b60006131bc602283613549565b91506131c782613a5f565b604082019050919050565b60006131df60058361355a565b91506131ea82613aae565b600582019050919050565b6000613202602083613549565b915061320d82613ad7565b602082019050919050565b6000613225602f83613549565b915061323082613b00565b604082019050919050565b6000613248601683613549565b915061325382613b4f565b602082019050919050565b613267816136e4565b82525050565b600061327982856130ac565b915061328582846130ac565b9150613290826131d2565b91508190509392505050565b60006020820190506132b1600083018461301c565b92915050565b60006080820190506132cc600083018761301c565b6132d9602083018661301c565b6132e6604083018561325e565b81810360608301526132f8818461303a565b905095945050505050565b6000602082019050613318600083018461302b565b92915050565b600060208201905081810360008301526133388184613073565b905092915050565b60006020820190508181036000830152613359816130dd565b9050919050565b6000602082019050818103600083015261337981613100565b9050919050565b6000602082019050818103600083015261339981613123565b9050919050565b600060208201905081810360008301526133b981613146565b9050919050565b600060208201905081810360008301526133d981613169565b9050919050565b600060208201905081810360008301526133f98161318c565b9050919050565b60006020820190508181036000830152613419816131af565b9050919050565b60006020820190508181036000830152613439816131f5565b9050919050565b6000602082019050818103600083015261345981613218565b9050919050565b600060208201905081810360008301526134798161323b565b9050919050565b6000602082019050613495600083018461325e565b92915050565b60006134a56134b6565b90506134b18282613762565b919050565b6000604051905090565b600067ffffffffffffffff8211156134db576134da6138c9565b5b6134e48261390c565b9050602081019050919050565b600067ffffffffffffffff82111561350c5761350b6138c9565b5b6135158261390c565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000613570826136e4565b915061357b836136e4565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156135b0576135af61380d565b5b828201905092915050565b60006135c6826136e4565b91506135d1836136e4565b9250826135e1576135e061383c565b5b828204905092915050565b60006135f7826136e4565b9150613602836136e4565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561363b5761363a61380d565b5b828202905092915050565b6000613651826136e4565b915061365c836136e4565b92508282101561366f5761366e61380d565b5b828203905092915050565b6000613685826136c4565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561371b578082015181840152602081019050613700565b8381111561372a576000848401525b50505050565b6000600282049050600182168061374857607f821691505b6020821081141561375c5761375b61386b565b5b50919050565b61376b8261390c565b810181811067ffffffffffffffff8211171561378a576137896138c9565b5b80604052505050565b600061379e826136e4565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156137d1576137d061380d565b5b600182019050919050565b60006137e7826136e4565b91506137f2836136e4565b9250826138025761380161383c565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4d657461646174612069732066696e616c697a65640000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4e6f2062616c616e636500000000000000000000000000000000000000000000600082015250565b7f45786365656473204e465420706572207472616e73616374696f6e206c696d6960008201527f7400000000000000000000000000000000000000000000000000000000000000602082015250565b7f53616c657320617265206f666600000000000000000000000000000000000000600082015250565b7f45786365656473206d617820737570706c790000000000000000000000000000600082015250565b7f45746865722076616c75652073656e74206973206e6f7420737566666963696560008201527f6e74000000000000000000000000000000000000000000000000000000000000602082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f45786365656473206d6178207065722077616c6c657400000000000000000000600082015250565b613b818161367a565b8114613b8c57600080fd5b50565b613b988161368c565b8114613ba357600080fd5b50565b613baf81613698565b8114613bba57600080fd5b50565b613bc6816136e4565b8114613bd157600080fd5b5056fea264697066735822122010b2dc097a395eb8f41c8d372a8c66590691c4150e8bfecadbeb5706fe5b252964736f6c63430008070033000000000000000000000000d712776575ef3ef0bd4527bd58bfe60e1c47a164

Deployed Bytecode

0x6080604052600436106101ee5760003560e01c80638da5cb5b1161010d578063c87b56dd116100a0578063e8a3d4851161006f578063e8a3d485146106b8578063e985e9c5146106e3578063f2fde38b14610720578063f4a560a514610749578063fddcb5ea14610760576101ee565b8063c87b56dd146105fa578063d5abeb0114610637578063d821048214610662578063e193e7e21461068d576101ee565b8063b187bd26116100dc578063b187bd2614610552578063b88d4fde1461057d578063bedb86fb146105a6578063c002d23d146105cf576101ee565b80638da5cb5b146104b757806395d89b41146104e2578063a0712d681461050d578063a22cb46514610529576101ee565b80633ccfd60b1161018557806370a082311161015457806370a0823114610411578063715018a61461044e57806380623444146104655780638ba4cc3c1461048e576101ee565b80633ccfd60b1461036b57806342842e0e146103825780634c261247146103ab5780636352211e146103d4576101ee565b80630de76de4116101c15780630de76de4146102c15780630f2cdd6c146102ec57806318160ddd1461031757806323b872dd14610342576101ee565b806301ffc9a7146101f357806306fdde0314610230578063081812fc1461025b578063095ea7b314610298575b600080fd5b3480156101ff57600080fd5b5061021a60048036038101906102159190612f4c565b61079d565b6040516102279190613303565b60405180910390f35b34801561023c57600080fd5b5061024561087f565b604051610252919061331e565b60405180910390f35b34801561026757600080fd5b50610282600480360381019061027d9190612fef565b610911565b60405161028f919061329c565b60405180910390f35b3480156102a457600080fd5b506102bf60048036038101906102ba9190612edf565b61098d565b005b3480156102cd57600080fd5b506102d6610a92565b6040516102e39190613303565b60405180910390f35b3480156102f857600080fd5b50610301610aa5565b60405161030e9190613480565b60405180910390f35b34801561032357600080fd5b5061032c610aaa565b6040516103399190613480565b60405180910390f35b34801561034e57600080fd5b5061036960048036038101906103649190612dc9565b610ac1565b005b34801561037757600080fd5b50610380610ad1565b005b34801561038e57600080fd5b506103a960048036038101906103a49190612dc9565b610bff565b005b3480156103b757600080fd5b506103d260048036038101906103cd9190612fa6565b610c1f565b005b3480156103e057600080fd5b506103fb60048036038101906103f69190612fef565b610d05565b604051610408919061329c565b60405180910390f35b34801561041d57600080fd5b5061043860048036038101906104339190612d5c565b610d1b565b6040516104459190613480565b60405180910390f35b34801561045a57600080fd5b50610463610deb565b005b34801561047157600080fd5b5061048c60048036038101906104879190612fef565b610e73565b005b34801561049a57600080fd5b506104b560048036038101906104b09190612edf565b610ef9565b005b3480156104c357600080fd5b506104cc610fda565b6040516104d9919061329c565b60405180910390f35b3480156104ee57600080fd5b506104f7611004565b604051610504919061331e565b60405180910390f35b61052760048036038101906105229190612fef565b611096565b005b34801561053557600080fd5b50610550600480360381019061054b9190612e9f565b61134e565b005b34801561055e57600080fd5b506105676114c6565b6040516105749190613303565b60405180910390f35b34801561058957600080fd5b506105a4600480360381019061059f9190612e1c565b6114d9565b005b3480156105b257600080fd5b506105cd60048036038101906105c89190612f1f565b611551565b005b3480156105db57600080fd5b506105e46115ea565b6040516105f19190613480565b60405180910390f35b34801561060657600080fd5b50610621600480360381019061061c9190612fef565b6115f5565b60405161062e919061331e565b60405180910390f35b34801561064357600080fd5b5061064c611718565b6040516106599190613480565b60405180910390f35b34801561066e57600080fd5b5061067761171e565b604051610684919061331e565b60405180910390f35b34801561069957600080fd5b506106a26117ac565b6040516106af9190613480565b60405180910390f35b3480156106c457600080fd5b506106cd6117b1565b6040516106da919061331e565b60405180910390f35b3480156106ef57600080fd5b5061070a60048036038101906107059190612d89565b6117c8565b6040516107179190613303565b60405180910390f35b34801561072c57600080fd5b5061074760048036038101906107429190612d5c565b61185c565b005b34801561075557600080fd5b5061075e611954565b005b34801561076c57600080fd5b5061078760048036038101906107829190612d5c565b6119ed565b6040516107949190613480565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061086857507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610878575061087782611a36565b5b9050919050565b60606002805461088e90613730565b80601f01602080910402602001604051908101604052809291908181526020018280546108ba90613730565b80156109075780601f106108dc57610100808354040283529160200191610907565b820191906000526020600020905b8154815290600101906020018083116108ea57829003601f168201915b5050505050905090565b600061091c82611aa0565b610952576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061099882610d05565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610a00576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610a1f611aee565b73ffffffffffffffffffffffffffffffffffffffff1614610a8257610a4b81610a46611aee565b6117c8565b610a81576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b610a8d838383611af6565b505050565b600a60019054906101000a900460ff1681565b600b81565b6000610ab4611ba8565b6001546000540303905090565b610acc838383611bb1565b505050565b610ad9611aee565b73ffffffffffffffffffffffffffffffffffffffff16610af7610fda565b73ffffffffffffffffffffffffffffffffffffffff1614610b4d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b4490613420565b60405180910390fd5b600047905060008111610b95576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b8c90613380565b60405180910390fd5b7f000000000000000000000000d712776575ef3ef0bd4527bd58bfe60e1c47a16473ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610bfb573d6000803e3d6000fd5b5050565b610c1a838383604051806020016040528060008152506114d9565b505050565b610c27611aee565b73ffffffffffffffffffffffffffffffffffffffff16610c45610fda565b73ffffffffffffffffffffffffffffffffffffffff1614610c9b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c9290613420565b60405180910390fd5b600a60019054906101000a900460ff1615610ceb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ce290613340565b60405180910390fd5b80600b9080519060200190610d01929190612b2d565b5050565b6000610d1082612067565b600001519050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610d83576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b610df3611aee565b73ffffffffffffffffffffffffffffffffffffffff16610e11610fda565b73ffffffffffffffffffffffffffffffffffffffff1614610e67576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e5e90613420565b60405180910390fd5b610e7160006122f2565b565b610e7b611aee565b73ffffffffffffffffffffffffffffffffffffffff16610e99610fda565b73ffffffffffffffffffffffffffffffffffffffff1614610eef576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ee690613420565b60405180910390fd5b8060098190555050565b610f01611aee565b73ffffffffffffffffffffffffffffffffffffffff16610f1f610fda565b73ffffffffffffffffffffffffffffffffffffffff1614610f75576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f6c90613420565b60405180910390fd5b60095481610f816123b8565b610f8b9190613565565b1115610fcc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fc3906133e0565b60405180910390fd5b610fd682826123cb565b5050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606003805461101390613730565b80601f016020809104026020016040519081016040528092919081815260200182805461103f90613730565b801561108c5780601f106110615761010080835404028352916020019161108c565b820191906000526020600020905b81548152906001019060200180831161106f57829003601f168201915b5050505050905090565b600a60009054906101000a900460ff16156110e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110dd906133c0565b60405180910390fd5b600a81111561112a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611121906133a0565b60405180910390fd5b600954816111366123b8565b6111409190613565565b1115611181576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611178906133e0565b60405180910390fd5b600b81600d60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546111ce9190613565565b111561120f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161120690613460565b60405180910390fd5b60008190506000600d60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905060018110156112945760008160016112709190613646565b90508084111561128d5780846112869190613646565b9250611292565b600092505b505b660aa87bee538000826112a791906135ec565b3410156112e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112e090613400565b60405180910390fd5b82600d60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546113389190613565565b9250508190555061134933846123cb565b505050565b611356611aee565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156113bb576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600760006113c8611aee565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611475611aee565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516114ba9190613303565b60405180910390a35050565b600a60009054906101000a900460ff1681565b6114e4848484611bb1565b6115038373ffffffffffffffffffffffffffffffffffffffff166123e9565b1561154b576115148484848461240c565b61154a576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b611559611aee565b73ffffffffffffffffffffffffffffffffffffffff16611577610fda565b73ffffffffffffffffffffffffffffffffffffffff16146115cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115c490613420565b60405180910390fd5b80600a60006101000a81548160ff02191690831515021790555050565b660aa87bee53800081565b606061160082611aa0565b61163f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161163690613440565b60405180910390fd5b600061164961256c565b51116116df57600c805461165c90613730565b80601f016020809104026020016040519081016040528092919081815260200182805461168890613730565b80156116d55780601f106116aa576101008083540402835291602001916116d5565b820191906000526020600020905b8154815290600101906020018083116116b857829003601f168201915b5050505050611711565b6116e761256c565b6116f0836125fe565b60405160200161170192919061326d565b6040516020818303038152906040525b9050919050565b60095481565b600c805461172b90613730565b80601f016020809104026020016040519081016040528092919081815260200182805461175790613730565b80156117a45780601f10611779576101008083540402835291602001916117a4565b820191906000526020600020905b81548152906001019060200180831161178757829003601f168201915b505050505081565b600a81565b606060405180602001604052806000815250905090565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611864611aee565b73ffffffffffffffffffffffffffffffffffffffff16611882610fda565b73ffffffffffffffffffffffffffffffffffffffff16146118d8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118cf90613420565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611948576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161193f90613360565b60405180910390fd5b611951816122f2565b50565b61195c611aee565b73ffffffffffffffffffffffffffffffffffffffff1661197a610fda565b73ffffffffffffffffffffffffffffffffffffffff16146119d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119c790613420565b60405180910390fd5b6001600a60016101000a81548160ff021916908315150217905550565b6000600d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600081611aab611ba8565b11158015611aba575060005482105b8015611ae7575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006001905090565b6000611bbc82612067565b90508373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614611c27576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff16611c48611aee565b73ffffffffffffffffffffffffffffffffffffffff161480611c775750611c7685611c71611aee565b6117c8565b5b80611cbc5750611c85611aee565b73ffffffffffffffffffffffffffffffffffffffff16611ca484610911565b73ffffffffffffffffffffffffffffffffffffffff16145b905080611cf5576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611d5c576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611d69858585600161275f565b611d7560008487611af6565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600460008581526020019081526020016000209050848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060006001850190506000600460008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415611ff5576000548214611ff457878160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b505050828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46120608585856001612765565b5050505050565b61206f612bb3565b60008290508061207d611ba8565b116122bb576000548110156122ba576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff161515151581525050905080604001516122b857600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461219c5780925050506122ed565b5b6001156122b757818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146122b25780925050506122ed565b61219d565b5b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60006123c2611ba8565b60005403905090565b6123e582826040518060200160405280600081525061276b565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612432611aee565b8786866040518563ffffffff1660e01b815260040161245494939291906132b7565b602060405180830381600087803b15801561246e57600080fd5b505af192505050801561249f57506040513d601f19601f8201168201806040525081019061249c9190612f79565b60015b612519573d80600081146124cf576040519150601f19603f3d011682016040523d82523d6000602084013e6124d4565b606091505b50600081511415612511576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600b805461257b90613730565b80601f01602080910402602001604051908101604052809291908181526020018280546125a790613730565b80156125f45780601f106125c9576101008083540402835291602001916125f4565b820191906000526020600020905b8154815290600101906020018083116125d757829003601f168201915b5050505050905090565b60606000821415612646576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061275a565b600082905060005b6000821461267857808061266190613793565b915050600a8261267191906135bb565b915061264e565b60008167ffffffffffffffff811115612694576126936138c9565b5b6040519080825280601f01601f1916602001820160405280156126c65781602001600182028036833780820191505090505b5090505b60008514612753576001826126df9190613646565b9150600a856126ee91906137dc565b60306126fa9190613565565b60f81b8183815181106127105761270f61389a565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561274c91906135bb565b94506126ca565b8093505050505b919050565b50505050565b50505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156127d8576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000831415612813576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612820600085838661275f565b82600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555082600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000819050600084820190506129e18673ffffffffffffffffffffffffffffffffffffffff166123e9565b15612aa6575b818673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612a56600087848060010195508761240c565b612a8c576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8082106129e7578260005414612aa157600080fd5b612b11565b5b818060010192508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808210612aa7575b816000819055505050612b276000858386612765565b50505050565b828054612b3990613730565b90600052602060002090601f016020900481019282612b5b5760008555612ba2565b82601f10612b7457805160ff1916838001178555612ba2565b82800160010185558215612ba2579182015b82811115612ba1578251825591602001919060010190612b86565b5b509050612baf9190612bf6565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b80821115612c0f576000816000905550600101612bf7565b5090565b6000612c26612c21846134c0565b61349b565b905082815260208101848484011115612c4257612c416138fd565b5b612c4d8482856136ee565b509392505050565b6000612c68612c63846134f1565b61349b565b905082815260208101848484011115612c8457612c836138fd565b5b612c8f8482856136ee565b509392505050565b600081359050612ca681613b78565b92915050565b600081359050612cbb81613b8f565b92915050565b600081359050612cd081613ba6565b92915050565b600081519050612ce581613ba6565b92915050565b600082601f830112612d0057612cff6138f8565b5b8135612d10848260208601612c13565b91505092915050565b600082601f830112612d2e57612d2d6138f8565b5b8135612d3e848260208601612c55565b91505092915050565b600081359050612d5681613bbd565b92915050565b600060208284031215612d7257612d71613907565b5b6000612d8084828501612c97565b91505092915050565b60008060408385031215612da057612d9f613907565b5b6000612dae85828601612c97565b9250506020612dbf85828601612c97565b9150509250929050565b600080600060608486031215612de257612de1613907565b5b6000612df086828701612c97565b9350506020612e0186828701612c97565b9250506040612e1286828701612d47565b9150509250925092565b60008060008060808587031215612e3657612e35613907565b5b6000612e4487828801612c97565b9450506020612e5587828801612c97565b9350506040612e6687828801612d47565b925050606085013567ffffffffffffffff811115612e8757612e86613902565b5b612e9387828801612ceb565b91505092959194509250565b60008060408385031215612eb657612eb5613907565b5b6000612ec485828601612c97565b9250506020612ed585828601612cac565b9150509250929050565b60008060408385031215612ef657612ef5613907565b5b6000612f0485828601612c97565b9250506020612f1585828601612d47565b9150509250929050565b600060208284031215612f3557612f34613907565b5b6000612f4384828501612cac565b91505092915050565b600060208284031215612f6257612f61613907565b5b6000612f7084828501612cc1565b91505092915050565b600060208284031215612f8f57612f8e613907565b5b6000612f9d84828501612cd6565b91505092915050565b600060208284031215612fbc57612fbb613907565b5b600082013567ffffffffffffffff811115612fda57612fd9613902565b5b612fe684828501612d19565b91505092915050565b60006020828403121561300557613004613907565b5b600061301384828501612d47565b91505092915050565b6130258161367a565b82525050565b6130348161368c565b82525050565b600061304582613522565b61304f8185613538565b935061305f8185602086016136fd565b6130688161390c565b840191505092915050565b600061307e8261352d565b6130888185613549565b93506130988185602086016136fd565b6130a18161390c565b840191505092915050565b60006130b78261352d565b6130c1818561355a565b93506130d18185602086016136fd565b80840191505092915050565b60006130ea601583613549565b91506130f58261391d565b602082019050919050565b600061310d602683613549565b915061311882613946565b604082019050919050565b6000613130600a83613549565b915061313b82613995565b602082019050919050565b6000613153602183613549565b915061315e826139be565b604082019050919050565b6000613176600d83613549565b915061318182613a0d565b602082019050919050565b6000613199601283613549565b91506131a482613a36565b602082019050919050565b60006131bc602283613549565b91506131c782613a5f565b604082019050919050565b60006131df60058361355a565b91506131ea82613aae565b600582019050919050565b6000613202602083613549565b915061320d82613ad7565b602082019050919050565b6000613225602f83613549565b915061323082613b00565b604082019050919050565b6000613248601683613549565b915061325382613b4f565b602082019050919050565b613267816136e4565b82525050565b600061327982856130ac565b915061328582846130ac565b9150613290826131d2565b91508190509392505050565b60006020820190506132b1600083018461301c565b92915050565b60006080820190506132cc600083018761301c565b6132d9602083018661301c565b6132e6604083018561325e565b81810360608301526132f8818461303a565b905095945050505050565b6000602082019050613318600083018461302b565b92915050565b600060208201905081810360008301526133388184613073565b905092915050565b60006020820190508181036000830152613359816130dd565b9050919050565b6000602082019050818103600083015261337981613100565b9050919050565b6000602082019050818103600083015261339981613123565b9050919050565b600060208201905081810360008301526133b981613146565b9050919050565b600060208201905081810360008301526133d981613169565b9050919050565b600060208201905081810360008301526133f98161318c565b9050919050565b60006020820190508181036000830152613419816131af565b9050919050565b60006020820190508181036000830152613439816131f5565b9050919050565b6000602082019050818103600083015261345981613218565b9050919050565b600060208201905081810360008301526134798161323b565b9050919050565b6000602082019050613495600083018461325e565b92915050565b60006134a56134b6565b90506134b18282613762565b919050565b6000604051905090565b600067ffffffffffffffff8211156134db576134da6138c9565b5b6134e48261390c565b9050602081019050919050565b600067ffffffffffffffff82111561350c5761350b6138c9565b5b6135158261390c565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000613570826136e4565b915061357b836136e4565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156135b0576135af61380d565b5b828201905092915050565b60006135c6826136e4565b91506135d1836136e4565b9250826135e1576135e061383c565b5b828204905092915050565b60006135f7826136e4565b9150613602836136e4565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561363b5761363a61380d565b5b828202905092915050565b6000613651826136e4565b915061365c836136e4565b92508282101561366f5761366e61380d565b5b828203905092915050565b6000613685826136c4565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561371b578082015181840152602081019050613700565b8381111561372a576000848401525b50505050565b6000600282049050600182168061374857607f821691505b6020821081141561375c5761375b61386b565b5b50919050565b61376b8261390c565b810181811067ffffffffffffffff8211171561378a576137896138c9565b5b80604052505050565b600061379e826136e4565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156137d1576137d061380d565b5b600182019050919050565b60006137e7826136e4565b91506137f2836136e4565b9250826138025761380161383c565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4d657461646174612069732066696e616c697a65640000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4e6f2062616c616e636500000000000000000000000000000000000000000000600082015250565b7f45786365656473204e465420706572207472616e73616374696f6e206c696d6960008201527f7400000000000000000000000000000000000000000000000000000000000000602082015250565b7f53616c657320617265206f666600000000000000000000000000000000000000600082015250565b7f45786365656473206d617820737570706c790000000000000000000000000000600082015250565b7f45746865722076616c75652073656e74206973206e6f7420737566666963696560008201527f6e74000000000000000000000000000000000000000000000000000000000000602082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f45786365656473206d6178207065722077616c6c657400000000000000000000600082015250565b613b818161367a565b8114613b8c57600080fd5b50565b613b988161368c565b8114613ba357600080fd5b50565b613baf81613698565b8114613bba57600080fd5b50565b613bc6816136e4565b8114613bd157600080fd5b5056fea264697066735822122010b2dc097a395eb8f41c8d372a8c66590691c4150e8bfecadbeb5706fe5b252964736f6c63430008070033

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

000000000000000000000000d712776575ef3ef0bd4527bd58bfe60e1c47a164

-----Decoded View---------------
Arg [0] : splitterAddress (address): 0xD712776575ef3Ef0bd4527Bd58BFE60E1c47A164

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 000000000000000000000000d712776575ef3ef0bd4527bd58bfe60e1c47a164


Deployed Bytecode Sourcemap

47492:3042:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26113:305;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29228:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30732:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30294:372;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47811:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47660:40;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25353:312;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31597:170;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48829:172;;;;;;;;;;;;;:::i;:::-;;31838:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48481:139;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29036:125;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26482:206;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46640:103;;;;;;;;;;;;;:::i;:::-;;49185:94;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;49006:174;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;45989:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29397:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49630:901;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;31008:287;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47784:20;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32094:370;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48749:75;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47562:45;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49284:341;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47750:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47872:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47611:42;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48302:78;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31366:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46898:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48388:88;;;;;;;;;;;;;:::i;:::-;;48628:116;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26113:305;26215:4;26267:25;26252:40;;;:11;:40;;;;:105;;;;26324:33;26309:48;;;:11;:48;;;;26252:105;:158;;;;26374:36;26398:11;26374:23;:36::i;:::-;26252:158;26232:178;;26113:305;;;:::o;29228:100::-;29282:13;29315:5;29308:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29228:100;:::o;30732:204::-;30800:7;30825:16;30833:7;30825;:16::i;:::-;30820:64;;30850:34;;;;;;;;;;;;;;30820:64;30904:15;:24;30920:7;30904:24;;;;;;;;;;;;;;;;;;;;;30897:31;;30732:204;;;:::o;30294:372::-;30367:13;30383:24;30399:7;30383:15;:24::i;:::-;30367:40;;30428:5;30422:11;;:2;:11;;;30418:48;;;30442:24;;;;;;;;;;;;;;30418:48;30499:5;30483:21;;:12;:10;:12::i;:::-;:21;;;30479:139;;30510:37;30527:5;30534:12;:10;:12::i;:::-;30510:16;:37::i;:::-;30506:112;;30571:35;;;;;;;;;;;;;;30506:112;30479:139;30630:28;30639:2;30643:7;30652:5;30630:8;:28::i;:::-;30356:310;30294:372;;:::o;47811:27::-;;;;;;;;;;;;;:::o;47660:40::-;47698:2;47660:40;:::o;25353:312::-;25406:7;25631:15;:13;:15::i;:::-;25616:12;;25600:13;;:28;:46;25593:53;;25353:312;:::o;31597:170::-;31731:28;31741:4;31747:2;31751:7;31731:9;:28::i;:::-;31597:170;;;:::o;48829:172::-;46220:12;:10;:12::i;:::-;46209:23;;:7;:5;:7::i;:::-;:23;;;46201:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;48873:12:::1;48888:21;48873:36;;48932:1;48922:7;:11;48914:34;;;;;;;;;;;;:::i;:::-;;;;;;;;;48961:16;48953:34;;:43;48988:7;48953:43;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;48868:133;48829:172::o:0;31838:185::-;31976:39;31993:4;31999:2;32003:7;31976:39;;;;;;;;;;;;:16;:39::i;:::-;31838:185;;;:::o;48481:139::-;46220:12;:10;:12::i;:::-;46209:23;;:7;:5;:7::i;:::-;:23;;;46201:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;48555:15:::1;;;;;;;;;;;48554:16;48546:50;;;;;;;;;;;;:::i;:::-;;;;;;;;;48612:3;48601:8;:14;;;;;;;;;;;;:::i;:::-;;48481:139:::0;:::o;29036:125::-;29100:7;29127:21;29140:7;29127:12;:21::i;:::-;:26;;;29120:33;;29036:125;;;:::o;26482:206::-;26546:7;26587:1;26570:19;;:5;:19;;;26566:60;;;26598:28;;;;;;;;;;;;;;26566:60;26652:12;:19;26665:5;26652:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;26644:36;;26637:43;;26482:206;;;:::o;46640:103::-;46220:12;:10;:12::i;:::-;46209:23;;:7;:5;:7::i;:::-;:23;;;46201:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;46705:30:::1;46732:1;46705:18;:30::i;:::-;46640:103::o:0;49185:94::-;46220:12;:10;:12::i;:::-;46209:23;;:7;:5;:7::i;:::-;:23;;;46201:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;49262:12:::1;49250:9;:24;;;;49185:94:::0;:::o;49006:174::-;46220:12;:10;:12::i;:::-;46209:23;;:7;:5;:7::i;:::-;:23;;;46201:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;49110:9:::1;;49101:5;49084:14;:12;:14::i;:::-;:22;;;;:::i;:::-;:35;;49071:79;;;;;;;;;;;;:::i;:::-;;;;;;;;;49155:20;49165:2;49169:5;49155:9;:20::i;:::-;49006:174:::0;;:::o;45989:87::-;46035:7;46062:6;;;;;;;;;;;46055:13;;45989:87;:::o;29397:104::-;29453:13;29486:7;29479:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29397:104;:::o;49630:901::-;49687:8;;;;;;;;;;;49686:9;49678:35;;;;;;;;;;;;:::i;:::-;;;;;;;;;47651:2;49726:5;:25;;49718:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;49827:9;;49818:5;49801:14;:12;:14::i;:::-;:22;;;;:::i;:::-;:35;;49793:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;47698:2;49910:5;49877:18;:30;49896:10;49877:30;;;;;;;;;;;;;;;;:38;;;;:::i;:::-;:56;;49869:90;;;;;;;;;;;;:::i;:::-;;;;;;;;;49972:16;49991:5;49972:24;;50007:16;50026:18;:30;50045:10;50026:30;;;;;;;;;;;;;;;;50007:49;;50084:1;50070:11;:15;50067:277;;;50102:23;50132:11;50128:1;:15;;;;:::i;:::-;50102:41;;50169:18;50161:5;:26;50158:175;;;50230:18;50222:5;:26;;;;:::i;:::-;50208:40;;50158:175;;;50316:1;50302:15;;50158:175;50087:257;50067:277;47596:11;50376;:24;;;;:::i;:::-;50363:9;:37;;50350:97;;;;;;;;;;;;:::i;:::-;;;;;;;;;50488:5;50454:18;:30;50473:10;50454:30;;;;;;;;;;;;;;;;:39;;;;;;;:::i;:::-;;;;;;;;50498:28;50508:10;50520:5;50498:9;:28::i;:::-;49673:858;;49630:901;:::o;31008:287::-;31119:12;:10;:12::i;:::-;31107:24;;:8;:24;;;31103:54;;;31140:17;;;;;;;;;;;;;;31103:54;31215:8;31170:18;:32;31189:12;:10;:12::i;:::-;31170:32;;;;;;;;;;;;;;;:42;31203:8;31170:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;31268:8;31239:48;;31254:12;:10;:12::i;:::-;31239:48;;;31278:8;31239:48;;;;;;:::i;:::-;;;;;;;;31008:287;;:::o;47784:20::-;;;;;;;;;;;;;:::o;32094:370::-;32261:28;32271:4;32277:2;32281:7;32261:9;:28::i;:::-;32304:15;:2;:13;;;:15::i;:::-;32300:157;;;32325:56;32356:4;32362:2;32366:7;32375:5;32325:30;:56::i;:::-;32321:136;;32405:40;;;;;;;;;;;;;;32321:136;32300:157;32094:370;;;;:::o;48749:75::-;46220:12;:10;:12::i;:::-;46209:23;;:7;:5;:7::i;:::-;:23;;;46201:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;48814:5:::1;48803:8;;:16;;;;;;;;;;;;;;;;;;48749:75:::0;:::o;47562:45::-;47596:11;47562:45;:::o;49284:341::-;49358:13;49394:16;49402:7;49394;:16::i;:::-;49386:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;49509:1;49488:10;:8;:10::i;:::-;49482:24;:28;:138;;49608:12;49482:138;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49551:10;:8;:10::i;:::-;49563:18;:7;:16;:18::i;:::-;49534:57;;;;;;;;;:::i;:::-;;;;;;;;;;;;;49482:138;49475:145;;49284:341;;;:::o;47750:28::-;;;;:::o;47872:31::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;47611:42::-;47651:2;47611:42;:::o;48302:78::-;48346:13;48366:9;;;;;;;;;;;;;;48302:78;:::o;31366:164::-;31463:4;31487:18;:25;31506:5;31487:25;;;;;;;;;;;;;;;:35;31513:8;31487:35;;;;;;;;;;;;;;;;;;;;;;;;;31480:42;;31366:164;;;;:::o;46898:201::-;46220:12;:10;:12::i;:::-;46209:23;;:7;:5;:7::i;:::-;:23;;;46201:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;47007:1:::1;46987:22;;:8;:22;;;;46979:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;47063:28;47082:8;47063:18;:28::i;:::-;46898:201:::0;:::o;48388:88::-;46220:12;:10;:12::i;:::-;46209:23;;:7;:5;:7::i;:::-;:23;;;46201:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;48464:4:::1;48446:15;;:22;;;;;;;;;;;;;;;;;;48388:88::o:0;48628:116::-;48687:4;48711:18;:25;48730:5;48711:25;;;;;;;;;;;;;;;;48704:32;;48628:116;;;:::o;13561:157::-;13646:4;13685:25;13670:40;;;:11;:40;;;;13663:47;;13561:157;;;:::o;32719:174::-;32776:4;32819:7;32800:15;:13;:15::i;:::-;:26;;:53;;;;;32840:13;;32830:7;:23;32800:53;:85;;;;;32858:11;:20;32870:7;32858:20;;;;;;;;;;;:27;;;;;;;;;;;;32857:28;32800:85;32793:92;;32719:174;;;:::o;23050:98::-;23103:7;23130:10;23123:17;;23050:98;:::o;41941:196::-;42083:2;42056:15;:24;42072:7;42056:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;42121:7;42117:2;42101:28;;42110:5;42101:28;;;;;;;;;;;;41941:196;;;:::o;48216:81::-;48273:4;48291:1;48284:8;;48216:81;:::o;36889:2130::-;37004:35;37042:21;37055:7;37042:12;:21::i;:::-;37004:59;;37102:4;37080:26;;:13;:18;;;:26;;;37076:67;;37115:28;;;;;;;;;;;;;;37076:67;37156:22;37198:4;37182:20;;:12;:10;:12::i;:::-;:20;;;:73;;;;37219:36;37236:4;37242:12;:10;:12::i;:::-;37219:16;:36::i;:::-;37182:73;:126;;;;37296:12;:10;:12::i;:::-;37272:36;;:20;37284:7;37272:11;:20::i;:::-;:36;;;37182:126;37156:153;;37327:17;37322:66;;37353:35;;;;;;;;;;;;;;37322:66;37417:1;37403:16;;:2;:16;;;37399:52;;;37428:23;;;;;;;;;;;;;;37399:52;37464:43;37486:4;37492:2;37496:7;37505:1;37464:21;:43::i;:::-;37572:35;37589:1;37593:7;37602:4;37572:8;:35::i;:::-;37933:1;37903:12;:18;37916:4;37903:18;;;;;;;;;;;;;;;:26;;;:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37977:1;37949:12;:16;37962:2;37949:16;;;;;;;;;;;;;;;:24;;;:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37995:31;38029:11;:20;38041:7;38029:20;;;;;;;;;;;37995:54;;38080:2;38064:8;:13;;;:18;;;;;;;;;;;;;;;;;;38130:15;38097:8;:23;;;:49;;;;;;;;;;;;;;;;;;38398:19;38430:1;38420:7;:11;38398:33;;38446:31;38480:11;:24;38492:11;38480:24;;;;;;;;;;;38446:58;;38548:1;38523:27;;:8;:13;;;;;;;;;;;;:27;;;38519:384;;;38733:13;;38718:11;:28;38714:174;;38787:4;38771:8;:13;;;:20;;;;;;;;;;;;;;;;;;38840:13;:28;;;38814:8;:23;;;:54;;;;;;;;;;;;;;;;;;38714:174;38519:384;37878:1036;;;38950:7;38946:2;38931:27;;38940:4;38931:27;;;;;;;;;;;;38969:42;38990:4;38996:2;39000:7;39009:1;38969:20;:42::i;:::-;36993:2026;;36889:2130;;;:::o;27863:1111::-;27925:21;;:::i;:::-;27959:12;27974:7;27959:22;;28042:4;28023:15;:13;:15::i;:::-;:23;28019:888;;28059:13;;28052:4;:20;28048:859;;;28093:31;28127:11;:17;28139:4;28127:17;;;;;;;;;;;28093:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28168:9;:16;;;28163:729;;28239:1;28213:28;;:9;:14;;;:28;;;28209:101;;28277:9;28270:16;;;;;;28209:101;28612:261;28619:4;28612:261;;;28652:6;;;;;;;;28697:11;:17;28709:4;28697:17;;;;;;;;;;;28685:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28771:1;28745:28;;:9;:14;;;:28;;;28741:109;;28813:9;28806:16;;;;;;28741:109;28612:261;;;28163:729;28074:833;28048:859;28019:888;28935:31;;;;;;;;;;;;;;27863:1111;;;;:::o;47259:191::-;47333:16;47352:6;;;;;;;;;;;47333:25;;47378:8;47369:6;;:17;;;;;;;;;;;;;;;;;;47433:8;47402:40;;47423:8;47402:40;;;;;;;;;;;;47322:128;47259:191;:::o;25758:283::-;25805:7;26007:15;:13;:15::i;:::-;25991:13;;:31;25984:38;;25758:283;:::o;32977:104::-;33046:27;33056:2;33060:8;33046:27;;;;;;;;;;;;:9;:27::i;:::-;32977:104;;:::o;3455:326::-;3515:4;3772:1;3750:7;:19;;;:23;3743:30;;3455:326;;;:::o;42629:667::-;42792:4;42829:2;42813:36;;;42850:12;:10;:12::i;:::-;42864:4;42870:7;42879:5;42813:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;42809:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43064:1;43047:6;:13;:18;43043:235;;;43093:40;;;;;;;;;;;;;;43043:235;43236:6;43230:13;43221:6;43217:2;43213:15;43206:38;42809:480;42942:45;;;42932:55;;;:6;:55;;;;42925:62;;;42629:667;;;;;;:::o;48119:92::-;48171:13;48198:8;48191:15;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48119:92;:::o;463:723::-;519:13;749:1;740:5;:10;736:53;;;767:10;;;;;;;;;;;;;;;;;;;;;736:53;799:12;814:5;799:20;;830:14;855:78;870:1;862:4;:9;855:78;;888:8;;;;;:::i;:::-;;;;919:2;911:10;;;;;:::i;:::-;;;855:78;;;943:19;975:6;965:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;943:39;;993:154;1009:1;1000:5;:10;993:154;;1037:1;1027:11;;;;;:::i;:::-;;;1104:2;1096:5;:10;;;;:::i;:::-;1083:2;:24;;;;:::i;:::-;1070:39;;1053:6;1060;1053:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;1133:2;1124:11;;;;;:::i;:::-;;;993:154;;;1171:6;1157:21;;;;;463:723;;;;:::o;43944:159::-;;;;;:::o;44762:158::-;;;;;:::o;33454:1749::-;33577:20;33600:13;;33577:36;;33642:1;33628:16;;:2;:16;;;33624:48;;;33653:19;;;;;;;;;;;;;;33624:48;33699:1;33687:8;:13;33683:44;;;33709:18;;;;;;;;;;;;;;33683:44;33740:61;33770:1;33774:2;33778:12;33792:8;33740:21;:61::i;:::-;34113:8;34078:12;:16;34091:2;34078:16;;;;;;;;;;;;;;;:24;;;:44;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34177:8;34137:12;:16;34150:2;34137:16;;;;;;;;;;;;;;;:29;;;:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34236:2;34203:11;:25;34215:12;34203:25;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;34303:15;34253:11;:25;34265:12;34253:25;;;;;;;;;;;:40;;;:66;;;;;;;;;;;;;;;;;;34336:20;34359:12;34336:35;;34386:11;34415:8;34400:12;:23;34386:37;;34444:15;:2;:13;;;:15::i;:::-;34440:631;;;34480:313;34536:12;34532:2;34511:38;;34528:1;34511:38;;;;;;;;;;;;34577:69;34616:1;34620:2;34624:14;;;;;;34640:5;34577:30;:69::i;:::-;34572:174;;34682:40;;;;;;;;;;;;;;34572:174;34788:3;34773:12;:18;34480:313;;34874:12;34857:13;;:29;34853:43;;34888:8;;;34853:43;34440:631;;;34937:119;34993:14;;;;;;34989:2;34968:40;;34985:1;34968:40;;;;;;;;;;;;35051:3;35036:12;:18;34937:119;;34440:631;35101:12;35085:13;:28;;;;34053:1072;;35135:60;35164:1;35168:2;35172:12;35186:8;35135:20;:60::i;:::-;33566:1637;33454:1749;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:410:1:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:112;;;280:79;;:::i;:::-;249:112;370:41;404:6;399:3;394;370:41;:::i;:::-;90:327;7:410;;;;;:::o;423:412::-;501:5;526:66;542:49;584:6;542:49;:::i;:::-;526:66;:::i;:::-;517:75;;615:6;608:5;601:21;653:4;646:5;642:16;691:3;682:6;677:3;673:16;670:25;667:112;;;698:79;;:::i;:::-;667:112;788:41;822:6;817:3;812;788:41;:::i;:::-;507:328;423:412;;;;;:::o;841:139::-;887:5;925:6;912:20;903:29;;941:33;968:5;941:33;:::i;:::-;841:139;;;;:::o;986:133::-;1029:5;1067:6;1054:20;1045:29;;1083:30;1107:5;1083:30;:::i;:::-;986:133;;;;:::o;1125:137::-;1170:5;1208:6;1195:20;1186:29;;1224:32;1250:5;1224:32;:::i;:::-;1125:137;;;;:::o;1268:141::-;1324:5;1355:6;1349:13;1340:22;;1371:32;1397:5;1371:32;:::i;:::-;1268:141;;;;:::o;1428:338::-;1483:5;1532:3;1525:4;1517:6;1513:17;1509:27;1499:122;;1540:79;;:::i;:::-;1499:122;1657:6;1644:20;1682:78;1756:3;1748:6;1741:4;1733:6;1729:17;1682:78;:::i;:::-;1673:87;;1489:277;1428:338;;;;:::o;1786:340::-;1842:5;1891:3;1884:4;1876:6;1872:17;1868:27;1858:122;;1899:79;;:::i;:::-;1858:122;2016:6;2003:20;2041:79;2116:3;2108:6;2101:4;2093:6;2089:17;2041:79;:::i;:::-;2032:88;;1848:278;1786:340;;;;:::o;2132:139::-;2178:5;2216:6;2203:20;2194:29;;2232:33;2259:5;2232:33;:::i;:::-;2132:139;;;;:::o;2277:329::-;2336:6;2385:2;2373:9;2364:7;2360:23;2356:32;2353:119;;;2391:79;;:::i;:::-;2353:119;2511:1;2536:53;2581:7;2572:6;2561:9;2557:22;2536:53;:::i;:::-;2526:63;;2482:117;2277:329;;;;:::o;2612:474::-;2680:6;2688;2737:2;2725:9;2716:7;2712:23;2708:32;2705:119;;;2743:79;;:::i;:::-;2705:119;2863:1;2888:53;2933:7;2924:6;2913:9;2909:22;2888:53;:::i;:::-;2878:63;;2834:117;2990:2;3016:53;3061:7;3052:6;3041:9;3037:22;3016:53;:::i;:::-;3006:63;;2961:118;2612:474;;;;;:::o;3092:619::-;3169:6;3177;3185;3234:2;3222:9;3213:7;3209:23;3205:32;3202:119;;;3240:79;;:::i;:::-;3202:119;3360:1;3385:53;3430:7;3421:6;3410:9;3406:22;3385:53;:::i;:::-;3375:63;;3331:117;3487:2;3513:53;3558:7;3549:6;3538:9;3534:22;3513:53;:::i;:::-;3503:63;;3458:118;3615:2;3641:53;3686:7;3677:6;3666:9;3662:22;3641:53;:::i;:::-;3631:63;;3586:118;3092:619;;;;;:::o;3717:943::-;3812:6;3820;3828;3836;3885:3;3873:9;3864:7;3860:23;3856:33;3853:120;;;3892:79;;:::i;:::-;3853:120;4012:1;4037:53;4082:7;4073:6;4062:9;4058:22;4037:53;:::i;:::-;4027:63;;3983:117;4139:2;4165:53;4210:7;4201:6;4190:9;4186:22;4165:53;:::i;:::-;4155:63;;4110:118;4267:2;4293:53;4338:7;4329:6;4318:9;4314:22;4293:53;:::i;:::-;4283:63;;4238:118;4423:2;4412:9;4408:18;4395:32;4454:18;4446:6;4443:30;4440:117;;;4476:79;;:::i;:::-;4440:117;4581:62;4635:7;4626:6;4615:9;4611:22;4581:62;:::i;:::-;4571:72;;4366:287;3717:943;;;;;;;:::o;4666:468::-;4731:6;4739;4788:2;4776:9;4767:7;4763:23;4759:32;4756:119;;;4794:79;;:::i;:::-;4756:119;4914:1;4939:53;4984:7;4975:6;4964:9;4960:22;4939:53;:::i;:::-;4929:63;;4885:117;5041:2;5067:50;5109:7;5100:6;5089:9;5085:22;5067:50;:::i;:::-;5057:60;;5012:115;4666:468;;;;;:::o;5140:474::-;5208:6;5216;5265:2;5253:9;5244:7;5240:23;5236:32;5233:119;;;5271:79;;:::i;:::-;5233:119;5391:1;5416:53;5461:7;5452:6;5441:9;5437:22;5416:53;:::i;:::-;5406:63;;5362:117;5518:2;5544:53;5589:7;5580:6;5569:9;5565:22;5544:53;:::i;:::-;5534:63;;5489:118;5140:474;;;;;:::o;5620:323::-;5676:6;5725:2;5713:9;5704:7;5700:23;5696:32;5693:119;;;5731:79;;:::i;:::-;5693:119;5851:1;5876:50;5918:7;5909:6;5898:9;5894:22;5876:50;:::i;:::-;5866:60;;5822:114;5620:323;;;;:::o;5949:327::-;6007:6;6056:2;6044:9;6035:7;6031:23;6027:32;6024:119;;;6062:79;;:::i;:::-;6024:119;6182:1;6207:52;6251:7;6242:6;6231:9;6227:22;6207:52;:::i;:::-;6197:62;;6153:116;5949:327;;;;:::o;6282:349::-;6351:6;6400:2;6388:9;6379:7;6375:23;6371:32;6368:119;;;6406:79;;:::i;:::-;6368:119;6526:1;6551:63;6606:7;6597:6;6586:9;6582:22;6551:63;:::i;:::-;6541:73;;6497:127;6282:349;;;;:::o;6637:509::-;6706:6;6755:2;6743:9;6734:7;6730:23;6726:32;6723:119;;;6761:79;;:::i;:::-;6723:119;6909:1;6898:9;6894:17;6881:31;6939:18;6931:6;6928:30;6925:117;;;6961:79;;:::i;:::-;6925:117;7066:63;7121:7;7112:6;7101:9;7097:22;7066:63;:::i;:::-;7056:73;;6852:287;6637:509;;;;:::o;7152:329::-;7211:6;7260:2;7248:9;7239:7;7235:23;7231:32;7228:119;;;7266:79;;:::i;:::-;7228:119;7386:1;7411:53;7456:7;7447:6;7436:9;7432:22;7411:53;:::i;:::-;7401:63;;7357:117;7152:329;;;;:::o;7487:118::-;7574:24;7592:5;7574:24;:::i;:::-;7569:3;7562:37;7487:118;;:::o;7611:109::-;7692:21;7707:5;7692:21;:::i;:::-;7687:3;7680:34;7611:109;;:::o;7726:360::-;7812:3;7840:38;7872:5;7840:38;:::i;:::-;7894:70;7957:6;7952:3;7894:70;:::i;:::-;7887:77;;7973:52;8018:6;8013:3;8006:4;7999:5;7995:16;7973:52;:::i;:::-;8050:29;8072:6;8050:29;:::i;:::-;8045:3;8041:39;8034:46;;7816:270;7726:360;;;;:::o;8092:364::-;8180:3;8208:39;8241:5;8208:39;:::i;:::-;8263:71;8327:6;8322:3;8263:71;:::i;:::-;8256:78;;8343:52;8388:6;8383:3;8376:4;8369:5;8365:16;8343:52;:::i;:::-;8420:29;8442:6;8420:29;:::i;:::-;8415:3;8411:39;8404:46;;8184:272;8092:364;;;;:::o;8462:377::-;8568:3;8596:39;8629:5;8596:39;:::i;:::-;8651:89;8733:6;8728:3;8651:89;:::i;:::-;8644:96;;8749:52;8794:6;8789:3;8782:4;8775:5;8771:16;8749:52;:::i;:::-;8826:6;8821:3;8817:16;8810:23;;8572:267;8462:377;;;;:::o;8845:366::-;8987:3;9008:67;9072:2;9067:3;9008:67;:::i;:::-;9001:74;;9084:93;9173:3;9084:93;:::i;:::-;9202:2;9197:3;9193:12;9186:19;;8845:366;;;:::o;9217:::-;9359:3;9380:67;9444:2;9439:3;9380:67;:::i;:::-;9373:74;;9456:93;9545:3;9456:93;:::i;:::-;9574:2;9569:3;9565:12;9558:19;;9217:366;;;:::o;9589:::-;9731:3;9752:67;9816:2;9811:3;9752:67;:::i;:::-;9745:74;;9828:93;9917:3;9828:93;:::i;:::-;9946:2;9941:3;9937:12;9930:19;;9589:366;;;:::o;9961:::-;10103:3;10124:67;10188:2;10183:3;10124:67;:::i;:::-;10117:74;;10200:93;10289:3;10200:93;:::i;:::-;10318:2;10313:3;10309:12;10302:19;;9961:366;;;:::o;10333:::-;10475:3;10496:67;10560:2;10555:3;10496:67;:::i;:::-;10489:74;;10572:93;10661:3;10572:93;:::i;:::-;10690:2;10685:3;10681:12;10674:19;;10333:366;;;:::o;10705:::-;10847:3;10868:67;10932:2;10927:3;10868:67;:::i;:::-;10861:74;;10944:93;11033:3;10944:93;:::i;:::-;11062:2;11057:3;11053:12;11046:19;;10705:366;;;:::o;11077:::-;11219:3;11240:67;11304:2;11299:3;11240:67;:::i;:::-;11233:74;;11316:93;11405:3;11316:93;:::i;:::-;11434:2;11429:3;11425:12;11418:19;;11077:366;;;:::o;11449:400::-;11609:3;11630:84;11712:1;11707:3;11630:84;:::i;:::-;11623:91;;11723:93;11812:3;11723:93;:::i;:::-;11841:1;11836:3;11832:11;11825:18;;11449:400;;;:::o;11855:366::-;11997:3;12018:67;12082:2;12077:3;12018:67;:::i;:::-;12011:74;;12094:93;12183:3;12094:93;:::i;:::-;12212:2;12207:3;12203:12;12196:19;;11855:366;;;:::o;12227:::-;12369:3;12390:67;12454:2;12449:3;12390:67;:::i;:::-;12383:74;;12466:93;12555:3;12466:93;:::i;:::-;12584:2;12579:3;12575:12;12568:19;;12227:366;;;:::o;12599:::-;12741:3;12762:67;12826:2;12821:3;12762:67;:::i;:::-;12755:74;;12838:93;12927:3;12838:93;:::i;:::-;12956:2;12951:3;12947:12;12940:19;;12599:366;;;:::o;12971:118::-;13058:24;13076:5;13058:24;:::i;:::-;13053:3;13046:37;12971:118;;:::o;13095:701::-;13376:3;13398:95;13489:3;13480:6;13398:95;:::i;:::-;13391:102;;13510:95;13601:3;13592:6;13510:95;:::i;:::-;13503:102;;13622:148;13766:3;13622:148;:::i;:::-;13615:155;;13787:3;13780:10;;13095:701;;;;;:::o;13802:222::-;13895:4;13933:2;13922:9;13918:18;13910:26;;13946:71;14014:1;14003:9;13999:17;13990:6;13946:71;:::i;:::-;13802:222;;;;:::o;14030:640::-;14225:4;14263:3;14252:9;14248:19;14240:27;;14277:71;14345:1;14334:9;14330:17;14321:6;14277:71;:::i;:::-;14358:72;14426:2;14415:9;14411:18;14402:6;14358:72;:::i;:::-;14440;14508:2;14497:9;14493:18;14484:6;14440:72;:::i;:::-;14559:9;14553:4;14549:20;14544:2;14533:9;14529:18;14522:48;14587:76;14658:4;14649:6;14587:76;:::i;:::-;14579:84;;14030:640;;;;;;;:::o;14676:210::-;14763:4;14801:2;14790:9;14786:18;14778:26;;14814:65;14876:1;14865:9;14861:17;14852:6;14814:65;:::i;:::-;14676:210;;;;:::o;14892:313::-;15005:4;15043:2;15032:9;15028:18;15020:26;;15092:9;15086:4;15082:20;15078:1;15067:9;15063:17;15056:47;15120:78;15193:4;15184:6;15120:78;:::i;:::-;15112:86;;14892:313;;;;:::o;15211:419::-;15377:4;15415:2;15404:9;15400:18;15392:26;;15464:9;15458:4;15454:20;15450:1;15439:9;15435:17;15428:47;15492:131;15618:4;15492:131;:::i;:::-;15484:139;;15211:419;;;:::o;15636:::-;15802:4;15840:2;15829:9;15825:18;15817:26;;15889:9;15883:4;15879:20;15875:1;15864:9;15860:17;15853:47;15917:131;16043:4;15917:131;:::i;:::-;15909:139;;15636:419;;;:::o;16061:::-;16227:4;16265:2;16254:9;16250:18;16242:26;;16314:9;16308:4;16304:20;16300:1;16289:9;16285:17;16278:47;16342:131;16468:4;16342:131;:::i;:::-;16334:139;;16061:419;;;:::o;16486:::-;16652:4;16690:2;16679:9;16675:18;16667:26;;16739:9;16733:4;16729:20;16725:1;16714:9;16710:17;16703:47;16767:131;16893:4;16767:131;:::i;:::-;16759:139;;16486:419;;;:::o;16911:::-;17077:4;17115:2;17104:9;17100:18;17092:26;;17164:9;17158:4;17154:20;17150:1;17139:9;17135:17;17128:47;17192:131;17318:4;17192:131;:::i;:::-;17184:139;;16911:419;;;:::o;17336:::-;17502:4;17540:2;17529:9;17525:18;17517:26;;17589:9;17583:4;17579:20;17575:1;17564:9;17560:17;17553:47;17617:131;17743:4;17617:131;:::i;:::-;17609:139;;17336:419;;;:::o;17761:::-;17927:4;17965:2;17954:9;17950:18;17942:26;;18014:9;18008:4;18004:20;18000:1;17989:9;17985:17;17978:47;18042:131;18168:4;18042:131;:::i;:::-;18034:139;;17761:419;;;:::o;18186:::-;18352:4;18390:2;18379:9;18375:18;18367:26;;18439:9;18433:4;18429:20;18425:1;18414:9;18410:17;18403:47;18467:131;18593:4;18467:131;:::i;:::-;18459:139;;18186:419;;;:::o;18611:::-;18777:4;18815:2;18804:9;18800:18;18792:26;;18864:9;18858:4;18854:20;18850:1;18839:9;18835:17;18828:47;18892:131;19018:4;18892:131;:::i;:::-;18884:139;;18611:419;;;:::o;19036:::-;19202:4;19240:2;19229:9;19225:18;19217:26;;19289:9;19283:4;19279:20;19275:1;19264:9;19260:17;19253:47;19317:131;19443:4;19317:131;:::i;:::-;19309:139;;19036:419;;;:::o;19461:222::-;19554:4;19592:2;19581:9;19577:18;19569:26;;19605:71;19673:1;19662:9;19658:17;19649:6;19605:71;:::i;:::-;19461:222;;;;:::o;19689:129::-;19723:6;19750:20;;:::i;:::-;19740:30;;19779:33;19807:4;19799:6;19779:33;:::i;:::-;19689:129;;;:::o;19824:75::-;19857:6;19890:2;19884:9;19874:19;;19824:75;:::o;19905:307::-;19966:4;20056:18;20048:6;20045:30;20042:56;;;20078:18;;:::i;:::-;20042:56;20116:29;20138:6;20116:29;:::i;:::-;20108:37;;20200:4;20194;20190:15;20182:23;;19905:307;;;:::o;20218:308::-;20280:4;20370:18;20362:6;20359:30;20356:56;;;20392:18;;:::i;:::-;20356:56;20430:29;20452:6;20430:29;:::i;:::-;20422:37;;20514:4;20508;20504:15;20496:23;;20218:308;;;:::o;20532:98::-;20583:6;20617:5;20611:12;20601:22;;20532:98;;;:::o;20636:99::-;20688:6;20722:5;20716:12;20706:22;;20636:99;;;:::o;20741:168::-;20824:11;20858:6;20853:3;20846:19;20898:4;20893:3;20889:14;20874:29;;20741:168;;;;:::o;20915:169::-;20999:11;21033:6;21028:3;21021:19;21073:4;21068:3;21064:14;21049:29;;20915:169;;;;:::o;21090:148::-;21192:11;21229:3;21214:18;;21090:148;;;;:::o;21244:305::-;21284:3;21303:20;21321:1;21303:20;:::i;:::-;21298:25;;21337:20;21355:1;21337:20;:::i;:::-;21332:25;;21491:1;21423:66;21419:74;21416:1;21413:81;21410:107;;;21497:18;;:::i;:::-;21410:107;21541:1;21538;21534:9;21527:16;;21244:305;;;;:::o;21555:185::-;21595:1;21612:20;21630:1;21612:20;:::i;:::-;21607:25;;21646:20;21664:1;21646:20;:::i;:::-;21641:25;;21685:1;21675:35;;21690:18;;:::i;:::-;21675:35;21732:1;21729;21725:9;21720:14;;21555:185;;;;:::o;21746:348::-;21786:7;21809:20;21827:1;21809:20;:::i;:::-;21804:25;;21843:20;21861:1;21843:20;:::i;:::-;21838:25;;22031:1;21963:66;21959:74;21956:1;21953:81;21948:1;21941:9;21934:17;21930:105;21927:131;;;22038:18;;:::i;:::-;21927:131;22086:1;22083;22079:9;22068:20;;21746:348;;;;:::o;22100:191::-;22140:4;22160:20;22178:1;22160:20;:::i;:::-;22155:25;;22194:20;22212:1;22194:20;:::i;:::-;22189:25;;22233:1;22230;22227:8;22224:34;;;22238:18;;:::i;:::-;22224:34;22283:1;22280;22276:9;22268:17;;22100:191;;;;:::o;22297:96::-;22334:7;22363:24;22381:5;22363:24;:::i;:::-;22352:35;;22297:96;;;:::o;22399:90::-;22433:7;22476:5;22469:13;22462:21;22451:32;;22399:90;;;:::o;22495:149::-;22531:7;22571:66;22564:5;22560:78;22549:89;;22495:149;;;:::o;22650:126::-;22687:7;22727:42;22720:5;22716:54;22705:65;;22650:126;;;:::o;22782:77::-;22819:7;22848:5;22837:16;;22782:77;;;:::o;22865:154::-;22949:6;22944:3;22939;22926:30;23011:1;23002:6;22997:3;22993:16;22986:27;22865:154;;;:::o;23025:307::-;23093:1;23103:113;23117:6;23114:1;23111:13;23103:113;;;23202:1;23197:3;23193:11;23187:18;23183:1;23178:3;23174:11;23167:39;23139:2;23136:1;23132:10;23127:15;;23103:113;;;23234:6;23231:1;23228:13;23225:101;;;23314:1;23305:6;23300:3;23296:16;23289:27;23225:101;23074:258;23025:307;;;:::o;23338:320::-;23382:6;23419:1;23413:4;23409:12;23399:22;;23466:1;23460:4;23456:12;23487:18;23477:81;;23543:4;23535:6;23531:17;23521:27;;23477:81;23605:2;23597:6;23594:14;23574:18;23571:38;23568:84;;;23624:18;;:::i;:::-;23568:84;23389:269;23338:320;;;:::o;23664:281::-;23747:27;23769:4;23747:27;:::i;:::-;23739:6;23735:40;23877:6;23865:10;23862:22;23841:18;23829:10;23826:34;23823:62;23820:88;;;23888:18;;:::i;:::-;23820:88;23928:10;23924:2;23917:22;23707:238;23664:281;;:::o;23951:233::-;23990:3;24013:24;24031:5;24013:24;:::i;:::-;24004:33;;24059:66;24052:5;24049:77;24046:103;;;24129:18;;:::i;:::-;24046:103;24176:1;24169:5;24165:13;24158:20;;23951:233;;;:::o;24190:176::-;24222:1;24239:20;24257:1;24239:20;:::i;:::-;24234:25;;24273:20;24291:1;24273:20;:::i;:::-;24268:25;;24312:1;24302:35;;24317:18;;:::i;:::-;24302:35;24358:1;24355;24351:9;24346:14;;24190:176;;;;:::o;24372:180::-;24420:77;24417:1;24410:88;24517:4;24514:1;24507:15;24541:4;24538:1;24531:15;24558:180;24606:77;24603:1;24596:88;24703:4;24700:1;24693:15;24727:4;24724:1;24717:15;24744:180;24792:77;24789:1;24782:88;24889:4;24886:1;24879:15;24913:4;24910:1;24903:15;24930:180;24978:77;24975:1;24968:88;25075:4;25072:1;25065:15;25099:4;25096:1;25089:15;25116:180;25164:77;25161:1;25154:88;25261:4;25258:1;25251:15;25285:4;25282:1;25275:15;25302:117;25411:1;25408;25401:12;25425:117;25534:1;25531;25524:12;25548:117;25657:1;25654;25647:12;25671:117;25780:1;25777;25770:12;25794:102;25835:6;25886:2;25882:7;25877:2;25870:5;25866:14;25862:28;25852:38;;25794:102;;;:::o;25902:171::-;26042:23;26038:1;26030:6;26026:14;26019:47;25902:171;:::o;26079:225::-;26219:34;26215:1;26207:6;26203:14;26196:58;26288:8;26283:2;26275:6;26271:15;26264:33;26079:225;:::o;26310:160::-;26450:12;26446:1;26438:6;26434:14;26427:36;26310:160;:::o;26476:220::-;26616:34;26612:1;26604:6;26600:14;26593:58;26685:3;26680:2;26672:6;26668:15;26661:28;26476:220;:::o;26702:163::-;26842:15;26838:1;26830:6;26826:14;26819:39;26702:163;:::o;26871:168::-;27011:20;27007:1;26999:6;26995:14;26988:44;26871:168;:::o;27045:221::-;27185:34;27181:1;27173:6;27169:14;27162:58;27254:4;27249:2;27241:6;27237:15;27230:29;27045:221;:::o;27272:155::-;27412:7;27408:1;27400:6;27396:14;27389:31;27272:155;:::o;27433:182::-;27573:34;27569:1;27561:6;27557:14;27550:58;27433:182;:::o;27621:234::-;27761:34;27757:1;27749:6;27745:14;27738:58;27830:17;27825:2;27817:6;27813:15;27806:42;27621:234;:::o;27861:172::-;28001:24;27997:1;27989:6;27985:14;27978:48;27861:172;:::o;28039:122::-;28112:24;28130:5;28112:24;:::i;:::-;28105:5;28102:35;28092:63;;28151:1;28148;28141:12;28092:63;28039:122;:::o;28167:116::-;28237:21;28252:5;28237:21;:::i;:::-;28230:5;28227:32;28217:60;;28273:1;28270;28263:12;28217:60;28167:116;:::o;28289:120::-;28361:23;28378:5;28361:23;:::i;:::-;28354:5;28351:34;28341:62;;28399:1;28396;28389:12;28341:62;28289:120;:::o;28415:122::-;28488:24;28506:5;28488:24;:::i;:::-;28481:5;28478:35;28468:63;;28527:1;28524;28517:12;28468:63;28415:122;:::o

Swarm Source

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