ETH Price: $3,373.66 (-3.23%)

Token

SniperZuki (SNIPERZUKI)
 

Overview

Max Total Supply

162 SNIPERZUKI

Holders

151

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
ccwmode.eth
Balance
1 SNIPERZUKI
0xec7100abdbcf922f975148c6516bc95696ca0ef6
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
SniperZuki

Compiler Version
v0.8.12+commit.f00d7308

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-03-20
*/

// SPDX-License-Identifier: MIT

/*

                     /$$                                                   /$$       /$$
                    |__/                                                  | $$      |__/
  /$$$$$$$ /$$$$$$$  /$$  /$$$$$$   /$$$$$$   /$$$$$$  /$$$$$$$$ /$$   /$$| $$   /$$ /$$
 /$$_____/| $$__  $$| $$ /$$__  $$ /$$__  $$ /$$__  $$|____ /$$/| $$  | $$| $$  /$$/| $$
|  $$$$$$ | $$  \ $$| $$| $$  \ $$| $$$$$$$$| $$  \__/   /$$$$/ | $$  | $$| $$$$$$/ | $$
 \____  $$| $$  | $$| $$| $$  | $$| $$_____/| $$        /$$__/  | $$  | $$| $$_  $$ | $$
 /$$$$$$$/| $$  | $$| $$| $$$$$$$/|  $$$$$$$| $$       /$$$$$$$$|  $$$$$$/| $$ \  $$| $$
|_______/ |__/  |__/|__/| $$____/  \_______/|__/      |________/ \______/ |__/  \__/|__/
                        | $$                                                            
                        | $$                                                            
                        |__/                                                            
*/

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

pragma solidity ^0.8.0;

/**
 * @dev These functions deal with verification of Merkle Trees proofs.
 *
 * The proofs can be generated using the JavaScript library
 * https://github.com/miguelmota/merkletreejs[merkletreejs].
 * Note: the hashing algorithm should be keccak256 and pair sorting should be enabled.
 *
 * See `test/utils/cryptography/MerkleProof.test.js` for some examples.
 *
 * WARNING: You should avoid using leaf values that are 64 bytes long prior to
 * hashing, or use a hash function other than keccak256 for hashing leaves.
 * This is because the concatenation of a sorted pair of internal nodes in
 * the merkle tree could be reinterpreted as a leaf value.
 */
library MerkleProof {
    /**
     * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree
     * defined by `root`. For this, a `proof` must be provided, containing
     * sibling hashes on the branch from the leaf to the root of the tree. Each
     * pair of leaves and each pair of pre-images are assumed to be sorted.
     */
    function verify(
        bytes32[] memory proof,
        bytes32 root,
        bytes32 leaf
    ) internal pure returns (bool) {
        return processProof(proof, leaf) == root;
    }

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

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

pragma solidity ^0.8.0;

/**
 * @title Counters
 * @author Matt Condon
 * @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number
 * of elements in a mapping, issuing ERC721 ids, or counting request ids.
 *
 * Include with `using Counters for Counters.Counter;`
 */
library Counters {
    struct Counter {
        // This variable should never be directly accessed by users of the library: interactions must be restricted to
        // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add
        // this feature: see https://github.com/ethereum/solidity/issues/4637
        uint256 _value; // default: 0
    }

    function current(Counter storage counter) internal view returns (uint256) {
        return counter._value;
    }

    function increment(Counter storage counter) internal {
        unchecked {
            counter._value += 1;
        }
    }

    function decrement(Counter storage counter) internal {
        uint256 value = counter._value;
        require(value > 0, "Counter: decrement overflow");
        unchecked {
            counter._value = value - 1;
        }
    }

    function reset(Counter storage counter) internal {
        counter._value = 0;
    }
}


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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

// CAUTION
// This version of SafeMath should only be used with Solidity 0.8 or later,
// because it relies on the compiler's built in overflow checks.

/**
 * @dev Wrappers over Solidity's arithmetic operations.
 *
 * NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler
 * now has built in overflow checking.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            uint256 c = a + b;
            if (c < a) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the substraction of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b > a) return (false, 0);
            return (true, a - b);
        }
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
            // benefit is lost if 'b' is also tested.
            // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
            if (a == 0) return (true, 0);
            uint256 c = a * b;
            if (c / a != b) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the division of two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a / b);
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a % b);
        }
    }

    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     *
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        return a + b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return a - b;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        return a * b;
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator.
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return a / b;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        return a % b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {trySub}.
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b <= a, errorMessage);
            return a - b;
        }
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a / b;
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting with custom message when dividing by zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryMod}.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a % b;
        }
    }
}

pragma solidity ^0.8.0;

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

pragma solidity ^0.8.0;

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

pragma solidity ^0.8.0;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize, which returns 0 for contracts in
        // construction, since the code is only stored at the end of the
        // constructor execution.

        uint256 size;
        assembly {
            size := extcodesize(account)
        }
        return size > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

pragma solidity ^0.8.0;

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

pragma solidity ^0.8.0;

/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata extension, but not including the Enumerable extension, which is available separately as
 * {ERC721Enumerable}.
 */
contract ERC721 is Context, ERC165, IERC721, IERC721Metadata {
    using Address for address;
    using Strings for uint256;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to owner address
    mapping(uint256 => address) private _owners;

    // Mapping owner address to token count
    mapping(address => uint256) private _balances;

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

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

    /**
     * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

    /**
     * @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 virtual override returns (uint256) {
        require(owner != address(0), "ERC721: balance query for the zero address");
        return _balances[owner];
    }

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view virtual override returns (address) {
        address owner = _owners[tokenId];
        require(owner != address(0), "ERC721: owner query for nonexistent token");
        return owner;
    }

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

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

    /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token");

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

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

    /**
     * @dev See {IERC721-approve}.
     */
    function approve(address to, uint256 tokenId) public virtual override {
        address owner = ERC721.ownerOf(tokenId);
        require(to != owner, "ERC721: approval to current owner");

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        _setApprovalForAll(_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 {
        //solhint-disable-next-line max-line-length
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");

        _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 {
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");
        _safeTransfer(from, to, tokenId, _data);
    }

    /**
     * @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.
     *
     * `_data` is additional data, it has no specified format and it is sent in call to `to`.
     *
     * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g.
     * implement alternative mechanisms to perform token transfer, such as signature-based.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeTransfer(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) internal virtual {
        _transfer(from, to, tokenId);
        require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer");
    }

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

    /**
     * @dev Returns whether `spender` is allowed to manage `tokenId`.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) {
        require(_exists(tokenId), "ERC721: operator query for nonexistent token");
        address owner = ERC721.ownerOf(tokenId);
        return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender));
    }

    /**
     * @dev Safely mints `tokenId` and transfers it to `to`.
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(address to, uint256 tokenId) internal virtual {
        _safeMint(to, tokenId, "");
    }

    /**
     * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is
     * forwarded in {IERC721Receiver-onERC721Received} to contract recipients.
     */
    function _safeMint(
        address to,
        uint256 tokenId,
        bytes memory _data
    ) internal virtual {
        _mint(to, tokenId);
        require(
            _checkOnERC721Received(address(0), to, tokenId, _data),
            "ERC721: transfer to non ERC721Receiver implementer"
        );
    }

    /**
     * @dev Mints `tokenId` and transfers it to `to`.
     *
     * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - `to` cannot be the zero address.
     *
     * Emits a {Transfer} event.
     */
    function _mint(address to, uint256 tokenId) internal virtual {
        require(to != address(0), "ERC721: mint to the zero address");
        require(!_exists(tokenId), "ERC721: token already minted");

        _beforeTokenTransfer(address(0), to, tokenId);

        _balances[to] += 1;
        _owners[tokenId] = to;

        emit Transfer(address(0), to, tokenId);
    }

    /**
     * @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 {
        address owner = ERC721.ownerOf(tokenId);

        _beforeTokenTransfer(owner, address(0), tokenId);

        // Clear approvals
        _approve(address(0), tokenId);

        _balances[owner] -= 1;
        delete _owners[tokenId];

        emit Transfer(owner, address(0), tokenId);
    }

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *  As opposed to {transferFrom}, this imposes no restrictions on msg.sender.
     *
     * 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
    ) internal virtual {
        require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer of token that is not own");
        require(to != address(0), "ERC721: transfer to the zero address");

        _beforeTokenTransfer(from, to, tokenId);

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

        _balances[from] -= 1;
        _balances[to] += 1;
        _owners[tokenId] = to;

        emit Transfer(from, to, tokenId);
    }

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

    /**
     * @dev Approve `operator` to operate on all of `owner` tokens
     *
     * Emits a {ApprovalForAll} event.
     */
    function _setApprovalForAll(
        address owner,
        address operator,
        bool approved
    ) internal virtual {
        require(owner != operator, "ERC721: approve to caller");
        _operatorApprovals[owner][operator] = approved;
        emit ApprovalForAll(owner, operator, approved);
    }

    /**
     * @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.onERC721Received.selector;
            } catch (bytes memory reason) {
                if (reason.length == 0) {
                    revert("ERC721: transfer to non ERC721Receiver implementer");
                } else {
                    assembly {
                        revert(add(32, reason), mload(reason))
                    }
                }
            }
        } else {
            return true;
        }
    }

    /**
     * @dev Hook that is called before any token transfer. This includes minting
     * and burning.
     *
     * 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, ``from``'s `tokenId` will be burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {}
}

pragma solidity ^0.8.0;

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

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

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

pragma solidity ^0.8.0;


/**
 * @dev This implements an optional extension of {ERC721} defined in the EIP that adds
 * enumerability of all the token ids in the contract as well as all token ids owned by each
 * account.
 */
abstract contract ERC721Enumerable is ERC721, IERC721Enumerable {
    // Mapping from owner to list of owned token IDs
    mapping(address => mapping(uint256 => uint256)) private _ownedTokens;

    // Mapping from token ID to index of the owner tokens list
    mapping(uint256 => uint256) private _ownedTokensIndex;

    // Array with all token ids, used for enumeration
    uint256[] private _allTokens;

    // Mapping from token id to position in the allTokens array
    mapping(uint256 => uint256) private _allTokensIndex;

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

    /**
     * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) {
        require(index < ERC721.balanceOf(owner), "ERC721Enumerable: owner index out of bounds");
        return _ownedTokens[owner][index];
    }

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

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

    /**
     * @dev Hook that is called before any token transfer. This includes minting
     * and burning.
     *
     * 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, ``from``'s `tokenId` will be burned.
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual override {
        super._beforeTokenTransfer(from, to, tokenId);

        if (from == address(0)) {
            _addTokenToAllTokensEnumeration(tokenId);
        } else if (from != to) {
            _removeTokenFromOwnerEnumeration(from, tokenId);
        }
        if (to == address(0)) {
            _removeTokenFromAllTokensEnumeration(tokenId);
        } else if (to != from) {
            _addTokenToOwnerEnumeration(to, tokenId);
        }
    }

    /**
     * @dev Private function to add a token to this extension's ownership-tracking data structures.
     * @param to address representing the new owner of the given token ID
     * @param tokenId uint256 ID of the token to be added to the tokens list of the given address
     */
    function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private {
        uint256 length = ERC721.balanceOf(to);
        _ownedTokens[to][length] = tokenId;
        _ownedTokensIndex[tokenId] = length;
    }

    /**
     * @dev Private function to add a token to this extension's token tracking data structures.
     * @param tokenId uint256 ID of the token to be added to the tokens list
     */
    function _addTokenToAllTokensEnumeration(uint256 tokenId) private {
        _allTokensIndex[tokenId] = _allTokens.length;
        _allTokens.push(tokenId);
    }

    /**
     * @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that
     * while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for
     * gas optimizations e.g. when performing a transfer operation (avoiding double writes).
     * This has O(1) time complexity, but alters the order of the _ownedTokens array.
     * @param from address representing the previous owner of the given token ID
     * @param tokenId uint256 ID of the token to be removed from the tokens list of the given address
     */
    function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private {
        // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = ERC721.balanceOf(from) - 1;
        uint256 tokenIndex = _ownedTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary
        if (tokenIndex != lastTokenIndex) {
            uint256 lastTokenId = _ownedTokens[from][lastTokenIndex];

            _ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
            _ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index
        }

        // This also deletes the contents at the last position of the array
        delete _ownedTokensIndex[tokenId];
        delete _ownedTokens[from][lastTokenIndex];
    }

    /**
     * @dev Private function to remove a token from this extension's token tracking data structures.
     * This has O(1) time complexity, but alters the order of the _allTokens array.
     * @param tokenId uint256 ID of the token to be removed from the tokens list
     */
    function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private {
        // To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = _allTokens.length - 1;
        uint256 tokenIndex = _allTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so
        // rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding
        // an 'if' statement (like in _removeTokenFromOwnerEnumeration)
        uint256 lastTokenId = _allTokens[lastTokenIndex];

        _allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
        _allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index

        // This also deletes the contents at the last position of the array
        delete _allTokensIndex[tokenId];
        _allTokens.pop();
    }
}

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns the amount of tokens owned by `account`.
     */
    function balanceOf(address account) external view returns (uint256);

    /**
     * @dev Moves `amount` tokens from the caller's account to `recipient`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address recipient, uint256 amount) external returns (bool);

    /**
     * @dev Returns the remaining number of tokens that `spender` will be
     * allowed to spend on behalf of `owner` through {transferFrom}. This is
     * zero by default.
     *
     * This value changes when {approve} or {transferFrom} are called.
     */
    function allowance(address owner, address spender) external view returns (uint256);

    /**
     * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * IMPORTANT: Beware that changing an allowance with this method brings the risk
     * that someone may use both the old and the new allowance by unfortunate
     * transaction ordering. One possible solution to mitigate this race
     * condition is to first reduce the spender's allowance to 0 and set the
     * desired value afterwards:
     * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
     *
     * Emits an {Approval} event.
     */
    function approve(address spender, uint256 amount) external returns (bool);

    /**
     * @dev Moves `amount` tokens from `sender` to `recipient` using the
     * allowance mechanism. `amount` is then deducted from the caller's
     * allowance.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address sender,
        address recipient,
        uint256 amount
    ) external returns (bool);

    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

    /**
     * @dev Emitted when the allowance of a `spender` for an `owner` is set by
     * a call to {approve}. `value` is the new allowance.
     */
    event Approval(address indexed owner, address indexed spender, uint256 value);
}


// File contracts/SniperZuki.sol

pragma solidity ^0.8.12;






contract SniperZuki is ERC721Enumerable, Ownable {
  using SafeMath for uint256;
  using Counters for Counters.Counter;

  Counters.Counter private _tokenIds;

  uint256 public TOTAL_SUPPLY = 1000;
  uint256 public MAX_PER_MINT = 5;

  string public baseTokenURI;
  bytes32 public merkleRoot;
  bool public presale = false;
  bool public sale = false;

  mapping(address => bool) public whitelistClaims;

  constructor(string memory pBaseTokenURI) ERC721("SniperZuki", "SNIPERZUKI") {
      _tokenIds.increment();
      baseTokenURI = pBaseTokenURI;
  }

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

  function setBaseURI(string memory _baseTokenURI) public onlyOwner {
    baseTokenURI = _baseTokenURI;
  }

  function setMerkleRoot(bytes32 _merkleRoot) public onlyOwner {
    merkleRoot = _merkleRoot;
  }

  function toggleSale() public onlyOwner {
    sale = !sale;
  }

  function togglePresale() public onlyOwner {
    presale = !presale;
  }

  function activatePresale() public onlyOwner {
    presale = true;
    sale = false;
  }

  function activateSale() public onlyOwner {
    presale = false;
    sale = true;  
  }

  function isPresaleActive() public view returns (bool) {
    return presale;
  }

  function isSaleActive() public view returns (bool) {
    return sale;
  }

  function airdrop(address receiver, uint256 quantity) public onlyOwner {
    uint256 totalMinted = _tokenIds.current();

    require(
      totalMinted.add(quantity) <= TOTAL_SUPPLY,
      "You're trying to airdrop too much NFTs"
    );

    for (uint256 i = 0; i < quantity; i++) {
      _mintNFT(receiver);
    }
  }

  function mintNFTWhitelist(bytes32[] calldata merkleProof) public payable {
    uint256 totalMinted = _tokenIds.current();

    require(presale, "Pre-Sale is not active");
    require(!whitelistClaims[msg.sender], "You've already claimed your NFT");

    bytes32 leaf = keccak256((abi.encodePacked(msg.sender)));
    require(MerkleProof.verify(merkleProof, merkleRoot, leaf), "Invalid proof. You're not in Whitelist");

    require(
      totalMinted.add(1) <= TOTAL_SUPPLY,
      "You're trying to mint too much NFTs"
    );

    whitelistClaims[msg.sender] = true;
    _mintNFT(msg.sender);
  }
  
  function mintNFTs(uint256 qty) public payable {
    uint256 totalMinted = _tokenIds.current();
    
    require(sale, "Sale is not active");
    require(totalMinted.add(qty) <= TOTAL_SUPPLY, "You're trying to mint too much NFTs");
    require(qty > 0 && qty <= MAX_PER_MINT, "Mint quantity is not correct. Insert a number between 1 and 20");

    for (uint256 i = 0; i < qty; i++) {
      _mintNFT(msg.sender);
    }
  }

  function _mintNFT(address receiver) private {
    uint256 newTokenID = _tokenIds.current();
    _safeMint(receiver, newTokenID);
    _tokenIds.increment();
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"pBaseTokenURI","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_PER_MINT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"TOTAL_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"activatePresale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"activateSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"},{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"airdrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseTokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isPresaleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isSaleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"merkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"merkleProof","type":"bytes32[]"}],"name":"mintNFTWhitelist","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"qty","type":"uint256"}],"name":"mintNFTs","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"presale","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":[],"name":"sale","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_baseTokenURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_merkleRoot","type":"bytes32"}],"name":"setMerkleRoot","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":"togglePresale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"toggleSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"whitelistClaims","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"}]

60806040526103e8600c556005600d556010805461ffff191690553480156200002757600080fd5b50604051620028f7380380620028f78339810160408190526200004a916200022a565b6040518060400160405280600a815260200169536e697065725a756b6960b01b8152506040518060400160405280600a815260200169534e495045525a554b4960b01b8152508160009080519060200190620000a89291906200016e565b508051620000be9060019060208401906200016e565b505050620000db620000d56200010f60201b60201c565b62000113565b620000f2600b6200016560201b6200133d1760201c565b80516200010790600e9060208401906200016e565b505062000343565b3390565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b80546001019055565b8280546200017c9062000306565b90600052602060002090601f016020900481019282620001a05760008555620001eb565b82601f10620001bb57805160ff1916838001178555620001eb565b82800160010185558215620001eb579182015b82811115620001eb578251825591602001919060010190620001ce565b50620001f9929150620001fd565b5090565b5b80821115620001f95760008155600101620001fe565b634e487b7160e01b600052604160045260246000fd5b600060208083850312156200023e57600080fd5b82516001600160401b03808211156200025657600080fd5b818501915085601f8301126200026b57600080fd5b81518181111562000280576200028062000214565b604051601f8201601f19908116603f01168101908382118183101715620002ab57620002ab62000214565b816040528281528886848701011115620002c457600080fd5b600093505b82841015620002e85784840186015181850187015292850192620002c9565b82841115620002fa5760008684830101525b98975050505050505050565b600181811c908216806200031b57607f821691505b602082108114156200033d57634e487b7160e01b600052602260045260246000fd5b50919050565b6125a480620003536000396000f3fe60806040526004361061021a5760003560e01c80636ad1fe0211610123578063a22cb465116100ab578063c87b56dd1161006f578063c87b56dd146105db578063d547cfb7146105fb578063e985e9c514610610578063f2fde38b14610659578063fdea8e0b1461067957600080fd5b8063a22cb46514610541578063b13e73ac14610561578063b68e8c9114610591578063b88d4fde146105a6578063c721f08d146105c657600080fd5b80637d8966e4116100f25780637d8966e4146104c35780638ba4cc3c146104d85780638da5cb5b146104f8578063902d55a51461051657806395d89b411461052c57600080fd5b80636ad1fe021461044f57806370a082311461046e578063715018a61461048e5780637cb64759146104a357600080fd5b806334393743116101a65780634f6ccce7116101755780634f6ccce7146103ba57806355f804b3146103da578063564566a8146103fa57806360d938dc146104175780636352211e1461042f57600080fd5b8063343937431461035f57806335f656cf146103745780633b4b13811461038757806342842e0e1461039a57600080fd5b806309d42b30116101ed57806309d42b30146102d057806318160ddd146102f457806323b872dd146103095780632eb4a7ab146103295780632f745c591461033f57600080fd5b806301ffc9a71461021f57806306fdde0314610254578063081812fc14610276578063095ea7b3146102ae575b600080fd5b34801561022b57600080fd5b5061023f61023a366004611f52565b610693565b60405190151581526020015b60405180910390f35b34801561026057600080fd5b506102696106be565b60405161024b9190611fc7565b34801561028257600080fd5b50610296610291366004611fda565b610750565b6040516001600160a01b03909116815260200161024b565b3480156102ba57600080fd5b506102ce6102c936600461200f565b6107ea565b005b3480156102dc57600080fd5b506102e6600d5481565b60405190815260200161024b565b34801561030057600080fd5b506008546102e6565b34801561031557600080fd5b506102ce610324366004612039565b610900565b34801561033557600080fd5b506102e6600f5481565b34801561034b57600080fd5b506102e661035a36600461200f565b610931565b34801561036b57600080fd5b506102ce6109c7565b6102ce610382366004612075565b610a05565b6102ce610395366004611fda565b610be8565b3480156103a657600080fd5b506102ce6103b5366004612039565b610d17565b3480156103c657600080fd5b506102e66103d5366004611fda565b610d32565b3480156103e657600080fd5b506102ce6103f5366004612176565b610dc5565b34801561040657600080fd5b50601054610100900460ff1661023f565b34801561042357600080fd5b5060105460ff1661023f565b34801561043b57600080fd5b5061029661044a366004611fda565b610e06565b34801561045b57600080fd5b5060105461023f90610100900460ff1681565b34801561047a57600080fd5b506102e66104893660046121bf565b610e7d565b34801561049a57600080fd5b506102ce610f04565b3480156104af57600080fd5b506102ce6104be366004611fda565b610f3a565b3480156104cf57600080fd5b506102ce610f69565b3480156104e457600080fd5b506102ce6104f336600461200f565b610fb0565b34801561050457600080fd5b50600a546001600160a01b0316610296565b34801561052257600080fd5b506102e6600c5481565b34801561053857600080fd5b50610269611078565b34801561054d57600080fd5b506102ce61055c3660046121da565b611087565b34801561056d57600080fd5b5061023f61057c3660046121bf565b60116020526000908152604090205460ff1681565b34801561059d57600080fd5b506102ce611092565b3480156105b257600080fd5b506102ce6105c1366004612216565b6110cc565b3480156105d257600080fd5b506102ce6110fe565b3480156105e757600080fd5b506102696105f6366004611fda565b611139565b34801561060757600080fd5b50610269611214565b34801561061c57600080fd5b5061023f61062b366004612292565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561066557600080fd5b506102ce6106743660046121bf565b6112a2565b34801561068557600080fd5b5060105461023f9060ff1681565b60006001600160e01b0319821663780e9d6360e01b14806106b857506106b882611346565b92915050565b6060600080546106cd906122c5565b80601f01602080910402602001604051908101604052809291908181526020018280546106f9906122c5565b80156107465780601f1061071b57610100808354040283529160200191610746565b820191906000526020600020905b81548152906001019060200180831161072957829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166107ce5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b60006107f582610e06565b9050806001600160a01b0316836001600160a01b031614156108635760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016107c5565b336001600160a01b038216148061087f575061087f813361062b565b6108f15760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016107c5565b6108fb8383611396565b505050565b61090a3382611404565b6109265760405162461bcd60e51b81526004016107c590612300565b6108fb8383836114fb565b600061093c83610e7d565b821061099e5760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b60648201526084016107c5565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600a546001600160a01b031633146109f15760405162461bcd60e51b81526004016107c590612351565b6010805460ff19811660ff90911615179055565b6000610a10600b5490565b60105490915060ff16610a5e5760405162461bcd60e51b81526020600482015260166024820152755072652d53616c65206973206e6f742061637469766560501b60448201526064016107c5565b3360009081526011602052604090205460ff1615610abe5760405162461bcd60e51b815260206004820152601f60248201527f596f7527766520616c726561647920636c61696d656420796f7572204e46540060448201526064016107c5565b6040516bffffffffffffffffffffffff193360601b166020820152600090603401604051602081830303815290604052805190602001209050610b3884848080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050600f5491508490506116a6565b610b935760405162461bcd60e51b815260206004820152602660248201527f496e76616c69642070726f6f662e20596f75277265206e6f7420696e205768696044820152651d195b1a5cdd60d21b60648201526084016107c5565b600c54610ba18360016116bc565b1115610bbf5760405162461bcd60e51b81526004016107c590612386565b336000818152601160205260409020805460ff19166001179055610be2906116c8565b50505050565b6000610bf3600b5490565b601054909150610100900460ff16610c425760405162461bcd60e51b815260206004820152601260248201527153616c65206973206e6f742061637469766560701b60448201526064016107c5565b600c54610c4f82846116bc565b1115610c6d5760405162461bcd60e51b81526004016107c590612386565b600082118015610c7f5750600d548211155b610cf15760405162461bcd60e51b815260206004820152603e60248201527f4d696e74207175616e74697479206973206e6f7420636f72726563742e20496e60448201527f736572742061206e756d626572206265747765656e203120616e64203230000060648201526084016107c5565b60005b828110156108fb57610d05336116c8565b80610d0f816123df565b915050610cf4565b6108fb838383604051806020016040528060008152506110cc565b6000610d3d60085490565b8210610da05760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b60648201526084016107c5565b60088281548110610db357610db36123fa565b90600052602060002001549050919050565b600a546001600160a01b03163314610def5760405162461bcd60e51b81526004016107c590612351565b8051610e0290600e906020840190611ea3565b5050565b6000818152600260205260408120546001600160a01b0316806106b85760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016107c5565b60006001600160a01b038216610ee85760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016107c5565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b03163314610f2e5760405162461bcd60e51b81526004016107c590612351565b610f3860006116ed565b565b600a546001600160a01b03163314610f645760405162461bcd60e51b81526004016107c590612351565b600f55565b600a546001600160a01b03163314610f935760405162461bcd60e51b81526004016107c590612351565b6010805461ff001981166101009182900460ff1615909102179055565b600a546001600160a01b03163314610fda5760405162461bcd60e51b81526004016107c590612351565b6000610fe5600b5490565b600c54909150610ff582846116bc565b11156110525760405162461bcd60e51b815260206004820152602660248201527f596f7527726520747279696e6720746f2061697264726f7020746f6f206d756360448201526568204e46547360d01b60648201526084016107c5565b60005b82811015610be257611066846116c8565b80611070816123df565b915050611055565b6060600180546106cd906122c5565b610e0233838361173f565b600a546001600160a01b031633146110bc5760405162461bcd60e51b81526004016107c590612351565b6010805461ffff19166001179055565b6110d63383611404565b6110f25760405162461bcd60e51b81526004016107c590612300565b610be28484848461180e565b600a546001600160a01b031633146111285760405162461bcd60e51b81526004016107c590612351565b6010805461ffff1916610100179055565b6000818152600260205260409020546060906001600160a01b03166111b85760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016107c5565b60006111c2611841565b905060008151116111e2576040518060200160405280600081525061120d565b806111ec84611850565b6040516020016111fd929190612410565b6040516020818303038152906040525b9392505050565b600e8054611221906122c5565b80601f016020809104026020016040519081016040528092919081815260200182805461124d906122c5565b801561129a5780601f1061126f5761010080835404028352916020019161129a565b820191906000526020600020905b81548152906001019060200180831161127d57829003601f168201915b505050505081565b600a546001600160a01b031633146112cc5760405162461bcd60e51b81526004016107c590612351565b6001600160a01b0381166113315760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016107c5565b61133a816116ed565b50565b80546001019055565b60006001600160e01b031982166380ac58cd60e01b148061137757506001600160e01b03198216635b5e139f60e01b145b806106b857506301ffc9a760e01b6001600160e01b03198316146106b8565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906113cb82610e06565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b031661147d5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016107c5565b600061148883610e06565b9050806001600160a01b0316846001600160a01b031614806114c35750836001600160a01b03166114b884610750565b6001600160a01b0316145b806114f357506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b031661150e82610e06565b6001600160a01b0316146115765760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b60648201526084016107c5565b6001600160a01b0382166115d85760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016107c5565b6115e383838361194e565b6115ee600082611396565b6001600160a01b038316600090815260036020526040812080546001929061161790849061243f565b90915550506001600160a01b0382166000908152600360205260408120805460019290611645908490612456565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6000826116b38584611a06565b14949350505050565b600061120d8284612456565b60006116d3600b5490565b90506116df8282611a7a565b610e02600b80546001019055565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b031614156117a15760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016107c5565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b6118198484846114fb565b61182584848484611a94565b610be25760405162461bcd60e51b81526004016107c59061246e565b6060600e80546106cd906122c5565b6060816118745750506040805180820190915260018152600360fc1b602082015290565b8160005b811561189e5780611888816123df565b91506118979050600a836124d6565b9150611878565b60008167ffffffffffffffff8111156118b9576118b96120ea565b6040519080825280601f01601f1916602001820160405280156118e3576020820181803683370190505b5090505b84156114f3576118f860018361243f565b9150611905600a866124ea565b611910906030612456565b60f81b818381518110611925576119256123fa565b60200101906001600160f81b031916908160001a905350611947600a866124d6565b94506118e7565b6001600160a01b0383166119a9576119a481600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b6119cc565b816001600160a01b0316836001600160a01b0316146119cc576119cc8382611b92565b6001600160a01b0382166119e3576108fb81611c2f565b826001600160a01b0316826001600160a01b0316146108fb576108fb8282611cde565b600081815b8451811015611a72576000858281518110611a2857611a286123fa565b60200260200101519050808311611a4e5760008381526020829052604090209250611a5f565b600081815260208490526040902092505b5080611a6a816123df565b915050611a0b565b509392505050565b610e02828260405180602001604052806000815250611d22565b60006001600160a01b0384163b15611b8757604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611ad89033908990889088906004016124fe565b6020604051808303816000875af1925050508015611b13575060408051601f3d908101601f19168201909252611b109181019061253b565b60015b611b6d573d808015611b41576040519150601f19603f3d011682016040523d82523d6000602084013e611b46565b606091505b508051611b655760405162461bcd60e51b81526004016107c59061246e565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506114f3565b506001949350505050565b60006001611b9f84610e7d565b611ba9919061243f565b600083815260076020526040902054909150808214611bfc576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090611c419060019061243f565b60008381526009602052604081205460088054939450909284908110611c6957611c696123fa565b906000526020600020015490508060088381548110611c8a57611c8a6123fa565b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480611cc257611cc2612558565b6001900381819060005260206000200160009055905550505050565b6000611ce983610e7d565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b611d2c8383611d55565b611d396000848484611a94565b6108fb5760405162461bcd60e51b81526004016107c59061246e565b6001600160a01b038216611dab5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016107c5565b6000818152600260205260409020546001600160a01b031615611e105760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016107c5565b611e1c6000838361194e565b6001600160a01b0382166000908152600360205260408120805460019290611e45908490612456565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b828054611eaf906122c5565b90600052602060002090601f016020900481019282611ed15760008555611f17565b82601f10611eea57805160ff1916838001178555611f17565b82800160010185558215611f17579182015b82811115611f17578251825591602001919060010190611efc565b50611f23929150611f27565b5090565b5b80821115611f235760008155600101611f28565b6001600160e01b03198116811461133a57600080fd5b600060208284031215611f6457600080fd5b813561120d81611f3c565b60005b83811015611f8a578181015183820152602001611f72565b83811115610be25750506000910152565b60008151808452611fb3816020860160208601611f6f565b601f01601f19169290920160200192915050565b60208152600061120d6020830184611f9b565b600060208284031215611fec57600080fd5b5035919050565b80356001600160a01b038116811461200a57600080fd5b919050565b6000806040838503121561202257600080fd5b61202b83611ff3565b946020939093013593505050565b60008060006060848603121561204e57600080fd5b61205784611ff3565b925061206560208501611ff3565b9150604084013590509250925092565b6000806020838503121561208857600080fd5b823567ffffffffffffffff808211156120a057600080fd5b818501915085601f8301126120b457600080fd5b8135818111156120c357600080fd5b8660208260051b85010111156120d857600080fd5b60209290920196919550909350505050565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff8084111561211b5761211b6120ea565b604051601f8501601f19908116603f01168101908282118183101715612143576121436120ea565b8160405280935085815286868601111561215c57600080fd5b858560208301376000602087830101525050509392505050565b60006020828403121561218857600080fd5b813567ffffffffffffffff81111561219f57600080fd5b8201601f810184136121b057600080fd5b6114f384823560208401612100565b6000602082840312156121d157600080fd5b61120d82611ff3565b600080604083850312156121ed57600080fd5b6121f683611ff3565b91506020830135801515811461220b57600080fd5b809150509250929050565b6000806000806080858703121561222c57600080fd5b61223585611ff3565b935061224360208601611ff3565b925060408501359150606085013567ffffffffffffffff81111561226657600080fd5b8501601f8101871361227757600080fd5b61228687823560208401612100565b91505092959194509250565b600080604083850312156122a557600080fd5b6122ae83611ff3565b91506122bc60208401611ff3565b90509250929050565b600181811c908216806122d957607f821691505b602082108114156122fa57634e487b7160e01b600052602260045260246000fd5b50919050565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526023908201527f596f7527726520747279696e6720746f206d696e7420746f6f206d756368204e60408201526246547360e81b606082015260800190565b634e487b7160e01b600052601160045260246000fd5b60006000198214156123f3576123f36123c9565b5060010190565b634e487b7160e01b600052603260045260246000fd5b60008351612422818460208801611f6f565b835190830190612436818360208801611f6f565b01949350505050565b600082821015612451576124516123c9565b500390565b60008219821115612469576124696123c9565b500190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b634e487b7160e01b600052601260045260246000fd5b6000826124e5576124e56124c0565b500490565b6000826124f9576124f96124c0565b500690565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061253190830184611f9b565b9695505050505050565b60006020828403121561254d57600080fd5b815161120d81611f3c565b634e487b7160e01b600052603160045260246000fdfea2646970667358221220a15cb2993921fa719a888d8e79055d760dd9b3781fbd8585cef6f44b35910b0164736f6c634300080c003300000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000043697066733a2f2f62616679626569686a63716b7a3662766d326a3675796d616d3734776763753272686e35683279376f367970646e69656d6a3279667975346b6e712f0000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x60806040526004361061021a5760003560e01c80636ad1fe0211610123578063a22cb465116100ab578063c87b56dd1161006f578063c87b56dd146105db578063d547cfb7146105fb578063e985e9c514610610578063f2fde38b14610659578063fdea8e0b1461067957600080fd5b8063a22cb46514610541578063b13e73ac14610561578063b68e8c9114610591578063b88d4fde146105a6578063c721f08d146105c657600080fd5b80637d8966e4116100f25780637d8966e4146104c35780638ba4cc3c146104d85780638da5cb5b146104f8578063902d55a51461051657806395d89b411461052c57600080fd5b80636ad1fe021461044f57806370a082311461046e578063715018a61461048e5780637cb64759146104a357600080fd5b806334393743116101a65780634f6ccce7116101755780634f6ccce7146103ba57806355f804b3146103da578063564566a8146103fa57806360d938dc146104175780636352211e1461042f57600080fd5b8063343937431461035f57806335f656cf146103745780633b4b13811461038757806342842e0e1461039a57600080fd5b806309d42b30116101ed57806309d42b30146102d057806318160ddd146102f457806323b872dd146103095780632eb4a7ab146103295780632f745c591461033f57600080fd5b806301ffc9a71461021f57806306fdde0314610254578063081812fc14610276578063095ea7b3146102ae575b600080fd5b34801561022b57600080fd5b5061023f61023a366004611f52565b610693565b60405190151581526020015b60405180910390f35b34801561026057600080fd5b506102696106be565b60405161024b9190611fc7565b34801561028257600080fd5b50610296610291366004611fda565b610750565b6040516001600160a01b03909116815260200161024b565b3480156102ba57600080fd5b506102ce6102c936600461200f565b6107ea565b005b3480156102dc57600080fd5b506102e6600d5481565b60405190815260200161024b565b34801561030057600080fd5b506008546102e6565b34801561031557600080fd5b506102ce610324366004612039565b610900565b34801561033557600080fd5b506102e6600f5481565b34801561034b57600080fd5b506102e661035a36600461200f565b610931565b34801561036b57600080fd5b506102ce6109c7565b6102ce610382366004612075565b610a05565b6102ce610395366004611fda565b610be8565b3480156103a657600080fd5b506102ce6103b5366004612039565b610d17565b3480156103c657600080fd5b506102e66103d5366004611fda565b610d32565b3480156103e657600080fd5b506102ce6103f5366004612176565b610dc5565b34801561040657600080fd5b50601054610100900460ff1661023f565b34801561042357600080fd5b5060105460ff1661023f565b34801561043b57600080fd5b5061029661044a366004611fda565b610e06565b34801561045b57600080fd5b5060105461023f90610100900460ff1681565b34801561047a57600080fd5b506102e66104893660046121bf565b610e7d565b34801561049a57600080fd5b506102ce610f04565b3480156104af57600080fd5b506102ce6104be366004611fda565b610f3a565b3480156104cf57600080fd5b506102ce610f69565b3480156104e457600080fd5b506102ce6104f336600461200f565b610fb0565b34801561050457600080fd5b50600a546001600160a01b0316610296565b34801561052257600080fd5b506102e6600c5481565b34801561053857600080fd5b50610269611078565b34801561054d57600080fd5b506102ce61055c3660046121da565b611087565b34801561056d57600080fd5b5061023f61057c3660046121bf565b60116020526000908152604090205460ff1681565b34801561059d57600080fd5b506102ce611092565b3480156105b257600080fd5b506102ce6105c1366004612216565b6110cc565b3480156105d257600080fd5b506102ce6110fe565b3480156105e757600080fd5b506102696105f6366004611fda565b611139565b34801561060757600080fd5b50610269611214565b34801561061c57600080fd5b5061023f61062b366004612292565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561066557600080fd5b506102ce6106743660046121bf565b6112a2565b34801561068557600080fd5b5060105461023f9060ff1681565b60006001600160e01b0319821663780e9d6360e01b14806106b857506106b882611346565b92915050565b6060600080546106cd906122c5565b80601f01602080910402602001604051908101604052809291908181526020018280546106f9906122c5565b80156107465780601f1061071b57610100808354040283529160200191610746565b820191906000526020600020905b81548152906001019060200180831161072957829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166107ce5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b60006107f582610e06565b9050806001600160a01b0316836001600160a01b031614156108635760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016107c5565b336001600160a01b038216148061087f575061087f813361062b565b6108f15760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016107c5565b6108fb8383611396565b505050565b61090a3382611404565b6109265760405162461bcd60e51b81526004016107c590612300565b6108fb8383836114fb565b600061093c83610e7d565b821061099e5760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b60648201526084016107c5565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600a546001600160a01b031633146109f15760405162461bcd60e51b81526004016107c590612351565b6010805460ff19811660ff90911615179055565b6000610a10600b5490565b60105490915060ff16610a5e5760405162461bcd60e51b81526020600482015260166024820152755072652d53616c65206973206e6f742061637469766560501b60448201526064016107c5565b3360009081526011602052604090205460ff1615610abe5760405162461bcd60e51b815260206004820152601f60248201527f596f7527766520616c726561647920636c61696d656420796f7572204e46540060448201526064016107c5565b6040516bffffffffffffffffffffffff193360601b166020820152600090603401604051602081830303815290604052805190602001209050610b3884848080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050600f5491508490506116a6565b610b935760405162461bcd60e51b815260206004820152602660248201527f496e76616c69642070726f6f662e20596f75277265206e6f7420696e205768696044820152651d195b1a5cdd60d21b60648201526084016107c5565b600c54610ba18360016116bc565b1115610bbf5760405162461bcd60e51b81526004016107c590612386565b336000818152601160205260409020805460ff19166001179055610be2906116c8565b50505050565b6000610bf3600b5490565b601054909150610100900460ff16610c425760405162461bcd60e51b815260206004820152601260248201527153616c65206973206e6f742061637469766560701b60448201526064016107c5565b600c54610c4f82846116bc565b1115610c6d5760405162461bcd60e51b81526004016107c590612386565b600082118015610c7f5750600d548211155b610cf15760405162461bcd60e51b815260206004820152603e60248201527f4d696e74207175616e74697479206973206e6f7420636f72726563742e20496e60448201527f736572742061206e756d626572206265747765656e203120616e64203230000060648201526084016107c5565b60005b828110156108fb57610d05336116c8565b80610d0f816123df565b915050610cf4565b6108fb838383604051806020016040528060008152506110cc565b6000610d3d60085490565b8210610da05760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b60648201526084016107c5565b60088281548110610db357610db36123fa565b90600052602060002001549050919050565b600a546001600160a01b03163314610def5760405162461bcd60e51b81526004016107c590612351565b8051610e0290600e906020840190611ea3565b5050565b6000818152600260205260408120546001600160a01b0316806106b85760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016107c5565b60006001600160a01b038216610ee85760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016107c5565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b03163314610f2e5760405162461bcd60e51b81526004016107c590612351565b610f3860006116ed565b565b600a546001600160a01b03163314610f645760405162461bcd60e51b81526004016107c590612351565b600f55565b600a546001600160a01b03163314610f935760405162461bcd60e51b81526004016107c590612351565b6010805461ff001981166101009182900460ff1615909102179055565b600a546001600160a01b03163314610fda5760405162461bcd60e51b81526004016107c590612351565b6000610fe5600b5490565b600c54909150610ff582846116bc565b11156110525760405162461bcd60e51b815260206004820152602660248201527f596f7527726520747279696e6720746f2061697264726f7020746f6f206d756360448201526568204e46547360d01b60648201526084016107c5565b60005b82811015610be257611066846116c8565b80611070816123df565b915050611055565b6060600180546106cd906122c5565b610e0233838361173f565b600a546001600160a01b031633146110bc5760405162461bcd60e51b81526004016107c590612351565b6010805461ffff19166001179055565b6110d63383611404565b6110f25760405162461bcd60e51b81526004016107c590612300565b610be28484848461180e565b600a546001600160a01b031633146111285760405162461bcd60e51b81526004016107c590612351565b6010805461ffff1916610100179055565b6000818152600260205260409020546060906001600160a01b03166111b85760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016107c5565b60006111c2611841565b905060008151116111e2576040518060200160405280600081525061120d565b806111ec84611850565b6040516020016111fd929190612410565b6040516020818303038152906040525b9392505050565b600e8054611221906122c5565b80601f016020809104026020016040519081016040528092919081815260200182805461124d906122c5565b801561129a5780601f1061126f5761010080835404028352916020019161129a565b820191906000526020600020905b81548152906001019060200180831161127d57829003601f168201915b505050505081565b600a546001600160a01b031633146112cc5760405162461bcd60e51b81526004016107c590612351565b6001600160a01b0381166113315760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016107c5565b61133a816116ed565b50565b80546001019055565b60006001600160e01b031982166380ac58cd60e01b148061137757506001600160e01b03198216635b5e139f60e01b145b806106b857506301ffc9a760e01b6001600160e01b03198316146106b8565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906113cb82610e06565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b031661147d5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016107c5565b600061148883610e06565b9050806001600160a01b0316846001600160a01b031614806114c35750836001600160a01b03166114b884610750565b6001600160a01b0316145b806114f357506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b031661150e82610e06565b6001600160a01b0316146115765760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b60648201526084016107c5565b6001600160a01b0382166115d85760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016107c5565b6115e383838361194e565b6115ee600082611396565b6001600160a01b038316600090815260036020526040812080546001929061161790849061243f565b90915550506001600160a01b0382166000908152600360205260408120805460019290611645908490612456565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6000826116b38584611a06565b14949350505050565b600061120d8284612456565b60006116d3600b5490565b90506116df8282611a7a565b610e02600b80546001019055565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b031614156117a15760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016107c5565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b6118198484846114fb565b61182584848484611a94565b610be25760405162461bcd60e51b81526004016107c59061246e565b6060600e80546106cd906122c5565b6060816118745750506040805180820190915260018152600360fc1b602082015290565b8160005b811561189e5780611888816123df565b91506118979050600a836124d6565b9150611878565b60008167ffffffffffffffff8111156118b9576118b96120ea565b6040519080825280601f01601f1916602001820160405280156118e3576020820181803683370190505b5090505b84156114f3576118f860018361243f565b9150611905600a866124ea565b611910906030612456565b60f81b818381518110611925576119256123fa565b60200101906001600160f81b031916908160001a905350611947600a866124d6565b94506118e7565b6001600160a01b0383166119a9576119a481600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b6119cc565b816001600160a01b0316836001600160a01b0316146119cc576119cc8382611b92565b6001600160a01b0382166119e3576108fb81611c2f565b826001600160a01b0316826001600160a01b0316146108fb576108fb8282611cde565b600081815b8451811015611a72576000858281518110611a2857611a286123fa565b60200260200101519050808311611a4e5760008381526020829052604090209250611a5f565b600081815260208490526040902092505b5080611a6a816123df565b915050611a0b565b509392505050565b610e02828260405180602001604052806000815250611d22565b60006001600160a01b0384163b15611b8757604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611ad89033908990889088906004016124fe565b6020604051808303816000875af1925050508015611b13575060408051601f3d908101601f19168201909252611b109181019061253b565b60015b611b6d573d808015611b41576040519150601f19603f3d011682016040523d82523d6000602084013e611b46565b606091505b508051611b655760405162461bcd60e51b81526004016107c59061246e565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506114f3565b506001949350505050565b60006001611b9f84610e7d565b611ba9919061243f565b600083815260076020526040902054909150808214611bfc576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090611c419060019061243f565b60008381526009602052604081205460088054939450909284908110611c6957611c696123fa565b906000526020600020015490508060088381548110611c8a57611c8a6123fa565b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480611cc257611cc2612558565b6001900381819060005260206000200160009055905550505050565b6000611ce983610e7d565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b611d2c8383611d55565b611d396000848484611a94565b6108fb5760405162461bcd60e51b81526004016107c59061246e565b6001600160a01b038216611dab5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016107c5565b6000818152600260205260409020546001600160a01b031615611e105760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016107c5565b611e1c6000838361194e565b6001600160a01b0382166000908152600360205260408120805460019290611e45908490612456565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b828054611eaf906122c5565b90600052602060002090601f016020900481019282611ed15760008555611f17565b82601f10611eea57805160ff1916838001178555611f17565b82800160010185558215611f17579182015b82811115611f17578251825591602001919060010190611efc565b50611f23929150611f27565b5090565b5b80821115611f235760008155600101611f28565b6001600160e01b03198116811461133a57600080fd5b600060208284031215611f6457600080fd5b813561120d81611f3c565b60005b83811015611f8a578181015183820152602001611f72565b83811115610be25750506000910152565b60008151808452611fb3816020860160208601611f6f565b601f01601f19169290920160200192915050565b60208152600061120d6020830184611f9b565b600060208284031215611fec57600080fd5b5035919050565b80356001600160a01b038116811461200a57600080fd5b919050565b6000806040838503121561202257600080fd5b61202b83611ff3565b946020939093013593505050565b60008060006060848603121561204e57600080fd5b61205784611ff3565b925061206560208501611ff3565b9150604084013590509250925092565b6000806020838503121561208857600080fd5b823567ffffffffffffffff808211156120a057600080fd5b818501915085601f8301126120b457600080fd5b8135818111156120c357600080fd5b8660208260051b85010111156120d857600080fd5b60209290920196919550909350505050565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff8084111561211b5761211b6120ea565b604051601f8501601f19908116603f01168101908282118183101715612143576121436120ea565b8160405280935085815286868601111561215c57600080fd5b858560208301376000602087830101525050509392505050565b60006020828403121561218857600080fd5b813567ffffffffffffffff81111561219f57600080fd5b8201601f810184136121b057600080fd5b6114f384823560208401612100565b6000602082840312156121d157600080fd5b61120d82611ff3565b600080604083850312156121ed57600080fd5b6121f683611ff3565b91506020830135801515811461220b57600080fd5b809150509250929050565b6000806000806080858703121561222c57600080fd5b61223585611ff3565b935061224360208601611ff3565b925060408501359150606085013567ffffffffffffffff81111561226657600080fd5b8501601f8101871361227757600080fd5b61228687823560208401612100565b91505092959194509250565b600080604083850312156122a557600080fd5b6122ae83611ff3565b91506122bc60208401611ff3565b90509250929050565b600181811c908216806122d957607f821691505b602082108114156122fa57634e487b7160e01b600052602260045260246000fd5b50919050565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526023908201527f596f7527726520747279696e6720746f206d696e7420746f6f206d756368204e60408201526246547360e81b606082015260800190565b634e487b7160e01b600052601160045260246000fd5b60006000198214156123f3576123f36123c9565b5060010190565b634e487b7160e01b600052603260045260246000fd5b60008351612422818460208801611f6f565b835190830190612436818360208801611f6f565b01949350505050565b600082821015612451576124516123c9565b500390565b60008219821115612469576124696123c9565b500190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b634e487b7160e01b600052601260045260246000fd5b6000826124e5576124e56124c0565b500490565b6000826124f9576124f96124c0565b500690565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061253190830184611f9b565b9695505050505050565b60006020828403121561254d57600080fd5b815161120d81611f3c565b634e487b7160e01b600052603160045260246000fdfea2646970667358221220a15cb2993921fa719a888d8e79055d760dd9b3781fbd8585cef6f44b35910b0164736f6c634300080c0033

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

00000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000043697066733a2f2f62616679626569686a63716b7a3662766d326a3675796d616d3734776763753272686e35683279376f367970646e69656d6a3279667975346b6e712f0000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : pBaseTokenURI (string): ipfs://bafybeihjcqkz6bvm2j6uymam74wgcu2rhn5h2y7o6ypdniemj2yfyu4knq/

-----Encoded View---------------
5 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000043
Arg [2] : 697066733a2f2f62616679626569686a63716b7a3662766d326a3675796d616d
Arg [3] : 3734776763753272686e35683279376f367970646e69656d6a3279667975346b
Arg [4] : 6e712f0000000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

57515:2971:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48517:224;;;;;;;;;;-1:-1:-1;48517:224:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;48517:224:0;;;;;;;;35276:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;36835:221::-;;;;;;;;;;-1:-1:-1;36835:221:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1692:32:1;;;1674:51;;1662:2;1647:18;36835:221:0;1528:203:1;36358:411:0;;;;;;;;;;-1:-1:-1;36358:411:0;;;;;:::i;:::-;;:::i;:::-;;57722:31;;;;;;;;;;;;;;;;;;;2319:25:1;;;2307:2;2292:18;57722:31:0;2173:177:1;49157:113:0;;;;;;;;;;-1:-1:-1;49245:10:0;:17;49157:113;;37585:339;;;;;;;;;;-1:-1:-1;37585:339:0;;;;;:::i;:::-;;:::i;57791:25::-;;;;;;;;;;;;;;;;48825:256;;;;;;;;;;-1:-1:-1;48825:256:0;;;;;:::i;:::-;;:::i;58493:73::-;;;;;;;;;;;;;:::i;59265:611::-;;;;;;:::i;:::-;;:::i;59884:430::-;;;;;;:::i;:::-;;:::i;37995:185::-;;;;;;;;;;-1:-1:-1;37995:185:0;;;;;:::i;:::-;;:::i;49347:233::-;;;;;;;;;;-1:-1:-1;49347:233:0;;;;;:::i;:::-;;:::i;58206:107::-;;;;;;;;;;-1:-1:-1;58206:107:0;;;;;:::i;:::-;;:::i;58850:75::-;;;;;;;;;;-1:-1:-1;58915:4:0;;;;;;;58850:75;;58763:81;;;;;;;;;;-1:-1:-1;58831:7:0;;;;58763:81;;34970:239;;;;;;;;;;-1:-1:-1;34970:239:0;;;;;:::i;:::-;;:::i;57853:24::-;;;;;;;;;;-1:-1:-1;57853:24:0;;;;;;;;;;;34700:208;;;;;;;;;;-1:-1:-1;34700:208:0;;;;;:::i;:::-;;:::i;7370:103::-;;;;;;;;;;;;;:::i;58319:98::-;;;;;;;;;;-1:-1:-1;58319:98:0;;;;;:::i;:::-;;:::i;58423:64::-;;;;;;;;;;;;;:::i;58931:328::-;;;;;;;;;;-1:-1:-1;58931:328:0;;;;;:::i;:::-;;:::i;6719:87::-;;;;;;;;;;-1:-1:-1;6792:6:0;;-1:-1:-1;;;;;6792:6:0;6719:87;;57683:34;;;;;;;;;;;;;;;;35445:104;;;;;;;;;;;;;:::i;37128:155::-;;;;;;;;;;-1:-1:-1;37128:155:0;;;;;:::i;:::-;;:::i;57884:47::-;;;;;;;;;;-1:-1:-1;57884:47:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;58572:90;;;;;;;;;;;;;:::i;38251:328::-;;;;;;;;;;-1:-1:-1;38251:328:0;;;;;:::i;:::-;;:::i;58668:89::-;;;;;;;;;;;;;:::i;35620:334::-;;;;;;;;;;-1:-1:-1;35620:334:0;;;;;:::i;:::-;;:::i;57760:26::-;;;;;;;;;;;;;:::i;37354:164::-;;;;;;;;;;-1:-1:-1;37354:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;37475:25:0;;;37451:4;37475:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;37354:164;7628:201;;;;;;;;;;-1:-1:-1;7628:201:0;;;;;:::i;:::-;;:::i;57821:27::-;;;;;;;;;;-1:-1:-1;57821:27:0;;;;;;;;48517:224;48619:4;-1:-1:-1;;;;;;48643:50:0;;-1:-1:-1;;;48643:50:0;;:90;;;48697:36;48721:11;48697:23;:36::i;:::-;48636:97;48517:224;-1:-1:-1;;48517:224:0:o;35276:100::-;35330:13;35363:5;35356:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35276:100;:::o;36835:221::-;36911:7;40178:16;;;:7;:16;;;;;;-1:-1:-1;;;;;40178:16:0;36931:73;;;;-1:-1:-1;;;36931:73:0;;6967:2:1;36931:73:0;;;6949:21:1;7006:2;6986:18;;;6979:30;7045:34;7025:18;;;7018:62;-1:-1:-1;;;7096:18:1;;;7089:42;7148:19;;36931:73:0;;;;;;;;;-1:-1:-1;37024:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;37024:24:0;;36835:221::o;36358:411::-;36439:13;36455:23;36470:7;36455:14;:23::i;:::-;36439:39;;36503:5;-1:-1:-1;;;;;36497:11:0;:2;-1:-1:-1;;;;;36497:11:0;;;36489:57;;;;-1:-1:-1;;;36489:57:0;;7380:2:1;36489:57:0;;;7362:21:1;7419:2;7399:18;;;7392:30;7458:34;7438:18;;;7431:62;-1:-1:-1;;;7509:18:1;;;7502:31;7550:19;;36489:57:0;7178:397:1;36489:57:0;5639:10;-1:-1:-1;;;;;36581:21:0;;;;:62;;-1:-1:-1;36606:37:0;36623:5;5639:10;37354:164;:::i;36606:37::-;36559:168;;;;-1:-1:-1;;;36559:168:0;;7782:2:1;36559:168:0;;;7764:21:1;7821:2;7801:18;;;7794:30;7860:34;7840:18;;;7833:62;7931:26;7911:18;;;7904:54;7975:19;;36559:168:0;7580:420:1;36559:168:0;36740:21;36749:2;36753:7;36740:8;:21::i;:::-;36428:341;36358:411;;:::o;37585:339::-;37780:41;5639:10;37813:7;37780:18;:41::i;:::-;37772:103;;;;-1:-1:-1;;;37772:103:0;;;;;;;:::i;:::-;37888:28;37898:4;37904:2;37908:7;37888:9;:28::i;48825:256::-;48922:7;48958:23;48975:5;48958:16;:23::i;:::-;48950:5;:31;48942:87;;;;-1:-1:-1;;;48942:87:0;;8625:2:1;48942:87:0;;;8607:21:1;8664:2;8644:18;;;8637:30;8703:34;8683:18;;;8676:62;-1:-1:-1;;;8754:18:1;;;8747:41;8805:19;;48942:87:0;8423:407:1;48942:87:0;-1:-1:-1;;;;;;49047:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;48825:256::o;58493:73::-;6792:6;;-1:-1:-1;;;;;6792:6:0;5639:10;6939:23;6931:68;;;;-1:-1:-1;;;6931:68:0;;;;;;;:::i;:::-;58553:7:::1;::::0;;-1:-1:-1;;58542:18:0;::::1;58553:7;::::0;;::::1;58552:8;58542:18;::::0;;58493:73::o;59265:611::-;59345:19;59367;:9;4489:14;;4397:114;59367:19;59403:7;;59345:41;;-1:-1:-1;59403:7:0;;59395:42;;;;-1:-1:-1;;;59395:42:0;;9398:2:1;59395:42:0;;;9380:21:1;9437:2;9417:18;;;9410:30;-1:-1:-1;;;9456:18:1;;;9449:52;9518:18;;59395:42:0;9196:346:1;59395:42:0;59469:10;59453:27;;;;:15;:27;;;;;;;;59452:28;59444:72;;;;-1:-1:-1;;;59444:72:0;;9749:2:1;59444:72:0;;;9731:21:1;9788:2;9768:18;;;9761:30;9827:33;9807:18;;;9800:61;9878:18;;59444:72:0;9547:355:1;59444:72:0;59551:28;;-1:-1:-1;;59568:10:0;10056:2:1;10052:15;10048:53;59551:28:0;;;10036:66:1;59525:12:0;;10118::1;;59551:28:0;;;;;;;;;;;;59540:41;;;;;;59525:56;;59596:49;59615:11;;59596:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;59628:10:0;;;-1:-1:-1;59640:4:0;;-1:-1:-1;59596:18:0;:49::i;:::-;59588:100;;;;-1:-1:-1;;;59588:100:0;;10343:2:1;59588:100:0;;;10325:21:1;10382:2;10362:18;;;10355:30;10421:34;10401:18;;;10394:62;-1:-1:-1;;;10472:18:1;;;10465:36;10518:19;;59588:100:0;10141:402:1;59588:100:0;59735:12;;59713:18;:11;59729:1;59713:15;:18::i;:::-;:34;;59697:103;;;;-1:-1:-1;;;59697:103:0;;;;;;;:::i;:::-;59825:10;59809:27;;;;:15;:27;;;;;:34;;-1:-1:-1;;59809:34:0;59839:4;59809:34;;;59850:20;;:8;:20::i;:::-;59338:538;;59265:611;;:::o;59884:430::-;59937:19;59959;:9;4489:14;;4397:114;59959:19;59999:4;;59937:41;;-1:-1:-1;59999:4:0;;;;;59991:35;;;;-1:-1:-1;;;59991:35:0;;11154:2:1;59991:35:0;;;11136:21:1;11193:2;11173:18;;;11166:30;-1:-1:-1;;;11212:18:1;;;11205:48;11270:18;;59991:35:0;10952:342:1;59991:35:0;60065:12;;60041:20;:11;60057:3;60041:15;:20::i;:::-;:36;;60033:84;;;;-1:-1:-1;;;60033:84:0;;;;;;;:::i;:::-;60138:1;60132:3;:7;:30;;;;;60150:12;;60143:3;:19;;60132:30;60124:105;;;;-1:-1:-1;;;60124:105:0;;11501:2:1;60124:105:0;;;11483:21:1;11540:2;11520:18;;;11513:30;11579:34;11559:18;;;11552:62;11650:32;11630:18;;;11623:60;11700:19;;60124:105:0;11299:426:1;60124:105:0;60243:9;60238:71;60262:3;60258:1;:7;60238:71;;;60281:20;60290:10;60281:8;:20::i;:::-;60267:3;;;;:::i;:::-;;;;60238:71;;37995:185;38133:39;38150:4;38156:2;38160:7;38133:39;;;;;;;;;;;;:16;:39::i;49347:233::-;49422:7;49458:30;49245:10;:17;;49157:113;49458:30;49450:5;:38;49442:95;;;;-1:-1:-1;;;49442:95:0;;12204:2:1;49442:95:0;;;12186:21:1;12243:2;12223:18;;;12216:30;12282:34;12262:18;;;12255:62;-1:-1:-1;;;12333:18:1;;;12326:42;12385:19;;49442:95:0;12002:408:1;49442:95:0;49555:10;49566:5;49555:17;;;;;;;;:::i;:::-;;;;;;;;;49548:24;;49347:233;;;:::o;58206:107::-;6792:6;;-1:-1:-1;;;;;6792:6:0;5639:10;6939:23;6931:68;;;;-1:-1:-1;;;6931:68:0;;;;;;;:::i;:::-;58279:28;;::::1;::::0;:12:::1;::::0;:28:::1;::::0;::::1;::::0;::::1;:::i;:::-;;58206:107:::0;:::o;34970:239::-;35042:7;35078:16;;;:7;:16;;;;;;-1:-1:-1;;;;;35078:16:0;35113:19;35105:73;;;;-1:-1:-1;;;35105:73:0;;12749:2:1;35105:73:0;;;12731:21:1;12788:2;12768:18;;;12761:30;12827:34;12807:18;;;12800:62;-1:-1:-1;;;12878:18:1;;;12871:39;12927:19;;35105:73:0;12547:405:1;34700:208:0;34772:7;-1:-1:-1;;;;;34800:19:0;;34792:74;;;;-1:-1:-1;;;34792:74:0;;13159:2:1;34792:74:0;;;13141:21:1;13198:2;13178:18;;;13171:30;13237:34;13217:18;;;13210:62;-1:-1:-1;;;13288:18:1;;;13281:40;13338:19;;34792:74:0;12957:406:1;34792:74:0;-1:-1:-1;;;;;;34884:16:0;;;;;:9;:16;;;;;;;34700:208::o;7370:103::-;6792:6;;-1:-1:-1;;;;;6792:6:0;5639:10;6939:23;6931:68;;;;-1:-1:-1;;;6931:68:0;;;;;;;:::i;:::-;7435:30:::1;7462:1;7435:18;:30::i;:::-;7370:103::o:0;58319:98::-;6792:6;;-1:-1:-1;;;;;6792:6:0;5639:10;6939:23;6931:68;;;;-1:-1:-1;;;6931:68:0;;;;;;;:::i;:::-;58387:10:::1;:24:::0;58319:98::o;58423:64::-;6792:6;;-1:-1:-1;;;;;6792:6:0;5639:10;6939:23;6931:68;;;;-1:-1:-1;;;6931:68:0;;;;;;;:::i;:::-;58477:4:::1;::::0;;-1:-1:-1;;58469:12:0;::::1;58477:4;::::0;;;::::1;;;58476:5;58469:12:::0;;::::1;;::::0;;58423:64::o;58931:328::-;6792:6;;-1:-1:-1;;;;;6792:6:0;5639:10;6939:23;6931:68;;;;-1:-1:-1;;;6931:68:0;;;;;;;:::i;:::-;59008:19:::1;59030;:9;4489:14:::0;;4397:114;59030:19:::1;59103:12;::::0;59008:41;;-1:-1:-1;59074:25:0::1;59008:41:::0;59090:8;59074:15:::1;:25::i;:::-;:41;;59058:113;;;::::0;-1:-1:-1;;;59058:113:0;;13570:2:1;59058:113:0::1;::::0;::::1;13552:21:1::0;13609:2;13589:18;;;13582:30;13648:34;13628:18;;;13621:62;-1:-1:-1;;;13699:18:1;;;13692:36;13745:19;;59058:113:0::1;13368:402:1::0;59058:113:0::1;59185:9;59180:74;59204:8;59200:1;:12;59180:74;;;59228:18;59237:8;59228;:18::i;:::-;59214:3:::0;::::1;::::0;::::1;:::i;:::-;;;;59180:74;;35445:104:::0;35501:13;35534:7;35527:14;;;;;:::i;37128:155::-;37223:52;5639:10;37256:8;37266;37223:18;:52::i;58572:90::-;6792:6;;-1:-1:-1;;;;;6792:6:0;5639:10;6939:23;6931:68;;;;-1:-1:-1;;;6931:68:0;;;;;;;:::i;:::-;58623:7:::1;:14:::0;;-1:-1:-1;;58644:12:0;58633:4:::1;58644:12:::0;;;58572:90::o;38251:328::-;38426:41;5639:10;38459:7;38426:18;:41::i;:::-;38418:103;;;;-1:-1:-1;;;38418:103:0;;;;;;;:::i;:::-;38532:39;38546:4;38552:2;38556:7;38565:5;38532:13;:39::i;58668:89::-;6792:6;;-1:-1:-1;;;;;6792:6:0;5639:10;6939:23;6931:68;;;;-1:-1:-1;;;6931:68:0;;;;;;;:::i;:::-;58716:7:::1;:15:::0;;-1:-1:-1;;58738:11:0;58716:15:::1;58738:11;::::0;;58668:89::o;35620:334::-;40154:4;40178:16;;;:7;:16;;;;;;35693:13;;-1:-1:-1;;;;;40178:16:0;35719:76;;;;-1:-1:-1;;;35719:76:0;;13977:2:1;35719:76:0;;;13959:21:1;14016:2;13996:18;;;13989:30;14055:34;14035:18;;;14028:62;-1:-1:-1;;;14106:18:1;;;14099:45;14161:19;;35719:76:0;13775:411:1;35719:76:0;35808:21;35832:10;:8;:10::i;:::-;35808:34;;35884:1;35866:7;35860:21;:25;:86;;;;;;;;;;;;;;;;;35912:7;35921:18;:7;:16;:18::i;:::-;35895:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;35860:86;35853:93;35620:334;-1:-1:-1;;;35620:334:0:o;57760:26::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;7628:201::-;6792:6;;-1:-1:-1;;;;;6792:6:0;5639:10;6939:23;6931:68;;;;-1:-1:-1;;;6931:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;7717:22:0;::::1;7709:73;;;::::0;-1:-1:-1;;;7709:73:0;;14868:2:1;7709:73:0::1;::::0;::::1;14850:21:1::0;14907:2;14887:18;;;14880:30;14946:34;14926:18;;;14919:62;-1:-1:-1;;;14997:18:1;;;14990:36;15043:19;;7709:73:0::1;14666:402:1::0;7709:73:0::1;7793:28;7812:8;7793:18;:28::i;:::-;7628:201:::0;:::o;4519:127::-;4608:19;;4626:1;4608:19;;;4519:127::o;34331:305::-;34433:4;-1:-1:-1;;;;;;34470:40:0;;-1:-1:-1;;;34470:40:0;;:105;;-1:-1:-1;;;;;;;34527:48:0;;-1:-1:-1;;;34527:48:0;34470:105;:158;;;-1:-1:-1;;;;;;;;;;33022:40:0;;;34592:36;32913:157;44071:174;44146:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;44146:29:0;-1:-1:-1;;;;;44146:29:0;;;;;;;;:24;;44200:23;44146:24;44200:14;:23::i;:::-;-1:-1:-1;;;;;44191:46:0;;;;;;;;;;;44071:174;;:::o;40383:348::-;40476:4;40178:16;;;:7;:16;;;;;;-1:-1:-1;;;;;40178:16:0;40493:73;;;;-1:-1:-1;;;40493:73:0;;15275:2:1;40493:73:0;;;15257:21:1;15314:2;15294:18;;;15287:30;15353:34;15333:18;;;15326:62;-1:-1:-1;;;15404:18:1;;;15397:42;15456:19;;40493:73:0;15073:408:1;40493:73:0;40577:13;40593:23;40608:7;40593:14;:23::i;:::-;40577:39;;40646:5;-1:-1:-1;;;;;40635:16:0;:7;-1:-1:-1;;;;;40635:16:0;;:51;;;;40679:7;-1:-1:-1;;;;;40655:31:0;:20;40667:7;40655:11;:20::i;:::-;-1:-1:-1;;;;;40655:31:0;;40635:51;:87;;;-1:-1:-1;;;;;;37475:25:0;;;37451:4;37475:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;40690:32;40627:96;40383:348;-1:-1:-1;;;;40383:348:0:o;43375:578::-;43534:4;-1:-1:-1;;;;;43507:31:0;:23;43522:7;43507:14;:23::i;:::-;-1:-1:-1;;;;;43507:31:0;;43499:85;;;;-1:-1:-1;;;43499:85:0;;15688:2:1;43499:85:0;;;15670:21:1;15727:2;15707:18;;;15700:30;15766:34;15746:18;;;15739:62;-1:-1:-1;;;15817:18:1;;;15810:39;15866:19;;43499:85:0;15486:405:1;43499:85:0;-1:-1:-1;;;;;43603:16:0;;43595:65;;;;-1:-1:-1;;;43595:65:0;;16098:2:1;43595:65:0;;;16080:21:1;16137:2;16117:18;;;16110:30;16176:34;16156:18;;;16149:62;-1:-1:-1;;;16227:18:1;;;16220:34;16271:19;;43595:65:0;15896:400:1;43595:65:0;43673:39;43694:4;43700:2;43704:7;43673:20;:39::i;:::-;43777:29;43794:1;43798:7;43777:8;:29::i;:::-;-1:-1:-1;;;;;43819:15:0;;;;;;:9;:15;;;;;:20;;43838:1;;43819:15;:20;;43838:1;;43819:20;:::i;:::-;;;;-1:-1:-1;;;;;;;43850:13:0;;;;;;:9;:13;;;;;:18;;43867:1;;43850:13;:18;;43867:1;;43850:18;:::i;:::-;;;;-1:-1:-1;;43879:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;43879:21:0;-1:-1:-1;;;;;43879:21:0;;;;;;;;;43918:27;;43879:16;;43918:27;;;;;;;43375:578;;;:::o;2184:190::-;2309:4;2362;2333:25;2346:5;2353:4;2333:12;:25::i;:::-;:33;;2184:190;-1:-1:-1;;;;2184:190:0:o;10925:98::-;10983:7;11010:5;11014:1;11010;:5;:::i;60320:163::-;60371:18;60392:19;:9;4489:14;;4397:114;60392:19;60371:40;;60418:31;60428:8;60438:10;60418:9;:31::i;:::-;60456:21;:9;4608:19;;4626:1;4608:19;;;4519:127;7989:191;8082:6;;;-1:-1:-1;;;;;8099:17:0;;;-1:-1:-1;;;;;;8099:17:0;;;;;;;8132:40;;8082:6;;;8099:17;8082:6;;8132:40;;8063:16;;8132:40;8052:128;7989:191;:::o;44387:315::-;44542:8;-1:-1:-1;;;;;44533:17:0;:5;-1:-1:-1;;;;;44533:17:0;;;44525:55;;;;-1:-1:-1;;;44525:55:0;;16766:2:1;44525:55:0;;;16748:21:1;16805:2;16785:18;;;16778:30;16844:27;16824:18;;;16817:55;16889:18;;44525:55:0;16564:349:1;44525:55:0;-1:-1:-1;;;;;44591:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;44591:46:0;;;;;;;;;;44653:41;;540::1;;;44653::0;;513:18:1;44653:41:0;;;;;;;44387:315;;;:::o;39461:::-;39618:28;39628:4;39634:2;39638:7;39618:9;:28::i;:::-;39665:48;39688:4;39694:2;39698:7;39707:5;39665:22;:48::i;:::-;39657:111;;;;-1:-1:-1;;;39657:111:0;;;;;;;:::i;58093:107::-;58153:13;58182:12;58175:19;;;;;:::i;30429:723::-;30485:13;30706:10;30702:53;;-1:-1:-1;;30733:10:0;;;;;;;;;;;;-1:-1:-1;;;30733:10:0;;;;;30429:723::o;30702:53::-;30780:5;30765:12;30821:78;30828:9;;30821:78;;30854:8;;;;:::i;:::-;;-1:-1:-1;30877:10:0;;-1:-1:-1;30885:2:0;30877:10;;:::i;:::-;;;30821:78;;;30909:19;30941:6;30931:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;30931:17:0;;30909:39;;30959:154;30966:10;;30959:154;;30993:11;31003:1;30993:11;;:::i;:::-;;-1:-1:-1;31062:10:0;31070:2;31062:5;:10;:::i;:::-;31049:24;;:2;:24;:::i;:::-;31036:39;;31019:6;31026;31019:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;31019:56:0;;;;;;;;-1:-1:-1;31090:11:0;31099:2;31090:11;;:::i;:::-;;;30959:154;;50193:589;-1:-1:-1;;;;;50399:18:0;;50395:187;;50434:40;50466:7;51609:10;:17;;51582:24;;;;:15;:24;;;;;:44;;;51637:24;;;;;;;;;;;;51505:164;50434:40;50395:187;;;50504:2;-1:-1:-1;;;;;50496:10:0;:4;-1:-1:-1;;;;;50496:10:0;;50492:90;;50523:47;50556:4;50562:7;50523:32;:47::i;:::-;-1:-1:-1;;;;;50596:16:0;;50592:183;;50629:45;50666:7;50629:36;:45::i;50592:183::-;50702:4;-1:-1:-1;;;;;50696:10:0;:2;-1:-1:-1;;;;;50696:10:0;;50692:83;;50723:40;50751:2;50755:7;50723:27;:40::i;2735:675::-;2818:7;2861:4;2818:7;2876:497;2900:5;:12;2896:1;:16;2876:497;;;2934:20;2957:5;2963:1;2957:8;;;;;;;;:::i;:::-;;;;;;;2934:31;;3000:12;2984;:28;2980:382;;3486:13;3536:15;;;3572:4;3565:15;;;3619:4;3603:21;;3112:57;;2980:382;;;3486:13;3536:15;;;3572:4;3565:15;;;3619:4;3603:21;;3289:57;;2980:382;-1:-1:-1;2914:3:0;;;;:::i;:::-;;;;2876:497;;;-1:-1:-1;3390:12:0;2735:675;-1:-1:-1;;;2735:675:0:o;41073:110::-;41149:26;41159:2;41163:7;41149:26;;;;;;;;;;;;:9;:26::i;45267:799::-;45422:4;-1:-1:-1;;;;;45443:13:0;;23168:20;23216:8;45439:620;;45479:72;;-1:-1:-1;;;45479:72:0;;-1:-1:-1;;;;;45479:36:0;;;;;:72;;5639:10;;45530:4;;45536:7;;45545:5;;45479:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;45479:72:0;;;;;;;;-1:-1:-1;;45479:72:0;;;;;;;;;;;;:::i;:::-;;;45475:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;45721:13:0;;45717:272;;45764:60;;-1:-1:-1;;;45764:60:0;;;;;;;:::i;45717:272::-;45939:6;45933:13;45924:6;45920:2;45916:15;45909:38;45475:529;-1:-1:-1;;;;;;45602:51:0;-1:-1:-1;;;45602:51:0;;-1:-1:-1;45595:58:0;;45439:620;-1:-1:-1;46043:4:0;45267:799;;;;;;:::o;52296:988::-;52562:22;52612:1;52587:22;52604:4;52587:16;:22::i;:::-;:26;;;;:::i;:::-;52624:18;52645:26;;;:17;:26;;;;;;52562:51;;-1:-1:-1;52778:28:0;;;52774:328;;-1:-1:-1;;;;;52845:18:0;;52823:19;52845:18;;;:12;:18;;;;;;;;:34;;;;;;;;;52896:30;;;;;;:44;;;53013:30;;:17;:30;;;;;:43;;;52774:328;-1:-1:-1;53198:26:0;;;;:17;:26;;;;;;;;53191:33;;;-1:-1:-1;;;;;53242:18:0;;;;;:12;:18;;;;;:34;;;;;;;53235:41;52296:988::o;53579:1079::-;53857:10;:17;53832:22;;53857:21;;53877:1;;53857:21;:::i;:::-;53889:18;53910:24;;;:15;:24;;;;;;54283:10;:26;;53832:46;;-1:-1:-1;53910:24:0;;53832:46;;54283:26;;;;;;:::i;:::-;;;;;;;;;54261:48;;54347:11;54322:10;54333;54322:22;;;;;;;;:::i;:::-;;;;;;;;;;;;:36;;;;54427:28;;;:15;:28;;;;;;;:41;;;54599:24;;;;;54592:31;54634:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;53650:1008;;;53579:1079;:::o;51083:221::-;51168:14;51185:20;51202:2;51185:16;:20::i;:::-;-1:-1:-1;;;;;51216:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;51261:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;51083:221:0:o;41410:321::-;41540:18;41546:2;41550:7;41540:5;:18::i;:::-;41591:54;41622:1;41626:2;41630:7;41639:5;41591:22;:54::i;:::-;41569:154;;;;-1:-1:-1;;;41569:154:0;;;;;;;:::i;42067:382::-;-1:-1:-1;;;;;42147:16:0;;42139:61;;;;-1:-1:-1;;;42139:61:0;;18793:2:1;42139:61:0;;;18775:21:1;;;18812:18;;;18805:30;18871:34;18851:18;;;18844:62;18923:18;;42139:61:0;18591:356:1;42139:61:0;40154:4;40178:16;;;:7;:16;;;;;;-1:-1:-1;;;;;40178:16:0;:30;42211:58;;;;-1:-1:-1;;;42211:58:0;;19154:2:1;42211:58:0;;;19136:21:1;19193:2;19173:18;;;19166:30;19232;19212:18;;;19205:58;19280:18;;42211:58:0;18952:352:1;42211:58:0;42282:45;42311:1;42315:2;42319:7;42282:20;:45::i;:::-;-1:-1:-1;;;;;42340:13:0;;;;;;:9;:13;;;;;:18;;42357:1;;42340:13;:18;;42357:1;;42340:18;:::i;:::-;;;;-1:-1:-1;;42369:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;42369:21:0;-1:-1:-1;;;;;42369:21:0;;;;;;;;42408:33;;42369:16;;;42408:33;;42369:16;;42408:33;42067:382;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:131:1;-1:-1:-1;;;;;;88:32:1;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;592:258::-;664:1;674:113;688:6;685:1;682:13;674:113;;;764:11;;;758:18;745:11;;;738:39;710:2;703:10;674:113;;;805:6;802:1;799:13;796:48;;;-1:-1:-1;;840:1:1;822:16;;815:27;592:258::o;855:::-;897:3;935:5;929:12;962:6;957:3;950:19;978:63;1034:6;1027:4;1022:3;1018:14;1011:4;1004:5;1000:16;978:63;:::i;:::-;1095:2;1074:15;-1:-1:-1;;1070:29:1;1061:39;;;;1102:4;1057:50;;855:258;-1:-1:-1;;855:258:1:o;1118:220::-;1267:2;1256:9;1249:21;1230:4;1287:45;1328:2;1317:9;1313:18;1305:6;1287:45;:::i;1343:180::-;1402:6;1455:2;1443:9;1434:7;1430:23;1426:32;1423:52;;;1471:1;1468;1461:12;1423:52;-1:-1:-1;1494:23:1;;1343:180;-1:-1:-1;1343:180:1:o;1736:173::-;1804:20;;-1:-1:-1;;;;;1853:31:1;;1843:42;;1833:70;;1899:1;1896;1889:12;1833:70;1736:173;;;:::o;1914:254::-;1982:6;1990;2043:2;2031:9;2022:7;2018:23;2014:32;2011:52;;;2059:1;2056;2049:12;2011:52;2082:29;2101:9;2082:29;:::i;:::-;2072:39;2158:2;2143:18;;;;2130:32;;-1:-1:-1;;;1914:254:1:o;2355:328::-;2432:6;2440;2448;2501:2;2489:9;2480:7;2476:23;2472:32;2469:52;;;2517:1;2514;2507:12;2469:52;2540:29;2559:9;2540:29;:::i;:::-;2530:39;;2588:38;2622:2;2611:9;2607:18;2588:38;:::i;:::-;2578:48;;2673:2;2662:9;2658:18;2645:32;2635:42;;2355:328;;;;;:::o;2870:615::-;2956:6;2964;3017:2;3005:9;2996:7;2992:23;2988:32;2985:52;;;3033:1;3030;3023:12;2985:52;3073:9;3060:23;3102:18;3143:2;3135:6;3132:14;3129:34;;;3159:1;3156;3149:12;3129:34;3197:6;3186:9;3182:22;3172:32;;3242:7;3235:4;3231:2;3227:13;3223:27;3213:55;;3264:1;3261;3254:12;3213:55;3304:2;3291:16;3330:2;3322:6;3319:14;3316:34;;;3346:1;3343;3336:12;3316:34;3399:7;3394:2;3384:6;3381:1;3377:14;3373:2;3369:23;3365:32;3362:45;3359:65;;;3420:1;3417;3410:12;3359:65;3451:2;3443:11;;;;;3473:6;;-1:-1:-1;2870:615:1;;-1:-1:-1;;;;2870:615:1:o;3490:127::-;3551:10;3546:3;3542:20;3539:1;3532:31;3582:4;3579:1;3572:15;3606:4;3603:1;3596:15;3622:632;3687:5;3717:18;3758:2;3750:6;3747:14;3744:40;;;3764:18;;:::i;:::-;3839:2;3833:9;3807:2;3893:15;;-1:-1:-1;;3889:24:1;;;3915:2;3885:33;3881:42;3869:55;;;3939:18;;;3959:22;;;3936:46;3933:72;;;3985:18;;:::i;:::-;4025:10;4021:2;4014:22;4054:6;4045:15;;4084:6;4076;4069:22;4124:3;4115:6;4110:3;4106:16;4103:25;4100:45;;;4141:1;4138;4131:12;4100:45;4191:6;4186:3;4179:4;4171:6;4167:17;4154:44;4246:1;4239:4;4230:6;4222;4218:19;4214:30;4207:41;;;;3622:632;;;;;:::o;4259:451::-;4328:6;4381:2;4369:9;4360:7;4356:23;4352:32;4349:52;;;4397:1;4394;4387:12;4349:52;4437:9;4424:23;4470:18;4462:6;4459:30;4456:50;;;4502:1;4499;4492:12;4456:50;4525:22;;4578:4;4570:13;;4566:27;-1:-1:-1;4556:55:1;;4607:1;4604;4597:12;4556:55;4630:74;4696:7;4691:2;4678:16;4673:2;4669;4665:11;4630:74;:::i;4715:186::-;4774:6;4827:2;4815:9;4806:7;4802:23;4798:32;4795:52;;;4843:1;4840;4833:12;4795:52;4866:29;4885:9;4866:29;:::i;5091:347::-;5156:6;5164;5217:2;5205:9;5196:7;5192:23;5188:32;5185:52;;;5233:1;5230;5223:12;5185:52;5256:29;5275:9;5256:29;:::i;:::-;5246:39;;5335:2;5324:9;5320:18;5307:32;5382:5;5375:13;5368:21;5361:5;5358:32;5348:60;;5404:1;5401;5394:12;5348:60;5427:5;5417:15;;;5091:347;;;;;:::o;5443:667::-;5538:6;5546;5554;5562;5615:3;5603:9;5594:7;5590:23;5586:33;5583:53;;;5632:1;5629;5622:12;5583:53;5655:29;5674:9;5655:29;:::i;:::-;5645:39;;5703:38;5737:2;5726:9;5722:18;5703:38;:::i;:::-;5693:48;;5788:2;5777:9;5773:18;5760:32;5750:42;;5843:2;5832:9;5828:18;5815:32;5870:18;5862:6;5859:30;5856:50;;;5902:1;5899;5892:12;5856:50;5925:22;;5978:4;5970:13;;5966:27;-1:-1:-1;5956:55:1;;6007:1;6004;5997:12;5956:55;6030:74;6096:7;6091:2;6078:16;6073:2;6069;6065:11;6030:74;:::i;:::-;6020:84;;;5443:667;;;;;;;:::o;6115:260::-;6183:6;6191;6244:2;6232:9;6223:7;6219:23;6215:32;6212:52;;;6260:1;6257;6250:12;6212:52;6283:29;6302:9;6283:29;:::i;:::-;6273:39;;6331:38;6365:2;6354:9;6350:18;6331:38;:::i;:::-;6321:48;;6115:260;;;;;:::o;6380:380::-;6459:1;6455:12;;;;6502;;;6523:61;;6577:4;6569:6;6565:17;6555:27;;6523:61;6630:2;6622:6;6619:14;6599:18;6596:38;6593:161;;;6676:10;6671:3;6667:20;6664:1;6657:31;6711:4;6708:1;6701:15;6739:4;6736:1;6729:15;6593:161;;6380:380;;;:::o;8005:413::-;8207:2;8189:21;;;8246:2;8226:18;;;8219:30;8285:34;8280:2;8265:18;;8258:62;-1:-1:-1;;;8351:2:1;8336:18;;8329:47;8408:3;8393:19;;8005:413::o;8835:356::-;9037:2;9019:21;;;9056:18;;;9049:30;9115:34;9110:2;9095:18;;9088:62;9182:2;9167:18;;8835:356::o;10548:399::-;10750:2;10732:21;;;10789:2;10769:18;;;10762:30;10828:34;10823:2;10808:18;;10801:62;-1:-1:-1;;;10894:2:1;10879:18;;10872:33;10937:3;10922:19;;10548:399::o;11730:127::-;11791:10;11786:3;11782:20;11779:1;11772:31;11822:4;11819:1;11812:15;11846:4;11843:1;11836:15;11862:135;11901:3;-1:-1:-1;;11922:17:1;;11919:43;;;11942:18;;:::i;:::-;-1:-1:-1;11989:1:1;11978:13;;11862:135::o;12415:127::-;12476:10;12471:3;12467:20;12464:1;12457:31;12507:4;12504:1;12497:15;12531:4;12528:1;12521:15;14191:470;14370:3;14408:6;14402:13;14424:53;14470:6;14465:3;14458:4;14450:6;14446:17;14424:53;:::i;:::-;14540:13;;14499:16;;;;14562:57;14540:13;14499:16;14596:4;14584:17;;14562:57;:::i;:::-;14635:20;;14191:470;-1:-1:-1;;;;14191:470:1:o;16301:125::-;16341:4;16369:1;16366;16363:8;16360:34;;;16374:18;;:::i;:::-;-1:-1:-1;16411:9:1;;16301:125::o;16431:128::-;16471:3;16502:1;16498:6;16495:1;16492:13;16489:39;;;16508:18;;:::i;:::-;-1:-1:-1;16544:9:1;;16431:128::o;16918:414::-;17120:2;17102:21;;;17159:2;17139:18;;;17132:30;17198:34;17193:2;17178:18;;17171:62;-1:-1:-1;;;17264:2:1;17249:18;;17242:48;17322:3;17307:19;;16918:414::o;17337:127::-;17398:10;17393:3;17389:20;17386:1;17379:31;17429:4;17426:1;17419:15;17453:4;17450:1;17443:15;17469:120;17509:1;17535;17525:35;;17540:18;;:::i;:::-;-1:-1:-1;17574:9:1;;17469:120::o;17594:112::-;17626:1;17652;17642:35;;17657:18;;:::i;:::-;-1:-1:-1;17691:9:1;;17594:112::o;17711:489::-;-1:-1:-1;;;;;17980:15:1;;;17962:34;;18032:15;;18027:2;18012:18;;18005:43;18079:2;18064:18;;18057:34;;;18127:3;18122:2;18107:18;;18100:31;;;17905:4;;18148:46;;18174:19;;18166:6;18148:46;:::i;:::-;18140:54;17711:489;-1:-1:-1;;;;;;17711:489:1:o;18205:249::-;18274:6;18327:2;18315:9;18306:7;18302:23;18298:32;18295:52;;;18343:1;18340;18333:12;18295:52;18375:9;18369:16;18394:30;18418:5;18394:30;:::i;18459:127::-;18520:10;18515:3;18511:20;18508:1;18501:31;18551:4;18548:1;18541:15;18575:4;18572:1;18565:15

Swarm Source

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