ETH Price: $2,638.15 (+7.75%)
Gas: 3 Gwei

Token

THELASTWINDOW (WINDOW)
 

Overview

Max Total Supply

0 WINDOW

Holders

79

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
jimmie2times.eth
Balance
1 WINDOW
0x8c889274481e864db796fe43c1dd70efc44e9b8d
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

The last window by Tibout Shaik is a long form generative art series around the sentiment of feeling lost, with just one window out.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
THELASTWINDOW

Compiler Version
v0.8.9+commit.e5eed63a

Optimization Enabled:
Yes with 200 runs

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

/*
    
The last window is a series around the sentiment of feeling lost with just one window out.
It was created using data from the 256ART genesis series. 

@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
@@&    -** --   &    &&%#/*,. @- ** -***             **-* --- *-*     %# ///(/&@
@@&                               @&&%          #/    *#(((            ##(/   &@
@@&                                   *                %(/..,,         #***** &@
@@&                                  (/                  /,(           (////* &@
@@&  %%%                             #/                                (//    &@
@@&@@@%%%                &&@                                 ###****          &@
@@&                          ....%((                            %/            &@
@@&               ...           &%((          *             ...               &@
@@&               ...@@@@@@@@@@@@@@@@@@@@@@@@@***, @@@@@@@@@...               &@
@@&               ...@@@@@@@@@@@@@@@@@@@@@@@@@@@*.@@@@@@@@@@...     (((#/  &%%&@
@@&               ...@@@@@@@@@@@@@@@@@&@@@@@@@@@@@@@@@@@@@@@...     &####  %%%&@
@@&               ...@@@@@@@%@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@...     &###   ,,,&@
@@&/(             ...@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@%@@@@@@((*          ///,,&@
@@&***            ...@@@@@@@@@@@@@@@@@@@@&@@@@@@@@@@**,@@@@%(..          ///&*&@
@@&,//(*          ...@@@@@@@&((*@@@@@@@@@@@@@@@@@@@@@%@@@@@@...  (((#@@@@  (/(&@
@@&///            ...@@@@@@@@@@@@@@@@@@@/*@@@@@@@@@@@@@@@@@@...  ((((@@%@    /&@
@@&//      @@##%% ...@@@@@@@@@@@&@@@@@@@@@@@@@@@@@@@@@@@@@@@...  ((( #@(@    *&@
@@&     #( %@@ #% ...@@@@@@@@@@@@@@@@@@@@@@@@@##/@@@@@@@@(@@...              /&@
@@&     #%%%     &(((@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@&@@@@@@@...               &@
@@&     %%%%     &&#,@@@@@@@@@/,***@@@@@@@@@@@@@@@@@@@@@@@@@...               &@
@@&   #////%     %&*#@@@@@@/(****@@@@@@@@@@@@@@@@@@@@@@@@@@@...               &@
@@&   %##(/       ...@@@@&%###//@@@@@@@@@@@@@@@@@@@@@@@@@@@@...               &@
@@&   #%%/(       ...@@@@##@#///@@@@@(,,,*@@@@@@@@@%@@@@@@@@...  &((##   .,   &@
@@&   ###(/    @@&..                 /(/**       #***       ...  &&##.   ,,,,,&@
@@&  #%        @(& %%               %% (            / ###    ####&(#*%   ,,.,,&@
@@&  ##        @@@                @@%%&&     ///,     &&.%%@@/@%%%%        ,./&@
@@&  %#                             @&       \\\,           %&@%%%           (&@
@@&                                 %#//                       (,             &@
@@&  /////               ##%%/)    ..%,(      /#@@@@%###/,                    &@
@@&  -----               *-*-*-      **---    ***** -****          * - ****   &@
@@&@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@


*/
pragma solidity ^0.8.9;

import "@openzeppelin/contracts/token/ERC721/ERC721.sol";
import "@openzeppelin/contracts/interfaces/IERC2981.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/Counters.sol";

contract THELASTWINDOW is ERC721, IERC2981, Ownable {
    using Counters for Counters.Counter;
    using Strings for uint256;

    string public baseURI;
    string public baseExtension = ".json";
    uint256 public maxSupply = 1024;
    uint256 public maxMintAmount = 16;
    uint256 public price = 25600000000000000;
    bool public saleIsActive = false;
    address public the256ArtAddress;
    mapping(uint256 => bool) public freeMints;
    string public base64script;
    string public base64packages;

    constructor(
        string memory _name,
        string memory _symbol,
        string memory _initBaseURI,
        string memory _base64script,
        string memory _base64packages,
        uint256[] memory _freeMints,
        address _genesisContract
    ) ERC721(_name, _symbol) {
        setBaseURI(_initBaseURI);
        setThe256ArtSmartContractAddress(_genesisContract);
        setScript(_base64script);
        setPackages(_base64packages);
        addFreeMints(_freeMints);
    }

    function require256ArtOwner(uint256 a256ArtId) private view {
        ERC721 theAddress = ERC721(the256ArtAddress);

        require(
            theAddress.ownerOf(a256ArtId) == _msgSender(),
            "256ART not owned"
        );
    }

    Counters.Counter private _counter;

    function getMintCount() public view returns (uint256) {
        return _counter.current();
    }

    function mint(uint256[] calldata the256ArtIds) public payable {
        uint256 count = the256ArtIds.length;

        require(saleIsActive, "Sale not active");
        require(count > 0, "Must mint at least one");
        require(count <= maxMintAmount, "Multimint max is 16");
        require(
            _counter.current() + count - 1 < maxSupply,
            "Exceeds max supply"
        );

        uint256 finalPrice = 0;

        for (uint256 i = 0; i < count; i++) {
            require256ArtOwner(the256ArtIds[i]);

            if (!isFreeMint(the256ArtIds[i])) {
                finalPrice += price;
            }
        }

        require(msg.value >= finalPrice, "Insufficient payment");

        for (uint256 i = 0; i < count; i++) {
            _safeMint(_msgSender(), the256ArtIds[i]);
            _counter.increment();
        }
    }

    function remainingSupply() public view returns (uint256) {
        return maxSupply - _counter.current();
    }

    function tokenSupply() public view returns (uint256) {
        return _counter.current();
    }

    function tokenURI(uint256 tokenId)
        public
        view
        virtual
        override
        returns (string memory)
    {
        require(_exists(tokenId), "Nonexistent token");

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

    function addFreeMints(uint256[] memory _ids) public onlyOwner {
        for (uint256 i = 0; i < _ids.length; i++) {
            freeMints[_ids[i]] = true;
        }
    }

    function removeFreeMints(uint256[] memory _ids) public onlyOwner {
        for (uint256 i = 0; i < _ids.length; i++) {
            delete freeMints[_ids[i]];
        }
    }

    function isFreeMint(uint256 _id) public view returns (bool) {
        return freeMints[_id];
    }

    function withdraw() public onlyOwner {
        uint256 balance = address(this).balance;
        payable(owner()).transfer(balance);
    }

    function setThe256ArtSmartContractAddress(address _address)
        public
        onlyOwner
    {
        the256ArtAddress = _address;
    }

    function setSaleIsActive(bool isActive) public onlyOwner {
        saleIsActive = isActive;
    }

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

    function setScript(string memory _base64script) public onlyOwner {
        base64script = _base64script;
    }

    function setPackages(string memory _base64packages) public onlyOwner {
        base64packages = _base64packages;
    }

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

    function setmaxMintAmount(uint256 _newmaxMintAmount) public onlyOwner {
        maxMintAmount = _newmaxMintAmount;
    }

    function setBaseExtension(string memory _newBaseExtension)
        public
        onlyOwner
    {
        baseExtension = _newBaseExtension;
    }

    function royaltyInfo(uint256, uint256 salePrice)
        external
        pure
        override
        returns (address receiver, uint256 royaltyAmount)
    {
        return (
            address(0x4d95B1ea2a8a021fE98b5D60E5f835Aa7bA3362B),
            (salePrice * 512) / 10000
        );
    }
}

File 2 of 14 : ERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (token/ERC721/ERC721.sol)

pragma solidity ^0.8.0;

import "./IERC721.sol";
import "./IERC721Receiver.sol";
import "./extensions/IERC721Metadata.sol";
import "../../utils/Address.sol";
import "../../utils/Context.sol";
import "../../utils/Strings.sol";
import "../../utils/introspection/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 {
        _setApprovalForAll(_msgSender(), operator, approved);
    }

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

    /**
     * @dev See {IERC721-transferFrom}.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        //solhint-disable-next-line max-line-length
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");

        _transfer(from, to, tokenId);
    }

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        safeTransferFrom(from, to, tokenId, "");
    }

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public virtual override {
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");
        _safeTransfer(from, to, tokenId, _data);
    }

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
     * are aware of the ERC721 protocol to prevent tokens from being forever locked.
     *
     * `_data` is additional data, it has no specified format and it is sent in call to `to`.
     *
     * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g.
     * implement alternative mechanisms to perform token transfer, such as signature-based.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeTransfer(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) internal virtual {
        _transfer(from, to, tokenId);
        require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer");
    }

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

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

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

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

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

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

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

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

    /**
     * @dev Destroys `tokenId`.
     * The approval is cleared when the token is burned.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     *
     * Emits a {Transfer} event.
     */
    function _burn(uint256 tokenId) internal virtual {
        address owner = ERC721.ownerOf(tokenId);

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

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

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

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

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *  As opposed to {transferFrom}, this imposes no restrictions on msg.sender.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     *
     * Emits a {Transfer} event.
     */
    function _transfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {
        require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer of token that is not own");
        require(to != address(0), "ERC721: transfer to the zero address");

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

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

    /**
     * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address.
     * The call is not executed if the target address is not a contract.
     *
     * @param from address representing the previous owner of the given token ID
     * @param to target address that will receive the tokens
     * @param tokenId uint256 ID of the token to be transferred
     * @param _data bytes optional data to send along with the call
     * @return bool whether the call correctly returned the expected magic value
     */
    function _checkOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) private returns (bool) {
        if (to.isContract()) {
            try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) {
                return retval == IERC721Receiver.onERC721Received.selector;
            } catch (bytes memory reason) {
                if (reason.length == 0) {
                    revert("ERC721: transfer to non ERC721Receiver implementer");
                } else {
                    assembly {
                        revert(add(32, reason), mload(reason))
                    }
                }
            }
        } else {
            return true;
        }
    }

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

File 3 of 14 : IERC2981.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (interfaces/IERC2981.sol)

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 4 of 14 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (access/Ownable.sol)

pragma solidity ^0.8.0;

import "../utils/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() {
        _transferOwnership(_msgSender());
    }

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

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

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

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

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

File 5 of 14 : Counters.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (utils/Counters.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

File 6 of 14 : IERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;

import "../../utils/introspection/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 7 of 14 : IERC721Receiver.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (token/ERC721/IERC721Receiver.sol)

pragma solidity ^0.8.0;

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

File 8 of 14 : IERC721Metadata.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (token/ERC721/extensions/IERC721Metadata.sol)

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 9 of 14 : Address.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (utils/Address.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    /**
     * @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 10 of 14 : Context.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (utils/Context.sol)

pragma solidity ^0.8.0;

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

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

File 11 of 14 : Strings.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (utils/Strings.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

File 12 of 14 : ERC165.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (utils/introspection/ERC165.sol)

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 13 of 14 : IERC165.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (utils/introspection/IERC165.sol)

pragma solidity ^0.8.0;

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

File 14 of 14 : IERC165.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (interfaces/IERC165.sol)

pragma solidity ^0.8.0;

import "../utils/introspection/IERC165.sol";

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"string","name":"_initBaseURI","type":"string"},{"internalType":"string","name":"_base64script","type":"string"},{"internalType":"string","name":"_base64packages","type":"string"},{"internalType":"uint256[]","name":"_freeMints","type":"uint256[]"},{"internalType":"address","name":"_genesisContract","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"uint256[]","name":"_ids","type":"uint256[]"}],"name":"addFreeMints","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"base64packages","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"base64script","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"freeMints","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"getMintCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_id","type":"uint256"}],"name":"isFreeMint","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"the256ArtIds","type":"uint256[]"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"remainingSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"_ids","type":"uint256[]"}],"name":"removeFreeMints","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"salePrice","type":"uint256"}],"name":"royaltyInfo","outputs":[{"internalType":"address","name":"receiver","type":"address"},{"internalType":"uint256","name":"royaltyAmount","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":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"saleIsActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseExtension","type":"string"}],"name":"setBaseExtension","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_base64packages","type":"string"}],"name":"setPackages","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"isActive","type":"bool"}],"name":"setSaleIsActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_base64script","type":"string"}],"name":"setScript","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"setThe256ArtSmartContractAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newmaxMintAmount","type":"uint256"}],"name":"setmaxMintAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"the256ArtAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokenSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60c06040526005608081905264173539b7b760d91b60a0908152620000289160089190620003b0565b506104006009556010600a55665af3107a400000600b55600c805460ff191690553480156200005657600080fd5b5060405162002cfc38038062002cfc8339810160408190526200007991620005d9565b86518790879062000092906000906020850190620003b0565b508051620000a8906001906020840190620003b0565b505050620000c5620000bf6200010960201b60201c565b6200010d565b620000d0856200015f565b620000db81620001c7565b620000e6846200023a565b620000f1836200029a565b620000fc82620002fa565b5050505050505062000771565b3390565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6006546001600160a01b03163314620001ae5760405162461bcd60e51b8152602060048201819052602482015260008051602062002cdc83398151915260448201526064015b60405180910390fd5b8051620001c3906007906020840190620003b0565b5050565b6006546001600160a01b03163314620002125760405162461bcd60e51b8152602060048201819052602482015260008051602062002cdc8339815191526044820152606401620001a5565b600c80546001600160a01b0390921661010002610100600160a81b0319909216919091179055565b6006546001600160a01b03163314620002855760405162461bcd60e51b8152602060048201819052602482015260008051602062002cdc8339815191526044820152606401620001a5565b8051620001c390600e906020840190620003b0565b6006546001600160a01b03163314620002e55760405162461bcd60e51b8152602060048201819052602482015260008051602062002cdc8339815191526044820152606401620001a5565b8051620001c390600f906020840190620003b0565b6006546001600160a01b03163314620003455760405162461bcd60e51b8152602060048201819052602482015260008051602062002cdc8339815191526044820152606401620001a5565b60005b8151811015620001c3576001600d60008484815181106200036d576200036d620006f4565b6020026020010151815260200190815260200160002060006101000a81548160ff0219169083151502179055508080620003a7906200070a565b91505062000348565b828054620003be9062000734565b90600052602060002090601f016020900481019282620003e257600085556200042d565b82601f10620003fd57805160ff19168380011785556200042d565b828001600101855582156200042d579182015b828111156200042d57825182559160200191906001019062000410565b506200043b9291506200043f565b5090565b5b808211156200043b576000815560010162000440565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f191681016001600160401b038111828210171562000497576200049762000456565b604052919050565b600082601f830112620004b157600080fd5b81516001600160401b03811115620004cd57620004cd62000456565b6020620004e3601f8301601f191682016200046c565b8281528582848701011115620004f857600080fd5b60005b8381101562000518578581018301518282018401528201620004fb565b838111156200052a5760008385840101525b5095945050505050565b600082601f8301126200054657600080fd5b815160206001600160401b0382111562000564576200056462000456565b8160051b620005758282016200046c565b92835284810182019282810190878511156200059057600080fd5b83870192505b84831015620005b15782518252918301919083019062000596565b979650505050505050565b80516001600160a01b0381168114620005d457600080fd5b919050565b600080600080600080600060e0888a031215620005f557600080fd5b87516001600160401b03808211156200060d57600080fd5b6200061b8b838c016200049f565b985060208a01519150808211156200063257600080fd5b620006408b838c016200049f565b975060408a01519150808211156200065757600080fd5b620006658b838c016200049f565b965060608a01519150808211156200067c57600080fd5b6200068a8b838c016200049f565b955060808a0151915080821115620006a157600080fd5b620006af8b838c016200049f565b945060a08a0151915080821115620006c657600080fd5b50620006d58a828b0162000534565b925050620006e660c08901620005bc565b905092959891949750929550565b634e487b7160e01b600052603260045260246000fd5b60006000198214156200072d57634e487b7160e01b600052601160045260246000fd5b5060010190565b600181811c908216806200074957607f821691505b602082108114156200076b57634e487b7160e01b600052602260045260246000fd5b50919050565b61255b80620007816000396000f3fe6080604052600436106102515760003560e01c80638da5cb5b11610139578063bc2f5e23116100b6578063da3ef23f1161007a578063da3ef23f146106b6578063dabb348f146106d6578063e985e9c5146106f6578063eb8d24441461073f578063f2fde38b14610759578063f8e93ef91461077957600080fd5b8063bc2f5e2314610641578063c668286214610656578063c87b56dd1461066b578063d5abeb011461068b578063da0239a6146106a157600080fd5b8063a22cb465116100fd578063a22cb4651461059c578063a66d0404146105bc578063ab6b41a0146105d1578063b2fd2b8b14610601578063b88d4fde1461062157600080fd5b80638da5cb5b1461052e5780638fc3b549146104a957806395d89b411461054c5780639be96bdc14610561578063a035b1fe1461058657600080fd5b806342842e0e116101d257806370a082311161019657806370a0823114610474578063715018a6146104945780637824407f146104a957806378a4ab85146104be5780637f00c7a6146104de5780638a2c9a8d146104fe57600080fd5b806342842e0e146103df57806355f804b3146103ff5780636352211e1461041f5780636a62ddeb1461043f5780636c0360eb1461045f57600080fd5b8063239c70ae11610219578063239c70ae1461032757806323b872dd1461034b5780632a55205a1461036b5780633a9669d0146103aa5780633ccfd60b146103ca57600080fd5b806301ffc9a71461025657806302c889891461028b57806306fdde03146102ad578063081812fc146102cf578063095ea7b314610307575b600080fd5b34801561026257600080fd5b50610276610271366004611d81565b61078c565b60405190151581526020015b60405180910390f35b34801561029757600080fd5b506102ab6102a6366004611db3565b6107de565b005b3480156102b957600080fd5b506102c2610824565b6040516102829190611e26565b3480156102db57600080fd5b506102ef6102ea366004611e39565b6108b6565b6040516001600160a01b039091168152602001610282565b34801561031357600080fd5b506102ab610322366004611e67565b61094b565b34801561033357600080fd5b5061033d600a5481565b604051908152602001610282565b34801561035757600080fd5b506102ab610366366004611e93565b610a61565b34801561037757600080fd5b5061038b610386366004611ed4565b610a92565b604080516001600160a01b039093168352602083019190915201610282565b3480156103b657600080fd5b506102ab6103c5366004611f3d565b610ace565b3480156103d657600080fd5b506102ab610b60565b3480156103eb57600080fd5b506102ab6103fa366004611e93565b610bd5565b34801561040b57600080fd5b506102ab61041a36600461203b565b610bf0565b34801561042b57600080fd5b506102ef61043a366004611e39565b610c2d565b34801561044b57600080fd5b506102ab61045a36600461203b565b610ca4565b34801561046b57600080fd5b506102c2610ce1565b34801561048057600080fd5b5061033d61048f366004612084565b610d6f565b3480156104a057600080fd5b506102ab610df6565b3480156104b557600080fd5b5061033d610e2c565b3480156104ca57600080fd5b506102ab6104d936600461203b565b610e3c565b3480156104ea57600080fd5b506102ab6104f9366004611e39565b610e79565b34801561050a57600080fd5b50610276610519366004611e39565b600d6020526000908152604090205460ff1681565b34801561053a57600080fd5b506006546001600160a01b03166102ef565b34801561055857600080fd5b506102c2610ea8565b34801561056d57600080fd5b50600c546102ef9061010090046001600160a01b031681565b34801561059257600080fd5b5061033d600b5481565b3480156105a857600080fd5b506102ab6105b73660046120a1565b610eb7565b3480156105c857600080fd5b506102c2610ec2565b3480156105dd57600080fd5b506102766105ec366004611e39565b6000908152600d602052604090205460ff1690565b34801561060d57600080fd5b506102ab61061c366004612084565b610ecf565b34801561062d57600080fd5b506102ab61063c3660046120d6565b610f21565b34801561064d57600080fd5b506102c2610f59565b34801561066257600080fd5b506102c2610f66565b34801561067757600080fd5b506102c2610686366004611e39565b610f73565b34801561069757600080fd5b5061033d60095481565b3480156106ad57600080fd5b5061033d61102d565b3480156106c257600080fd5b506102ab6106d136600461203b565b611045565b3480156106e257600080fd5b506102ab6106f1366004611f3d565b611082565b34801561070257600080fd5b50610276610711366004612156565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561074b57600080fd5b50600c546102769060ff1681565b34801561076557600080fd5b506102ab610774366004612084565b611102565b6102ab61078736600461218f565b61119d565b60006001600160e01b031982166380ac58cd60e01b14806107bd57506001600160e01b03198216635b5e139f60e01b145b806107d857506301ffc9a760e01b6001600160e01b03198316145b92915050565b6006546001600160a01b031633146108115760405162461bcd60e51b815260040161080890612204565b60405180910390fd5b600c805460ff1916911515919091179055565b60606000805461083390612239565b80601f016020809104026020016040519081016040528092919081815260200182805461085f90612239565b80156108ac5780601f10610881576101008083540402835291602001916108ac565b820191906000526020600020905b81548152906001019060200180831161088f57829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b031661092f5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610808565b506000908152600460205260409020546001600160a01b031690565b600061095682610c2d565b9050806001600160a01b0316836001600160a01b031614156109c45760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610808565b336001600160a01b03821614806109e057506109e08133610711565b610a525760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610808565b610a5c83836113f9565b505050565b610a6b3382611467565b610a875760405162461bcd60e51b815260040161080890612274565b610a5c83838361155e565b600080734d95b1ea2a8a021fe98b5d60e5f835aa7ba3362b612710610ab9856102006122db565b610ac39190612310565b915091509250929050565b6006546001600160a01b03163314610af85760405162461bcd60e51b815260040161080890612204565b60005b8151811015610b5c576001600d6000848481518110610b1c57610b1c612324565b6020026020010151815260200190815260200160002060006101000a81548160ff0219169083151502179055508080610b549061233a565b915050610afb565b5050565b6006546001600160a01b03163314610b8a5760405162461bcd60e51b815260040161080890612204565b47610b9d6006546001600160a01b031690565b6001600160a01b03166108fc829081150290604051600060405180830381858888f19350505050158015610b5c573d6000803e3d6000fd5b610a5c83838360405180602001604052806000815250610f21565b6006546001600160a01b03163314610c1a5760405162461bcd60e51b815260040161080890612204565b8051610b5c906007906020840190611cd2565b6000818152600260205260408120546001600160a01b0316806107d85760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610808565b6006546001600160a01b03163314610cce5760405162461bcd60e51b815260040161080890612204565b8051610b5c90600f906020840190611cd2565b60078054610cee90612239565b80601f0160208091040260200160405190810160405280929190818152602001828054610d1a90612239565b8015610d675780601f10610d3c57610100808354040283529160200191610d67565b820191906000526020600020905b815481529060010190602001808311610d4a57829003601f168201915b505050505081565b60006001600160a01b038216610dda5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610808565b506001600160a01b031660009081526003602052604090205490565b6006546001600160a01b03163314610e205760405162461bcd60e51b815260040161080890612204565b610e2a60006116fe565b565b6000610e3760105490565b905090565b6006546001600160a01b03163314610e665760405162461bcd60e51b815260040161080890612204565b8051610b5c90600e906020840190611cd2565b6006546001600160a01b03163314610ea35760405162461bcd60e51b815260040161080890612204565b600a55565b60606001805461083390612239565b610b5c338383611750565b600e8054610cee90612239565b6006546001600160a01b03163314610ef95760405162461bcd60e51b815260040161080890612204565b600c80546001600160a01b0390921661010002610100600160a81b0319909216919091179055565b610f2b3383611467565b610f475760405162461bcd60e51b815260040161080890612274565b610f538484848461181f565b50505050565b600f8054610cee90612239565b60088054610cee90612239565b6000818152600260205260409020546060906001600160a01b0316610fce5760405162461bcd60e51b81526020600482015260116024820152702737b732bc34b9ba32b73a103a37b5b2b760791b6044820152606401610808565b6000610fd8611852565b90506000815111610ff85760405180602001604052806000815250611026565b8061100284611861565b600860405160200161101693929190612355565b6040516020818303038152906040525b9392505050565b600061103860105490565b600954610e379190612419565b6006546001600160a01b0316331461106f5760405162461bcd60e51b815260040161080890612204565b8051610b5c906008906020840190611cd2565b6006546001600160a01b031633146110ac5760405162461bcd60e51b815260040161080890612204565b60005b8151811015610b5c57600d60008383815181106110ce576110ce612324565b6020908102919091018101518252810191909152604001600020805460ff19169055806110fa8161233a565b9150506110af565b6006546001600160a01b0316331461112c5760405162461bcd60e51b815260040161080890612204565b6001600160a01b0381166111915760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610808565b61119a816116fe565b50565b600c54819060ff166111e35760405162461bcd60e51b815260206004820152600f60248201526e53616c65206e6f742061637469766560881b6044820152606401610808565b6000811161122c5760405162461bcd60e51b81526020600482015260166024820152754d757374206d696e74206174206c65617374206f6e6560501b6044820152606401610808565b600a548111156112745760405162461bcd60e51b815260206004820152601360248201527226bab63a34b6b4b73a1036b0bc1034b990189b60691b6044820152606401610808565b60095460018261128360105490565b61128d9190612430565b6112979190612419565b106112d95760405162461bcd60e51b815260206004820152601260248201527145786365656473206d617820737570706c7960701b6044820152606401610808565b6000805b8281101561135d576113068585838181106112fa576112fa612324565b9050602002013561195f565b61133785858381811061131b5761131b612324565b905060200201356000908152600d602052604090205460ff1690565b61134b57600b546113489083612430565b91505b806113558161233a565b9150506112dd565b50803410156113a55760405162461bcd60e51b8152602060048201526014602482015273125b9cdd59999a58da595b9d081c185e5b595b9d60621b6044820152606401610808565b60005b828110156113f2576113d2338686848181106113c6576113c6612324565b90506020020135611a36565b6113e0601080546001019055565b806113ea8161233a565b9150506113a8565b5050505050565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061142e82610c2d565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166114e05760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610808565b60006114eb83610c2d565b9050806001600160a01b0316846001600160a01b031614806115265750836001600160a01b031661151b846108b6565b6001600160a01b0316145b8061155657506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b031661157182610c2d565b6001600160a01b0316146115d95760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610808565b6001600160a01b03821661163b5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610808565b6116466000826113f9565b6001600160a01b038316600090815260036020526040812080546001929061166f908490612419565b90915550506001600160a01b038216600090815260036020526040812080546001929061169d908490612430565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b031614156117b25760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610808565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b61182a84848461155e565b61183684848484611a50565b610f535760405162461bcd60e51b815260040161080890612448565b60606007805461083390612239565b6060816118855750506040805180820190915260018152600360fc1b602082015290565b8160005b81156118af57806118998161233a565b91506118a89050600a83612310565b9150611889565b60008167ffffffffffffffff8111156118ca576118ca611ef6565b6040519080825280601f01601f1916602001820160405280156118f4576020820181803683370190505b5090505b841561155657611909600183612419565b9150611916600a8661249a565b611921906030612430565b60f81b81838151811061193657611936612324565b60200101906001600160f81b031916908160001a905350611958600a86612310565b94506118f8565b600c5461010090046001600160a01b0316336040516331a9108f60e11b8152600481018490526001600160a01b0391821691831690636352211e9060240160206040518083038186803b1580156119b557600080fd5b505afa1580156119c9573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906119ed91906124ae565b6001600160a01b031614610b5c5760405162461bcd60e51b815260206004820152601060248201526f0c8d4d905495081b9bdd081bdddb995960821b6044820152606401610808565b610b5c828260405180602001604052806000815250611b5d565b60006001600160a01b0384163b15611b5257604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611a949033908990889088906004016124cb565b602060405180830381600087803b158015611aae57600080fd5b505af1925050508015611ade575060408051601f3d908101601f19168201909252611adb91810190612508565b60015b611b38573d808015611b0c576040519150601f19603f3d011682016040523d82523d6000602084013e611b11565b606091505b508051611b305760405162461bcd60e51b815260040161080890612448565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611556565b506001949350505050565b611b678383611b90565b611b746000848484611a50565b610a5c5760405162461bcd60e51b815260040161080890612448565b6001600160a01b038216611be65760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610808565b6000818152600260205260409020546001600160a01b031615611c4b5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610808565b6001600160a01b0382166000908152600360205260408120805460019290611c74908490612430565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b828054611cde90612239565b90600052602060002090601f016020900481019282611d005760008555611d46565b82601f10611d1957805160ff1916838001178555611d46565b82800160010185558215611d46579182015b82811115611d46578251825591602001919060010190611d2b565b50611d52929150611d56565b5090565b5b80821115611d525760008155600101611d57565b6001600160e01b03198116811461119a57600080fd5b600060208284031215611d9357600080fd5b813561102681611d6b565b80358015158114611dae57600080fd5b919050565b600060208284031215611dc557600080fd5b61102682611d9e565b60005b83811015611de9578181015183820152602001611dd1565b83811115610f535750506000910152565b60008151808452611e12816020860160208601611dce565b601f01601f19169290920160200192915050565b6020815260006110266020830184611dfa565b600060208284031215611e4b57600080fd5b5035919050565b6001600160a01b038116811461119a57600080fd5b60008060408385031215611e7a57600080fd5b8235611e8581611e52565b946020939093013593505050565b600080600060608486031215611ea857600080fd5b8335611eb381611e52565b92506020840135611ec381611e52565b929592945050506040919091013590565b60008060408385031215611ee757600080fd5b50508035926020909101359150565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff81118282101715611f3557611f35611ef6565b604052919050565b60006020808385031215611f5057600080fd5b823567ffffffffffffffff80821115611f6857600080fd5b818501915085601f830112611f7c57600080fd5b813581811115611f8e57611f8e611ef6565b8060051b9150611f9f848301611f0c565b8181529183018401918481019088841115611fb957600080fd5b938501935b83851015611fd757843582529385019390850190611fbe565b98975050505050505050565b600067ffffffffffffffff831115611ffd57611ffd611ef6565b612010601f8401601f1916602001611f0c565b905082815283838301111561202457600080fd5b828260208301376000602084830101529392505050565b60006020828403121561204d57600080fd5b813567ffffffffffffffff81111561206457600080fd5b8201601f8101841361207557600080fd5b61155684823560208401611fe3565b60006020828403121561209657600080fd5b813561102681611e52565b600080604083850312156120b457600080fd5b82356120bf81611e52565b91506120cd60208401611d9e565b90509250929050565b600080600080608085870312156120ec57600080fd5b84356120f781611e52565b9350602085013561210781611e52565b925060408501359150606085013567ffffffffffffffff81111561212a57600080fd5b8501601f8101871361213b57600080fd5b61214a87823560208401611fe3565b91505092959194509250565b6000806040838503121561216957600080fd5b823561217481611e52565b9150602083013561218481611e52565b809150509250929050565b600080602083850312156121a257600080fd5b823567ffffffffffffffff808211156121ba57600080fd5b818501915085601f8301126121ce57600080fd5b8135818111156121dd57600080fd5b8660208260051b85010111156121f257600080fd5b60209290920196919550909350505050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600181811c9082168061224d57607f821691505b6020821081141561226e57634e487b7160e01b600052602260045260246000fd5b50919050565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b634e487b7160e01b600052601160045260246000fd5b60008160001904831182151516156122f5576122f56122c5565b500290565b634e487b7160e01b600052601260045260246000fd5b60008261231f5761231f6122fa565b500490565b634e487b7160e01b600052603260045260246000fd5b600060001982141561234e5761234e6122c5565b5060010190565b6000845160206123688285838a01611dce565b85519184019161237b8184848a01611dce565b8554920191600090600181811c908083168061239857607f831692505b8583108114156123b657634e487b7160e01b85526022600452602485fd5b8080156123ca57600181146123db57612408565b60ff19851688528388019550612408565b60008b81526020902060005b858110156124005781548a8201529084019088016123e7565b505083880195505b50939b9a5050505050505050505050565b60008282101561242b5761242b6122c5565b500390565b60008219821115612443576124436122c5565b500190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6000826124a9576124a96122fa565b500690565b6000602082840312156124c057600080fd5b815161102681611e52565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906124fe90830184611dfa565b9695505050505050565b60006020828403121561251a57600080fd5b815161102681611d6b56fea2646970667358221220952f56fdc70962cf939cdbd73ba8f01a512fc38d1857a67bd83d0bb88ee4221e64736f6c634300080900334f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657200000000000000000000000000000000000000000000000000000000000000e00000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000000000000000016000000000000000000000000000000000000000000000000000000000000001c00000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000028000000000000000000000000044e4afa4b442f11693844d425fb29aeddfa0f33e000000000000000000000000000000000000000000000000000000000000000d5448454c41535457494e444f5700000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000657494e444f5700000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d594a7662436a4c5333715a564d6950704e784d4d723636505a5237724b33317a6a65385435577857733746502f0000000000000000000000000000000000000000000000000000000000000000000000000000000000085345544c41544552000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006065776f67494341694d6a553259584a30496a6f69586a45754d4334304969774b49434167496d4e68626e5a6863794936496c34794c6a67754d4349734369416749434a7a5a57566b636d46755a473974496a6f69586a4d754d43343149677039000000000000000000000000000000000000000000000000000000000000004d000000000000000000000000000000000000000000000000000000000000012d0000000000000000000000000000000000000000000000000000000000000b000000000000000000000000000000000000000000000000000000000000000aa600000000000000000000000000000000000000000000000000000000000007cf0000000000000000000000000000000000000000000000000000000000000b1400000000000000000000000000000000000000000000000000000000000001860000000000000000000000000000000000000000000000000000000000000a720000000000000000000000000000000000000000000000000000000000000f2f0000000000000000000000000000000000000000000000000000000000000ddd00000000000000000000000000000000000000000000000000000000000000ec0000000000000000000000000000000000000000000000000000000000000d010000000000000000000000000000000000000000000000000000000000000ce0000000000000000000000000000000000000000000000000000000000000075300000000000000000000000000000000000000000000000000000000000008c500000000000000000000000000000000000000000000000000000000000004870000000000000000000000000000000000000000000000000000000000000c720000000000000000000000000000000000000000000000000000000000000c730000000000000000000000000000000000000000000000000000000000000c2b0000000000000000000000000000000000000000000000000000000000000a010000000000000000000000000000000000000000000000000000000000000a5300000000000000000000000000000000000000000000000000000000000002eb0000000000000000000000000000000000000000000000000000000000000ac000000000000000000000000000000000000000000000000000000000000004b40000000000000000000000000000000000000000000000000000000000000f2100000000000000000000000000000000000000000000000000000000000007e9000000000000000000000000000000000000000000000000000000000000095c00000000000000000000000000000000000000000000000000000000000009c600000000000000000000000000000000000000000000000000000000000002c2000000000000000000000000000000000000000000000000000000000000060e000000000000000000000000000000000000000000000000000000000000021f000000000000000000000000000000000000000000000000000000000000081c00000000000000000000000000000000000000000000000000000000000007d2000000000000000000000000000000000000000000000000000000000000097f0000000000000000000000000000000000000000000000000000000000000a1c00000000000000000000000000000000000000000000000000000000000000cb0000000000000000000000000000000000000000000000000000000000000e3a000000000000000000000000000000000000000000000000000000000000074500000000000000000000000000000000000000000000000000000000000000840000000000000000000000000000000000000000000000000000000000000c350000000000000000000000000000000000000000000000000000000000000efa0000000000000000000000000000000000000000000000000000000000000bf20000000000000000000000000000000000000000000000000000000000000f1400000000000000000000000000000000000000000000000000000000000009b800000000000000000000000000000000000000000000000000000000000003a700000000000000000000000000000000000000000000000000000000000009110000000000000000000000000000000000000000000000000000000000000f150000000000000000000000000000000000000000000000000000000000000a3900000000000000000000000000000000000000000000000000000000000008bd00000000000000000000000000000000000000000000000000000000000008d600000000000000000000000000000000000000000000000000000000000003f300000000000000000000000000000000000000000000000000000000000003ee000000000000000000000000000000000000000000000000000000000000098900000000000000000000000000000000000000000000000000000000000002a60000000000000000000000000000000000000000000000000000000000000ef00000000000000000000000000000000000000000000000000000000000000818000000000000000000000000000000000000000000000000000000000000061400000000000000000000000000000000000000000000000000000000000003d8000000000000000000000000000000000000000000000000000000000000097a0000000000000000000000000000000000000000000000000000000000000d02000000000000000000000000000000000000000000000000000000000000085e00000000000000000000000000000000000000000000000000000000000004d90000000000000000000000000000000000000000000000000000000000000e6500000000000000000000000000000000000000000000000000000000000000e300000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000e000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000160000000000000000000000000000000000000000000000000000000000000019000000000000000000000000000000000000000000000000000000000000001c000000000000000000000000000000000000000000000000000000000000001f00000000000000000000000000000000000000000000000000000000000002fa000000000000000000000000000000000000000000000000000000000000064c0000000000000000000000000000000000000000000000000000000000000a7b0000000000000000000000000000000000000000000000000000000000000bf30000000000000000000000000000000000000000000000000000000000000bf60000000000000000000000000000000000000000000000000000000000000d63

Deployed Bytecode

0x6080604052600436106102515760003560e01c80638da5cb5b11610139578063bc2f5e23116100b6578063da3ef23f1161007a578063da3ef23f146106b6578063dabb348f146106d6578063e985e9c5146106f6578063eb8d24441461073f578063f2fde38b14610759578063f8e93ef91461077957600080fd5b8063bc2f5e2314610641578063c668286214610656578063c87b56dd1461066b578063d5abeb011461068b578063da0239a6146106a157600080fd5b8063a22cb465116100fd578063a22cb4651461059c578063a66d0404146105bc578063ab6b41a0146105d1578063b2fd2b8b14610601578063b88d4fde1461062157600080fd5b80638da5cb5b1461052e5780638fc3b549146104a957806395d89b411461054c5780639be96bdc14610561578063a035b1fe1461058657600080fd5b806342842e0e116101d257806370a082311161019657806370a0823114610474578063715018a6146104945780637824407f146104a957806378a4ab85146104be5780637f00c7a6146104de5780638a2c9a8d146104fe57600080fd5b806342842e0e146103df57806355f804b3146103ff5780636352211e1461041f5780636a62ddeb1461043f5780636c0360eb1461045f57600080fd5b8063239c70ae11610219578063239c70ae1461032757806323b872dd1461034b5780632a55205a1461036b5780633a9669d0146103aa5780633ccfd60b146103ca57600080fd5b806301ffc9a71461025657806302c889891461028b57806306fdde03146102ad578063081812fc146102cf578063095ea7b314610307575b600080fd5b34801561026257600080fd5b50610276610271366004611d81565b61078c565b60405190151581526020015b60405180910390f35b34801561029757600080fd5b506102ab6102a6366004611db3565b6107de565b005b3480156102b957600080fd5b506102c2610824565b6040516102829190611e26565b3480156102db57600080fd5b506102ef6102ea366004611e39565b6108b6565b6040516001600160a01b039091168152602001610282565b34801561031357600080fd5b506102ab610322366004611e67565b61094b565b34801561033357600080fd5b5061033d600a5481565b604051908152602001610282565b34801561035757600080fd5b506102ab610366366004611e93565b610a61565b34801561037757600080fd5b5061038b610386366004611ed4565b610a92565b604080516001600160a01b039093168352602083019190915201610282565b3480156103b657600080fd5b506102ab6103c5366004611f3d565b610ace565b3480156103d657600080fd5b506102ab610b60565b3480156103eb57600080fd5b506102ab6103fa366004611e93565b610bd5565b34801561040b57600080fd5b506102ab61041a36600461203b565b610bf0565b34801561042b57600080fd5b506102ef61043a366004611e39565b610c2d565b34801561044b57600080fd5b506102ab61045a36600461203b565b610ca4565b34801561046b57600080fd5b506102c2610ce1565b34801561048057600080fd5b5061033d61048f366004612084565b610d6f565b3480156104a057600080fd5b506102ab610df6565b3480156104b557600080fd5b5061033d610e2c565b3480156104ca57600080fd5b506102ab6104d936600461203b565b610e3c565b3480156104ea57600080fd5b506102ab6104f9366004611e39565b610e79565b34801561050a57600080fd5b50610276610519366004611e39565b600d6020526000908152604090205460ff1681565b34801561053a57600080fd5b506006546001600160a01b03166102ef565b34801561055857600080fd5b506102c2610ea8565b34801561056d57600080fd5b50600c546102ef9061010090046001600160a01b031681565b34801561059257600080fd5b5061033d600b5481565b3480156105a857600080fd5b506102ab6105b73660046120a1565b610eb7565b3480156105c857600080fd5b506102c2610ec2565b3480156105dd57600080fd5b506102766105ec366004611e39565b6000908152600d602052604090205460ff1690565b34801561060d57600080fd5b506102ab61061c366004612084565b610ecf565b34801561062d57600080fd5b506102ab61063c3660046120d6565b610f21565b34801561064d57600080fd5b506102c2610f59565b34801561066257600080fd5b506102c2610f66565b34801561067757600080fd5b506102c2610686366004611e39565b610f73565b34801561069757600080fd5b5061033d60095481565b3480156106ad57600080fd5b5061033d61102d565b3480156106c257600080fd5b506102ab6106d136600461203b565b611045565b3480156106e257600080fd5b506102ab6106f1366004611f3d565b611082565b34801561070257600080fd5b50610276610711366004612156565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561074b57600080fd5b50600c546102769060ff1681565b34801561076557600080fd5b506102ab610774366004612084565b611102565b6102ab61078736600461218f565b61119d565b60006001600160e01b031982166380ac58cd60e01b14806107bd57506001600160e01b03198216635b5e139f60e01b145b806107d857506301ffc9a760e01b6001600160e01b03198316145b92915050565b6006546001600160a01b031633146108115760405162461bcd60e51b815260040161080890612204565b60405180910390fd5b600c805460ff1916911515919091179055565b60606000805461083390612239565b80601f016020809104026020016040519081016040528092919081815260200182805461085f90612239565b80156108ac5780601f10610881576101008083540402835291602001916108ac565b820191906000526020600020905b81548152906001019060200180831161088f57829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b031661092f5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610808565b506000908152600460205260409020546001600160a01b031690565b600061095682610c2d565b9050806001600160a01b0316836001600160a01b031614156109c45760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610808565b336001600160a01b03821614806109e057506109e08133610711565b610a525760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610808565b610a5c83836113f9565b505050565b610a6b3382611467565b610a875760405162461bcd60e51b815260040161080890612274565b610a5c83838361155e565b600080734d95b1ea2a8a021fe98b5d60e5f835aa7ba3362b612710610ab9856102006122db565b610ac39190612310565b915091509250929050565b6006546001600160a01b03163314610af85760405162461bcd60e51b815260040161080890612204565b60005b8151811015610b5c576001600d6000848481518110610b1c57610b1c612324565b6020026020010151815260200190815260200160002060006101000a81548160ff0219169083151502179055508080610b549061233a565b915050610afb565b5050565b6006546001600160a01b03163314610b8a5760405162461bcd60e51b815260040161080890612204565b47610b9d6006546001600160a01b031690565b6001600160a01b03166108fc829081150290604051600060405180830381858888f19350505050158015610b5c573d6000803e3d6000fd5b610a5c83838360405180602001604052806000815250610f21565b6006546001600160a01b03163314610c1a5760405162461bcd60e51b815260040161080890612204565b8051610b5c906007906020840190611cd2565b6000818152600260205260408120546001600160a01b0316806107d85760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610808565b6006546001600160a01b03163314610cce5760405162461bcd60e51b815260040161080890612204565b8051610b5c90600f906020840190611cd2565b60078054610cee90612239565b80601f0160208091040260200160405190810160405280929190818152602001828054610d1a90612239565b8015610d675780601f10610d3c57610100808354040283529160200191610d67565b820191906000526020600020905b815481529060010190602001808311610d4a57829003601f168201915b505050505081565b60006001600160a01b038216610dda5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610808565b506001600160a01b031660009081526003602052604090205490565b6006546001600160a01b03163314610e205760405162461bcd60e51b815260040161080890612204565b610e2a60006116fe565b565b6000610e3760105490565b905090565b6006546001600160a01b03163314610e665760405162461bcd60e51b815260040161080890612204565b8051610b5c90600e906020840190611cd2565b6006546001600160a01b03163314610ea35760405162461bcd60e51b815260040161080890612204565b600a55565b60606001805461083390612239565b610b5c338383611750565b600e8054610cee90612239565b6006546001600160a01b03163314610ef95760405162461bcd60e51b815260040161080890612204565b600c80546001600160a01b0390921661010002610100600160a81b0319909216919091179055565b610f2b3383611467565b610f475760405162461bcd60e51b815260040161080890612274565b610f538484848461181f565b50505050565b600f8054610cee90612239565b60088054610cee90612239565b6000818152600260205260409020546060906001600160a01b0316610fce5760405162461bcd60e51b81526020600482015260116024820152702737b732bc34b9ba32b73a103a37b5b2b760791b6044820152606401610808565b6000610fd8611852565b90506000815111610ff85760405180602001604052806000815250611026565b8061100284611861565b600860405160200161101693929190612355565b6040516020818303038152906040525b9392505050565b600061103860105490565b600954610e379190612419565b6006546001600160a01b0316331461106f5760405162461bcd60e51b815260040161080890612204565b8051610b5c906008906020840190611cd2565b6006546001600160a01b031633146110ac5760405162461bcd60e51b815260040161080890612204565b60005b8151811015610b5c57600d60008383815181106110ce576110ce612324565b6020908102919091018101518252810191909152604001600020805460ff19169055806110fa8161233a565b9150506110af565b6006546001600160a01b0316331461112c5760405162461bcd60e51b815260040161080890612204565b6001600160a01b0381166111915760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610808565b61119a816116fe565b50565b600c54819060ff166111e35760405162461bcd60e51b815260206004820152600f60248201526e53616c65206e6f742061637469766560881b6044820152606401610808565b6000811161122c5760405162461bcd60e51b81526020600482015260166024820152754d757374206d696e74206174206c65617374206f6e6560501b6044820152606401610808565b600a548111156112745760405162461bcd60e51b815260206004820152601360248201527226bab63a34b6b4b73a1036b0bc1034b990189b60691b6044820152606401610808565b60095460018261128360105490565b61128d9190612430565b6112979190612419565b106112d95760405162461bcd60e51b815260206004820152601260248201527145786365656473206d617820737570706c7960701b6044820152606401610808565b6000805b8281101561135d576113068585838181106112fa576112fa612324565b9050602002013561195f565b61133785858381811061131b5761131b612324565b905060200201356000908152600d602052604090205460ff1690565b61134b57600b546113489083612430565b91505b806113558161233a565b9150506112dd565b50803410156113a55760405162461bcd60e51b8152602060048201526014602482015273125b9cdd59999a58da595b9d081c185e5b595b9d60621b6044820152606401610808565b60005b828110156113f2576113d2338686848181106113c6576113c6612324565b90506020020135611a36565b6113e0601080546001019055565b806113ea8161233a565b9150506113a8565b5050505050565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061142e82610c2d565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166114e05760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610808565b60006114eb83610c2d565b9050806001600160a01b0316846001600160a01b031614806115265750836001600160a01b031661151b846108b6565b6001600160a01b0316145b8061155657506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b031661157182610c2d565b6001600160a01b0316146115d95760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610808565b6001600160a01b03821661163b5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610808565b6116466000826113f9565b6001600160a01b038316600090815260036020526040812080546001929061166f908490612419565b90915550506001600160a01b038216600090815260036020526040812080546001929061169d908490612430565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b031614156117b25760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610808565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b61182a84848461155e565b61183684848484611a50565b610f535760405162461bcd60e51b815260040161080890612448565b60606007805461083390612239565b6060816118855750506040805180820190915260018152600360fc1b602082015290565b8160005b81156118af57806118998161233a565b91506118a89050600a83612310565b9150611889565b60008167ffffffffffffffff8111156118ca576118ca611ef6565b6040519080825280601f01601f1916602001820160405280156118f4576020820181803683370190505b5090505b841561155657611909600183612419565b9150611916600a8661249a565b611921906030612430565b60f81b81838151811061193657611936612324565b60200101906001600160f81b031916908160001a905350611958600a86612310565b94506118f8565b600c5461010090046001600160a01b0316336040516331a9108f60e11b8152600481018490526001600160a01b0391821691831690636352211e9060240160206040518083038186803b1580156119b557600080fd5b505afa1580156119c9573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906119ed91906124ae565b6001600160a01b031614610b5c5760405162461bcd60e51b815260206004820152601060248201526f0c8d4d905495081b9bdd081bdddb995960821b6044820152606401610808565b610b5c828260405180602001604052806000815250611b5d565b60006001600160a01b0384163b15611b5257604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611a949033908990889088906004016124cb565b602060405180830381600087803b158015611aae57600080fd5b505af1925050508015611ade575060408051601f3d908101601f19168201909252611adb91810190612508565b60015b611b38573d808015611b0c576040519150601f19603f3d011682016040523d82523d6000602084013e611b11565b606091505b508051611b305760405162461bcd60e51b815260040161080890612448565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611556565b506001949350505050565b611b678383611b90565b611b746000848484611a50565b610a5c5760405162461bcd60e51b815260040161080890612448565b6001600160a01b038216611be65760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610808565b6000818152600260205260409020546001600160a01b031615611c4b5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610808565b6001600160a01b0382166000908152600360205260408120805460019290611c74908490612430565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b828054611cde90612239565b90600052602060002090601f016020900481019282611d005760008555611d46565b82601f10611d1957805160ff1916838001178555611d46565b82800160010185558215611d46579182015b82811115611d46578251825591602001919060010190611d2b565b50611d52929150611d56565b5090565b5b80821115611d525760008155600101611d57565b6001600160e01b03198116811461119a57600080fd5b600060208284031215611d9357600080fd5b813561102681611d6b565b80358015158114611dae57600080fd5b919050565b600060208284031215611dc557600080fd5b61102682611d9e565b60005b83811015611de9578181015183820152602001611dd1565b83811115610f535750506000910152565b60008151808452611e12816020860160208601611dce565b601f01601f19169290920160200192915050565b6020815260006110266020830184611dfa565b600060208284031215611e4b57600080fd5b5035919050565b6001600160a01b038116811461119a57600080fd5b60008060408385031215611e7a57600080fd5b8235611e8581611e52565b946020939093013593505050565b600080600060608486031215611ea857600080fd5b8335611eb381611e52565b92506020840135611ec381611e52565b929592945050506040919091013590565b60008060408385031215611ee757600080fd5b50508035926020909101359150565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff81118282101715611f3557611f35611ef6565b604052919050565b60006020808385031215611f5057600080fd5b823567ffffffffffffffff80821115611f6857600080fd5b818501915085601f830112611f7c57600080fd5b813581811115611f8e57611f8e611ef6565b8060051b9150611f9f848301611f0c565b8181529183018401918481019088841115611fb957600080fd5b938501935b83851015611fd757843582529385019390850190611fbe565b98975050505050505050565b600067ffffffffffffffff831115611ffd57611ffd611ef6565b612010601f8401601f1916602001611f0c565b905082815283838301111561202457600080fd5b828260208301376000602084830101529392505050565b60006020828403121561204d57600080fd5b813567ffffffffffffffff81111561206457600080fd5b8201601f8101841361207557600080fd5b61155684823560208401611fe3565b60006020828403121561209657600080fd5b813561102681611e52565b600080604083850312156120b457600080fd5b82356120bf81611e52565b91506120cd60208401611d9e565b90509250929050565b600080600080608085870312156120ec57600080fd5b84356120f781611e52565b9350602085013561210781611e52565b925060408501359150606085013567ffffffffffffffff81111561212a57600080fd5b8501601f8101871361213b57600080fd5b61214a87823560208401611fe3565b91505092959194509250565b6000806040838503121561216957600080fd5b823561217481611e52565b9150602083013561218481611e52565b809150509250929050565b600080602083850312156121a257600080fd5b823567ffffffffffffffff808211156121ba57600080fd5b818501915085601f8301126121ce57600080fd5b8135818111156121dd57600080fd5b8660208260051b85010111156121f257600080fd5b60209290920196919550909350505050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600181811c9082168061224d57607f821691505b6020821081141561226e57634e487b7160e01b600052602260045260246000fd5b50919050565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b634e487b7160e01b600052601160045260246000fd5b60008160001904831182151516156122f5576122f56122c5565b500290565b634e487b7160e01b600052601260045260246000fd5b60008261231f5761231f6122fa565b500490565b634e487b7160e01b600052603260045260246000fd5b600060001982141561234e5761234e6122c5565b5060010190565b6000845160206123688285838a01611dce565b85519184019161237b8184848a01611dce565b8554920191600090600181811c908083168061239857607f831692505b8583108114156123b657634e487b7160e01b85526022600452602485fd5b8080156123ca57600181146123db57612408565b60ff19851688528388019550612408565b60008b81526020902060005b858110156124005781548a8201529084019088016123e7565b505083880195505b50939b9a5050505050505050505050565b60008282101561242b5761242b6122c5565b500390565b60008219821115612443576124436122c5565b500190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6000826124a9576124a96122fa565b500690565b6000602082840312156124c057600080fd5b815161102681611e52565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906124fe90830184611dfa565b9695505050505050565b60006020828403121561251a57600080fd5b815161102681611d6b56fea2646970667358221220952f56fdc70962cf939cdbd73ba8f01a512fc38d1857a67bd83d0bb88ee4221e64736f6c63430008090033

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

00000000000000000000000000000000000000000000000000000000000000e00000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000000000000000016000000000000000000000000000000000000000000000000000000000000001c00000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000028000000000000000000000000044e4afa4b442f11693844d425fb29aeddfa0f33e000000000000000000000000000000000000000000000000000000000000000d5448454c41535457494e444f5700000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000657494e444f5700000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d594a7662436a4c5333715a564d6950704e784d4d723636505a5237724b33317a6a65385435577857733746502f0000000000000000000000000000000000000000000000000000000000000000000000000000000000085345544c41544552000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006065776f67494341694d6a553259584a30496a6f69586a45754d4334304969774b49434167496d4e68626e5a6863794936496c34794c6a67754d4349734369416749434a7a5a57566b636d46755a473974496a6f69586a4d754d43343149677039000000000000000000000000000000000000000000000000000000000000004d000000000000000000000000000000000000000000000000000000000000012d0000000000000000000000000000000000000000000000000000000000000b000000000000000000000000000000000000000000000000000000000000000aa600000000000000000000000000000000000000000000000000000000000007cf0000000000000000000000000000000000000000000000000000000000000b1400000000000000000000000000000000000000000000000000000000000001860000000000000000000000000000000000000000000000000000000000000a720000000000000000000000000000000000000000000000000000000000000f2f0000000000000000000000000000000000000000000000000000000000000ddd00000000000000000000000000000000000000000000000000000000000000ec0000000000000000000000000000000000000000000000000000000000000d010000000000000000000000000000000000000000000000000000000000000ce0000000000000000000000000000000000000000000000000000000000000075300000000000000000000000000000000000000000000000000000000000008c500000000000000000000000000000000000000000000000000000000000004870000000000000000000000000000000000000000000000000000000000000c720000000000000000000000000000000000000000000000000000000000000c730000000000000000000000000000000000000000000000000000000000000c2b0000000000000000000000000000000000000000000000000000000000000a010000000000000000000000000000000000000000000000000000000000000a5300000000000000000000000000000000000000000000000000000000000002eb0000000000000000000000000000000000000000000000000000000000000ac000000000000000000000000000000000000000000000000000000000000004b40000000000000000000000000000000000000000000000000000000000000f2100000000000000000000000000000000000000000000000000000000000007e9000000000000000000000000000000000000000000000000000000000000095c00000000000000000000000000000000000000000000000000000000000009c600000000000000000000000000000000000000000000000000000000000002c2000000000000000000000000000000000000000000000000000000000000060e000000000000000000000000000000000000000000000000000000000000021f000000000000000000000000000000000000000000000000000000000000081c00000000000000000000000000000000000000000000000000000000000007d2000000000000000000000000000000000000000000000000000000000000097f0000000000000000000000000000000000000000000000000000000000000a1c00000000000000000000000000000000000000000000000000000000000000cb0000000000000000000000000000000000000000000000000000000000000e3a000000000000000000000000000000000000000000000000000000000000074500000000000000000000000000000000000000000000000000000000000000840000000000000000000000000000000000000000000000000000000000000c350000000000000000000000000000000000000000000000000000000000000efa0000000000000000000000000000000000000000000000000000000000000bf20000000000000000000000000000000000000000000000000000000000000f1400000000000000000000000000000000000000000000000000000000000009b800000000000000000000000000000000000000000000000000000000000003a700000000000000000000000000000000000000000000000000000000000009110000000000000000000000000000000000000000000000000000000000000f150000000000000000000000000000000000000000000000000000000000000a3900000000000000000000000000000000000000000000000000000000000008bd00000000000000000000000000000000000000000000000000000000000008d600000000000000000000000000000000000000000000000000000000000003f300000000000000000000000000000000000000000000000000000000000003ee000000000000000000000000000000000000000000000000000000000000098900000000000000000000000000000000000000000000000000000000000002a60000000000000000000000000000000000000000000000000000000000000ef00000000000000000000000000000000000000000000000000000000000000818000000000000000000000000000000000000000000000000000000000000061400000000000000000000000000000000000000000000000000000000000003d8000000000000000000000000000000000000000000000000000000000000097a0000000000000000000000000000000000000000000000000000000000000d02000000000000000000000000000000000000000000000000000000000000085e00000000000000000000000000000000000000000000000000000000000004d90000000000000000000000000000000000000000000000000000000000000e6500000000000000000000000000000000000000000000000000000000000000e300000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000e000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000160000000000000000000000000000000000000000000000000000000000000019000000000000000000000000000000000000000000000000000000000000001c000000000000000000000000000000000000000000000000000000000000001f00000000000000000000000000000000000000000000000000000000000002fa000000000000000000000000000000000000000000000000000000000000064c0000000000000000000000000000000000000000000000000000000000000a7b0000000000000000000000000000000000000000000000000000000000000bf30000000000000000000000000000000000000000000000000000000000000bf60000000000000000000000000000000000000000000000000000000000000d63

-----Decoded View---------------
Arg [0] : _name (string): THELASTWINDOW
Arg [1] : _symbol (string): WINDOW
Arg [2] : _initBaseURI (string): ipfs://QmYJvbCjLS3qZVMiPpNxMMr66PZR7rK31zje8T5WxWs7FP/
Arg [3] : _base64script (string): SETLATER
Arg [4] : _base64packages (string): ewogICAiMjU2YXJ0IjoiXjEuMC40IiwKICAgImNhbnZhcyI6Il4yLjguMCIsCiAgICJzZWVkcmFuZG9tIjoiXjMuMC41Igp9
Arg [5] : _freeMints (uint256[]): 301,2816,2726,1999,2836,390,2674,3887,3549,236,3329,3296,1875,2245,1159,3186,3187,3115,2561,2643,747,2752,1204,3873,2025,2396,2502,706,1550,543,2076,2002,2431,2588,203,3642,1861,132,3125,3834,3058,3860,2488,935,2321,3861,2617,2237,2262,1011,1006,2441,678,3824,2072,1556,984,2426,3330,2142,1241,3685,227,1,4,14,16,22,25,28,31,762,1612,2683,3059,3062,3427
Arg [6] : _genesisContract (address): 0x44E4aFA4b442f11693844d425fB29aEDDFA0F33E

-----Encoded View---------------
98 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000120
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000160
Arg [3] : 00000000000000000000000000000000000000000000000000000000000001c0
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000200
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000280
Arg [6] : 00000000000000000000000044e4afa4b442f11693844d425fb29aeddfa0f33e
Arg [7] : 000000000000000000000000000000000000000000000000000000000000000d
Arg [8] : 5448454c41535457494e444f5700000000000000000000000000000000000000
Arg [9] : 0000000000000000000000000000000000000000000000000000000000000006
Arg [10] : 57494e444f570000000000000000000000000000000000000000000000000000
Arg [11] : 0000000000000000000000000000000000000000000000000000000000000036
Arg [12] : 697066733a2f2f516d594a7662436a4c5333715a564d6950704e784d4d723636
Arg [13] : 505a5237724b33317a6a65385435577857733746502f00000000000000000000
Arg [14] : 0000000000000000000000000000000000000000000000000000000000000008
Arg [15] : 5345544c41544552000000000000000000000000000000000000000000000000
Arg [16] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [17] : 65776f67494341694d6a553259584a30496a6f69586a45754d4334304969774b
Arg [18] : 49434167496d4e68626e5a6863794936496c34794c6a67754d43497343694167
Arg [19] : 49434a7a5a57566b636d46755a473974496a6f69586a4d754d43343149677039
Arg [20] : 000000000000000000000000000000000000000000000000000000000000004d
Arg [21] : 000000000000000000000000000000000000000000000000000000000000012d
Arg [22] : 0000000000000000000000000000000000000000000000000000000000000b00
Arg [23] : 0000000000000000000000000000000000000000000000000000000000000aa6
Arg [24] : 00000000000000000000000000000000000000000000000000000000000007cf
Arg [25] : 0000000000000000000000000000000000000000000000000000000000000b14
Arg [26] : 0000000000000000000000000000000000000000000000000000000000000186
Arg [27] : 0000000000000000000000000000000000000000000000000000000000000a72
Arg [28] : 0000000000000000000000000000000000000000000000000000000000000f2f
Arg [29] : 0000000000000000000000000000000000000000000000000000000000000ddd
Arg [30] : 00000000000000000000000000000000000000000000000000000000000000ec
Arg [31] : 0000000000000000000000000000000000000000000000000000000000000d01
Arg [32] : 0000000000000000000000000000000000000000000000000000000000000ce0
Arg [33] : 0000000000000000000000000000000000000000000000000000000000000753
Arg [34] : 00000000000000000000000000000000000000000000000000000000000008c5
Arg [35] : 0000000000000000000000000000000000000000000000000000000000000487
Arg [36] : 0000000000000000000000000000000000000000000000000000000000000c72
Arg [37] : 0000000000000000000000000000000000000000000000000000000000000c73
Arg [38] : 0000000000000000000000000000000000000000000000000000000000000c2b
Arg [39] : 0000000000000000000000000000000000000000000000000000000000000a01
Arg [40] : 0000000000000000000000000000000000000000000000000000000000000a53
Arg [41] : 00000000000000000000000000000000000000000000000000000000000002eb
Arg [42] : 0000000000000000000000000000000000000000000000000000000000000ac0
Arg [43] : 00000000000000000000000000000000000000000000000000000000000004b4
Arg [44] : 0000000000000000000000000000000000000000000000000000000000000f21
Arg [45] : 00000000000000000000000000000000000000000000000000000000000007e9
Arg [46] : 000000000000000000000000000000000000000000000000000000000000095c
Arg [47] : 00000000000000000000000000000000000000000000000000000000000009c6
Arg [48] : 00000000000000000000000000000000000000000000000000000000000002c2
Arg [49] : 000000000000000000000000000000000000000000000000000000000000060e
Arg [50] : 000000000000000000000000000000000000000000000000000000000000021f
Arg [51] : 000000000000000000000000000000000000000000000000000000000000081c
Arg [52] : 00000000000000000000000000000000000000000000000000000000000007d2
Arg [53] : 000000000000000000000000000000000000000000000000000000000000097f
Arg [54] : 0000000000000000000000000000000000000000000000000000000000000a1c
Arg [55] : 00000000000000000000000000000000000000000000000000000000000000cb
Arg [56] : 0000000000000000000000000000000000000000000000000000000000000e3a
Arg [57] : 0000000000000000000000000000000000000000000000000000000000000745
Arg [58] : 0000000000000000000000000000000000000000000000000000000000000084
Arg [59] : 0000000000000000000000000000000000000000000000000000000000000c35
Arg [60] : 0000000000000000000000000000000000000000000000000000000000000efa
Arg [61] : 0000000000000000000000000000000000000000000000000000000000000bf2
Arg [62] : 0000000000000000000000000000000000000000000000000000000000000f14
Arg [63] : 00000000000000000000000000000000000000000000000000000000000009b8
Arg [64] : 00000000000000000000000000000000000000000000000000000000000003a7
Arg [65] : 0000000000000000000000000000000000000000000000000000000000000911
Arg [66] : 0000000000000000000000000000000000000000000000000000000000000f15
Arg [67] : 0000000000000000000000000000000000000000000000000000000000000a39
Arg [68] : 00000000000000000000000000000000000000000000000000000000000008bd
Arg [69] : 00000000000000000000000000000000000000000000000000000000000008d6
Arg [70] : 00000000000000000000000000000000000000000000000000000000000003f3
Arg [71] : 00000000000000000000000000000000000000000000000000000000000003ee
Arg [72] : 0000000000000000000000000000000000000000000000000000000000000989
Arg [73] : 00000000000000000000000000000000000000000000000000000000000002a6
Arg [74] : 0000000000000000000000000000000000000000000000000000000000000ef0
Arg [75] : 0000000000000000000000000000000000000000000000000000000000000818
Arg [76] : 0000000000000000000000000000000000000000000000000000000000000614
Arg [77] : 00000000000000000000000000000000000000000000000000000000000003d8
Arg [78] : 000000000000000000000000000000000000000000000000000000000000097a
Arg [79] : 0000000000000000000000000000000000000000000000000000000000000d02
Arg [80] : 000000000000000000000000000000000000000000000000000000000000085e
Arg [81] : 00000000000000000000000000000000000000000000000000000000000004d9
Arg [82] : 0000000000000000000000000000000000000000000000000000000000000e65
Arg [83] : 00000000000000000000000000000000000000000000000000000000000000e3
Arg [84] : 0000000000000000000000000000000000000000000000000000000000000001
Arg [85] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [86] : 000000000000000000000000000000000000000000000000000000000000000e
Arg [87] : 0000000000000000000000000000000000000000000000000000000000000010
Arg [88] : 0000000000000000000000000000000000000000000000000000000000000016
Arg [89] : 0000000000000000000000000000000000000000000000000000000000000019
Arg [90] : 000000000000000000000000000000000000000000000000000000000000001c
Arg [91] : 000000000000000000000000000000000000000000000000000000000000001f
Arg [92] : 00000000000000000000000000000000000000000000000000000000000002fa
Arg [93] : 000000000000000000000000000000000000000000000000000000000000064c
Arg [94] : 0000000000000000000000000000000000000000000000000000000000000a7b
Arg [95] : 0000000000000000000000000000000000000000000000000000000000000bf3
Arg [96] : 0000000000000000000000000000000000000000000000000000000000000bf6
Arg [97] : 0000000000000000000000000000000000000000000000000000000000000d63


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.