ETH Price: $2,975.11 (+0.14%)
Gas: 8 Gwei

Token

Bunny Doodle (BUNNY)
 

Overview

Max Total Supply

513 BUNNY

Holders

102

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
0xeves.eth
Balance
2 BUNNY
0xdb9cb473372dee6deb98efd4f05d0064892b5d2f
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:
BunnyDoodle

Compiler Version
v0.8.0+commit.c7dfd78e

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

/**
 *Submitted for verification at Etherscan.io on 2022-01-18
*/

// 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.0;

contract BunnyDoodle  is ERC721, Ownable {
    uint256 public constant MAX_SUPPLY = 1111;
    uint16 private mintCount = 0;

    uint256 public price = 59000000000000000;
    string baseTokenURI;
    bool public saleOpen = false;

    event Minted(uint256 totalMinted);

    constructor(string memory baseURI) ERC721("Bunny Doodle ", "BUNNY") {
        setBaseURI(baseURI);
    }

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

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

    function changePrice(uint256 _newPrice) external onlyOwner {
        price = _newPrice;
    }

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

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

    function mint(address _to,uint16 _count) external payable {
        uint16 supply = totalSupply();

        require(supply + _count <= MAX_SUPPLY, "Exceeds maximum supply");
        require(_count > 0, "Minimum 1 NFT has to be minted per transaction");

        if (msg.sender != owner()) {
            require(saleOpen, "Sale is not open yet");
            require(
                _count <= 20,
                "Maximum 20 NFTs can be minted per transaction"
            );
            require(
                msg.value >= price * _count,
                "Ether sent with this transaction is not correct"
            );
        }

        mintCount += _count;

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

    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":"_newPrice","type":"uint256"}],"name":"changePrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint16","name":"_count","type":"uint16"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":[{"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":"uint16","name":"","type":"uint16"}],"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"}]

60806040526006805461ffff60a01b1916905566d19c2ff9bf80006007556009805460ff191690553480156200003457600080fd5b50604051620022d7380380620022d7833981016040819052620000579162000261565b604080518082018252600d81526c0213ab7373c902237b7b236329609d1b60208083019182528351808501909452600584526442554e4e5960d81b908401528151919291620000a991600091620001bb565b508051620000bf906001906020840190620001bb565b505050620000dc620000d6620000ee60201b60201c565b620000f2565b620000e78162000144565b50620003b8565b3390565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6200014e620000ee565b6001600160a01b031662000161620001ac565b6001600160a01b031614620001935760405162461bcd60e51b81526004016200018a9062000330565b60405180910390fd5b8051620001a8906008906020840190620001bb565b5050565b6006546001600160a01b031690565b828054620001c99062000365565b90600052602060002090601f016020900481019282620001ed576000855562000238565b82601f106200020857805160ff191683800117855562000238565b8280016001018555821562000238579182015b82811115620002385782518255916020019190600101906200021b565b50620002469291506200024a565b5090565b5b808211156200024657600081556001016200024b565b6000602080838503121562000274578182fd5b82516001600160401b03808211156200028b578384fd5b818501915085601f8301126200029f578384fd5b815181811115620002b457620002b4620003a2565b604051601f8201601f1916810185018381118282101715620002da57620002da620003a2565b6040528181528382018501881015620002f1578586fd5b8592505b81831015620003145783830185015181840186015291840191620002f5565b818311156200032557858583830101525b979650505050505050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6002810460018216806200037a57607f821691505b602082108114156200039c57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b611f0f80620003c86000396000f3fe6080604052600436106101665760003560e01c8063715018a6116100d1578063a22cb4651161008a578063b88d4fde11610064578063b88d4fde146103dc578063c87b56dd146103fc578063e985e9c51461041c578063f2fde38b1461043c57610166565b8063a22cb46514610389578063a2b40d19146103a9578063ad0be4bd146103c957610166565b8063715018a61461030b5780637d8966e4146103205780638da5cb5b1461033557806395d89b411461034a57806399288dbb1461035f578063a035b1fe1461037457610166565b806332cb6b0c1161012357806332cb6b0c146102545780633ccfd60b1461027657806342842e0e1461028b57806355f804b3146102ab5780636352211e146102cb57806370a08231146102eb57610166565b806301ffc9a71461016b57806306fdde03146101a1578063081812fc146101c3578063095ea7b3146101f057806318160ddd1461021257806323b872dd14610234575b600080fd5b34801561017757600080fd5b5061018b6101863660046115f7565b61045c565b604051610198919061173c565b60405180910390f35b3480156101ad57600080fd5b506101b66104a4565b6040516101989190611747565b3480156101cf57600080fd5b506101e36101de366004611675565b610536565b60405161019891906116eb565b3480156101fc57600080fd5b5061021061020b3660046115ce565b610582565b005b34801561021e57600080fd5b5061022761061a565b6040516101989190611d32565b34801561024057600080fd5b5061021061024f3660046114af565b61062b565b34801561026057600080fd5b50610269610663565b6040516101989190611d41565b34801561028257600080fd5b50610210610669565b34801561029757600080fd5b506102106102a63660046114af565b610727565b3480156102b757600080fd5b506102106102c636600461162f565b610742565b3480156102d757600080fd5b506101e36102e6366004611675565b610798565b3480156102f757600080fd5b50610269610306366004611463565b6107cd565b34801561031757600080fd5b50610210610811565b34801561032c57600080fd5b5061021061085c565b34801561034157600080fd5b506101e36108af565b34801561035657600080fd5b506101b66108be565b34801561036b57600080fd5b5061018b6108cd565b34801561038057600080fd5b506102696108d6565b34801561039557600080fd5b506102106103a4366004611563565b6108dc565b3480156103b557600080fd5b506102106103c4366004611675565b6109aa565b6102106103d736600461159d565b6109ee565b3480156103e857600080fd5b506102106103f73660046114ea565b610b95565b34801561040857600080fd5b506101b6610417366004611675565b610bce565b34801561042857600080fd5b5061018b61043736600461147d565b610c51565b34801561044857600080fd5b50610210610457366004611463565b610c7f565b60006001600160e01b031982166380ac58cd60e01b148061048d57506001600160e01b03198216635b5e139f60e01b145b8061049c575061049c82610ced565b90505b919050565b6060600080546104b390611df5565b80601f01602080910402602001604051908101604052809291908181526020018280546104df90611df5565b801561052c5780601f106105015761010080835404028352916020019161052c565b820191906000526020600020905b81548152906001019060200180831161050f57829003601f168201915b5050505050905090565b600061054182610d06565b6105665760405162461bcd60e51b815260040161055d90611a91565b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600061058d82610798565b9050806001600160a01b0316836001600160a01b031614156105c15760405162461bcd60e51b815260040161055d90611c46565b806001600160a01b03166105d3610d23565b6001600160a01b031614806105ef57506105ef81610437610d23565b61060b5760405162461bcd60e51b815260040161055d9061196c565b6106158383610d27565b505050565b600654600160a01b900461ffff1690565b61063c610636610d23565b82610d95565b6106585760405162461bcd60e51b815260040161055d90611ce1565b610615838383610e1a565b61045781565b610671610d23565b6001600160a01b03166106826108af565b6001600160a01b0316146106a85760405162461bcd60e51b815260040161055d90611b2c565b6000336001600160a01b0316476040516106c1906116e8565b60006040518083038185875af1925050503d80600081146106fe576040519150601f19603f3d011682016040523d82523d6000602084013e610703565b606091505b50509050806107245760405162461bcd60e51b815260040161055d90611cb7565b50565b61061583838360405180602001604052806000815250610b95565b61074a610d23565b6001600160a01b031661075b6108af565b6001600160a01b0316146107815760405162461bcd60e51b815260040161055d90611b2c565b8051610794906008906020840190611343565b5050565b6000818152600260205260408120546001600160a01b03168061049c5760405162461bcd60e51b815260040161055d90611a13565b60006001600160a01b0382166107f55760405162461bcd60e51b815260040161055d906119c9565b506001600160a01b031660009081526003602052604090205490565b610819610d23565b6001600160a01b031661082a6108af565b6001600160a01b0316146108505760405162461bcd60e51b815260040161055d90611b2c565b61085a6000610f47565b565b610864610d23565b6001600160a01b03166108756108af565b6001600160a01b03161461089b5760405162461bcd60e51b815260040161055d90611b2c565b6009805460ff19811660ff90911615179055565b6006546001600160a01b031690565b6060600180546104b390611df5565b60095460ff1681565b60075481565b6108e4610d23565b6001600160a01b0316826001600160a01b031614156109155760405162461bcd60e51b815260040161055d906118bb565b8060056000610922610d23565b6001600160a01b03908116825260208083019390935260409182016000908120918716808252919093529120805460ff191692151592909217909155610966610d23565b6001600160a01b03167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161099e919061173c565b60405180910390a35050565b6109b2610d23565b6001600160a01b03166109c36108af565b6001600160a01b0316146109e95760405162461bcd60e51b815260040161055d90611b2c565b600755565b60006109f861061a565b9050610457610a078383611d4a565b61ffff161115610a295760405162461bcd60e51b815260040161055d90611c87565b60008261ffff1611610a4d5760405162461bcd60e51b815260040161055d9061175a565b610a556108af565b6001600160a01b0316336001600160a01b031614610ae55760095460ff16610a8f5760405162461bcd60e51b815260040161055d906118f2565b60148261ffff161115610ab45760405162461bcd60e51b815260040161055d90611b61565b8161ffff16600754610ac69190611d93565b341015610ae55760405162461bcd60e51b815260040161055d90611add565b81600660148282829054906101000a900461ffff16610b049190611d4a565b92506101000a81548161ffff021916908361ffff16021790555060005b8261ffff16811015610b8f57610b4684610b3a84611e30565b93508361ffff16610f99565b7f176b02bb2d12439ff7a20b59f402cca16c76f50508b13ef3166a600eb719354a82604051610b759190611d32565b60405180910390a180610b8781611e52565b915050610b21565b50505050565b610ba6610ba0610d23565b83610d95565b610bc25760405162461bcd60e51b815260040161055d90611ce1565b610b8f84848484610fb3565b6060610bd982610d06565b610bf55760405162461bcd60e51b815260040161055d90611bf7565b6000610bff610fe6565b90506000815111610c1f5760405180602001604052806000815250610c4a565b80610c2984610ff5565b604051602001610c3a9291906116b9565b6040516020818303038152906040525b9392505050565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b610c87610d23565b6001600160a01b0316610c986108af565b6001600160a01b031614610cbe5760405162461bcd60e51b815260040161055d90611b2c565b6001600160a01b038116610ce45760405162461bcd60e51b815260040161055d906117fa565b61072481610f47565b6001600160e01b031981166301ffc9a760e01b14919050565b6000908152600260205260409020546001600160a01b0316151590565b3390565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190610d5c82610798565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000610da082610d06565b610dbc5760405162461bcd60e51b815260040161055d90611920565b6000610dc783610798565b9050806001600160a01b0316846001600160a01b03161480610e025750836001600160a01b0316610df784610536565b6001600160a01b0316145b80610e125750610e128185610c51565b949350505050565b826001600160a01b0316610e2d82610798565b6001600160a01b031614610e535760405162461bcd60e51b815260040161055d90611bae565b6001600160a01b038216610e795760405162461bcd60e51b815260040161055d90611877565b610e84838383610615565b610e8f600082610d27565b6001600160a01b0383166000908152600360205260408120805460019290610eb8908490611db2565b90915550506001600160a01b0382166000908152600360205260408120805460019290610ee6908490611d67565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b610794828260405180602001604052806000815250611110565b610fbe848484610e1a565b610fca84848484611143565b610b8f5760405162461bcd60e51b815260040161055d906117a8565b6060600880546104b390611df5565b60608161101a57506040805180820190915260018152600360fc1b602082015261049f565b8160005b8115611044578061102e81611e52565b915061103d9050600a83611d7f565b915061101e565b60008167ffffffffffffffff81111561106d57634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611097576020820181803683370190505b5090505b8415610e12576110ac600183611db2565b91506110b9600a86611e6d565b6110c4906030611d67565b60f81b8183815181106110e757634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350611109600a86611d7f565b945061109b565b61111a838361125e565b6111276000848484611143565b6106155760405162461bcd60e51b815260040161055d906117a8565b6000611157846001600160a01b031661133d565b1561125357836001600160a01b031663150b7a02611173610d23565b8786866040518563ffffffff1660e01b815260040161119594939291906116ff565b602060405180830381600087803b1580156111af57600080fd5b505af19250505080156111df575060408051601f3d908101601f191682019092526111dc91810190611613565b60015b611239573d80801561120d576040519150601f19603f3d011682016040523d82523d6000602084013e611212565b606091505b5080516112315760405162461bcd60e51b815260040161055d906117a8565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050610e12565b506001949350505050565b6001600160a01b0382166112845760405162461bcd60e51b815260040161055d90611a5c565b61128d81610d06565b156112aa5760405162461bcd60e51b815260040161055d90611840565b6112b660008383610615565b6001600160a01b03821660009081526003602052604081208054600192906112df908490611d67565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b3b151590565b82805461134f90611df5565b90600052602060002090601f01602090048101928261137157600085556113b7565b82601f1061138a57805160ff19168380011785556113b7565b828001600101855582156113b7579182015b828111156113b757825182559160200191906001019061139c565b506113c39291506113c7565b5090565b5b808211156113c357600081556001016113c8565b600067ffffffffffffffff808411156113f7576113f7611ead565b604051601f8501601f19168101602001828111828210171561141b5761141b611ead565b60405284815291508183850186101561143357600080fd5b8484602083013760006020868301015250509392505050565b80356001600160a01b038116811461049f57600080fd5b600060208284031215611474578081fd5b610c4a8261144c565b6000806040838503121561148f578081fd5b6114988361144c565b91506114a66020840161144c565b90509250929050565b6000806000606084860312156114c3578081fd5b6114cc8461144c565b92506114da6020850161144c565b9150604084013590509250925092565b600080600080608085870312156114ff578081fd5b6115088561144c565b93506115166020860161144c565b925060408501359150606085013567ffffffffffffffff811115611538578182fd5b8501601f81018713611548578182fd5b611557878235602084016113dc565b91505092959194509250565b60008060408385031215611575578182fd5b61157e8361144c565b915060208301358015158114611592578182fd5b809150509250929050565b600080604083850312156115af578182fd5b6115b88361144c565b9150602083013561ffff81168114611592578182fd5b600080604083850312156115e0578182fd5b6115e98361144c565b946020939093013593505050565b600060208284031215611608578081fd5b8135610c4a81611ec3565b600060208284031215611624578081fd5b8151610c4a81611ec3565b600060208284031215611640578081fd5b813567ffffffffffffffff811115611656578182fd5b8201601f81018413611666578182fd5b610e12848235602084016113dc565b600060208284031215611686578081fd5b5035919050565b600081518084526116a5816020860160208601611dc9565b601f01601f19169290920160200192915050565b600083516116cb818460208801611dc9565b8351908301906116df818360208801611dc9565b01949350505050565b90565b6001600160a01b0391909116815260200190565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906117329083018461168d565b9695505050505050565b901515815260200190565b600060208252610c4a602083018461168d565b6020808252602e908201527f4d696e696d756d2031204e46542068617320746f206265206d696e746564207060408201526d32b9103a3930b739b0b1ba34b7b760911b606082015260800190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b6020808252601c908201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604082015260600190565b60208082526024908201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60208082526019908201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604082015260600190565b60208082526014908201527314d85b19481a5cc81b9bdd081bdc195b881e595d60621b604082015260600190565b6020808252602c908201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b60208082526038908201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760408201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606082015260800190565b6020808252602a908201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604082015269726f206164647265737360b01b606082015260800190565b60208082526029908201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460408201526832b73a103a37b5b2b760b91b606082015260800190565b6020808252818101527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604082015260600190565b6020808252602c908201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b6020808252602f908201527f45746865722073656e7420776974682074686973207472616e73616374696f6e60408201526e081a5cc81b9bdd0818dbdc9c9958dd608a1b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6020808252602d908201527f4d6178696d756d203230204e4654732063616e206265206d696e74656420706560408201526c39103a3930b739b0b1ba34b7b760991b606082015260800190565b60208082526029908201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960408201526839903737ba1037bbb760b91b606082015260800190565b6020808252602f908201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60408201526e3732bc34b9ba32b73a103a37b5b2b760891b606082015260800190565b60208082526021908201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656040820152603960f91b606082015260800190565b60208082526016908201527545786365656473206d6178696d756d20737570706c7960501b604082015260600190565b60208082526010908201526f2a3930b739b332b9103330b4b632b21760811b604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b61ffff91909116815260200190565b90815260200190565b600061ffff8083168185168083038211156116df576116df611e81565b60008219821115611d7a57611d7a611e81565b500190565b600082611d8e57611d8e611e97565b500490565b6000816000190483118215151615611dad57611dad611e81565b500290565b600082821015611dc457611dc4611e81565b500390565b60005b83811015611de4578181015183820152602001611dcc565b83811115610b8f5750506000910152565b600281046001821680611e0957607f821691505b60208210811415611e2a57634e487b7160e01b600052602260045260246000fd5b50919050565b600061ffff80831681811415611e4857611e48611e81565b6001019392505050565b6000600019821415611e6657611e66611e81565b5060010190565b600082611e7c57611e7c611e97565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461072457600080fdfea264697066735822122088728e8d3cd539b99e817c6cd24a39e5725538c49b434809f9a2844c5d75430e64736f6c6343000800003300000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106101665760003560e01c8063715018a6116100d1578063a22cb4651161008a578063b88d4fde11610064578063b88d4fde146103dc578063c87b56dd146103fc578063e985e9c51461041c578063f2fde38b1461043c57610166565b8063a22cb46514610389578063a2b40d19146103a9578063ad0be4bd146103c957610166565b8063715018a61461030b5780637d8966e4146103205780638da5cb5b1461033557806395d89b411461034a57806399288dbb1461035f578063a035b1fe1461037457610166565b806332cb6b0c1161012357806332cb6b0c146102545780633ccfd60b1461027657806342842e0e1461028b57806355f804b3146102ab5780636352211e146102cb57806370a08231146102eb57610166565b806301ffc9a71461016b57806306fdde03146101a1578063081812fc146101c3578063095ea7b3146101f057806318160ddd1461021257806323b872dd14610234575b600080fd5b34801561017757600080fd5b5061018b6101863660046115f7565b61045c565b604051610198919061173c565b60405180910390f35b3480156101ad57600080fd5b506101b66104a4565b6040516101989190611747565b3480156101cf57600080fd5b506101e36101de366004611675565b610536565b60405161019891906116eb565b3480156101fc57600080fd5b5061021061020b3660046115ce565b610582565b005b34801561021e57600080fd5b5061022761061a565b6040516101989190611d32565b34801561024057600080fd5b5061021061024f3660046114af565b61062b565b34801561026057600080fd5b50610269610663565b6040516101989190611d41565b34801561028257600080fd5b50610210610669565b34801561029757600080fd5b506102106102a63660046114af565b610727565b3480156102b757600080fd5b506102106102c636600461162f565b610742565b3480156102d757600080fd5b506101e36102e6366004611675565b610798565b3480156102f757600080fd5b50610269610306366004611463565b6107cd565b34801561031757600080fd5b50610210610811565b34801561032c57600080fd5b5061021061085c565b34801561034157600080fd5b506101e36108af565b34801561035657600080fd5b506101b66108be565b34801561036b57600080fd5b5061018b6108cd565b34801561038057600080fd5b506102696108d6565b34801561039557600080fd5b506102106103a4366004611563565b6108dc565b3480156103b557600080fd5b506102106103c4366004611675565b6109aa565b6102106103d736600461159d565b6109ee565b3480156103e857600080fd5b506102106103f73660046114ea565b610b95565b34801561040857600080fd5b506101b6610417366004611675565b610bce565b34801561042857600080fd5b5061018b61043736600461147d565b610c51565b34801561044857600080fd5b50610210610457366004611463565b610c7f565b60006001600160e01b031982166380ac58cd60e01b148061048d57506001600160e01b03198216635b5e139f60e01b145b8061049c575061049c82610ced565b90505b919050565b6060600080546104b390611df5565b80601f01602080910402602001604051908101604052809291908181526020018280546104df90611df5565b801561052c5780601f106105015761010080835404028352916020019161052c565b820191906000526020600020905b81548152906001019060200180831161050f57829003601f168201915b5050505050905090565b600061054182610d06565b6105665760405162461bcd60e51b815260040161055d90611a91565b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600061058d82610798565b9050806001600160a01b0316836001600160a01b031614156105c15760405162461bcd60e51b815260040161055d90611c46565b806001600160a01b03166105d3610d23565b6001600160a01b031614806105ef57506105ef81610437610d23565b61060b5760405162461bcd60e51b815260040161055d9061196c565b6106158383610d27565b505050565b600654600160a01b900461ffff1690565b61063c610636610d23565b82610d95565b6106585760405162461bcd60e51b815260040161055d90611ce1565b610615838383610e1a565b61045781565b610671610d23565b6001600160a01b03166106826108af565b6001600160a01b0316146106a85760405162461bcd60e51b815260040161055d90611b2c565b6000336001600160a01b0316476040516106c1906116e8565b60006040518083038185875af1925050503d80600081146106fe576040519150601f19603f3d011682016040523d82523d6000602084013e610703565b606091505b50509050806107245760405162461bcd60e51b815260040161055d90611cb7565b50565b61061583838360405180602001604052806000815250610b95565b61074a610d23565b6001600160a01b031661075b6108af565b6001600160a01b0316146107815760405162461bcd60e51b815260040161055d90611b2c565b8051610794906008906020840190611343565b5050565b6000818152600260205260408120546001600160a01b03168061049c5760405162461bcd60e51b815260040161055d90611a13565b60006001600160a01b0382166107f55760405162461bcd60e51b815260040161055d906119c9565b506001600160a01b031660009081526003602052604090205490565b610819610d23565b6001600160a01b031661082a6108af565b6001600160a01b0316146108505760405162461bcd60e51b815260040161055d90611b2c565b61085a6000610f47565b565b610864610d23565b6001600160a01b03166108756108af565b6001600160a01b03161461089b5760405162461bcd60e51b815260040161055d90611b2c565b6009805460ff19811660ff90911615179055565b6006546001600160a01b031690565b6060600180546104b390611df5565b60095460ff1681565b60075481565b6108e4610d23565b6001600160a01b0316826001600160a01b031614156109155760405162461bcd60e51b815260040161055d906118bb565b8060056000610922610d23565b6001600160a01b03908116825260208083019390935260409182016000908120918716808252919093529120805460ff191692151592909217909155610966610d23565b6001600160a01b03167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161099e919061173c565b60405180910390a35050565b6109b2610d23565b6001600160a01b03166109c36108af565b6001600160a01b0316146109e95760405162461bcd60e51b815260040161055d90611b2c565b600755565b60006109f861061a565b9050610457610a078383611d4a565b61ffff161115610a295760405162461bcd60e51b815260040161055d90611c87565b60008261ffff1611610a4d5760405162461bcd60e51b815260040161055d9061175a565b610a556108af565b6001600160a01b0316336001600160a01b031614610ae55760095460ff16610a8f5760405162461bcd60e51b815260040161055d906118f2565b60148261ffff161115610ab45760405162461bcd60e51b815260040161055d90611b61565b8161ffff16600754610ac69190611d93565b341015610ae55760405162461bcd60e51b815260040161055d90611add565b81600660148282829054906101000a900461ffff16610b049190611d4a565b92506101000a81548161ffff021916908361ffff16021790555060005b8261ffff16811015610b8f57610b4684610b3a84611e30565b93508361ffff16610f99565b7f176b02bb2d12439ff7a20b59f402cca16c76f50508b13ef3166a600eb719354a82604051610b759190611d32565b60405180910390a180610b8781611e52565b915050610b21565b50505050565b610ba6610ba0610d23565b83610d95565b610bc25760405162461bcd60e51b815260040161055d90611ce1565b610b8f84848484610fb3565b6060610bd982610d06565b610bf55760405162461bcd60e51b815260040161055d90611bf7565b6000610bff610fe6565b90506000815111610c1f5760405180602001604052806000815250610c4a565b80610c2984610ff5565b604051602001610c3a9291906116b9565b6040516020818303038152906040525b9392505050565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b610c87610d23565b6001600160a01b0316610c986108af565b6001600160a01b031614610cbe5760405162461bcd60e51b815260040161055d90611b2c565b6001600160a01b038116610ce45760405162461bcd60e51b815260040161055d906117fa565b61072481610f47565b6001600160e01b031981166301ffc9a760e01b14919050565b6000908152600260205260409020546001600160a01b0316151590565b3390565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190610d5c82610798565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000610da082610d06565b610dbc5760405162461bcd60e51b815260040161055d90611920565b6000610dc783610798565b9050806001600160a01b0316846001600160a01b03161480610e025750836001600160a01b0316610df784610536565b6001600160a01b0316145b80610e125750610e128185610c51565b949350505050565b826001600160a01b0316610e2d82610798565b6001600160a01b031614610e535760405162461bcd60e51b815260040161055d90611bae565b6001600160a01b038216610e795760405162461bcd60e51b815260040161055d90611877565b610e84838383610615565b610e8f600082610d27565b6001600160a01b0383166000908152600360205260408120805460019290610eb8908490611db2565b90915550506001600160a01b0382166000908152600360205260408120805460019290610ee6908490611d67565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b610794828260405180602001604052806000815250611110565b610fbe848484610e1a565b610fca84848484611143565b610b8f5760405162461bcd60e51b815260040161055d906117a8565b6060600880546104b390611df5565b60608161101a57506040805180820190915260018152600360fc1b602082015261049f565b8160005b8115611044578061102e81611e52565b915061103d9050600a83611d7f565b915061101e565b60008167ffffffffffffffff81111561106d57634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611097576020820181803683370190505b5090505b8415610e12576110ac600183611db2565b91506110b9600a86611e6d565b6110c4906030611d67565b60f81b8183815181106110e757634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350611109600a86611d7f565b945061109b565b61111a838361125e565b6111276000848484611143565b6106155760405162461bcd60e51b815260040161055d906117a8565b6000611157846001600160a01b031661133d565b1561125357836001600160a01b031663150b7a02611173610d23565b8786866040518563ffffffff1660e01b815260040161119594939291906116ff565b602060405180830381600087803b1580156111af57600080fd5b505af19250505080156111df575060408051601f3d908101601f191682019092526111dc91810190611613565b60015b611239573d80801561120d576040519150601f19603f3d011682016040523d82523d6000602084013e611212565b606091505b5080516112315760405162461bcd60e51b815260040161055d906117a8565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050610e12565b506001949350505050565b6001600160a01b0382166112845760405162461bcd60e51b815260040161055d90611a5c565b61128d81610d06565b156112aa5760405162461bcd60e51b815260040161055d90611840565b6112b660008383610615565b6001600160a01b03821660009081526003602052604081208054600192906112df908490611d67565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b3b151590565b82805461134f90611df5565b90600052602060002090601f01602090048101928261137157600085556113b7565b82601f1061138a57805160ff19168380011785556113b7565b828001600101855582156113b7579182015b828111156113b757825182559160200191906001019061139c565b506113c39291506113c7565b5090565b5b808211156113c357600081556001016113c8565b600067ffffffffffffffff808411156113f7576113f7611ead565b604051601f8501601f19168101602001828111828210171561141b5761141b611ead565b60405284815291508183850186101561143357600080fd5b8484602083013760006020868301015250509392505050565b80356001600160a01b038116811461049f57600080fd5b600060208284031215611474578081fd5b610c4a8261144c565b6000806040838503121561148f578081fd5b6114988361144c565b91506114a66020840161144c565b90509250929050565b6000806000606084860312156114c3578081fd5b6114cc8461144c565b92506114da6020850161144c565b9150604084013590509250925092565b600080600080608085870312156114ff578081fd5b6115088561144c565b93506115166020860161144c565b925060408501359150606085013567ffffffffffffffff811115611538578182fd5b8501601f81018713611548578182fd5b611557878235602084016113dc565b91505092959194509250565b60008060408385031215611575578182fd5b61157e8361144c565b915060208301358015158114611592578182fd5b809150509250929050565b600080604083850312156115af578182fd5b6115b88361144c565b9150602083013561ffff81168114611592578182fd5b600080604083850312156115e0578182fd5b6115e98361144c565b946020939093013593505050565b600060208284031215611608578081fd5b8135610c4a81611ec3565b600060208284031215611624578081fd5b8151610c4a81611ec3565b600060208284031215611640578081fd5b813567ffffffffffffffff811115611656578182fd5b8201601f81018413611666578182fd5b610e12848235602084016113dc565b600060208284031215611686578081fd5b5035919050565b600081518084526116a5816020860160208601611dc9565b601f01601f19169290920160200192915050565b600083516116cb818460208801611dc9565b8351908301906116df818360208801611dc9565b01949350505050565b90565b6001600160a01b0391909116815260200190565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906117329083018461168d565b9695505050505050565b901515815260200190565b600060208252610c4a602083018461168d565b6020808252602e908201527f4d696e696d756d2031204e46542068617320746f206265206d696e746564207060408201526d32b9103a3930b739b0b1ba34b7b760911b606082015260800190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b6020808252601c908201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604082015260600190565b60208082526024908201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60208082526019908201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604082015260600190565b60208082526014908201527314d85b19481a5cc81b9bdd081bdc195b881e595d60621b604082015260600190565b6020808252602c908201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b60208082526038908201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760408201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606082015260800190565b6020808252602a908201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604082015269726f206164647265737360b01b606082015260800190565b60208082526029908201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460408201526832b73a103a37b5b2b760b91b606082015260800190565b6020808252818101527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604082015260600190565b6020808252602c908201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b6020808252602f908201527f45746865722073656e7420776974682074686973207472616e73616374696f6e60408201526e081a5cc81b9bdd0818dbdc9c9958dd608a1b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6020808252602d908201527f4d6178696d756d203230204e4654732063616e206265206d696e74656420706560408201526c39103a3930b739b0b1ba34b7b760991b606082015260800190565b60208082526029908201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960408201526839903737ba1037bbb760b91b606082015260800190565b6020808252602f908201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60408201526e3732bc34b9ba32b73a103a37b5b2b760891b606082015260800190565b60208082526021908201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656040820152603960f91b606082015260800190565b60208082526016908201527545786365656473206d6178696d756d20737570706c7960501b604082015260600190565b60208082526010908201526f2a3930b739b332b9103330b4b632b21760811b604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b61ffff91909116815260200190565b90815260200190565b600061ffff8083168185168083038211156116df576116df611e81565b60008219821115611d7a57611d7a611e81565b500190565b600082611d8e57611d8e611e97565b500490565b6000816000190483118215151615611dad57611dad611e81565b500290565b600082821015611dc457611dc4611e81565b500390565b60005b83811015611de4578181015183820152602001611dcc565b83811115610b8f5750506000910152565b600281046001821680611e0957607f821691505b60208210811415611e2a57634e487b7160e01b600052602260045260246000fd5b50919050565b600061ffff80831681811415611e4857611e48611e81565b6001019392505050565b6000600019821415611e6657611e66611e81565b5060010190565b600082611e7c57611e7c611e97565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461072457600080fdfea264697066735822122088728e8d3cd539b99e817c6cd24a39e5725538c49b434809f9a2844c5d75430e64736f6c63430008000033

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

00000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : baseURI (string):

-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

36630:1953:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23516:355;;;;;;;;;;-1:-1:-1;23516:355:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24685:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;26378:308::-;;;;;;;;;;-1:-1:-1;26378:308:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;25901:411::-;;;;;;;;;;-1:-1:-1;25901:411:0;;;;;:::i;:::-;;:::i;:::-;;37029:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;27437:376::-;;;;;;;;;;-1:-1:-1;27437:376:0;;;;;:::i;:::-;;:::i;36678:41::-;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;37424:206::-;;;;;;;;;;;;;:::i;27884:185::-;;;;;;;;;;-1:-1:-1;27884:185:0;;;;;:::i;:::-;;:::i;37124:101::-;;;;;;;;;;-1:-1:-1;37124:101:0;;;;;:::i;:::-;;:::i;24292:326::-;;;;;;;;;;-1:-1:-1;24292:326:0;;;;;:::i;:::-;;:::i;23935:295::-;;;;;;;;;;-1:-1:-1;23935:295:0;;;;;:::i;:::-;;:::i;8404:94::-;;;;;;;;;;;;;:::i;37336:80::-;;;;;;;;;;;;;:::i;7753:87::-;;;;;;;;;;;;;:::i;24854:104::-;;;;;;;;;;;;;:::i;36836:28::-;;;;;;;;;;;;;:::i;36763:40::-;;;;;;;;;;;;;:::i;26758:327::-;;;;;;;;;;-1:-1:-1;26758:327:0;;;;;:::i;:::-;;:::i;37233:95::-;;;;;;;;;;-1:-1:-1;37233:95:0;;;;;:::i;:::-;;:::i;37638:821::-;;;;;;:::i;:::-;;:::i;28140:365::-;;;;;;;;;;-1:-1:-1;28140:365:0;;;;;:::i;:::-;;:::i;25029:468::-;;;;;;;;;;-1:-1:-1;25029:468:0;;;;;:::i;:::-;;:::i;27156:214::-;;;;;;;;;;-1:-1:-1;27156:214:0;;;;;:::i;:::-;;:::i;8653:229::-;;;;;;;;;;-1:-1:-1;8653:229:0;;;;;:::i;:::-;;:::i;23516:355::-;23663:4;-1:-1:-1;;;;;;23705:40:0;;-1:-1:-1;;;23705:40:0;;:105;;-1:-1:-1;;;;;;;23762:48:0;;-1:-1:-1;;;23762:48:0;23705:105;:158;;;;23827:36;23851:11;23827:23;:36::i;:::-;23685:178;;23516:355;;;;:::o;24685:100::-;24739:13;24772:5;24765:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24685:100;:::o;26378:308::-;26499:7;26546:16;26554:7;26546;:16::i;:::-;26524:110;;;;-1:-1:-1;;;26524:110:0;;;;;;;:::i;:::-;;;;;;;;;-1:-1:-1;26654:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;26654:24:0;;26378:308::o;25901:411::-;25982:13;25998:23;26013:7;25998:14;:23::i;:::-;25982:39;;26046:5;-1:-1:-1;;;;;26040:11:0;:2;-1:-1:-1;;;;;26040:11:0;;;26032:57;;;;-1:-1:-1;;;26032:57:0;;;;;;;:::i;:::-;26140:5;-1:-1:-1;;;;;26124:21:0;:12;:10;:12::i;:::-;-1:-1:-1;;;;;26124:21:0;;:62;;;;26149:37;26166:5;26173:12;:10;:12::i;26149:37::-;26102:168;;;;-1:-1:-1;;;26102:168:0;;;;;;;:::i;:::-;26283:21;26292:2;26296:7;26283:8;:21::i;:::-;25901:411;;;:::o;37029:87::-;37099:9;;-1:-1:-1;;;37099:9:0;;;;;37029:87::o;27437:376::-;27646:41;27665:12;:10;:12::i;:::-;27679:7;27646:18;:41::i;:::-;27624:140;;;;-1:-1:-1;;;27624:140:0;;;;;;;:::i;:::-;27777:28;27787:4;27793:2;27797:7;27777:9;:28::i;36678:41::-;36715:4;36678:41;:::o;37424:206::-;7984:12;:10;:12::i;:::-;-1:-1:-1;;;;;7973:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;7973:23:0;;7965:68;;;;-1:-1:-1;;;7965:68:0;;;;;;;:::i;:::-;37475:12:::1;37501:10;-1:-1:-1::0;;;;;37493:24:0::1;37539:21;37493:82;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37474:101;;;37594:7;37586:36;;;;-1:-1:-1::0;;;37586:36:0::1;;;;;;;:::i;:::-;8044:1;37424:206::o:0;27884:185::-;28022:39;28039:4;28045:2;28049:7;28022:39;;;;;;;;;;;;:16;:39::i;37124:101::-;7984:12;:10;:12::i;:::-;-1:-1:-1;;;;;7973:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;7973:23:0;;7965:68;;;;-1:-1:-1;;;7965:68:0;;;;;;;:::i;:::-;37195:22;;::::1;::::0;:12:::1;::::0;:22:::1;::::0;::::1;::::0;::::1;:::i;:::-;;37124:101:::0;:::o;24292:326::-;24409:7;24450:16;;;:7;:16;;;;;;-1:-1:-1;;;;;24450:16:0;24499:19;24477:110;;;;-1:-1:-1;;;24477:110:0;;;;;;;:::i;23935:295::-;24052:7;-1:-1:-1;;;;;24099:19:0;;24077:111;;;;-1:-1:-1;;;24077:111:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;;24206:16:0;;;;;:9;:16;;;;;;;23935:295::o;8404:94::-;7984:12;:10;:12::i;:::-;-1:-1:-1;;;;;7973:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;7973:23:0;;7965:68;;;;-1:-1:-1;;;7965:68:0;;;;;;;:::i;:::-;8469:21:::1;8487:1;8469:9;:21::i;:::-;8404:94::o:0;37336:80::-;7984:12;:10;:12::i;:::-;-1:-1:-1;;;;;7973:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;7973:23:0;;7965:68;;;;-1:-1:-1;;;7965:68:0;;;;;;;:::i;:::-;37400:8:::1;::::0;;-1:-1:-1;;37388:20:0;::::1;37400:8;::::0;;::::1;37399:9;37388:20;::::0;;37336:80::o;7753:87::-;7826:6;;-1:-1:-1;;;;;7826:6:0;7753:87;:::o;24854:104::-;24910:13;24943:7;24936:14;;;;;:::i;36836:28::-;;;;;;:::o;36763:40::-;;;;:::o;26758:327::-;26905:12;:10;:12::i;:::-;-1:-1:-1;;;;;26893:24:0;:8;-1:-1:-1;;;;;26893:24:0;;;26885:62;;;;-1:-1:-1;;;26885:62:0;;;;;;;:::i;:::-;27005:8;26960:18;:32;26979:12;:10;:12::i;:::-;-1:-1:-1;;;;;26960:32:0;;;;;;;;;;;;;;;;;-1:-1:-1;26960:32:0;;;:42;;;;;;;;;;;;:53;;-1:-1:-1;;26960:53:0;;;;;;;;;;;27044:12;:10;:12::i;:::-;-1:-1:-1;;;;;27029:48:0;;27068:8;27029:48;;;;;;:::i;:::-;;;;;;;;26758:327;;:::o;37233:95::-;7984:12;:10;:12::i;:::-;-1:-1:-1;;;;;7973:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;7973:23:0;;7965:68;;;;-1:-1:-1;;;7965:68:0;;;;;;;:::i;:::-;37303:5:::1;:17:::0;37233:95::o;37638:821::-;37707:13;37723;:11;:13::i;:::-;37707:29;-1:-1:-1;36715:4:0;37757:15;37766:6;37707:29;37757:15;:::i;:::-;:29;;;;37749:64;;;;-1:-1:-1;;;37749:64:0;;;;;;;:::i;:::-;37841:1;37832:6;:10;;;37824:69;;;;-1:-1:-1;;;37824:69:0;;;;;;;:::i;:::-;37924:7;:5;:7::i;:::-;-1:-1:-1;;;;;37910:21:0;:10;-1:-1:-1;;;;;37910:21:0;;37906:380;;37956:8;;;;37948:41;;;;-1:-1:-1;;;37948:41:0;;;;;;;:::i;:::-;38040:2;38030:6;:12;;;;38004:119;;;;-1:-1:-1;;;38004:119:0;;;;;;;:::i;:::-;38185:6;38177:14;;:5;;:14;;;;:::i;:::-;38164:9;:27;;38138:136;;;;-1:-1:-1;;;38138:136:0;;;;;;;:::i;:::-;38311:6;38298:9;;:19;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;38335:9;38330:122;38354:6;38350:10;;:1;:10;38330:122;;;38382:24;38392:3;38397:8;;;:::i;:::-;;;;38382:24;;:9;:24::i;:::-;38426:14;38433:6;38426:14;;;;;;:::i;:::-;;;;;;;;38362:3;;;;:::i;:::-;;;;38330:122;;;;37638:821;;;:::o;28140:365::-;28329:41;28348:12;:10;:12::i;:::-;28362:7;28329:18;:41::i;:::-;28307:140;;;;-1:-1:-1;;;28307:140:0;;;;;;;:::i;:::-;28458:39;28472:4;28478:2;28482:7;28491:5;28458:13;:39::i;25029:468::-;25147:13;25200:16;25208:7;25200;:16::i;:::-;25178:113;;;;-1:-1:-1;;;25178:113:0;;;;;;;:::i;:::-;25304:21;25328:10;:8;:10::i;:::-;25304:34;;25393:1;25375:7;25369:21;:25;:120;;;;;;;;;;;;;;;;;25438:7;25447:18;:7;:16;:18::i;:::-;25421:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;25369:120;25349:140;25029:468;-1:-1:-1;;;25029:468:0:o;27156:214::-;-1:-1:-1;;;;;27327:25:0;;;27298:4;27327:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;27156:214::o;8653:229::-;7984:12;:10;:12::i;:::-;-1:-1:-1;;;;;7973:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;7973:23:0;;7965:68;;;;-1:-1:-1;;;7965:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;8756:22:0;::::1;8734:110;;;;-1:-1:-1::0;;;8734:110:0::1;;;;;;;:::i;:::-;8855:19;8865:8;8855:9;:19::i;9862:207::-:0;-1:-1:-1;;;;;;10021:40:0;;-1:-1:-1;;;10021:40:0;9862:207;;;:::o;30052:127::-;30117:4;30141:16;;;:7;:16;;;;;;-1:-1:-1;;;;;30141:16:0;:30;;;30052:127::o;726:98::-;806:10;726:98;:::o;34175:174::-;34250:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;34250:29:0;-1:-1:-1;;;;;34250:29:0;;;;;;;;:24;;34304:23;34250:24;34304:14;:23::i;:::-;-1:-1:-1;;;;;34295:46:0;;;;;;;;;;;34175:174;;:::o;30346:452::-;30475:4;30519:16;30527:7;30519;:16::i;:::-;30497:110;;;;-1:-1:-1;;;30497:110:0;;;;;;;:::i;:::-;30618:13;30634:23;30649:7;30634:14;:23::i;:::-;30618:39;;30687:5;-1:-1:-1;;;;;30676:16:0;:7;-1:-1:-1;;;;;30676:16:0;;:64;;;;30733:7;-1:-1:-1;;;;;30709:31:0;:20;30721:7;30709:11;:20::i;:::-;-1:-1:-1;;;;;30709:31:0;;30676:64;:113;;;;30757:32;30774:5;30781:7;30757:16;:32::i;:::-;30668:122;30346:452;-1:-1:-1;;;;30346:452:0:o;33442:615::-;33615:4;-1:-1:-1;;;;;33588:31:0;:23;33603:7;33588:14;:23::i;:::-;-1:-1:-1;;;;;33588:31:0;;33566:122;;;;-1:-1:-1;;;33566:122:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;33707:16:0;;33699:65;;;;-1:-1:-1;;;33699:65:0;;;;;;;:::i;:::-;33777:39;33798:4;33804:2;33808:7;33777:20;:39::i;:::-;33881:29;33898:1;33902:7;33881:8;:29::i;:::-;-1:-1:-1;;;;;33923:15:0;;;;;;:9;:15;;;;;:20;;33942:1;;33923:15;:20;;33942:1;;33923:20;:::i;:::-;;;;-1:-1:-1;;;;;;;33954:13:0;;;;;;:9;:13;;;;;:18;;33971:1;;33954:13;:18;;33971:1;;33954:18;:::i;:::-;;;;-1:-1:-1;;33983:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;33983:21:0;-1:-1:-1;;;;;33983:21:0;;;;;;;;;34022:27;;33983:16;;34022:27;;;;;;;33442:615;;;:::o;8890:173::-;8965:6;;;-1:-1:-1;;;;;8982:17:0;;;-1:-1:-1;;;;;;8982:17:0;;;;;;;9015:40;;8965:6;;;8982:17;8965:6;;9015:40;;8946:16;;9015:40;8890:173;;:::o;31140:110::-;31216:26;31226:2;31230:7;31216:26;;;;;;;;;;;;:9;:26::i;29387:352::-;29544:28;29554:4;29560:2;29564:7;29544:9;:28::i;:::-;29605:48;29628:4;29634:2;29638:7;29647:5;29605:22;:48::i;:::-;29583:148;;;;-1:-1:-1;;;29583:148:0;;;;;;;:::i;38467:113::-;38527:13;38560:12;38553:19;;;;;:::i;10383:723::-;10439:13;10660:10;10656:53;;-1:-1:-1;10687:10:0;;;;;;;;;;;;-1:-1:-1;;;10687:10:0;;;;;;10656:53;10734:5;10719:12;10775:78;10782:9;;10775:78;;10808:8;;;;:::i;:::-;;-1:-1:-1;10831:10:0;;-1:-1:-1;10839:2:0;10831:10;;:::i;:::-;;;10775:78;;;10863:19;10895:6;10885:17;;;;;;-1:-1:-1;;;10885:17:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;10885:17:0;;10863:39;;10913:154;10920:10;;10913:154;;10947:11;10957:1;10947:11;;:::i;:::-;;-1:-1:-1;11016:10:0;11024:2;11016:5;:10;:::i;:::-;11003:24;;:2;:24;:::i;:::-;10990:39;;10973:6;10980;10973:14;;;;;;-1:-1:-1;;;10973:14:0;;;;;;;;;;;;:56;-1:-1:-1;;;;;10973:56:0;;;;;;;;-1:-1:-1;11044:11:0;11053:2;11044:11;;:::i;:::-;;;10913:154;;31477:321;31607:18;31613:2;31617:7;31607:5;:18::i;:::-;31658:54;31689:1;31693:2;31697:7;31706:5;31658:22;:54::i;:::-;31636:154;;;;-1:-1:-1;;;31636:154:0;;;;;;;:::i;34914:984::-;35069:4;35090:15;:2;-1:-1:-1;;;;;35090:13:0;;:15::i;:::-;35086:805;;;35159:2;-1:-1:-1;;;;;35143:36:0;;35202:12;:10;:12::i;:::-;35237:4;35264:7;35294:5;35143:175;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;35143:175:0;;;;;;;;-1:-1:-1;;35143:175:0;;;;;;;;;;;;:::i;:::-;;;35122:714;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;35505:13:0;;35501:320;;35548:108;;-1:-1:-1;;;35548:108:0;;;;;;;:::i;35501:320::-;35771:6;35765:13;35756:6;35752:2;35748:15;35741:38;35122:714;-1:-1:-1;;;;;;35382:55:0;-1:-1:-1;;;35382:55:0;;-1:-1:-1;35375:62:0;;35086:805;-1:-1:-1;35875:4:0;34914:984;;;;;;:::o;32134:382::-;-1:-1:-1;;;;;32214:16:0;;32206:61;;;;-1:-1:-1;;;32206:61:0;;;;;;;:::i;:::-;32287:16;32295:7;32287;:16::i;:::-;32286:17;32278:58;;;;-1:-1:-1;;;32278:58:0;;;;;;;:::i;:::-;32349:45;32378:1;32382:2;32386:7;32349:20;:45::i;:::-;-1:-1:-1;;;;;32407:13:0;;;;;;:9;:13;;;;;:18;;32424:1;;32407:13;:18;;32424:1;;32407:18;:::i;:::-;;;;-1:-1:-1;;32436:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;32436:21:0;-1:-1:-1;;;;;32436:21:0;;;;;;;;32475:33;;32436:16;;;32475:33;;32436:16;;32475:33;32134:382;;:::o;12936:387::-;13259:20;13307:8;;;12936:387::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:607:1;;110:18;151:2;143:6;140:14;137:2;;;157:18;;:::i;:::-;206:2;200:9;279:2;256:17;;-1:-1:-1;;252:31:1;240:44;;286:4;236:55;306:18;;;326:22;;;303:46;300:2;;;352:18;;:::i;:::-;388:2;381:22;436;;;421:6;-1:-1:-1;421:6:1;473:16;;;470:25;-1:-1:-1;467:2:1;;;508:1;505;498:12;467:2;558:6;553:3;546:4;538:6;534:17;521:44;613:1;606:4;597:6;589;585:19;581:30;574:41;;;90:531;;;;;:::o;626:175::-;696:20;;-1:-1:-1;;;;;745:31:1;;735:42;;725:2;;791:1;788;781:12;806:198;;918:2;906:9;897:7;893:23;889:32;886:2;;;939:6;931;924:22;886:2;967:31;988:9;967:31;:::i;1009:274::-;;;1138:2;1126:9;1117:7;1113:23;1109:32;1106:2;;;1159:6;1151;1144:22;1106:2;1187:31;1208:9;1187:31;:::i;:::-;1177:41;;1237:40;1273:2;1262:9;1258:18;1237:40;:::i;:::-;1227:50;;1096:187;;;;;:::o;1288:342::-;;;;1434:2;1422:9;1413:7;1409:23;1405:32;1402:2;;;1455:6;1447;1440:22;1402:2;1483:31;1504:9;1483:31;:::i;:::-;1473:41;;1533:40;1569:2;1558:9;1554:18;1533:40;:::i;:::-;1523:50;;1620:2;1609:9;1605:18;1592:32;1582:42;;1392:238;;;;;:::o;1635:702::-;;;;;1807:3;1795:9;1786:7;1782:23;1778:33;1775:2;;;1829:6;1821;1814:22;1775:2;1857:31;1878:9;1857:31;:::i;:::-;1847:41;;1907:40;1943:2;1932:9;1928:18;1907:40;:::i;:::-;1897:50;;1994:2;1983:9;1979:18;1966:32;1956:42;;2049:2;2038:9;2034:18;2021:32;2076:18;2068:6;2065:30;2062:2;;;2113:6;2105;2098:22;2062:2;2141:22;;2194:4;2186:13;;2182:27;-1:-1:-1;2172:2:1;;2228:6;2220;2213:22;2172:2;2256:75;2323:7;2318:2;2305:16;2300:2;2296;2292:11;2256:75;:::i;:::-;2246:85;;;1765:572;;;;;;;:::o;2342:369::-;;;2468:2;2456:9;2447:7;2443:23;2439:32;2436:2;;;2489:6;2481;2474:22;2436:2;2517:31;2538:9;2517:31;:::i;:::-;2507:41;;2598:2;2587:9;2583:18;2570:32;2645:5;2638:13;2631:21;2624:5;2621:32;2611:2;;2672:6;2664;2657:22;2611:2;2700:5;2690:15;;;2426:285;;;;;:::o;2716:368::-;;;2844:2;2832:9;2823:7;2819:23;2815:32;2812:2;;;2865:6;2857;2850:22;2812:2;2893:31;2914:9;2893:31;:::i;:::-;2883:41;;2974:2;2963:9;2959:18;2946:32;3018:6;3011:5;3007:18;3000:5;2997:29;2987:2;;3045:6;3037;3030:22;3089:266;;;3218:2;3206:9;3197:7;3193:23;3189:32;3186:2;;;3239:6;3231;3224:22;3186:2;3267:31;3288:9;3267:31;:::i;:::-;3257:41;3345:2;3330:18;;;;3317:32;;-1:-1:-1;;;3176:179:1:o;3360:257::-;;3471:2;3459:9;3450:7;3446:23;3442:32;3439:2;;;3492:6;3484;3477:22;3439:2;3536:9;3523:23;3555:32;3581:5;3555:32;:::i;3622:261::-;;3744:2;3732:9;3723:7;3719:23;3715:32;3712:2;;;3765:6;3757;3750:22;3712:2;3802:9;3796:16;3821:32;3847:5;3821:32;:::i;3888:482::-;;4010:2;3998:9;3989:7;3985:23;3981:32;3978:2;;;4031:6;4023;4016:22;3978:2;4076:9;4063:23;4109:18;4101:6;4098:30;4095:2;;;4146:6;4138;4131:22;4095:2;4174:22;;4227:4;4219:13;;4215:27;-1:-1:-1;4205:2:1;;4261:6;4253;4246:22;4205:2;4289:75;4356:7;4351:2;4338:16;4333:2;4329;4325:11;4289:75;:::i;4375:190::-;;4487:2;4475:9;4466:7;4462:23;4458:32;4455:2;;;4508:6;4500;4493:22;4455:2;-1:-1:-1;4536:23:1;;4445:120;-1:-1:-1;4445:120:1:o;4570:259::-;;4651:5;4645:12;4678:6;4673:3;4666:19;4694:63;4750:6;4743:4;4738:3;4734:14;4727:4;4720:5;4716:16;4694:63;:::i;:::-;4811:2;4790:15;-1:-1:-1;;4786:29:1;4777:39;;;;4818:4;4773:50;;4621:208;-1:-1:-1;;4621:208:1:o;4834:470::-;;5051:6;5045:13;5067:53;5113:6;5108:3;5101:4;5093:6;5089:17;5067:53;:::i;:::-;5183:13;;5142:16;;;;5205:57;5183:13;5142:16;5239:4;5227:17;;5205:57;:::i;:::-;5278:20;;5021:283;-1:-1:-1;;;;5021:283:1:o;5309:205::-;5509:3;5500:14::o;5519:203::-;-1:-1:-1;;;;;5683:32:1;;;;5665:51;;5653:2;5638:18;;5620:102::o;5727:490::-;-1:-1:-1;;;;;5996:15:1;;;5978:34;;6048:15;;6043:2;6028:18;;6021:43;6095:2;6080:18;;6073:34;;;6143:3;6138:2;6123:18;;6116:31;;;5727:490;;6164:47;;6191:19;;6183:6;6164:47;:::i;:::-;6156:55;5930:287;-1:-1:-1;;;;;;5930:287:1:o;6222:187::-;6387:14;;6380:22;6362:41;;6350:2;6335:18;;6317:92::o;6414:221::-;;6563:2;6552:9;6545:21;6583:46;6625:2;6614:9;6610:18;6602:6;6583:46;:::i;6640:410::-;6842:2;6824:21;;;6881:2;6861:18;;;6854:30;6920:34;6915:2;6900:18;;6893:62;-1:-1:-1;;;6986:2:1;6971:18;;6964:44;7040:3;7025:19;;6814:236::o;7055:414::-;7257:2;7239:21;;;7296:2;7276:18;;;7269:30;7335:34;7330:2;7315:18;;7308:62;-1:-1:-1;;;7401:2:1;7386:18;;7379:48;7459:3;7444:19;;7229:240::o;7474:402::-;7676:2;7658:21;;;7715:2;7695:18;;;7688:30;7754:34;7749:2;7734:18;;7727:62;-1:-1:-1;;;7820:2:1;7805:18;;7798:36;7866:3;7851:19;;7648:228::o;7881:352::-;8083:2;8065:21;;;8122:2;8102:18;;;8095:30;8161;8156:2;8141:18;;8134:58;8224:2;8209:18;;8055:178::o;8238:400::-;8440:2;8422:21;;;8479:2;8459:18;;;8452:30;8518:34;8513:2;8498:18;;8491:62;-1:-1:-1;;;8584:2:1;8569:18;;8562:34;8628:3;8613:19;;8412:226::o;8643:349::-;8845:2;8827:21;;;8884:2;8864:18;;;8857:30;8923:27;8918:2;8903:18;;8896:55;8983:2;8968:18;;8817:175::o;8997:344::-;9199:2;9181:21;;;9238:2;9218:18;;;9211:30;-1:-1:-1;;;9272:2:1;9257:18;;9250:50;9332:2;9317:18;;9171:170::o;9346:408::-;9548:2;9530:21;;;9587:2;9567:18;;;9560:30;9626:34;9621:2;9606:18;;9599:62;-1:-1:-1;;;9692:2:1;9677:18;;9670:42;9744:3;9729:19;;9520:234::o;9759:420::-;9961:2;9943:21;;;10000:2;9980:18;;;9973:30;10039:34;10034:2;10019:18;;10012:62;10110:26;10105:2;10090:18;;10083:54;10169:3;10154:19;;9933:246::o;10184:406::-;10386:2;10368:21;;;10425:2;10405:18;;;10398:30;10464:34;10459:2;10444:18;;10437:62;-1:-1:-1;;;10530:2:1;10515:18;;10508:40;10580:3;10565:19;;10358:232::o;10595:405::-;10797:2;10779:21;;;10836:2;10816:18;;;10809:30;10875:34;10870:2;10855:18;;10848:62;-1:-1:-1;;;10941:2:1;10926:18;;10919:39;10990:3;10975:19;;10769:231::o;11005:356::-;11207:2;11189:21;;;11226:18;;;11219:30;11285:34;11280:2;11265:18;;11258:62;11352:2;11337:18;;11179:182::o;11366:408::-;11568:2;11550:21;;;11607:2;11587:18;;;11580:30;11646:34;11641:2;11626:18;;11619:62;-1:-1:-1;;;11712:2:1;11697:18;;11690:42;11764:3;11749:19;;11540:234::o;11779:411::-;11981:2;11963:21;;;12020:2;12000:18;;;11993:30;12059:34;12054:2;12039:18;;12032:62;-1:-1:-1;;;12125:2:1;12110:18;;12103:45;12180:3;12165:19;;11953:237::o;12195:356::-;12397:2;12379:21;;;12416:18;;;12409:30;12475:34;12470:2;12455:18;;12448:62;12542:2;12527:18;;12369:182::o;12556:409::-;12758:2;12740:21;;;12797:2;12777:18;;;12770:30;12836:34;12831:2;12816:18;;12809:62;-1:-1:-1;;;12902:2:1;12887:18;;12880:43;12955:3;12940:19;;12730:235::o;12970:405::-;13172:2;13154:21;;;13211:2;13191:18;;;13184:30;13250:34;13245:2;13230:18;;13223:62;-1:-1:-1;;;13316:2:1;13301:18;;13294:39;13365:3;13350:19;;13144:231::o;13380:411::-;13582:2;13564:21;;;13621:2;13601:18;;;13594:30;13660:34;13655:2;13640:18;;13633:62;-1:-1:-1;;;13726:2:1;13711:18;;13704:45;13781:3;13766:19;;13554:237::o;13796:397::-;13998:2;13980:21;;;14037:2;14017:18;;;14010:30;14076:34;14071:2;14056:18;;14049:62;-1:-1:-1;;;14142:2:1;14127:18;;14120:31;14183:3;14168:19;;13970:223::o;14198:346::-;14400:2;14382:21;;;14439:2;14419:18;;;14412:30;-1:-1:-1;;;14473:2:1;14458:18;;14451:52;14535:2;14520:18;;14372:172::o;14549:340::-;14751:2;14733:21;;;14790:2;14770:18;;;14763:30;-1:-1:-1;;;14824:2:1;14809:18;;14802:46;14880:2;14865:18;;14723:166::o;14894:413::-;15096:2;15078:21;;;15135:2;15115:18;;;15108:30;15174:34;15169:2;15154:18;;15147:62;-1:-1:-1;;;15240:2:1;15225:18;;15218:47;15297:3;15282:19;;15068:239::o;15312:188::-;15486:6;15474:19;;;;15456:38;;15444:2;15429:18;;15411:89::o;15699:177::-;15845:25;;;15833:2;15818:18;;15800:76::o;15881:224::-;;15948:6;15981:2;15978:1;15974:10;16011:2;16008:1;16004:10;16042:3;16038:2;16034:12;16029:3;16026:21;16023:2;;;16050:18;;:::i;16110:128::-;;16181:1;16177:6;16174:1;16171:13;16168:2;;;16187:18;;:::i;:::-;-1:-1:-1;16223:9:1;;16158:80::o;16243:120::-;;16309:1;16299:2;;16314:18;;:::i;:::-;-1:-1:-1;16348:9:1;;16289:74::o;16368:168::-;;16474:1;16470;16466:6;16462:14;16459:1;16456:21;16451:1;16444:9;16437:17;16433:45;16430:2;;;16481:18;;:::i;:::-;-1:-1:-1;16521:9:1;;16420:116::o;16541:125::-;;16609:1;16606;16603:8;16600:2;;;16614:18;;:::i;:::-;-1:-1:-1;16651:9:1;;16590:76::o;16671:258::-;16743:1;16753:113;16767:6;16764:1;16761:13;16753:113;;;16843:11;;;16837:18;16824:11;;;16817:39;16789:2;16782:10;16753:113;;;16884:6;16881:1;16878:13;16875:2;;;-1:-1:-1;;16919:1:1;16901:16;;16894:27;16724:205::o;16934:380::-;17019:1;17009:12;;17066:1;17056:12;;;17077:2;;17131:4;17123:6;17119:17;17109:27;;17077:2;17184;17176:6;17173:14;17153:18;17150:38;17147:2;;;17230:10;17225:3;17221:20;17218:1;17211:31;17265:4;17262:1;17255:15;17293:4;17290:1;17283:15;17147:2;;16989:325;;;:::o;17319:197::-;;17385:6;17426:2;17419:5;17415:14;17453:2;17444:7;17441:15;17438:2;;;17459:18;;:::i;:::-;17508:1;17495:15;;17365:151;-1:-1:-1;;;17365:151:1:o;17521:135::-;;-1:-1:-1;;17581:17:1;;17578:2;;;17601:18;;:::i;:::-;-1:-1:-1;17648:1:1;17637:13;;17568:88::o;17661:112::-;;17719:1;17709:2;;17724:18;;:::i;:::-;-1:-1:-1;17758:9:1;;17699:74::o;17778:127::-;17839:10;17834:3;17830:20;17827:1;17820:31;17870:4;17867:1;17860:15;17894:4;17891:1;17884:15;17910:127;17971:10;17966:3;17962:20;17959:1;17952:31;18002:4;17999:1;17992:15;18026:4;18023:1;18016:15;18042:127;18103:10;18098:3;18094:20;18091:1;18084:31;18134:4;18131:1;18124:15;18158:4;18155:1;18148:15;18174:133;-1:-1:-1;;;;;;18250:32:1;;18240:43;;18230:2;;18297:1;18294;18287:12

Swarm Source

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