ETH Price: $2,464.46 (+2.73%)

Token

PixelSaurus (PXLS)
 

Overview

Max Total Supply

1,006 PXLS

Holders

362

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Balance
0 PXLS
0x40ec13dc211bd727ee8f7df50be9f635809b9dd1
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

PixelSaurus Tri is the third collection in the PixelSaurus NFT series! Also Available: **[PixelSaurus Bronto](https://opensea.io/collection/pixelsaurus)** & **[PixelSaurus Rex](https://opensea.io/collection/pixelsaurus-rex)** Featuring a...

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
PixelSaurus

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-02-24
*/

// File: pixelsaurus_flat.sol


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


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

pragma solidity ^0.8.0;

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;


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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

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


// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/extensions/IERC721Enumerable.sol)

pragma solidity ^0.8.0;


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

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

// File: https://github.com/chiru-labs/ERC721A/blob/main/contracts/ERC721A.sol


// Creator: Chiru Labs

pragma solidity ^0.8.4;









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 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 {}
}

// File: contracts/pixelsaurus.sol


pragma solidity ^0.8.7;

/*

██████╗░██╗██╗░░██╗███████╗██╗░░░░░░██████╗░█████╗░██╗░░░██╗██████╗░██╗░░░██╗░██████╗
██╔══██╗██║╚██╗██╔╝██╔════╝██║░░░░░██╔════╝██╔══██╗██║░░░██║██╔══██╗██║░░░██║██╔════╝
██████╔╝██║░╚███╔╝░█████╗░░██║░░░░░╚█████╗░███████║██║░░░██║██████╔╝██║░░░██║╚█████╗░
██╔═══╝░██║░██╔██╗░██╔══╝░░██║░░░░░░╚═══██╗██╔══██║██║░░░██║██╔══██╗██║░░░██║░╚═══██╗
██║░░░░░██║██╔╝╚██╗███████╗███████╗██████╔╝██║░░██║╚██████╔╝██║░░██║╚██████╔╝██████╔╝
╚═╝░░░░░╚═╝╚═╝░░╚═╝╚══════╝╚══════╝╚═════╝░╚═╝░░╚═╝░╚═════╝░╚═╝░░╚═╝░╚═════╝░╚═════╝░

MMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMM
MMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMWKkkkkkk0WMMMMMMMMMMMMMMMMMMMMMMMMMM
MMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMNl  ..  ,OXXXNWMMMMMMMMMMMMMMMMMMMMM
MMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMWWWWXc .dx,  ....lXWWWWWWMMMMMMMMMMMMMMM
MMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMWk:;,;,.  ',;:cccc::;;;;,,cKMMMMMMMMMMMMMM
MMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMWl. .;:.  ',,;;,;oxo;'. .:cllOWMMMMMMMMMMM
MMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMWl. .co' .od'  ',;clxo. ;KO' cNMMMMMMMMMMM
MMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMWl.  ..  .ld' 'O0; 'oo. ;KO' cNMMMMMMMMMMM
MMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMWl. .ok, .od' ,00; 'oo' ;0k' cNMMMMMMMMMMM
MMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMWl.  .'. .ld' ,00; 'oxlc;,.  cNMMMMMMMMMMM
MMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMWl. .;c. .ld' .;:;;cdxxxo:'. .:dXWOlcclOWM
MMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMWl. .co' .ld:''',lxoc:::lxd;'. .cdl;'  oWM
MMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMWd,'.   .'cldxxxxxx:. .':dxxd;  ..oXk. oWM
MMMMMMMMMMMMMMMMMMMWNNNNNNNNNNNNNNNNNNNXKKd. :ko..;ddxxxx:..o0Oxxxx:..oO0Kx. oWM
MMMMMMMMMMMMMMMMMMMO;'''''''''''''''''''''.  ...   .,oxxx:  .':dxxxol:,'.'.  oWM
MMMMMMMMMMMMMMKoccc'       .,.    .,'      ',. .:c. .lxxd:    'oxxxxxdc;. .:d0WM
MMMMMMMMMMMW0d:.    ..     ;o,    'oc.    .co' .cl. .ldddl,''':dxxxl:::;,.,lxKMM
MMMMMMMMMNKk;     .'cc.  ..:o,   .,oc.  ..'lo;..  ..,:loddddlcoddlc'  ..;o:. oWM
MMMMMMMWNk'      .:clc. .:lll,..;lloc. 'ccooool;. :Ol..:dddl' 'lc.   .;clo:. oWM
MMMMMMWd'.        .'cl::cllllc::looolc:looooooo:. ...  ;oddl.  ..  .:;..;o:. oWM
MMMMXo;.  .''''''',;cllllllllllllllooloooooooool;,,,,;,'....  .ol.  .,ld:',lxKWM
MW0d:.    .';cccccccclllllllllllllllllllllloooooooooool. .:ccckWNxcccoXWOcdXMMMM
MWo         .,;cccccccccccclllllllllllllllllllloooooooc. ;XMMMMMMMMMMMMMMMMMMMMM
MWo           .;cccccccccccccccclllllllllllcclllllllloc. ;XMMMMMMMMMMMMMMMMMMMMM
MWo    .,,;;;;;:ccccccccccccccccccccccllll:..,clllllllc. ;XMMMMMMMMMMMMMMMMMMMMM
MWo     ..;ccccccccccccccccccccccccccccccc:;,.....;lllc. ;XMMMMMMMMMMMMMMMMMMMMM
MWo     .';:,'..';cccccccccccccccccccccccc:,';c,  'cllc,.,ldKMMMMMMMMMMMMMMMMMMM
MWo    .',,,,,,,,,,;:ccccc:;,,,,,,,,,,,,,,,,;kWk. 'cccclc, .ckKWMMMMMMMMMMMMMMMM
MWo       ..dNWWXl..;;:ccc;.    ..........;0WNXd..,cccc::'.  .:0XWMMMMMMMMMMMMMM
MWo      'xKNMMMWXKo..,ccc::;. .dKKKKKKKKKXNNo..,;:ccc:...;;;;,.,OMMMMMMMMMMMMMM
MWo    ,x0NMMMMMMMMx. ':cccc:' .kMMMMMMMMMKl,,',:ccc;..  .:ccc' .kMMMMMMMMMMMMMM
MW0ollo0WMMMMMMMWOl:'';ccc:,.,cdXMMMMMMMMMO. .:ccccc,  ,l:'...,cdKMMMMMMMMMMMMMM
MMMMMMMMMMMMMMMMX: .;ccccc;. :NMMMMMMMMMMMO. .:cc:;',,:OM0c,;;xNMMMMMMMMMMMMMMMM
MMMMMMMMMMMMMMMMNl..,;;;;;,. :NMMMMMMMMMMM0;.';;;;'.cKWMMMWWWWWMMMMMMMMMMMMMMMMM
MMMMMMMMMMMMMMMMMNXd......   cNMMMMMMMMMMMWX0c....oKNWMMMMMMMMMMMMMMMMMMMMMMMMMM
MMMMMMMMMMMMMMMMMMMNOkkkkkkkkKWMMMMMMMMMMMMMWKkkkOXMMMMMMMMMMMMMMMMMMMMMMMMMMMMM
MMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMM
*/




contract PixelSaurus is ERC721A, Ownable {
    using Strings for uint256;
    event Minted(address indexed _from, uint _amount, uint _value);

    address extendingContract;


    string public baseApiURI;
    
     //Utility
    bool public paused = false;
    bool public whiteListingSale = true;

    //General Settings
    uint16 public maxMintAmountPerTransaction = 10;
    uint16 public maxMintAmountPerWallet = 500;

    
   

    //Inventory
    uint256 public maxSupply = 1100;

    //Prices
    uint256 public cost = 0.05 ether;
    //greenlist 1 cost
    uint256 public whitelistCost1 = 0.04 ether;
    //greenlist 2 cost 
    uint256 public whitelistCost2 = 0.05 ether;

    //Merkle Tree Roots
    bytes32 private whitelistRoot1;
    bytes32 private whitelistRoot2;

   

    

    constructor(string memory _baseUrl) ERC721A("PixelSaurus", "PXLS") {
        baseApiURI = _baseUrl;
    }

    //This function will be used to extend the project with more capabilities 
    function setExternalContract(address _bAddress) public onlyOwner {
        extendingContract = _bAddress;
    }


    //this function can be called only from the extending contract
    function mintExternal(address _address, uint256 _mintAmount) external {
        require(
            msg.sender == extendingContract,
            "Sorry you don't have permission to mint"
        );
        _safeMint(_address, _mintAmount);
    }

    function setWhitelistingRoot(bool iswWhitelist1, bytes32 _root) public onlyOwner {
       if(iswWhitelist1){
            whitelistRoot1 = _root;
       }else{
            whitelistRoot2 = _root;
       }
    }

   

 
    // Verify that a given leaf is in the tree.
    function _verify(
        bool isWhitelist1,
        bytes32 _leafNode,
        bytes32[] memory proof
    ) internal view returns (bool) {
       if(isWhitelist1){
            return MerkleProof.verify(proof, whitelistRoot1, _leafNode);
       }else{
            return MerkleProof.verify(proof, whitelistRoot2, _leafNode);
       }
    }

    // Generate the leaf node (just the hash of tokenID concatenated with the account address)
    function _leaf(address account) internal pure returns (bytes32) {
        return keccak256(abi.encodePacked(account));
    }

    //whitelist mint
    function mintWhitelist(
        bool isWhitelist1,
        bytes32[] calldata proof,
        uint256 _mintAmount
    ) public payable {
     
     
                // WL Verifications
                //1 
                 if(isWhitelist1){
                     require(
                    _verify(true,_leaf(msg.sender), proof),
                    "Invalid proof"
                );
               
                require(
                    msg.value >= (whitelistCost1 * _mintAmount),
                    "Insuffient funds"
                );
                 }else{
                     require(
                    _verify(false, _leaf(msg.sender), proof),
                    "Invalid proof"
                );
                require(
                    msg.value >= (whitelistCost2 * _mintAmount),
                    "Insuffient funds"
                );

                
                 }

                require(
                _mintAmount <= maxMintAmountPerTransaction,
                "Sorry you cannot mint this many at once!"
            );

                //END WL Verifications

                //Mint
                _mintLoop(msg.sender, _mintAmount);
                 

                emit Minted(msg.sender,  _mintAmount, msg.value);
             
    }

    function numberMinted(address owner) public view returns (uint256) {
        return _numberMinted(owner);
    }

    // public
    function mint(uint256 _mintAmount) public payable {
        if (msg.sender != owner()) {
            uint256 ownerTokenCount = balanceOf(msg.sender);

            require(!paused);
            require(!whiteListingSale, "You cant mint on Presale");
            require(_mintAmount > 0, "Mint amount should be greater than 0");
            require(
                _mintAmount <= maxMintAmountPerTransaction,
                "Sorry you cant mint this amount at once"
            );
            require(
                totalSupply() + _mintAmount <= maxSupply,
                "Exceeds Max Supply"
            );
            require(
                (ownerTokenCount + _mintAmount) <= maxMintAmountPerWallet,
                "Sorry you cant mint more"
            );

            require(msg.value >= cost * _mintAmount, "Insuffient funds");
        }

        _mintLoop(msg.sender, _mintAmount);
         emit Minted(msg.sender,  _mintAmount, msg.value);
    }

    function gift(address _to, uint256 _mintAmount) public onlyOwner {
        _mintLoop(_to, _mintAmount);
    }

    function airdrop(address[] memory _airdropAddresses) public onlyOwner {
        for (uint256 i = 0; i < _airdropAddresses.length; i++) {
            address to = _airdropAddresses[i];
            _mintLoop(to, 1);
        }
    }

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

    function tokenURI(uint256 tokenId)
        public
        view
        virtual
        override
        returns (string memory)
    {
        require(
            _exists(tokenId),
            "ERC721Metadata: URI query for nonexistent token"
        );
        string memory currentBaseURI = _baseURI();
        return
            bytes(currentBaseURI).length > 0
                ? string(abi.encodePacked(currentBaseURI, tokenId.toString()))
                : "";
    }

    function setCost( uint256 _newCost) public onlyOwner {
        cost = _newCost;
    }

    function setWhitelistingCost(bool isWhitelist1, uint256 _newCost) public onlyOwner {
       if(isWhitelist1){
            whitelistCost1 = _newCost;
       }else{
            whitelistCost2 = _newCost;
       }
    }

    function setmaxMintAmountPerTransaction(uint16 _amount) public onlyOwner {
        maxMintAmountPerTransaction = _amount;
    }

    function setMaxMintAmountPerWallet(uint16 _amount) public onlyOwner {
        maxMintAmountPerWallet = _amount;
    }

  

    function setMaxSupply(uint256 _supply) public onlyOwner {
        maxSupply = _supply;
    }

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

    function togglePause() public onlyOwner {
        paused = !paused;
    }

    function toggleWhiteSale() public onlyOwner {
        whiteListingSale = !whiteListingSale;
    }

    function _mintLoop(address _receiver, uint256 _mintAmount) internal {
        _safeMint(_receiver, _mintAmount);
    }

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

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

    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_baseUrl","type":"string"}],"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":"MintedQueryForZeroAddress","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"_from","type":"address"},{"indexed":false,"internalType":"uint256","name":"_amount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"_value","type":"uint256"}],"name":"Minted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address[]","name":"_airdropAddresses","type":"address[]"}],"name":"airdrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseApiURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getOwnershipData","outputs":[{"components":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"uint64","name":"startTimestamp","type":"uint64"},{"internalType":"bool","name":"burned","type":"bool"}],"internalType":"struct ERC721A.TokenOwnership","name":"","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"gift","outputs":[],"stateMutability":"nonpayable","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":"maxMintAmountPerTransaction","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmountPerWallet","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"},{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mintExternal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"isWhitelist1","type":"bool"},{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"},{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mintWhitelist","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"numberMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newCost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_bAddress","type":"address"}],"name":"setExternalContract","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"_amount","type":"uint16"}],"name":"setMaxMintAmountPerWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_supply","type":"uint256"}],"name":"setMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"isWhitelist1","type":"bool"},{"internalType":"uint256","name":"_newCost","type":"uint256"}],"name":"setWhitelistingCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"iswWhitelist1","type":"bool"},{"internalType":"bytes32","name":"_root","type":"bytes32"}],"name":"setWhitelistingRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"_amount","type":"uint16"}],"name":"setmaxMintAmountPerTransaction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"togglePause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"toggleWhiteSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"whiteListingSale","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"whitelistCost1","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"whitelistCost2","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]

6080604052600b805465ffffffffffff19166501f4000a010017905561044c600c5566b1a2bc2ec50000600d819055668e1bc9bf040000600e55600f553480156200004957600080fd5b50604051620029c7380380620029c78339810160408190526200006c9162000207565b604080518082018252600b81526a506978656c53617572757360a81b60208083019182528351808501909452600484526350584c5360e01b908401528151919291620000bb9160029162000161565b508051620000d190600390602084019062000161565b505050620000ee620000e86200010b60201b60201c565b6200010f565b80516200010390600a90602084019062000161565b505062000336565b3390565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200016f90620002e3565b90600052602060002090601f016020900481019282620001935760008555620001de565b82601f10620001ae57805160ff1916838001178555620001de565b82800160010185558215620001de579182015b82811115620001de578251825591602001919060010190620001c1565b50620001ec929150620001f0565b5090565b5b80821115620001ec5760008155600101620001f1565b600060208083850312156200021b57600080fd5b82516001600160401b03808211156200023357600080fd5b818501915085601f8301126200024857600080fd5b8151818111156200025d576200025d62000320565b604051601f8201601f19908116603f0116810190838211818310171562000288576200028862000320565b816040528281528886848701011115620002a157600080fd5b600093505b82841015620002c55784840186015181850187015292850192620002a6565b82841115620002d75760008684830101525b98975050505050505050565b600181811c90821680620002f857607f821691505b602082108114156200031a57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b61268180620003466000396000f3fe6080604052600436106102675760003560e01c806384db206811610144578063c87b56dd116100b6578063e5a88cdb1161007a578063e5a88cdb14610723578063e97800cb14610742578063e985e9c514610762578063ed816179146107ab578063f2fde38b146107c0578063f4da1846146107e057600080fd5b8063c87b56dd1461068d578063cbce4c97146106ad578063cef11729146106cd578063d5abeb01146106ed578063dc33e6811461070357600080fd5b8063a22cb46511610108578063a22cb465146105ce578063b0e5629d146105ee578063b88d4fde14610601578063bbb8974414610621578063bc951b9114610655578063c4ae31681461067857600080fd5b806384db20681461051c5780638da5cb5b146105325780639231ab2a1461055057806395d89b41146105a6578063a0712d68146105bb57600080fd5b806342842e0e116101dd5780636352211e116101a15780636352211e146104675780636f8b44b01461048757806370a08231146104a7578063715018a6146104c7578063729ad39e146104dc5780637e388e8a146104fc57600080fd5b806342842e0e146103d7578063442d9dec146103f757806344a0d68a1461040d57806355f804b31461042d5780635c975abb1461044d57600080fd5b806313faede61161022f57806313faede61461033d57806318160ddd1461036157806322cce9da1461037a57806323b872dd1461039a5780633ccfd60b146103ba57806341827f13146103c257600080fd5b806301ffc9a71461026c57806306fdde03146102a1578063081812fc146102c3578063095ea7b3146102fb57806309e7fe1b1461031d575b600080fd5b34801561027857600080fd5b5061028c6102873660046122ec565b610800565b60405190151581526020015b60405180910390f35b3480156102ad57600080fd5b506102b6610852565b6040516102989190612443565b3480156102cf57600080fd5b506102e36102de366004612392565b6108e4565b6040516001600160a01b039091168152602001610298565b34801561030757600080fd5b5061031b610316366004612168565b610928565b005b34801561032957600080fd5b5061031b610338366004612039565b6109b6565b34801561034957600080fd5b50610353600d5481565b604051908152602001610298565b34801561036d57600080fd5b5060015460005403610353565b34801561038657600080fd5b5061031b6103953660046122d0565b610a0b565b3480156103a657600080fd5b5061031b6103b5366004612087565b610a4b565b61031b610a56565b3480156103ce57600080fd5b506102b6610af4565b3480156103e357600080fd5b5061031b6103f2366004612087565b610b82565b34801561040357600080fd5b50610353600e5481565b34801561041957600080fd5b5061031b610428366004612392565b610b9d565b34801561043957600080fd5b5061031b610448366004612326565b610bcc565b34801561045957600080fd5b50600b5461028c9060ff1681565b34801561047357600080fd5b506102e3610482366004612392565b610c09565b34801561049357600080fd5b5061031b6104a2366004612392565b610c1b565b3480156104b357600080fd5b506103536104c2366004612039565b610c4a565b3480156104d357600080fd5b5061031b610c98565b3480156104e857600080fd5b5061031b6104f7366004612192565b610cce565b34801561050857600080fd5b5061031b6105173660046122d0565b610d40565b34801561052857600080fd5b50610353600f5481565b34801561053e57600080fd5b506008546001600160a01b03166102e3565b34801561055c57600080fd5b5061057061056b366004612392565b610d7c565b6040805182516001600160a01b031681526020808401516001600160401b03169082015291810151151590820152606001610298565b3480156105b257600080fd5b506102b6610da2565b61031b6105c9366004612392565b610db1565b3480156105da57600080fd5b5061031b6105e936600461213e565b61103c565b61031b6105fc366004612245565b6110d2565b34801561060d57600080fd5b5061031b61061c3660046120c3565b6112bb565b34801561062d57600080fd5b50600b546106429062010000900461ffff1681565b60405161ffff9091168152602001610298565b34801561066157600080fd5b50600b5461064290640100000000900461ffff1681565b34801561068457600080fd5b5061031b6112f5565b34801561069957600080fd5b506102b66106a8366004612392565b611333565b3480156106b957600080fd5b5061031b6106c8366004612168565b6113fe565b3480156106d957600080fd5b5061031b6106e836600461236e565b611432565b3480156106f957600080fd5b50610353600c5481565b34801561070f57600080fd5b5061035361071e366004612039565b611480565b34801561072f57600080fd5b50600b5461028c90610100900460ff1681565b34801561074e57600080fd5b5061031b61075d36600461236e565b61148b565b34801561076e57600080fd5b5061028c61077d366004612054565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b3480156107b757600080fd5b5061031b6114d5565b3480156107cc57600080fd5b5061031b6107db366004612039565b61151c565b3480156107ec57600080fd5b5061031b6107fb366004612168565b6115b4565b60006001600160e01b031982166380ac58cd60e01b148061083157506001600160e01b03198216635b5e139f60e01b145b8061084c57506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606002805461086190612573565b80601f016020809104026020016040519081016040528092919081815260200182805461088d90612573565b80156108da5780601f106108af576101008083540402835291602001916108da565b820191906000526020600020905b8154815290600101906020018083116108bd57829003601f168201915b5050505050905090565b60006108ef82611628565b61090c576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600061093382610c09565b9050806001600160a01b0316836001600160a01b031614156109685760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b038216148015906109885750610986813361077d565b155b156109a6576040516367d9dca160e11b815260040160405180910390fd5b6109b1838383611653565b505050565b6008546001600160a01b031633146109e95760405162461bcd60e51b81526004016109e090612480565b60405180910390fd5b600980546001600160a01b0319166001600160a01b0392909216919091179055565b6008546001600160a01b03163314610a355760405162461bcd60e51b81526004016109e090612480565b8115610a415760105550565b60118190555b5050565b6109b18383836116af565b6008546001600160a01b03163314610a805760405162461bcd60e51b81526004016109e090612480565b6000610a946008546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d8060008114610ade576040519150601f19603f3d011682016040523d82523d6000602084013e610ae3565b606091505b5050905080610af157600080fd5b50565b600a8054610b0190612573565b80601f0160208091040260200160405190810160405280929190818152602001828054610b2d90612573565b8015610b7a5780601f10610b4f57610100808354040283529160200191610b7a565b820191906000526020600020905b815481529060010190602001808311610b5d57829003601f168201915b505050505081565b6109b1838383604051806020016040528060008152506112bb565b6008546001600160a01b03163314610bc75760405162461bcd60e51b81526004016109e090612480565b600d55565b6008546001600160a01b03163314610bf65760405162461bcd60e51b81526004016109e090612480565b8051610a4790600a906020840190611f1d565b6000610c14826118c3565b5192915050565b6008546001600160a01b03163314610c455760405162461bcd60e51b81526004016109e090612480565b600c55565b60006001600160a01b038216610c73576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600560205260409020546001600160401b031690565b6008546001600160a01b03163314610cc25760405162461bcd60e51b81526004016109e090612480565b610ccc60006119dc565b565b6008546001600160a01b03163314610cf85760405162461bcd60e51b81526004016109e090612480565b60005b8151811015610a47576000828281518110610d1857610d18612609565b60200260200101519050610d2d81600161161e565b5080610d38816125ae565b915050610cfb565b6008546001600160a01b03163314610d6a5760405162461bcd60e51b81526004016109e090612480565b8115610d7657600e5550565b600f5550565b604080516060810182526000808252602082018190529181019190915261084c826118c3565b60606003805461086190612573565b6008546001600160a01b03163314610ff5576000610dce33610c4a565b600b5490915060ff1615610de157600080fd5b600b54610100900460ff1615610e395760405162461bcd60e51b815260206004820152601860248201527f596f752063616e74206d696e74206f6e2050726573616c65000000000000000060448201526064016109e0565b60008211610e955760405162461bcd60e51b8152602060048201526024808201527f4d696e7420616d6f756e742073686f756c6420626520677265617465722074686044820152630616e20360e41b60648201526084016109e0565b600b5462010000900461ffff16821115610f015760405162461bcd60e51b815260206004820152602760248201527f536f72727920796f752063616e74206d696e74207468697320616d6f756e74206044820152666174206f6e636560c81b60648201526084016109e0565b600c5482610f126001546000540390565b610f1c91906124e5565b1115610f5f5760405162461bcd60e51b815260206004820152601260248201527145786365656473204d617820537570706c7960701b60448201526064016109e0565b600b54640100000000900461ffff16610f7883836124e5565b1115610fc65760405162461bcd60e51b815260206004820152601860248201527f536f72727920796f752063616e74206d696e74206d6f7265000000000000000060448201526064016109e0565b81600d54610fd49190612511565b341015610ff35760405162461bcd60e51b81526004016109e090612456565b505b610fff338261161e565b6040805182815234602082015233917f25b428dfde728ccfaddad7e29e4ac23c24ed7fd1a6e3e3f91894a9a073f5dfff910160405180910390a250565b6001600160a01b0382163314156110665760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b831561118d5761111f60016110e633611a2e565b858580806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250611a6d92505050565b61115b5760405162461bcd60e51b815260206004820152600d60248201526c24b73b30b634b210383937b7b360991b60448201526064016109e0565b80600e546111699190612511565b3410156111885760405162461bcd60e51b81526004016109e090612456565b611204565b61119b60006110e633611a2e565b6111d75760405162461bcd60e51b815260206004820152600d60248201526c24b73b30b634b210383937b7b360991b60448201526064016109e0565b80600f546111e59190612511565b3410156112045760405162461bcd60e51b81526004016109e090612456565b600b5462010000900461ffff168111156112715760405162461bcd60e51b815260206004820152602860248201527f536f72727920796f752063616e6e6f74206d696e742074686973206d616e79206044820152676174206f6e63652160c01b60648201526084016109e0565b61127b338261161e565b6040805182815234602082015233917f25b428dfde728ccfaddad7e29e4ac23c24ed7fd1a6e3e3f91894a9a073f5dfff910160405180910390a250505050565b6112c68484846116af565b6112d284848484611a96565b6112ef576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6008546001600160a01b0316331461131f5760405162461bcd60e51b81526004016109e090612480565b600b805460ff19811660ff90911615179055565b606061133e82611628565b6113a25760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016109e0565b60006113ac611ba5565b905060008151116113cc57604051806020016040528060008152506113f7565b806113d684611bb4565b6040516020016113e79291906123d7565b6040516020818303038152906040525b9392505050565b6008546001600160a01b031633146114285760405162461bcd60e51b81526004016109e090612480565b610a47828261161e565b6008546001600160a01b0316331461145c5760405162461bcd60e51b81526004016109e090612480565b600b805461ffff9092166401000000000265ffff0000000019909216919091179055565b600061084c82611cb1565b6008546001600160a01b031633146114b55760405162461bcd60e51b81526004016109e090612480565b600b805461ffff909216620100000263ffff000019909216919091179055565b6008546001600160a01b031633146114ff5760405162461bcd60e51b81526004016109e090612480565b600b805461ff001981166101009182900460ff1615909102179055565b6008546001600160a01b031633146115465760405162461bcd60e51b81526004016109e090612480565b6001600160a01b0381166115ab5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016109e0565b610af1816119dc565b6009546001600160a01b0316331461161e5760405162461bcd60e51b815260206004820152602760248201527f536f72727920796f7520646f6e27742068617665207065726d697373696f6e206044820152661d1bc81b5a5b9d60ca1b60648201526084016109e0565b610a478282611d06565b600080548210801561084c575050600090815260046020526040902054600160e01b900460ff161590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60006116ba826118c3565b80519091506000906001600160a01b0316336001600160a01b031614806116e8575081516116e8903361077d565b806117035750336116f8846108e4565b6001600160a01b0316145b90508061172357604051632ce44b5f60e11b815260040160405180910390fd5b846001600160a01b031682600001516001600160a01b0316146117585760405162a1148160e81b815260040160405180910390fd5b6001600160a01b03841661177f57604051633a954ecd60e21b815260040160405180910390fd5b61178f6000848460000151611653565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff198082166001600160401b0392831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b4290921691909102179092559086018083529120549091166118795760005481101561187957825160008281526004602090815260409091208054918601516001600160401b0316600160a01b026001600160e01b03199092166001600160a01b03909316929092171790555b5082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b60408051606081018252600080825260208201819052918101829052905482908110156119c357600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff161515918101829052906119c15780516001600160a01b031615611958579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b82046001600160401b031693830193909352600160e01b900460ff16151592810192909252156119bc579392505050565b611958565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6040516bffffffffffffffffffffffff19606083901b166020820152600090603401604051602081830303815290604052805190602001209050919050565b60008315611a8957611a828260105485611d20565b90506113f7565b611a828260115485611d20565b60006001600160a01b0384163b15611b9957604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611ada903390899088908890600401612406565b602060405180830381600087803b158015611af457600080fd5b505af1925050508015611b24575060408051601f3d908101601f19168201909252611b2191810190612309565b60015b611b7f573d808015611b52576040519150601f19603f3d011682016040523d82523d6000602084013e611b57565b606091505b508051611b77576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611b9d565b5060015b949350505050565b6060600a805461086190612573565b606081611bd85750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611c025780611bec816125ae565b9150611bfb9050600a836124fd565b9150611bdc565b6000816001600160401b03811115611c1c57611c1c61261f565b6040519080825280601f01601f191660200182016040528015611c46576020820181803683370190505b5090505b8415611b9d57611c5b600183612530565b9150611c68600a866125c9565b611c739060306124e5565b60f81b818381518110611c8857611c88612609565b60200101906001600160f81b031916908160001a905350611caa600a866124fd565b9450611c4a565b60006001600160a01b038216611cda576040516335ebb31960e01b815260040160405180910390fd5b506001600160a01b0316600090815260056020526040902054600160401b90046001600160401b031690565b610a47828260405180602001604052806000815250611d36565b600082611d2d8584611d43565b14949350505050565b6109b18383836001611db7565b600081815b8451811015611daf576000858281518110611d6557611d65612609565b60200260200101519050808311611d8b5760008381526020829052604090209250611d9c565b600081815260208490526040902092505b5080611da7816125ae565b915050611d48565b509392505050565b6000546001600160a01b038516611de057604051622e076360e81b815260040160405180910390fd5b83611dfe5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff1981166001600160401b038083168c018116918217600160401b67ffffffffffffffff1990941690921783900481168c018116909202179091558584526004909252822080546001600160e01b031916909317600160a01b42909216919091021790915581905b85811015611f145760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4838015611eea5750611ee86000888488611a96565b155b15611f08576040516368d2bf6b60e11b815260040160405180910390fd5b60019182019101611e93565b506000556118bc565b828054611f2990612573565b90600052602060002090601f016020900481019282611f4b5760008555611f91565b82601f10611f6457805160ff1916838001178555611f91565b82800160010185558215611f91579182015b82811115611f91578251825591602001919060010190611f76565b50611f9d929150611fa1565b5090565b5b80821115611f9d5760008155600101611fa2565b60006001600160401b03831115611fcf57611fcf61261f565b611fe2601f8401601f19166020016124b5565b9050828152838383011115611ff657600080fd5b828260208301376000602084830101529392505050565b80356001600160a01b038116811461202457600080fd5b919050565b8035801515811461202457600080fd5b60006020828403121561204b57600080fd5b6113f78261200d565b6000806040838503121561206757600080fd5b6120708361200d565b915061207e6020840161200d565b90509250929050565b60008060006060848603121561209c57600080fd5b6120a58461200d565b92506120b36020850161200d565b9150604084013590509250925092565b600080600080608085870312156120d957600080fd5b6120e28561200d565b93506120f06020860161200d565b92506040850135915060608501356001600160401b0381111561211257600080fd5b8501601f8101871361212357600080fd5b61213287823560208401611fb6565b91505092959194509250565b6000806040838503121561215157600080fd5b61215a8361200d565b915061207e60208401612029565b6000806040838503121561217b57600080fd5b6121848361200d565b946020939093013593505050565b600060208083850312156121a557600080fd5b82356001600160401b03808211156121bc57600080fd5b818501915085601f8301126121d057600080fd5b8135818111156121e2576121e261261f565b8060051b91506121f38483016124b5565b8181528481019084860184860187018a101561220e57600080fd5b600095505b83861015612238576122248161200d565b835260019590950194918601918601612213565b5098975050505050505050565b6000806000806060858703121561225b57600080fd5b61226485612029565b935060208501356001600160401b038082111561228057600080fd5b818701915087601f83011261229457600080fd5b8135818111156122a357600080fd5b8860208260051b85010111156122b857600080fd5b95986020929092019750949560400135945092505050565b600080604083850312156122e357600080fd5b61218483612029565b6000602082840312156122fe57600080fd5b81356113f781612635565b60006020828403121561231b57600080fd5b81516113f781612635565b60006020828403121561233857600080fd5b81356001600160401b0381111561234e57600080fd5b8201601f8101841361235f57600080fd5b611b9d84823560208401611fb6565b60006020828403121561238057600080fd5b813561ffff811681146113f757600080fd5b6000602082840312156123a457600080fd5b5035919050565b600081518084526123c3816020860160208601612547565b601f01601f19169290920160200192915050565b600083516123e9818460208801612547565b8351908301906123fd818360208801612547565b01949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612439908301846123ab565b9695505050505050565b6020815260006113f760208301846123ab565b60208082526010908201526f496e7375666669656e742066756e647360801b604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b604051601f8201601f191681016001600160401b03811182821017156124dd576124dd61261f565b604052919050565b600082198211156124f8576124f86125dd565b500190565b60008261250c5761250c6125f3565b500490565b600081600019048311821515161561252b5761252b6125dd565b500290565b600082821015612542576125426125dd565b500390565b60005b8381101561256257818101518382015260200161254a565b838111156112ef5750506000910152565b600181811c9082168061258757607f821691505b602082108114156125a857634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156125c2576125c26125dd565b5060010190565b6000826125d8576125d86125f3565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610af157600080fdfea264697066735822122026e4458afd56570743f71e4824aead0607e0d7669169dcb63f99d2b59653e65164736f6c634300080700330000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000003d68747470733a2f2f75732d63656e7472616c312d706978656c2d61323430392e636c6f756466756e6374696f6e732e6e65742f6170702f746f6b656e2f000000

Deployed Bytecode

0x6080604052600436106102675760003560e01c806384db206811610144578063c87b56dd116100b6578063e5a88cdb1161007a578063e5a88cdb14610723578063e97800cb14610742578063e985e9c514610762578063ed816179146107ab578063f2fde38b146107c0578063f4da1846146107e057600080fd5b8063c87b56dd1461068d578063cbce4c97146106ad578063cef11729146106cd578063d5abeb01146106ed578063dc33e6811461070357600080fd5b8063a22cb46511610108578063a22cb465146105ce578063b0e5629d146105ee578063b88d4fde14610601578063bbb8974414610621578063bc951b9114610655578063c4ae31681461067857600080fd5b806384db20681461051c5780638da5cb5b146105325780639231ab2a1461055057806395d89b41146105a6578063a0712d68146105bb57600080fd5b806342842e0e116101dd5780636352211e116101a15780636352211e146104675780636f8b44b01461048757806370a08231146104a7578063715018a6146104c7578063729ad39e146104dc5780637e388e8a146104fc57600080fd5b806342842e0e146103d7578063442d9dec146103f757806344a0d68a1461040d57806355f804b31461042d5780635c975abb1461044d57600080fd5b806313faede61161022f57806313faede61461033d57806318160ddd1461036157806322cce9da1461037a57806323b872dd1461039a5780633ccfd60b146103ba57806341827f13146103c257600080fd5b806301ffc9a71461026c57806306fdde03146102a1578063081812fc146102c3578063095ea7b3146102fb57806309e7fe1b1461031d575b600080fd5b34801561027857600080fd5b5061028c6102873660046122ec565b610800565b60405190151581526020015b60405180910390f35b3480156102ad57600080fd5b506102b6610852565b6040516102989190612443565b3480156102cf57600080fd5b506102e36102de366004612392565b6108e4565b6040516001600160a01b039091168152602001610298565b34801561030757600080fd5b5061031b610316366004612168565b610928565b005b34801561032957600080fd5b5061031b610338366004612039565b6109b6565b34801561034957600080fd5b50610353600d5481565b604051908152602001610298565b34801561036d57600080fd5b5060015460005403610353565b34801561038657600080fd5b5061031b6103953660046122d0565b610a0b565b3480156103a657600080fd5b5061031b6103b5366004612087565b610a4b565b61031b610a56565b3480156103ce57600080fd5b506102b6610af4565b3480156103e357600080fd5b5061031b6103f2366004612087565b610b82565b34801561040357600080fd5b50610353600e5481565b34801561041957600080fd5b5061031b610428366004612392565b610b9d565b34801561043957600080fd5b5061031b610448366004612326565b610bcc565b34801561045957600080fd5b50600b5461028c9060ff1681565b34801561047357600080fd5b506102e3610482366004612392565b610c09565b34801561049357600080fd5b5061031b6104a2366004612392565b610c1b565b3480156104b357600080fd5b506103536104c2366004612039565b610c4a565b3480156104d357600080fd5b5061031b610c98565b3480156104e857600080fd5b5061031b6104f7366004612192565b610cce565b34801561050857600080fd5b5061031b6105173660046122d0565b610d40565b34801561052857600080fd5b50610353600f5481565b34801561053e57600080fd5b506008546001600160a01b03166102e3565b34801561055c57600080fd5b5061057061056b366004612392565b610d7c565b6040805182516001600160a01b031681526020808401516001600160401b03169082015291810151151590820152606001610298565b3480156105b257600080fd5b506102b6610da2565b61031b6105c9366004612392565b610db1565b3480156105da57600080fd5b5061031b6105e936600461213e565b61103c565b61031b6105fc366004612245565b6110d2565b34801561060d57600080fd5b5061031b61061c3660046120c3565b6112bb565b34801561062d57600080fd5b50600b546106429062010000900461ffff1681565b60405161ffff9091168152602001610298565b34801561066157600080fd5b50600b5461064290640100000000900461ffff1681565b34801561068457600080fd5b5061031b6112f5565b34801561069957600080fd5b506102b66106a8366004612392565b611333565b3480156106b957600080fd5b5061031b6106c8366004612168565b6113fe565b3480156106d957600080fd5b5061031b6106e836600461236e565b611432565b3480156106f957600080fd5b50610353600c5481565b34801561070f57600080fd5b5061035361071e366004612039565b611480565b34801561072f57600080fd5b50600b5461028c90610100900460ff1681565b34801561074e57600080fd5b5061031b61075d36600461236e565b61148b565b34801561076e57600080fd5b5061028c61077d366004612054565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b3480156107b757600080fd5b5061031b6114d5565b3480156107cc57600080fd5b5061031b6107db366004612039565b61151c565b3480156107ec57600080fd5b5061031b6107fb366004612168565b6115b4565b60006001600160e01b031982166380ac58cd60e01b148061083157506001600160e01b03198216635b5e139f60e01b145b8061084c57506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606002805461086190612573565b80601f016020809104026020016040519081016040528092919081815260200182805461088d90612573565b80156108da5780601f106108af576101008083540402835291602001916108da565b820191906000526020600020905b8154815290600101906020018083116108bd57829003601f168201915b5050505050905090565b60006108ef82611628565b61090c576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600061093382610c09565b9050806001600160a01b0316836001600160a01b031614156109685760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b038216148015906109885750610986813361077d565b155b156109a6576040516367d9dca160e11b815260040160405180910390fd5b6109b1838383611653565b505050565b6008546001600160a01b031633146109e95760405162461bcd60e51b81526004016109e090612480565b60405180910390fd5b600980546001600160a01b0319166001600160a01b0392909216919091179055565b6008546001600160a01b03163314610a355760405162461bcd60e51b81526004016109e090612480565b8115610a415760105550565b60118190555b5050565b6109b18383836116af565b6008546001600160a01b03163314610a805760405162461bcd60e51b81526004016109e090612480565b6000610a946008546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d8060008114610ade576040519150601f19603f3d011682016040523d82523d6000602084013e610ae3565b606091505b5050905080610af157600080fd5b50565b600a8054610b0190612573565b80601f0160208091040260200160405190810160405280929190818152602001828054610b2d90612573565b8015610b7a5780601f10610b4f57610100808354040283529160200191610b7a565b820191906000526020600020905b815481529060010190602001808311610b5d57829003601f168201915b505050505081565b6109b1838383604051806020016040528060008152506112bb565b6008546001600160a01b03163314610bc75760405162461bcd60e51b81526004016109e090612480565b600d55565b6008546001600160a01b03163314610bf65760405162461bcd60e51b81526004016109e090612480565b8051610a4790600a906020840190611f1d565b6000610c14826118c3565b5192915050565b6008546001600160a01b03163314610c455760405162461bcd60e51b81526004016109e090612480565b600c55565b60006001600160a01b038216610c73576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600560205260409020546001600160401b031690565b6008546001600160a01b03163314610cc25760405162461bcd60e51b81526004016109e090612480565b610ccc60006119dc565b565b6008546001600160a01b03163314610cf85760405162461bcd60e51b81526004016109e090612480565b60005b8151811015610a47576000828281518110610d1857610d18612609565b60200260200101519050610d2d81600161161e565b5080610d38816125ae565b915050610cfb565b6008546001600160a01b03163314610d6a5760405162461bcd60e51b81526004016109e090612480565b8115610d7657600e5550565b600f5550565b604080516060810182526000808252602082018190529181019190915261084c826118c3565b60606003805461086190612573565b6008546001600160a01b03163314610ff5576000610dce33610c4a565b600b5490915060ff1615610de157600080fd5b600b54610100900460ff1615610e395760405162461bcd60e51b815260206004820152601860248201527f596f752063616e74206d696e74206f6e2050726573616c65000000000000000060448201526064016109e0565b60008211610e955760405162461bcd60e51b8152602060048201526024808201527f4d696e7420616d6f756e742073686f756c6420626520677265617465722074686044820152630616e20360e41b60648201526084016109e0565b600b5462010000900461ffff16821115610f015760405162461bcd60e51b815260206004820152602760248201527f536f72727920796f752063616e74206d696e74207468697320616d6f756e74206044820152666174206f6e636560c81b60648201526084016109e0565b600c5482610f126001546000540390565b610f1c91906124e5565b1115610f5f5760405162461bcd60e51b815260206004820152601260248201527145786365656473204d617820537570706c7960701b60448201526064016109e0565b600b54640100000000900461ffff16610f7883836124e5565b1115610fc65760405162461bcd60e51b815260206004820152601860248201527f536f72727920796f752063616e74206d696e74206d6f7265000000000000000060448201526064016109e0565b81600d54610fd49190612511565b341015610ff35760405162461bcd60e51b81526004016109e090612456565b505b610fff338261161e565b6040805182815234602082015233917f25b428dfde728ccfaddad7e29e4ac23c24ed7fd1a6e3e3f91894a9a073f5dfff910160405180910390a250565b6001600160a01b0382163314156110665760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b831561118d5761111f60016110e633611a2e565b858580806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250611a6d92505050565b61115b5760405162461bcd60e51b815260206004820152600d60248201526c24b73b30b634b210383937b7b360991b60448201526064016109e0565b80600e546111699190612511565b3410156111885760405162461bcd60e51b81526004016109e090612456565b611204565b61119b60006110e633611a2e565b6111d75760405162461bcd60e51b815260206004820152600d60248201526c24b73b30b634b210383937b7b360991b60448201526064016109e0565b80600f546111e59190612511565b3410156112045760405162461bcd60e51b81526004016109e090612456565b600b5462010000900461ffff168111156112715760405162461bcd60e51b815260206004820152602860248201527f536f72727920796f752063616e6e6f74206d696e742074686973206d616e79206044820152676174206f6e63652160c01b60648201526084016109e0565b61127b338261161e565b6040805182815234602082015233917f25b428dfde728ccfaddad7e29e4ac23c24ed7fd1a6e3e3f91894a9a073f5dfff910160405180910390a250505050565b6112c68484846116af565b6112d284848484611a96565b6112ef576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6008546001600160a01b0316331461131f5760405162461bcd60e51b81526004016109e090612480565b600b805460ff19811660ff90911615179055565b606061133e82611628565b6113a25760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016109e0565b60006113ac611ba5565b905060008151116113cc57604051806020016040528060008152506113f7565b806113d684611bb4565b6040516020016113e79291906123d7565b6040516020818303038152906040525b9392505050565b6008546001600160a01b031633146114285760405162461bcd60e51b81526004016109e090612480565b610a47828261161e565b6008546001600160a01b0316331461145c5760405162461bcd60e51b81526004016109e090612480565b600b805461ffff9092166401000000000265ffff0000000019909216919091179055565b600061084c82611cb1565b6008546001600160a01b031633146114b55760405162461bcd60e51b81526004016109e090612480565b600b805461ffff909216620100000263ffff000019909216919091179055565b6008546001600160a01b031633146114ff5760405162461bcd60e51b81526004016109e090612480565b600b805461ff001981166101009182900460ff1615909102179055565b6008546001600160a01b031633146115465760405162461bcd60e51b81526004016109e090612480565b6001600160a01b0381166115ab5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016109e0565b610af1816119dc565b6009546001600160a01b0316331461161e5760405162461bcd60e51b815260206004820152602760248201527f536f72727920796f7520646f6e27742068617665207065726d697373696f6e206044820152661d1bc81b5a5b9d60ca1b60648201526084016109e0565b610a478282611d06565b600080548210801561084c575050600090815260046020526040902054600160e01b900460ff161590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60006116ba826118c3565b80519091506000906001600160a01b0316336001600160a01b031614806116e8575081516116e8903361077d565b806117035750336116f8846108e4565b6001600160a01b0316145b90508061172357604051632ce44b5f60e11b815260040160405180910390fd5b846001600160a01b031682600001516001600160a01b0316146117585760405162a1148160e81b815260040160405180910390fd5b6001600160a01b03841661177f57604051633a954ecd60e21b815260040160405180910390fd5b61178f6000848460000151611653565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff198082166001600160401b0392831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b4290921691909102179092559086018083529120549091166118795760005481101561187957825160008281526004602090815260409091208054918601516001600160401b0316600160a01b026001600160e01b03199092166001600160a01b03909316929092171790555b5082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b60408051606081018252600080825260208201819052918101829052905482908110156119c357600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff161515918101829052906119c15780516001600160a01b031615611958579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b82046001600160401b031693830193909352600160e01b900460ff16151592810192909252156119bc579392505050565b611958565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6040516bffffffffffffffffffffffff19606083901b166020820152600090603401604051602081830303815290604052805190602001209050919050565b60008315611a8957611a828260105485611d20565b90506113f7565b611a828260115485611d20565b60006001600160a01b0384163b15611b9957604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611ada903390899088908890600401612406565b602060405180830381600087803b158015611af457600080fd5b505af1925050508015611b24575060408051601f3d908101601f19168201909252611b2191810190612309565b60015b611b7f573d808015611b52576040519150601f19603f3d011682016040523d82523d6000602084013e611b57565b606091505b508051611b77576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611b9d565b5060015b949350505050565b6060600a805461086190612573565b606081611bd85750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611c025780611bec816125ae565b9150611bfb9050600a836124fd565b9150611bdc565b6000816001600160401b03811115611c1c57611c1c61261f565b6040519080825280601f01601f191660200182016040528015611c46576020820181803683370190505b5090505b8415611b9d57611c5b600183612530565b9150611c68600a866125c9565b611c739060306124e5565b60f81b818381518110611c8857611c88612609565b60200101906001600160f81b031916908160001a905350611caa600a866124fd565b9450611c4a565b60006001600160a01b038216611cda576040516335ebb31960e01b815260040160405180910390fd5b506001600160a01b0316600090815260056020526040902054600160401b90046001600160401b031690565b610a47828260405180602001604052806000815250611d36565b600082611d2d8584611d43565b14949350505050565b6109b18383836001611db7565b600081815b8451811015611daf576000858281518110611d6557611d65612609565b60200260200101519050808311611d8b5760008381526020829052604090209250611d9c565b600081815260208490526040902092505b5080611da7816125ae565b915050611d48565b509392505050565b6000546001600160a01b038516611de057604051622e076360e81b815260040160405180910390fd5b83611dfe5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff1981166001600160401b038083168c018116918217600160401b67ffffffffffffffff1990941690921783900481168c018116909202179091558584526004909252822080546001600160e01b031916909317600160a01b42909216919091021790915581905b85811015611f145760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4838015611eea5750611ee86000888488611a96565b155b15611f08576040516368d2bf6b60e11b815260040160405180910390fd5b60019182019101611e93565b506000556118bc565b828054611f2990612573565b90600052602060002090601f016020900481019282611f4b5760008555611f91565b82601f10611f6457805160ff1916838001178555611f91565b82800160010185558215611f91579182015b82811115611f91578251825591602001919060010190611f76565b50611f9d929150611fa1565b5090565b5b80821115611f9d5760008155600101611fa2565b60006001600160401b03831115611fcf57611fcf61261f565b611fe2601f8401601f19166020016124b5565b9050828152838383011115611ff657600080fd5b828260208301376000602084830101529392505050565b80356001600160a01b038116811461202457600080fd5b919050565b8035801515811461202457600080fd5b60006020828403121561204b57600080fd5b6113f78261200d565b6000806040838503121561206757600080fd5b6120708361200d565b915061207e6020840161200d565b90509250929050565b60008060006060848603121561209c57600080fd5b6120a58461200d565b92506120b36020850161200d565b9150604084013590509250925092565b600080600080608085870312156120d957600080fd5b6120e28561200d565b93506120f06020860161200d565b92506040850135915060608501356001600160401b0381111561211257600080fd5b8501601f8101871361212357600080fd5b61213287823560208401611fb6565b91505092959194509250565b6000806040838503121561215157600080fd5b61215a8361200d565b915061207e60208401612029565b6000806040838503121561217b57600080fd5b6121848361200d565b946020939093013593505050565b600060208083850312156121a557600080fd5b82356001600160401b03808211156121bc57600080fd5b818501915085601f8301126121d057600080fd5b8135818111156121e2576121e261261f565b8060051b91506121f38483016124b5565b8181528481019084860184860187018a101561220e57600080fd5b600095505b83861015612238576122248161200d565b835260019590950194918601918601612213565b5098975050505050505050565b6000806000806060858703121561225b57600080fd5b61226485612029565b935060208501356001600160401b038082111561228057600080fd5b818701915087601f83011261229457600080fd5b8135818111156122a357600080fd5b8860208260051b85010111156122b857600080fd5b95986020929092019750949560400135945092505050565b600080604083850312156122e357600080fd5b61218483612029565b6000602082840312156122fe57600080fd5b81356113f781612635565b60006020828403121561231b57600080fd5b81516113f781612635565b60006020828403121561233857600080fd5b81356001600160401b0381111561234e57600080fd5b8201601f8101841361235f57600080fd5b611b9d84823560208401611fb6565b60006020828403121561238057600080fd5b813561ffff811681146113f757600080fd5b6000602082840312156123a457600080fd5b5035919050565b600081518084526123c3816020860160208601612547565b601f01601f19169290920160200192915050565b600083516123e9818460208801612547565b8351908301906123fd818360208801612547565b01949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612439908301846123ab565b9695505050505050565b6020815260006113f760208301846123ab565b60208082526010908201526f496e7375666669656e742066756e647360801b604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b604051601f8201601f191681016001600160401b03811182821017156124dd576124dd61261f565b604052919050565b600082198211156124f8576124f86125dd565b500190565b60008261250c5761250c6125f3565b500490565b600081600019048311821515161561252b5761252b6125dd565b500290565b600082821015612542576125426125dd565b500390565b60005b8381101561256257818101518382015260200161254a565b838111156112ef5750506000910152565b600181811c9082168061258757607f821691505b602082108114156125a857634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156125c2576125c26125dd565b5060010190565b6000826125d8576125d86125f3565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610af157600080fdfea264697066735822122026e4458afd56570743f71e4824aead0607e0d7669169dcb63f99d2b59653e65164736f6c63430008070033

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

0000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000003d68747470733a2f2f75732d63656e7472616c312d706978656c2d61323430392e636c6f756466756e6374696f6e732e6e65742f6170702f746f6b656e2f000000

-----Decoded View---------------
Arg [0] : _baseUrl (string): https://us-central1-pixel-a2409.cloudfunctions.net/app/token/

-----Encoded View---------------
4 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 000000000000000000000000000000000000000000000000000000000000003d
Arg [2] : 68747470733a2f2f75732d63656e7472616c312d706978656c2d61323430392e
Arg [3] : 636c6f756466756e6374696f6e732e6e65742f6170702f746f6b656e2f000000


Deployed Bytecode Sourcemap

51826:7277:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29961:305;;;;;;;;;;-1:-1:-1;29961:305:0;;;;;:::i;:::-;;:::i;:::-;;;8444:14:1;;8437:22;8419:41;;8407:2;8392:18;29961:305:0;;;;;;;;33321:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;34824:204::-;;;;;;;;;;-1:-1:-1;34824:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;7742:32:1;;;7724:51;;7712:2;7697:18;34824:204:0;7578:203:1;34387:371:0;;;;;;;;;;-1:-1:-1;34387:371:0;;;;;:::i;:::-;;:::i;:::-;;52854:113;;;;;;;;;;-1:-1:-1;52854:113:0;;;;;:::i;:::-;;:::i;52355:32::-;;;;;;;;;;;;;;;;;;;14032:25:1;;;14020:2;14005:18;52355:32:0;13886:177:1;29618:271:0;;;;;;;;;;-1:-1:-1;29854:12:0;;29662:7;29838:13;:28;29618:271;;53305:215;;;;;;;;;;-1:-1:-1;53305:215:0;;;;;:::i;:::-;;:::i;35681:170::-;;;;;;;;;;-1:-1:-1;35681:170:0;;;;;:::i;:::-;;:::i;58943:157::-;;;:::i;52013:24::-;;;;;;;;;;;;;:::i;35922:185::-;;;;;;;;;;-1:-1:-1;35922:185:0;;;;;:::i;:::-;;:::i;52418:42::-;;;;;;;;;;;;;;;;57638:87;;;;;;;;;;-1:-1:-1;57638:87:0;;;;;:::i;:::-;;:::i;58335:107::-;;;;;;;;;;-1:-1:-1;58335:107:0;;;;;:::i;:::-;;:::i;52066:26::-;;;;;;;;;;-1:-1:-1;52066:26:0;;;;;;;;33130:124;;;;;;;;;;-1:-1:-1;33130:124:0;;;;;:::i;:::-;;:::i;58233:94::-;;;;;;;;;;-1:-1:-1;58233:94:0;;;;;:::i;:::-;;:::i;30330:206::-;;;;;;;;;;-1:-1:-1;30330:206:0;;;;;:::i;:::-;;:::i;7154:103::-;;;;;;;;;;;;;:::i;56782:234::-;;;;;;;;;;-1:-1:-1;56782:234:0;;;;;:::i;:::-;;:::i;57733:222::-;;;;;;;;;;-1:-1:-1;57733:222:0;;;;;:::i;:::-;;:::i;52492:42::-;;;;;;;;;;;;;;;;6503:87;;;;;;;;;;-1:-1:-1;6576:6:0;;-1:-1:-1;;;;;6576:6:0;6503:87;;58768:167;;;;;;;;;;-1:-1:-1;58768:167:0;;;;;:::i;:::-;;:::i;:::-;;;;13479:13:1;;-1:-1:-1;;;;;13475:39:1;13457:58;;13575:4;13563:17;;;13557:24;-1:-1:-1;;;;;13553:49:1;13531:20;;;13524:79;13661:17;;;13655:24;13648:32;13641:40;13619:20;;;13612:70;13445:2;13430:18;58768:167:0;13249:439:1;33490:104:0;;;;;;;;;;;;;:::i;55670:985::-;;;;;;:::i;:::-;;:::i;35100:279::-;;;;;;;;;;-1:-1:-1;35100:279:0;;;;;:::i;:::-;;:::i;54196:1330::-;;;;;;:::i;:::-;;:::i;36178:342::-;;;;;;;;;;-1:-1:-1;36178:342:0;;;;;:::i;:::-;;:::i;52167:46::-;;;;;;;;;;-1:-1:-1;52167:46:0;;;;;;;;;;;;;;13867:6:1;13855:19;;;13837:38;;13825:2;13810:18;52167:46:0;13693:188:1;52220:42:0;;;;;;;;;;-1:-1:-1;52220:42:0;;;;;;;;;;;58450:75;;;;;;;;;;;;;:::i;57143:487::-;;;;;;;;;;-1:-1:-1;57143:487:0;;;;;:::i;:::-;;:::i;56663:111::-;;;;;;;;;;-1:-1:-1;56663:111:0;;;;;:::i;:::-;;:::i;58100:119::-;;;;;;;;;;-1:-1:-1;58100:119:0;;;;;:::i;:::-;;:::i;52301:31::-;;;;;;;;;;;;;;;;55534:113;;;;;;;;;;-1:-1:-1;55534:113:0;;;;;:::i;:::-;;:::i;52099:35::-;;;;;;;;;;-1:-1:-1;52099:35:0;;;;;;;;;;;57963:129;;;;;;;;;;-1:-1:-1;57963:129:0;;;;;:::i;:::-;;:::i;35450:164::-;;;;;;;;;;-1:-1:-1;35450:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;35571:25:0;;;35547:4;35571:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;35450:164;58533:99;;;;;;;;;;;;;:::i;7412:201::-;;;;;;;;;;-1:-1:-1;7412:201:0;;;;;:::i;:::-;;:::i;53045:252::-;;;;;;;;;;-1:-1:-1;53045:252:0;;;;;:::i;:::-;;:::i;29961:305::-;30063:4;-1:-1:-1;;;;;;30100:40:0;;-1:-1:-1;;;30100:40:0;;:105;;-1:-1:-1;;;;;;;30157:48:0;;-1:-1:-1;;;30157:48:0;30100:105;:158;;;-1:-1:-1;;;;;;;;;;19396:40:0;;;30222:36;30080:178;29961:305;-1:-1:-1;;29961:305:0:o;33321:100::-;33375:13;33408:5;33401:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33321:100;:::o;34824:204::-;34892:7;34917:16;34925:7;34917;:16::i;:::-;34912:64;;34942:34;;-1:-1:-1;;;34942:34:0;;;;;;;;;;;34912:64;-1:-1:-1;34996:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;34996:24:0;;34824:204::o;34387:371::-;34460:13;34476:24;34492:7;34476:15;:24::i;:::-;34460:40;;34521:5;-1:-1:-1;;;;;34515:11:0;:2;-1:-1:-1;;;;;34515:11:0;;34511:48;;;34535:24;;-1:-1:-1;;;34535:24:0;;;;;;;;;;;34511:48;5307:10;-1:-1:-1;;;;;34576:21:0;;;;;;:63;;-1:-1:-1;34602:37:0;34619:5;5307:10;35450:164;:::i;34602:37::-;34601:38;34576:63;34572:138;;;34663:35;;-1:-1:-1;;;34663:35:0;;;;;;;;;;;34572:138;34722:28;34731:2;34735:7;34744:5;34722:8;:28::i;:::-;34449:309;34387:371;;:::o;52854:113::-;6576:6;;-1:-1:-1;;;;;6576:6:0;5307:10;6723:23;6715:68;;;;-1:-1:-1;;;6715:68:0;;;;;;;:::i;:::-;;;;;;;;;52930:17:::1;:29:::0;;-1:-1:-1;;;;;;52930:29:0::1;-1:-1:-1::0;;;;;52930:29:0;;;::::1;::::0;;;::::1;::::0;;52854:113::o;53305:215::-;6576:6;;-1:-1:-1;;;;;6576:6:0;5307:10;6723:23;6715:68;;;;-1:-1:-1;;;6715:68:0;;;;;;;:::i;:::-;53399:13:::1;53396:117;;;53428:14;:22:::0;-1:-1:-1;53305:215:0:o;53396:117::-:1;53480:14;:22:::0;;;53396:117:::1;53305:215:::0;;:::o;35681:170::-;35815:28;35825:4;35831:2;35835:7;35815:9;:28::i;58943:157::-;6576:6;;-1:-1:-1;;;;;6576:6:0;5307:10;6723:23;6715:68;;;;-1:-1:-1;;;6715:68:0;;;;;;;:::i;:::-;59000:7:::1;59021;6576:6:::0;;-1:-1:-1;;;;;6576:6:0;;6503:87;59021:7:::1;-1:-1:-1::0;;;;;59013:21:0::1;59042;59013:55;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;58999:69;;;59087:2;59079:11;;;::::0;::::1;;58988:112;58943:157::o:0;52013:24::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;35922:185::-;36060:39;36077:4;36083:2;36087:7;36060:39;;;;;;;;;;;;:16;:39::i;57638:87::-;6576:6;;-1:-1:-1;;;;;6576:6:0;5307:10;6723:23;6715:68;;;;-1:-1:-1;;;6715:68:0;;;;;;;:::i;:::-;57702:4:::1;:15:::0;57638:87::o;58335:107::-;6576:6;;-1:-1:-1;;;;;6576:6:0;5307:10;6723:23;6715:68;;;;-1:-1:-1;;;6715:68:0;;;;;;;:::i;:::-;58410:24;;::::1;::::0;:10:::1;::::0;:24:::1;::::0;::::1;::::0;::::1;:::i;33130:124::-:0;33194:7;33221:20;33233:7;33221:11;:20::i;:::-;:25;;33130:124;-1:-1:-1;;33130:124:0:o;58233:94::-;6576:6;;-1:-1:-1;;;;;6576:6:0;5307:10;6723:23;6715:68;;;;-1:-1:-1;;;6715:68:0;;;;;;;:::i;:::-;58300:9:::1;:19:::0;58233:94::o;30330:206::-;30394:7;-1:-1:-1;;;;;30418:19:0;;30414:60;;30446:28;;-1:-1:-1;;;30446:28:0;;;;;;;;;;;30414:60;-1:-1:-1;;;;;;30500:19:0;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;30500:27:0;;30330:206::o;7154:103::-;6576:6;;-1:-1:-1;;;;;6576:6:0;5307:10;6723:23;6715:68;;;;-1:-1:-1;;;6715:68:0;;;;;;;:::i;:::-;7219:30:::1;7246:1;7219:18;:30::i;:::-;7154:103::o:0;56782:234::-;6576:6;;-1:-1:-1;;;;;6576:6:0;5307:10;6723:23;6715:68;;;;-1:-1:-1;;;6715:68:0;;;;;;;:::i;:::-;56868:9:::1;56863:146;56887:17;:24;56883:1;:28;56863:146;;;56933:10;56946:17;56964:1;56946:20;;;;;;;;:::i;:::-;;;;;;;56933:33;;56981:16;56991:2;56995:1;56981:9;:16::i;:::-;-1:-1:-1::0;56913:3:0;::::1;::::0;::::1;:::i;:::-;;;;56863:146;;57733:222:::0;6576:6;;-1:-1:-1;;;;;6576:6:0;5307:10;6723:23;6715:68;;;;-1:-1:-1;;;6715:68:0;;;;;;;:::i;:::-;57829:12:::1;57826:122;;;57857:14;:25:::0;-1:-1:-1;53305:215:0:o;57826:122::-:1;57912:14;:25:::0;-1:-1:-1;57733:222:0:o;58768:167::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;58907:20:0;58919:7;58907:11;:20::i;33490:104::-;33546:13;33579:7;33572:14;;;;;:::i;55670:985::-;6576:6;;-1:-1:-1;;;;;6576:6:0;55735:10;:21;55731:810;;55773:23;55799:21;55809:10;55799:9;:21::i;:::-;55846:6;;55773:47;;-1:-1:-1;55846:6:0;;55845:7;55837:16;;;;;;55877;;;;;;;55876:17;55868:54;;;;-1:-1:-1;;;55868:54:0;;9651:2:1;55868:54:0;;;9633:21:1;9690:2;9670:18;;;9663:30;9729:26;9709:18;;;9702:54;9773:18;;55868:54:0;9449:348:1;55868:54:0;55959:1;55945:11;:15;55937:64;;;;-1:-1:-1;;;55937:64:0;;11942:2:1;55937:64:0;;;11924:21:1;11981:2;11961:18;;;11954:30;12020:34;12000:18;;;11993:62;-1:-1:-1;;;12071:18:1;;;12064:34;12115:19;;55937:64:0;11740:400:1;55937:64:0;56057:27;;;;;;;56042:42;;;56016:143;;;;-1:-1:-1;;;56016:143:0;;10757:2:1;56016:143:0;;;10739:21:1;10796:2;10776:18;;;10769:30;10835:34;10815:18;;;10808:62;-1:-1:-1;;;10886:18:1;;;10879:37;10933:19;;56016:143:0;10555:403:1;56016:143:0;56231:9;;56216:11;56200:13;29854:12;;29662:7;29838:13;:28;;29618:271;56200:13;:27;;;;:::i;:::-;:40;;56174:120;;;;-1:-1:-1;;;56174:120:0;;8897:2:1;56174:120:0;;;8879:21:1;8936:2;8916:18;;;8909:30;-1:-1:-1;;;8955:18:1;;;8948:48;9013:18;;56174:120:0;8695:342:1;56174:120:0;56370:22;;;;;;;56336:29;56354:11;56336:15;:29;:::i;:::-;56335:57;;56309:143;;;;-1:-1:-1;;;56309:143:0;;13098:2:1;56309:143:0;;;13080:21:1;13137:2;13117:18;;;13110:30;13176:26;13156:18;;;13149:54;13220:18;;56309:143:0;12896:348:1;56309:143:0;56497:11;56490:4;;:18;;;;:::i;:::-;56477:9;:31;;56469:60;;;;-1:-1:-1;;;56469:60:0;;;;;;;:::i;:::-;55758:783;55731:810;56553:34;56563:10;56575:11;56553:9;:34::i;:::-;56604:43;;;14242:25:1;;;56637:9:0;14298:2:1;14283:18;;14276:34;56611:10:0;;56604:43;;14215:18:1;56604:43:0;;;;;;;55670:985;:::o;35100:279::-;-1:-1:-1;;;;;35191:24:0;;5307:10;35191:24;35187:54;;;35224:17;;-1:-1:-1;;;35224:17:0;;;;;;;;;;;35187:54;5307:10;35254:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;35254:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;35254:53:0;;;;;;;;;;35323:48;;8419:41:1;;;35254:42:0;;5307:10;35323:48;;8392:18:1;35323:48:0;;;;;;;35100:279;;:::o;54196:1330::-;54430:12;54427:703;;;54497:38;54505:4;54510:17;54516:10;54510:5;:17::i;:::-;54529:5;;54497:38;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;54497:7:0;;-1:-1:-1;;;54497:38:0:i;:::-;54467:125;;;;-1:-1:-1;;;54467:125:0;;12347:2:1;54467:125:0;;;12329:21:1;12386:2;12366:18;;;12359:30;-1:-1:-1;;;12405:18:1;;;12398:43;12458:18;;54467:125:0;12145:337:1;54467:125:0;54689:11;54672:14;;:28;;;;:::i;:::-;54658:9;:43;;54628:133;;;;-1:-1:-1;;;54628:133:0;;;;;;;:::i;:::-;54427:703;;;54840:40;54848:5;54855:17;54861:10;54855:5;:17::i;54840:40::-;54810:127;;;;-1:-1:-1;;;54810:127:0;;12347:2:1;54810:127:0;;;12329:21:1;12386:2;12366:18;;;12359:30;-1:-1:-1;;;12405:18:1;;;12398:43;12458:18;;54810:127:0;12145:337:1;54810:127:0;55017:11;55000:14;;:28;;;;:::i;:::-;54986:9;:43;;54956:133;;;;-1:-1:-1;;;54956:133:0;;;;;;;:::i;:::-;55191:27;;;;;;;55176:42;;;55150:144;;;;-1:-1:-1;;;55150:144:0;;12689:2:1;55150:144:0;;;12671:21:1;12728:2;12708:18;;;12701:30;12767:34;12747:18;;;12740:62;-1:-1:-1;;;12818:18:1;;;12811:38;12866:19;;55150:144:0;12487:404:1;55150:144:0;55381:34;55391:10;55403:11;55381:9;:34::i;:::-;55460:43;;;14242:25:1;;;55493:9:0;14298:2:1;14283:18;;14276:34;55467:10:0;;55460:43;;14215:18:1;55460:43:0;;;;;;;54196:1330;;;;:::o;36178:342::-;36345:28;36355:4;36361:2;36365:7;36345:9;:28::i;:::-;36389:48;36412:4;36418:2;36422:7;36431:5;36389:22;:48::i;:::-;36384:129;;36461:40;;-1:-1:-1;;;36461:40:0;;;;;;;;;;;36384:129;36178:342;;;;:::o;58450:75::-;6576:6;;-1:-1:-1;;;;;6576:6:0;5307:10;6723:23;6715:68;;;;-1:-1:-1;;;6715:68:0;;;;;;;:::i;:::-;58511:6:::1;::::0;;-1:-1:-1;;58501:16:0;::::1;58511:6;::::0;;::::1;58510:7;58501:16;::::0;;58450:75::o;57143:487::-;57261:13;57314:16;57322:7;57314;:16::i;:::-;57292:113;;;;-1:-1:-1;;;57292:113:0;;11526:2:1;57292:113:0;;;11508:21:1;11565:2;11545:18;;;11538:30;11604:34;11584:18;;;11577:62;-1:-1:-1;;;11655:18:1;;;11648:45;11710:19;;57292:113:0;11324:411:1;57292:113:0;57416:28;57447:10;:8;:10::i;:::-;57416:41;;57519:1;57494:14;57488:28;:32;:134;;;;;;;;;;;;;;;;;57564:14;57580:18;:7;:16;:18::i;:::-;57547:52;;;;;;;;;:::i;:::-;;;;;;;;;;;;;57488:134;57468:154;57143:487;-1:-1:-1;;;57143:487:0:o;56663:111::-;6576:6;;-1:-1:-1;;;;;6576:6:0;5307:10;6723:23;6715:68;;;;-1:-1:-1;;;6715:68:0;;;;;;;:::i;:::-;56739:27:::1;56749:3;56754:11;56739:9;:27::i;58100:119::-:0;6576:6;;-1:-1:-1;;;;;6576:6:0;5307:10;6723:23;6715:68;;;;-1:-1:-1;;;6715:68:0;;;;;;;:::i;:::-;58179:22:::1;:32:::0;;::::1;::::0;;::::1;::::0;::::1;-1:-1:-1::0;;58179:32:0;;::::1;::::0;;;::::1;::::0;;58100:119::o;55534:113::-;55592:7;55619:20;55633:5;55619:13;:20::i;57963:129::-;6576:6;;-1:-1:-1;;;;;6576:6:0;5307:10;6723:23;6715:68;;;;-1:-1:-1;;;6715:68:0;;;;;;;:::i;:::-;58047:27:::1;:37:::0;;::::1;::::0;;::::1;::::0;::::1;-1:-1:-1::0;;58047:37:0;;::::1;::::0;;;::::1;::::0;;57963:129::o;58533:99::-;6576:6;;-1:-1:-1;;;;;6576:6:0;5307:10;6723:23;6715:68;;;;-1:-1:-1;;;6715:68:0;;;;;;;:::i;:::-;58608:16:::1;::::0;;-1:-1:-1;;58588:36:0;::::1;58608:16;::::0;;;::::1;;;58607:17;58588:36:::0;;::::1;;::::0;;58533:99::o;7412:201::-;6576:6;;-1:-1:-1;;;;;6576:6:0;5307:10;6723:23;6715:68;;;;-1:-1:-1;;;6715:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;7501:22:0;::::1;7493:73;;;::::0;-1:-1:-1;;;7493:73:0;;9244:2:1;7493:73:0::1;::::0;::::1;9226:21:1::0;9283:2;9263:18;;;9256:30;9322:34;9302:18;;;9295:62;-1:-1:-1;;;9373:18:1;;;9366:36;9419:19;;7493:73:0::1;9042:402:1::0;7493:73:0::1;7577:28;7596:8;7577:18;:28::i;53045:252::-:0;53162:17;;-1:-1:-1;;;;;53162:17:0;53148:10;:31;53126:120;;;;-1:-1:-1;;;53126:120:0;;10349:2:1;53126:120:0;;;10331:21:1;10388:2;10368:18;;;10361:30;10427:34;10407:18;;;10400:62;-1:-1:-1;;;10478:18:1;;;10471:37;10525:19;;53126:120:0;10147:403:1;53126:120:0;53257:32;53267:8;53277:11;53257:9;:32::i;36775:144::-;36832:4;36866:13;;36856:7;:23;:55;;;;-1:-1:-1;;36884:20:0;;;;:11;:20;;;;;:27;-1:-1:-1;;;36884:27:0;;;;36883:28;;36775:144::o;43981:196::-;44096:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;44096:29:0;-1:-1:-1;;;;;44096:29:0;;;;;;;;;44141:28;;44096:24;;44141:28;;;;;;;43981:196;;;:::o;39482:2112::-;39597:35;39635:20;39647:7;39635:11;:20::i;:::-;39710:18;;39597:58;;-1:-1:-1;39668:22:0;;-1:-1:-1;;;;;39694:34:0;5307:10;-1:-1:-1;;;;;39694:34:0;;:101;;;-1:-1:-1;39762:18:0;;39745:50;;5307:10;35450:164;:::i;39745:50::-;39694:154;;;-1:-1:-1;5307:10:0;39812:20;39824:7;39812:11;:20::i;:::-;-1:-1:-1;;;;;39812:36:0;;39694:154;39668:181;;39867:17;39862:66;;39893:35;;-1:-1:-1;;;39893:35:0;;;;;;;;;;;39862:66;39965:4;-1:-1:-1;;;;;39943:26:0;:13;:18;;;-1:-1:-1;;;;;39943:26:0;;39939:67;;39978:28;;-1:-1:-1;;;39978:28:0;;;;;;;;;;;39939:67;-1:-1:-1;;;;;40021:16:0;;40017:52;;40046:23;;-1:-1:-1;;;40046:23:0;;;;;;;;;;;40017:52;40190:49;40207:1;40211:7;40220:13;:18;;;40190:8;:49::i;:::-;-1:-1:-1;;;;;40535:18:0;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;40535:31:0;;;-1:-1:-1;;;;;40535:31:0;;;-1:-1:-1;;40535:31:0;;;;;;;40581:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;40581:29:0;;;;;;;;;;;40627:20;;;:11;:20;;;;;;:30;;-1:-1:-1;;;;;;40672:61:0;;;;-1:-1:-1;;;40717:15:0;40672:61;;;;;;;;;;;41007:11;;;41037:24;;;;;:29;41007:11;;41037:29;41033:445;;41262:13;;41248:11;:27;41244:219;;;41332:18;;;41300:24;;;:11;:24;;;;;;;;:50;;41415:28;;;;-1:-1:-1;;;;;41373:70:0;-1:-1:-1;;;41373:70:0;-1:-1:-1;;;;;;41373:70:0;;;-1:-1:-1;;;;;41300:50:0;;;41373:70;;;;;;;41244:219;40510:979;41525:7;41521:2;-1:-1:-1;;;;;41506:27:0;41515:4;-1:-1:-1;;;;;41506:27:0;;;;;;;;;;;41544:42;39586:2008;;39482:2112;;;:::o;31985:1083::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;32151:13:0;;32095:7;;32144:20;;32140:861;;;32185:31;32219:17;;;:11;:17;;;;;;;;;32185:51;;;;;;;;;-1:-1:-1;;;;;32185:51:0;;;;-1:-1:-1;;;32185:51:0;;-1:-1:-1;;;;;32185:51:0;;;;;;;;-1:-1:-1;;;32185:51:0;;;;;;;;;;;;;;32255:731;;32305:14;;-1:-1:-1;;;;;32305:28:0;;32301:101;;32369:9;31985:1083;-1:-1:-1;;;31985:1083:0:o;32301:101::-;-1:-1:-1;;;32746:6:0;32791:17;;;;:11;:17;;;;;;;;;32779:29;;;;;;;;;-1:-1:-1;;;;;32779:29:0;;;;;-1:-1:-1;;;32779:29:0;;-1:-1:-1;;;;;32779:29:0;;;;;;;;-1:-1:-1;;;32779:29:0;;;;;;;;;;;;;32839:28;32835:109;;32907:9;31985:1083;-1:-1:-1;;;31985:1083:0:o;32835:109::-;32706:261;;;32166:835;32140:861;33029:31;;-1:-1:-1;;;33029:31:0;;;;;;;;;;;7773:191;7866:6;;;-1:-1:-1;;;;;7883:17:0;;;-1:-1:-1;;;;;;7883:17:0;;;;;;;7916:40;;7866:6;;;7883:17;7866:6;;7916:40;;7847:16;;7916:40;7836:128;7773:191;:::o;54040:126::-;54132:25;;-1:-1:-1;;6808:2:1;6804:15;;;6800:53;54132:25:0;;;6788:66:1;54095:7:0;;6870:12:1;;54132:25:0;;;;;;;;;;;;54122:36;;;;;;54115:43;;54040:126;;;:::o;53587:349::-;53723:4;53742:12;53739:190;;;53777:52;53796:5;53803:14;;53819:9;53777:18;:52::i;:::-;53770:59;;;;53739:190;53866:52;53885:5;53892:14;;53908:9;53866:18;:52::i;44742:790::-;44897:4;-1:-1:-1;;;;;44918:13:0;;9499:19;:23;44914:611;;44954:72;;-1:-1:-1;;;44954:72:0;;-1:-1:-1;;;;;44954:36:0;;;;;:72;;5307:10;;45005:4;;45011:7;;45020:5;;44954:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;44954:72:0;;;;;;;;-1:-1:-1;;44954:72:0;;;;;;;;;;;;:::i;:::-;;;44950:520;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;45200:13:0;;45196:259;;45250:40;;-1:-1:-1;;;45250:40:0;;;;;;;;;;;45196:259;45405:6;45399:13;45390:6;45386:2;45382:15;45375:38;44950:520;-1:-1:-1;;;;;;45077:55:0;-1:-1:-1;;;45077:55:0;;-1:-1:-1;45070:62:0;;44914:611;-1:-1:-1;45509:4:0;44914:611;44742:790;;;;;;:::o;57024:111::-;57084:13;57117:10;57110:17;;;;;:::i;2789:723::-;2845:13;3066:10;3062:53;;-1:-1:-1;;3093:10:0;;;;;;;;;;;;-1:-1:-1;;;3093:10:0;;;;;2789:723::o;3062:53::-;3140:5;3125:12;3181:78;3188:9;;3181:78;;3214:8;;;;:::i;:::-;;-1:-1:-1;3237:10:0;;-1:-1:-1;3245:2:0;3237:10;;:::i;:::-;;;3181:78;;;3269:19;3301:6;-1:-1:-1;;;;;3291:17:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;3291:17:0;;3269:39;;3319:154;3326:10;;3319:154;;3353:11;3363:1;3353:11;;:::i;:::-;;-1:-1:-1;3422:10:0;3430:2;3422:5;:10;:::i;:::-;3409:24;;:2;:24;:::i;:::-;3396:39;;3379:6;3386;3379:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;3379:56:0;;;;;;;;-1:-1:-1;3450:11:0;3459:2;3450:11;;:::i;:::-;;;3319:154;;30618:207;30679:7;-1:-1:-1;;;;;30703:19:0;;30699:59;;30731:27;;-1:-1:-1;;;30731:27:0;;;;;;;;;;;30699:59;-1:-1:-1;;;;;;30784:19:0;;;;;:12;:19;;;;;:32;-1:-1:-1;;;30784:32:0;;-1:-1:-1;;;;;30784:32:0;;30618:207::o;36927:104::-;36996:27;37006:2;37010:8;36996:27;;;;;;;;;;;;:9;:27::i;958:190::-;1083:4;1136;1107:25;1120:5;1127:4;1107:12;:25::i;:::-;:33;;958:190;-1:-1:-1;;;;958:190:0:o;37394:163::-;37517:32;37523:2;37527:8;37537:5;37544:4;37517:5;:32::i;1510:675::-;1593:7;1636:4;1593:7;1651:497;1675:5;:12;1671:1;:16;1651:497;;;1709:20;1732:5;1738:1;1732:8;;;;;;;;:::i;:::-;;;;;;;1709:31;;1775:12;1759;:28;1755:382;;2261:13;2311:15;;;2347:4;2340:15;;;2394:4;2378:21;;1887:57;;1755:382;;;2261:13;2311:15;;;2347:4;2340:15;;;2394:4;2378:21;;2064:57;;1755:382;-1:-1:-1;1689:3:0;;;;:::i;:::-;;;;1651:497;;;-1:-1:-1;2165:12:0;1510:675;-1:-1:-1;;;1510:675:0:o;37816:1412::-;37955:20;37978:13;-1:-1:-1;;;;;38006:16:0;;38002:48;;38031:19;;-1:-1:-1;;;38031:19:0;;;;;;;;;;;38002:48;38065:13;38061:44;;38087:18;;-1:-1:-1;;;38087:18:0;;;;;;;;;;;38061:44;-1:-1:-1;;;;;38456:16:0;;;;;;:12;:16;;;;;;;;:44;;-1:-1:-1;;38515:49:0;;-1:-1:-1;;;;;38456:44:0;;;;;;;38515:49;;;-1:-1:-1;;;;;38456:44:0;;;;;;38515:49;;;;;;;;;;;;;;;;38581:25;;;:11;:25;;;;;:35;;-1:-1:-1;;;;;;38631:66:0;;;;-1:-1:-1;;;38681:15:0;38631:66;;;;;;;;;;;38581:25;;38766:328;38786:8;38782:1;:12;38766:328;;;38825:38;;38850:12;;-1:-1:-1;;;;;38825:38:0;;;38842:1;;38825:38;;38842:1;;38825:38;38886:4;:68;;;;;38895:59;38926:1;38930:2;38934:12;38948:5;38895:22;:59::i;:::-;38894:60;38886:68;38882:164;;;38986:40;;-1:-1:-1;;;38986:40:0;;;;;;;;;;;38882:164;39064:14;;;;;38796:3;38766:328;;;-1:-1:-1;39110:13:0;:28;39160:60;36178:342;-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:186;827:6;880:2;868:9;859:7;855:23;851:32;848:52;;;896:1;893;886:12;848:52;919:29;938:9;919:29;:::i;959:260::-;1027:6;1035;1088:2;1076:9;1067:7;1063:23;1059:32;1056:52;;;1104:1;1101;1094:12;1056:52;1127:29;1146:9;1127:29;:::i;:::-;1117:39;;1175:38;1209:2;1198:9;1194:18;1175:38;:::i;:::-;1165:48;;959:260;;;;;:::o;1224:328::-;1301:6;1309;1317;1370:2;1358:9;1349:7;1345:23;1341:32;1338:52;;;1386:1;1383;1376:12;1338:52;1409:29;1428:9;1409:29;:::i;:::-;1399:39;;1457:38;1491:2;1480:9;1476:18;1457:38;:::i;:::-;1447:48;;1542:2;1531:9;1527:18;1514:32;1504:42;;1224:328;;;;;:::o;1557:666::-;1652:6;1660;1668;1676;1729:3;1717:9;1708:7;1704:23;1700:33;1697:53;;;1746:1;1743;1736:12;1697:53;1769:29;1788:9;1769:29;:::i;:::-;1759:39;;1817:38;1851:2;1840:9;1836:18;1817:38;:::i;:::-;1807:48;;1902:2;1891:9;1887:18;1874:32;1864:42;;1957:2;1946:9;1942:18;1929:32;-1:-1:-1;;;;;1976:6:1;1973:30;1970:50;;;2016:1;2013;2006:12;1970:50;2039:22;;2092:4;2084:13;;2080:27;-1:-1:-1;2070:55:1;;2121:1;2118;2111:12;2070:55;2144:73;2209:7;2204:2;2191:16;2186:2;2182;2178:11;2144:73;:::i;:::-;2134:83;;;1557:666;;;;;;;:::o;2228:254::-;2293:6;2301;2354:2;2342:9;2333:7;2329:23;2325:32;2322:52;;;2370:1;2367;2360:12;2322:52;2393:29;2412:9;2393:29;:::i;:::-;2383:39;;2441:35;2472:2;2461:9;2457:18;2441:35;:::i;2487:254::-;2555:6;2563;2616:2;2604:9;2595:7;2591:23;2587:32;2584:52;;;2632:1;2629;2622:12;2584:52;2655:29;2674:9;2655:29;:::i;:::-;2645:39;2731:2;2716:18;;;;2703:32;;-1:-1:-1;;;2487:254:1:o;2746:963::-;2830:6;2861:2;2904;2892:9;2883:7;2879:23;2875:32;2872:52;;;2920:1;2917;2910:12;2872:52;2960:9;2947:23;-1:-1:-1;;;;;3030:2:1;3022:6;3019:14;3016:34;;;3046:1;3043;3036:12;3016:34;3084:6;3073:9;3069:22;3059:32;;3129:7;3122:4;3118:2;3114:13;3110:27;3100:55;;3151:1;3148;3141:12;3100:55;3187:2;3174:16;3209:2;3205;3202:10;3199:36;;;3215:18;;:::i;:::-;3261:2;3258:1;3254:10;3244:20;;3284:28;3308:2;3304;3300:11;3284:28;:::i;:::-;3346:15;;;3377:12;;;;3409:11;;;3439;;;3435:20;;3432:33;-1:-1:-1;3429:53:1;;;3478:1;3475;3468:12;3429:53;3500:1;3491:10;;3510:169;3524:2;3521:1;3518:9;3510:169;;;3581:23;3600:3;3581:23;:::i;:::-;3569:36;;3542:1;3535:9;;;;;3625:12;;;;3657;;3510:169;;;-1:-1:-1;3698:5:1;2746:963;-1:-1:-1;;;;;;;;2746:963:1:o;3714:751::-;3815:6;3823;3831;3839;3892:2;3880:9;3871:7;3867:23;3863:32;3860:52;;;3908:1;3905;3898:12;3860:52;3931:26;3947:9;3931:26;:::i;:::-;3921:36;;4008:2;3997:9;3993:18;3980:32;-1:-1:-1;;;;;4072:2:1;4064:6;4061:14;4058:34;;;4088:1;4085;4078:12;4058:34;4126:6;4115:9;4111:22;4101:32;;4171:7;4164:4;4160:2;4156:13;4152:27;4142:55;;4193:1;4190;4183:12;4142:55;4233:2;4220:16;4259:2;4251:6;4248:14;4245:34;;;4275:1;4272;4265:12;4245:34;4328:7;4323:2;4313:6;4310:1;4306:14;4302:2;4298:23;4294:32;4291:45;4288:65;;;4349:1;4346;4339:12;4288:65;3714:751;;4380:2;4372:11;;;;;-1:-1:-1;4402:6:1;;4455:2;4440:18;4427:32;;-1:-1:-1;3714:751:1;-1:-1:-1;;;3714:751:1:o;4470:248::-;4535:6;4543;4596:2;4584:9;4575:7;4571:23;4567:32;4564:52;;;4612:1;4609;4602:12;4564:52;4635:26;4651:9;4635:26;:::i;4976:245::-;5034:6;5087:2;5075:9;5066:7;5062:23;5058:32;5055:52;;;5103:1;5100;5093:12;5055:52;5142:9;5129:23;5161:30;5185:5;5161:30;:::i;5226:249::-;5295:6;5348:2;5336:9;5327:7;5323:23;5319:32;5316:52;;;5364:1;5361;5354:12;5316:52;5396:9;5390:16;5415:30;5439:5;5415:30;:::i;5480:450::-;5549:6;5602:2;5590:9;5581:7;5577:23;5573:32;5570:52;;;5618:1;5615;5608:12;5570:52;5658:9;5645:23;-1:-1:-1;;;;;5683:6:1;5680:30;5677:50;;;5723:1;5720;5713:12;5677:50;5746:22;;5799:4;5791:13;;5787:27;-1:-1:-1;5777:55:1;;5828:1;5825;5818:12;5777:55;5851:73;5916:7;5911:2;5898:16;5893:2;5889;5885:11;5851:73;:::i;5935:272::-;5993:6;6046:2;6034:9;6025:7;6021:23;6017:32;6014:52;;;6062:1;6059;6052:12;6014:52;6101:9;6088:23;6151:6;6144:5;6140:18;6133:5;6130:29;6120:57;;6173:1;6170;6163:12;6212:180;6271:6;6324:2;6312:9;6303:7;6299:23;6295:32;6292:52;;;6340:1;6337;6330:12;6292:52;-1:-1:-1;6363:23:1;;6212:180;-1:-1:-1;6212:180:1:o;6397:257::-;6438:3;6476:5;6470:12;6503:6;6498:3;6491:19;6519:63;6575:6;6568:4;6563:3;6559:14;6552:4;6545:5;6541:16;6519:63;:::i;:::-;6636:2;6615:15;-1:-1:-1;;6611:29:1;6602:39;;;;6643:4;6598:50;;6397:257;-1:-1:-1;;6397:257:1:o;6893:470::-;7072:3;7110:6;7104:13;7126:53;7172:6;7167:3;7160:4;7152:6;7148:17;7126:53;:::i;:::-;7242:13;;7201:16;;;;7264:57;7242:13;7201:16;7298:4;7286:17;;7264:57;:::i;:::-;7337:20;;6893:470;-1:-1:-1;;;;6893:470:1:o;7786:488::-;-1:-1:-1;;;;;8055:15:1;;;8037:34;;8107:15;;8102:2;8087:18;;8080:43;8154:2;8139:18;;8132:34;;;8202:3;8197:2;8182:18;;8175:31;;;7980:4;;8223:45;;8248:19;;8240:6;8223:45;:::i;:::-;8215:53;7786:488;-1:-1:-1;;;;;;7786:488:1:o;8471:219::-;8620:2;8609:9;8602:21;8583:4;8640:44;8680:2;8669:9;8665:18;8657:6;8640:44;:::i;9802:340::-;10004:2;9986:21;;;10043:2;10023:18;;;10016:30;-1:-1:-1;;;10077:2:1;10062:18;;10055:46;10133:2;10118:18;;9802:340::o;10963:356::-;11165:2;11147:21;;;11184:18;;;11177:30;11243:34;11238:2;11223:18;;11216:62;11310:2;11295:18;;10963:356::o;14321:275::-;14392:2;14386:9;14457:2;14438:13;;-1:-1:-1;;14434:27:1;14422:40;;-1:-1:-1;;;;;14477:34:1;;14513:22;;;14474:62;14471:88;;;14539:18;;:::i;:::-;14575:2;14568:22;14321:275;;-1:-1:-1;14321:275:1:o;14601:128::-;14641:3;14672:1;14668:6;14665:1;14662:13;14659:39;;;14678:18;;:::i;:::-;-1:-1:-1;14714:9:1;;14601:128::o;14734:120::-;14774:1;14800;14790:35;;14805:18;;:::i;:::-;-1:-1:-1;14839:9:1;;14734:120::o;14859:168::-;14899:7;14965:1;14961;14957:6;14953:14;14950:1;14947:21;14942:1;14935:9;14928:17;14924:45;14921:71;;;14972:18;;:::i;:::-;-1:-1:-1;15012:9:1;;14859:168::o;15032:125::-;15072:4;15100:1;15097;15094:8;15091:34;;;15105:18;;:::i;:::-;-1:-1:-1;15142:9:1;;15032:125::o;15162:258::-;15234:1;15244:113;15258:6;15255:1;15252:13;15244:113;;;15334:11;;;15328:18;15315:11;;;15308:39;15280:2;15273:10;15244:113;;;15375:6;15372:1;15369:13;15366:48;;;-1:-1:-1;;15410:1:1;15392:16;;15385:27;15162:258::o;15425:380::-;15504:1;15500:12;;;;15547;;;15568:61;;15622:4;15614:6;15610:17;15600:27;;15568:61;15675:2;15667:6;15664:14;15644:18;15641:38;15638:161;;;15721:10;15716:3;15712:20;15709:1;15702:31;15756:4;15753:1;15746:15;15784:4;15781:1;15774:15;15638:161;;15425:380;;;:::o;15810:135::-;15849:3;-1:-1:-1;;15870:17:1;;15867:43;;;15890:18;;:::i;:::-;-1:-1:-1;15937:1:1;15926:13;;15810:135::o;15950:112::-;15982:1;16008;15998:35;;16013:18;;:::i;:::-;-1:-1:-1;16047:9:1;;15950:112::o;16067:127::-;16128:10;16123:3;16119:20;16116:1;16109:31;16159:4;16156:1;16149:15;16183:4;16180:1;16173:15;16199:127;16260:10;16255:3;16251:20;16248:1;16241:31;16291:4;16288:1;16281:15;16315:4;16312:1;16305:15;16331:127;16392:10;16387:3;16383:20;16380:1;16373:31;16423:4;16420:1;16413:15;16447:4;16444:1;16437:15;16463:127;16524:10;16519:3;16515:20;16512:1;16505:31;16555:4;16552:1;16545:15;16579:4;16576:1;16569:15;16595:131;-1:-1:-1;;;;;;16669:32:1;;16659:43;;16649:71;;16716:1;16713;16706:12

Swarm Source

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