ETH Price: $3,057.64 (+2.53%)
Gas: 2 Gwei

Token

Puffy Paws Pack (PPP)
 

Overview

Max Total Supply

591 PPP

Holders

286

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
3 PPP
0xb209ce94d11d341e11ac5254271f06121a1dd804
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:
PuffyPaws

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-03-01
*/

// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;

//Developer Info:
//Written by Blockchainguy.net
//Email: [email protected]
//Instagram: @sheraz.manzoor

/**
 * @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;
    }
}
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);
    }
}
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);
            }
        }
    }
}
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);
}
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);
}
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() {
        _setOwner(_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 {
        _setOwner(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");
        _setOwner(newOwner);
    }

    function _setOwner(address newOwner) private {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}
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;
    }
}
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;
}
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);
}
interface IERC721Enumerable is IERC721 {
    /**
     * @dev Returns the total amount of tokens stored by the contract.
     */
    function totalSupply() external view returns (uint256);

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

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

error ApprovalCallerNotOwnerNorApproved();
error ApprovalQueryForNonexistentToken();
error ApproveToCaller();
error ApprovalToCurrentOwner();
error BalanceQueryForZeroAddress();
error MintedQueryForZeroAddress();
error BurnedQueryForZeroAddress();
error AuxQueryForZeroAddress();
error MintToZeroAddress();
error MintZeroQuantity();
error OwnerIndexOutOfBounds();
error OwnerQueryForNonexistentToken();
error TokenIndexOutOfBounds();
error TransferCallerNotOwnerNorApproved();
error TransferFromIncorrectOwner();
error TransferToNonERC721ReceiverImplementer();
error TransferToZeroAddress();
error URIQueryForNonexistentToken();

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

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

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

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

    /**
     * @dev See {IERC721Enumerable-totalSupply}.
     */
    function totalSupply() public view virtual returns (uint256) {
        // Counter underflow is impossible as _burnCounter cannot be incremented
        // more than _currentIndex times
        unchecked {
            return _currentIndex - _burnCounter;    
        }
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId, owner);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

            uint256 updatedIndex = startTokenId;

            for (uint256 i; i < quantity; i++) {
                emit Transfer(address(0), to, updatedIndex);
                if (safe && !_checkOnERC721Received(address(0), to, updatedIndex, _data)) {
                    revert TransferToNonERC721ReceiverImplementer();
                }
                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 ||
            isApprovedForAll(prevOwnership.addr, _msgSender()) ||
            getApproved(tokenId) == _msgSender());

        if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        if (prevOwnership.addr != from) revert TransferFromIncorrectOwner();
        if (to == address(0)) revert TransferToZeroAddress();

        _beforeTokenTransfers(from, to, tokenId, 1);

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

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

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

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

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

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

        _beforeTokenTransfers(prevOwnership.addr, address(0), tokenId, 1);

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

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

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

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

        emit Transfer(prevOwnership.addr, address(0), tokenId);
        _afterTokenTransfers(prevOwnership.addr, address(0), tokenId, 1);

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

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

    /**
     * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target 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 TransferToNonERC721ReceiverImplementer();
                } 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.
     * And also called before burning one token.
     *
     * startTokenId - the first token id to be transferred
     * quantity - the amount to be transferred
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be
     * transferred to `to`.
     * - When `from` is zero, `tokenId` will be minted for `to`.
     * - When `to` is zero, `tokenId` will be burned by `from`.
     * - `from` and `to` are never both zero.
     */
    function _beforeTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}

    /**
     * @dev Hook that is called after a set of serially-ordered token ids have been transferred. This includes
     * minting.
     * And also called after one token has been burned.
     *
     * startTokenId - the first token id to be transferred
     * quantity - the amount to be transferred
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, `from`'s `tokenId` has been
     * transferred to `to`.
     * - When `from` is zero, `tokenId` has been minted for `to`.
     * - When `to` is zero, `tokenId` has been burned by `from`.
     * - `from` and `to` are never both zero.
     */
    function _afterTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}
}
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 = vs & bytes32(0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff);
        uint8 v = uint8((uint256(vs) >> 255) + 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));
    }
}
abstract contract EIP712 {
    /* solhint-disable var-name-mixedcase */
    // Cache the domain separator as an immutable value, but also store the chain id that it corresponds to, in order to
    // invalidate the cached domain separator if the chain id changes.
    bytes32 private immutable _CACHED_DOMAIN_SEPARATOR;
    uint256 private immutable _CACHED_CHAIN_ID;
    address private immutable _CACHED_THIS;

    bytes32 private immutable _HASHED_NAME;
    bytes32 private immutable _HASHED_VERSION;
    bytes32 private immutable _TYPE_HASH;

    /* solhint-enable var-name-mixedcase */

    /**
     * @dev Initializes the domain separator and parameter caches.
     *
     * The meaning of `name` and `version` is specified in
     * https://eips.ethereum.org/EIPS/eip-712#definition-of-domainseparator[EIP 712]:
     *
     * - `name`: the user readable name of the signing domain, i.e. the name of the DApp or the protocol.
     * - `version`: the current major version of the signing domain.
     *
     * NOTE: These parameters cannot be changed except through a xref:learn::upgrading-smart-contracts.adoc[smart
     * contract upgrade].
     */
    constructor(string memory name, string memory version) {
        bytes32 hashedName = keccak256(bytes(name));
        bytes32 hashedVersion = keccak256(bytes(version));
        bytes32 typeHash = keccak256(
            "EIP712Domain(string name,string version,uint256 chainId,address verifyingContract)"
        );
        _HASHED_NAME = hashedName;
        _HASHED_VERSION = hashedVersion;
        _CACHED_CHAIN_ID = block.chainid;
        _CACHED_DOMAIN_SEPARATOR = _buildDomainSeparator(typeHash, hashedName, hashedVersion);
        _CACHED_THIS = address(this);
        _TYPE_HASH = typeHash;
    }

    /**
     * @dev Returns the domain separator for the current chain.
     */
    function _domainSeparatorV4() internal view returns (bytes32) {
        if (address(this) == _CACHED_THIS && block.chainid == _CACHED_CHAIN_ID) {
            return _CACHED_DOMAIN_SEPARATOR;
        } else {
            return _buildDomainSeparator(_TYPE_HASH, _HASHED_NAME, _HASHED_VERSION);
        }
    }

    function _buildDomainSeparator(
        bytes32 typeHash,
        bytes32 nameHash,
        bytes32 versionHash
    ) private view returns (bytes32) {
        return keccak256(abi.encode(typeHash, nameHash, versionHash, block.chainid, address(this)));
    }

    /**
     * @dev Given an already https://eips.ethereum.org/EIPS/eip-712#definition-of-hashstruct[hashed struct], this
     * function returns the hash of the fully encoded EIP712 message for this domain.
     *
     * This hash can be used together with {ECDSA-recover} to obtain the signer of a message. For example:
     *
     * ```solidity
     * bytes32 digest = _hashTypedDataV4(keccak256(abi.encode(
     *     keccak256("Mail(address to,string contents)"),
     *     mailTo,
     *     keccak256(bytes(mailContents))
     * )));
     * address signer = ECDSA.recover(digest, signature);
     * ```
     */
    function _hashTypedDataV4(bytes32 structHash) internal view virtual returns (bytes32) {
        return ECDSA.toTypedDataHash(_domainSeparatorV4(), structHash);
    }
}
interface IPuffyPaws{
        function sendMany(address _reciever, uint256 _count) external;
        function sendManyWL(address _reciever, uint256 _count, uint256 id, bytes memory signature) external;
        function setMinterFrom(address _to) external;
}
contract PuffyPaws is EIP712, Ownable, ERC721A, IPuffyPaws{
    modifier onlyMinter() {
        require(Minter == _msgSender(), "caller is not the minter");
        _;
    }
    string private constant SIGNING_DOMAIN = "WEB3CLUB";
    string private constant SIGNATURE_VERSION = "1";
    uint public maxSupply = 8888;
    string public baseURI = "https://puffyapi.vercel.app/puffy/nft/";
    address private Minter;
    bool private allowSetMinter = true;
    address private whitelistVerify = 0xbF3e689B25F460F695FC5a6715aA9c74de79e52F;
    mapping(uint => uint) public voucherIds;

    constructor() ERC721A("Puffy Paws Pack", "PPP") EIP712(SIGNING_DOMAIN, SIGNATURE_VERSION){}

    function sendGifts(address[] memory _wallets) external onlyOwner{
        require(totalSupply() + _wallets.length < maxSupply, "Max Supply Reached.");
        for(uint i = 0; i < _wallets.length; i++)
            _safeMint(_wallets[i], 1);
    }
    function sendMany(address _reciever, uint256 _count) external override onlyMinter{
            require(totalSupply() + _count < maxSupply, "Max Supply Reached.");
            _safeMint(_reciever, _count);
    }
    function sendManyWL(address _reciever, uint256 _count, uint256 id, bytes memory signature) external override onlyMinter{
            require(totalSupply() + _count < maxSupply, "Max Supply Reached.");
            require(check(id,signature) == whitelistVerify, "You are not whitelisted.");
            require(voucherIds[id] == 0, "Invalid Voucher. Try Again.");

            _safeMint(_reciever, _count);
            voucherIds[id] = 1;
    }
    function check(uint id, bytes memory signature) public view returns(address){
        return _verify(id, signature);
    }

    function _verify(uint id, bytes memory signature) internal view returns(address){
        bytes32 digest = _hash(id);
        return ECDSA.recover(digest, signature);
    }

    function _hash(uint id) internal view returns(bytes32){
        return _hashTypedDataV4(keccak256(abi.encode(
            keccak256("EIP712Domain(uint id)"),
            id
        )));
    }    
    function setBaseUri(string memory _uri) external onlyOwner {
        baseURI = _uri;
    }
    function setMinterFrom(address _to) override external{
        require(allowSetMinter, "Not Allowed.");
        Minter = _to;
        allowSetMinter = false;
    }
    function setAllowSetMinter(bool _temp) external onlyOwner{
        allowSetMinter = _temp;
    }    
    function setMinter(address _to) external onlyOwner{
        Minter = _to;
    }
    function setWhitelistVerify(address _to) external onlyOwner{
        whitelistVerify = _to;
    }
    function setMaxSupply(uint _temp) external onlyOwner{
        maxSupply = _temp;
    }

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

}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"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":"id","type":"uint256"},{"internalType":"bytes","name":"signature","type":"bytes"}],"name":"check","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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":"_wallets","type":"address[]"}],"name":"sendGifts","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_reciever","type":"address"},{"internalType":"uint256","name":"_count","type":"uint256"}],"name":"sendMany","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_reciever","type":"address"},{"internalType":"uint256","name":"_count","type":"uint256"},{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"bytes","name":"signature","type":"bytes"}],"name":"sendManyWL","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_temp","type":"bool"}],"name":"setAllowSetMinter","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":"_uri","type":"string"}],"name":"setBaseUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_temp","type":"uint256"}],"name":"setMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"}],"name":"setMinter","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"}],"name":"setMinterFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"}],"name":"setWhitelistVerify","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"voucherIds","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"}]

6122b86009556101a0604052602661014081815290620025966101603980516200003291600a9160209091019062000242565b50600b805460ff60a01b1916600160a01b179055600c80546001600160a01b03191673bf3e689b25f460f695fc5a6715aa9c74de79e52f1790553480156200007957600080fd5b50604080518082018252600f81526e50756666792050617773205061636b60881b60208083019190915282518084018452600381526205050560ec1b818301528351808501855260088152672ba2a119a1a62aa160c11b818401908152855180870190965260018652603160f81b93860193909352805190922060e08190527fc89efdaa54c0f20c7adf612882df0950f5a951637e0307cdcb4c672f298b8bc66101008190524660a052939491937f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f620001988184846040805160208101859052908101839052606081018290524660808201523060a082015260009060c0016040516020818303038152906040528051906020012090509392505050565b6080523060601b60c0526101205250620001be9250620001b89150503390565b620001f2565b8151620001d390600390602085019062000242565b508051620001e990600490602084019062000242565b50505062000325565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b8280546200025090620002e8565b90600052602060002090601f016020900481019282620002745760008555620002bf565b82601f106200028f57805160ff1916838001178555620002bf565b82800160010185558215620002bf579182015b82811115620002bf578251825591602001919060010190620002a2565b50620002cd929150620002d1565b5090565b5b80821115620002cd5760008155600101620002d2565b600181811c90821680620002fd57607f821691505b602082108114156200031f57634e487b7160e01b600052602260045260246000fd5b50919050565b60805160a05160c05160601c60e051610100516101205161221e620003786000396000611913015260006119620152600061193d01526000611896015260006118c0015260006118ea015261221e6000f3fe608060405234801561001057600080fd5b50600436106101da5760003560e01c80637c8255db11610104578063b88d4fde116100a2578063e57deb3911610071578063e57deb39146103e1578063e985e9c5146103f4578063f2fde38b14610430578063fca3b5aa1461044357600080fd5b8063b88d4fde1461039f578063c0263434146103b2578063c87b56dd146103c5578063d5abeb01146103d857600080fd5b806395d89b41116100de57806395d89b4114610351578063a0bcfc7f14610359578063a22cb4651461036c578063ab34ee4f1461037f57600080fd5b80637c8255db1461031a578063856141551461032d5780638da5cb5b1461034057600080fd5b806342842e0e1161017c5780636f8b44b01161014b5780636f8b44b0146102d957806370a08231146102ec578063715018a6146102ff5780637369d5a81461030757600080fd5b806342842e0e1461029857806344e97378146102ab5780636352211e146102be5780636c0360eb146102d157600080fd5b8063095ea7b3116101b8578063095ea7b314610247578063177b0a7f1461025c57806318160ddd1461026f57806323b872dd1461028557600080fd5b806301ffc9a7146101df57806306fdde0314610207578063081812fc1461021c575b600080fd5b6101f26101ed366004611e6d565b610456565b60405190151581526020015b60405180910390f35b61020f6104a8565b6040516101fe9190611fe6565b61022f61022a366004611eef565b61053a565b6040516001600160a01b0390911681526020016101fe565b61025a610255366004611d2d565b61057e565b005b61025a61026a366004611c12565b61060c565b600254600154035b6040519081526020016101fe565b61025a610293366004611c60565b61067a565b61025a6102a6366004611c60565b610685565b61025a6102b9366004611c12565b6106a0565b61022f6102cc366004611eef565b6106ec565b61020f6106fe565b61025a6102e7366004611eef565b61078c565b6102776102fa366004611c12565b6107bb565b61025a610809565b61025a610315366004611d2d565b61083f565b61025a610328366004611d9f565b6108da565b61025a61033b366004611d57565b610979565b6000546001600160a01b031661022f565b61020f610aef565b61025a610367366004611ea7565b610afe565b61025a61037a366004611d03565b610b3b565b61027761038d366004611eef565b600d6020526000908152604090205481565b61025a6103ad366004611c9c565b610bd1565b61025a6103c0366004611e52565b610c0b565b61020f6103d3366004611eef565b610c53565b61027760095481565b61022f6103ef366004611f08565b610cd8565b6101f2610402366004611c2d565b6001600160a01b03918216600090815260086020908152604080832093909416825291909152205460ff1690565b61025a61043e366004611c12565b610ce4565b61025a610451366004611c12565b610d7f565b60006001600160e01b031982166380ac58cd60e01b148061048757506001600160e01b03198216635b5e139f60e01b145b806104a257506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600380546104b7906120fa565b80601f01602080910402602001604051908101604052809291908181526020018280546104e3906120fa565b80156105305780601f1061050557610100808354040283529160200191610530565b820191906000526020600020905b81548152906001019060200180831161051357829003601f168201915b5050505050905090565b600061054582610dcb565b610562576040516333d1c03960e21b815260040160405180910390fd5b506000908152600760205260409020546001600160a01b031690565b6000610589826106ec565b9050806001600160a01b0316836001600160a01b031614156105be5760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b038216148015906105de57506105dc8133610402565b155b156105fc576040516367d9dca160e11b815260040160405180910390fd5b610607838383610df7565b505050565b600b54600160a01b900460ff166106595760405162461bcd60e51b815260206004820152600c60248201526b2737ba1020b63637bbb2b21760a11b60448201526064015b60405180910390fd5b600b80546001600160a81b0319166001600160a01b03909216919091179055565b610607838383610e53565b61060783838360405180602001604052806000815250610bd1565b6000546001600160a01b031633146106ca5760405162461bcd60e51b815260040161065090611ff9565b600c80546001600160a01b0319166001600160a01b0392909216919091179055565b60006106f782611067565b5192915050565b600a805461070b906120fa565b80601f0160208091040260200160405190810160405280929190818152602001828054610737906120fa565b80156107845780601f1061075957610100808354040283529160200191610784565b820191906000526020600020905b81548152906001019060200180831161076757829003601f168201915b505050505081565b6000546001600160a01b031633146107b65760405162461bcd60e51b815260040161065090611ff9565b600955565b60006001600160a01b0382166107e4576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600660205260409020546001600160401b031690565b6000546001600160a01b031633146108335760405162461bcd60e51b815260040161065090611ff9565b61083d6000611182565b565b600b546001600160a01b031633146108945760405162461bcd60e51b815260206004820152601860248201527731b0b63632b91034b9903737ba103a34329036b4b73a32b960411b6044820152606401610650565b600954816108a56002546001540390565b6108af919061208b565b106108cc5760405162461bcd60e51b81526004016106509061202e565b6108d682826111d2565b5050565b6000546001600160a01b031633146109045760405162461bcd60e51b815260040161065090611ff9565b60095481516002546001540361091a919061208b565b106109375760405162461bcd60e51b81526004016106509061202e565b60005b81518110156108d657610967828281518110610958576109586121a6565b602002602001015160016111d2565b8061097181612135565b91505061093a565b600b546001600160a01b031633146109ce5760405162461bcd60e51b815260206004820152601860248201527731b0b63632b91034b9903737ba103a34329036b4b73a32b960411b6044820152606401610650565b600954836109df6002546001540390565b6109e9919061208b565b10610a065760405162461bcd60e51b81526004016106509061202e565b600c546001600160a01b0316610a1c8383610cd8565b6001600160a01b031614610a725760405162461bcd60e51b815260206004820152601860248201527f596f7520617265206e6f742077686974656c69737465642e00000000000000006044820152606401610650565b6000828152600d602052604090205415610ace5760405162461bcd60e51b815260206004820152601b60248201527f496e76616c696420566f75636865722e2054727920416761696e2e00000000006044820152606401610650565b610ad884846111d2565b506000908152600d60205260409020600190555050565b6060600480546104b7906120fa565b6000546001600160a01b03163314610b285760405162461bcd60e51b815260040161065090611ff9565b80516108d690600a906020840190611ad6565b6001600160a01b038216331415610b655760405163b06307db60e01b815260040160405180910390fd5b3360008181526008602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610bdc848484610e53565b610be8848484846111ec565b610c05576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6000546001600160a01b03163314610c355760405162461bcd60e51b815260040161065090611ff9565b600b8054911515600160a01b0260ff60a01b19909216919091179055565b6060610c5e82610dcb565b610c7b57604051630a14c4b560e41b815260040160405180910390fd5b6000610c856112fb565b9050805160001415610ca65760405180602001604052806000815250610cd1565b80610cb08461130a565b604051602001610cc1929190611f7a565b6040516020818303038152906040525b9392505050565b6000610cd18383611407565b6000546001600160a01b03163314610d0e5760405162461bcd60e51b815260040161065090611ff9565b6001600160a01b038116610d735760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610650565b610d7c81611182565b50565b6000546001600160a01b03163314610da95760405162461bcd60e51b815260040161065090611ff9565b600b80546001600160a01b0319166001600160a01b0392909216919091179055565b6000600154821080156104a2575050600090815260056020526040902054600160e01b900460ff161590565b60008281526007602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000610e5e82611067565b80519091506000906001600160a01b0316336001600160a01b03161480610e8c57508151610e8c9033610402565b80610ea7575033610e9c8461053a565b6001600160a01b0316145b905080610ec757604051632ce44b5f60e11b815260040160405180910390fd5b846001600160a01b031682600001516001600160a01b031614610efc5760405162a1148160e81b815260040160405180910390fd5b6001600160a01b038416610f2357604051633a954ecd60e21b815260040160405180910390fd5b610f336000848460000151610df7565b6001600160a01b038581166000908152600660209081526040808320805467ffffffffffffffff198082166001600160401b0392831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600590945282852080546001600160e01b031916909417600160a01b42909216919091021790925590860180835291205490911661101d5760015481101561101d57825160008281526005602090815260409091208054918601516001600160401b0316600160a01b026001600160e01b03199092166001600160a01b03909316929092171790555b5082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b6040805160608101825260008082526020820181905291810191909152600154829081101561116957600081815260056020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff161515918101829052906111675780516001600160a01b0316156110fe579392505050565b5060001901600081815260056020908152604091829020825160608101845290546001600160a01b038116808352600160a01b82046001600160401b031693830193909352600160e01b900460ff1615159281019290925215611162579392505050565b6110fe565b505b604051636f96cda160e11b815260040160405180910390fd5b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6108d682826040518060200160405280600081525061141f565b60006001600160a01b0384163b156112ef57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611230903390899088908890600401611fa9565b602060405180830381600087803b15801561124a57600080fd5b505af192505050801561127a575060408051601f3d908101601f1916820190925261127791810190611e8a565b60015b6112d5573d8080156112a8576040519150601f19603f3d011682016040523d82523d6000602084013e6112ad565b606091505b5080516112cd576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506112f3565b5060015b949350505050565b6060600a80546104b7906120fa565b60608161132e5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611358578061134281612135565b91506113519050600a836120a3565b9150611332565b6000816001600160401b03811115611372576113726121bc565b6040519080825280601f01601f19166020018201604052801561139c576020820181803683370190505b5090505b84156112f3576113b16001836120b7565b91506113be600a86612150565b6113c990603061208b565b60f81b8183815181106113de576113de6121a6565b60200101906001600160f81b031916908160001a905350611400600a866120a3565b94506113a0565b6000806114138461142c565b90506112f38184611481565b61060783838360016114a5565b604080517f092b584b565f9711d79732cb738ace6cf7a206eb6277470732d92d8cc83ad27560208201529081018290526000906104a29060600160405160208183030381529060405280519060200120611610565b6000806000611490858561165e565b9150915061149d816116ce565b509392505050565b6001546001600160a01b0385166114ce57604051622e076360e81b815260040160405180910390fd5b836114ec5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260066020908152604080832080546fffffffffffffffffffffffffffffffff1981166001600160401b038083168c0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168c018116909202179091558584526005909252822080546001600160e01b031916909317600160a01b42909216919091021790915581905b858110156116075760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a48380156115dd57506115db60008884886111ec565b155b156115fb576040516368d2bf6b60e11b815260040160405180910390fd5b60019182019101611586565b50600155611060565b60006104a261161d611889565b8360405161190160f01b6020820152602281018390526042810182905260009060620160405160208183030381529060405280519060200120905092915050565b6000808251604114156116955760208301516040840151606085015160001a611689878285856119b0565b945094505050506116c7565b8251604014156116bf57602083015160408401516116b4868383611a9d565b9350935050506116c7565b506000905060025b9250929050565b60008160048111156116e2576116e2612190565b14156116eb5750565b60018160048111156116ff576116ff612190565b141561174d5760405162461bcd60e51b815260206004820152601860248201527f45434453413a20696e76616c6964207369676e617475726500000000000000006044820152606401610650565b600281600481111561176157611761612190565b14156117af5760405162461bcd60e51b815260206004820152601f60248201527f45434453413a20696e76616c6964207369676e6174757265206c656e677468006044820152606401610650565b60038160048111156117c3576117c3612190565b141561181c5760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202773272076616c604482015261756560f01b6064820152608401610650565b600481600481111561183057611830612190565b1415610d7c5760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202776272076616c604482015261756560f01b6064820152608401610650565b6000306001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000161480156118e257507f000000000000000000000000000000000000000000000000000000000000000046145b1561190c57507f000000000000000000000000000000000000000000000000000000000000000090565b50604080517f00000000000000000000000000000000000000000000000000000000000000006020808301919091527f0000000000000000000000000000000000000000000000000000000000000000828401527f000000000000000000000000000000000000000000000000000000000000000060608301524660808301523060a0808401919091528351808403909101815260c0909201909252805191012090565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a08311156119e75750600090506003611a94565b8460ff16601b141580156119ff57508460ff16601c14155b15611a105750600090506004611a94565b6040805160008082526020820180845289905260ff881692820192909252606081018690526080810185905260019060a0016020604051602081039080840390855afa158015611a64573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b038116611a8d57600060019250925050611a94565b9150600090505b94509492505050565b6000806001600160ff1b03831681611aba60ff86901c601b61208b565b9050611ac8878288856119b0565b935093505050935093915050565b828054611ae2906120fa565b90600052602060002090601f016020900481019282611b045760008555611b4a565b82601f10611b1d57805160ff1916838001178555611b4a565b82800160010185558215611b4a579182015b82811115611b4a578251825591602001919060010190611b2f565b50611b56929150611b5a565b5090565b5b80821115611b565760008155600101611b5b565b60006001600160401b03831115611b8857611b886121bc565b611b9b601f8401601f191660200161205b565b9050828152838383011115611baf57600080fd5b828260208301376000602084830101529392505050565b80356001600160a01b0381168114611bdd57600080fd5b919050565b80358015158114611bdd57600080fd5b600082601f830112611c0357600080fd5b610cd183833560208501611b6f565b600060208284031215611c2457600080fd5b610cd182611bc6565b60008060408385031215611c4057600080fd5b611c4983611bc6565b9150611c5760208401611bc6565b90509250929050565b600080600060608486031215611c7557600080fd5b611c7e84611bc6565b9250611c8c60208501611bc6565b9150604084013590509250925092565b60008060008060808587031215611cb257600080fd5b611cbb85611bc6565b9350611cc960208601611bc6565b92506040850135915060608501356001600160401b03811115611ceb57600080fd5b611cf787828801611bf2565b91505092959194509250565b60008060408385031215611d1657600080fd5b611d1f83611bc6565b9150611c5760208401611be2565b60008060408385031215611d4057600080fd5b611d4983611bc6565b946020939093013593505050565b60008060008060808587031215611d6d57600080fd5b611d7685611bc6565b9350602085013592506040850135915060608501356001600160401b03811115611ceb57600080fd5b60006020808385031215611db257600080fd5b82356001600160401b0380821115611dc957600080fd5b818501915085601f830112611ddd57600080fd5b813581811115611def57611def6121bc565b8060051b9150611e0084830161205b565b8181528481019084860184860187018a1015611e1b57600080fd5b600095505b83861015611e4557611e3181611bc6565b835260019590950194918601918601611e20565b5098975050505050505050565b600060208284031215611e6457600080fd5b610cd182611be2565b600060208284031215611e7f57600080fd5b8135610cd1816121d2565b600060208284031215611e9c57600080fd5b8151610cd1816121d2565b600060208284031215611eb957600080fd5b81356001600160401b03811115611ecf57600080fd5b8201601f81018413611ee057600080fd5b6112f384823560208401611b6f565b600060208284031215611f0157600080fd5b5035919050565b60008060408385031215611f1b57600080fd5b8235915060208301356001600160401b03811115611f3857600080fd5b611f4485828601611bf2565b9150509250929050565b60008151808452611f668160208601602086016120ce565b601f01601f19169290920160200192915050565b60008351611f8c8184602088016120ce565b835190830190611fa08183602088016120ce565b01949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611fdc90830184611f4e565b9695505050505050565b602081526000610cd16020830184611f4e565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526013908201527226b0bc1029bab838363c902932b0b1b432b21760691b604082015260600190565b604051601f8201601f191681016001600160401b0381118282101715612083576120836121bc565b604052919050565b6000821982111561209e5761209e612164565b500190565b6000826120b2576120b261217a565b500490565b6000828210156120c9576120c9612164565b500390565b60005b838110156120e95781810151838201526020016120d1565b83811115610c055750506000910152565b600181811c9082168061210e57607f821691505b6020821081141561212f57634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561214957612149612164565b5060010190565b60008261215f5761215f61217a565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052602160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610d7c57600080fdfea264697066735822122007e5544715e408b051ec48ad160b7c5b89ea16644d821de9fc50205ef15b730264736f6c6343000807003368747470733a2f2f70756666796170692e76657263656c2e6170702f70756666792f6e66742f

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101da5760003560e01c80637c8255db11610104578063b88d4fde116100a2578063e57deb3911610071578063e57deb39146103e1578063e985e9c5146103f4578063f2fde38b14610430578063fca3b5aa1461044357600080fd5b8063b88d4fde1461039f578063c0263434146103b2578063c87b56dd146103c5578063d5abeb01146103d857600080fd5b806395d89b41116100de57806395d89b4114610351578063a0bcfc7f14610359578063a22cb4651461036c578063ab34ee4f1461037f57600080fd5b80637c8255db1461031a578063856141551461032d5780638da5cb5b1461034057600080fd5b806342842e0e1161017c5780636f8b44b01161014b5780636f8b44b0146102d957806370a08231146102ec578063715018a6146102ff5780637369d5a81461030757600080fd5b806342842e0e1461029857806344e97378146102ab5780636352211e146102be5780636c0360eb146102d157600080fd5b8063095ea7b3116101b8578063095ea7b314610247578063177b0a7f1461025c57806318160ddd1461026f57806323b872dd1461028557600080fd5b806301ffc9a7146101df57806306fdde0314610207578063081812fc1461021c575b600080fd5b6101f26101ed366004611e6d565b610456565b60405190151581526020015b60405180910390f35b61020f6104a8565b6040516101fe9190611fe6565b61022f61022a366004611eef565b61053a565b6040516001600160a01b0390911681526020016101fe565b61025a610255366004611d2d565b61057e565b005b61025a61026a366004611c12565b61060c565b600254600154035b6040519081526020016101fe565b61025a610293366004611c60565b61067a565b61025a6102a6366004611c60565b610685565b61025a6102b9366004611c12565b6106a0565b61022f6102cc366004611eef565b6106ec565b61020f6106fe565b61025a6102e7366004611eef565b61078c565b6102776102fa366004611c12565b6107bb565b61025a610809565b61025a610315366004611d2d565b61083f565b61025a610328366004611d9f565b6108da565b61025a61033b366004611d57565b610979565b6000546001600160a01b031661022f565b61020f610aef565b61025a610367366004611ea7565b610afe565b61025a61037a366004611d03565b610b3b565b61027761038d366004611eef565b600d6020526000908152604090205481565b61025a6103ad366004611c9c565b610bd1565b61025a6103c0366004611e52565b610c0b565b61020f6103d3366004611eef565b610c53565b61027760095481565b61022f6103ef366004611f08565b610cd8565b6101f2610402366004611c2d565b6001600160a01b03918216600090815260086020908152604080832093909416825291909152205460ff1690565b61025a61043e366004611c12565b610ce4565b61025a610451366004611c12565b610d7f565b60006001600160e01b031982166380ac58cd60e01b148061048757506001600160e01b03198216635b5e139f60e01b145b806104a257506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600380546104b7906120fa565b80601f01602080910402602001604051908101604052809291908181526020018280546104e3906120fa565b80156105305780601f1061050557610100808354040283529160200191610530565b820191906000526020600020905b81548152906001019060200180831161051357829003601f168201915b5050505050905090565b600061054582610dcb565b610562576040516333d1c03960e21b815260040160405180910390fd5b506000908152600760205260409020546001600160a01b031690565b6000610589826106ec565b9050806001600160a01b0316836001600160a01b031614156105be5760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b038216148015906105de57506105dc8133610402565b155b156105fc576040516367d9dca160e11b815260040160405180910390fd5b610607838383610df7565b505050565b600b54600160a01b900460ff166106595760405162461bcd60e51b815260206004820152600c60248201526b2737ba1020b63637bbb2b21760a11b60448201526064015b60405180910390fd5b600b80546001600160a81b0319166001600160a01b03909216919091179055565b610607838383610e53565b61060783838360405180602001604052806000815250610bd1565b6000546001600160a01b031633146106ca5760405162461bcd60e51b815260040161065090611ff9565b600c80546001600160a01b0319166001600160a01b0392909216919091179055565b60006106f782611067565b5192915050565b600a805461070b906120fa565b80601f0160208091040260200160405190810160405280929190818152602001828054610737906120fa565b80156107845780601f1061075957610100808354040283529160200191610784565b820191906000526020600020905b81548152906001019060200180831161076757829003601f168201915b505050505081565b6000546001600160a01b031633146107b65760405162461bcd60e51b815260040161065090611ff9565b600955565b60006001600160a01b0382166107e4576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600660205260409020546001600160401b031690565b6000546001600160a01b031633146108335760405162461bcd60e51b815260040161065090611ff9565b61083d6000611182565b565b600b546001600160a01b031633146108945760405162461bcd60e51b815260206004820152601860248201527731b0b63632b91034b9903737ba103a34329036b4b73a32b960411b6044820152606401610650565b600954816108a56002546001540390565b6108af919061208b565b106108cc5760405162461bcd60e51b81526004016106509061202e565b6108d682826111d2565b5050565b6000546001600160a01b031633146109045760405162461bcd60e51b815260040161065090611ff9565b60095481516002546001540361091a919061208b565b106109375760405162461bcd60e51b81526004016106509061202e565b60005b81518110156108d657610967828281518110610958576109586121a6565b602002602001015160016111d2565b8061097181612135565b91505061093a565b600b546001600160a01b031633146109ce5760405162461bcd60e51b815260206004820152601860248201527731b0b63632b91034b9903737ba103a34329036b4b73a32b960411b6044820152606401610650565b600954836109df6002546001540390565b6109e9919061208b565b10610a065760405162461bcd60e51b81526004016106509061202e565b600c546001600160a01b0316610a1c8383610cd8565b6001600160a01b031614610a725760405162461bcd60e51b815260206004820152601860248201527f596f7520617265206e6f742077686974656c69737465642e00000000000000006044820152606401610650565b6000828152600d602052604090205415610ace5760405162461bcd60e51b815260206004820152601b60248201527f496e76616c696420566f75636865722e2054727920416761696e2e00000000006044820152606401610650565b610ad884846111d2565b506000908152600d60205260409020600190555050565b6060600480546104b7906120fa565b6000546001600160a01b03163314610b285760405162461bcd60e51b815260040161065090611ff9565b80516108d690600a906020840190611ad6565b6001600160a01b038216331415610b655760405163b06307db60e01b815260040160405180910390fd5b3360008181526008602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610bdc848484610e53565b610be8848484846111ec565b610c05576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6000546001600160a01b03163314610c355760405162461bcd60e51b815260040161065090611ff9565b600b8054911515600160a01b0260ff60a01b19909216919091179055565b6060610c5e82610dcb565b610c7b57604051630a14c4b560e41b815260040160405180910390fd5b6000610c856112fb565b9050805160001415610ca65760405180602001604052806000815250610cd1565b80610cb08461130a565b604051602001610cc1929190611f7a565b6040516020818303038152906040525b9392505050565b6000610cd18383611407565b6000546001600160a01b03163314610d0e5760405162461bcd60e51b815260040161065090611ff9565b6001600160a01b038116610d735760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610650565b610d7c81611182565b50565b6000546001600160a01b03163314610da95760405162461bcd60e51b815260040161065090611ff9565b600b80546001600160a01b0319166001600160a01b0392909216919091179055565b6000600154821080156104a2575050600090815260056020526040902054600160e01b900460ff161590565b60008281526007602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000610e5e82611067565b80519091506000906001600160a01b0316336001600160a01b03161480610e8c57508151610e8c9033610402565b80610ea7575033610e9c8461053a565b6001600160a01b0316145b905080610ec757604051632ce44b5f60e11b815260040160405180910390fd5b846001600160a01b031682600001516001600160a01b031614610efc5760405162a1148160e81b815260040160405180910390fd5b6001600160a01b038416610f2357604051633a954ecd60e21b815260040160405180910390fd5b610f336000848460000151610df7565b6001600160a01b038581166000908152600660209081526040808320805467ffffffffffffffff198082166001600160401b0392831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600590945282852080546001600160e01b031916909417600160a01b42909216919091021790925590860180835291205490911661101d5760015481101561101d57825160008281526005602090815260409091208054918601516001600160401b0316600160a01b026001600160e01b03199092166001600160a01b03909316929092171790555b5082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b6040805160608101825260008082526020820181905291810191909152600154829081101561116957600081815260056020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff161515918101829052906111675780516001600160a01b0316156110fe579392505050565b5060001901600081815260056020908152604091829020825160608101845290546001600160a01b038116808352600160a01b82046001600160401b031693830193909352600160e01b900460ff1615159281019290925215611162579392505050565b6110fe565b505b604051636f96cda160e11b815260040160405180910390fd5b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6108d682826040518060200160405280600081525061141f565b60006001600160a01b0384163b156112ef57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611230903390899088908890600401611fa9565b602060405180830381600087803b15801561124a57600080fd5b505af192505050801561127a575060408051601f3d908101601f1916820190925261127791810190611e8a565b60015b6112d5573d8080156112a8576040519150601f19603f3d011682016040523d82523d6000602084013e6112ad565b606091505b5080516112cd576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506112f3565b5060015b949350505050565b6060600a80546104b7906120fa565b60608161132e5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611358578061134281612135565b91506113519050600a836120a3565b9150611332565b6000816001600160401b03811115611372576113726121bc565b6040519080825280601f01601f19166020018201604052801561139c576020820181803683370190505b5090505b84156112f3576113b16001836120b7565b91506113be600a86612150565b6113c990603061208b565b60f81b8183815181106113de576113de6121a6565b60200101906001600160f81b031916908160001a905350611400600a866120a3565b94506113a0565b6000806114138461142c565b90506112f38184611481565b61060783838360016114a5565b604080517f092b584b565f9711d79732cb738ace6cf7a206eb6277470732d92d8cc83ad27560208201529081018290526000906104a29060600160405160208183030381529060405280519060200120611610565b6000806000611490858561165e565b9150915061149d816116ce565b509392505050565b6001546001600160a01b0385166114ce57604051622e076360e81b815260040160405180910390fd5b836114ec5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260066020908152604080832080546fffffffffffffffffffffffffffffffff1981166001600160401b038083168c0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168c018116909202179091558584526005909252822080546001600160e01b031916909317600160a01b42909216919091021790915581905b858110156116075760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a48380156115dd57506115db60008884886111ec565b155b156115fb576040516368d2bf6b60e11b815260040160405180910390fd5b60019182019101611586565b50600155611060565b60006104a261161d611889565b8360405161190160f01b6020820152602281018390526042810182905260009060620160405160208183030381529060405280519060200120905092915050565b6000808251604114156116955760208301516040840151606085015160001a611689878285856119b0565b945094505050506116c7565b8251604014156116bf57602083015160408401516116b4868383611a9d565b9350935050506116c7565b506000905060025b9250929050565b60008160048111156116e2576116e2612190565b14156116eb5750565b60018160048111156116ff576116ff612190565b141561174d5760405162461bcd60e51b815260206004820152601860248201527f45434453413a20696e76616c6964207369676e617475726500000000000000006044820152606401610650565b600281600481111561176157611761612190565b14156117af5760405162461bcd60e51b815260206004820152601f60248201527f45434453413a20696e76616c6964207369676e6174757265206c656e677468006044820152606401610650565b60038160048111156117c3576117c3612190565b141561181c5760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202773272076616c604482015261756560f01b6064820152608401610650565b600481600481111561183057611830612190565b1415610d7c5760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202776272076616c604482015261756560f01b6064820152608401610650565b6000306001600160a01b037f000000000000000000000000de191bfc5cad85c79e660d003cb500f776ef7e7e161480156118e257507f000000000000000000000000000000000000000000000000000000000000000146145b1561190c57507f677cba9acc0ffadd65778e2b8849821ac90c5cb33ebea6ed7d8181b12795583f90565b50604080517f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f6020808301919091527f7465fde7fb0420a03855c8bac7d7dd705d61d0241d0d293890335916e0da8ea2828401527fc89efdaa54c0f20c7adf612882df0950f5a951637e0307cdcb4c672f298b8bc660608301524660808301523060a0808401919091528351808403909101815260c0909201909252805191012090565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a08311156119e75750600090506003611a94565b8460ff16601b141580156119ff57508460ff16601c14155b15611a105750600090506004611a94565b6040805160008082526020820180845289905260ff881692820192909252606081018690526080810185905260019060a0016020604051602081039080840390855afa158015611a64573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b038116611a8d57600060019250925050611a94565b9150600090505b94509492505050565b6000806001600160ff1b03831681611aba60ff86901c601b61208b565b9050611ac8878288856119b0565b935093505050935093915050565b828054611ae2906120fa565b90600052602060002090601f016020900481019282611b045760008555611b4a565b82601f10611b1d57805160ff1916838001178555611b4a565b82800160010185558215611b4a579182015b82811115611b4a578251825591602001919060010190611b2f565b50611b56929150611b5a565b5090565b5b80821115611b565760008155600101611b5b565b60006001600160401b03831115611b8857611b886121bc565b611b9b601f8401601f191660200161205b565b9050828152838383011115611baf57600080fd5b828260208301376000602084830101529392505050565b80356001600160a01b0381168114611bdd57600080fd5b919050565b80358015158114611bdd57600080fd5b600082601f830112611c0357600080fd5b610cd183833560208501611b6f565b600060208284031215611c2457600080fd5b610cd182611bc6565b60008060408385031215611c4057600080fd5b611c4983611bc6565b9150611c5760208401611bc6565b90509250929050565b600080600060608486031215611c7557600080fd5b611c7e84611bc6565b9250611c8c60208501611bc6565b9150604084013590509250925092565b60008060008060808587031215611cb257600080fd5b611cbb85611bc6565b9350611cc960208601611bc6565b92506040850135915060608501356001600160401b03811115611ceb57600080fd5b611cf787828801611bf2565b91505092959194509250565b60008060408385031215611d1657600080fd5b611d1f83611bc6565b9150611c5760208401611be2565b60008060408385031215611d4057600080fd5b611d4983611bc6565b946020939093013593505050565b60008060008060808587031215611d6d57600080fd5b611d7685611bc6565b9350602085013592506040850135915060608501356001600160401b03811115611ceb57600080fd5b60006020808385031215611db257600080fd5b82356001600160401b0380821115611dc957600080fd5b818501915085601f830112611ddd57600080fd5b813581811115611def57611def6121bc565b8060051b9150611e0084830161205b565b8181528481019084860184860187018a1015611e1b57600080fd5b600095505b83861015611e4557611e3181611bc6565b835260019590950194918601918601611e20565b5098975050505050505050565b600060208284031215611e6457600080fd5b610cd182611be2565b600060208284031215611e7f57600080fd5b8135610cd1816121d2565b600060208284031215611e9c57600080fd5b8151610cd1816121d2565b600060208284031215611eb957600080fd5b81356001600160401b03811115611ecf57600080fd5b8201601f81018413611ee057600080fd5b6112f384823560208401611b6f565b600060208284031215611f0157600080fd5b5035919050565b60008060408385031215611f1b57600080fd5b8235915060208301356001600160401b03811115611f3857600080fd5b611f4485828601611bf2565b9150509250929050565b60008151808452611f668160208601602086016120ce565b601f01601f19169290920160200192915050565b60008351611f8c8184602088016120ce565b835190830190611fa08183602088016120ce565b01949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611fdc90830184611f4e565b9695505050505050565b602081526000610cd16020830184611f4e565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526013908201527226b0bc1029bab838363c902932b0b1b432b21760691b604082015260600190565b604051601f8201601f191681016001600160401b0381118282101715612083576120836121bc565b604052919050565b6000821982111561209e5761209e612164565b500190565b6000826120b2576120b261217a565b500490565b6000828210156120c9576120c9612164565b500390565b60005b838110156120e95781810151838201526020016120d1565b83811115610c055750506000910152565b600181811c9082168061210e57607f821691505b6020821081141561212f57634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561214957612149612164565b5060010190565b60008261215f5761215f61217a565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052602160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610d7c57600080fdfea264697066735822122007e5544715e408b051ec48ad160b7c5b89ea16644d821de9fc50205ef15b730264736f6c63430008070033

Deployed Bytecode Sourcemap

55356:2935:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25461:305;;;;;;:::i;:::-;;:::i;:::-;;;8068:14:1;;8061:22;8043:41;;8031:2;8016:18;25461:305:0;;;;;;;;28821:100;;;:::i;:::-;;;;;;;:::i;30324:204::-;;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;7366:32:1;;;7348:51;;7336:2;7321:18;30324:204:0;7202:203:1;29887:371:0;;;;;;:::i;:::-;;:::i;:::-;;57606:167;;;;;;:::i;:::-;;:::i;25110:279::-;25354:12;;25338:13;;:28;25110:279;;;13653:25:1;;;13641:2;13626:18;25110:279:0;13507:177:1;31181:170:0;;;;;;:::i;:::-;;:::i;31422:185::-;;;;;;:::i;:::-;;:::i;57974:99::-;;;;;;:::i;:::-;;:::i;28630:124::-;;;;;;:::i;:::-;;:::i;55686:64::-;;;:::i;58079:88::-;;;;;;:::i;:::-;;:::i;25830:206::-;;;;;;:::i;:::-;;:::i;14227:94::-;;;:::i;56312:213::-;;;;;;:::i;:::-;;:::i;56057:249::-;;;;;;:::i;:::-;;:::i;56531:450::-;;;;;;:::i;:::-;;:::i;13576:87::-;13622:7;13649:6;-1:-1:-1;;;;;13649:6:0;13576:87;;28990:104;;;:::i;57508:92::-;;;;;;:::i;:::-;;:::i;30600:279::-;;;;;;:::i;:::-;;:::i;55910:39::-;;;;;;:::i;:::-;;;;;;;;;;;;;;31678:342;;;;;;:::i;:::-;;:::i;57779:98::-;;;;;;:::i;:::-;;:::i;29165:318::-;;;;;;:::i;:::-;;:::i;55651:28::-;;;;;;56987:124;;;;;;:::i;:::-;;:::i;30950:164::-;;;;;;:::i;:::-;-1:-1:-1;;;;;31071:25:0;;;31047:4;31071:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;30950:164;14476:192;;;;;;:::i;:::-;;:::i;57887:81::-;;;;;;:::i;:::-;;:::i;25461:305::-;25563:4;-1:-1:-1;;;;;;25600:40:0;;-1:-1:-1;;;25600:40:0;;:105;;-1:-1:-1;;;;;;;25657:48:0;;-1:-1:-1;;;25657:48:0;25600:105;:158;;;-1:-1:-1;;;;;;;;;;15690:40:0;;;25722:36;25580:178;25461:305;-1:-1:-1;;25461:305:0:o;28821:100::-;28875:13;28908:5;28901:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28821:100;:::o;30324:204::-;30392:7;30417:16;30425:7;30417;:16::i;:::-;30412:64;;30442:34;;-1:-1:-1;;;30442:34:0;;;;;;;;;;;30412:64;-1:-1:-1;30496:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;30496:24:0;;30324:204::o;29887:371::-;29960:13;29976:24;29992:7;29976:15;:24::i;:::-;29960:40;;30021:5;-1:-1:-1;;;;;30015:11:0;:2;-1:-1:-1;;;;;30015:11:0;;30011:48;;;30035:24;;-1:-1:-1;;;30035:24:0;;;;;;;;;;;30011:48;796:10;-1:-1:-1;;;;;30076:21:0;;;;;;:63;;-1:-1:-1;30102:37:0;30119:5;796:10;30950:164;:::i;30102:37::-;30101:38;30076:63;30072:138;;;30163:35;;-1:-1:-1;;;30163:35:0;;;;;;;;;;;30072:138;30222:28;30231:2;30235:7;30244:5;30222:8;:28::i;:::-;29949:309;29887:371;;:::o;57606:167::-;57678:14;;-1:-1:-1;;;57678:14:0;;;;57670:39;;;;-1:-1:-1;;;57670:39:0;;10384:2:1;57670:39:0;;;10366:21:1;10423:2;10403:18;;;10396:30;-1:-1:-1;;;10442:18:1;;;10435:42;10494:18;;57670:39:0;;;;;;;;;57720:6;:12;;-1:-1:-1;;;;;;57743:22:0;-1:-1:-1;;;;;57720:12:0;;;57743:22;;;;;;57606:167::o;31181:170::-;31315:28;31325:4;31331:2;31335:7;31315:9;:28::i;31422:185::-;31560:39;31577:4;31583:2;31587:7;31560:39;;;;;;;;;;;;:16;:39::i;57974:99::-;13622:7;13649:6;-1:-1:-1;;;;;13649:6:0;796:10;13796:23;13788:68;;;;-1:-1:-1;;;13788:68:0;;;;;;;:::i;:::-;58044:15:::1;:21:::0;;-1:-1:-1;;;;;;58044:21:0::1;-1:-1:-1::0;;;;;58044:21:0;;;::::1;::::0;;;::::1;::::0;;57974:99::o;28630:124::-;28694:7;28721:20;28733:7;28721:11;:20::i;:::-;:25;;28630:124;-1:-1:-1;;28630:124:0:o;55686:64::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;58079:88::-;13622:7;13649:6;-1:-1:-1;;;;;13649:6:0;796:10;13796:23;13788:68;;;;-1:-1:-1;;;13788:68:0;;;;;;;:::i;:::-;58142:9:::1;:17:::0;58079:88::o;25830:206::-;25894:7;-1:-1:-1;;;;;25918:19:0;;25914:60;;25946:28;;-1:-1:-1;;;25946:28:0;;;;;;;;;;;25914:60;-1:-1:-1;;;;;;26000:19:0;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;26000:27:0;;25830:206::o;14227:94::-;13622:7;13649:6;-1:-1:-1;;;;;13649:6:0;796:10;13796:23;13788:68;;;;-1:-1:-1;;;13788:68:0;;;;;;;:::i;:::-;14292:21:::1;14310:1;14292:9;:21::i;:::-;14227:94::o:0;56312:213::-;55462:6;;-1:-1:-1;;;;;55462:6:0;796:10;55462:22;55454:59;;;;-1:-1:-1;;;55454:59:0;;11938:2:1;55454:59:0;;;11920:21:1;11977:2;11957:18;;;11950:30;-1:-1:-1;;;11996:18:1;;;11989:54;12060:18;;55454:59:0;11736:348:1;55454:59:0;56441:9:::1;;56432:6;56416:13;25354:12:::0;;25338:13;;:28;;25110:279;56416:13:::1;:22;;;;:::i;:::-;:34;56408:66;;;;-1:-1:-1::0;;;56408:66:0::1;;;;;;;:::i;:::-;56489:28;56499:9;56510:6;56489:9;:28::i;:::-;56312:213:::0;;:::o;56057:249::-;13622:7;13649:6;-1:-1:-1;;;;;13649:6:0;796:10;13796:23;13788:68;;;;-1:-1:-1;;;13788:68:0;;;;;;;:::i;:::-;56174:9:::1;::::0;56156:15;;25354:12;;25338:13;;:28;56140:31:::1;;;;:::i;:::-;:43;56132:75;;;;-1:-1:-1::0;;;56132:75:0::1;;;;;;;:::i;:::-;56222:6;56218:80;56238:8;:15;56234:1;:19;56218:80;;;56273:25;56283:8;56292:1;56283:11;;;;;;;;:::i;:::-;;;;;;;56296:1;56273:9;:25::i;:::-;56255:3:::0;::::1;::::0;::::1;:::i;:::-;;;;56218:80;;56531:450:::0;55462:6;;-1:-1:-1;;;;;55462:6:0;796:10;55462:22;55454:59;;;;-1:-1:-1;;;55454:59:0;;11938:2:1;55454:59:0;;;11920:21:1;11977:2;11957:18;;;11950:30;-1:-1:-1;;;11996:18:1;;;11989:54;12060:18;;55454:59:0;11736:348:1;55454:59:0;56698:9:::1;;56689:6;56673:13;25354:12:::0;;25338:13;;:28;;25110:279;56673:13:::1;:22;;;;:::i;:::-;:34;56665:66;;;;-1:-1:-1::0;;;56665:66:0::1;;;;;;;:::i;:::-;56777:15;::::0;-1:-1:-1;;;;;56777:15:0::1;56754:19;56760:2:::0;56763:9;56754:5:::1;:19::i;:::-;-1:-1:-1::0;;;;;56754:38:0::1;;56746:75;;;::::0;-1:-1:-1;;;56746:75:0;;13008:2:1;56746:75:0::1;::::0;::::1;12990:21:1::0;13047:2;13027:18;;;13020:30;13086:26;13066:18;;;13059:54;13130:18;;56746:75:0::1;12806:348:1::0;56746:75:0::1;56844:14;::::0;;;:10:::1;:14;::::0;;;;;:19;56836:59:::1;;;::::0;-1:-1:-1;;;56836:59:0;;12652:2:1;56836:59:0::1;::::0;::::1;12634:21:1::0;12691:2;12671:18;;;12664:30;12730:29;12710:18;;;12703:57;12777:18;;56836:59:0::1;12450:351:1::0;56836:59:0::1;56912:28;56922:9;56933:6;56912:9;:28::i;:::-;-1:-1:-1::0;56955:14:0::1;::::0;;;:10:::1;:14;::::0;;;;56972:1:::1;56955:18:::0;;-1:-1:-1;;56531:450:0:o;28990:104::-;29046:13;29079:7;29072:14;;;;;:::i;57508:92::-;13622:7;13649:6;-1:-1:-1;;;;;13649:6:0;796:10;13796:23;13788:68;;;;-1:-1:-1;;;13788:68:0;;;;;;;:::i;:::-;57578:14;;::::1;::::0;:7:::1;::::0;:14:::1;::::0;::::1;::::0;::::1;:::i;30600:279::-:0;-1:-1:-1;;;;;30691:24:0;;796:10;30691:24;30687:54;;;30724:17;;-1:-1:-1;;;30724:17:0;;;;;;;;;;;30687:54;796:10;30754:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;30754:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;30754:53:0;;;;;;;;;;30823:48;;8043:41:1;;;30754:42:0;;796:10;30823:48;;8016:18:1;30823:48:0;;;;;;;30600:279;;:::o;31678:342::-;31845:28;31855:4;31861:2;31865:7;31845:9;:28::i;:::-;31889:48;31912:4;31918:2;31922:7;31931:5;31889:22;:48::i;:::-;31884:129;;31961:40;;-1:-1:-1;;;31961:40:0;;;;;;;;;;;31884:129;31678:342;;;;:::o;57779:98::-;13622:7;13649:6;-1:-1:-1;;;;;13649:6:0;796:10;13796:23;13788:68;;;;-1:-1:-1;;;13788:68:0;;;;;;;:::i;:::-;57847:14:::1;:22:::0;;;::::1;;-1:-1:-1::0;;;57847:22:0::1;-1:-1:-1::0;;;;57847:22:0;;::::1;::::0;;;::::1;::::0;;57779:98::o;29165:318::-;29238:13;29269:16;29277:7;29269;:16::i;:::-;29264:59;;29294:29;;-1:-1:-1;;;29294:29:0;;;;;;;;;;;29264:59;29336:21;29360:10;:8;:10::i;:::-;29336:34;;29394:7;29388:21;29413:1;29388:26;;:87;;;;;;;;;;;;;;;;;29441:7;29450:18;:7;:16;:18::i;:::-;29424:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;29388:87;29381:94;29165:318;-1:-1:-1;;;29165:318:0:o;56987:124::-;57055:7;57081:22;57089:2;57093:9;57081:7;:22::i;14476:192::-;13622:7;13649:6;-1:-1:-1;;;;;13649:6:0;796:10;13796:23;13788:68;;;;-1:-1:-1;;;13788:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;14565:22:0;::::1;14557:73;;;::::0;-1:-1:-1;;;14557:73:0;;10725:2:1;14557:73:0::1;::::0;::::1;10707:21:1::0;10764:2;10744:18;;;10737:30;10803:34;10783:18;;;10776:62;-1:-1:-1;;;10854:18:1;;;10847:36;10900:19;;14557:73:0::1;10523:402:1::0;14557:73:0::1;14641:19;14651:8;14641:9;:19::i;:::-;14476:192:::0;:::o;57887:81::-;13622:7;13649:6;-1:-1:-1;;;;;13649:6:0;796:10;13796:23;13788:68;;;;-1:-1:-1;;;13788:68:0;;;;;;;:::i;:::-;57948:6:::1;:12:::0;;-1:-1:-1;;;;;;57948:12:0::1;-1:-1:-1::0;;;;;57948:12:0;;;::::1;::::0;;;::::1;::::0;;57887:81::o;32275:144::-;32332:4;32366:13;;32356:7;:23;:55;;;;-1:-1:-1;;32384:20:0;;;;:11;:20;;;;;:27;-1:-1:-1;;;32384:27:0;;;;32383:28;;32275:144::o;39481:196::-;39596:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;39596:29:0;-1:-1:-1;;;;;39596:29:0;;;;;;;;;39641:28;;39596:24;;39641:28;;;;;;;39481:196;;;:::o;34982:2112::-;35097:35;35135:20;35147:7;35135:11;:20::i;:::-;35210:18;;35097:58;;-1:-1:-1;35168:22:0;;-1:-1:-1;;;;;35194:34:0;796:10;-1:-1:-1;;;;;35194:34:0;;:101;;;-1:-1:-1;35262:18:0;;35245:50;;796:10;30950:164;:::i;35245:50::-;35194:154;;;-1:-1:-1;796:10:0;35312:20;35324:7;35312:11;:20::i;:::-;-1:-1:-1;;;;;35312:36:0;;35194:154;35168:181;;35367:17;35362:66;;35393:35;;-1:-1:-1;;;35393:35:0;;;;;;;;;;;35362:66;35465:4;-1:-1:-1;;;;;35443:26:0;:13;:18;;;-1:-1:-1;;;;;35443:26:0;;35439:67;;35478:28;;-1:-1:-1;;;35478:28:0;;;;;;;;;;;35439:67;-1:-1:-1;;;;;35521:16:0;;35517:52;;35546:23;;-1:-1:-1;;;35546:23:0;;;;;;;;;;;35517:52;35690:49;35707:1;35711:7;35720:13;:18;;;35690:8;:49::i;:::-;-1:-1:-1;;;;;36035:18:0;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;36035:31:0;;;-1:-1:-1;;;;;36035:31:0;;;-1:-1:-1;;36035:31:0;;;;;;;36081:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;36081:29:0;;;;;;;;;;;36127:20;;;:11;:20;;;;;;:30;;-1:-1:-1;;;;;;36172:61:0;;;;-1:-1:-1;;;36217:15:0;36172:61;;;;;;;;;;;36507:11;;;36537:24;;;;;:29;36507:11;;36537:29;36533:445;;36762:13;;36748:11;:27;36744:219;;;36832:18;;;36800:24;;;:11;:24;;;;;;;;:50;;36915:28;;;;-1:-1:-1;;;;;36873:70:0;-1:-1:-1;;;36873:70:0;-1:-1:-1;;;;;;36873:70:0;;;-1:-1:-1;;;;;36800:50:0;;;36873:70;;;;;;;36744:219;36010:979;37025:7;37021:2;-1:-1:-1;;;;;37006:27:0;37015:4;-1:-1:-1;;;;;37006:27:0;;;;;;;;;;;37044:42;35086:2008;;34982:2112;;;:::o;27485:1083::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;27651:13:0;;27595:7;;27644:20;;27640:861;;;27685:31;27719:17;;;:11;:17;;;;;;;;;27685:51;;;;;;;;;-1:-1:-1;;;;;27685:51:0;;;;-1:-1:-1;;;27685:51:0;;-1:-1:-1;;;;;27685:51:0;;;;;;;;-1:-1:-1;;;27685:51:0;;;;;;;;;;;;;;27755:731;;27805:14;;-1:-1:-1;;;;;27805:28:0;;27801:101;;27869:9;27485:1083;-1:-1:-1;;;27485:1083:0:o;27801:101::-;-1:-1:-1;;;28246:6:0;28291:17;;;;:11;:17;;;;;;;;;28279:29;;;;;;;;;-1:-1:-1;;;;;28279:29:0;;;;;-1:-1:-1;;;28279:29:0;;-1:-1:-1;;;;;28279:29:0;;;;;;;;-1:-1:-1;;;28279:29:0;;;;;;;;;;;;;28339:28;28335:109;;28407:9;27485:1083;-1:-1:-1;;;27485:1083:0:o;28335:109::-;28206:261;;;27666:835;27640:861;28529:31;;-1:-1:-1;;;28529:31:0;;;;;;;;;;;14676:173;14732:16;14751:6;;-1:-1:-1;;;;;14768:17:0;;;-1:-1:-1;;;;;;14768:17:0;;;;;;14801:40;;14751:6;;;;;;;14801:40;;14732:16;14801:40;14721:128;14676:173;:::o;32427:104::-;32496:27;32506:2;32510:8;32496:27;;;;;;;;;;;;:9;:27::i;40242:790::-;40397:4;-1:-1:-1;;;;;40418:13:0;;3969:20;4017:8;40414:611;;40454:72;;-1:-1:-1;;;40454:72:0;;-1:-1:-1;;;;;40454:36:0;;;;;:72;;796:10;;40505:4;;40511:7;;40520:5;;40454:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;40454:72:0;;;;;;;;-1:-1:-1;;40454:72:0;;;;;;;;;;;;:::i;:::-;;;40450:520;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;40700:13:0;;40696:259;;40750:40;;-1:-1:-1;;;40750:40:0;;;;;;;;;;;40696:259;40905:6;40899:13;40890:6;40886:2;40882:15;40875:38;40450:520;-1:-1:-1;;;;;;40577:55:0;-1:-1:-1;;;40577:55:0;;-1:-1:-1;40570:62:0;;40414:611;-1:-1:-1;41009:4:0;40414:611;40242:790;;;;;;:::o;58175:108::-;58235:13;58268:7;58261:14;;;;;:::i;1181:723::-;1237:13;1458:10;1454:53;;-1:-1:-1;;1485:10:0;;;;;;;;;;;;-1:-1:-1;;;1485:10:0;;;;;1181:723::o;1454:53::-;1532:5;1517:12;1573:78;1580:9;;1573:78;;1606:8;;;;:::i;:::-;;-1:-1:-1;1629:10:0;;-1:-1:-1;1637:2:0;1629:10;;:::i;:::-;;;1573:78;;;1661:19;1693:6;-1:-1:-1;;;;;1683:17:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;1683:17:0;;1661:39;;1711:154;1718:10;;1711:154;;1745:11;1755:1;1745:11;;:::i;:::-;;-1:-1:-1;1814:10:0;1822:2;1814:5;:10;:::i;:::-;1801:24;;:2;:24;:::i;:::-;1788:39;;1771:6;1778;1771:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;1771:56:0;;;;;;;;-1:-1:-1;1842:11:0;1851:2;1842:11;;:::i;:::-;;;1711:154;;57119:175;57191:7;57210:14;57227:9;57233:2;57227:5;:9::i;:::-;57210:26;;57254:32;57268:6;57276:9;57254:13;:32::i;32894:163::-;33017:32;33023:2;33027:8;33037:5;33044:4;33017:5;:32::i;57302:196::-;57401:87;;;57426:34;57401:87;;;8763:25:1;8804:18;;;8797:34;;;57348:7:0;;57374:116;;8736:18:1;;57401:87:0;;;;;;;;;;;;57391:98;;;;;;57374:16;:116::i;46688:231::-;46766:7;46787:17;46806:18;46828:27;46839:4;46845:9;46828:10;:27::i;:::-;46786:69;;;;46866:18;46878:5;46866:11;:18::i;:::-;-1:-1:-1;46902:9:0;46688:231;-1:-1:-1;;;46688:231:0:o;33316:1412::-;33478:13;;-1:-1:-1;;;;;33506:16:0;;33502:48;;33531:19;;-1:-1:-1;;;33531:19:0;;;;;;;;;;;33502:48;33565:13;33561:44;;33587:18;;-1:-1:-1;;;33587:18:0;;;;;;;;;;;33561:44;-1:-1:-1;;;;;33956:16:0;;;;;;:12;:16;;;;;;;;:44;;-1:-1:-1;;34015:49:0;;-1:-1:-1;;;;;33956:44:0;;;;;;;34015:49;;;;-1:-1:-1;;33956:44:0;;;;;;34015:49;;;;;;;;;;;;;;;;34081:25;;;:11;:25;;;;;:35;;-1:-1:-1;;;;;;34131:66:0;;;;-1:-1:-1;;;34181:15:0;34131:66;;;;;;;;;;;34081:25;;34266:328;34286:8;34282:1;:12;34266:328;;;34325:38;;34350:12;;-1:-1:-1;;;;;34325:38:0;;;34342:1;;34325:38;;34342:1;;34325:38;34386:4;:68;;;;;34395:59;34426:1;34430:2;34434:12;34448:5;34395:22;:59::i;:::-;34394:60;34386:68;34382:164;;;34486:40;;-1:-1:-1;;;34486:40:0;;;;;;;;;;;34382:164;34564:14;;;;;34296:3;34266:328;;;-1:-1:-1;34610:13:0;:28;34660:60;31678:342;54921:167;54998:7;55025:55;55047:20;:18;:20::i;:::-;55069:10;51732:57;;-1:-1:-1;;;51732:57:0;;;7063:27:1;7106:11;;;7099:27;;;7142:12;;;7135:28;;;51695:7:0;;7179:12:1;;51732:57:0;;;;;;;;;;;;51722:68;;;;;;51715:75;;51602:196;;;;;44578:1308;44659:7;44668:12;44893:9;:16;44913:2;44893:22;44889:990;;;45189:4;45174:20;;45168:27;45239:4;45224:20;;45218:27;45297:4;45282:20;;45276:27;44932:9;45268:36;45340:25;45351:4;45268:36;45168:27;45218;45340:10;:25::i;:::-;45333:32;;;;;;;;;44889:990;45387:9;:16;45407:2;45387:22;45383:496;;;45662:4;45647:20;;45641:27;45713:4;45698:20;;45692:27;45755:23;45766:4;45641:27;45692;45755:10;:23::i;:::-;45748:30;;;;;;;;45383:496;-1:-1:-1;45827:1:0;;-1:-1:-1;45831:35:0;45383:496;44578:1308;;;;;:::o;42849:643::-;42927:20;42918:5;:29;;;;;;;;:::i;:::-;;42914:571;;;42849:643;:::o;42914:571::-;43025:29;43016:5;:38;;;;;;;;:::i;:::-;;43012:473;;;43071:34;;-1:-1:-1;;;43071:34:0;;9671:2:1;43071:34:0;;;9653:21:1;9710:2;9690:18;;;9683:30;9749:26;9729:18;;;9722:54;9793:18;;43071:34:0;9469:348:1;43012:473:0;43136:35;43127:5;:44;;;;;;;;:::i;:::-;;43123:362;;;43188:41;;-1:-1:-1;;;43188:41:0;;10024:2:1;43188:41:0;;;10006:21:1;10063:2;10043:18;;;10036:30;10102:33;10082:18;;;10075:61;10153:18;;43188:41:0;9822:355:1;43123:362:0;43260:30;43251:5;:39;;;;;;;;:::i;:::-;;43247:238;;;43307:44;;-1:-1:-1;;;43307:44:0;;11132:2:1;43307:44:0;;;11114:21:1;11171:2;11151:18;;;11144:30;11210:34;11190:18;;;11183:62;-1:-1:-1;;;11261:18:1;;;11254:32;11303:19;;43307:44:0;10930:398:1;43247:238:0;43382:30;43373:5;:39;;;;;;;;:::i;:::-;;43369:116;;;43429:44;;-1:-1:-1;;;43429:44:0;;11535:2:1;43429:44:0;;;11517:21:1;11574:2;11554:18;;;11547:30;11613:34;11593:18;;;11586:62;-1:-1:-1;;;11664:18:1;;;11657:32;11706:19;;43429:44:0;11333:398:1;53694:314:0;53747:7;53779:4;-1:-1:-1;;;;;53788:12:0;53771:29;;:66;;;;;53821:16;53804:13;:33;53771:66;53767:234;;;-1:-1:-1;53861:24:0;;53694:314::o;53767:234::-;-1:-1:-1;54197:73:0;;;53947:10;54197:73;;;;8354:25:1;;;;53959:12:0;8395:18:1;;;8388:34;53973:15:0;8438:18:1;;;8431:34;54241:13:0;8481:18:1;;;8474:34;54264:4:0;8524:19:1;;;;8517:61;;;;54197:73:0;;;;;;;;;;8326:19:1;;;;54197:73:0;;;54187:84;;;;;;53694:314::o;48140:1632::-;48271:7;;49205:66;49192:79;;49188:163;;;-1:-1:-1;49304:1:0;;-1:-1:-1;49308:30:0;49288:51;;49188:163;49365:1;:7;;49370:2;49365:7;;:18;;;;;49376:1;:7;;49381:2;49376:7;;49365:18;49361:102;;;-1:-1:-1;49416:1:0;;-1:-1:-1;49420:30:0;49400:51;;49361:102;49577:24;;;49560:14;49577:24;;;;;;;;;9069:25:1;;;9142:4;9130:17;;9110:18;;;9103:45;;;;9164:18;;;9157:34;;;9207:18;;;9200:34;;;49577:24:0;;9041:19:1;;49577:24:0;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;49577:24:0;;-1:-1:-1;;49577:24:0;;;-1:-1:-1;;;;;;;49616:20:0;;49612:103;;49669:1;49673:29;49653:50;;;;;;;49612:103;49735:6;-1:-1:-1;49743:20:0;;-1:-1:-1;48140:1632:0;;;;;;;;:::o;47182:344::-;47296:7;;-1:-1:-1;;;;;47342:80:0;;47296:7;47449:25;47465:3;47450:18;;;47472:2;47449:25;:::i;:::-;47433:42;;47493:25;47504:4;47510:1;47513;47516;47493:10;:25::i;:::-;47486:32;;;;;;47182:344;;;;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:406:1;78:5;-1:-1:-1;;;;;104:6:1;101:30;98:56;;;134:18;;:::i;:::-;172:57;217:2;196:15;;-1:-1:-1;;192:29:1;223:4;188:40;172:57;:::i;:::-;163:66;;252:6;245:5;238:21;292:3;283:6;278:3;274:16;271:25;268:45;;;309:1;306;299:12;268:45;358:6;353:3;346:4;339:5;335:16;322:43;412:1;405:4;396:6;389:5;385:18;381:29;374:40;14:406;;;;;:::o;425:173::-;493:20;;-1:-1:-1;;;;;542:31:1;;532:42;;522:70;;588:1;585;578:12;522:70;425:173;;;:::o;603:160::-;668:20;;724:13;;717:21;707:32;;697:60;;753:1;750;743:12;768:220;810:5;863:3;856:4;848:6;844:17;840:27;830:55;;881:1;878;871:12;830:55;903:79;978:3;969:6;956:20;949:4;941:6;937:17;903:79;:::i;993:186::-;1052:6;1105:2;1093:9;1084:7;1080:23;1076:32;1073:52;;;1121:1;1118;1111:12;1073:52;1144:29;1163:9;1144:29;:::i;1184:260::-;1252:6;1260;1313:2;1301:9;1292:7;1288:23;1284:32;1281:52;;;1329:1;1326;1319:12;1281:52;1352:29;1371:9;1352:29;:::i;:::-;1342:39;;1400:38;1434:2;1423:9;1419:18;1400:38;:::i;:::-;1390:48;;1184:260;;;;;:::o;1449:328::-;1526:6;1534;1542;1595:2;1583:9;1574:7;1570:23;1566:32;1563:52;;;1611:1;1608;1601:12;1563:52;1634:29;1653:9;1634:29;:::i;:::-;1624:39;;1682:38;1716:2;1705:9;1701:18;1682:38;:::i;:::-;1672:48;;1767:2;1756:9;1752:18;1739:32;1729:42;;1449:328;;;;;:::o;1782:537::-;1877:6;1885;1893;1901;1954:3;1942:9;1933:7;1929:23;1925:33;1922:53;;;1971:1;1968;1961:12;1922:53;1994:29;2013:9;1994:29;:::i;:::-;1984:39;;2042:38;2076:2;2065:9;2061:18;2042:38;:::i;:::-;2032:48;;2127:2;2116:9;2112:18;2099:32;2089:42;;2182:2;2171:9;2167:18;2154:32;-1:-1:-1;;;;;2201:6:1;2198:30;2195:50;;;2241:1;2238;2231:12;2195:50;2264:49;2305:7;2296:6;2285:9;2281:22;2264:49;:::i;:::-;2254:59;;;1782:537;;;;;;;:::o;2324:254::-;2389:6;2397;2450:2;2438:9;2429:7;2425:23;2421:32;2418:52;;;2466:1;2463;2456:12;2418:52;2489:29;2508:9;2489:29;:::i;:::-;2479:39;;2537:35;2568:2;2557:9;2553:18;2537:35;:::i;2583:254::-;2651:6;2659;2712:2;2700:9;2691:7;2687:23;2683:32;2680:52;;;2728:1;2725;2718:12;2680:52;2751:29;2770:9;2751:29;:::i;:::-;2741:39;2827:2;2812:18;;;;2799:32;;-1:-1:-1;;;2583:254:1:o;2842:531::-;2937:6;2945;2953;2961;3014:3;3002:9;2993:7;2989:23;2985:33;2982:53;;;3031:1;3028;3021:12;2982:53;3054:29;3073:9;3054:29;:::i;:::-;3044:39;;3130:2;3119:9;3115:18;3102:32;3092:42;;3181:2;3170:9;3166:18;3153:32;3143:42;;3236:2;3225:9;3221:18;3208:32;-1:-1:-1;;;;;3255:6:1;3252:30;3249:50;;;3295:1;3292;3285:12;3378:963;3462:6;3493:2;3536;3524:9;3515:7;3511:23;3507:32;3504:52;;;3552:1;3549;3542:12;3504:52;3592:9;3579:23;-1:-1:-1;;;;;3662:2:1;3654:6;3651:14;3648:34;;;3678:1;3675;3668:12;3648:34;3716:6;3705:9;3701:22;3691:32;;3761:7;3754:4;3750:2;3746:13;3742:27;3732:55;;3783:1;3780;3773:12;3732:55;3819:2;3806:16;3841:2;3837;3834:10;3831:36;;;3847:18;;:::i;:::-;3893:2;3890:1;3886:10;3876:20;;3916:28;3940:2;3936;3932:11;3916:28;:::i;:::-;3978:15;;;4009:12;;;;4041:11;;;4071;;;4067:20;;4064:33;-1:-1:-1;4061:53:1;;;4110:1;4107;4100:12;4061:53;4132:1;4123:10;;4142:169;4156:2;4153:1;4150:9;4142:169;;;4213:23;4232:3;4213:23;:::i;:::-;4201:36;;4174:1;4167:9;;;;;4257:12;;;;4289;;4142:169;;;-1:-1:-1;4330:5:1;3378:963;-1:-1:-1;;;;;;;;3378:963:1:o;4346:180::-;4402:6;4455:2;4443:9;4434:7;4430:23;4426:32;4423:52;;;4471:1;4468;4461:12;4423:52;4494:26;4510:9;4494:26;:::i;4531:245::-;4589:6;4642:2;4630:9;4621:7;4617:23;4613:32;4610:52;;;4658:1;4655;4648:12;4610:52;4697:9;4684:23;4716:30;4740:5;4716:30;:::i;4781:249::-;4850:6;4903:2;4891:9;4882:7;4878:23;4874:32;4871:52;;;4919:1;4916;4909:12;4871:52;4951:9;4945:16;4970:30;4994:5;4970:30;:::i;5035:450::-;5104:6;5157:2;5145:9;5136:7;5132:23;5128:32;5125:52;;;5173:1;5170;5163:12;5125:52;5213:9;5200:23;-1:-1:-1;;;;;5238:6:1;5235:30;5232:50;;;5278:1;5275;5268:12;5232:50;5301:22;;5354:4;5346:13;;5342:27;-1:-1:-1;5332:55:1;;5383:1;5380;5373:12;5332:55;5406:73;5471:7;5466:2;5453:16;5448:2;5444;5440:11;5406:73;:::i;5490:180::-;5549:6;5602:2;5590:9;5581:7;5577:23;5573:32;5570:52;;;5618:1;5615;5608:12;5570:52;-1:-1:-1;5641:23:1;;5490:180;-1:-1:-1;5490:180:1:o;5675:388::-;5752:6;5760;5813:2;5801:9;5792:7;5788:23;5784:32;5781:52;;;5829:1;5826;5819:12;5781:52;5865:9;5852:23;5842:33;;5926:2;5915:9;5911:18;5898:32;-1:-1:-1;;;;;5945:6:1;5942:30;5939:50;;;5985:1;5982;5975:12;5939:50;6008:49;6049:7;6040:6;6029:9;6025:22;6008:49;:::i;:::-;5998:59;;;5675:388;;;;;:::o;6068:257::-;6109:3;6147:5;6141:12;6174:6;6169:3;6162:19;6190:63;6246:6;6239:4;6234:3;6230:14;6223:4;6216:5;6212:16;6190:63;:::i;:::-;6307:2;6286:15;-1:-1:-1;;6282:29:1;6273:39;;;;6314:4;6269:50;;6068:257;-1:-1:-1;;6068:257:1:o;6330:470::-;6509:3;6547:6;6541:13;6563:53;6609:6;6604:3;6597:4;6589:6;6585:17;6563:53;:::i;:::-;6679:13;;6638:16;;;;6701:57;6679:13;6638:16;6735:4;6723:17;;6701:57;:::i;:::-;6774:20;;6330:470;-1:-1:-1;;;;6330:470:1:o;7410:488::-;-1:-1:-1;;;;;7679:15:1;;;7661:34;;7731:15;;7726:2;7711:18;;7704:43;7778:2;7763:18;;7756:34;;;7826:3;7821:2;7806:18;;7799:31;;;7604:4;;7847:45;;7872:19;;7864:6;7847:45;:::i;:::-;7839:53;7410:488;-1:-1:-1;;;;;;7410:488:1:o;9245:219::-;9394:2;9383:9;9376:21;9357:4;9414:44;9454:2;9443:9;9439:18;9431:6;9414:44;:::i;12089:356::-;12291:2;12273:21;;;12310:18;;;12303:30;12369:34;12364:2;12349:18;;12342:62;12436:2;12421:18;;12089:356::o;13159:343::-;13361:2;13343:21;;;13400:2;13380:18;;;13373:30;-1:-1:-1;;;13434:2:1;13419:18;;13412:49;13493:2;13478:18;;13159:343::o;13689:275::-;13760:2;13754:9;13825:2;13806:13;;-1:-1:-1;;13802:27:1;13790:40;;-1:-1:-1;;;;;13845:34:1;;13881:22;;;13842:62;13839:88;;;13907:18;;:::i;:::-;13943:2;13936:22;13689:275;;-1:-1:-1;13689:275:1:o;13969:128::-;14009:3;14040:1;14036:6;14033:1;14030:13;14027:39;;;14046:18;;:::i;:::-;-1:-1:-1;14082:9:1;;13969:128::o;14102:120::-;14142:1;14168;14158:35;;14173:18;;:::i;:::-;-1:-1:-1;14207:9:1;;14102:120::o;14227:125::-;14267:4;14295:1;14292;14289:8;14286:34;;;14300:18;;:::i;:::-;-1:-1:-1;14337:9:1;;14227:125::o;14357:258::-;14429:1;14439:113;14453:6;14450:1;14447:13;14439:113;;;14529:11;;;14523:18;14510:11;;;14503:39;14475:2;14468:10;14439:113;;;14570:6;14567:1;14564:13;14561:48;;;-1:-1:-1;;14605:1:1;14587:16;;14580:27;14357:258::o;14620:380::-;14699:1;14695:12;;;;14742;;;14763:61;;14817:4;14809:6;14805:17;14795:27;;14763:61;14870:2;14862:6;14859:14;14839:18;14836:38;14833:161;;;14916:10;14911:3;14907:20;14904:1;14897:31;14951:4;14948:1;14941:15;14979:4;14976:1;14969:15;14833:161;;14620:380;;;:::o;15005:135::-;15044:3;-1:-1:-1;;15065:17:1;;15062:43;;;15085:18;;:::i;:::-;-1:-1:-1;15132:1:1;15121:13;;15005:135::o;15145:112::-;15177:1;15203;15193:35;;15208:18;;:::i;:::-;-1:-1:-1;15242:9:1;;15145:112::o;15262:127::-;15323:10;15318:3;15314:20;15311:1;15304:31;15354:4;15351:1;15344:15;15378:4;15375:1;15368:15;15394:127;15455:10;15450:3;15446:20;15443:1;15436:31;15486:4;15483:1;15476:15;15510:4;15507:1;15500:15;15526:127;15587:10;15582:3;15578:20;15575:1;15568:31;15618:4;15615:1;15608:15;15642:4;15639:1;15632:15;15658:127;15719:10;15714:3;15710:20;15707:1;15700:31;15750:4;15747:1;15740:15;15774:4;15771:1;15764:15;15790:127;15851:10;15846:3;15842:20;15839:1;15832:31;15882:4;15879:1;15872:15;15906:4;15903:1;15896:15;15922:131;-1:-1:-1;;;;;;15996:32:1;;15986:43;;15976:71;;16043:1;16040;16033:12

Swarm Source

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