ETH Price: $3,452.90 (-0.05%)
Gas: 5 Gwei

Token

Puggy Squad (Puggy)
 

Overview

Max Total Supply

3,333 Puggy

Holders

696

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
5 Puggy
0xc3c77dd3395a478df8d22964b361cbea9186f15c
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:
Puggy

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-09-28
*/

// SPDX-License-Identifier: MIT
// 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;
    }
}
// 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);
    }
}

// OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol)

pragma solidity ^0.8.0;

/**
 * @dev Contract module that helps prevent reentrant calls to a function.
 *
 * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier
 * available, which can be applied to functions to make sure there are no nested
 * (reentrant) calls to them.
 *
 * Note that because there is a single `nonReentrant` guard, functions marked as
 * `nonReentrant` may not call one another. This can be worked around by making
 * those functions `private`, and then adding `external` `nonReentrant` entry
 * points to them.
 *
 * TIP: If you would like to learn more about reentrancy and alternative ways
 * to protect against it, check out our blog post
 * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].
 */
abstract contract ReentrancyGuard {
    // Booleans are more expensive than uint256 or any type that takes up a full
    // word because each write operation emits an extra SLOAD to first read the
    // slot's contents, replace the bits taken up by the boolean, and then write
    // back. This is the compiler's defense against contract upgrades and
    // pointer aliasing, and it cannot be disabled.

    // The values being non-zero value makes deployment a bit more expensive,
    // but in exchange the refund on every call to nonReentrant will be lower in
    // amount. Since refunds are capped to a percentage of the total
    // transaction's gas, it is best to keep them low in cases like this one, to
    // increase the likelihood of the full refund coming into effect.
    uint256 private constant _NOT_ENTERED = 1;
    uint256 private constant _ENTERED = 2;

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

    /**
     * @dev Prevents a contract from calling itself, directly or indirectly.
     * Calling a `nonReentrant` function from another `nonReentrant`
     * function is not supported. It is possible to prevent this from happening
     * by making the `nonReentrant` function external, and making it call a
     * `private` function that does the actual work.
     */
    modifier nonReentrant() {
        // On the first call to nonReentrant, _notEntered will be true
        require(_status != _ENTERED, "ReentrancyGuard: reentrant call");

        // Any calls to nonReentrant after this point will fail
        _status = _ENTERED;

        _;

        // By storing the original value once again, a refund is triggered (see
        // https://eips.ethereum.org/EIPS/eip-2200)
        _status = _NOT_ENTERED;
    }
}

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

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

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

pragma solidity ^0.8.0;


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

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

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

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

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

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
     * are aware of the ERC721 protocol to prevent tokens from being forever locked.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

    /**
     * @dev Transfers `tokenId` token from `from` to `to`.
     *
     * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

    /**
     * @dev Gives permission to `to` to transfer `tokenId` token to another account.
     * The approval is cleared when the token is transferred.
     *
     * Only a single account can be approved at a time, so approving the zero address clears previous approvals.
     *
     * Requirements:
     *
     * - The caller must own the token or be an approved operator.
     * - `tokenId` must exist.
     *
     * Emits an {Approval} event.
     */
    function approve(address to, uint256 tokenId) external;

    /**
     * @dev Returns the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId) external view returns (address operator);

    /**
     * @dev Approve or remove `operator` as an operator for the caller.
     * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller.
     *
     * Requirements:
     *
     * - The `operator` cannot be the caller.
     *
     * Emits an {ApprovalForAll} event.
     */
    function setApprovalForAll(address operator, bool _approved) external;

    /**
     * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`.
     *
     * See {setApprovalForAll}
     */
    function isApprovedForAll(address owner, address operator) external view returns (bool);

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes calldata data
    ) external;
}

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

pragma solidity ^0.8.0;

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

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

pragma solidity ^0.8.0;


/**
 * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Enumerable is IERC721 {
    /**
     * @dev Returns the total amount of tokens stored by the contract.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns a token ID owned by `owner` at a given `index` of its token list.
     * Use along with {balanceOf} to enumerate all of ``owner``'s tokens.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256 tokenId);

    /**
     * @dev Returns a token ID at a given `index` of all the tokens stored by the contract.
     * Use along with {totalSupply} to enumerate all tokens.
     */
    function tokenByIndex(uint256 index) external view returns (uint256);
}

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

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

pragma solidity ^0.8.0;

/**
 * @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
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize, which returns 0 for contracts in
        // construction, since the code is only stored at the end of the
        // constructor execution.

        uint256 size;
        assembly {
            size := extcodesize(account)
        }
        return size > 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);
            }
        }
    }
}

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

// OpenZeppelin Contracts v4.4.1 (utils/cryptography/ECDSA.sol)

pragma solidity ^0.8.0;


/**
 * @dev Elliptic Curve Digital Signature Algorithm (ECDSA) operations.
 *
 * These functions can be used to verify that a message was signed by the holder
 * of the private keys of a given address.
 */
library ECDSA {
    enum RecoverError {
        NoError,
        InvalidSignature,
        InvalidSignatureLength,
        InvalidSignatureS,
        InvalidSignatureV
    }

    function _throwError(RecoverError error) private pure {
        if (error == RecoverError.NoError) {
            return; // no error: do nothing
        } else if (error == RecoverError.InvalidSignature) {
            revert("ECDSA: invalid signature");
        } else if (error == RecoverError.InvalidSignatureLength) {
            revert("ECDSA: invalid signature length");
        } else if (error == RecoverError.InvalidSignatureS) {
            revert("ECDSA: invalid signature 's' value");
        } else if (error == RecoverError.InvalidSignatureV) {
            revert("ECDSA: invalid signature 'v' value");
        }
    }

    /**
     * @dev Returns the address that signed a hashed message (`hash`) with
     * `signature` or error string. This address can then be used for verification purposes.
     *
     * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures:
     * this function rejects them by requiring the `s` value to be in the lower
     * half order, and the `v` value to be either 27 or 28.
     *
     * IMPORTANT: `hash` _must_ be the result of a hash operation for the
     * verification to be secure: it is possible to craft signatures that
     * recover to arbitrary addresses for non-hashed data. A safe way to ensure
     * this is by receiving a hash of the original message (which may otherwise
     * be too long), and then calling {toEthSignedMessageHash} on it.
     *
     * Documentation for signature generation:
     * - with https://web3js.readthedocs.io/en/v1.3.4/web3-eth-accounts.html#sign[Web3.js]
     * - with https://docs.ethers.io/v5/api/signer/#Signer-signMessage[ethers]
     *
     * _Available since v4.3._
     */
    function tryRecover(bytes32 hash, bytes memory signature) internal pure returns (address, RecoverError) {
        // Check the signature length
        // - case 65: r,s,v signature (standard)
        // - case 64: r,vs signature (cf https://eips.ethereum.org/EIPS/eip-2098) _Available since v4.1._
        if (signature.length == 65) {
            bytes32 r;
            bytes32 s;
            uint8 v;
            // ecrecover takes the signature parameters, and the only way to get them
            // currently is to use assembly.
            assembly {
                r := mload(add(signature, 0x20))
                s := mload(add(signature, 0x40))
                v := byte(0, mload(add(signature, 0x60)))
            }
            return tryRecover(hash, v, r, s);
        } else if (signature.length == 64) {
            bytes32 r;
            bytes32 vs;
            // ecrecover takes the signature parameters, and the only way to get them
            // currently is to use assembly.
            assembly {
                r := mload(add(signature, 0x20))
                vs := mload(add(signature, 0x40))
            }
            return tryRecover(hash, r, vs);
        } else {
            return (address(0), RecoverError.InvalidSignatureLength);
        }
    }

    /**
     * @dev Returns the address that signed a hashed message (`hash`) with
     * `signature`. This address can then be used for verification purposes.
     *
     * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures:
     * this function rejects them by requiring the `s` value to be in the lower
     * half order, and the `v` value to be either 27 or 28.
     *
     * IMPORTANT: `hash` _must_ be the result of a hash operation for the
     * verification to be secure: it is possible to craft signatures that
     * recover to arbitrary addresses for non-hashed data. A safe way to ensure
     * this is by receiving a hash of the original message (which may otherwise
     * be too long), and then calling {toEthSignedMessageHash} on it.
     */
    function recover(bytes32 hash, bytes memory signature) internal pure returns (address) {
        (address recovered, RecoverError error) = tryRecover(hash, signature);
        _throwError(error);
        return recovered;
    }

    /**
     * @dev Overload of {ECDSA-tryRecover} that receives the `r` and `vs` short-signature fields separately.
     *
     * See https://eips.ethereum.org/EIPS/eip-2098[EIP-2098 short signatures]
     *
     * _Available since v4.3._
     */
    function tryRecover(
        bytes32 hash,
        bytes32 r,
        bytes32 vs
    ) internal pure returns (address, RecoverError) {
        bytes32 s;
        uint8 v;
        assembly {
            s := and(vs, 0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff)
            v := add(shr(255, vs), 27)
        }
        return tryRecover(hash, v, r, s);
    }

    /**
     * @dev Overload of {ECDSA-recover} that receives the `r and `vs` short-signature fields separately.
     *
     * _Available since v4.2._
     */
    function recover(
        bytes32 hash,
        bytes32 r,
        bytes32 vs
    ) internal pure returns (address) {
        (address recovered, RecoverError error) = tryRecover(hash, r, vs);
        _throwError(error);
        return recovered;
    }

    /**
     * @dev Overload of {ECDSA-tryRecover} that receives the `v`,
     * `r` and `s` signature fields separately.
     *
     * _Available since v4.3._
     */
    function tryRecover(
        bytes32 hash,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) internal pure returns (address, RecoverError) {
        // EIP-2 still allows signature malleability for ecrecover(). Remove this possibility and make the signature
        // unique. Appendix F in the Ethereum Yellow paper (https://ethereum.github.io/yellowpaper/paper.pdf), defines
        // the valid range for s in (301): 0 < s < secp256k1n ÷ 2 + 1, and for v in (302): v ∈ {27, 28}. Most
        // signatures from current libraries generate a unique signature with an s-value in the lower half order.
        //
        // If your library generates malleable signatures, such as s-values in the upper range, calculate a new s-value
        // with 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEBAAEDCE6AF48A03BBFD25E8CD0364141 - s1 and flip v from 27 to 28 or
        // vice versa. If your library also generates signatures with 0/1 for v instead 27/28, add 27 to v to accept
        // these malleable signatures as well.
        if (uint256(s) > 0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF5D576E7357A4501DDFE92F46681B20A0) {
            return (address(0), RecoverError.InvalidSignatureS);
        }
        if (v != 27 && v != 28) {
            return (address(0), RecoverError.InvalidSignatureV);
        }

        // If the signature is valid (and not malleable), return the signer address
        address signer = ecrecover(hash, v, r, s);
        if (signer == address(0)) {
            return (address(0), RecoverError.InvalidSignature);
        }

        return (signer, RecoverError.NoError);
    }

    /**
     * @dev Overload of {ECDSA-recover} that receives the `v`,
     * `r` and `s` signature fields separately.
     */
    function recover(
        bytes32 hash,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) internal pure returns (address) {
        (address recovered, RecoverError error) = tryRecover(hash, v, r, s);
        _throwError(error);
        return recovered;
    }

    /**
     * @dev Returns an Ethereum Signed Message, created from a `hash`. This
     * produces hash corresponding to the one signed with the
     * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`]
     * JSON-RPC method as part of EIP-191.
     *
     * See {recover}.
     */
    function toEthSignedMessageHash(bytes32 hash) internal pure returns (bytes32) {
        // 32 is the length in bytes of hash,
        // enforced by the type signature above
        return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n32", hash));
    }

    /**
     * @dev Returns an Ethereum Signed Message, created from `s`. This
     * produces hash corresponding to the one signed with the
     * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`]
     * JSON-RPC method as part of EIP-191.
     *
     * See {recover}.
     */
    function toEthSignedMessageHash(bytes memory s) internal pure returns (bytes32) {
        return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n", Strings.toString(s.length), s));
    }

    /**
     * @dev Returns an Ethereum Signed Typed Data, created from a
     * `domainSeparator` and a `structHash`. This produces hash corresponding
     * to the one signed with the
     * https://eips.ethereum.org/EIPS/eip-712[`eth_signTypedData`]
     * JSON-RPC method as part of EIP-712.
     *
     * See {recover}.
     */
    function toTypedDataHash(bytes32 domainSeparator, bytes32 structHash) internal pure returns (bytes32) {
        return keccak256(abi.encodePacked("\x19\x01", domainSeparator, structHash));
    }
}


pragma solidity ^0.8.0;

/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata and Enumerable extension. Built to optimize for lower gas during batch mints.
 *
 * Assumes serials are sequentially minted starting at 0 (e.g. 0, 1, 2, 3..).
 *
 * Assumes the number of issuable tokens (collection size) is capped and fits in a uint128.
 *
 * Does not support burning tokens to address(0).
 */
contract ERC721A is
    Context,
    ERC165,
    IERC721,
    IERC721Metadata,
    IERC721Enumerable
{
    using Address for address;
    using Strings for uint256;

    struct TokenOwnership {
        address addr;
        uint64 startTimestamp;
    }

    struct AddressData {
        uint128 balance;
        uint128 numberMinted;
    }

    uint256 private currentIndex = 0;

    uint256 internal immutable collectionSize;
    uint256 internal immutable maxBatchSize;

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

    /**
     * @dev
     * `maxBatchSize` refers to how much a minter can mint at a time.
     * `collectionSize_` refers to how many tokens are in the collection.
     */
    constructor(
        string memory name_,
        string memory symbol_,
        uint256 maxBatchSize_,
        uint256 collectionSize_
    ) {
        require(
            collectionSize_ > 0,
            "ERC721A: collection must have a nonzero supply"
        );
        require(maxBatchSize_ > 0, "ERC721A: max batch size must be nonzero");
        _name = name_;
        _symbol = symbol_;
        maxBatchSize = maxBatchSize_;
        collectionSize = collectionSize_;
    }

    /**
     * @dev See {IERC721Enumerable-totalSupply}.
     */
    function totalSupply() public view override returns (uint256) {
        return currentIndex;
    }

    /**
     * @dev See {IERC721Enumerable-tokenByIndex}.
     */
    function tokenByIndex(uint256 index)
        public
        view
        override
        returns (uint256)
    {
        require(index < totalSupply(), "ERC721A: global index out of bounds");
        return index;
    }

    /**
     * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
     * This read function is O(collectionSize). If calling from a separate contract, be sure to test gas first.
     * It may also degrade with extremely large collection sizes (e.g >> 10000), test for your use case.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index)
        public
        view
        override
        returns (uint256)
    {
        require(index < balanceOf(owner), "ERC721A: owner index out of bounds");
        uint256 numMintedSoFar = totalSupply();
        uint256 tokenIdsIdx = 0;
        address currOwnershipAddr = address(0);
        for (uint256 i = 0; i < numMintedSoFar; i++) {
            TokenOwnership memory ownership = _ownerships[i];
            if (ownership.addr != address(0)) {
                currOwnershipAddr = ownership.addr;
            }
            if (currOwnershipAddr == owner) {
                if (tokenIdsIdx == index) {
                    return i;
                }
                tokenIdsIdx++;
            }
        }
        revert("ERC721A: unable to get token of owner by index");
    }

    /**
     * @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 ||
            interfaceId == type(IERC721Enumerable).interfaceId ||
            super.supportsInterface(interfaceId);
    }

    /**
     * @dev See {IERC721-balanceOf}.
     */
    function balanceOf(address owner) public view override returns (uint256) {
        require(
            owner != address(0),
            "ERC721A: balance query for the zero address"
        );
        return uint256(_addressData[owner].balance);
    }

    function _numberMinted(address owner) internal view returns (uint256) {
        require(
            owner != address(0),
            "ERC721A: number minted query for the zero address"
        );
        return uint256(_addressData[owner].numberMinted);
    }

    function ownershipOf(uint256 tokenId)
        internal
        view
        returns (TokenOwnership memory)
    {
        require(_exists(tokenId), "ERC721A: owner query for nonexistent token");

        uint256 lowestTokenToCheck;
        if (tokenId >= maxBatchSize) {
            lowestTokenToCheck = tokenId - maxBatchSize + 1;
        }

        for (uint256 curr = tokenId; curr >= lowestTokenToCheck; curr--) {
            TokenOwnership memory ownership = _ownerships[curr];
            if (ownership.addr != address(0)) {
                return ownership;
            }
        }

        revert("ERC721A: unable to determine the owner of token");
    }

    /**
     * @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)
    {
        require(
            _exists(tokenId),
            "ERC721Metadata: URI query for nonexistent token"
        );

        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);
        require(to != owner, "ERC721A: approval to current owner");

        require(
            _msgSender() == owner || isApprovedForAll(owner, _msgSender()),
            "ERC721A: approve caller is not owner nor approved for all"
        );

        _approve(to, tokenId, owner);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId)
        public
        view
        override
        returns (address)
    {
        require(
            _exists(tokenId),
            "ERC721A: approved query for nonexistent token"
        );

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved)
        public
        override
    {
        require(operator != _msgSender(), "ERC721A: approve to caller");

        _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 override {
        _transfer(from, to, tokenId);
    }

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

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public override {
        _transfer(from, to, tokenId);
        require(
            _checkOnERC721Received(from, to, tokenId, _data),
            "ERC721A: transfer to non ERC721Receiver implementer"
        );
    }

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

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

    /**
     * @dev Mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - there must be `quantity` tokens remaining unminted in the total collection.
     * - `to` cannot be the zero address.
     * - `quantity` cannot be larger than the max batch size.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(
        address to,
        uint256 quantity,
        bytes memory _data
    ) internal {
        uint256 startTokenId = currentIndex;
        require(to != address(0), "ERC721A: mint to the zero address");
        // We know if the first token in the batch doesn't exist, the other ones don't as well, because of serial ordering.
        require(!_exists(startTokenId), "ERC721A: token already minted");
        require(quantity <= maxBatchSize, "ERC721A: quantity to mint too high");

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

        AddressData memory addressData = _addressData[to];
        _addressData[to] = AddressData(
            addressData.balance + uint128(quantity),
            addressData.numberMinted + uint128(quantity)
        );
        _ownerships[startTokenId] = TokenOwnership(to, uint64(block.timestamp));

        uint256 updatedIndex = startTokenId;

        for (uint256 i = 0; i < quantity; i++) {
            emit Transfer(address(0), to, updatedIndex);
            require(
                _checkOnERC721Received(address(0), to, updatedIndex, _data),
                "ERC721A: transfer to non ERC721Receiver implementer"
            );
            updatedIndex++;
        }

        currentIndex = updatedIndex;
        _afterTokenTransfers(address(0), to, startTokenId, quantity);
    }

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

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

        require(
            isApprovedOrOwner,
            "ERC721A: transfer caller is not owner nor approved"
        );

        require(
            prevOwnership.addr == from,
            "ERC721A: transfer from incorrect owner"
        );
        require(to != address(0), "ERC721A: transfer to the zero address");

        _beforeTokenTransfers(from, to, tokenId, 1);

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

        _addressData[from].balance -= 1;
        _addressData[to].balance += 1;
        _ownerships[tokenId] = TokenOwnership(to, uint64(block.timestamp));

        // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it.
        // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.
        uint256 nextTokenId = tokenId + 1;
        if (_ownerships[nextTokenId].addr == address(0)) {
            if (_exists(nextTokenId)) {
                _ownerships[nextTokenId] = TokenOwnership(
                    prevOwnership.addr,
                    prevOwnership.startTimestamp
                );
            }
        }

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

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

    uint256 public nextOwnerToExplicitlySet = 0;

    /**
     * @dev Explicitly set `owners` to eliminate loops in future calls of ownerOf().
     */
    function _setOwnersExplicit(uint256 quantity) internal {
        uint256 oldNextOwnerToSet = nextOwnerToExplicitlySet;
        require(quantity > 0, "quantity must be nonzero");
        uint256 endIndex = oldNextOwnerToSet + quantity - 1;
        if (endIndex > collectionSize - 1) {
            endIndex = collectionSize - 1;
        }
        // We know if the last one in the group exists, all in the group exist, due to serial ordering.
        require(_exists(endIndex), "not enough minted yet for this cleanup");
        for (uint256 i = oldNextOwnerToSet; i <= endIndex; i++) {
            if (_ownerships[i].addr == address(0)) {
                TokenOwnership memory ownership = ownershipOf(i);
                _ownerships[i] = TokenOwnership(
                    ownership.addr,
                    ownership.startTimestamp
                );
            }
        }
        nextOwnerToExplicitlySet = endIndex + 1;
    }

    /**
     * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address.
     * The call is not executed if the target address is not a 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 _checkOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) private returns (bool) {
        if (to.isContract()) {
            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(
                        "ERC721A: transfer to non ERC721Receiver implementer"
                    );
                } else {
                    assembly {
                        revert(add(32, reason), mload(reason))
                    }
                }
            }
        } else {
            return true;
        }
    }

    /**
     * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting.
     *
     * 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`.
     */
    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.
     *
     * 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` and `to` are never both zero.
     */
    function _afterTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}
}


pragma solidity ^0.8.7;

contract Puggy is ERC721A, Ownable, ReentrancyGuard {
    using ECDSA for bytes32;

    string public baseURI;
    address private _signer;
    
    uint256 public immutable maxMintPerWallet;
    uint256 public immutable maxSupply;
    uint256 public PRICE = 0.03 * 1000000000000000000;
    bool public mintPaused = true;
    bool public publicMintPaused = true;
    mapping(address => uint256) private mintLists; 
    event Minted(address minter, uint256 amount);

    constructor(
        string memory initBaseURI,
        address signer,
        uint256 _maxBatchSize,
        uint256 _collectionSize
    ) ERC721A("Puggy Squad", "Puggy", _maxBatchSize, _collectionSize) {
        baseURI = initBaseURI;
        _signer = signer;
        maxMintPerWallet = _maxBatchSize;
        maxSupply = _collectionSize;
    }

    function _hash(string calldata salt, address _address)
        internal
        view
        returns (bytes32)
    {
        return keccak256(abi.encode(salt, address(this), _address));
    }

    function _verify(bytes32 hash, bytes memory token)
        internal
        view
        returns (bool)
    {
        return (_recover(hash, token) == _signer);
    }

    function _recover(bytes32 hash, bytes memory token)
        internal
        pure
        returns (address)
    {
        return hash.toEthSignedMessageHash().recover(token);
    }

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

    function tokenURI(uint256 _tokenId) public view override returns (string memory) {
        return string(abi.encodePacked(_baseURI(), Strings.toString(_tokenId), ".json"));
    }


    function preMint(
        uint256 amount,
        string calldata salt,
        bytes calldata token
    ) external payable {
        require(!mintPaused, "Puggy: preMint Paused");
        require(tx.origin == msg.sender, "Puggy: contract is not allowed to mint.");
        require(_verify(_hash(salt, msg.sender), token), "Puggy: Invalid token.");
        require(mintLists[msg.sender] + amount <= maxMintPerWallet, "Puggy: The wallet has already minted during preslae sale."); 
        require(totalSupply() + amount <= maxSupply, "Puggy: Max supply exceeded.");
        _safeMint(msg.sender, amount);
        mintLists[msg.sender] += amount;
        emit Minted(msg.sender, amount);
    }

    function publicMint(
        uint256 amount
    ) external payable {
        require(!publicMintPaused, "Puggy: publicMint Paused");
        require(tx.origin == msg.sender, "Puggy: contract is not allowed to mint.");
        require(mintLists[msg.sender] + amount <= maxMintPerWallet, "Puggy: The wallet has already minted."); 
        require(totalSupply() + amount <= maxSupply, "Puggy: Max supply exceeded.");
        _safeMint(msg.sender, amount);
        refundIfOver(PRICE * amount);
        mintLists[msg.sender] += amount;
        emit Minted(msg.sender, amount);
    }
    
    function refundIfOver(uint256 price) private {
        require(msg.value >= price, "Puggy: Need to send more ETH.");
        if (msg.value > price) {
            payable(msg.sender).transfer(msg.value - price);
        }
    }

    

    function setOwnersExplicit(uint256 quantity)
        external
        onlyOwner
        nonReentrant
    {
        _setOwnersExplicit(quantity);
    }

    function getOwnershipData(uint256 tokenId)
        external
        view
        returns (TokenOwnership memory)
    {
        return ownershipOf(tokenId);
    }


    // ADMIN FUNCTIONALITY
    function setMintPaused(bool _mintPaused) external onlyOwner {
        mintPaused = _mintPaused;
    }

    function setPublicMintPaused(bool _pMintPaused) external onlyOwner {
        publicMintPaused = _pMintPaused;
    }

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


    function setSignerAddr(address __address) external onlyOwner {
        _signer = __address;
    }

    function setBaseURI(string calldata newBaseURI) external onlyOwner {
        baseURI = newBaseURI;
    }

    /**
     * @dev Withdraw the contract balance to the dev address or splitter address
     */

    function withdrawAll() external onlyOwner {
        _widthdraw(msg.sender, address(this).balance);
    }

    function _widthdraw(address _address, uint256 _amount) private {
        (bool success, ) = _address.call{value: _amount}("");
        require(success, "Transfer failed.");
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"initBaseURI","type":"string"},{"internalType":"address","name":"signer","type":"address"},{"internalType":"uint256","name":"_maxBatchSize","type":"uint256"},{"internalType":"uint256","name":"_collectionSize","type":"uint256"}],"stateMutability":"nonpayable","type":"constructor"},{"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":false,"internalType":"address","name":"minter","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Minted","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":"PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getOwnershipData","outputs":[{"components":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"uint64","name":"startTimestamp","type":"uint64"}],"internalType":"struct ERC721A.TokenOwnership","name":"","type":"tuple"}],"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":"maxMintPerWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mintPaused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nextOwnerToExplicitlySet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"string","name":"salt","type":"string"},{"internalType":"bytes","name":"token","type":"bytes"}],"name":"preMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"publicMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"publicMintPaused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_mintPaused","type":"bool"}],"name":"setMintPaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"setOwnersExplicit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_pMintPaused","type":"bool"}],"name":"setPublicMintPaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"__address","type":"address"}],"name":"setSignerAddr","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":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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":"withdrawAll","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6101006040526000808055600755666a94d74f430000600c55600d805461ffff19166101011790553480156200003457600080fd5b506040516200345b3803806200345b83398101604081905262000057916200030b565b6040518060400160405280600b81526020016a141d59d9de4814dc5d585960aa1b81525060405180604001604052806005815260200164507567677960d81b815250838360008111620001085760405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20636f6c6c656374696f6e206d757374206861766520612060448201526d6e6f6e7a65726f20737570706c7960901b60648201526084015b60405180910390fd5b600082116200016a5760405162461bcd60e51b815260206004820152602760248201527f455243373231413a206d61782062617463682073697a65206d757374206265206044820152666e6f6e7a65726f60c81b6064820152608401620000ff565b83516200017f90600190602087019062000248565b5082516200019590600290602086019062000248565b5060a09190915260805250620001ad905033620001f6565b60016009558351620001c790600a90602087019062000248565b50600b80546001600160a01b0319166001600160a01b03949094169390931790925560c05260e052506200045f565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b82805462000256906200040c565b90600052602060002090601f0160209004810192826200027a5760008555620002c5565b82601f106200029557805160ff1916838001178555620002c5565b82800160010185558215620002c5579182015b82811115620002c5578251825591602001919060010190620002a8565b50620002d3929150620002d7565b5090565b5b80821115620002d35760008155600101620002d8565b80516001600160a01b03811681146200030657600080fd5b919050565b600080600080608085870312156200032257600080fd5b84516001600160401b03808211156200033a57600080fd5b818701915087601f8301126200034f57600080fd5b81518181111562000364576200036462000449565b604051601f8201601f19908116603f011681019083821181831017156200038f576200038f62000449565b81604052828152602093508a84848701011115620003ac57600080fd5b600091505b82821015620003d05784820184015181830185015290830190620003b1565b82821115620003e25760008484830101525b9750620003f4915050878201620002ee565b60408801516060909801519699909850945050505050565b600181811c908216806200042157607f821691505b602082108114156200044357634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b60805160a05160c05160e051612f91620004ca6000396000818161063f01528181610b37015261128a0152600081816105ab01528181610aae01526111e9015260008181611c8501528181611caf01526121cf0152600081816119de0152611a100152612f916000f3fe60806040526004361061020f5760003560e01c8063715018a611610118578063a22cb465116100a0578063c87b56dd1161006f578063c87b56dd1461060d578063d5abeb011461062d578063d7224ba014610661578063e985e9c514610677578063f2fde38b146106c057600080fd5b8063a22cb46514610579578063b228d92514610599578063b6935501146105cd578063b88d4fde146105ed57600080fd5b80638da5cb5b116100e75780638da5cb5b146104c557806391b7f5ed146104e35780639231ab2a1461050357806395d89b41146105515780639eee57b01461056657600080fd5b8063715018a61461046b5780637e4831d314610480578063853828b61461049a5780638d859f3e146104af57600080fd5b8063339493481161019b5780634f6ccce71161016a5780634f6ccce7146103d657806355f804b3146103f65780636352211e146104165780636c0360eb1461043657806370a082311461044b57600080fd5b8063339493481461035757806333d9d5fd1461037757806337b3db731461039657806342842e0e146103b657600080fd5b806318160ddd116101e257806318160ddd146102c557806323b872dd146102e45780632d20fb60146103045780632db11544146103245780632f745c591461033757600080fd5b806301ffc9a71461021457806306fdde0314610249578063081812fc1461026b578063095ea7b3146102a3575b600080fd5b34801561022057600080fd5b5061023461022f366004612a95565b6106e0565b60405190151581526020015b60405180910390f35b34801561025557600080fd5b5061025e61074d565b6040516102409190612c93565b34801561027757600080fd5b5061028b610286366004612b11565b6107df565b6040516001600160a01b039091168152602001610240565b3480156102af57600080fd5b506102c36102be366004612a50565b61086f565b005b3480156102d157600080fd5b506000545b604051908152602001610240565b3480156102f057600080fd5b506102c36102ff36600461290e565b610987565b34801561031057600080fd5b506102c361031f366004612b11565b610992565b6102c3610332366004612b11565b610a25565b34801561034357600080fd5b506102d6610352366004612a50565b610c38565b34801561036357600080fd5b506102c3610372366004612a7a565b610da6565b34801561038357600080fd5b50600d5461023490610100900460ff1681565b3480156103a257600080fd5b506102c36103b13660046128c0565b610dea565b3480156103c257600080fd5b506102c36103d136600461290e565b610e36565b3480156103e257600080fd5b506102d66103f1366004612b11565b610e51565b34801561040257600080fd5b506102c3610411366004612acf565b610eb3565b34801561042257600080fd5b5061028b610431366004612b11565b610ee9565b34801561044257600080fd5b5061025e610efb565b34801561045757600080fd5b506102d66104663660046128c0565b610f89565b34801561047757600080fd5b506102c361101a565b34801561048c57600080fd5b50600d546102349060ff1681565b3480156104a657600080fd5b506102c3611050565b3480156104bb57600080fd5b506102d6600c5481565b3480156104d157600080fd5b506008546001600160a01b031661028b565b3480156104ef57600080fd5b506102c36104fe366004612b11565b611084565b34801561050f57600080fd5b5061052361051e366004612b11565b6110b3565b6040805182516001600160a01b0316815260209283015167ffffffffffffffff169281019290925201610240565b34801561055d57600080fd5b5061025e6110d0565b6102c3610574366004612b2a565b6110df565b34801561058557600080fd5b506102c3610594366004612a26565b611379565b3480156105a557600080fd5b506102d67f000000000000000000000000000000000000000000000000000000000000000081565b3480156105d957600080fd5b506102c36105e8366004612a7a565b61143e565b3480156105f957600080fd5b506102c361060836600461294a565b61147b565b34801561061957600080fd5b5061025e610628366004612b11565b6114b4565b34801561063957600080fd5b506102d67f000000000000000000000000000000000000000000000000000000000000000081565b34801561066d57600080fd5b506102d660075481565b34801561068357600080fd5b506102346106923660046128db565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b3480156106cc57600080fd5b506102c36106db3660046128c0565b6114ee565b60006001600160e01b031982166380ac58cd60e01b148061071157506001600160e01b03198216635b5e139f60e01b145b8061072c57506001600160e01b0319821663780e9d6360e01b145b8061074757506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606001805461075c90612e6d565b80601f016020809104026020016040519081016040528092919081815260200182805461078890612e6d565b80156107d55780601f106107aa576101008083540402835291602001916107d5565b820191906000526020600020905b8154815290600101906020018083116107b857829003601f168201915b5050505050905090565b60006107ec826000541190565b6108535760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b60648201526084015b60405180910390fd5b506000908152600560205260409020546001600160a01b031690565b600061087a82610ee9565b9050806001600160a01b0316836001600160a01b031614156108e95760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b606482015260840161084a565b336001600160a01b038216148061090557506109058133610692565b6109775760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000606482015260840161084a565b610982838383611589565b505050565b6109828383836115e5565b6008546001600160a01b031633146109bc5760405162461bcd60e51b815260040161084a90612ca6565b60026009541415610a0f5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604482015260640161084a565b6002600955610a1d8161196d565b506001600955565b600d54610100900460ff1615610a7d5760405162461bcd60e51b815260206004820152601860248201527f50756767793a207075626c69634d696e74205061757365640000000000000000604482015260640161084a565b323314610a9c5760405162461bcd60e51b815260040161084a90612d2e565b336000908152600e60205260409020547f000000000000000000000000000000000000000000000000000000000000000090610ad9908390612da0565b1115610b355760405162461bcd60e51b815260206004820152602560248201527f50756767793a205468652077616c6c65742068617320616c7265616479206d69604482015264373a32b21760d91b606482015260840161084a565b7f000000000000000000000000000000000000000000000000000000000000000081610b6060005490565b610b6a9190612da0565b1115610bb85760405162461bcd60e51b815260206004820152601b60248201527f50756767793a204d617820737570706c792065786365656465642e0000000000604482015260640161084a565b610bc23382611b57565b610bd881600c54610bd39190612dcc565b611b75565b336000908152600e602052604081208054839290610bf7908490612da0565b909155505060408051338152602081018390527f30385c845b448a36257a6a1716e6ad2e1bc2cbe333cde1e69fe849ad6511adfe910160405180910390a150565b6000610c4383610f89565b8210610c9c5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b606482015260840161084a565b600080549080805b83811015610d46576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215610cf757805192505b876001600160a01b0316836001600160a01b03161415610d335786841415610d255750935061074792505050565b83610d2f81612ea8565b9450505b5080610d3e81612ea8565b915050610ca4565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b606482015260840161084a565b6008546001600160a01b03163314610dd05760405162461bcd60e51b815260040161084a90612ca6565b600d80549115156101000261ff0019909216919091179055565b6008546001600160a01b03163314610e145760405162461bcd60e51b815260040161084a90612ca6565b600b80546001600160a01b0319166001600160a01b0392909216919091179055565b6109828383836040518060200160405280600081525061147b565b600080548210610eaf5760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b606482015260840161084a565b5090565b6008546001600160a01b03163314610edd5760405162461bcd60e51b815260040161084a90612ca6565b610982600a83836127c2565b6000610ef482611c03565b5192915050565b600a8054610f0890612e6d565b80601f0160208091040260200160405190810160405280929190818152602001828054610f3490612e6d565b8015610f815780601f10610f5657610100808354040283529160200191610f81565b820191906000526020600020905b815481529060010190602001808311610f6457829003601f168201915b505050505081565b60006001600160a01b038216610ff55760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b606482015260840161084a565b506001600160a01b03166000908152600460205260409020546001600160801b031690565b6008546001600160a01b031633146110445760405162461bcd60e51b815260040161084a90612ca6565b61104e6000611dad565b565b6008546001600160a01b0316331461107a5760405162461bcd60e51b815260040161084a90612ca6565b61104e3347611dff565b6008546001600160a01b031633146110ae5760405162461bcd60e51b815260040161084a90612ca6565b600c55565b604080518082019091526000808252602082015261074782611c03565b60606002805461075c90612e6d565b600d5460ff161561112a5760405162461bcd60e51b8152602060048201526015602482015274141d59d9de4e881c1c99535a5b9d0814185d5cd959605a1b604482015260640161084a565b3233146111495760405162461bcd60e51b815260040161084a90612d2e565b611193611157858533611e95565b83838080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250611ecd92505050565b6111d75760405162461bcd60e51b8152602060048201526015602482015274283ab3b3bc9d1024b73b30b634b2103a37b5b2b71760591b604482015260640161084a565b336000908152600e60205260409020547f000000000000000000000000000000000000000000000000000000000000000090611214908790612da0565b11156112885760405162461bcd60e51b815260206004820152603960248201527f50756767793a205468652077616c6c65742068617320616c7265616479206d6960448201527f6e74656420647572696e6720707265736c61652073616c652e00000000000000606482015260840161084a565b7f0000000000000000000000000000000000000000000000000000000000000000856112b360005490565b6112bd9190612da0565b111561130b5760405162461bcd60e51b815260206004820152601b60248201527f50756767793a204d617820737570706c792065786365656465642e0000000000604482015260640161084a565b6113153386611b57565b336000908152600e602052604081208054879290611334908490612da0565b909155505060408051338152602081018790527f30385c845b448a36257a6a1716e6ad2e1bc2cbe333cde1e69fe849ad6511adfe910160405180910390a15050505050565b6001600160a01b0382163314156113d25760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c6572000000000000604482015260640161084a565b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6008546001600160a01b031633146114685760405162461bcd60e51b815260040161084a90612ca6565b600d805460ff1916911515919091179055565b6114868484846115e5565b61149284848484611ef7565b6114ae5760405162461bcd60e51b815260040161084a90612cdb565b50505050565b60606114be612005565b6114c783612014565b6040516020016114d8929190612bd0565b6040516020818303038152906040529050919050565b6008546001600160a01b031633146115185760405162461bcd60e51b815260040161084a90612ca6565b6001600160a01b03811661157d5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161084a565b61158681611dad565b50565b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60006115f082611c03565b80519091506000906001600160a01b0316336001600160a01b0316148061162757503361161c846107df565b6001600160a01b0316145b80611639575081516116399033610692565b9050806116a35760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b606482015260840161084a565b846001600160a01b031682600001516001600160a01b0316146117175760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b606482015260840161084a565b6001600160a01b03841661177b5760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b606482015260840161084a565b61178b6000848460000151611589565b6001600160a01b03851660009081526004602052604081208054600192906117bd9084906001600160801b0316612deb565b82546101009290920a6001600160801b038181021990931691831602179091556001600160a01b0386166000908152600460205260408120805460019450909261180991859116612d75565b82546001600160801b039182166101009390930a9283029190920219909116179055506040805180820182526001600160a01b03808716825267ffffffffffffffff428116602080850191825260008981526003909152948520935184549151909216600160a01b026001600160e01b03199091169190921617179055611891846001612da0565b6000818152600360205260409020549091506001600160a01b0316611923576118bb816000541190565b156119235760408051808201825284516001600160a01b03908116825260208087015167ffffffffffffffff9081168285019081526000878152600390935294909120925183549451909116600160a01b026001600160e01b03199094169116179190911790555b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b600754816119bd5760405162461bcd60e51b815260206004820152601860248201527f7175616e74697479206d757374206265206e6f6e7a65726f0000000000000000604482015260640161084a565b600060016119cb8484612da0565b6119d59190612e13565b9050611a0260017f0000000000000000000000000000000000000000000000000000000000000000612e13565b811115611a3757611a3460017f0000000000000000000000000000000000000000000000000000000000000000612e13565b90505b611a42816000541190565b611a9d5760405162461bcd60e51b815260206004820152602660248201527f6e6f7420656e6f756768206d696e7465642079657420666f722074686973206360448201526506c65616e75760d41b606482015260840161084a565b815b818111611b43576000818152600360205260409020546001600160a01b0316611b31576000611acd82611c03565b60408051808201825282516001600160a01b03908116825260209384015167ffffffffffffffff9081168584019081526000888152600390965293909420915182549351909416600160a01b026001600160e01b0319909316931692909217179055505b80611b3b81612ea8565b915050611a9f565b50611b4f816001612da0565b600755505050565b611b71828260405180602001604052806000815250612112565b5050565b80341015611bc55760405162461bcd60e51b815260206004820152601d60248201527f50756767793a204e65656420746f2073656e64206d6f7265204554482e000000604482015260640161084a565b8034111561158657336108fc611bdb8334612e13565b6040518115909202916000818181858888f19350505050158015611b71573d6000803e3d6000fd5b6040805180820190915260008082526020820152611c22826000541190565b611c815760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b606482015260840161084a565b60007f00000000000000000000000000000000000000000000000000000000000000008310611ce257611cd47f000000000000000000000000000000000000000000000000000000000000000084612e13565b611cdf906001612da0565b90505b825b818110611d4c576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215611d3957949350505050565b5080611d4481612e56565b915050611ce4565b5060405162461bcd60e51b815260206004820152602f60248201527f455243373231413a20756e61626c6520746f2064657465726d696e652074686560448201526e1037bbb732b91037b3103a37b5b2b760891b606482015260840161084a565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6000826001600160a01b03168260405160006040518083038185875af1925050503d8060008114611e4c576040519150601f19603f3d011682016040523d82523d6000602084013e611e51565b606091505b50509050806109825760405162461bcd60e51b815260206004820152601060248201526f2a3930b739b332b9103330b4b632b21760811b604482015260640161084a565b600083833084604051602001611eae9493929190612c4c565b6040516020818303038152906040528051906020012090509392505050565b600b546000906001600160a01b0316611ee684846123ed565b6001600160a01b0316149392505050565b60006001600160a01b0384163b15611ff957604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611f3b903390899088908890600401612c0f565b602060405180830381600087803b158015611f5557600080fd5b505af1925050508015611f85575060408051601f3d908101601f19168201909252611f8291810190612ab2565b60015b611fdf573d808015611fb3576040519150601f19603f3d011682016040523d82523d6000602084013e611fb8565b606091505b508051611fd75760405162461bcd60e51b815260040161084a90612cdb565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611ffd565b5060015b949350505050565b6060600a805461075c90612e6d565b6060816120385750506040805180820190915260018152600360fc1b602082015290565b8160005b8115612062578061204c81612ea8565b915061205b9050600a83612db8565b915061203c565b60008167ffffffffffffffff81111561207d5761207d612f2f565b6040519080825280601f01601f1916602001820160405280156120a7576020820181803683370190505b5090505b8415611ffd576120bc600183612e13565b91506120c9600a86612ec3565b6120d4906030612da0565b60f81b8183815181106120e9576120e9612f19565b60200101906001600160f81b031916908160001a90535061210b600a86612db8565b94506120ab565b6000546001600160a01b0384166121755760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b606482015260840161084a565b612180816000541190565b156121cd5760405162461bcd60e51b815260206004820152601d60248201527f455243373231413a20746f6b656e20616c7265616479206d696e746564000000604482015260640161084a565b7f00000000000000000000000000000000000000000000000000000000000000008311156122485760405162461bcd60e51b815260206004820152602260248201527f455243373231413a207175616e7469747920746f206d696e7420746f6f2068696044820152610ced60f31b606482015260840161084a565b6001600160a01b0384166000908152600460209081526040918290208251808401845290546001600160801b038082168352600160801b90910416918101919091528151808301909252805190919081906122a4908790612d75565b6001600160801b031681526020018583602001516122c29190612d75565b6001600160801b039081169091526001600160a01b0380881660008181526004602090815260408083208751978301518716600160801b0297909616969096179094558451808601865291825267ffffffffffffffff4281168386019081528883526003909552948120915182549451909516600160a01b026001600160e01b031990941694909216939093179190911790915582905b858110156123e25760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a46123a66000888488611ef7565b6123c25760405162461bcd60e51b815260040161084a90612cdb565b816123cc81612ea8565b92505080806123da90612ea8565b915050612359565b506000819055611965565b60006124508261244a856040517f19457468657265756d205369676e6564204d6573736167653a0a3332000000006020820152603c8101829052600090605c01604051602081830303815290604052805190602001209050919050565b90612457565b9392505050565b6000806000612466858561247b565b91509150612473816124eb565b509392505050565b6000808251604114156124b25760208301516040840151606085015160001a6124a6878285856126a6565b945094505050506124e4565b8251604014156124dc57602083015160408401516124d1868383612793565b9350935050506124e4565b506000905060025b9250929050565b60008160048111156124ff576124ff612f03565b14156125085750565b600181600481111561251c5761251c612f03565b141561256a5760405162461bcd60e51b815260206004820152601860248201527f45434453413a20696e76616c6964207369676e61747572650000000000000000604482015260640161084a565b600281600481111561257e5761257e612f03565b14156125cc5760405162461bcd60e51b815260206004820152601f60248201527f45434453413a20696e76616c6964207369676e6174757265206c656e67746800604482015260640161084a565b60038160048111156125e0576125e0612f03565b14156126395760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202773272076616c604482015261756560f01b606482015260840161084a565b600481600481111561264d5761264d612f03565b14156115865760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202776272076616c604482015261756560f01b606482015260840161084a565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a08311156126dd575060009050600361278a565b8460ff16601b141580156126f557508460ff16601c14155b15612706575060009050600461278a565b6040805160008082526020820180845289905260ff881692820192909252606081018690526080810185905260019060a0016020604051602081039080840390855afa15801561275a573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b0381166127835760006001925092505061278a565b9150600090505b94509492505050565b6000806001600160ff1b03831660ff84901c601b016127b4878288856126a6565b935093505050935093915050565b8280546127ce90612e6d565b90600052602060002090601f0160209004810192826127f05760008555612836565b82601f106128095782800160ff19823516178555612836565b82800160010185558215612836579182015b8281111561283657823582559160200191906001019061281b565b50610eaf9291505b80821115610eaf576000815560010161283e565b80356001600160a01b038116811461286957600080fd5b919050565b8035801515811461286957600080fd5b60008083601f84011261289057600080fd5b50813567ffffffffffffffff8111156128a857600080fd5b6020830191508360208285010111156124e457600080fd5b6000602082840312156128d257600080fd5b61245082612852565b600080604083850312156128ee57600080fd5b6128f783612852565b915061290560208401612852565b90509250929050565b60008060006060848603121561292357600080fd5b61292c84612852565b925061293a60208501612852565b9150604084013590509250925092565b6000806000806080858703121561296057600080fd5b61296985612852565b935061297760208601612852565b925060408501359150606085013567ffffffffffffffff8082111561299b57600080fd5b818701915087601f8301126129af57600080fd5b8135818111156129c1576129c1612f2f565b604051601f8201601f19908116603f011681019083821181831017156129e9576129e9612f2f565b816040528281528a6020848701011115612a0257600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b60008060408385031215612a3957600080fd5b612a4283612852565b91506129056020840161286e565b60008060408385031215612a6357600080fd5b612a6c83612852565b946020939093013593505050565b600060208284031215612a8c57600080fd5b6124508261286e565b600060208284031215612aa757600080fd5b813561245081612f45565b600060208284031215612ac457600080fd5b815161245081612f45565b60008060208385031215612ae257600080fd5b823567ffffffffffffffff811115612af957600080fd5b612b058582860161287e565b90969095509350505050565b600060208284031215612b2357600080fd5b5035919050565b600080600080600060608688031215612b4257600080fd5b85359450602086013567ffffffffffffffff80821115612b6157600080fd5b612b6d89838a0161287e565b90965094506040880135915080821115612b8657600080fd5b50612b938882890161287e565b969995985093965092949392505050565b60008151808452612bbc816020860160208601612e2a565b601f01601f19169290920160200192915050565b60008351612be2818460208801612e2a565b835190830190612bf6818360208801612e2a565b64173539b7b760d91b9101908152600501949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612c4290830184612ba4565b9695505050505050565b6060815283606082015283856080830137600060808583018101919091526001600160a01b039384166020830152919092166040830152601f909201601f19160101919050565b6020815260006124506020830184612ba4565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b60208082526027908201527f50756767793a20636f6e7472616374206973206e6f7420616c6c6f7765642074604082015266379036b4b73a1760c91b606082015260800190565b60006001600160801b03808316818516808303821115612d9757612d97612ed7565b01949350505050565b60008219821115612db357612db3612ed7565b500190565b600082612dc757612dc7612eed565b500490565b6000816000190483118215151615612de657612de6612ed7565b500290565b60006001600160801b0383811690831681811015612e0b57612e0b612ed7565b039392505050565b600082821015612e2557612e25612ed7565b500390565b60005b83811015612e45578181015183820152602001612e2d565b838111156114ae5750506000910152565b600081612e6557612e65612ed7565b506000190190565b600181811c90821680612e8157607f821691505b60208210811415612ea257634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612ebc57612ebc612ed7565b5060010190565b600082612ed257612ed2612eed565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052602160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461158657600080fdfea26469706673582212208d90c1289430af87f5cc187ac34f61aca3641030ce9cb97ec9cf639eaeb9523464736f6c634300080700330000000000000000000000000000000000000000000000000000000000000080000000000000000000000000a8ee9a4cbe22cea18155efe51d4b5345686773de00000000000000000000000000000000000000000000000000000000000000050000000000000000000000000000000000000000000000000000000000000d05000000000000000000000000000000000000000000000000000000000000002c68747470733a2f2f707567677973717561642d6e66742e73332e616d617a6f6e6177732e636f6d2f6170692f0000000000000000000000000000000000000000

Deployed Bytecode

0x60806040526004361061020f5760003560e01c8063715018a611610118578063a22cb465116100a0578063c87b56dd1161006f578063c87b56dd1461060d578063d5abeb011461062d578063d7224ba014610661578063e985e9c514610677578063f2fde38b146106c057600080fd5b8063a22cb46514610579578063b228d92514610599578063b6935501146105cd578063b88d4fde146105ed57600080fd5b80638da5cb5b116100e75780638da5cb5b146104c557806391b7f5ed146104e35780639231ab2a1461050357806395d89b41146105515780639eee57b01461056657600080fd5b8063715018a61461046b5780637e4831d314610480578063853828b61461049a5780638d859f3e146104af57600080fd5b8063339493481161019b5780634f6ccce71161016a5780634f6ccce7146103d657806355f804b3146103f65780636352211e146104165780636c0360eb1461043657806370a082311461044b57600080fd5b8063339493481461035757806333d9d5fd1461037757806337b3db731461039657806342842e0e146103b657600080fd5b806318160ddd116101e257806318160ddd146102c557806323b872dd146102e45780632d20fb60146103045780632db11544146103245780632f745c591461033757600080fd5b806301ffc9a71461021457806306fdde0314610249578063081812fc1461026b578063095ea7b3146102a3575b600080fd5b34801561022057600080fd5b5061023461022f366004612a95565b6106e0565b60405190151581526020015b60405180910390f35b34801561025557600080fd5b5061025e61074d565b6040516102409190612c93565b34801561027757600080fd5b5061028b610286366004612b11565b6107df565b6040516001600160a01b039091168152602001610240565b3480156102af57600080fd5b506102c36102be366004612a50565b61086f565b005b3480156102d157600080fd5b506000545b604051908152602001610240565b3480156102f057600080fd5b506102c36102ff36600461290e565b610987565b34801561031057600080fd5b506102c361031f366004612b11565b610992565b6102c3610332366004612b11565b610a25565b34801561034357600080fd5b506102d6610352366004612a50565b610c38565b34801561036357600080fd5b506102c3610372366004612a7a565b610da6565b34801561038357600080fd5b50600d5461023490610100900460ff1681565b3480156103a257600080fd5b506102c36103b13660046128c0565b610dea565b3480156103c257600080fd5b506102c36103d136600461290e565b610e36565b3480156103e257600080fd5b506102d66103f1366004612b11565b610e51565b34801561040257600080fd5b506102c3610411366004612acf565b610eb3565b34801561042257600080fd5b5061028b610431366004612b11565b610ee9565b34801561044257600080fd5b5061025e610efb565b34801561045757600080fd5b506102d66104663660046128c0565b610f89565b34801561047757600080fd5b506102c361101a565b34801561048c57600080fd5b50600d546102349060ff1681565b3480156104a657600080fd5b506102c3611050565b3480156104bb57600080fd5b506102d6600c5481565b3480156104d157600080fd5b506008546001600160a01b031661028b565b3480156104ef57600080fd5b506102c36104fe366004612b11565b611084565b34801561050f57600080fd5b5061052361051e366004612b11565b6110b3565b6040805182516001600160a01b0316815260209283015167ffffffffffffffff169281019290925201610240565b34801561055d57600080fd5b5061025e6110d0565b6102c3610574366004612b2a565b6110df565b34801561058557600080fd5b506102c3610594366004612a26565b611379565b3480156105a557600080fd5b506102d67f000000000000000000000000000000000000000000000000000000000000000581565b3480156105d957600080fd5b506102c36105e8366004612a7a565b61143e565b3480156105f957600080fd5b506102c361060836600461294a565b61147b565b34801561061957600080fd5b5061025e610628366004612b11565b6114b4565b34801561063957600080fd5b506102d67f0000000000000000000000000000000000000000000000000000000000000d0581565b34801561066d57600080fd5b506102d660075481565b34801561068357600080fd5b506102346106923660046128db565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b3480156106cc57600080fd5b506102c36106db3660046128c0565b6114ee565b60006001600160e01b031982166380ac58cd60e01b148061071157506001600160e01b03198216635b5e139f60e01b145b8061072c57506001600160e01b0319821663780e9d6360e01b145b8061074757506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606001805461075c90612e6d565b80601f016020809104026020016040519081016040528092919081815260200182805461078890612e6d565b80156107d55780601f106107aa576101008083540402835291602001916107d5565b820191906000526020600020905b8154815290600101906020018083116107b857829003601f168201915b5050505050905090565b60006107ec826000541190565b6108535760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b60648201526084015b60405180910390fd5b506000908152600560205260409020546001600160a01b031690565b600061087a82610ee9565b9050806001600160a01b0316836001600160a01b031614156108e95760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b606482015260840161084a565b336001600160a01b038216148061090557506109058133610692565b6109775760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000606482015260840161084a565b610982838383611589565b505050565b6109828383836115e5565b6008546001600160a01b031633146109bc5760405162461bcd60e51b815260040161084a90612ca6565b60026009541415610a0f5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604482015260640161084a565b6002600955610a1d8161196d565b506001600955565b600d54610100900460ff1615610a7d5760405162461bcd60e51b815260206004820152601860248201527f50756767793a207075626c69634d696e74205061757365640000000000000000604482015260640161084a565b323314610a9c5760405162461bcd60e51b815260040161084a90612d2e565b336000908152600e60205260409020547f000000000000000000000000000000000000000000000000000000000000000590610ad9908390612da0565b1115610b355760405162461bcd60e51b815260206004820152602560248201527f50756767793a205468652077616c6c65742068617320616c7265616479206d69604482015264373a32b21760d91b606482015260840161084a565b7f0000000000000000000000000000000000000000000000000000000000000d0581610b6060005490565b610b6a9190612da0565b1115610bb85760405162461bcd60e51b815260206004820152601b60248201527f50756767793a204d617820737570706c792065786365656465642e0000000000604482015260640161084a565b610bc23382611b57565b610bd881600c54610bd39190612dcc565b611b75565b336000908152600e602052604081208054839290610bf7908490612da0565b909155505060408051338152602081018390527f30385c845b448a36257a6a1716e6ad2e1bc2cbe333cde1e69fe849ad6511adfe910160405180910390a150565b6000610c4383610f89565b8210610c9c5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b606482015260840161084a565b600080549080805b83811015610d46576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215610cf757805192505b876001600160a01b0316836001600160a01b03161415610d335786841415610d255750935061074792505050565b83610d2f81612ea8565b9450505b5080610d3e81612ea8565b915050610ca4565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b606482015260840161084a565b6008546001600160a01b03163314610dd05760405162461bcd60e51b815260040161084a90612ca6565b600d80549115156101000261ff0019909216919091179055565b6008546001600160a01b03163314610e145760405162461bcd60e51b815260040161084a90612ca6565b600b80546001600160a01b0319166001600160a01b0392909216919091179055565b6109828383836040518060200160405280600081525061147b565b600080548210610eaf5760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b606482015260840161084a565b5090565b6008546001600160a01b03163314610edd5760405162461bcd60e51b815260040161084a90612ca6565b610982600a83836127c2565b6000610ef482611c03565b5192915050565b600a8054610f0890612e6d565b80601f0160208091040260200160405190810160405280929190818152602001828054610f3490612e6d565b8015610f815780601f10610f5657610100808354040283529160200191610f81565b820191906000526020600020905b815481529060010190602001808311610f6457829003601f168201915b505050505081565b60006001600160a01b038216610ff55760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b606482015260840161084a565b506001600160a01b03166000908152600460205260409020546001600160801b031690565b6008546001600160a01b031633146110445760405162461bcd60e51b815260040161084a90612ca6565b61104e6000611dad565b565b6008546001600160a01b0316331461107a5760405162461bcd60e51b815260040161084a90612ca6565b61104e3347611dff565b6008546001600160a01b031633146110ae5760405162461bcd60e51b815260040161084a90612ca6565b600c55565b604080518082019091526000808252602082015261074782611c03565b60606002805461075c90612e6d565b600d5460ff161561112a5760405162461bcd60e51b8152602060048201526015602482015274141d59d9de4e881c1c99535a5b9d0814185d5cd959605a1b604482015260640161084a565b3233146111495760405162461bcd60e51b815260040161084a90612d2e565b611193611157858533611e95565b83838080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250611ecd92505050565b6111d75760405162461bcd60e51b8152602060048201526015602482015274283ab3b3bc9d1024b73b30b634b2103a37b5b2b71760591b604482015260640161084a565b336000908152600e60205260409020547f000000000000000000000000000000000000000000000000000000000000000590611214908790612da0565b11156112885760405162461bcd60e51b815260206004820152603960248201527f50756767793a205468652077616c6c65742068617320616c7265616479206d6960448201527f6e74656420647572696e6720707265736c61652073616c652e00000000000000606482015260840161084a565b7f0000000000000000000000000000000000000000000000000000000000000d05856112b360005490565b6112bd9190612da0565b111561130b5760405162461bcd60e51b815260206004820152601b60248201527f50756767793a204d617820737570706c792065786365656465642e0000000000604482015260640161084a565b6113153386611b57565b336000908152600e602052604081208054879290611334908490612da0565b909155505060408051338152602081018790527f30385c845b448a36257a6a1716e6ad2e1bc2cbe333cde1e69fe849ad6511adfe910160405180910390a15050505050565b6001600160a01b0382163314156113d25760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c6572000000000000604482015260640161084a565b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6008546001600160a01b031633146114685760405162461bcd60e51b815260040161084a90612ca6565b600d805460ff1916911515919091179055565b6114868484846115e5565b61149284848484611ef7565b6114ae5760405162461bcd60e51b815260040161084a90612cdb565b50505050565b60606114be612005565b6114c783612014565b6040516020016114d8929190612bd0565b6040516020818303038152906040529050919050565b6008546001600160a01b031633146115185760405162461bcd60e51b815260040161084a90612ca6565b6001600160a01b03811661157d5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161084a565b61158681611dad565b50565b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60006115f082611c03565b80519091506000906001600160a01b0316336001600160a01b0316148061162757503361161c846107df565b6001600160a01b0316145b80611639575081516116399033610692565b9050806116a35760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b606482015260840161084a565b846001600160a01b031682600001516001600160a01b0316146117175760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b606482015260840161084a565b6001600160a01b03841661177b5760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b606482015260840161084a565b61178b6000848460000151611589565b6001600160a01b03851660009081526004602052604081208054600192906117bd9084906001600160801b0316612deb565b82546101009290920a6001600160801b038181021990931691831602179091556001600160a01b0386166000908152600460205260408120805460019450909261180991859116612d75565b82546001600160801b039182166101009390930a9283029190920219909116179055506040805180820182526001600160a01b03808716825267ffffffffffffffff428116602080850191825260008981526003909152948520935184549151909216600160a01b026001600160e01b03199091169190921617179055611891846001612da0565b6000818152600360205260409020549091506001600160a01b0316611923576118bb816000541190565b156119235760408051808201825284516001600160a01b03908116825260208087015167ffffffffffffffff9081168285019081526000878152600390935294909120925183549451909116600160a01b026001600160e01b03199094169116179190911790555b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b600754816119bd5760405162461bcd60e51b815260206004820152601860248201527f7175616e74697479206d757374206265206e6f6e7a65726f0000000000000000604482015260640161084a565b600060016119cb8484612da0565b6119d59190612e13565b9050611a0260017f0000000000000000000000000000000000000000000000000000000000000d05612e13565b811115611a3757611a3460017f0000000000000000000000000000000000000000000000000000000000000d05612e13565b90505b611a42816000541190565b611a9d5760405162461bcd60e51b815260206004820152602660248201527f6e6f7420656e6f756768206d696e7465642079657420666f722074686973206360448201526506c65616e75760d41b606482015260840161084a565b815b818111611b43576000818152600360205260409020546001600160a01b0316611b31576000611acd82611c03565b60408051808201825282516001600160a01b03908116825260209384015167ffffffffffffffff9081168584019081526000888152600390965293909420915182549351909416600160a01b026001600160e01b0319909316931692909217179055505b80611b3b81612ea8565b915050611a9f565b50611b4f816001612da0565b600755505050565b611b71828260405180602001604052806000815250612112565b5050565b80341015611bc55760405162461bcd60e51b815260206004820152601d60248201527f50756767793a204e65656420746f2073656e64206d6f7265204554482e000000604482015260640161084a565b8034111561158657336108fc611bdb8334612e13565b6040518115909202916000818181858888f19350505050158015611b71573d6000803e3d6000fd5b6040805180820190915260008082526020820152611c22826000541190565b611c815760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b606482015260840161084a565b60007f00000000000000000000000000000000000000000000000000000000000000058310611ce257611cd47f000000000000000000000000000000000000000000000000000000000000000584612e13565b611cdf906001612da0565b90505b825b818110611d4c576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215611d3957949350505050565b5080611d4481612e56565b915050611ce4565b5060405162461bcd60e51b815260206004820152602f60248201527f455243373231413a20756e61626c6520746f2064657465726d696e652074686560448201526e1037bbb732b91037b3103a37b5b2b760891b606482015260840161084a565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6000826001600160a01b03168260405160006040518083038185875af1925050503d8060008114611e4c576040519150601f19603f3d011682016040523d82523d6000602084013e611e51565b606091505b50509050806109825760405162461bcd60e51b815260206004820152601060248201526f2a3930b739b332b9103330b4b632b21760811b604482015260640161084a565b600083833084604051602001611eae9493929190612c4c565b6040516020818303038152906040528051906020012090509392505050565b600b546000906001600160a01b0316611ee684846123ed565b6001600160a01b0316149392505050565b60006001600160a01b0384163b15611ff957604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611f3b903390899088908890600401612c0f565b602060405180830381600087803b158015611f5557600080fd5b505af1925050508015611f85575060408051601f3d908101601f19168201909252611f8291810190612ab2565b60015b611fdf573d808015611fb3576040519150601f19603f3d011682016040523d82523d6000602084013e611fb8565b606091505b508051611fd75760405162461bcd60e51b815260040161084a90612cdb565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611ffd565b5060015b949350505050565b6060600a805461075c90612e6d565b6060816120385750506040805180820190915260018152600360fc1b602082015290565b8160005b8115612062578061204c81612ea8565b915061205b9050600a83612db8565b915061203c565b60008167ffffffffffffffff81111561207d5761207d612f2f565b6040519080825280601f01601f1916602001820160405280156120a7576020820181803683370190505b5090505b8415611ffd576120bc600183612e13565b91506120c9600a86612ec3565b6120d4906030612da0565b60f81b8183815181106120e9576120e9612f19565b60200101906001600160f81b031916908160001a90535061210b600a86612db8565b94506120ab565b6000546001600160a01b0384166121755760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b606482015260840161084a565b612180816000541190565b156121cd5760405162461bcd60e51b815260206004820152601d60248201527f455243373231413a20746f6b656e20616c7265616479206d696e746564000000604482015260640161084a565b7f00000000000000000000000000000000000000000000000000000000000000058311156122485760405162461bcd60e51b815260206004820152602260248201527f455243373231413a207175616e7469747920746f206d696e7420746f6f2068696044820152610ced60f31b606482015260840161084a565b6001600160a01b0384166000908152600460209081526040918290208251808401845290546001600160801b038082168352600160801b90910416918101919091528151808301909252805190919081906122a4908790612d75565b6001600160801b031681526020018583602001516122c29190612d75565b6001600160801b039081169091526001600160a01b0380881660008181526004602090815260408083208751978301518716600160801b0297909616969096179094558451808601865291825267ffffffffffffffff4281168386019081528883526003909552948120915182549451909516600160a01b026001600160e01b031990941694909216939093179190911790915582905b858110156123e25760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a46123a66000888488611ef7565b6123c25760405162461bcd60e51b815260040161084a90612cdb565b816123cc81612ea8565b92505080806123da90612ea8565b915050612359565b506000819055611965565b60006124508261244a856040517f19457468657265756d205369676e6564204d6573736167653a0a3332000000006020820152603c8101829052600090605c01604051602081830303815290604052805190602001209050919050565b90612457565b9392505050565b6000806000612466858561247b565b91509150612473816124eb565b509392505050565b6000808251604114156124b25760208301516040840151606085015160001a6124a6878285856126a6565b945094505050506124e4565b8251604014156124dc57602083015160408401516124d1868383612793565b9350935050506124e4565b506000905060025b9250929050565b60008160048111156124ff576124ff612f03565b14156125085750565b600181600481111561251c5761251c612f03565b141561256a5760405162461bcd60e51b815260206004820152601860248201527f45434453413a20696e76616c6964207369676e61747572650000000000000000604482015260640161084a565b600281600481111561257e5761257e612f03565b14156125cc5760405162461bcd60e51b815260206004820152601f60248201527f45434453413a20696e76616c6964207369676e6174757265206c656e67746800604482015260640161084a565b60038160048111156125e0576125e0612f03565b14156126395760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202773272076616c604482015261756560f01b606482015260840161084a565b600481600481111561264d5761264d612f03565b14156115865760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202776272076616c604482015261756560f01b606482015260840161084a565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a08311156126dd575060009050600361278a565b8460ff16601b141580156126f557508460ff16601c14155b15612706575060009050600461278a565b6040805160008082526020820180845289905260ff881692820192909252606081018690526080810185905260019060a0016020604051602081039080840390855afa15801561275a573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b0381166127835760006001925092505061278a565b9150600090505b94509492505050565b6000806001600160ff1b03831660ff84901c601b016127b4878288856126a6565b935093505050935093915050565b8280546127ce90612e6d565b90600052602060002090601f0160209004810192826127f05760008555612836565b82601f106128095782800160ff19823516178555612836565b82800160010185558215612836579182015b8281111561283657823582559160200191906001019061281b565b50610eaf9291505b80821115610eaf576000815560010161283e565b80356001600160a01b038116811461286957600080fd5b919050565b8035801515811461286957600080fd5b60008083601f84011261289057600080fd5b50813567ffffffffffffffff8111156128a857600080fd5b6020830191508360208285010111156124e457600080fd5b6000602082840312156128d257600080fd5b61245082612852565b600080604083850312156128ee57600080fd5b6128f783612852565b915061290560208401612852565b90509250929050565b60008060006060848603121561292357600080fd5b61292c84612852565b925061293a60208501612852565b9150604084013590509250925092565b6000806000806080858703121561296057600080fd5b61296985612852565b935061297760208601612852565b925060408501359150606085013567ffffffffffffffff8082111561299b57600080fd5b818701915087601f8301126129af57600080fd5b8135818111156129c1576129c1612f2f565b604051601f8201601f19908116603f011681019083821181831017156129e9576129e9612f2f565b816040528281528a6020848701011115612a0257600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b60008060408385031215612a3957600080fd5b612a4283612852565b91506129056020840161286e565b60008060408385031215612a6357600080fd5b612a6c83612852565b946020939093013593505050565b600060208284031215612a8c57600080fd5b6124508261286e565b600060208284031215612aa757600080fd5b813561245081612f45565b600060208284031215612ac457600080fd5b815161245081612f45565b60008060208385031215612ae257600080fd5b823567ffffffffffffffff811115612af957600080fd5b612b058582860161287e565b90969095509350505050565b600060208284031215612b2357600080fd5b5035919050565b600080600080600060608688031215612b4257600080fd5b85359450602086013567ffffffffffffffff80821115612b6157600080fd5b612b6d89838a0161287e565b90965094506040880135915080821115612b8657600080fd5b50612b938882890161287e565b969995985093965092949392505050565b60008151808452612bbc816020860160208601612e2a565b601f01601f19169290920160200192915050565b60008351612be2818460208801612e2a565b835190830190612bf6818360208801612e2a565b64173539b7b760d91b9101908152600501949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612c4290830184612ba4565b9695505050505050565b6060815283606082015283856080830137600060808583018101919091526001600160a01b039384166020830152919092166040830152601f909201601f19160101919050565b6020815260006124506020830184612ba4565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b60208082526027908201527f50756767793a20636f6e7472616374206973206e6f7420616c6c6f7765642074604082015266379036b4b73a1760c91b606082015260800190565b60006001600160801b03808316818516808303821115612d9757612d97612ed7565b01949350505050565b60008219821115612db357612db3612ed7565b500190565b600082612dc757612dc7612eed565b500490565b6000816000190483118215151615612de657612de6612ed7565b500290565b60006001600160801b0383811690831681811015612e0b57612e0b612ed7565b039392505050565b600082821015612e2557612e25612ed7565b500390565b60005b83811015612e45578181015183820152602001612e2d565b838111156114ae5750506000910152565b600081612e6557612e65612ed7565b506000190190565b600181811c90821680612e8157607f821691505b60208210811415612ea257634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612ebc57612ebc612ed7565b5060010190565b600082612ed257612ed2612eed565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052602160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461158657600080fdfea26469706673582212208d90c1289430af87f5cc187ac34f61aca3641030ce9cb97ec9cf639eaeb9523464736f6c63430008070033

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

0000000000000000000000000000000000000000000000000000000000000080000000000000000000000000a8ee9a4cbe22cea18155efe51d4b5345686773de00000000000000000000000000000000000000000000000000000000000000050000000000000000000000000000000000000000000000000000000000000d05000000000000000000000000000000000000000000000000000000000000002c68747470733a2f2f707567677973717561642d6e66742e73332e616d617a6f6e6177732e636f6d2f6170692f0000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : initBaseURI (string): https://puggysquad-nft.s3.amazonaws.com/api/
Arg [1] : signer (address): 0xA8eE9A4CBe22cEA18155eFE51D4b5345686773dE
Arg [2] : _maxBatchSize (uint256): 5
Arg [3] : _collectionSize (uint256): 3333

-----Encoded View---------------
7 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [1] : 000000000000000000000000a8ee9a4cbe22cea18155efe51d4b5345686773de
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000005
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000d05
Arg [4] : 000000000000000000000000000000000000000000000000000000000000002c
Arg [5] : 68747470733a2f2f707567677973717561642d6e66742e73332e616d617a6f6e
Arg [6] : 6177732e636f6d2f6170692f0000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

52987:4609:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39033:422;;;;;;;;;;-1:-1:-1;39033:422:0;;;;;:::i;:::-;;:::i;:::-;;;7883:14:1;;7876:22;7858:41;;7846:2;7831:18;39033:422:0;;;;;;;;40994:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;42689:292::-;;;;;;;;;;-1:-1:-1;42689:292:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;6902:32:1;;;6884:51;;6872:2;6857:18;42689:292:0;6738:203:1;42210:413:0;;;;;;;;;;-1:-1:-1;42210:413:0;;;;;:::i;:::-;;:::i;:::-;;37389:100;;;;;;;;;;-1:-1:-1;37442:7:0;37469:12;37389:100;;;23281:25:1;;;23269:2;23254:18;37389:100:0;23135:177:1;43716:162:0;;;;;;;;;;-1:-1:-1;43716:162:0;;;;;:::i;:::-;;:::i;56274:156::-;;;;;;;;;;-1:-1:-1;56274:156:0;;;;;:::i;:::-;;:::i;55426:589::-;;;;;;:::i;:::-;;:::i;38097:864::-;;;;;;;;;;-1:-1:-1;38097:864:0;;;;;:::i;:::-;;:::i;56754:117::-;;;;;;;;;;-1:-1:-1;56754:117:0;;;;;:::i;:::-;;:::i;53323:35::-;;;;;;;;;;-1:-1:-1;53323:35:0;;;;;;;;;;;56975:99;;;;;;;;;;-1:-1:-1;56975:99:0;;;;;:::i;:::-;;:::i;43949:177::-;;;;;;;;;;-1:-1:-1;43949:177:0;;;;;:::i;:::-;;:::i;37566:228::-;;;;;;;;;;-1:-1:-1;37566:228:0;;;;;:::i;:::-;;:::i;57082:106::-;;;;;;;;;;-1:-1:-1;57082:106:0;;;;;:::i;:::-;;:::i;40803:124::-;;;;;;;;;;-1:-1:-1;40803:124:0;;;;;:::i;:::-;;:::i;53078:21::-;;;;;;;;;;;;;:::i;39519:258::-;;;;;;;;;;-1:-1:-1;39519:258:0;;;;;:::i;:::-;;:::i;2522:103::-;;;;;;;;;;;;;:::i;53287:29::-;;;;;;;;;;-1:-1:-1;53287:29:0;;;;;;;;57298:106;;;;;;;;;;;;;:::i;53231:49::-;;;;;;;;;;;;;;;;1871:87;;;;;;;;;;-1:-1:-1;1944:6:0;;-1:-1:-1;;;;;1944:6:0;1871:87;;56879:86;;;;;;;;;;-1:-1:-1;56879:86:0;;;;;:::i;:::-;;:::i;56438:167::-;;;;;;;;;;-1:-1:-1;56438:167:0;;;;;:::i;:::-;;:::i;:::-;;;;23000:13:1;;-1:-1:-1;;;;;22996:39:1;22978:58;;23096:4;23084:17;;;23078:24;23104:18;23074:49;23052:20;;;23045:79;;;;22951:18;56438:167:0;22768:362:1;41163:104:0;;;;;;;;;;;;;:::i;54714:704::-;;;;;;:::i;:::-;;:::i;43053:311::-;;;;;;;;;;-1:-1:-1;43053:311:0;;;;;:::i;:::-;;:::i;53142:41::-;;;;;;;;;;;;;;;56643:103;;;;;;;;;;-1:-1:-1;56643:103:0;;;;;:::i;:::-;;:::i;44197:355::-;;;;;;;;;;-1:-1:-1;44197:355:0;;;;;:::i;:::-;;:::i;54524:180::-;;;;;;;;;;-1:-1:-1;54524:180:0;;;;;:::i;:::-;;:::i;53190:34::-;;;;;;;;;;;;;;;49078:43;;;;;;;;;;;;;;;;43435:214;;;;;;;;;;-1:-1:-1;43435:214:0;;;;;:::i;:::-;-1:-1:-1;;;;;43606:25:0;;;43577:4;43606:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;43435:214;2780:201;;;;;;;;;;-1:-1:-1;2780:201:0;;;;;:::i;:::-;;:::i;39033:422::-;39180:4;-1:-1:-1;;;;;;39222:40:0;;-1:-1:-1;;;39222:40:0;;:105;;-1:-1:-1;;;;;;;39279:48:0;;-1:-1:-1;;;39279:48:0;39222:105;:172;;;-1:-1:-1;;;;;;;39344:50:0;;-1:-1:-1;;;39344:50:0;39222:172;:225;;;-1:-1:-1;;;;;;;;;;7781:40:0;;;39411:36;39202:245;39033:422;-1:-1:-1;;39033:422:0:o;40994:100::-;41048:13;41081:5;41074:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40994:100;:::o;42689:292::-;42793:7;42840:16;42848:7;44864:4;44898:12;-1:-1:-1;44888:22:0;44807:111;42840:16;42818:111;;;;-1:-1:-1;;;42818:111:0;;22153:2:1;42818:111:0;;;22135:21:1;22192:2;22172:18;;;22165:30;22231:34;22211:18;;;22204:62;-1:-1:-1;;;22282:18:1;;;22275:43;22335:19;;42818:111:0;;;;;;;;;-1:-1:-1;42949:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;42949:24:0;;42689:292::o;42210:413::-;42283:13;42299:24;42315:7;42299:15;:24::i;:::-;42283:40;;42348:5;-1:-1:-1;;;;;42342:11:0;:2;-1:-1:-1;;;;;42342:11:0;;;42334:58;;;;-1:-1:-1;;;42334:58:0;;17869:2:1;42334:58:0;;;17851:21:1;17908:2;17888:18;;;17881:30;17947:34;17927:18;;;17920:62;-1:-1:-1;;;17998:18:1;;;17991:32;18040:19;;42334:58:0;17667:398:1;42334:58:0;736:10;-1:-1:-1;;;;;42427:21:0;;;;:62;;-1:-1:-1;42452:37:0;42469:5;736:10;43435:214;:::i;42452:37::-;42405:169;;;;-1:-1:-1;;;42405:169:0;;13193:2:1;42405:169:0;;;13175:21:1;13232:2;13212:18;;;13205:30;13271:34;13251:18;;;13244:62;13342:27;13322:18;;;13315:55;13387:19;;42405:169:0;12991:421:1;42405:169:0;42587:28;42596:2;42600:7;42609:5;42587:8;:28::i;:::-;42272:351;42210:413;;:::o;43716:162::-;43842:28;43852:4;43858:2;43862:7;43842:9;:28::i;56274:156::-;1944:6;;-1:-1:-1;;;;;1944:6:0;736:10;2091:23;2083:68;;;;-1:-1:-1;;;2083:68:0;;;;;;;:::i;:::-;5084:1:::1;5682:7;;:19;;5674:63;;;::::0;-1:-1:-1;;;5674:63:0;;21377:2:1;5674:63:0::1;::::0;::::1;21359:21:1::0;21416:2;21396:18;;;21389:30;21455:33;21435:18;;;21428:61;21506:18;;5674:63:0::1;21175:355:1::0;5674:63:0::1;5084:1;5815:7;:18:::0;56394:28:::2;56413:8:::0;56394:18:::2;:28::i;:::-;-1:-1:-1::0;5040:1:0::1;5994:7;:22:::0;56274:156::o;55426:589::-;55515:16;;;;;;;55514:17;55506:54;;;;-1:-1:-1;;;55506:54:0;;12437:2:1;55506:54:0;;;12419:21:1;12476:2;12456:18;;;12449:30;12515:26;12495:18;;;12488:54;12559:18;;55506:54:0;12235:348:1;55506:54:0;55579:9;55592:10;55579:23;55571:75;;;;-1:-1:-1;;;55571:75:0;;;;;;;:::i;:::-;55675:10;55665:21;;;;:9;:21;;;;;;55699:16;;55665:30;;55689:6;;55665:30;:::i;:::-;:50;;55657:100;;;;-1:-1:-1;;;55657:100:0;;15620:2:1;55657:100:0;;;15602:21:1;15659:2;15639:18;;;15632:30;15698:34;15678:18;;;15671:62;-1:-1:-1;;;15749:18:1;;;15742:35;15794:19;;55657:100:0;15418:401:1;55657:100:0;55803:9;55793:6;55777:13;37442:7;37469:12;;37389:100;55777:13;:22;;;;:::i;:::-;:35;;55769:75;;;;-1:-1:-1;;;55769:75:0;;10860:2:1;55769:75:0;;;10842:21:1;10899:2;10879:18;;;10872:30;10938:29;10918:18;;;10911:57;10985:18;;55769:75:0;10658:351:1;55769:75:0;55855:29;55865:10;55877:6;55855:9;:29::i;:::-;55895:28;55916:6;55908:5;;:14;;;;:::i;:::-;55895:12;:28::i;:::-;55944:10;55934:21;;;;:9;:21;;;;;:31;;55959:6;;55934:21;:31;;55959:6;;55934:31;:::i;:::-;;;;-1:-1:-1;;55981:26:0;;;55988:10;7613:51:1;;7695:2;7680:18;;7673:34;;;55981:26:0;;7586:18:1;55981:26:0;;;;;;;55426:589;:::o;38097:864::-;38222:7;38263:16;38273:5;38263:9;:16::i;:::-;38255:5;:24;38247:71;;;;-1:-1:-1;;;38247:71:0;;9690:2:1;38247:71:0;;;9672:21:1;9729:2;9709:18;;;9702:30;9768:34;9748:18;;;9741:62;-1:-1:-1;;;9819:18:1;;;9812:32;9861:19;;38247:71:0;9488:398:1;38247:71:0;38329:22;37469:12;;;38329:22;;38461:426;38485:14;38481:1;:18;38461:426;;;38521:31;38555:14;;;:11;:14;;;;;;;;;38521:48;;;;;;;;;-1:-1:-1;;;;;38521:48:0;;;;;-1:-1:-1;;;38521:48:0;;;;;;;;;;;;38588:28;38584:103;;38657:14;;;-1:-1:-1;38584:103:0;38726:5;-1:-1:-1;;;;;38705:26:0;:17;-1:-1:-1;;;;;38705:26:0;;38701:175;;;38771:5;38756:11;:20;38752:77;;;-1:-1:-1;38808:1:0;-1:-1:-1;38801:8:0;;-1:-1:-1;;;38801:8:0;38752:77;38847:13;;;;:::i;:::-;;;;38701:175;-1:-1:-1;38501:3:0;;;;:::i;:::-;;;;38461:426;;;-1:-1:-1;38897:56:0;;-1:-1:-1;;;38897:56:0;;20555:2:1;38897:56:0;;;20537:21:1;20594:2;20574:18;;;20567:30;20633:34;20613:18;;;20606:62;-1:-1:-1;;;20684:18:1;;;20677:44;20738:19;;38897:56:0;20353:410:1;56754:117:0;1944:6;;-1:-1:-1;;;;;1944:6:0;736:10;2091:23;2083:68;;;;-1:-1:-1;;;2083:68:0;;;;;;;:::i;:::-;56832:16:::1;:31:::0;;;::::1;;;;-1:-1:-1::0;;56832:31:0;;::::1;::::0;;;::::1;::::0;;56754:117::o;56975:99::-;1944:6;;-1:-1:-1;;;;;1944:6:0;736:10;2091:23;2083:68;;;;-1:-1:-1;;;2083:68:0;;;;;;;:::i;:::-;57047:7:::1;:19:::0;;-1:-1:-1;;;;;;57047:19:0::1;-1:-1:-1::0;;;;;57047:19:0;;;::::1;::::0;;;::::1;::::0;;56975:99::o;43949:177::-;44079:39;44096:4;44102:2;44106:7;44079:39;;;;;;;;;;;;:16;:39::i;37566:228::-;37669:7;37469:12;;37702:5;:21;37694:69;;;;-1:-1:-1;;;37694:69:0;;11627:2:1;37694:69:0;;;11609:21:1;11666:2;11646:18;;;11639:30;11705:34;11685:18;;;11678:62;-1:-1:-1;;;11756:18:1;;;11749:33;11799:19;;37694:69:0;11425:399:1;37694:69:0;-1:-1:-1;37781:5:0;37566:228::o;57082:106::-;1944:6;;-1:-1:-1;;;;;1944:6:0;736:10;2091:23;2083:68;;;;-1:-1:-1;;;2083:68:0;;;;;;;:::i;:::-;57160:20:::1;:7;57170:10:::0;;57160:20:::1;:::i;40803:124::-:0;40867:7;40894:20;40906:7;40894:11;:20::i;:::-;:25;;40803:124;-1:-1:-1;;40803:124:0:o;53078:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;39519:258::-;39583:7;-1:-1:-1;;;;;39625:19:0;;39603:112;;;;-1:-1:-1;;;39603:112:0;;13972:2:1;39603:112:0;;;13954:21:1;14011:2;13991:18;;;13984:30;14050:34;14030:18;;;14023:62;-1:-1:-1;;;14101:18:1;;;14094:41;14152:19;;39603:112:0;13770:407:1;39603:112:0;-1:-1:-1;;;;;;39741:19:0;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;39741:27:0;;39519:258::o;2522:103::-;1944:6;;-1:-1:-1;;;;;1944:6:0;736:10;2091:23;2083:68;;;;-1:-1:-1;;;2083:68:0;;;;;;;:::i;:::-;2587:30:::1;2614:1;2587:18;:30::i;:::-;2522:103::o:0;57298:106::-;1944:6;;-1:-1:-1;;;;;1944:6:0;736:10;2091:23;2083:68;;;;-1:-1:-1;;;2083:68:0;;;;;;;:::i;:::-;57351:45:::1;57362:10;57374:21;57351:10;:45::i;56879:86::-:0;1944:6;;-1:-1:-1;;;;;1944:6:0;736:10;2091:23;2083:68;;;;-1:-1:-1;;;2083:68:0;;;;;;;:::i;:::-;56943:5:::1;:14:::0;56879:86::o;56438:167::-;-1:-1:-1;;;;;;;;;;;;;;;;;56577:20:0;56589:7;56577:11;:20::i;41163:104::-;41219:13;41252:7;41245:14;;;;;:::i;54714:704::-;54862:10;;;;54861:11;54853:45;;;;-1:-1:-1;;;54853:45:0;;17519:2:1;54853:45:0;;;17501:21:1;17558:2;17538:18;;;17531:30;-1:-1:-1;;;17577:18:1;;;17570:51;17638:18;;54853:45:0;17317:345:1;54853:45:0;54917:9;54930:10;54917:23;54909:75;;;;-1:-1:-1;;;54909:75:0;;;;;;;:::i;:::-;55003:39;55011:23;55017:4;;55023:10;55011:5;:23::i;:::-;55036:5;;55003:39;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;55003:7:0;;-1:-1:-1;;;55003:39:0:i;:::-;54995:73;;;;-1:-1:-1;;;54995:73:0;;18272:2:1;54995:73:0;;;18254:21:1;18311:2;18291:18;;;18284:30;-1:-1:-1;;;18330:18:1;;;18323:51;18391:18;;54995:73:0;18070:345:1;54995:73:0;55097:10;55087:21;;;;:9;:21;;;;;;55121:16;;55087:30;;55111:6;;55087:30;:::i;:::-;:50;;55079:120;;;;-1:-1:-1;;;55079:120:0;;14787:2:1;55079:120:0;;;14769:21:1;14826:2;14806:18;;;14799:30;14865:34;14845:18;;;14838:62;14936:27;14916:18;;;14909:55;14981:19;;55079:120:0;14585:421:1;55079:120:0;55245:9;55235:6;55219:13;37442:7;37469:12;;37389:100;55219:13;:22;;;;:::i;:::-;:35;;55211:75;;;;-1:-1:-1;;;55211:75:0;;10860:2:1;55211:75:0;;;10842:21:1;10899:2;10879:18;;;10872:30;10938:29;10918:18;;;10911:57;10985:18;;55211:75:0;10658:351:1;55211:75:0;55297:29;55307:10;55319:6;55297:9;:29::i;:::-;55347:10;55337:21;;;;:9;:21;;;;;:31;;55362:6;;55337:21;:31;;55362:6;;55337:31;:::i;:::-;;;;-1:-1:-1;;55384:26:0;;;55391:10;7613:51:1;;7695:2;7680:18;;7673:34;;;55384:26:0;;7586:18:1;55384:26:0;;;;;;;54714:704;;;;;:::o;43053:311::-;-1:-1:-1;;;;;43171:24:0;;736:10;43171:24;;43163:63;;;;-1:-1:-1;;;43163:63:0;;16387:2:1;43163:63:0;;;16369:21:1;16426:2;16406:18;;;16399:30;16465:28;16445:18;;;16438:56;16511:18;;43163:63:0;16185:350:1;43163:63:0;736:10;43239:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;43239:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;43239:53:0;;;;;;;;;;43308:48;;7858:41:1;;;43239:42:0;;736:10;43308:48;;7831:18:1;43308:48:0;;;;;;;43053:311;;:::o;56643:103::-;1944:6;;-1:-1:-1;;;;;1944:6:0;736:10;2091:23;2083:68;;;;-1:-1:-1;;;2083:68:0;;;;;;;:::i;:::-;56714:10:::1;:24:::0;;-1:-1:-1;;56714:24:0::1;::::0;::::1;;::::0;;;::::1;::::0;;56643:103::o;44197:355::-;44356:28;44366:4;44372:2;44376:7;44356:9;:28::i;:::-;44417:48;44440:4;44446:2;44450:7;44459:5;44417:22;:48::i;:::-;44395:149;;;;-1:-1:-1;;;44395:149:0;;;;;;;:::i;:::-;44197:355;;;;:::o;54524:180::-;54590:13;54647:10;:8;:10::i;:::-;54659:26;54676:8;54659:16;:26::i;:::-;54630:65;;;;;;;;;:::i;:::-;;;;;;;;;;;;;54616:80;;54524:180;;;:::o;2780:201::-;1944:6;;-1:-1:-1;;;;;1944:6:0;736:10;2091:23;2083:68;;;;-1:-1:-1;;;2083:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;2869:22:0;::::1;2861:73;;;::::0;-1:-1:-1;;;2861:73:0;;10453:2:1;2861:73:0::1;::::0;::::1;10435:21:1::0;10492:2;10472:18;;;10465:30;10531:34;10511:18;;;10504:62;-1:-1:-1;;;10582:18:1;;;10575:36;10628:19;;2861:73:0::1;10251:402:1::0;2861:73:0::1;2945:28;2964:8;2945:18;:28::i;:::-;2780:201:::0;:::o;48874:196::-;48989:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;48989:29:0;-1:-1:-1;;;;;48989:29:0;;;;;;;;;49034:28;;48989:24;;49034:28;;;;;;;48874:196;;;:::o;47047:1709::-;47162:35;47200:20;47212:7;47200:11;:20::i;:::-;47275:18;;47162:58;;-1:-1:-1;47233:22:0;;-1:-1:-1;;;;;47259:34:0;736:10;-1:-1:-1;;;;;47259:34:0;;:87;;;-1:-1:-1;736:10:0;47310:20;47322:7;47310:11;:20::i;:::-;-1:-1:-1;;;;;47310:36:0;;47259:87;:154;;;-1:-1:-1;47380:18:0;;47363:50;;736:10;43435:214;:::i;47363:50::-;47233:181;;47449:17;47427:117;;;;-1:-1:-1;;;47427:117:0;;16742:2:1;47427:117:0;;;16724:21:1;16781:2;16761:18;;;16754:30;16820:34;16800:18;;;16793:62;-1:-1:-1;;;16871:18:1;;;16864:48;16929:19;;47427:117:0;16540:414:1;47427:117:0;47601:4;-1:-1:-1;;;;;47579:26:0;:13;:18;;;-1:-1:-1;;;;;47579:26:0;;47557:114;;;;-1:-1:-1;;;47557:114:0;;15213:2:1;47557:114:0;;;15195:21:1;15252:2;15232:18;;;15225:30;15291:34;15271:18;;;15264:62;-1:-1:-1;;;15342:18:1;;;15335:36;15388:19;;47557:114:0;15011:402:1;47557:114:0;-1:-1:-1;;;;;47690:16:0;;47682:66;;;;-1:-1:-1;;;47682:66:0;;12031:2:1;47682:66:0;;;12013:21:1;12070:2;12050:18;;;12043:30;12109:34;12089:18;;;12082:62;-1:-1:-1;;;12160:18:1;;;12153:35;12205:19;;47682:66:0;11829:401:1;47682:66:0;47869:49;47886:1;47890:7;47899:13;:18;;;47869:8;:49::i;:::-;-1:-1:-1;;;;;47931:18:0;;;;;;:12;:18;;;;;:31;;47961:1;;47931:18;:31;;47961:1;;-1:-1:-1;;;;;47931:31:0;;:::i;:::-;;;;;;;;-1:-1:-1;;;;;47931:31:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;47973:16:0;;-1:-1:-1;47973:16:0;;;:12;:16;;;;;:29;;-1:-1:-1;;;47973:16:0;;:29;;-1:-1:-1;;47973:29:0;;:::i;:::-;;;-1:-1:-1;;;;;47973:29:0;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;48036:43:0;;;;;;;;-1:-1:-1;;;;;48036:43:0;;;;;;48062:15;48036:43;;;;;;;;;-1:-1:-1;48013:20:0;;;:11;:20;;;;;;:66;;;;;;;;;-1:-1:-1;;;48013:66:0;-1:-1:-1;;;;;;48013:66:0;;;;;;;;;;;48341:11;48025:7;-1:-1:-1;48341:11:0;:::i;:::-;48408:1;48367:24;;;:11;:24;;;;;:29;48319:33;;-1:-1:-1;;;;;;48367:29:0;48363:288;;48431:20;48439:11;44864:4;44898:12;-1:-1:-1;44888:22:0;44807:111;48431:20;48427:213;;;48499:125;;;;;;;;48536:18;;-1:-1:-1;;;;;48499:125:0;;;;;;48577:28;;;;48499:125;;;;;;;;;;-1:-1:-1;48472:24:0;;;:11;:24;;;;;;;:152;;;;;;;;;-1:-1:-1;;;48472:152:0;-1:-1:-1;;;;;;48472:152:0;;;;;;;;;;;;48427:213;48687:7;48683:2;-1:-1:-1;;;;;48668:27:0;48677:4;-1:-1:-1;;;;;48668:27:0;;;;;;;;;;;48706:42;47151:1605;;;47047:1709;;;:::o;49234:950::-;49328:24;;49371:12;49363:49;;;;-1:-1:-1;;;49363:49:0;;13619:2:1;49363:49:0;;;13601:21:1;13658:2;13638:18;;;13631:30;13697:26;13677:18;;;13670:54;13741:18;;49363:49:0;13417:348:1;49363:49:0;49423:16;49473:1;49442:28;49462:8;49442:17;:28;:::i;:::-;:32;;;;:::i;:::-;49423:51;-1:-1:-1;49500:18:0;49517:1;49500:14;:18;:::i;:::-;49489:8;:29;49485:91;;;49546:18;49563:1;49546:14;:18;:::i;:::-;49535:29;;49485:91;49699:17;49707:8;44864:4;44898:12;-1:-1:-1;44888:22:0;44807:111;49699:17;49691:68;;;;-1:-1:-1;;;49691:68:0;;20970:2:1;49691:68:0;;;20952:21:1;21009:2;20989:18;;;20982:30;21048:34;21028:18;;;21021:62;-1:-1:-1;;;21099:18:1;;;21092:36;21145:19;;49691:68:0;20768:402:1;49691:68:0;49787:17;49770:357;49811:8;49806:1;:13;49770:357;;49876:1;49845:14;;;:11;:14;;;;;:19;-1:-1:-1;;;;;49845:19:0;49841:275;;49899:31;49933:14;49945:1;49933:11;:14::i;:::-;49983:117;;;;;;;;50020:14;;-1:-1:-1;;;;;49983:117:0;;;;;;50057:24;;;;49983:117;;;;;;;;;;-1:-1:-1;49966:14:0;;;:11;:14;;;;;;;:134;;;;;;;;;-1:-1:-1;;;49966:134:0;-1:-1:-1;;;;;;49966:134:0;;;;;;;;;;;;-1:-1:-1;49841:275:0;49821:3;;;;:::i;:::-;;;;49770:357;;;-1:-1:-1;50164:12:0;:8;50175:1;50164:12;:::i;:::-;50137:24;:39;-1:-1:-1;;;49234:950:0:o;44926:104::-;44995:27;45005:2;45009:8;44995:27;;;;;;;;;;;;:9;:27::i;:::-;44926:104;;:::o;56027:231::-;56104:5;56091:9;:18;;56083:60;;;;-1:-1:-1;;;56083:60:0;;17161:2:1;56083:60:0;;;17143:21:1;17200:2;17180:18;;;17173:30;17239:31;17219:18;;;17212:59;17288:18;;56083:60:0;16959:353:1;56083:60:0;56170:5;56158:9;:17;56154:97;;;56200:10;56192:47;56221:17;56233:5;56221:9;:17;:::i;:::-;56192:47;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40059:682;-1:-1:-1;;;;;;;;;;;;;;;;;40194:16:0;40202:7;44864:4;44898:12;-1:-1:-1;44888:22:0;44807:111;40194:16;40186:71;;;;-1:-1:-1;;;40186:71:0;;11216:2:1;40186:71:0;;;11198:21:1;11255:2;11235:18;;;11228:30;11294:34;11274:18;;;11267:62;-1:-1:-1;;;11345:18:1;;;11338:40;11395:19;;40186:71:0;11014:406:1;40186:71:0;40270:26;40322:12;40311:7;:23;40307:103;;40372:22;40382:12;40372:7;:22;:::i;:::-;:26;;40397:1;40372:26;:::i;:::-;40351:47;;40307:103;40442:7;40422:242;40459:18;40451:4;:26;40422:242;;40502:31;40536:17;;;:11;:17;;;;;;;;;40502:51;;;;;;;;;-1:-1:-1;;;;;40502:51:0;;;;;-1:-1:-1;;;40502:51:0;;;;;;;;;;;;40572:28;40568:85;;40628:9;40059:682;-1:-1:-1;;;;40059:682:0:o;40568:85::-;-1:-1:-1;40479:6:0;;;;:::i;:::-;;;;40422:242;;;-1:-1:-1;40676:57:0;;-1:-1:-1;;;40676:57:0;;21737:2:1;40676:57:0;;;21719:21:1;21776:2;21756:18;;;21749:30;21815:34;21795:18;;;21788:62;-1:-1:-1;;;21866:18:1;;;21859:45;21921:19;;40676:57:0;21535:411:1;3141:191:0;3234:6;;;-1:-1:-1;;;;;3251:17:0;;;-1:-1:-1;;;;;;3251:17:0;;;;;;;3284:40;;3234:6;;;3251:17;3234:6;;3284:40;;3215:16;;3284:40;3204:128;3141:191;:::o;57412:181::-;57487:12;57505:8;-1:-1:-1;;;;;57505:13:0;57526:7;57505:33;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;57486:52;;;57557:7;57549:36;;;;-1:-1:-1;;;57549:36:0;;18622:2:1;57549:36:0;;;18604:21:1;18661:2;18641:18;;;18634:30;-1:-1:-1;;;18680:18:1;;;18673:46;18736:18;;57549:36:0;18420:340:1;53837:197:0;53942:7;53995:4;;54009;54016:8;53984:41;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;53974:52;;;;;;53967:59;;53837:197;;;;;:::o;54042:172::-;54198:7;;54143:4;;-1:-1:-1;;;;;54198:7:0;54173:21;54182:4;54188:5;54173:8;:21::i;:::-;-1:-1:-1;;;;;54173:32:0;;;54042:172;-1:-1:-1;;;54042:172:0:o;50749:985::-;50904:4;-1:-1:-1;;;;;50925:13:0;;16400:20;16448:8;50921:806;;50978:175;;-1:-1:-1;;;50978:175:0;;-1:-1:-1;;;;;50978:36:0;;;;;:175;;736:10;;51072:4;;51099:7;;51129:5;;50978:175;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;50978:175:0;;;;;;;;-1:-1:-1;;50978:175:0;;;;;;;;;;;;:::i;:::-;;;50957:715;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;51340:13:0;;51336:321;;51383:109;;-1:-1:-1;;;51383:109:0;;;;;;;:::i;51336:321::-;51607:6;51601:13;51592:6;51588:2;51584:15;51577:38;50957:715;-1:-1:-1;;;;;;51217:55:0;-1:-1:-1;;;51217:55:0;;-1:-1:-1;51210:62:0;;50921:806;-1:-1:-1;51711:4:0;50921:806;50749:985;;;;;;:::o;54416:100::-;54468:13;54501:7;54494:14;;;;;:::i;23717:723::-;23773:13;23994:10;23990:53;;-1:-1:-1;;24021:10:0;;;;;;;;;;;;-1:-1:-1;;;24021:10:0;;;;;23717:723::o;23990:53::-;24068:5;24053:12;24109:78;24116:9;;24109:78;;24142:8;;;;:::i;:::-;;-1:-1:-1;24165:10:0;;-1:-1:-1;24173:2:0;24165:10;;:::i;:::-;;;24109:78;;;24197:19;24229:6;24219:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;24219:17:0;;24197:39;;24247:154;24254:10;;24247:154;;24281:11;24291:1;24281:11;;:::i;:::-;;-1:-1:-1;24350:10:0;24358:2;24350:5;:10;:::i;:::-;24337:24;;:2;:24;:::i;:::-;24324:39;;24307:6;24314;24307:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;24307:56:0;;;;;;;;-1:-1:-1;24378:11:0;24387:2;24378:11;;:::i;:::-;;;24247:154;;45393:1400;45516:20;45539:12;-1:-1:-1;;;;;45570:16:0;;45562:62;;;;-1:-1:-1;;;45562:62:0;;20153:2:1;45562:62:0;;;20135:21:1;20192:2;20172:18;;;20165:30;20231:34;20211:18;;;20204:62;-1:-1:-1;;;20282:18:1;;;20275:31;20323:19;;45562:62:0;19951:397:1;45562:62:0;45769:21;45777:12;44864:4;44898:12;-1:-1:-1;44888:22:0;44807:111;45769:21;45768:22;45760:64;;;;-1:-1:-1;;;45760:64:0;;19387:2:1;45760:64:0;;;19369:21:1;19426:2;19406:18;;;19399:30;19465:31;19445:18;;;19438:59;19514:18;;45760:64:0;19185:353:1;45760:64:0;45855:12;45843:8;:24;;45835:71;;;;-1:-1:-1;;;45835:71:0;;22567:2:1;45835:71:0;;;22549:21:1;22606:2;22586:18;;;22579:30;22645:34;22625:18;;;22618:62;-1:-1:-1;;;22696:18:1;;;22689:32;22738:19;;45835:71:0;22365:398:1;45835:71:0;-1:-1:-1;;;;;46026:16:0;;45993:30;46026:16;;;:12;:16;;;;;;;;;45993:49;;;;;;;;;-1:-1:-1;;;;;45993:49:0;;;;;-1:-1:-1;;;45993:49:0;;;;;;;;;;;46072:135;;;;;;;;46098:19;;45993:49;;46072:135;;;46098:39;;46128:8;;46098:39;:::i;:::-;-1:-1:-1;;;;;46072:135:0;;;;;46187:8;46152:11;:24;;;:44;;;;:::i;:::-;-1:-1:-1;;;;;46072:135:0;;;;;;-1:-1:-1;;;;;46053:16:0;;;;;;;:12;:16;;;;;;;;:154;;;;;;;;-1:-1:-1;;;46053:154:0;;;;;;;;;;;;46246:43;;;;;;;;;;;46272:15;46246:43;;;;;;;;46218:25;;;:11;:25;;;;;;:71;;;;;;;;;-1:-1:-1;;;46218:71:0;-1:-1:-1;;;;;;46218:71:0;;;;;;;;;;;;;;;;;;46230:12;;46350:325;46374:8;46370:1;:12;46350:325;;;46409:38;;46434:12;;-1:-1:-1;;;;;46409:38:0;;;46426:1;;46409:38;;46426:1;;46409:38;46488:59;46519:1;46523:2;46527:12;46541:5;46488:22;:59::i;:::-;46462:172;;;;-1:-1:-1;;;46462:172:0;;;;;;;:::i;:::-;46649:14;;;;:::i;:::-;;;;46384:3;;;;;:::i;:::-;;;;46350:325;;;-1:-1:-1;46687:12:0;:27;;;46725:60;44197:355;54222:186;54324:7;54356:44;54394:5;54356:29;:4;33862:58;;6385:66:1;33862:58:0;;;6373:79:1;6468:12;;;6461:28;;;33729:7:0;;6505:12:1;;33862:58:0;;;;;;;;;;;;33852:69;;;;;;33845:76;;33660:269;;;;54356:29;:37;;:44::i;:::-;54349:51;54222:186;-1:-1:-1;;;54222:186:0:o;29811:231::-;29889:7;29910:17;29929:18;29951:27;29962:4;29968:9;29951:10;:27::i;:::-;29909:69;;;;29989:18;30001:5;29989:11;:18::i;:::-;-1:-1:-1;30025:9:0;29811:231;-1:-1:-1;;;29811:231:0:o;27701:1308::-;27782:7;27791:12;28016:9;:16;28036:2;28016:22;28012:990;;;28312:4;28297:20;;28291:27;28362:4;28347:20;;28341:27;28420:4;28405:20;;28399:27;28055:9;28391:36;28463:25;28474:4;28391:36;28291:27;28341;28463:10;:25::i;:::-;28456:32;;;;;;;;;28012:990;28510:9;:16;28530:2;28510:22;28506:496;;;28785:4;28770:20;;28764:27;28836:4;28821:20;;28815:27;28878:23;28889:4;28764:27;28815;28878:10;:23::i;:::-;28871:30;;;;;;;;28506:496;-1:-1:-1;28950:1:0;;-1:-1:-1;28954:35:0;28506:496;27701:1308;;;;;:::o;25972:643::-;26050:20;26041:5;:29;;;;;;;;:::i;:::-;;26037:571;;;25972:643;:::o;26037:571::-;26148:29;26139:5;:38;;;;;;;;:::i;:::-;;26135:473;;;26194:34;;-1:-1:-1;;;26194:34:0;;9337:2:1;26194:34:0;;;9319:21:1;9376:2;9356:18;;;9349:30;9415:26;9395:18;;;9388:54;9459:18;;26194:34:0;9135:348:1;26135:473:0;26259:35;26250:5;:44;;;;;;;;:::i;:::-;;26246:362;;;26311:41;;-1:-1:-1;;;26311:41:0;;10093:2:1;26311:41:0;;;10075:21:1;10132:2;10112:18;;;10105:30;10171:33;10151:18;;;10144:61;10222:18;;26311:41:0;9891:355:1;26246:362:0;26383:30;26374:5;:39;;;;;;;;:::i;:::-;;26370:238;;;26430:44;;-1:-1:-1;;;26430:44:0;;12790:2:1;26430:44:0;;;12772:21:1;12829:2;12809:18;;;12802:30;12868:34;12848:18;;;12841:62;-1:-1:-1;;;12919:18:1;;;12912:32;12961:19;;26430:44:0;12588:398:1;26370:238:0;26505:30;26496:5;:39;;;;;;;;:::i;:::-;;26492:116;;;26552:44;;-1:-1:-1;;;26552:44:0;;14384:2:1;26552:44:0;;;14366:21:1;14423:2;14403:18;;;14396:30;14462:34;14442:18;;;14435:62;-1:-1:-1;;;14513:18:1;;;14506:32;14555:19;;26552:44:0;14182:398:1;31310:1632:0;31441:7;;32375:66;32362:79;;32358:163;;;-1:-1:-1;32474:1:0;;-1:-1:-1;32478:30:0;32458:51;;32358:163;32535:1;:7;;32540:2;32535:7;;:18;;;;;32546:1;:7;;32551:2;32546:7;;32535:18;32531:102;;;-1:-1:-1;32586:1:0;;-1:-1:-1;32590:30:0;32570:51;;32531:102;32747:24;;;32730:14;32747:24;;;;;;;;;8137:25:1;;;8210:4;8198:17;;8178:18;;;8171:45;;;;8232:18;;;8225:34;;;8275:18;;;8268:34;;;32747:24:0;;8109:19:1;;32747:24:0;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;32747:24:0;;-1:-1:-1;;32747:24:0;;;-1:-1:-1;;;;;;;32786:20:0;;32782:103;;32839:1;32843:29;32823:50;;;;;;;32782:103;32905:6;-1:-1:-1;32913:20:0;;-1:-1:-1;31310:1632:0;;;;;;;;:::o;30305:391::-;30419:7;;-1:-1:-1;;;;;30520:75:0;;30622:3;30618:12;;;30632:2;30614:21;30663:25;30674:4;30614:21;30683:1;30520:75;30663:10;:25::i;:::-;30656:32;;;;;;30305:391;;;;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14:173:1;82:20;;-1:-1:-1;;;;;131:31:1;;121:42;;111:70;;177:1;174;167:12;111:70;14:173;;;:::o;192:160::-;257:20;;313:13;;306:21;296:32;;286:60;;342:1;339;332:12;357:347;408:8;418:6;472:3;465:4;457:6;453:17;449:27;439:55;;490:1;487;480:12;439:55;-1:-1:-1;513:20:1;;556:18;545:30;;542:50;;;588:1;585;578:12;542:50;625:4;617:6;613:17;601:29;;677:3;670:4;661:6;653;649:19;645:30;642:39;639:59;;;694:1;691;684:12;709:186;768:6;821:2;809:9;800:7;796:23;792:32;789:52;;;837:1;834;827:12;789:52;860:29;879:9;860:29;:::i;900:260::-;968:6;976;1029:2;1017:9;1008:7;1004:23;1000:32;997:52;;;1045:1;1042;1035:12;997:52;1068:29;1087:9;1068:29;:::i;:::-;1058:39;;1116:38;1150:2;1139:9;1135:18;1116:38;:::i;:::-;1106:48;;900:260;;;;;:::o;1165:328::-;1242:6;1250;1258;1311:2;1299:9;1290:7;1286:23;1282:32;1279:52;;;1327:1;1324;1317:12;1279:52;1350:29;1369:9;1350:29;:::i;:::-;1340:39;;1398:38;1432:2;1421:9;1417:18;1398:38;:::i;:::-;1388:48;;1483:2;1472:9;1468:18;1455:32;1445:42;;1165:328;;;;;:::o;1498:1138::-;1593:6;1601;1609;1617;1670:3;1658:9;1649:7;1645:23;1641:33;1638:53;;;1687:1;1684;1677:12;1638:53;1710:29;1729:9;1710:29;:::i;:::-;1700:39;;1758:38;1792:2;1781:9;1777:18;1758:38;:::i;:::-;1748:48;;1843:2;1832:9;1828:18;1815:32;1805:42;;1898:2;1887:9;1883:18;1870:32;1921:18;1962:2;1954:6;1951:14;1948:34;;;1978:1;1975;1968:12;1948:34;2016:6;2005:9;2001:22;1991:32;;2061:7;2054:4;2050:2;2046:13;2042:27;2032:55;;2083:1;2080;2073:12;2032:55;2119:2;2106:16;2141:2;2137;2134:10;2131:36;;;2147:18;;:::i;:::-;2222:2;2216:9;2190:2;2276:13;;-1:-1:-1;;2272:22:1;;;2296:2;2268:31;2264:40;2252:53;;;2320:18;;;2340:22;;;2317:46;2314:72;;;2366:18;;:::i;:::-;2406:10;2402:2;2395:22;2441:2;2433:6;2426:18;2481:7;2476:2;2471;2467;2463:11;2459:20;2456:33;2453:53;;;2502:1;2499;2492:12;2453:53;2558:2;2553;2549;2545:11;2540:2;2532:6;2528:15;2515:46;2603:1;2598:2;2593;2585:6;2581:15;2577:24;2570:35;2624:6;2614:16;;;;;;;1498:1138;;;;;;;:::o;2641:254::-;2706:6;2714;2767:2;2755:9;2746:7;2742:23;2738:32;2735:52;;;2783:1;2780;2773:12;2735:52;2806:29;2825:9;2806:29;:::i;:::-;2796:39;;2854:35;2885:2;2874:9;2870:18;2854:35;:::i;2900:254::-;2968:6;2976;3029:2;3017:9;3008:7;3004:23;3000:32;2997:52;;;3045:1;3042;3035:12;2997:52;3068:29;3087:9;3068:29;:::i;:::-;3058:39;3144:2;3129:18;;;;3116:32;;-1:-1:-1;;;2900:254:1:o;3159:180::-;3215:6;3268:2;3256:9;3247:7;3243:23;3239:32;3236:52;;;3284:1;3281;3274:12;3236:52;3307:26;3323:9;3307:26;:::i;3344:245::-;3402:6;3455:2;3443:9;3434:7;3430:23;3426:32;3423:52;;;3471:1;3468;3461:12;3423:52;3510:9;3497:23;3529:30;3553:5;3529:30;:::i;3594:249::-;3663:6;3716:2;3704:9;3695:7;3691:23;3687:32;3684:52;;;3732:1;3729;3722:12;3684:52;3764:9;3758:16;3783:30;3807:5;3783:30;:::i;3848:410::-;3919:6;3927;3980:2;3968:9;3959:7;3955:23;3951:32;3948:52;;;3996:1;3993;3986:12;3948:52;4036:9;4023:23;4069:18;4061:6;4058:30;4055:50;;;4101:1;4098;4091:12;4055:50;4140:58;4190:7;4181:6;4170:9;4166:22;4140:58;:::i;:::-;4217:8;;4114:84;;-1:-1:-1;3848:410:1;-1:-1:-1;;;;3848:410:1:o;4263:180::-;4322:6;4375:2;4363:9;4354:7;4350:23;4346:32;4343:52;;;4391:1;4388;4381:12;4343:52;-1:-1:-1;4414:23:1;;4263:180;-1:-1:-1;4263:180:1:o;4448:786::-;4548:6;4556;4564;4572;4580;4633:2;4621:9;4612:7;4608:23;4604:32;4601:52;;;4649:1;4646;4639:12;4601:52;4685:9;4672:23;4662:33;;4746:2;4735:9;4731:18;4718:32;4769:18;4810:2;4802:6;4799:14;4796:34;;;4826:1;4823;4816:12;4796:34;4865:58;4915:7;4906:6;4895:9;4891:22;4865:58;:::i;:::-;4942:8;;-1:-1:-1;4839:84:1;-1:-1:-1;5030:2:1;5015:18;;5002:32;;-1:-1:-1;5046:16:1;;;5043:36;;;5075:1;5072;5065:12;5043:36;;5114:60;5166:7;5155:8;5144:9;5140:24;5114:60;:::i;:::-;4448:786;;;;-1:-1:-1;4448:786:1;;-1:-1:-1;5193:8:1;;5088:86;4448:786;-1:-1:-1;;;4448:786:1:o;5239:257::-;5280:3;5318:5;5312:12;5345:6;5340:3;5333:19;5361:63;5417:6;5410:4;5405:3;5401:14;5394:4;5387:5;5383:16;5361:63;:::i;:::-;5478:2;5457:15;-1:-1:-1;;5453:29:1;5444:39;;;;5485:4;5440:50;;5239:257;-1:-1:-1;;5239:257:1:o;5501:637::-;5781:3;5819:6;5813:13;5835:53;5881:6;5876:3;5869:4;5861:6;5857:17;5835:53;:::i;:::-;5951:13;;5910:16;;;;5973:57;5951:13;5910:16;6007:4;5995:17;;5973:57;:::i;:::-;-1:-1:-1;;;6052:20:1;;6081:22;;;6130:1;6119:13;;5501:637;-1:-1:-1;;;;5501:637:1:o;6946:488::-;-1:-1:-1;;;;;7215:15:1;;;7197:34;;7267:15;;7262:2;7247:18;;7240:43;7314:2;7299:18;;7292:34;;;7362:3;7357:2;7342:18;;7335:31;;;7140:4;;7383:45;;7408:19;;7400:6;7383:45;:::i;:::-;7375:53;6946:488;-1:-1:-1;;;;;;6946:488:1:o;8313:593::-;8528:2;8517:9;8510:21;8567:6;8562:2;8551:9;8547:18;8540:34;8625:6;8617;8611:3;8600:9;8596:19;8583:49;8682:1;8676:3;8652:22;;;8648:32;;8641:43;;;;-1:-1:-1;;;;;8832:15:1;;;8825:4;8810:20;;8803:45;8884:15;;;;8879:2;8864:18;;8857:43;8745:2;8724:15;;;-1:-1:-1;;8720:29:1;8705:45;8701:55;;;-1:-1:-1;8313:593:1:o;8911:219::-;9060:2;9049:9;9042:21;9023:4;9080:44;9120:2;9109:9;9105:18;9097:6;9080:44;:::i;15824:356::-;16026:2;16008:21;;;16045:18;;;16038:30;16104:34;16099:2;16084:18;;16077:62;16171:2;16156:18;;15824:356::o;18765:415::-;18967:2;18949:21;;;19006:2;18986:18;;;18979:30;19045:34;19040:2;19025:18;;19018:62;-1:-1:-1;;;19111:2:1;19096:18;;19089:49;19170:3;19155:19;;18765:415::o;19543:403::-;19745:2;19727:21;;;19784:2;19764:18;;;19757:30;19823:34;19818:2;19803:18;;19796:62;-1:-1:-1;;;19889:2:1;19874:18;;19867:37;19936:3;19921:19;;19543:403::o;23317:253::-;23357:3;-1:-1:-1;;;;;23446:2:1;23443:1;23439:10;23476:2;23473:1;23469:10;23507:3;23503:2;23499:12;23494:3;23491:21;23488:47;;;23515:18;;:::i;:::-;23551:13;;23317:253;-1:-1:-1;;;;23317:253:1:o;23575:128::-;23615:3;23646:1;23642:6;23639:1;23636:13;23633:39;;;23652:18;;:::i;:::-;-1:-1:-1;23688:9:1;;23575:128::o;23708:120::-;23748:1;23774;23764:35;;23779:18;;:::i;:::-;-1:-1:-1;23813:9:1;;23708:120::o;23833:168::-;23873:7;23939:1;23935;23931:6;23927:14;23924:1;23921:21;23916:1;23909:9;23902:17;23898:45;23895:71;;;23946:18;;:::i;:::-;-1:-1:-1;23986:9:1;;23833:168::o;24006:246::-;24046:4;-1:-1:-1;;;;;24159:10:1;;;;24129;;24181:12;;;24178:38;;;24196:18;;:::i;:::-;24233:13;;24006:246;-1:-1:-1;;;24006:246:1:o;24257:125::-;24297:4;24325:1;24322;24319:8;24316:34;;;24330:18;;:::i;:::-;-1:-1:-1;24367:9:1;;24257:125::o;24387:258::-;24459:1;24469:113;24483:6;24480:1;24477:13;24469:113;;;24559:11;;;24553:18;24540:11;;;24533:39;24505:2;24498:10;24469:113;;;24600:6;24597:1;24594:13;24591:48;;;-1:-1:-1;;24635:1:1;24617:16;;24610:27;24387:258::o;24650:136::-;24689:3;24717:5;24707:39;;24726:18;;:::i;:::-;-1:-1:-1;;;24762:18:1;;24650:136::o;24791:380::-;24870:1;24866:12;;;;24913;;;24934:61;;24988:4;24980:6;24976:17;24966:27;;24934:61;25041:2;25033:6;25030:14;25010:18;25007:38;25004:161;;;25087:10;25082:3;25078:20;25075:1;25068:31;25122:4;25119:1;25112:15;25150:4;25147:1;25140:15;25004:161;;24791:380;;;:::o;25176:135::-;25215:3;-1:-1:-1;;25236:17:1;;25233:43;;;25256:18;;:::i;:::-;-1:-1:-1;25303:1:1;25292:13;;25176:135::o;25316:112::-;25348:1;25374;25364:35;;25379:18;;:::i;:::-;-1:-1:-1;25413:9:1;;25316:112::o;25433:127::-;25494:10;25489:3;25485:20;25482:1;25475:31;25525:4;25522:1;25515:15;25549:4;25546:1;25539:15;25565:127;25626:10;25621:3;25617:20;25614:1;25607:31;25657:4;25654:1;25647:15;25681:4;25678:1;25671:15;25697:127;25758:10;25753:3;25749:20;25746:1;25739:31;25789:4;25786:1;25779:15;25813:4;25810:1;25803:15;25829:127;25890:10;25885:3;25881:20;25878:1;25871:31;25921:4;25918:1;25911:15;25945:4;25942:1;25935:15;25961:127;26022:10;26017:3;26013:20;26010:1;26003:31;26053:4;26050:1;26043:15;26077:4;26074:1;26067:15;26093:131;-1:-1:-1;;;;;;26167:32:1;;26157:43;;26147:71;;26214:1;26211;26204:12

Swarm Source

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