ETH Price: $3,524.39 (+5.06%)

Token

Zzoopers (Zzoopers)
 

Overview

Max Total Supply

2,929 Zzoopers

Holders

642

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Balance
1 Zzoopers
0x5e12D0819f9B389d8079a2289924Cfac602ca29e
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

Zzoopers Genesis is an NFT collection launched by MetaOasis DAO. Each Zzooper is a unique animal avatar living on Ethereum. In the world of Zzoopers, we practice acceptance instead of prejudice, and we celebrate one another for what makes us unique!

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
Zzoopers

Compiler Version
v0.8.4+commit.c7e474f2

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 12 : Zzoopers.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./libraries/Ownable.sol";
import "./libraries/Strings.sol";
import "./libraries/ERC721.sol";
import "./libraries/IERC2981.sol";

interface IZzoopersRandomizer {
    function getMetadataId(uint256 batchNo, uint256 zzoopersEVOTokenId)
        external
        returns (uint256);
}

/**
 * @title Zzoopers contract
 */
contract Zzoopers is ERC721, IERC2981, Ownable {
    using Strings for *;

    address private _zzoopersEVOAddress;
    IZzoopersRandomizer private _randomizer;

    mapping(uint256 => string) private _baseURIs; //batchNo => baseURI
    string private _contractURI;

    uint256 constant LIMIT_AMOUNT = 2929;

    bool public _contractLocked = false;

    address private _mintFeeReceiver;
    address private _royaltyReceiver;
    uint256 private _royaltyRate = 75; //7.5%

    event ZzoopersRevealed(
        address indexed owner,
        uint256 tokenId,
        uint256 zzoopersEVOTokenId
    );

    constructor(
        address zzoopersEVOAddress,
        address randomizerAddress,
        string memory contractUri
    ) ERC721("Zzoopers", "Zzoopers") Ownable() {
        _zzoopersEVOAddress = zzoopersEVOAddress;
        _randomizer = IZzoopersRandomizer(randomizerAddress);
        _contractURI = contractUri;
    }

    function setZzoopersEVOAddress(address newZzoopersEVOAddress)
        public
        onlyOwner
    {
        require(!_contractLocked, "Zzoopers: Contract has been locked");
        _zzoopersEVOAddress = newZzoopersEVOAddress;
    }

    function setRandomizer(address randomizer) public onlyOwner {
        _randomizer = IZzoopersRandomizer(randomizer);
    }

    function mint(
        uint256 batchNo,
        uint256 zzoopersEVOTokenId,
        address to
    ) external returns (uint256 tokenId) {
        require(
            msg.sender == _zzoopersEVOAddress,
            "Zzoopers: Caller not authorized"
        );
        require(
            zzoopersEVOTokenId <= LIMIT_AMOUNT,
            "ZzoopersRandomizer: TokenId cannot larger than max size"
        );

        tokenId = _randomizer.getMetadataId(batchNo, zzoopersEVOTokenId);
        require(
            tokenId < LIMIT_AMOUNT,
            "ZzoopersRandomizer: tokenId cannot larger than max size"
        );
        _safeMint(to, tokenId);

        emit ZzoopersRevealed(msg.sender, tokenId, zzoopersEVOTokenId);
        return tokenId;
    }

    function totalSupply() public pure returns (uint256) {
        return LIMIT_AMOUNT;
    }

    function setBaseURI(uint256 batchNo, string calldata baseURI)
        public
        onlyOwner
    {
        require(
            batchNo >= 1 && batchNo <= 4,
            "Zzoopers: BatchNo must between: 1 and 4"
        );
        require(!_contractLocked, "Zzoopers: Contract has been locked");
        _baseURIs[batchNo] = baseURI;
    }

    function tokenURI(uint256 tokenId)
        public
        view
        override
        returns (string memory)
    {
        require(_exists(tokenId), "Zzoopers: TokenId not exists");

        uint256 batchNo;
        if (tokenId <= 585) {
            batchNo = 1;
        } else if (tokenId <= 1171) {
            batchNo = 2;
        } else if (tokenId <= 2050) {
            batchNo = 3;
        } else if (tokenId <= 2928) {
            batchNo = 4;
        } else {
            return "";
        }

        return
            string(
                abi.encodePacked(_baseURIs[batchNo], Strings.toString(tokenId))
            );
    }

    function setContractURI(string calldata contractUri) public onlyOwner {
        require(!_contractLocked, "Zzoopers: Contract has been locked");
        _contractURI = contractUri;
    }

    function contractURI() public view returns (string memory) {
        return _contractURI;
    }

    function lockContract() public onlyOwner {
        _contractLocked = true;
    }

    function setMintFeeReceiver(address newMintFeeReceiver) public onlyOwner {
        _mintFeeReceiver = newMintFeeReceiver;
    }

    function setRoyaltyReceiver(address newRoyaltyReceiver) public onlyOwner {
        _royaltyReceiver = newRoyaltyReceiver;
    }

    function getMintFeeReceiver() public view returns (address) {
        if (_mintFeeReceiver == address(0)) {
            return this.owner();
        }
        return _mintFeeReceiver;
    }

    function getRoyaltyReceiver() public view returns (address) {
        if (_royaltyReceiver == address(0)) {
            return this.owner();
        }
        return _royaltyReceiver;
    }

    function setRoyaltyRate(uint256 newRoyaltyRate) public onlyOwner {
        require(
            newRoyaltyRate >= 0 && newRoyaltyRate <= 1000,
            "Zzoopers: newRoyaltyRate should between [0, 1000]"
        );
        _royaltyRate = newRoyaltyRate;
    }

    function getRoyaltyRate() public view returns (uint256) {
        return _royaltyRate;
    }

    function royaltyInfo(uint256 tokenId, uint256 salePrice)
        external
        view
        override
        returns (address receiver, uint256 royaltyAmount)
    {
        receiver = getRoyaltyReceiver();
        royaltyAmount = (salePrice * _royaltyRate) / 1000;
        return (receiver, royaltyAmount);
    }

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

File 2 of 12 : Ownable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./Context.sol";

/**
 * @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 3 of 12 : Strings.sol
// SPDX-License-Identifier: MIT

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

    struct slice {
        uint256 _len;
        uint256 _ptr;
    }

    function memcpy(
        uint256 dest,
        uint256 src,
        uint256 len
    ) private pure {
        // Copy word-length chunks while possible
        for (; len >= 32; len -= 32) {
            assembly {
                mstore(dest, mload(src))
            }
            dest += 32;
            src += 32;
        }

        // Copy remaining bytes
        uint256 mask = 256**(32 - len) - 1;
        assembly {
            let srcpart := and(mload(src), not(mask))
            let destpart := and(mload(dest), mask)
            mstore(dest, or(destpart, srcpart))
        }
    }

    /*
     * @dev Returns a slice containing the entire string.
     * @param self The string to make a slice from.
     * @return A newly allocated slice containing the entire string.
     */
    function toSlice(string memory self) internal pure returns (slice memory) {
        uint256 ptr;
        assembly {
            ptr := add(self, 0x20)
        }
        return slice(bytes(self).length, ptr);
    }

    /*
     * @dev Copies a slice to a new string.
     * @param self The slice to copy.
     * @return A newly allocated string containing the slice's text.
     */
    function toString(slice memory self) internal pure returns (string memory) {
        string memory ret = new string(self._len);
        uint256 retptr;
        assembly {
            retptr := add(ret, 32)
        }

        memcpy(retptr, self._ptr, self._len);
        return ret;
    }

    // Returns the memory address of the first byte of the first occurrence of
    // `needle` in `self`, or the first byte after `self` if not found.
    function findPtr(
        uint256 selflen,
        uint256 selfptr,
        uint256 needlelen,
        uint256 needleptr
    ) private pure returns (uint256) {
        uint256 ptr = selfptr;
        uint256 idx;

        if (needlelen <= selflen) {
            if (needlelen <= 32) {
                bytes32 mask = bytes32(~(2**(8 * (32 - needlelen)) - 1));

                bytes32 needledata;
                assembly {
                    needledata := and(mload(needleptr), mask)
                }

                uint256 end = selfptr + selflen - needlelen;
                bytes32 ptrdata;
                assembly {
                    ptrdata := and(mload(ptr), mask)
                }

                while (ptrdata != needledata) {
                    if (ptr >= end) return selfptr + selflen;
                    ptr++;
                    assembly {
                        ptrdata := and(mload(ptr), mask)
                    }
                }
                return ptr;
            } else {
                // For long needles, use hashing
                bytes32 hash;
                assembly {
                    hash := keccak256(needleptr, needlelen)
                }

                for (idx = 0; idx <= selflen - needlelen; idx++) {
                    bytes32 testHash;
                    assembly {
                        testHash := keccak256(ptr, needlelen)
                    }
                    if (hash == testHash) return ptr;
                    ptr += 1;
                }
            }
        }
        return selfptr + selflen;
    }

    /*
     * @dev Splits the slice, setting `self` to everything after the first
     *      occurrence of `needle`, and `token` to everything before it. If
     *      `needle` does not occur in `self`, `self` is set to the empty slice,
     *      and `token` is set to the entirety of `self`.
     * @param self The slice to split.
     * @param needle The text to search for in `self`.
     * @param token An output parameter to which the first token is written.
     * @return `token`.
     */
    function split(
        slice memory self,
        slice memory needle,
        slice memory token
    ) internal pure returns (slice memory) {
        uint256 ptr = findPtr(self._len, self._ptr, needle._len, needle._ptr);
        token._ptr = self._ptr;
        token._len = ptr - self._ptr;
        if (ptr == self._ptr + self._len) {
            // Not found
            self._len = 0;
        } else {
            self._len -= token._len + needle._len;
            self._ptr = ptr + needle._len;
        }
        return token;
    }

    /*
     * @dev Splits the slice, setting `self` to everything after the first
     *      occurrence of `needle`, and returning everything before it. If
     *      `needle` does not occur in `self`, `self` is set to the empty slice,
     *      and the entirety of `self` is returned.
     * @param self The slice to split.
     * @param needle The text to search for in `self`.
     * @return The part of `self` up to the first occurrence of `delim`.
     */
    function split(slice memory self, slice memory needle)
        internal
        pure
        returns (slice memory token)
    {
        split(self, needle, token);
    }
}

File 4 of 12 : ERC721.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./IERC721.sol";
import "./IERC721Receiver.sol";
import "./IERC721Metadata.sol";
import "./Address.sol";
import "./Context.sol";
import "./Strings.sol";
import "./ERC165.sol";

/**
 * @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.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 {}
}

File 5 of 12 : IERC2981.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./IERC165.sol";

/**
 * @dev Interface for the NFT Royalty Standard
 */
interface IERC2981 is IERC165 {
    /**
     * @dev Called with the sale price to determine how much royalty is owed and to whom.
     * @param tokenId - the NFT asset queried for royalty information
     * @param salePrice - the sale price of the NFT asset specified by `tokenId`
     * @return receiver - address of who should be sent the royalty payment
     * @return royaltyAmount - the royalty payment amount for `salePrice`
     */
    function royaltyInfo(uint256 tokenId, uint256 salePrice)
        external
        view
        returns (address receiver, uint256 royaltyAmount);
}

File 6 of 12 : Context.sol
// SPDX-License-Identifier: MIT

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 7 of 12 : IERC721.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./IERC165.sol";

/**
 * @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 8 of 12 : IERC721Receiver.sol
// SPDX-License-Identifier: MIT

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 9 of 12 : IERC721Metadata.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./IERC721.sol";

/**
 * @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 10 of 12 : Address.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

File 11 of 12 : ERC165.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./IERC165.sol";

/**
 * @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 12 of 12 : IERC165.sol
// SPDX-License-Identifier: MIT

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

Settings
{
  "optimizer": {
    "enabled": false,
    "runs": 200
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "devdoc",
        "userdoc",
        "metadata",
        "abi"
      ]
    }
  },
  "libraries": {}
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"zzoopersEVOAddress","type":"address"},{"internalType":"address","name":"randomizerAddress","type":"address"},{"internalType":"string","name":"contractUri","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":false,"internalType":"uint256","name":"tokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"zzoopersEVOTokenId","type":"uint256"}],"name":"ZzoopersRevealed","type":"event"},{"inputs":[],"name":"_contractLocked","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":[],"name":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getMintFeeReceiver","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getRoyaltyRate","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getRoyaltyReceiver","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lockContract","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"batchNo","type":"uint256"},{"internalType":"uint256","name":"zzoopersEVOTokenId","type":"uint256"},{"internalType":"address","name":"to","type":"address"}],"name":"mint","outputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"uint256","name":"salePrice","type":"uint256"}],"name":"royaltyInfo","outputs":[{"internalType":"address","name":"receiver","type":"address"},{"internalType":"uint256","name":"royaltyAmount","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"batchNo","type":"uint256"},{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"contractUri","type":"string"}],"name":"setContractURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newMintFeeReceiver","type":"address"}],"name":"setMintFeeReceiver","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"randomizer","type":"address"}],"name":"setRandomizer","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newRoyaltyRate","type":"uint256"}],"name":"setRoyaltyRate","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newRoyaltyReceiver","type":"address"}],"name":"setRoyaltyReceiver","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newZzoopersEVOAddress","type":"address"}],"name":"setZzoopersEVOAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"pure","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"}]

60806040526000600b60006101000a81548160ff021916908315150217905550604b600d553480156200003157600080fd5b5060405162004725380380620047258339818101604052810190620000579190620003c2565b6040518060400160405280600881526020017f5a7a6f6f706572730000000000000000000000000000000000000000000000008152506040518060400160405280600881526020017f5a7a6f6f706572730000000000000000000000000000000000000000000000008152508160009080519060200190620000db92919062000289565b508060019080519060200190620000f492919062000289565b505050620001176200010b620001bb60201b60201c565b620001c360201b60201c565b82600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080600a9080519060200190620001b192919062000289565b50505050620005ef565b600033905090565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200029790620004fa565b90600052602060002090601f016020900481019282620002bb576000855562000307565b82601f10620002d657805160ff191683800117855562000307565b8280016001018555821562000307579182015b8281111562000306578251825591602001919060010190620002e9565b5b5090506200031691906200031a565b5090565b5b80821115620003355760008160009055506001016200031b565b5090565b6000620003506200034a846200045a565b62000431565b9050828152602081018484840111156200036957600080fd5b62000376848285620004c4565b509392505050565b6000815190506200038f81620005d5565b92915050565b600082601f830112620003a757600080fd5b8151620003b984826020860162000339565b91505092915050565b600080600060608486031215620003d857600080fd5b6000620003e8868287016200037e565b9350506020620003fb868287016200037e565b925050604084015167ffffffffffffffff8111156200041957600080fd5b620004278682870162000395565b9150509250925092565b60006200043d62000450565b90506200044b828262000530565b919050565b6000604051905090565b600067ffffffffffffffff82111562000478576200047762000595565b5b6200048382620005c4565b9050602081019050919050565b60006200049d82620004a4565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60005b83811015620004e4578082015181840152602081019050620004c7565b83811115620004f4576000848401525b50505050565b600060028204905060018216806200051357607f821691505b602082108114156200052a576200052962000566565b5b50919050565b6200053b82620005c4565b810181811067ffffffffffffffff821117156200055d576200055c62000595565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b620005e08162000490565b8114620005ec57600080fd5b50565b61412680620005ff6000396000f3fe608060405234801561001057600080fd5b50600436106101f05760003560e01c8063759216a51161010f578063a5bd5235116100a2578063e7d3fe6b11610071578063e7d3fe6b1461056a578063e8a3d4851461059a578063e985e9c5146105b8578063f2fde38b146105e8576101f0565b8063a5bd5235146104e4578063b88d4fde14610502578063c87b56dd1461051e578063dd9d62741461054e576101f0565b80638dc251e3116100de5780638dc251e314610472578063938e3d7b1461048e57806395d89b41146104aa578063a22cb465146104c8576101f0565b8063759216a5146103fe578063767bcab51461041a57806386cca6f8146104365780638da5cb5b14610454576101f0565b8063425e9d18116101875780636352211e116101565780636352211e1461038a57806370a08231146103ba578063715018a6146103ea578063753868e3146103f4576101f0565b8063425e9d181461031657806342842e0e1461033457806343f366c314610350578063537782a21461036e576101f0565b806318160ddd116101c357806318160ddd1461028f57806323b872dd146102ad5780632a55205a146102c957806333cfcb9f146102fa576101f0565b806301ffc9a7146101f557806306fdde0314610225578063081812fc14610243578063095ea7b314610273575b600080fd5b61020f600480360381019061020a9190612c79565b610604565b60405161021c919061334a565b60405180910390f35b61022d61067e565b60405161023a9190613365565b60405180910390f35b61025d60048036038101906102589190612d10565b610710565b60405161026a91906132ba565b60405180910390f35b61028d60048036038101906102889190612c3d565b610795565b005b6102976108ad565b6040516102a49190613647565b60405180910390f35b6102c760048036038101906102c29190612b37565b6108b7565b005b6102e360048036038101906102de9190612dba565b610917565b6040516102f1929190613321565b60405180910390f35b610314600480360381019061030f9190612d62565b610948565b005b61031e610a8d565b60405161032b919061334a565b60405180910390f35b61034e60048036038101906103499190612b37565b610aa0565b005b610358610ac0565b60405161036591906132ba565b60405180910390f35b61038860048036038101906103839190612d10565b610bc6565b005b6103a4600480360381019061039f9190612d10565b610c9e565b6040516103b191906132ba565b60405180910390f35b6103d460048036038101906103cf9190612aa9565b610d50565b6040516103e19190613647565b60405180910390f35b6103f2610e08565b005b6103fc610e90565b005b61041860048036038101906104139190612aa9565b610f29565b005b610434600480360381019061042f9190612aa9565b611039565b005b61043e6110f9565b60405161044b9190613647565b60405180910390f35b61045c611103565b60405161046991906132ba565b60405180910390f35b61048c60048036038101906104879190612aa9565b61112d565b005b6104a860048036038101906104a39190612ccb565b6111ed565b005b6104b26112cf565b6040516104bf9190613365565b60405180910390f35b6104e260048036038101906104dd9190612c01565b611361565b005b6104ec6114e2565b6040516104f991906132ba565b60405180910390f35b61051c60048036038101906105179190612b86565b6115e8565b005b61053860048036038101906105339190612d10565b61164a565b6040516105459190613365565b60405180910390f35b61056860048036038101906105639190612aa9565b61173e565b005b610584600480360381019061057f9190612df6565b6117fe565b6040516105919190613647565b60405180910390f35b6105a2611a2b565b6040516105af9190613365565b60405180910390f35b6105d260048036038101906105cd9190612afb565b611abd565b6040516105df919061334a565b60405180910390f35b61060260048036038101906105fd9190612aa9565b611b51565b005b60007f2a55205a000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610677575061067682611c49565b5b9050919050565b60606000805461068d90613904565b80601f01602080910402602001604051908101604052809291908181526020018280546106b990613904565b80156107065780601f106106db57610100808354040283529160200191610706565b820191906000526020600020905b8154815290600101906020018083116106e957829003601f168201915b5050505050905090565b600061071b82611d2b565b61075a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161075190613527565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006107a082610c9e565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610811576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610808906135c7565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610830611d97565b73ffffffffffffffffffffffffffffffffffffffff16148061085f575061085e81610859611d97565b611abd565b5b61089e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610895906134a7565b60405180910390fd5b6108a88383611d9f565b505050565b6000610b71905090565b6108c86108c2611d97565b82611e58565b610907576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108fe906135e7565b60405180910390fd5b610912838383611f36565b505050565b6000806109226114e2565b91506103e8600d548461093591906137c0565b61093f919061378f565b90509250929050565b610950611d97565b73ffffffffffffffffffffffffffffffffffffffff1661096e611103565b73ffffffffffffffffffffffffffffffffffffffff16146109c4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109bb90613567565b60405180910390fd5b600183101580156109d6575060048311155b610a15576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a0c90613407565b60405180910390fd5b600b60009054906101000a900460ff1615610a65576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a5c90613467565b60405180910390fd5b8181600960008681526020019081526020016000209190610a879291906128c1565b50505050565b600b60009054906101000a900460ff1681565b610abb838383604051806020016040528060008152506115e8565b505050565b60008073ffffffffffffffffffffffffffffffffffffffff16600b60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415610b9d573073ffffffffffffffffffffffffffffffffffffffff16638da5cb5b6040518163ffffffff1660e01b815260040160206040518083038186803b158015610b5e57600080fd5b505afa158015610b72573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b969190612ad2565b9050610bc3565b600b60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690505b90565b610bce611d97565b73ffffffffffffffffffffffffffffffffffffffff16610bec611103565b73ffffffffffffffffffffffffffffffffffffffff1614610c42576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c3990613567565b60405180910390fd5b60008110158015610c5557506103e88111155b610c94576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c8b90613547565b60405180910390fd5b80600d8190555050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610d47576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d3e906134e7565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610dc1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610db8906134c7565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610e10611d97565b73ffffffffffffffffffffffffffffffffffffffff16610e2e611103565b73ffffffffffffffffffffffffffffffffffffffff1614610e84576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e7b90613567565b60405180910390fd5b610e8e6000612192565b565b610e98611d97565b73ffffffffffffffffffffffffffffffffffffffff16610eb6611103565b73ffffffffffffffffffffffffffffffffffffffff1614610f0c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f0390613567565b60405180910390fd5b6001600b60006101000a81548160ff021916908315150217905550565b610f31611d97565b73ffffffffffffffffffffffffffffffffffffffff16610f4f611103565b73ffffffffffffffffffffffffffffffffffffffff1614610fa5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f9c90613567565b60405180910390fd5b600b60009054906101000a900460ff1615610ff5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fec90613467565b60405180910390fd5b80600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b611041611d97565b73ffffffffffffffffffffffffffffffffffffffff1661105f611103565b73ffffffffffffffffffffffffffffffffffffffff16146110b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110ac90613567565b60405180910390fd5b80600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000600d54905090565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611135611d97565b73ffffffffffffffffffffffffffffffffffffffff16611153611103565b73ffffffffffffffffffffffffffffffffffffffff16146111a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111a090613567565b60405180910390fd5b80600c60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6111f5611d97565b73ffffffffffffffffffffffffffffffffffffffff16611213611103565b73ffffffffffffffffffffffffffffffffffffffff1614611269576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161126090613567565b60405180910390fd5b600b60009054906101000a900460ff16156112b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112b090613467565b60405180910390fd5b8181600a91906112ca9291906128c1565b505050565b6060600180546112de90613904565b80601f016020809104026020016040519081016040528092919081815260200182805461130a90613904565b80156113575780601f1061132c57610100808354040283529160200191611357565b820191906000526020600020905b81548152906001019060200180831161133a57829003601f168201915b5050505050905090565b611369611d97565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156113d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113ce90613447565b60405180910390fd5b80600560006113e4611d97565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611491611d97565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516114d6919061334a565b60405180910390a35050565b60008073ffffffffffffffffffffffffffffffffffffffff16600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156115bf573073ffffffffffffffffffffffffffffffffffffffff16638da5cb5b6040518163ffffffff1660e01b815260040160206040518083038186803b15801561158057600080fd5b505afa158015611594573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906115b89190612ad2565b90506115e5565b600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690505b90565b6115f96115f3611d97565b83611e58565b611638576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161162f906135e7565b60405180910390fd5b61164484848484612258565b50505050565b606061165582611d2b565b611694576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161168b90613627565b60405180910390fd5b600061024983116116a857600190506116f9565b61049383116116ba57600290506116f8565b61080283116116cc57600390506116f7565b610b7083116116de57600490506116f6565b60405180602001604052806000815250915050611739565b5b5b5b60096000828152602001908152602001600020611715846122b4565b604051602001611726929190613296565b6040516020818303038152906040529150505b919050565b611746611d97565b73ffffffffffffffffffffffffffffffffffffffff16611764611103565b73ffffffffffffffffffffffffffffffffffffffff16146117ba576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117b190613567565b60405180910390fd5b80600b60016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611890576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611887906135a7565b60405180910390fd5b610b718311156118d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118cc90613607565b60405180910390fd5b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16639ffd1f9185856040518363ffffffff1660e01b8152600401611932929190613662565b602060405180830381600087803b15801561194c57600080fd5b505af1158015611960573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906119849190612d39565b9050610b7181106119ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119c1906133e7565b60405180910390fd5b6119d48282612461565b3373ffffffffffffffffffffffffffffffffffffffff167f17715807e5627d2d39afb58414e3ef3916c503b534aacfdbd77f65b8894a0eac8285604051611a1c929190613662565b60405180910390a29392505050565b6060600a8054611a3a90613904565b80601f0160208091040260200160405190810160405280929190818152602001828054611a6690613904565b8015611ab35780601f10611a8857610100808354040283529160200191611ab3565b820191906000526020600020905b815481529060010190602001808311611a9657829003601f168201915b5050505050905090565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611b59611d97565b73ffffffffffffffffffffffffffffffffffffffff16611b77611103565b73ffffffffffffffffffffffffffffffffffffffff1614611bcd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bc490613567565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611c3d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c34906133a7565b60405180910390fd5b611c4681612192565b50565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611d1457507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80611d245750611d238261247f565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611e1283610c9e565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611e6382611d2b565b611ea2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e9990613487565b60405180910390fd5b6000611ead83610c9e565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611f1c57508373ffffffffffffffffffffffffffffffffffffffff16611f0484610710565b73ffffffffffffffffffffffffffffffffffffffff16145b80611f2d5750611f2c8185611abd565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611f5682610c9e565b73ffffffffffffffffffffffffffffffffffffffff1614611fac576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fa390613587565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561201c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161201390613427565b60405180910390fd5b6120278383836124e9565b612032600082611d9f565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612082919061381a565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546120d99190613739565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612263848484611f36565b61226f848484846124ee565b6122ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122a590613387565b60405180910390fd5b50505050565b606060008214156122fc576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061245c565b600082905060005b6000821461232e57808061231790613967565b915050600a82612327919061378f565b9150612304565b60008167ffffffffffffffff811115612370577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156123a25781602001600182028036833780820191505090505b5090505b60008514612455576001826123bb919061381a565b9150600a856123ca91906139b0565b60306123d69190613739565b60f81b818381518110612412577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561244e919061378f565b94506123a6565b8093505050505b919050565b61247b828260405180602001604052806000815250612685565b5050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b505050565b600061250f8473ffffffffffffffffffffffffffffffffffffffff166126e0565b15612678578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612538611d97565b8786866040518563ffffffff1660e01b815260040161255a94939291906132d5565b602060405180830381600087803b15801561257457600080fd5b505af19250505080156125a557506040513d601f19601f820116820180604052508101906125a29190612ca2565b60015b612628573d80600081146125d5576040519150601f19603f3d011682016040523d82523d6000602084013e6125da565b606091505b50600081511415612620576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161261790613387565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161491505061267d565b600190505b949350505050565b61268f83836126f3565b61269c60008484846124ee565b6126db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126d290613387565b60405180910390fd5b505050565b600080823b905060008111915050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612763576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161275a90613507565b60405180910390fd5b61276c81611d2b565b156127ac576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127a3906133c7565b60405180910390fd5b6127b8600083836124e9565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546128089190613739565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b8280546128cd90613904565b90600052602060002090601f0160209004810192826128ef5760008555612936565b82601f1061290857803560ff1916838001178555612936565b82800160010185558215612936579182015b8281111561293557823582559160200191906001019061291a565b5b5090506129439190612947565b5090565b5b80821115612960576000816000905550600101612948565b5090565b6000612977612972846136b0565b61368b565b90508281526020810184848401111561298f57600080fd5b61299a8482856138c2565b509392505050565b6000813590506129b181614094565b92915050565b6000815190506129c681614094565b92915050565b6000813590506129db816140ab565b92915050565b6000813590506129f0816140c2565b92915050565b600081519050612a05816140c2565b92915050565b600082601f830112612a1c57600080fd5b8135612a2c848260208601612964565b91505092915050565b60008083601f840112612a4757600080fd5b8235905067ffffffffffffffff811115612a6057600080fd5b602083019150836001820283011115612a7857600080fd5b9250929050565b600081359050612a8e816140d9565b92915050565b600081519050612aa3816140d9565b92915050565b600060208284031215612abb57600080fd5b6000612ac9848285016129a2565b91505092915050565b600060208284031215612ae457600080fd5b6000612af2848285016129b7565b91505092915050565b60008060408385031215612b0e57600080fd5b6000612b1c858286016129a2565b9250506020612b2d858286016129a2565b9150509250929050565b600080600060608486031215612b4c57600080fd5b6000612b5a868287016129a2565b9350506020612b6b868287016129a2565b9250506040612b7c86828701612a7f565b9150509250925092565b60008060008060808587031215612b9c57600080fd5b6000612baa878288016129a2565b9450506020612bbb878288016129a2565b9350506040612bcc87828801612a7f565b925050606085013567ffffffffffffffff811115612be957600080fd5b612bf587828801612a0b565b91505092959194509250565b60008060408385031215612c1457600080fd5b6000612c22858286016129a2565b9250506020612c33858286016129cc565b9150509250929050565b60008060408385031215612c5057600080fd5b6000612c5e858286016129a2565b9250506020612c6f85828601612a7f565b9150509250929050565b600060208284031215612c8b57600080fd5b6000612c99848285016129e1565b91505092915050565b600060208284031215612cb457600080fd5b6000612cc2848285016129f6565b91505092915050565b60008060208385031215612cde57600080fd5b600083013567ffffffffffffffff811115612cf857600080fd5b612d0485828601612a35565b92509250509250929050565b600060208284031215612d2257600080fd5b6000612d3084828501612a7f565b91505092915050565b600060208284031215612d4b57600080fd5b6000612d5984828501612a94565b91505092915050565b600080600060408486031215612d7757600080fd5b6000612d8586828701612a7f565b935050602084013567ffffffffffffffff811115612da257600080fd5b612dae86828701612a35565b92509250509250925092565b60008060408385031215612dcd57600080fd5b6000612ddb85828601612a7f565b9250506020612dec85828601612a7f565b9150509250929050565b600080600060608486031215612e0b57600080fd5b6000612e1986828701612a7f565b9350506020612e2a86828701612a7f565b9250506040612e3b868287016129a2565b9150509250925092565b612e4e8161384e565b82525050565b612e5d81613860565b82525050565b6000612e6e826136f6565b612e78818561370c565b9350612e888185602086016138d1565b612e9181613a9d565b840191505092915050565b6000612ea782613701565b612eb1818561371d565b9350612ec18185602086016138d1565b612eca81613a9d565b840191505092915050565b6000612ee082613701565b612eea818561372e565b9350612efa8185602086016138d1565b80840191505092915050565b60008154612f1381613904565b612f1d818661372e565b94506001821660008114612f385760018114612f4957612f7c565b60ff19831686528186019350612f7c565b612f52856136e1565b60005b83811015612f7457815481890152600182019150602081019050612f55565b838801955050505b50505092915050565b6000612f9260328361371d565b9150612f9d82613aae565b604082019050919050565b6000612fb560268361371d565b9150612fc082613afd565b604082019050919050565b6000612fd8601c8361371d565b9150612fe382613b4c565b602082019050919050565b6000612ffb60378361371d565b915061300682613b75565b604082019050919050565b600061301e60278361371d565b915061302982613bc4565b604082019050919050565b600061304160248361371d565b915061304c82613c13565b604082019050919050565b600061306460198361371d565b915061306f82613c62565b602082019050919050565b600061308760228361371d565b915061309282613c8b565b604082019050919050565b60006130aa602c8361371d565b91506130b582613cda565b604082019050919050565b60006130cd60388361371d565b91506130d882613d29565b604082019050919050565b60006130f0602a8361371d565b91506130fb82613d78565b604082019050919050565b600061311360298361371d565b915061311e82613dc7565b604082019050919050565b600061313660208361371d565b915061314182613e16565b602082019050919050565b6000613159602c8361371d565b915061316482613e3f565b604082019050919050565b600061317c60318361371d565b915061318782613e8e565b604082019050919050565b600061319f60208361371d565b91506131aa82613edd565b602082019050919050565b60006131c260298361371d565b91506131cd82613f06565b604082019050919050565b60006131e5601f8361371d565b91506131f082613f55565b602082019050919050565b600061320860218361371d565b915061321382613f7e565b604082019050919050565b600061322b60318361371d565b915061323682613fcd565b604082019050919050565b600061324e60378361371d565b91506132598261401c565b604082019050919050565b6000613271601c8361371d565b915061327c8261406b565b602082019050919050565b613290816138b8565b82525050565b60006132a28285612f06565b91506132ae8284612ed5565b91508190509392505050565b60006020820190506132cf6000830184612e45565b92915050565b60006080820190506132ea6000830187612e45565b6132f76020830186612e45565b6133046040830185613287565b81810360608301526133168184612e63565b905095945050505050565b60006040820190506133366000830185612e45565b6133436020830184613287565b9392505050565b600060208201905061335f6000830184612e54565b92915050565b6000602082019050818103600083015261337f8184612e9c565b905092915050565b600060208201905081810360008301526133a081612f85565b9050919050565b600060208201905081810360008301526133c081612fa8565b9050919050565b600060208201905081810360008301526133e081612fcb565b9050919050565b6000602082019050818103600083015261340081612fee565b9050919050565b6000602082019050818103600083015261342081613011565b9050919050565b6000602082019050818103600083015261344081613034565b9050919050565b6000602082019050818103600083015261346081613057565b9050919050565b600060208201905081810360008301526134808161307a565b9050919050565b600060208201905081810360008301526134a08161309d565b9050919050565b600060208201905081810360008301526134c0816130c0565b9050919050565b600060208201905081810360008301526134e0816130e3565b9050919050565b6000602082019050818103600083015261350081613106565b9050919050565b6000602082019050818103600083015261352081613129565b9050919050565b600060208201905081810360008301526135408161314c565b9050919050565b600060208201905081810360008301526135608161316f565b9050919050565b6000602082019050818103600083015261358081613192565b9050919050565b600060208201905081810360008301526135a0816131b5565b9050919050565b600060208201905081810360008301526135c0816131d8565b9050919050565b600060208201905081810360008301526135e0816131fb565b9050919050565b600060208201905081810360008301526136008161321e565b9050919050565b6000602082019050818103600083015261362081613241565b9050919050565b6000602082019050818103600083015261364081613264565b9050919050565b600060208201905061365c6000830184613287565b92915050565b60006040820190506136776000830185613287565b6136846020830184613287565b9392505050565b60006136956136a6565b90506136a18282613936565b919050565b6000604051905090565b600067ffffffffffffffff8211156136cb576136ca613a6e565b5b6136d482613a9d565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000613744826138b8565b915061374f836138b8565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613784576137836139e1565b5b828201905092915050565b600061379a826138b8565b91506137a5836138b8565b9250826137b5576137b4613a10565b5b828204905092915050565b60006137cb826138b8565b91506137d6836138b8565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561380f5761380e6139e1565b5b828202905092915050565b6000613825826138b8565b9150613830836138b8565b925082821015613843576138426139e1565b5b828203905092915050565b600061385982613898565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156138ef5780820151818401526020810190506138d4565b838111156138fe576000848401525b50505050565b6000600282049050600182168061391c57607f821691505b602082108114156139305761392f613a3f565b5b50919050565b61393f82613a9d565b810181811067ffffffffffffffff8211171561395e5761395d613a6e565b5b80604052505050565b6000613972826138b8565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156139a5576139a46139e1565b5b600182019050919050565b60006139bb826138b8565b91506139c6836138b8565b9250826139d6576139d5613a10565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f5a7a6f6f7065727352616e646f6d697a65723a20746f6b656e49642063616e6e60008201527f6f74206c6172676572207468616e206d61782073697a65000000000000000000602082015250565b7f5a7a6f6f706572733a2042617463684e6f206d757374206265747765656e3a2060008201527f3120616e64203400000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f5a7a6f6f706572733a20436f6e747261637420686173206265656e206c6f636b60008201527f6564000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f5a7a6f6f706572733a206e6577526f79616c7479526174652073686f756c642060008201527f6265747765656e205b302c20313030305d000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f5a7a6f6f706572733a2043616c6c6572206e6f7420617574686f72697a656400600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f5a7a6f6f7065727352616e646f6d697a65723a20546f6b656e49642063616e6e60008201527f6f74206c6172676572207468616e206d61782073697a65000000000000000000602082015250565b7f5a7a6f6f706572733a20546f6b656e4964206e6f742065786973747300000000600082015250565b61409d8161384e565b81146140a857600080fd5b50565b6140b481613860565b81146140bf57600080fd5b50565b6140cb8161386c565b81146140d657600080fd5b50565b6140e2816138b8565b81146140ed57600080fd5b5056fea2646970667358221220950f4b34450ab8726f5fbaff549ee8d641ae9ac398ad9cc81efc607a1a8d0d8464736f6c634300080400330000000000000000000000005499ee597543f528675dd23dcff05440dc3b1c6e0000000000000000000000004bbbc87670ebcbf5486d206bdf8b469487e27d5600000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000035697066733a2f2f516d5265553941634170754654417a723266565641444e6a5965717633536d7542484733486f524739434739336d0000000000000000000000

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101f05760003560e01c8063759216a51161010f578063a5bd5235116100a2578063e7d3fe6b11610071578063e7d3fe6b1461056a578063e8a3d4851461059a578063e985e9c5146105b8578063f2fde38b146105e8576101f0565b8063a5bd5235146104e4578063b88d4fde14610502578063c87b56dd1461051e578063dd9d62741461054e576101f0565b80638dc251e3116100de5780638dc251e314610472578063938e3d7b1461048e57806395d89b41146104aa578063a22cb465146104c8576101f0565b8063759216a5146103fe578063767bcab51461041a57806386cca6f8146104365780638da5cb5b14610454576101f0565b8063425e9d18116101875780636352211e116101565780636352211e1461038a57806370a08231146103ba578063715018a6146103ea578063753868e3146103f4576101f0565b8063425e9d181461031657806342842e0e1461033457806343f366c314610350578063537782a21461036e576101f0565b806318160ddd116101c357806318160ddd1461028f57806323b872dd146102ad5780632a55205a146102c957806333cfcb9f146102fa576101f0565b806301ffc9a7146101f557806306fdde0314610225578063081812fc14610243578063095ea7b314610273575b600080fd5b61020f600480360381019061020a9190612c79565b610604565b60405161021c919061334a565b60405180910390f35b61022d61067e565b60405161023a9190613365565b60405180910390f35b61025d60048036038101906102589190612d10565b610710565b60405161026a91906132ba565b60405180910390f35b61028d60048036038101906102889190612c3d565b610795565b005b6102976108ad565b6040516102a49190613647565b60405180910390f35b6102c760048036038101906102c29190612b37565b6108b7565b005b6102e360048036038101906102de9190612dba565b610917565b6040516102f1929190613321565b60405180910390f35b610314600480360381019061030f9190612d62565b610948565b005b61031e610a8d565b60405161032b919061334a565b60405180910390f35b61034e60048036038101906103499190612b37565b610aa0565b005b610358610ac0565b60405161036591906132ba565b60405180910390f35b61038860048036038101906103839190612d10565b610bc6565b005b6103a4600480360381019061039f9190612d10565b610c9e565b6040516103b191906132ba565b60405180910390f35b6103d460048036038101906103cf9190612aa9565b610d50565b6040516103e19190613647565b60405180910390f35b6103f2610e08565b005b6103fc610e90565b005b61041860048036038101906104139190612aa9565b610f29565b005b610434600480360381019061042f9190612aa9565b611039565b005b61043e6110f9565b60405161044b9190613647565b60405180910390f35b61045c611103565b60405161046991906132ba565b60405180910390f35b61048c60048036038101906104879190612aa9565b61112d565b005b6104a860048036038101906104a39190612ccb565b6111ed565b005b6104b26112cf565b6040516104bf9190613365565b60405180910390f35b6104e260048036038101906104dd9190612c01565b611361565b005b6104ec6114e2565b6040516104f991906132ba565b60405180910390f35b61051c60048036038101906105179190612b86565b6115e8565b005b61053860048036038101906105339190612d10565b61164a565b6040516105459190613365565b60405180910390f35b61056860048036038101906105639190612aa9565b61173e565b005b610584600480360381019061057f9190612df6565b6117fe565b6040516105919190613647565b60405180910390f35b6105a2611a2b565b6040516105af9190613365565b60405180910390f35b6105d260048036038101906105cd9190612afb565b611abd565b6040516105df919061334a565b60405180910390f35b61060260048036038101906105fd9190612aa9565b611b51565b005b60007f2a55205a000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610677575061067682611c49565b5b9050919050565b60606000805461068d90613904565b80601f01602080910402602001604051908101604052809291908181526020018280546106b990613904565b80156107065780601f106106db57610100808354040283529160200191610706565b820191906000526020600020905b8154815290600101906020018083116106e957829003601f168201915b5050505050905090565b600061071b82611d2b565b61075a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161075190613527565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006107a082610c9e565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610811576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610808906135c7565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610830611d97565b73ffffffffffffffffffffffffffffffffffffffff16148061085f575061085e81610859611d97565b611abd565b5b61089e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610895906134a7565b60405180910390fd5b6108a88383611d9f565b505050565b6000610b71905090565b6108c86108c2611d97565b82611e58565b610907576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108fe906135e7565b60405180910390fd5b610912838383611f36565b505050565b6000806109226114e2565b91506103e8600d548461093591906137c0565b61093f919061378f565b90509250929050565b610950611d97565b73ffffffffffffffffffffffffffffffffffffffff1661096e611103565b73ffffffffffffffffffffffffffffffffffffffff16146109c4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109bb90613567565b60405180910390fd5b600183101580156109d6575060048311155b610a15576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a0c90613407565b60405180910390fd5b600b60009054906101000a900460ff1615610a65576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a5c90613467565b60405180910390fd5b8181600960008681526020019081526020016000209190610a879291906128c1565b50505050565b600b60009054906101000a900460ff1681565b610abb838383604051806020016040528060008152506115e8565b505050565b60008073ffffffffffffffffffffffffffffffffffffffff16600b60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415610b9d573073ffffffffffffffffffffffffffffffffffffffff16638da5cb5b6040518163ffffffff1660e01b815260040160206040518083038186803b158015610b5e57600080fd5b505afa158015610b72573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b969190612ad2565b9050610bc3565b600b60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690505b90565b610bce611d97565b73ffffffffffffffffffffffffffffffffffffffff16610bec611103565b73ffffffffffffffffffffffffffffffffffffffff1614610c42576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c3990613567565b60405180910390fd5b60008110158015610c5557506103e88111155b610c94576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c8b90613547565b60405180910390fd5b80600d8190555050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610d47576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d3e906134e7565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610dc1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610db8906134c7565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610e10611d97565b73ffffffffffffffffffffffffffffffffffffffff16610e2e611103565b73ffffffffffffffffffffffffffffffffffffffff1614610e84576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e7b90613567565b60405180910390fd5b610e8e6000612192565b565b610e98611d97565b73ffffffffffffffffffffffffffffffffffffffff16610eb6611103565b73ffffffffffffffffffffffffffffffffffffffff1614610f0c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f0390613567565b60405180910390fd5b6001600b60006101000a81548160ff021916908315150217905550565b610f31611d97565b73ffffffffffffffffffffffffffffffffffffffff16610f4f611103565b73ffffffffffffffffffffffffffffffffffffffff1614610fa5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f9c90613567565b60405180910390fd5b600b60009054906101000a900460ff1615610ff5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fec90613467565b60405180910390fd5b80600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b611041611d97565b73ffffffffffffffffffffffffffffffffffffffff1661105f611103565b73ffffffffffffffffffffffffffffffffffffffff16146110b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110ac90613567565b60405180910390fd5b80600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000600d54905090565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611135611d97565b73ffffffffffffffffffffffffffffffffffffffff16611153611103565b73ffffffffffffffffffffffffffffffffffffffff16146111a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111a090613567565b60405180910390fd5b80600c60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6111f5611d97565b73ffffffffffffffffffffffffffffffffffffffff16611213611103565b73ffffffffffffffffffffffffffffffffffffffff1614611269576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161126090613567565b60405180910390fd5b600b60009054906101000a900460ff16156112b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112b090613467565b60405180910390fd5b8181600a91906112ca9291906128c1565b505050565b6060600180546112de90613904565b80601f016020809104026020016040519081016040528092919081815260200182805461130a90613904565b80156113575780601f1061132c57610100808354040283529160200191611357565b820191906000526020600020905b81548152906001019060200180831161133a57829003601f168201915b5050505050905090565b611369611d97565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156113d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113ce90613447565b60405180910390fd5b80600560006113e4611d97565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611491611d97565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516114d6919061334a565b60405180910390a35050565b60008073ffffffffffffffffffffffffffffffffffffffff16600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156115bf573073ffffffffffffffffffffffffffffffffffffffff16638da5cb5b6040518163ffffffff1660e01b815260040160206040518083038186803b15801561158057600080fd5b505afa158015611594573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906115b89190612ad2565b90506115e5565b600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690505b90565b6115f96115f3611d97565b83611e58565b611638576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161162f906135e7565b60405180910390fd5b61164484848484612258565b50505050565b606061165582611d2b565b611694576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161168b90613627565b60405180910390fd5b600061024983116116a857600190506116f9565b61049383116116ba57600290506116f8565b61080283116116cc57600390506116f7565b610b7083116116de57600490506116f6565b60405180602001604052806000815250915050611739565b5b5b5b60096000828152602001908152602001600020611715846122b4565b604051602001611726929190613296565b6040516020818303038152906040529150505b919050565b611746611d97565b73ffffffffffffffffffffffffffffffffffffffff16611764611103565b73ffffffffffffffffffffffffffffffffffffffff16146117ba576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117b190613567565b60405180910390fd5b80600b60016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611890576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611887906135a7565b60405180910390fd5b610b718311156118d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118cc90613607565b60405180910390fd5b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16639ffd1f9185856040518363ffffffff1660e01b8152600401611932929190613662565b602060405180830381600087803b15801561194c57600080fd5b505af1158015611960573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906119849190612d39565b9050610b7181106119ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119c1906133e7565b60405180910390fd5b6119d48282612461565b3373ffffffffffffffffffffffffffffffffffffffff167f17715807e5627d2d39afb58414e3ef3916c503b534aacfdbd77f65b8894a0eac8285604051611a1c929190613662565b60405180910390a29392505050565b6060600a8054611a3a90613904565b80601f0160208091040260200160405190810160405280929190818152602001828054611a6690613904565b8015611ab35780601f10611a8857610100808354040283529160200191611ab3565b820191906000526020600020905b815481529060010190602001808311611a9657829003601f168201915b5050505050905090565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611b59611d97565b73ffffffffffffffffffffffffffffffffffffffff16611b77611103565b73ffffffffffffffffffffffffffffffffffffffff1614611bcd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bc490613567565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611c3d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c34906133a7565b60405180910390fd5b611c4681612192565b50565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611d1457507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80611d245750611d238261247f565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611e1283610c9e565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611e6382611d2b565b611ea2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e9990613487565b60405180910390fd5b6000611ead83610c9e565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611f1c57508373ffffffffffffffffffffffffffffffffffffffff16611f0484610710565b73ffffffffffffffffffffffffffffffffffffffff16145b80611f2d5750611f2c8185611abd565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611f5682610c9e565b73ffffffffffffffffffffffffffffffffffffffff1614611fac576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fa390613587565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561201c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161201390613427565b60405180910390fd5b6120278383836124e9565b612032600082611d9f565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612082919061381a565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546120d99190613739565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612263848484611f36565b61226f848484846124ee565b6122ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122a590613387565b60405180910390fd5b50505050565b606060008214156122fc576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061245c565b600082905060005b6000821461232e57808061231790613967565b915050600a82612327919061378f565b9150612304565b60008167ffffffffffffffff811115612370577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156123a25781602001600182028036833780820191505090505b5090505b60008514612455576001826123bb919061381a565b9150600a856123ca91906139b0565b60306123d69190613739565b60f81b818381518110612412577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561244e919061378f565b94506123a6565b8093505050505b919050565b61247b828260405180602001604052806000815250612685565b5050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b505050565b600061250f8473ffffffffffffffffffffffffffffffffffffffff166126e0565b15612678578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612538611d97565b8786866040518563ffffffff1660e01b815260040161255a94939291906132d5565b602060405180830381600087803b15801561257457600080fd5b505af19250505080156125a557506040513d601f19601f820116820180604052508101906125a29190612ca2565b60015b612628573d80600081146125d5576040519150601f19603f3d011682016040523d82523d6000602084013e6125da565b606091505b50600081511415612620576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161261790613387565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161491505061267d565b600190505b949350505050565b61268f83836126f3565b61269c60008484846124ee565b6126db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126d290613387565b60405180910390fd5b505050565b600080823b905060008111915050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612763576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161275a90613507565b60405180910390fd5b61276c81611d2b565b156127ac576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127a3906133c7565b60405180910390fd5b6127b8600083836124e9565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546128089190613739565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b8280546128cd90613904565b90600052602060002090601f0160209004810192826128ef5760008555612936565b82601f1061290857803560ff1916838001178555612936565b82800160010185558215612936579182015b8281111561293557823582559160200191906001019061291a565b5b5090506129439190612947565b5090565b5b80821115612960576000816000905550600101612948565b5090565b6000612977612972846136b0565b61368b565b90508281526020810184848401111561298f57600080fd5b61299a8482856138c2565b509392505050565b6000813590506129b181614094565b92915050565b6000815190506129c681614094565b92915050565b6000813590506129db816140ab565b92915050565b6000813590506129f0816140c2565b92915050565b600081519050612a05816140c2565b92915050565b600082601f830112612a1c57600080fd5b8135612a2c848260208601612964565b91505092915050565b60008083601f840112612a4757600080fd5b8235905067ffffffffffffffff811115612a6057600080fd5b602083019150836001820283011115612a7857600080fd5b9250929050565b600081359050612a8e816140d9565b92915050565b600081519050612aa3816140d9565b92915050565b600060208284031215612abb57600080fd5b6000612ac9848285016129a2565b91505092915050565b600060208284031215612ae457600080fd5b6000612af2848285016129b7565b91505092915050565b60008060408385031215612b0e57600080fd5b6000612b1c858286016129a2565b9250506020612b2d858286016129a2565b9150509250929050565b600080600060608486031215612b4c57600080fd5b6000612b5a868287016129a2565b9350506020612b6b868287016129a2565b9250506040612b7c86828701612a7f565b9150509250925092565b60008060008060808587031215612b9c57600080fd5b6000612baa878288016129a2565b9450506020612bbb878288016129a2565b9350506040612bcc87828801612a7f565b925050606085013567ffffffffffffffff811115612be957600080fd5b612bf587828801612a0b565b91505092959194509250565b60008060408385031215612c1457600080fd5b6000612c22858286016129a2565b9250506020612c33858286016129cc565b9150509250929050565b60008060408385031215612c5057600080fd5b6000612c5e858286016129a2565b9250506020612c6f85828601612a7f565b9150509250929050565b600060208284031215612c8b57600080fd5b6000612c99848285016129e1565b91505092915050565b600060208284031215612cb457600080fd5b6000612cc2848285016129f6565b91505092915050565b60008060208385031215612cde57600080fd5b600083013567ffffffffffffffff811115612cf857600080fd5b612d0485828601612a35565b92509250509250929050565b600060208284031215612d2257600080fd5b6000612d3084828501612a7f565b91505092915050565b600060208284031215612d4b57600080fd5b6000612d5984828501612a94565b91505092915050565b600080600060408486031215612d7757600080fd5b6000612d8586828701612a7f565b935050602084013567ffffffffffffffff811115612da257600080fd5b612dae86828701612a35565b92509250509250925092565b60008060408385031215612dcd57600080fd5b6000612ddb85828601612a7f565b9250506020612dec85828601612a7f565b9150509250929050565b600080600060608486031215612e0b57600080fd5b6000612e1986828701612a7f565b9350506020612e2a86828701612a7f565b9250506040612e3b868287016129a2565b9150509250925092565b612e4e8161384e565b82525050565b612e5d81613860565b82525050565b6000612e6e826136f6565b612e78818561370c565b9350612e888185602086016138d1565b612e9181613a9d565b840191505092915050565b6000612ea782613701565b612eb1818561371d565b9350612ec18185602086016138d1565b612eca81613a9d565b840191505092915050565b6000612ee082613701565b612eea818561372e565b9350612efa8185602086016138d1565b80840191505092915050565b60008154612f1381613904565b612f1d818661372e565b94506001821660008114612f385760018114612f4957612f7c565b60ff19831686528186019350612f7c565b612f52856136e1565b60005b83811015612f7457815481890152600182019150602081019050612f55565b838801955050505b50505092915050565b6000612f9260328361371d565b9150612f9d82613aae565b604082019050919050565b6000612fb560268361371d565b9150612fc082613afd565b604082019050919050565b6000612fd8601c8361371d565b9150612fe382613b4c565b602082019050919050565b6000612ffb60378361371d565b915061300682613b75565b604082019050919050565b600061301e60278361371d565b915061302982613bc4565b604082019050919050565b600061304160248361371d565b915061304c82613c13565b604082019050919050565b600061306460198361371d565b915061306f82613c62565b602082019050919050565b600061308760228361371d565b915061309282613c8b565b604082019050919050565b60006130aa602c8361371d565b91506130b582613cda565b604082019050919050565b60006130cd60388361371d565b91506130d882613d29565b604082019050919050565b60006130f0602a8361371d565b91506130fb82613d78565b604082019050919050565b600061311360298361371d565b915061311e82613dc7565b604082019050919050565b600061313660208361371d565b915061314182613e16565b602082019050919050565b6000613159602c8361371d565b915061316482613e3f565b604082019050919050565b600061317c60318361371d565b915061318782613e8e565b604082019050919050565b600061319f60208361371d565b91506131aa82613edd565b602082019050919050565b60006131c260298361371d565b91506131cd82613f06565b604082019050919050565b60006131e5601f8361371d565b91506131f082613f55565b602082019050919050565b600061320860218361371d565b915061321382613f7e565b604082019050919050565b600061322b60318361371d565b915061323682613fcd565b604082019050919050565b600061324e60378361371d565b91506132598261401c565b604082019050919050565b6000613271601c8361371d565b915061327c8261406b565b602082019050919050565b613290816138b8565b82525050565b60006132a28285612f06565b91506132ae8284612ed5565b91508190509392505050565b60006020820190506132cf6000830184612e45565b92915050565b60006080820190506132ea6000830187612e45565b6132f76020830186612e45565b6133046040830185613287565b81810360608301526133168184612e63565b905095945050505050565b60006040820190506133366000830185612e45565b6133436020830184613287565b9392505050565b600060208201905061335f6000830184612e54565b92915050565b6000602082019050818103600083015261337f8184612e9c565b905092915050565b600060208201905081810360008301526133a081612f85565b9050919050565b600060208201905081810360008301526133c081612fa8565b9050919050565b600060208201905081810360008301526133e081612fcb565b9050919050565b6000602082019050818103600083015261340081612fee565b9050919050565b6000602082019050818103600083015261342081613011565b9050919050565b6000602082019050818103600083015261344081613034565b9050919050565b6000602082019050818103600083015261346081613057565b9050919050565b600060208201905081810360008301526134808161307a565b9050919050565b600060208201905081810360008301526134a08161309d565b9050919050565b600060208201905081810360008301526134c0816130c0565b9050919050565b600060208201905081810360008301526134e0816130e3565b9050919050565b6000602082019050818103600083015261350081613106565b9050919050565b6000602082019050818103600083015261352081613129565b9050919050565b600060208201905081810360008301526135408161314c565b9050919050565b600060208201905081810360008301526135608161316f565b9050919050565b6000602082019050818103600083015261358081613192565b9050919050565b600060208201905081810360008301526135a0816131b5565b9050919050565b600060208201905081810360008301526135c0816131d8565b9050919050565b600060208201905081810360008301526135e0816131fb565b9050919050565b600060208201905081810360008301526136008161321e565b9050919050565b6000602082019050818103600083015261362081613241565b9050919050565b6000602082019050818103600083015261364081613264565b9050919050565b600060208201905061365c6000830184613287565b92915050565b60006040820190506136776000830185613287565b6136846020830184613287565b9392505050565b60006136956136a6565b90506136a18282613936565b919050565b6000604051905090565b600067ffffffffffffffff8211156136cb576136ca613a6e565b5b6136d482613a9d565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000613744826138b8565b915061374f836138b8565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613784576137836139e1565b5b828201905092915050565b600061379a826138b8565b91506137a5836138b8565b9250826137b5576137b4613a10565b5b828204905092915050565b60006137cb826138b8565b91506137d6836138b8565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561380f5761380e6139e1565b5b828202905092915050565b6000613825826138b8565b9150613830836138b8565b925082821015613843576138426139e1565b5b828203905092915050565b600061385982613898565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156138ef5780820151818401526020810190506138d4565b838111156138fe576000848401525b50505050565b6000600282049050600182168061391c57607f821691505b602082108114156139305761392f613a3f565b5b50919050565b61393f82613a9d565b810181811067ffffffffffffffff8211171561395e5761395d613a6e565b5b80604052505050565b6000613972826138b8565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156139a5576139a46139e1565b5b600182019050919050565b60006139bb826138b8565b91506139c6836138b8565b9250826139d6576139d5613a10565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f5a7a6f6f7065727352616e646f6d697a65723a20746f6b656e49642063616e6e60008201527f6f74206c6172676572207468616e206d61782073697a65000000000000000000602082015250565b7f5a7a6f6f706572733a2042617463684e6f206d757374206265747765656e3a2060008201527f3120616e64203400000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f5a7a6f6f706572733a20436f6e747261637420686173206265656e206c6f636b60008201527f6564000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f5a7a6f6f706572733a206e6577526f79616c7479526174652073686f756c642060008201527f6265747765656e205b302c20313030305d000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f5a7a6f6f706572733a2043616c6c6572206e6f7420617574686f72697a656400600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f5a7a6f6f7065727352616e646f6d697a65723a20546f6b656e49642063616e6e60008201527f6f74206c6172676572207468616e206d61782073697a65000000000000000000602082015250565b7f5a7a6f6f706572733a20546f6b656e4964206e6f742065786973747300000000600082015250565b61409d8161384e565b81146140a857600080fd5b50565b6140b481613860565b81146140bf57600080fd5b50565b6140cb8161386c565b81146140d657600080fd5b50565b6140e2816138b8565b81146140ed57600080fd5b5056fea2646970667358221220950f4b34450ab8726f5fbaff549ee8d641ae9ac398ad9cc81efc607a1a8d0d8464736f6c63430008040033

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

0000000000000000000000005499ee597543f528675dd23dcff05440dc3b1c6e0000000000000000000000004bbbc87670ebcbf5486d206bdf8b469487e27d5600000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000035697066733a2f2f516d5265553941634170754654417a723266565641444e6a5965717633536d7542484733486f524739434739336d0000000000000000000000

-----Decoded View---------------
Arg [0] : zzoopersEVOAddress (address): 0x5499ee597543f528675Dd23DCfF05440dC3b1C6E
Arg [1] : randomizerAddress (address): 0x4bBbc87670EbcbF5486D206BdF8B469487e27D56
Arg [2] : contractUri (string): ipfs://QmReU9AcApuFTAzr2fVVADNjYeqv3SmuBHG3HoRG9CG93m

-----Encoded View---------------
6 Constructor Arguments found :
Arg [0] : 0000000000000000000000005499ee597543f528675dd23dcff05440dc3b1c6e
Arg [1] : 0000000000000000000000004bbbc87670ebcbf5486d206bdf8b469487e27d56
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000035
Arg [4] : 697066733a2f2f516d5265553941634170754654417a723266565641444e6a59
Arg [5] : 65717633536d7542484733486f524739434739336d0000000000000000000000


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.