ETH Price: $2,577.45 (-2.60%)

Token

Freaks University (Freaks)
 

Overview

Max Total Supply

126 Freaks

Holders

100

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
4 Freaks
0x17124e15738b30d0abd345900f0a98049c6d55df
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:
FreaksUniversity

Compiler Version
v0.8.11+commit.d7f03943

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-04-14
*/

// SPDX-License-Identifier: MIT

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

pragma solidity ^0.8.0;

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

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

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

pragma solidity ^0.8.0;

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

    function _setOwner(address newOwner) private {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

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

pragma solidity ^0.8.0;

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

    function _verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) private pure returns (bytes memory) {
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly

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

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

pragma solidity ^0.8.0;

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

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

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

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

pragma solidity ^0.8.0;

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

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

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
    {
        require(operator != _msgSender(), "ERC721: approve to caller");

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

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

    /**
     * @dev See {IERC721-transferFrom}.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public 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 Internal function to invoke {IERC721Receiver-onERC721Received} on a target address.
     * The call is not executed if the target address is not a contract.
     *
     * @param from address representing the previous owner of the given token ID
     * @param to target address that will receive the tokens
     * @param tokenId uint256 ID of the token to be transferred
     * @param _data bytes optional data to send along with the call
     * @return bool whether the call correctly returned the expected magic value
     */
    function _checkOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) private returns (bool) {
        if (to.isContract()) {
            try
                IERC721Receiver(to).onERC721Received(
                    _msgSender(),
                    from,
                    tokenId,
                    _data
                )
            returns (bytes4 retval) {
                return retval == IERC721Receiver(to).onERC721Received.selector;
            } catch (bytes memory reason) {
                if (reason.length == 0) {
                    revert(
                        "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.11;

interface ISlyGuise {
    function balanceOf(address owner) external view returns (uint256 balance);
}

pragma solidity 0.8.11;

/// @author Hammad Ghazi
contract FreaksUniversity is ERC721, Ownable {
    ISlyGuise public constant slyGuise =
        ISlyGuise(0xCefb4EeE91a3ce1F3843F79450b13CfaFd09f749);

    bool public saleOpen;

    uint256 public constant MAX_SUPPLY = 500;
    uint256 private mintCount;

    uint256 constant PRICE = 0.25 ether;

    // Discounted price if you own a $GUISE NFT
    uint256 constant discountPrice1 = 0.21 ether; // If you are minting 1 NFT in a single tx
    uint256 constant discountPrice2 = 0.4 ether; // If you are minting 2 NFT in a single tx
    uint256 constant discountPrice3 = 0.65 ether; // If you are minting 3 NFT in a single tx

    string baseTokenURI;

    mapping(address => uint256) public nftMinted;

    event Minted(uint256 totalMinted);

    constructor(string memory baseURI) ERC721("Freaks University", "Freaks") {
        setBaseURI(baseURI);
    }

    function totalSupply() public view returns (uint256) {
        return mintCount;
    }

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

    function toggleSale() external onlyOwner {
        saleOpen = !saleOpen;
    }

    function withdraw() external onlyOwner {
        (bool success, ) = msg.sender.call{value: address(this).balance}("");
        require(success, "Transfer failed.");
    }

    function mint(uint256 _count) external payable {
        uint256 supply = totalSupply();
        require(supply + _count <= MAX_SUPPLY, "Exceeds maximum supply");

        if (msg.sender != owner()) {
            require(saleOpen, "Sale is not open yet");
            require(
                nftMinted[msg.sender] + _count <= 3,
                "Maximum 3 NFTs can be minted per address"
            );
            uint256 price = getPrice(msg.sender, _count);
            require(
                msg.value >= price,
                "Ether sent with this transaction is not correct"
            );

            nftMinted[msg.sender] += _count;
        }

        mintCount += _count;

        for (uint256 i = 0; i < _count; i++) {
            _safeMint(msg.sender, ++supply);
            emit Minted(supply);
        }
    }

    function getPrice(address _addr, uint256 _count)
        public
        view
        returns (uint256)
    {
        require(
            _count != 0 && _count <= 3,
            "Min 0 and Max 3 NFTs can be minted"
        );
        if (slyGuise.balanceOf(_addr) > 0) {
            if (_count == 1) {
                return discountPrice1;
            } else if (_count == 2) {
                return discountPrice2;
            } else {
                return discountPrice3;
            }
        } else {
            return PRICE * _count;
        }
    }

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"baseURI","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":false,"internalType":"uint256","name":"totalMinted","type":"uint256"}],"name":"Minted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_addr","type":"address"},{"internalType":"uint256","name":"_count","type":"uint256"}],"name":"getPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":[{"internalType":"uint256","name":"_count","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"nftMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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":"saleOpen","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":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"slyGuise","outputs":[{"internalType":"contract ISlyGuise","name":"","type":"address"}],"stateMutability":"view","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":"toggleSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040523480156200001157600080fd5b50604051620021773803806200217783398101604081905262000034916200025a565b6040805180820182526011815270467265616b7320556e697665727369747960781b602080830191825283518085019094526006845265467265616b7360d01b9084015281519192916200008b916000916200019e565b508051620000a19060019060208401906200019e565b505050620000be620000b8620000d060201b60201c565b620000d4565b620000c98162000126565b5062000373565b3390565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6006546001600160a01b03163314620001855760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640160405180910390fd5b80516200019a9060089060208401906200019e565b5050565b828054620001ac9062000336565b90600052602060002090601f016020900481019282620001d057600085556200021b565b82601f10620001eb57805160ff19168380011785556200021b565b828001600101855582156200021b579182015b828111156200021b578251825591602001919060010190620001fe565b50620002299291506200022d565b5090565b5b808211156200022957600081556001016200022e565b634e487b7160e01b600052604160045260246000fd5b600060208083850312156200026e57600080fd5b82516001600160401b03808211156200028657600080fd5b818501915085601f8301126200029b57600080fd5b815181811115620002b057620002b062000244565b604051601f8201601f19908116603f01168101908382118183101715620002db57620002db62000244565b816040528281528886848701011115620002f457600080fd5b600093505b82841015620003185784840186015181850187015292850192620002f9565b828411156200032a5760008684830101525b98975050505050505050565b600181811c908216806200034b57607f821691505b602082108114156200036d57634e487b7160e01b600052602260045260246000fd5b50919050565b611df480620003836000396000f3fe6080604052600436106101815760003560e01c806370a08231116100d1578063a0712d681161008a578063c87b56dd11610064578063c87b56dd1461043f578063e985e9c51461045f578063f2fde38b146104a8578063f32cfe6b146104c857600080fd5b8063a0712d68146103ec578063a22cb465146103ff578063b88d4fde1461041f57600080fd5b806370a082311461034e578063715018a61461036e5780637d8966e4146103835780638da5cb5b1461039857806395d89b41146103b657806399288dbb146103cb57600080fd5b80632f6f92b31161013e57806342842e0e1161011857806342842e0e146102ce578063449e815d146102ee57806355f804b31461030e5780636352211e1461032e57600080fd5b80632f6f92b31461027657806332cb6b0c146102a35780633ccfd60b146102b957600080fd5b806301ffc9a71461018657806306fdde03146101bb578063081812fc146101dd578063095ea7b31461021557806318160ddd1461023757806323b872dd14610256575b600080fd5b34801561019257600080fd5b506101a66101a1366004611838565b6104f0565b60405190151581526020015b60405180910390f35b3480156101c757600080fd5b506101d0610542565b6040516101b291906118ad565b3480156101e957600080fd5b506101fd6101f83660046118c0565b6105d4565b6040516001600160a01b0390911681526020016101b2565b34801561022157600080fd5b506102356102303660046118f5565b61066e565b005b34801561024357600080fd5b506007545b6040519081526020016101b2565b34801561026257600080fd5b5061023561027136600461191f565b610784565b34801561028257600080fd5b5061024861029136600461195b565b60096020526000908152604090205481565b3480156102af57600080fd5b506102486101f481565b3480156102c557600080fd5b506102356107b5565b3480156102da57600080fd5b506102356102e936600461191f565b61086d565b3480156102fa57600080fd5b506102486103093660046118f5565b610888565b34801561031a57600080fd5b50610235610329366004611a02565b6109ce565b34801561033a57600080fd5b506101fd6103493660046118c0565b610a0f565b34801561035a57600080fd5b5061024861036936600461195b565b610a86565b34801561037a57600080fd5b50610235610b0d565b34801561038f57600080fd5b50610235610b43565b3480156103a457600080fd5b506006546001600160a01b03166101fd565b3480156103c257600080fd5b506101d0610b8e565b3480156103d757600080fd5b506006546101a690600160a01b900460ff1681565b6102356103fa3660046118c0565b610b9d565b34801561040b57600080fd5b5061023561041a366004611a4b565b610df6565b34801561042b57600080fd5b5061023561043a366004611a87565b610ebb565b34801561044b57600080fd5b506101d061045a3660046118c0565b610ef3565b34801561046b57600080fd5b506101a661047a366004611b03565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b3480156104b457600080fd5b506102356104c336600461195b565b610fcd565b3480156104d457600080fd5b506101fd73cefb4eee91a3ce1f3843f79450b13cfafd09f74981565b60006001600160e01b031982166380ac58cd60e01b148061052157506001600160e01b03198216635b5e139f60e01b145b8061053c57506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606000805461055190611b36565b80601f016020809104026020016040519081016040528092919081815260200182805461057d90611b36565b80156105ca5780601f1061059f576101008083540402835291602001916105ca565b820191906000526020600020905b8154815290600101906020018083116105ad57829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166106525760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600061067982610a0f565b9050806001600160a01b0316836001600160a01b031614156106e75760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610649565b336001600160a01b03821614806107035750610703813361047a565b6107755760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610649565b61077f8383611065565b505050565b61078e33826110d3565b6107aa5760405162461bcd60e51b815260040161064990611b71565b61077f8383836111ca565b6006546001600160a01b031633146107df5760405162461bcd60e51b815260040161064990611bc2565b604051600090339047908381818185875af1925050503d8060008114610821576040519150601f19603f3d011682016040523d82523d6000602084013e610826565b606091505b505090508061086a5760405162461bcd60e51b815260206004820152601060248201526f2a3930b739b332b9103330b4b632b21760811b6044820152606401610649565b50565b61077f83838360405180602001604052806000815250610ebb565b6000811580159061089a575060038211155b6108f15760405162461bcd60e51b815260206004820152602260248201527f4d696e203020616e64204d61782033204e4654732063616e206265206d696e74604482015261195960f21b6064820152608401610649565b6040516370a0823160e01b81526001600160a01b038416600482015260009073cefb4eee91a3ce1f3843f79450b13cfafd09f749906370a0823190602401602060405180830381865afa15801561094c573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109709190611bf7565b11156109b557816001141561098e57506702ea11e32ad5000061053c565b81600214156109a6575067058d15e17628000061053c565b50670905438e6001000061053c565b6109c7826703782dace9d90000611c26565b9392505050565b6006546001600160a01b031633146109f85760405162461bcd60e51b815260040161064990611bc2565b8051610a0b906008906020840190611789565b5050565b6000818152600260205260408120546001600160a01b03168061053c5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610649565b60006001600160a01b038216610af15760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610649565b506001600160a01b031660009081526003602052604090205490565b6006546001600160a01b03163314610b375760405162461bcd60e51b815260040161064990611bc2565b610b41600061136a565b565b6006546001600160a01b03163314610b6d5760405162461bcd60e51b815260040161064990611bc2565b6006805460ff60a01b198116600160a01b9182900460ff1615909102179055565b60606001805461055190611b36565b6000610ba860075490565b90506101f4610bb78383611c45565b1115610bfe5760405162461bcd60e51b815260206004820152601660248201527545786365656473206d6178696d756d20737570706c7960501b6044820152606401610649565b6006546001600160a01b03163314610d7957600654600160a01b900460ff16610c605760405162461bcd60e51b815260206004820152601460248201527314d85b19481a5cc81b9bdd081bdc195b881e595d60621b6044820152606401610649565b33600090815260096020526040902054600390610c7e908490611c45565b1115610cdd5760405162461bcd60e51b815260206004820152602860248201527f4d6178696d756d2033204e4654732063616e206265206d696e74656420706572604482015267206164647265737360c01b6064820152608401610649565b6000610ce93384610888565b905080341015610d535760405162461bcd60e51b815260206004820152602f60248201527f45746865722073656e7420776974682074686973207472616e73616374696f6e60448201526e081a5cc81b9bdd0818dbdc9c9958dd608a1b6064820152608401610649565b3360009081526009602052604081208054859290610d72908490611c45565b9091555050505b8160076000828254610d8b9190611c45565b90915550600090505b8281101561077f57610db133610da984611c5d565b9350836113bc565b6040518281527f176b02bb2d12439ff7a20b59f402cca16c76f50508b13ef3166a600eb719354a9060200160405180910390a180610dee81611c5d565b915050610d94565b6001600160a01b038216331415610e4f5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610649565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610ec533836110d3565b610ee15760405162461bcd60e51b815260040161064990611b71565b610eed848484846113d6565b50505050565b6000818152600260205260409020546060906001600160a01b0316610f725760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610649565b6000610f7c611409565b90506000815111610f9c57604051806020016040528060008152506109c7565b80610fa684611418565b604051602001610fb7929190611c78565b6040516020818303038152906040529392505050565b6006546001600160a01b03163314610ff75760405162461bcd60e51b815260040161064990611bc2565b6001600160a01b03811661105c5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610649565b61086a8161136a565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061109a82610a0f565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b031661114c5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610649565b600061115783610a0f565b9050806001600160a01b0316846001600160a01b031614806111925750836001600160a01b0316611187846105d4565b6001600160a01b0316145b806111c257506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b03166111dd82610a0f565b6001600160a01b0316146112455760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610649565b6001600160a01b0382166112a75760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610649565b6112b2600082611065565b6001600160a01b03831660009081526003602052604081208054600192906112db908490611ca7565b90915550506001600160a01b0382166000908152600360205260408120805460019290611309908490611c45565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b610a0b828260405180602001604052806000815250611516565b6113e18484846111ca565b6113ed84848484611549565b610eed5760405162461bcd60e51b815260040161064990611cbe565b60606008805461055190611b36565b60608161143c5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611466578061145081611c5d565b915061145f9050600a83611d26565b9150611440565b60008167ffffffffffffffff81111561148157611481611976565b6040519080825280601f01601f1916602001820160405280156114ab576020820181803683370190505b5090505b84156111c2576114c0600183611ca7565b91506114cd600a86611d3a565b6114d8906030611c45565b60f81b8183815181106114ed576114ed611d4e565b60200101906001600160f81b031916908160001a90535061150f600a86611d26565b94506114af565b6115208383611647565b61152d6000848484611549565b61077f5760405162461bcd60e51b815260040161064990611cbe565b60006001600160a01b0384163b1561163c57604051630a85bd0160e11b81526001600160a01b0385169063150b7a029061158d903390899088908890600401611d64565b6020604051808303816000875af19250505080156115c8575060408051601f3d908101601f191682019092526115c591810190611da1565b60015b611622573d8080156115f6576040519150601f19603f3d011682016040523d82523d6000602084013e6115fb565b606091505b50805161161a5760405162461bcd60e51b815260040161064990611cbe565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506111c2565b506001949350505050565b6001600160a01b03821661169d5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610649565b6000818152600260205260409020546001600160a01b0316156117025760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610649565b6001600160a01b038216600090815260036020526040812080546001929061172b908490611c45565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b82805461179590611b36565b90600052602060002090601f0160209004810192826117b757600085556117fd565b82601f106117d057805160ff19168380011785556117fd565b828001600101855582156117fd579182015b828111156117fd5782518255916020019190600101906117e2565b5061180992915061180d565b5090565b5b80821115611809576000815560010161180e565b6001600160e01b03198116811461086a57600080fd5b60006020828403121561184a57600080fd5b81356109c781611822565b60005b83811015611870578181015183820152602001611858565b83811115610eed5750506000910152565b60008151808452611899816020860160208601611855565b601f01601f19169290920160200192915050565b6020815260006109c76020830184611881565b6000602082840312156118d257600080fd5b5035919050565b80356001600160a01b03811681146118f057600080fd5b919050565b6000806040838503121561190857600080fd5b611911836118d9565b946020939093013593505050565b60008060006060848603121561193457600080fd5b61193d846118d9565b925061194b602085016118d9565b9150604084013590509250925092565b60006020828403121561196d57600080fd5b6109c7826118d9565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff808411156119a7576119a7611976565b604051601f8501601f19908116603f011681019082821181831017156119cf576119cf611976565b816040528093508581528686860111156119e857600080fd5b858560208301376000602087830101525050509392505050565b600060208284031215611a1457600080fd5b813567ffffffffffffffff811115611a2b57600080fd5b8201601f81018413611a3c57600080fd5b6111c28482356020840161198c565b60008060408385031215611a5e57600080fd5b611a67836118d9565b915060208301358015158114611a7c57600080fd5b809150509250929050565b60008060008060808587031215611a9d57600080fd5b611aa6856118d9565b9350611ab4602086016118d9565b925060408501359150606085013567ffffffffffffffff811115611ad757600080fd5b8501601f81018713611ae857600080fd5b611af78782356020840161198c565b91505092959194509250565b60008060408385031215611b1657600080fd5b611b1f836118d9565b9150611b2d602084016118d9565b90509250929050565b600181811c90821680611b4a57607f821691505b60208210811415611b6b57634e487b7160e01b600052602260045260246000fd5b50919050565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600060208284031215611c0957600080fd5b5051919050565b634e487b7160e01b600052601160045260246000fd5b6000816000190483118215151615611c4057611c40611c10565b500290565b60008219821115611c5857611c58611c10565b500190565b6000600019821415611c7157611c71611c10565b5060010190565b60008351611c8a818460208801611855565b835190830190611c9e818360208801611855565b01949350505050565b600082821015611cb957611cb9611c10565b500390565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b634e487b7160e01b600052601260045260246000fd5b600082611d3557611d35611d10565b500490565b600082611d4957611d49611d10565b500690565b634e487b7160e01b600052603260045260246000fd5b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611d9790830184611881565b9695505050505050565b600060208284031215611db357600080fd5b81516109c78161182256fea2646970667358221220492967c73e7327eae8beace60c00ea8de0fa878fb4ab70fffc471420493b9f4a64736f6c634300080b00330000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000005168747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066732f516d5a6933705854696f67375a364c33584b706d6d4b3272524838364361646a69417746374c4e78535a6f4753592f000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106101815760003560e01c806370a08231116100d1578063a0712d681161008a578063c87b56dd11610064578063c87b56dd1461043f578063e985e9c51461045f578063f2fde38b146104a8578063f32cfe6b146104c857600080fd5b8063a0712d68146103ec578063a22cb465146103ff578063b88d4fde1461041f57600080fd5b806370a082311461034e578063715018a61461036e5780637d8966e4146103835780638da5cb5b1461039857806395d89b41146103b657806399288dbb146103cb57600080fd5b80632f6f92b31161013e57806342842e0e1161011857806342842e0e146102ce578063449e815d146102ee57806355f804b31461030e5780636352211e1461032e57600080fd5b80632f6f92b31461027657806332cb6b0c146102a35780633ccfd60b146102b957600080fd5b806301ffc9a71461018657806306fdde03146101bb578063081812fc146101dd578063095ea7b31461021557806318160ddd1461023757806323b872dd14610256575b600080fd5b34801561019257600080fd5b506101a66101a1366004611838565b6104f0565b60405190151581526020015b60405180910390f35b3480156101c757600080fd5b506101d0610542565b6040516101b291906118ad565b3480156101e957600080fd5b506101fd6101f83660046118c0565b6105d4565b6040516001600160a01b0390911681526020016101b2565b34801561022157600080fd5b506102356102303660046118f5565b61066e565b005b34801561024357600080fd5b506007545b6040519081526020016101b2565b34801561026257600080fd5b5061023561027136600461191f565b610784565b34801561028257600080fd5b5061024861029136600461195b565b60096020526000908152604090205481565b3480156102af57600080fd5b506102486101f481565b3480156102c557600080fd5b506102356107b5565b3480156102da57600080fd5b506102356102e936600461191f565b61086d565b3480156102fa57600080fd5b506102486103093660046118f5565b610888565b34801561031a57600080fd5b50610235610329366004611a02565b6109ce565b34801561033a57600080fd5b506101fd6103493660046118c0565b610a0f565b34801561035a57600080fd5b5061024861036936600461195b565b610a86565b34801561037a57600080fd5b50610235610b0d565b34801561038f57600080fd5b50610235610b43565b3480156103a457600080fd5b506006546001600160a01b03166101fd565b3480156103c257600080fd5b506101d0610b8e565b3480156103d757600080fd5b506006546101a690600160a01b900460ff1681565b6102356103fa3660046118c0565b610b9d565b34801561040b57600080fd5b5061023561041a366004611a4b565b610df6565b34801561042b57600080fd5b5061023561043a366004611a87565b610ebb565b34801561044b57600080fd5b506101d061045a3660046118c0565b610ef3565b34801561046b57600080fd5b506101a661047a366004611b03565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b3480156104b457600080fd5b506102356104c336600461195b565b610fcd565b3480156104d457600080fd5b506101fd73cefb4eee91a3ce1f3843f79450b13cfafd09f74981565b60006001600160e01b031982166380ac58cd60e01b148061052157506001600160e01b03198216635b5e139f60e01b145b8061053c57506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606000805461055190611b36565b80601f016020809104026020016040519081016040528092919081815260200182805461057d90611b36565b80156105ca5780601f1061059f576101008083540402835291602001916105ca565b820191906000526020600020905b8154815290600101906020018083116105ad57829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166106525760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600061067982610a0f565b9050806001600160a01b0316836001600160a01b031614156106e75760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610649565b336001600160a01b03821614806107035750610703813361047a565b6107755760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610649565b61077f8383611065565b505050565b61078e33826110d3565b6107aa5760405162461bcd60e51b815260040161064990611b71565b61077f8383836111ca565b6006546001600160a01b031633146107df5760405162461bcd60e51b815260040161064990611bc2565b604051600090339047908381818185875af1925050503d8060008114610821576040519150601f19603f3d011682016040523d82523d6000602084013e610826565b606091505b505090508061086a5760405162461bcd60e51b815260206004820152601060248201526f2a3930b739b332b9103330b4b632b21760811b6044820152606401610649565b50565b61077f83838360405180602001604052806000815250610ebb565b6000811580159061089a575060038211155b6108f15760405162461bcd60e51b815260206004820152602260248201527f4d696e203020616e64204d61782033204e4654732063616e206265206d696e74604482015261195960f21b6064820152608401610649565b6040516370a0823160e01b81526001600160a01b038416600482015260009073cefb4eee91a3ce1f3843f79450b13cfafd09f749906370a0823190602401602060405180830381865afa15801561094c573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109709190611bf7565b11156109b557816001141561098e57506702ea11e32ad5000061053c565b81600214156109a6575067058d15e17628000061053c565b50670905438e6001000061053c565b6109c7826703782dace9d90000611c26565b9392505050565b6006546001600160a01b031633146109f85760405162461bcd60e51b815260040161064990611bc2565b8051610a0b906008906020840190611789565b5050565b6000818152600260205260408120546001600160a01b03168061053c5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610649565b60006001600160a01b038216610af15760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610649565b506001600160a01b031660009081526003602052604090205490565b6006546001600160a01b03163314610b375760405162461bcd60e51b815260040161064990611bc2565b610b41600061136a565b565b6006546001600160a01b03163314610b6d5760405162461bcd60e51b815260040161064990611bc2565b6006805460ff60a01b198116600160a01b9182900460ff1615909102179055565b60606001805461055190611b36565b6000610ba860075490565b90506101f4610bb78383611c45565b1115610bfe5760405162461bcd60e51b815260206004820152601660248201527545786365656473206d6178696d756d20737570706c7960501b6044820152606401610649565b6006546001600160a01b03163314610d7957600654600160a01b900460ff16610c605760405162461bcd60e51b815260206004820152601460248201527314d85b19481a5cc81b9bdd081bdc195b881e595d60621b6044820152606401610649565b33600090815260096020526040902054600390610c7e908490611c45565b1115610cdd5760405162461bcd60e51b815260206004820152602860248201527f4d6178696d756d2033204e4654732063616e206265206d696e74656420706572604482015267206164647265737360c01b6064820152608401610649565b6000610ce93384610888565b905080341015610d535760405162461bcd60e51b815260206004820152602f60248201527f45746865722073656e7420776974682074686973207472616e73616374696f6e60448201526e081a5cc81b9bdd0818dbdc9c9958dd608a1b6064820152608401610649565b3360009081526009602052604081208054859290610d72908490611c45565b9091555050505b8160076000828254610d8b9190611c45565b90915550600090505b8281101561077f57610db133610da984611c5d565b9350836113bc565b6040518281527f176b02bb2d12439ff7a20b59f402cca16c76f50508b13ef3166a600eb719354a9060200160405180910390a180610dee81611c5d565b915050610d94565b6001600160a01b038216331415610e4f5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610649565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610ec533836110d3565b610ee15760405162461bcd60e51b815260040161064990611b71565b610eed848484846113d6565b50505050565b6000818152600260205260409020546060906001600160a01b0316610f725760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610649565b6000610f7c611409565b90506000815111610f9c57604051806020016040528060008152506109c7565b80610fa684611418565b604051602001610fb7929190611c78565b6040516020818303038152906040529392505050565b6006546001600160a01b03163314610ff75760405162461bcd60e51b815260040161064990611bc2565b6001600160a01b03811661105c5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610649565b61086a8161136a565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061109a82610a0f565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b031661114c5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610649565b600061115783610a0f565b9050806001600160a01b0316846001600160a01b031614806111925750836001600160a01b0316611187846105d4565b6001600160a01b0316145b806111c257506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b03166111dd82610a0f565b6001600160a01b0316146112455760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610649565b6001600160a01b0382166112a75760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610649565b6112b2600082611065565b6001600160a01b03831660009081526003602052604081208054600192906112db908490611ca7565b90915550506001600160a01b0382166000908152600360205260408120805460019290611309908490611c45565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b610a0b828260405180602001604052806000815250611516565b6113e18484846111ca565b6113ed84848484611549565b610eed5760405162461bcd60e51b815260040161064990611cbe565b60606008805461055190611b36565b60608161143c5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611466578061145081611c5d565b915061145f9050600a83611d26565b9150611440565b60008167ffffffffffffffff81111561148157611481611976565b6040519080825280601f01601f1916602001820160405280156114ab576020820181803683370190505b5090505b84156111c2576114c0600183611ca7565b91506114cd600a86611d3a565b6114d8906030611c45565b60f81b8183815181106114ed576114ed611d4e565b60200101906001600160f81b031916908160001a90535061150f600a86611d26565b94506114af565b6115208383611647565b61152d6000848484611549565b61077f5760405162461bcd60e51b815260040161064990611cbe565b60006001600160a01b0384163b1561163c57604051630a85bd0160e11b81526001600160a01b0385169063150b7a029061158d903390899088908890600401611d64565b6020604051808303816000875af19250505080156115c8575060408051601f3d908101601f191682019092526115c591810190611da1565b60015b611622573d8080156115f6576040519150601f19603f3d011682016040523d82523d6000602084013e6115fb565b606091505b50805161161a5760405162461bcd60e51b815260040161064990611cbe565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506111c2565b506001949350505050565b6001600160a01b03821661169d5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610649565b6000818152600260205260409020546001600160a01b0316156117025760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610649565b6001600160a01b038216600090815260036020526040812080546001929061172b908490611c45565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b82805461179590611b36565b90600052602060002090601f0160209004810192826117b757600085556117fd565b82601f106117d057805160ff19168380011785556117fd565b828001600101855582156117fd579182015b828111156117fd5782518255916020019190600101906117e2565b5061180992915061180d565b5090565b5b80821115611809576000815560010161180e565b6001600160e01b03198116811461086a57600080fd5b60006020828403121561184a57600080fd5b81356109c781611822565b60005b83811015611870578181015183820152602001611858565b83811115610eed5750506000910152565b60008151808452611899816020860160208601611855565b601f01601f19169290920160200192915050565b6020815260006109c76020830184611881565b6000602082840312156118d257600080fd5b5035919050565b80356001600160a01b03811681146118f057600080fd5b919050565b6000806040838503121561190857600080fd5b611911836118d9565b946020939093013593505050565b60008060006060848603121561193457600080fd5b61193d846118d9565b925061194b602085016118d9565b9150604084013590509250925092565b60006020828403121561196d57600080fd5b6109c7826118d9565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff808411156119a7576119a7611976565b604051601f8501601f19908116603f011681019082821181831017156119cf576119cf611976565b816040528093508581528686860111156119e857600080fd5b858560208301376000602087830101525050509392505050565b600060208284031215611a1457600080fd5b813567ffffffffffffffff811115611a2b57600080fd5b8201601f81018413611a3c57600080fd5b6111c28482356020840161198c565b60008060408385031215611a5e57600080fd5b611a67836118d9565b915060208301358015158114611a7c57600080fd5b809150509250929050565b60008060008060808587031215611a9d57600080fd5b611aa6856118d9565b9350611ab4602086016118d9565b925060408501359150606085013567ffffffffffffffff811115611ad757600080fd5b8501601f81018713611ae857600080fd5b611af78782356020840161198c565b91505092959194509250565b60008060408385031215611b1657600080fd5b611b1f836118d9565b9150611b2d602084016118d9565b90509250929050565b600181811c90821680611b4a57607f821691505b60208210811415611b6b57634e487b7160e01b600052602260045260246000fd5b50919050565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600060208284031215611c0957600080fd5b5051919050565b634e487b7160e01b600052601160045260246000fd5b6000816000190483118215151615611c4057611c40611c10565b500290565b60008219821115611c5857611c58611c10565b500190565b6000600019821415611c7157611c71611c10565b5060010190565b60008351611c8a818460208801611855565b835190830190611c9e818360208801611855565b01949350505050565b600082821015611cb957611cb9611c10565b500390565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b634e487b7160e01b600052601260045260246000fd5b600082611d3557611d35611d10565b500490565b600082611d4957611d49611d10565b500690565b634e487b7160e01b600052603260045260246000fd5b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611d9790830184611881565b9695505050505050565b600060208284031215611db357600080fd5b81516109c78161182256fea2646970667358221220492967c73e7327eae8beace60c00ea8de0fa878fb4ab70fffc471420493b9f4a64736f6c634300080b0033

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

0000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000005168747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066732f516d5a6933705854696f67375a364c33584b706d6d4b3272524838364361646a69417746374c4e78535a6f4753592f000000000000000000000000000000

-----Decoded View---------------
Arg [0] : baseURI (string): https://gateway.pinata.cloud/ipfs/QmZi3pXTiog7Z6L3XKpmmK2rRH86CadjiAwF7LNxSZoGSY/

-----Encoded View---------------
5 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000051
Arg [2] : 68747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066
Arg [3] : 732f516d5a6933705854696f67375a364c33584b706d6d4b3272524838364361
Arg [4] : 646a69417746374c4e78535a6f4753592f000000000000000000000000000000


Deployed Bytecode Sourcemap

36720:2925:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23445:355;;;;;;;;;;-1:-1:-1;23445:355:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;23445:355:0;;;;;;;;24614:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;26307:308::-;;;;;;;;;;-1:-1:-1;26307:308:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1692:32:1;;;1674:51;;1662:2;1647:18;26307:308:0;1528:203:1;25830:411:0;;;;;;;;;;-1:-1:-1;25830:411:0;;;;;:::i;:::-;;:::i;:::-;;37608:88;;;;;;;;;;-1:-1:-1;37679:9:0;;37608:88;;;2319:25:1;;;2307:2;2292:18;37608:88:0;2173:177:1;27366:376:0;;;;;;;;;;-1:-1:-1;27366:376:0;;;;;:::i;:::-;;:::i;37394:44::-;;;;;;;;;;-1:-1:-1;37394:44:0;;;;;:::i;:::-;;;;;;;;;;;;;;36909:40;;;;;;;;;;;;36946:3;36909:40;;37901:173;;;;;;;;;;;;;:::i;27813:185::-;;;;;;;;;;-1:-1:-1;27813:185:0;;;;;:::i;:::-;;:::i;38942:579::-;;;;;;;;;;-1:-1:-1;38942:579:0;;;;;:::i;:::-;;:::i;37704:101::-;;;;;;;;;;-1:-1:-1;37704:101:0;;;;;:::i;:::-;;:::i;24221:326::-;;;;;;;;;;-1:-1:-1;24221:326:0;;;;;:::i;:::-;;:::i;23864:295::-;;;;;;;;;;-1:-1:-1;23864:295:0;;;;;:::i;:::-;;:::i;8333:94::-;;;;;;;;;;;;;:::i;37813:80::-;;;;;;;;;;;;;:::i;7682:87::-;;;;;;;;;;-1:-1:-1;7755:6:0;;-1:-1:-1;;;;;7755:6:0;7682:87;;24783:104;;;;;;;;;;;;;:::i;36880:20::-;;;;;;;;;;-1:-1:-1;36880:20:0;;;;-1:-1:-1;;;36880:20:0;;;;;;38082:852;;;;;;:::i;:::-;;:::i;26687:327::-;;;;;;;;;;-1:-1:-1;26687:327:0;;;;;:::i;:::-;;:::i;28069:365::-;;;;;;;;;;-1:-1:-1;28069:365:0;;;;;:::i;:::-;;:::i;24958:468::-;;;;;;;;;;-1:-1:-1;24958:468:0;;;;;:::i;:::-;;:::i;27085:214::-;;;;;;;;;;-1:-1:-1;27085:214:0;;;;;:::i;:::-;-1:-1:-1;;;;;27256:25:0;;;27227:4;27256:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;27085:214;8582:229;;;;;;;;;;-1:-1:-1;8582:229:0;;;;;:::i;:::-;;:::i;36772:99::-;;;;;;;;;;;;36828:42;36772:99;;23445:355;23592:4;-1:-1:-1;;;;;;23634:40:0;;-1:-1:-1;;;23634:40:0;;:105;;-1:-1:-1;;;;;;;23691:48:0;;-1:-1:-1;;;23691:48:0;23634:105;:158;;;-1:-1:-1;;;;;;;;;;9950:40:0;;;23756:36;23614:178;23445:355;-1:-1:-1;;23445:355:0:o;24614:100::-;24668:13;24701:5;24694:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24614:100;:::o;26307:308::-;26428:7;30070:16;;;:7;:16;;;;;;-1:-1:-1;;;;;30070:16:0;26453:110;;;;-1:-1:-1;;;26453:110:0;;6206:2:1;26453:110:0;;;6188:21:1;6245:2;6225:18;;;6218:30;6284:34;6264:18;;;6257:62;-1:-1:-1;;;6335:18:1;;;6328:42;6387:19;;26453:110:0;;;;;;;;;-1:-1:-1;26583:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;26583:24:0;;26307:308::o;25830:411::-;25911:13;25927:23;25942:7;25927:14;:23::i;:::-;25911:39;;25975:5;-1:-1:-1;;;;;25969:11:0;:2;-1:-1:-1;;;;;25969:11:0;;;25961:57;;;;-1:-1:-1;;;25961:57:0;;6619:2:1;25961:57:0;;;6601:21:1;6658:2;6638:18;;;6631:30;6697:34;6677:18;;;6670:62;-1:-1:-1;;;6748:18:1;;;6741:31;6789:19;;25961:57:0;6417:397:1;25961:57:0;735:10;-1:-1:-1;;;;;26053:21:0;;;;:62;;-1:-1:-1;26078:37:0;26095:5;735:10;27085:214;:::i;26078:37::-;26031:168;;;;-1:-1:-1;;;26031:168:0;;7021:2:1;26031:168:0;;;7003:21:1;7060:2;7040:18;;;7033:30;7099:34;7079:18;;;7072:62;7170:26;7150:18;;;7143:54;7214:19;;26031:168:0;6819:420:1;26031:168:0;26212:21;26221:2;26225:7;26212:8;:21::i;:::-;25900:341;25830:411;;:::o;27366:376::-;27575:41;735:10;27608:7;27575:18;:41::i;:::-;27553:140;;;;-1:-1:-1;;;27553:140:0;;;;;;;:::i;:::-;27706:28;27716:4;27722:2;27726:7;27706:9;:28::i;37901:173::-;7755:6;;-1:-1:-1;;;;;7755:6:0;735:10;7902:23;7894:68;;;;-1:-1:-1;;;7894:68:0;;;;;;;:::i;:::-;37970:49:::1;::::0;37952:12:::1;::::0;37970:10:::1;::::0;37993:21:::1;::::0;37952:12;37970:49;37952:12;37970:49;37993:21;37970:10;:49:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37951:68;;;38038:7;38030:36;;;::::0;-1:-1:-1;;;38030:36:0;;8435:2:1;38030:36:0::1;::::0;::::1;8417:21:1::0;8474:2;8454:18;;;8447:30;-1:-1:-1;;;8493:18:1;;;8486:46;8549:18;;38030:36:0::1;8233:340:1::0;38030:36:0::1;37940:134;37901:173::o:0;27813:185::-;27951:39;27968:4;27974:2;27978:7;27951:39;;;;;;;;;;;;:16;:39::i;38942:579::-;39039:7;39086:11;;;;;:26;;;39111:1;39101:6;:11;;39086:26;39064:110;;;;-1:-1:-1;;;39064:110:0;;8780:2:1;39064:110:0;;;8762:21:1;8819:2;8799:18;;;8792:30;8858:34;8838:18;;;8831:62;-1:-1:-1;;;8909:18:1;;;8902:32;8951:19;;39064:110:0;8578:398:1;39064:110:0;39189:25;;-1:-1:-1;;;39189:25:0;;-1:-1:-1;;;;;1692:32:1;;39189:25:0;;;1674:51:1;39217:1:0;;36828:42;;39189:18;;1647::1;;39189:25:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:29;39185:329;;;39239:6;39249:1;39239:11;39235:214;;;-1:-1:-1;37117:10:0;39271:21;;39235:214;39318:6;39328:1;39318:11;39314:135;;;-1:-1:-1;37211:9:0;39350:21;;39314:135;-1:-1:-1;37304:10:0;39412:21;;39185:329;39488:14;39496:6;37015:10;39488:14;:::i;:::-;39481:21;38942:579;-1:-1:-1;;;38942:579:0:o;37704:101::-;7755:6;;-1:-1:-1;;;;;7755:6:0;735:10;7902:23;7894:68;;;;-1:-1:-1;;;7894:68:0;;;;;;;:::i;:::-;37775:22;;::::1;::::0;:12:::1;::::0;:22:::1;::::0;::::1;::::0;::::1;:::i;:::-;;37704:101:::0;:::o;24221:326::-;24338:7;24379:16;;;:7;:16;;;;;;-1:-1:-1;;;;;24379:16:0;24428:19;24406:110;;;;-1:-1:-1;;;24406:110:0;;9677:2:1;24406:110:0;;;9659:21:1;9716:2;9696:18;;;9689:30;9755:34;9735:18;;;9728:62;-1:-1:-1;;;9806:18:1;;;9799:39;9855:19;;24406:110:0;9475:405:1;23864:295:0;23981:7;-1:-1:-1;;;;;24028:19:0;;24006:111;;;;-1:-1:-1;;;24006:111:0;;10087:2:1;24006:111:0;;;10069:21:1;10126:2;10106:18;;;10099:30;10165:34;10145:18;;;10138:62;-1:-1:-1;;;10216:18:1;;;10209:40;10266:19;;24006:111:0;9885:406:1;24006:111:0;-1:-1:-1;;;;;;24135:16:0;;;;;:9;:16;;;;;;;23864:295::o;8333:94::-;7755:6;;-1:-1:-1;;;;;7755:6:0;735:10;7902:23;7894:68;;;;-1:-1:-1;;;7894:68:0;;;;;;;:::i;:::-;8398:21:::1;8416:1;8398:9;:21::i;:::-;8333:94::o:0;37813:80::-;7755:6;;-1:-1:-1;;;;;7755:6:0;735:10;7902:23;7894:68;;;;-1:-1:-1;;;7894:68:0;;;;;;;:::i;:::-;37877:8:::1;::::0;;-1:-1:-1;;;;37865:20:0;::::1;-1:-1:-1::0;;;37877:8:0;;;::::1;;;37876:9;37865:20:::0;;::::1;;::::0;;37813:80::o;24783:104::-;24839:13;24872:7;24865:14;;;;;:::i;38082:852::-;38140:14;38157:13;37679:9;;;37608:88;38157:13;38140:30;-1:-1:-1;36946:3:0;38189:15;38198:6;38140:30;38189:15;:::i;:::-;:29;;38181:64;;;;-1:-1:-1;;;38181:64:0;;10631:2:1;38181:64:0;;;10613:21:1;10670:2;10650:18;;;10643:30;-1:-1:-1;;;10689:18:1;;;10682:52;10751:18;;38181:64:0;10429:346:1;38181:64:0;7755:6;;-1:-1:-1;;;;;7755:6:0;38262:10;:21;38258:496;;38308:8;;-1:-1:-1;;;38308:8:0;;;;38300:41;;;;-1:-1:-1;;;38300:41:0;;10982:2:1;38300:41:0;;;10964:21:1;11021:2;11001:18;;;10994:30;-1:-1:-1;;;11040:18:1;;;11033:50;11100:18;;38300:41:0;10780:344:1;38300:41:0;38392:10;38382:21;;;;:9;:21;;;;;;38416:1;;38382:30;;38406:6;;38382:30;:::i;:::-;:35;;38356:137;;;;-1:-1:-1;;;38356:137:0;;11331:2:1;38356:137:0;;;11313:21:1;11370:2;11350:18;;;11343:30;11409:34;11389:18;;;11382:62;-1:-1:-1;;;11460:18:1;;;11453:38;11508:19;;38356:137:0;11129:404:1;38356:137:0;38508:13;38524:28;38533:10;38545:6;38524:8;:28::i;:::-;38508:44;;38606:5;38593:9;:18;;38567:127;;;;-1:-1:-1;;;38567:127:0;;11740:2:1;38567:127:0;;;11722:21:1;11779:2;11759:18;;;11752:30;11818:34;11798:18;;;11791:62;-1:-1:-1;;;11869:18:1;;;11862:45;11924:19;;38567:127:0;11538:411:1;38567:127:0;38721:10;38711:21;;;;:9;:21;;;;;:31;;38736:6;;38711:21;:31;;38736:6;;38711:31;:::i;:::-;;;;-1:-1:-1;;;38258:496:0;38779:6;38766:9;;:19;;;;;;;:::i;:::-;;;;-1:-1:-1;38803:9:0;;-1:-1:-1;38798:129:0;38822:6;38818:1;:10;38798:129;;;38850:31;38860:10;38872:8;;;:::i;:::-;;;;38850:9;:31::i;:::-;38901:14;;2319:25:1;;;38901:14:0;;2307:2:1;2292:18;38901:14:0;;;;;;;38830:3;;;;:::i;:::-;;;;38798:129;;26687:327;-1:-1:-1;;;;;26822:24:0;;735:10;26822:24;;26814:62;;;;-1:-1:-1;;;26814:62:0;;12296:2:1;26814:62:0;;;12278:21:1;12335:2;12315:18;;;12308:30;12374:27;12354:18;;;12347:55;12419:18;;26814:62:0;12094:349:1;26814:62:0;735:10;26889:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;26889:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;26889:53:0;;;;;;;;;;26958:48;;540:41:1;;;26889:42:0;;735:10;26958:48;;513:18:1;26958:48:0;;;;;;;26687:327;;:::o;28069:365::-;28258:41;735:10;28291:7;28258:18;:41::i;:::-;28236:140;;;;-1:-1:-1;;;28236:140:0;;;;;;;:::i;:::-;28387:39;28401:4;28407:2;28411:7;28420:5;28387:13;:39::i;:::-;28069:365;;;;:::o;24958:468::-;30046:4;30070:16;;;:7;:16;;;;;;25076:13;;-1:-1:-1;;;;;30070:16:0;25107:113;;;;-1:-1:-1;;;25107:113:0;;12650:2:1;25107:113:0;;;12632:21:1;12689:2;12669:18;;;12662:30;12728:34;12708:18;;;12701:62;-1:-1:-1;;;12779:18:1;;;12772:45;12834:19;;25107:113:0;12448:411:1;25107:113:0;25233:21;25257:10;:8;:10::i;:::-;25233:34;;25322:1;25304:7;25298:21;:25;:120;;;;;;;;;;;;;;;;;25367:7;25376:18;:7;:16;:18::i;:::-;25350:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;25278:140;24958:468;-1:-1:-1;;;24958:468:0:o;8582:229::-;7755:6;;-1:-1:-1;;;;;7755:6:0;735:10;7902:23;7894:68;;;;-1:-1:-1;;;7894:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;8685:22:0;::::1;8663:110;;;::::0;-1:-1:-1;;;8663:110:0;;13541:2:1;8663:110:0::1;::::0;::::1;13523:21:1::0;13580:2;13560:18;;;13553:30;13619:34;13599:18;;;13592:62;-1:-1:-1;;;13670:18:1;;;13663:36;13716:19;;8663:110:0::1;13339:402:1::0;8663:110:0::1;8784:19;8794:8;8784:9;:19::i;34104:174::-:0;34179:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;34179:29:0;-1:-1:-1;;;;;34179:29:0;;;;;;;;:24;;34233:23;34179:24;34233:14;:23::i;:::-;-1:-1:-1;;;;;34224:46:0;;;;;;;;;;;34104:174;;:::o;30275:452::-;30404:4;30070:16;;;:7;:16;;;;;;-1:-1:-1;;;;;30070:16:0;30426:110;;;;-1:-1:-1;;;30426:110:0;;13948:2:1;30426:110:0;;;13930:21:1;13987:2;13967:18;;;13960:30;14026:34;14006:18;;;13999:62;-1:-1:-1;;;14077:18:1;;;14070:42;14129:19;;30426:110:0;13746:408:1;30426:110:0;30547:13;30563:23;30578:7;30563:14;:23::i;:::-;30547:39;;30616:5;-1:-1:-1;;;;;30605:16:0;:7;-1:-1:-1;;;;;30605:16:0;;:64;;;;30662:7;-1:-1:-1;;;;;30638:31:0;:20;30650:7;30638:11;:20::i;:::-;-1:-1:-1;;;;;30638:31:0;;30605:64;:113;;;-1:-1:-1;;;;;;27256:25:0;;;27227:4;27256:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;30686:32;30597:122;30275:452;-1:-1:-1;;;;30275:452:0:o;33371:615::-;33544:4;-1:-1:-1;;;;;33517:31:0;:23;33532:7;33517:14;:23::i;:::-;-1:-1:-1;;;;;33517:31:0;;33495:122;;;;-1:-1:-1;;;33495:122:0;;14361:2:1;33495:122:0;;;14343:21:1;14400:2;14380:18;;;14373:30;14439:34;14419:18;;;14412:62;-1:-1:-1;;;14490:18:1;;;14483:39;14539:19;;33495:122:0;14159:405:1;33495:122:0;-1:-1:-1;;;;;33636:16:0;;33628:65;;;;-1:-1:-1;;;33628:65:0;;14771:2:1;33628:65:0;;;14753:21:1;14810:2;14790:18;;;14783:30;14849:34;14829:18;;;14822:62;-1:-1:-1;;;14900:18:1;;;14893:34;14944:19;;33628:65:0;14569:400:1;33628:65:0;33810:29;33827:1;33831:7;33810:8;:29::i;:::-;-1:-1:-1;;;;;33852:15:0;;;;;;:9;:15;;;;;:20;;33871:1;;33852:15;:20;;33871:1;;33852:20;:::i;:::-;;;;-1:-1:-1;;;;;;;33883:13:0;;;;;;:9;:13;;;;;:18;;33900:1;;33883:13;:18;;33900:1;;33883:18;:::i;:::-;;;;-1:-1:-1;;33912:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;33912:21:0;-1:-1:-1;;;;;33912:21:0;;;;;;;;;33951:27;;33912:16;;33951:27;;;;;;;33371:615;;;:::o;8819:173::-;8894:6;;;-1:-1:-1;;;;;8911:17:0;;;-1:-1:-1;;;;;;8911:17:0;;;;;;;8944:40;;8894:6;;;8911:17;8894:6;;8944:40;;8875:16;;8944:40;8864:128;8819:173;:::o;31069:110::-;31145:26;31155:2;31159:7;31145:26;;;;;;;;;;;;:9;:26::i;29316:352::-;29473:28;29483:4;29489:2;29493:7;29473:9;:28::i;:::-;29534:48;29557:4;29563:2;29567:7;29576:5;29534:22;:48::i;:::-;29512:148;;;;-1:-1:-1;;;29512:148:0;;;;;;;:::i;39529:113::-;39589:13;39622:12;39615:19;;;;;:::i;10312:723::-;10368:13;10589:10;10585:53;;-1:-1:-1;;10616:10:0;;;;;;;;;;;;-1:-1:-1;;;10616:10:0;;;;;10312:723::o;10585:53::-;10663:5;10648:12;10704:78;10711:9;;10704:78;;10737:8;;;;:::i;:::-;;-1:-1:-1;10760:10:0;;-1:-1:-1;10768:2:0;10760:10;;:::i;:::-;;;10704:78;;;10792:19;10824:6;10814:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;10814:17:0;;10792:39;;10842:154;10849:10;;10842:154;;10876:11;10886:1;10876:11;;:::i;:::-;;-1:-1:-1;10945:10:0;10953:2;10945:5;:10;:::i;:::-;10932:24;;:2;:24;:::i;:::-;10919:39;;10902:6;10909;10902:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;10902:56:0;;;;;;;;-1:-1:-1;10973:11:0;10982:2;10973:11;;:::i;:::-;;;10842:154;;31406:321;31536:18;31542:2;31546:7;31536:5;:18::i;:::-;31587:54;31618:1;31622:2;31626:7;31635:5;31587:22;:54::i;:::-;31565:154;;;;-1:-1:-1;;;31565:154:0;;;;;;;:::i;34843:984::-;34998:4;-1:-1:-1;;;;;35019:13:0;;13188:20;13236:8;35015:805;;35072:175;;-1:-1:-1;;;35072:175:0;;-1:-1:-1;;;;;35072:36:0;;;;;:175;;735:10;;35166:4;;35193:7;;35223:5;;35072:175;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;35072:175:0;;;;;;;;-1:-1:-1;;35072:175:0;;;;;;;;;;;;:::i;:::-;;;35051:714;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;35434:13:0;;35430:320;;35477:108;;-1:-1:-1;;;35477:108:0;;;;;;;:::i;35430:320::-;35700:6;35694:13;35685:6;35681:2;35677:15;35670:38;35051:714;-1:-1:-1;;;;;;35311:55:0;-1:-1:-1;;;35311:55:0;;-1:-1:-1;35304:62:0;;35015:805;-1:-1:-1;35804:4:0;34843:984;;;;;;:::o;32063:382::-;-1:-1:-1;;;;;32143:16:0;;32135:61;;;;-1:-1:-1;;;32135:61:0;;16979:2:1;32135:61:0;;;16961:21:1;;;16998:18;;;16991:30;17057:34;17037:18;;;17030:62;17109:18;;32135:61:0;16777:356:1;32135:61:0;30046:4;30070:16;;;:7;:16;;;;;;-1:-1:-1;;;;;30070:16:0;:30;32207:58;;;;-1:-1:-1;;;32207:58:0;;17340:2:1;32207:58:0;;;17322:21:1;17379:2;17359:18;;;17352:30;17418;17398:18;;;17391:58;17466:18;;32207:58:0;17138:352:1;32207:58:0;-1:-1:-1;;;;;32336:13:0;;;;;;:9;:13;;;;;:18;;32353:1;;32336:13;:18;;32353:1;;32336:18;:::i;:::-;;;;-1:-1:-1;;32365:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;32365:21:0;-1:-1:-1;;;;;32365:21:0;;;;;;;;32404:33;;32365:16;;;32404:33;;32365:16;;32404:33;32063: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;2688:186::-;2747:6;2800:2;2788:9;2779:7;2775:23;2771:32;2768:52;;;2816:1;2813;2806:12;2768:52;2839:29;2858:9;2839:29;:::i;2879:127::-;2940:10;2935:3;2931:20;2928:1;2921:31;2971:4;2968:1;2961:15;2995:4;2992:1;2985:15;3011:632;3076:5;3106:18;3147:2;3139:6;3136:14;3133:40;;;3153:18;;:::i;:::-;3228:2;3222:9;3196:2;3282:15;;-1:-1:-1;;3278:24:1;;;3304:2;3274:33;3270:42;3258:55;;;3328:18;;;3348:22;;;3325:46;3322:72;;;3374:18;;:::i;:::-;3414:10;3410:2;3403:22;3443:6;3434:15;;3473:6;3465;3458:22;3513:3;3504:6;3499:3;3495:16;3492:25;3489:45;;;3530:1;3527;3520:12;3489:45;3580:6;3575:3;3568:4;3560:6;3556:17;3543:44;3635:1;3628:4;3619:6;3611;3607:19;3603:30;3596:41;;;;3011:632;;;;;:::o;3648:451::-;3717:6;3770:2;3758:9;3749:7;3745:23;3741:32;3738:52;;;3786:1;3783;3776:12;3738:52;3826:9;3813:23;3859:18;3851:6;3848:30;3845:50;;;3891:1;3888;3881:12;3845:50;3914:22;;3967:4;3959:13;;3955:27;-1:-1:-1;3945:55:1;;3996:1;3993;3986:12;3945:55;4019:74;4085:7;4080:2;4067:16;4062:2;4058;4054:11;4019:74;:::i;4104:347::-;4169:6;4177;4230:2;4218:9;4209:7;4205:23;4201:32;4198:52;;;4246:1;4243;4236:12;4198:52;4269:29;4288:9;4269:29;:::i;:::-;4259:39;;4348:2;4337:9;4333:18;4320:32;4395:5;4388:13;4381:21;4374:5;4371:32;4361:60;;4417:1;4414;4407:12;4361:60;4440:5;4430:15;;;4104:347;;;;;:::o;4456:667::-;4551:6;4559;4567;4575;4628:3;4616:9;4607:7;4603:23;4599:33;4596:53;;;4645:1;4642;4635:12;4596:53;4668:29;4687:9;4668:29;:::i;:::-;4658:39;;4716:38;4750:2;4739:9;4735:18;4716:38;:::i;:::-;4706:48;;4801:2;4790:9;4786:18;4773:32;4763:42;;4856:2;4845:9;4841:18;4828:32;4883:18;4875:6;4872:30;4869:50;;;4915:1;4912;4905:12;4869:50;4938:22;;4991:4;4983:13;;4979:27;-1:-1:-1;4969:55:1;;5020:1;5017;5010:12;4969:55;5043:74;5109:7;5104:2;5091:16;5086:2;5082;5078:11;5043:74;:::i;:::-;5033:84;;;4456:667;;;;;;;:::o;5128:260::-;5196:6;5204;5257:2;5245:9;5236:7;5232:23;5228:32;5225:52;;;5273:1;5270;5263:12;5225:52;5296:29;5315:9;5296:29;:::i;:::-;5286:39;;5344:38;5378:2;5367:9;5363:18;5344:38;:::i;:::-;5334:48;;5128:260;;;;;:::o;5619:380::-;5698:1;5694:12;;;;5741;;;5762:61;;5816:4;5808:6;5804:17;5794:27;;5762:61;5869:2;5861:6;5858:14;5838:18;5835:38;5832:161;;;5915:10;5910:3;5906:20;5903:1;5896:31;5950:4;5947:1;5940:15;5978:4;5975:1;5968:15;5832:161;;5619:380;;;:::o;7244:413::-;7446:2;7428:21;;;7485:2;7465:18;;;7458:30;7524:34;7519:2;7504:18;;7497:62;-1:-1:-1;;;7590:2:1;7575:18;;7568:47;7647:3;7632:19;;7244:413::o;7662:356::-;7864:2;7846:21;;;7883:18;;;7876:30;7942:34;7937:2;7922:18;;7915:62;8009:2;7994:18;;7662:356::o;8981:184::-;9051:6;9104:2;9092:9;9083:7;9079:23;9075:32;9072:52;;;9120:1;9117;9110:12;9072:52;-1:-1:-1;9143:16:1;;8981:184;-1:-1:-1;8981:184:1:o;9170:127::-;9231:10;9226:3;9222:20;9219:1;9212:31;9262:4;9259:1;9252:15;9286:4;9283:1;9276:15;9302:168;9342:7;9408:1;9404;9400:6;9396:14;9393:1;9390:21;9385:1;9378:9;9371:17;9367:45;9364:71;;;9415:18;;:::i;:::-;-1:-1:-1;9455:9:1;;9302:168::o;10296:128::-;10336:3;10367:1;10363:6;10360:1;10357:13;10354:39;;;10373:18;;:::i;:::-;-1:-1:-1;10409:9:1;;10296:128::o;11954:135::-;11993:3;-1:-1:-1;;12014:17:1;;12011:43;;;12034:18;;:::i;:::-;-1:-1:-1;12081:1:1;12070:13;;11954:135::o;12864:470::-;13043:3;13081:6;13075:13;13097:53;13143:6;13138:3;13131:4;13123:6;13119:17;13097:53;:::i;:::-;13213:13;;13172:16;;;;13235:57;13213:13;13172:16;13269:4;13257:17;;13235:57;:::i;:::-;13308:20;;12864:470;-1:-1:-1;;;;12864:470:1:o;14974:125::-;15014:4;15042:1;15039;15036:8;15033:34;;;15047:18;;:::i;:::-;-1:-1:-1;15084:9:1;;14974:125::o;15104:414::-;15306:2;15288:21;;;15345:2;15325:18;;;15318:30;15384:34;15379:2;15364:18;;15357:62;-1:-1:-1;;;15450:2:1;15435:18;;15428:48;15508:3;15493:19;;15104:414::o;15523:127::-;15584:10;15579:3;15575:20;15572:1;15565:31;15615:4;15612:1;15605:15;15639:4;15636:1;15629:15;15655:120;15695:1;15721;15711:35;;15726:18;;:::i;:::-;-1:-1:-1;15760:9:1;;15655:120::o;15780:112::-;15812:1;15838;15828:35;;15843:18;;:::i;:::-;-1:-1:-1;15877:9:1;;15780:112::o;15897:127::-;15958:10;15953:3;15949:20;15946:1;15939:31;15989:4;15986:1;15979:15;16013:4;16010:1;16003:15;16029:489;-1:-1:-1;;;;;16298:15:1;;;16280:34;;16350:15;;16345:2;16330:18;;16323:43;16397:2;16382:18;;16375:34;;;16445:3;16440:2;16425:18;;16418:31;;;16223:4;;16466:46;;16492:19;;16484:6;16466:46;:::i;:::-;16458:54;16029:489;-1:-1:-1;;;;;;16029:489:1:o;16523:249::-;16592:6;16645:2;16633:9;16624:7;16620:23;16616:32;16613:52;;;16661:1;16658;16651:12;16613:52;16693:9;16687:16;16712:30;16736:5;16712:30;:::i

Swarm Source

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