ETH Price: $2,964.54 (-1.85%)
Gas: 2 Gwei

Token

Satoshibles (SBLS)
 

Overview

Max Total Supply

5,000 SBLS

Holders

1,333

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
gokuza.eth
Balance
1 SBLS
0x6eee796f80dc191dcfb69c1db8b5c8d37e06ac1d
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

Satoshibles are a series of 5000 algorithmically generated crypto collectible NFTs that have been hand illustrated. Each one is unique.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
Satoshible

Compiler Version
v0.8.4+commit.c7e474f2

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 14 : Satoshible.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.4;

import "@openzeppelin/contracts/token/ERC20/IERC20.sol";
import "@openzeppelin/contracts/token/ERC721/ERC721.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/math/SafeMath.sol";
import "@openzeppelin/contracts/utils/Counters.sol";

contract Satoshible is ERC721, Ownable {
    using SafeMath for uint256;

    /// The total token supply
    uint16 public constant maxSupply = 5000;

    /// The default token price in wei
    uint256 public tokenPrice = 20000000000000000;

    /// The current state of the sale
    bool public saleIsActive = true;

    /// When true, the metadata can no longer be updated
    bool public metadataLocked = false;

    /// This is a link to the provenance json data on IPFS
    string public constant provenanceURI = "ipfs://Qmf75LFacib9JdpYBfLvUHFRJz3F9FuQznuxD9V5W2MESx";

    /// This is a link to the images directory on IPFS
    string public imagesURI = "Not Set Yet";

    /// This is a link to the token collage on IPFS
    string public collageURI = "Not Set Yet";

    /// This is a link to the metadata on IPFS
    string public metadataURI = "Not Set Yet";

    /// Setup the token counter
    using Counters for Counters.Counter;
    Counters.Counter private _tokenIds;

    /// Boom... Let's go!
    constructor(uint initialBatchCount) ERC721("Satoshibles", "SBLS") {
        // Mint the initial batch
        _mintTokens(initialBatchCount);
    }

    /**
     * @dev Gives the ability to mint between 1-50 tokens.
     */
    function mintTokens(uint numberOfTokens) public payable {
        require(saleIsActive, "Sale must be active");
        require(numberOfTokens >= 1, "Need at least 1 token");
        require(numberOfTokens <= 50, "Max 50 at a time");
        require(totalSupply().add(numberOfTokens) <= maxSupply, "Not enough tokens left");
        require(tokenPrice.mul(numberOfTokens) == msg.value, "Ether amount not correct");

        _mintTokens(numberOfTokens);
    }

    /**
     * @dev The internal minting function.
     */
    function _mintTokens(uint numberOfTokens) private {
        for (uint16 i = 0; i < numberOfTokens; i++) {
            _tokenIds.increment();

            uint256 id = totalSupply();

            _safeMint(msg.sender, id);
        }
    }

    /**
     * @dev Returns the current total supply derived from token count.
     */
    function totalSupply() public view returns (uint256) {
        return _tokenIds.current();
    }

    /**
     * @dev Base URI for computing tokenURI.
     */
    function _baseURI() internal pure override returns (string memory) {
        return "https://api.satoshibles.com/token/";
    }

    /**
     * @dev Can be used to modify the price in case of ETH price changes over time.
     */
    function updateTokenPrice(uint256 _tokenPrice) public onlyOwner {
        require(_tokenPrice >= 1, "Must be >= 1");
        require(!saleIsActive, "Sale is active");

        tokenPrice = _tokenPrice;
    }

    /**
     * @dev Will be used to reactivate the sale.
     */
    function activateSale() public onlyOwner {
        saleIsActive = true;
    }

    /**
     * @dev Will be used to pause/end the sale.
     */
    function deactivateSale() public onlyOwner {
        saleIsActive = false;
    }

    /**
     * @dev This will be called after all Satoshibles have been released.
     */
    function setLinks(
        string memory _collageURI,
        string memory _imagesURI,
        string memory _metadataURI
    ) public onlyOwner {
        require(!metadataLocked, "Has already been set");

        collageURI = _collageURI;
        imagesURI = _imagesURI;
        metadataURI = _metadataURI;

        metadataLocked = true;
    }

    /**
     * @dev Project owner can withdraw total from sales.
     */
    function withdraw() public onlyOwner {
        require(address(this).balance > 0, "Nothing to withdraw");

        uint256 balance = address(this).balance;

        payable(msg.sender).transfer(balance);
    }

    /**
     * @dev Gives ability to withdraw any other tokens that are sent to the smart contract. WARNING: Double check token is legit before calling this.
     */
    function withdrawOther(IERC20 token, address to, bool hasVerifiedToken) public onlyOwner {
        require(hasVerifiedToken, "Need to verify token");
        require(token.balanceOf(address(this)) > 0, "Nothing to withdraw");

        token.transfer(to, token.balanceOf(address(this)));
    }
}

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

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 () {
        address msgSender = _msgSender();
        _owner = msgSender;
        emit OwnershipTransferred(address(0), 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 {
        emit OwnershipTransferred(_owner, address(0));
        _owner = 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");
        emit OwnershipTransferred(_owner, newOwner);
        _owner = newOwner;
    }
}

File 3 of 14 : IERC20.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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}. Empty by default, can be overriden
     * in child contracts.
     */
    function _baseURI() internal view virtual returns (string memory) {
        return "";
    }

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        require(operator != _msgSender(), "ERC721: approve to caller");

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

    /**
     * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address.
     * The call is not executed if the target address is not a contract.
     *
     * @param from address representing the previous owner of the given token ID
     * @param to target address that will receive the tokens
     * @param tokenId uint256 ID of the token to be transferred
     * @param _data bytes optional data to send along with the call
     * @return bool whether the call correctly returned the expected magic value
     */
    function _checkOnERC721Received(address from, address to, uint256 tokenId, bytes memory _data)
        private returns (bool)
    {
        if (to.isContract()) {
            try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) {
                return retval == IERC721Receiver(to).onERC721Received.selector;
            } catch (bytes memory reason) {
                if (reason.length == 0) {
                    revert("ERC721: transfer to non ERC721Receiver implementer");
                } else {
                    // solhint-disable-next-line no-inline-assembly
                    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` cannot be the zero address.
     * - `to` cannot be the zero address.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(address from, address to, uint256 tokenId) internal virtual { }
}

File 5 of 14 : IERC721.sol
// SPDX-License-Identifier: MIT

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 6 of 14 : IERC721Receiver.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

File 7 of 14 : IERC721Metadata.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "../IERC721.sol";

/**
 * @title ERC-721 Non-Fungible Token Standard, optional metadata extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Metadata is IERC721 {

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

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

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

File 8 of 14 : Address.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

        uint256 size;
        // solhint-disable-next-line no-inline-assembly
        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");

        // solhint-disable-next-line avoid-low-level-calls, avoid-call-value
        (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");

        // solhint-disable-next-line avoid-low-level-calls
        (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");

        // solhint-disable-next-line avoid-low-level-calls
        (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");

        // solhint-disable-next-line avoid-low-level-calls
        (bool success, bytes memory returndata) = target.delegatecall(data);
        return _verifyCallResult(success, returndata, errorMessage);
    }

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

                // solhint-disable-next-line no-inline-assembly
                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

File 9 of 14 : Context.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

    function _msgData() internal view virtual returns (bytes calldata) {
        this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
        return msg.data;
    }
}

File 10 of 14 : Counters.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

/**
 * @title Counters
 * @author Matt Condon (@shrugs)
 * @dev Provides counters that can only be incremented or decremented by one. 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;
        }
    }
}

File 11 of 14 : Strings.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

/**
 * @dev String operations.
 */
library Strings {
    bytes16 private constant alphabet = "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] = alphabet[value & 0xf];
            value >>= 4;
        }
        require(value == 0, "Strings: hex length insufficient");
        return string(buffer);
    }

}

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

pragma solidity ^0.8.0;

import "./IERC165.sol";

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

File 13 of 14 : IERC165.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

File 14 of 14 : SafeMath.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

Settings
{
  "remappings": [],
  "optimizer": {
    "enabled": false,
    "runs": 200
  },
  "evmVersion": "istanbul",
  "libraries": {},
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "abi"
      ]
    }
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"uint256","name":"initialBatchCount","type":"uint256"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"activateSale","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":"collageURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"deactivateSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"imagesURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"metadataLocked","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"metadataURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfTokens","type":"uint256"}],"name":"mintTokens","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":"provenanceURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"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":"_collageURI","type":"string"},{"internalType":"string","name":"_imagesURI","type":"string"},{"internalType":"string","name":"_metadataURI","type":"string"}],"name":"setLinks","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":"tokenPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenPrice","type":"uint256"}],"name":"updateTokenPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"contract IERC20","name":"token","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"bool","name":"hasVerifiedToken","type":"bool"}],"name":"withdrawOther","outputs":[],"stateMutability":"nonpayable","type":"function"}]

608060405266470de4df8200006007556001600860006101000a81548160ff0219169083151502179055506000600860016101000a81548160ff0219169083151502179055506040518060400160405280600b81526020017f4e6f742053657420596574000000000000000000000000000000000000000000815250600990805190602001906200009292919062000835565b506040518060400160405280600b81526020017f4e6f742053657420596574000000000000000000000000000000000000000000815250600a9080519060200190620000e092919062000835565b506040518060400160405280600b81526020017f4e6f742053657420596574000000000000000000000000000000000000000000815250600b90805190602001906200012e92919062000835565b503480156200013c57600080fd5b506040516200510d3803806200510d83398181016040528101906200016291906200093f565b6040518060400160405280600b81526020017f5361746f736869626c65730000000000000000000000000000000000000000008152506040518060400160405280600481526020017f53424c53000000000000000000000000000000000000000000000000000000008152508160009080519060200190620001e692919062000835565b508060019080519060200190620001ff92919062000835565b505050600062000214620002cb60201b60201c565b905080600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a350620002c481620002d360201b60201c565b5062000ddf565b600033905090565b60005b818161ffff1610156200033757620002fa600c6200033b60201b62001dd21760201c565b60006200030c6200035160201b60201c565b90506200032033826200036f60201b60201c565b5080806200032e9062000c6b565b915050620002d6565b5050565b6001816000016000828254019250508190555050565b60006200036a600c6200039560201b62001de81760201c565b905090565b62000391828260405180602001604052806000815250620003a360201b60201c565b5050565b600081600001549050919050565b620003b583836200041160201b60201c565b620003ca6000848484620005f760201b60201c565b6200040c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620004039062000a97565b60405180910390fd5b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141562000484576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200047b9062000adb565b60405180910390fd5b6200049581620007b160201b60201c565b15620004d8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620004cf9062000ab9565b60405180910390fd5b620004ec600083836200081d60201b60201c565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546200053e919062000b2a565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b6000620006258473ffffffffffffffffffffffffffffffffffffffff166200082260201b62001df61760201c565b15620007a4578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0262000657620002cb60201b60201c565b8786866040518563ffffffff1660e01b81526004016200067b949392919062000a43565b602060405180830381600087803b1580156200069657600080fd5b505af1925050508015620006ca57506040513d601f19601f82011682018060405250810190620006c7919062000913565b60015b62000753573d8060008114620006fd576040519150601f19603f3d011682016040523d82523d6000602084013e62000702565b606091505b506000815114156200074b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620007429062000a97565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050620007a9565b600190505b949350505050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b505050565b600080823b905060008111915050919050565b828054620008439062000c35565b90600052602060002090601f016020900481019282620008675760008555620008b3565b82601f106200088257805160ff1916838001178555620008b3565b82800160010185558215620008b3579182015b82811115620008b257825182559160200191906001019062000895565b5b509050620008c29190620008c6565b5090565b5b80821115620008e1576000816000905550600101620008c7565b5090565b600081519050620008f68162000dab565b92915050565b6000815190506200090d8162000dc5565b92915050565b6000602082840312156200092657600080fd5b60006200093684828501620008e5565b91505092915050565b6000602082840312156200095257600080fd5b60006200096284828501620008fc565b91505092915050565b620009768162000b87565b82525050565b6000620009898262000afd565b62000995818562000b08565b9350620009a781856020860162000bff565b620009b28162000cf9565b840191505092915050565b6000620009cc60328362000b19565b9150620009d98262000d0a565b604082019050919050565b6000620009f3601c8362000b19565b915062000a008262000d59565b602082019050919050565b600062000a1a60208362000b19565b915062000a278262000d82565b602082019050919050565b62000a3d8162000bf5565b82525050565b600060808201905062000a5a60008301876200096b565b62000a6960208301866200096b565b62000a78604083018562000a32565b818103606083015262000a8c81846200097c565b905095945050505050565b6000602082019050818103600083015262000ab281620009bd565b9050919050565b6000602082019050818103600083015262000ad481620009e4565b9050919050565b6000602082019050818103600083015262000af68162000a0b565b9050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600062000b378262000bf5565b915062000b448362000bf5565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111562000b7c5762000b7b62000c9b565b5b828201905092915050565b600062000b948262000bd5565b9050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600061ffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b60005b8381101562000c1f57808201518184015260208101905062000c02565b8381111562000c2f576000848401525b50505050565b6000600282049050600182168062000c4e57607f821691505b6020821081141562000c655762000c6462000cca565b5b50919050565b600062000c788262000bc7565b915061ffff82141562000c905762000c8f62000c9b565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000601f19601f8301169050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b62000db68162000b9b565b811462000dc257600080fd5b50565b62000dd08162000bf5565b811462000ddc57600080fd5b50565b61431e8062000def6000396000f3fe6080604052600436106101e35760003560e01c8063715018a611610102578063b88d4fde11610095578063e985e9c511610064578063e985e9c514610689578063eb8d2444146106c6578063ed9354ad146106f1578063f2fde38b1461071a576101e3565b8063b88d4fde146105e1578063c721f08d1461060a578063c87b56dd14610621578063d5abeb011461065e576101e3565b806395d89b41116100d157806395d89b411461054657806397304ced146105715780639fb9f4df1461058d578063a22cb465146105b8576101e3565b8063715018a6146104ae5780637a19b5c1146104c55780637ff9b596146104f05780638da5cb5b1461051b576101e3565b806342842e0e1161017a57806365477dc01161014957806365477dc0146103f2578063676c0d771461041d57806369d2ceb11461044657806370a0823114610471576101e3565b806342842e0e1461034c578063475025f414610375578063616d0dfd1461039e5780636352211e146103b5576101e3565b8063095ea7b3116101b6578063095ea7b3146102b857806318160ddd146102e157806323b872dd1461030c5780633ccfd60b14610335576101e3565b806301ffc9a7146101e857806303ee438c1461022557806306fdde0314610250578063081812fc1461027b575b600080fd5b3480156101f457600080fd5b5061020f600480360381019061020a9190612d44565b610743565b60405161021c91906133ef565b60405180910390f35b34801561023157600080fd5b5061023a610825565b604051610247919061340a565b60405180910390f35b34801561025c57600080fd5b506102656108b3565b604051610272919061340a565b60405180910390f35b34801561028757600080fd5b506102a2600480360381019061029d9190612e7c565b610945565b6040516102af919061335f565b60405180910390f35b3480156102c457600080fd5b506102df60048036038101906102da9190612cdf565b6109ca565b005b3480156102ed57600080fd5b506102f6610ae2565b6040516103039190613787565b60405180910390f35b34801561031857600080fd5b50610333600480360381019061032e9190612bd9565b610af3565b005b34801561034157600080fd5b5061034a610b53565b005b34801561035857600080fd5b50610373600480360381019061036e9190612bd9565b610c61565b005b34801561038157600080fd5b5061039c60048036038101906103979190612de5565b610c81565b005b3480156103aa57600080fd5b506103b3610db2565b005b3480156103c157600080fd5b506103dc60048036038101906103d79190612e7c565b610e4b565b6040516103e9919061335f565b60405180910390f35b3480156103fe57600080fd5b50610407610efd565b604051610414919061340a565b60405180910390f35b34801561042957600080fd5b50610444600480360381019061043f9190612e7c565b610f19565b005b34801561045257600080fd5b5061045b611033565b60405161046891906133ef565b60405180910390f35b34801561047d57600080fd5b5061049860048036038101906104939190612b74565b611046565b6040516104a59190613787565b60405180910390f35b3480156104ba57600080fd5b506104c36110fe565b005b3480156104d157600080fd5b506104da61123b565b6040516104e7919061340a565b60405180910390f35b3480156104fc57600080fd5b506105056112c9565b6040516105129190613787565b60405180910390f35b34801561052757600080fd5b506105306112cf565b60405161053d919061335f565b60405180910390f35b34801561055257600080fd5b5061055b6112f9565b604051610568919061340a565b60405180910390f35b61058b60048036038101906105869190612e7c565b61138b565b005b34801561059957600080fd5b506105a2611526565b6040516105af919061340a565b60405180910390f35b3480156105c457600080fd5b506105df60048036038101906105da9190612ca3565b6115b4565b005b3480156105ed57600080fd5b5061060860048036038101906106039190612c28565b611735565b005b34801561061657600080fd5b5061061f611797565b005b34801561062d57600080fd5b5061064860048036038101906106439190612e7c565b611830565b604051610655919061340a565b60405180910390f35b34801561066a57600080fd5b506106736118d7565b604051610680919061376c565b60405180910390f35b34801561069557600080fd5b506106b060048036038101906106ab9190612b9d565b6118dd565b6040516106bd91906133ef565b60405180910390f35b3480156106d257600080fd5b506106db611971565b6040516106e891906133ef565b60405180910390f35b3480156106fd57600080fd5b5061071860048036038101906107139190612d96565b611984565b005b34801561072657600080fd5b50610741600480360381019061073c9190612b74565b611c26565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061080e57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061081e575061081d82611e09565b5b9050919050565b600b805461083290613a57565b80601f016020809104026020016040519081016040528092919081815260200182805461085e90613a57565b80156108ab5780601f10610880576101008083540402835291602001916108ab565b820191906000526020600020905b81548152906001019060200180831161088e57829003601f168201915b505050505081565b6060600080546108c290613a57565b80601f01602080910402602001604051908101604052809291908181526020018280546108ee90613a57565b801561093b5780601f106109105761010080835404028352916020019161093b565b820191906000526020600020905b81548152906001019060200180831161091e57829003601f168201915b5050505050905090565b600061095082611e73565b61098f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109869061364c565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006109d582610e4b565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610a46576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a3d906136cc565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610a65611edf565b73ffffffffffffffffffffffffffffffffffffffff161480610a945750610a9381610a8e611edf565b6118dd565b5b610ad3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aca9061358c565b60405180910390fd5b610add8383611ee7565b505050565b6000610aee600c611de8565b905090565b610b04610afe611edf565b82611fa0565b610b43576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b3a906136ec565b60405180910390fd5b610b4e83838361207e565b505050565b610b5b611edf565b73ffffffffffffffffffffffffffffffffffffffff16610b796112cf565b73ffffffffffffffffffffffffffffffffffffffff1614610bcf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bc69061366c565b60405180910390fd5b60004711610c12576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c099061346c565b60405180910390fd5b60004790503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610c5d573d6000803e3d6000fd5b5050565b610c7c83838360405180602001604052806000815250611735565b505050565b610c89611edf565b73ffffffffffffffffffffffffffffffffffffffff16610ca76112cf565b73ffffffffffffffffffffffffffffffffffffffff1614610cfd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cf49061366c565b60405180910390fd5b600860019054906101000a900460ff1615610d4d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d449061342c565b60405180910390fd5b82600a9080519060200190610d63929190612959565b508160099080519060200190610d7a929190612959565b5080600b9080519060200190610d91929190612959565b506001600860016101000a81548160ff021916908315150217905550505050565b610dba611edf565b73ffffffffffffffffffffffffffffffffffffffff16610dd86112cf565b73ffffffffffffffffffffffffffffffffffffffff1614610e2e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e259061366c565b60405180910390fd5b6000600860006101000a81548160ff021916908315150217905550565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610ef4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eeb906135cc565b60405180910390fd5b80915050919050565b6040518060600160405280603581526020016142926035913981565b610f21611edf565b73ffffffffffffffffffffffffffffffffffffffff16610f3f6112cf565b73ffffffffffffffffffffffffffffffffffffffff1614610f95576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f8c9061366c565b60405180910390fd5b6001811015610fd9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fd0906134ec565b60405180910390fd5b600860009054906101000a900460ff1615611029576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110209061370c565b60405180910390fd5b8060078190555050565b600860019054906101000a900460ff1681565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156110b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110ae906135ac565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611106611edf565b73ffffffffffffffffffffffffffffffffffffffff166111246112cf565b73ffffffffffffffffffffffffffffffffffffffff161461117a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111719061366c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b600a805461124890613a57565b80601f016020809104026020016040519081016040528092919081815260200182805461127490613a57565b80156112c15780601f10611296576101008083540402835291602001916112c1565b820191906000526020600020905b8154815290600101906020018083116112a457829003601f168201915b505050505081565b60075481565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606001805461130890613a57565b80601f016020809104026020016040519081016040528092919081815260200182805461133490613a57565b80156113815780601f1061135657610100808354040283529160200191611381565b820191906000526020600020905b81548152906001019060200180831161136457829003601f168201915b5050505050905090565b600860009054906101000a900460ff166113da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113d19061344c565b60405180910390fd5b600181101561141e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114159061360c565b60405180910390fd5b6032811115611462576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114599061374c565b60405180910390fd5b61138861ffff1661148382611475610ae2565b6122da90919063ffffffff16565b11156114c4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114bb906135ec565b60405180910390fd5b346114da826007546122f090919063ffffffff16565b1461151a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115119061372c565b60405180910390fd5b61152381612306565b50565b6009805461153390613a57565b80601f016020809104026020016040519081016040528092919081815260200182805461155f90613a57565b80156115ac5780601f10611581576101008083540402835291602001916115ac565b820191906000526020600020905b81548152906001019060200180831161158f57829003601f168201915b505050505081565b6115bc611edf565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561162a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116219061352c565b60405180910390fd5b8060056000611637611edf565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166116e4611edf565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161172991906133ef565b60405180910390a35050565b611746611740611edf565b83611fa0565b611785576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161177c906136ec565b60405180910390fd5b6117918484848461234d565b50505050565b61179f611edf565b73ffffffffffffffffffffffffffffffffffffffff166117bd6112cf565b73ffffffffffffffffffffffffffffffffffffffff1614611813576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161180a9061366c565b60405180910390fd5b6001600860006101000a81548160ff021916908315150217905550565b606061183b82611e73565b61187a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611871906136ac565b60405180910390fd5b60006118846123a9565b905060008151116118a457604051806020016040528060008152506118cf565b806118ae846123c9565b6040516020016118bf92919061333b565b6040516020818303038152906040525b915050919050565b61138881565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600860009054906101000a900460ff1681565b61198c611edf565b73ffffffffffffffffffffffffffffffffffffffff166119aa6112cf565b73ffffffffffffffffffffffffffffffffffffffff1614611a00576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119f79061366c565b60405180910390fd5b80611a40576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a379061354c565b60405180910390fd5b60008373ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401611a7b919061335f565b60206040518083038186803b158015611a9357600080fd5b505afa158015611aa7573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611acb9190612ea5565b11611b0b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b029061346c565b60405180910390fd5b8273ffffffffffffffffffffffffffffffffffffffff1663a9059cbb838573ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401611b61919061335f565b60206040518083038186803b158015611b7957600080fd5b505afa158015611b8d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611bb19190612ea5565b6040518363ffffffff1660e01b8152600401611bce9291906133c6565b602060405180830381600087803b158015611be857600080fd5b505af1158015611bfc573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611c209190612d1b565b50505050565b611c2e611edf565b73ffffffffffffffffffffffffffffffffffffffff16611c4c6112cf565b73ffffffffffffffffffffffffffffffffffffffff1614611ca2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c999061366c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611d12576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d09906134ac565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6001816000016000828254019250508190555050565b600081600001549050919050565b600080823b905060008111915050919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611f5a83610e4b565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611fab82611e73565b611fea576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fe19061356c565b60405180910390fd5b6000611ff583610e4b565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061206457508373ffffffffffffffffffffffffffffffffffffffff1661204c84610945565b73ffffffffffffffffffffffffffffffffffffffff16145b80612075575061207481856118dd565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661209e82610e4b565b73ffffffffffffffffffffffffffffffffffffffff16146120f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120eb9061368c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612164576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161215b9061350c565b60405180910390fd5b61216f838383612576565b61217a600082611ee7565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546121ca919061394d565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612221919061386c565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b600081836122e8919061386c565b905092915050565b600081836122fe91906138f3565b905092915050565b60005b818161ffff1610156123495761231f600c611dd2565b6000612329610ae2565b9050612335338261257b565b50808061234190613aba565b915050612309565b5050565b61235884848461207e565b61236484848484612599565b6123a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161239a9061348c565b60405180910390fd5b50505050565b60606040518060600160405280602281526020016142c760229139905090565b60606000821415612411576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612571565b600082905060005b6000821461244357808061242c90613ae5565b915050600a8261243c91906138c2565b9150612419565b60008167ffffffffffffffff811115612485577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156124b75781602001600182028036833780820191505090505b5090505b6000851461256a576001826124d0919061394d565b9150600a856124df9190613b2e565b60306124eb919061386c565b60f81b818381518110612527577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561256391906138c2565b94506124bb565b8093505050505b919050565b505050565b612595828260405180602001604052806000815250612730565b5050565b60006125ba8473ffffffffffffffffffffffffffffffffffffffff16611df6565b15612723578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026125e3611edf565b8786866040518563ffffffff1660e01b8152600401612605949392919061337a565b602060405180830381600087803b15801561261f57600080fd5b505af192505050801561265057506040513d601f19601f8201168201806040525081019061264d9190612d6d565b60015b6126d3573d8060008114612680576040519150601f19603f3d011682016040523d82523d6000602084013e612685565b606091505b506000815114156126cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126c29061348c565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612728565b600190505b949350505050565b61273a838361278b565b6127476000848484612599565b612786576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161277d9061348c565b60405180910390fd5b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156127fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127f29061362c565b60405180910390fd5b61280481611e73565b15612844576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161283b906134cc565b60405180910390fd5b61285060008383612576565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546128a0919061386c565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b82805461296590613a57565b90600052602060002090601f01602090048101928261298757600085556129ce565b82601f106129a057805160ff19168380011785556129ce565b828001600101855582156129ce579182015b828111156129cd5782518255916020019190600101906129b2565b5b5090506129db91906129df565b5090565b5b808211156129f85760008160009055506001016129e0565b5090565b6000612a0f612a0a846137c7565b6137a2565b905082815260208101848484011115612a2757600080fd5b612a32848285613a15565b509392505050565b6000612a4d612a48846137f8565b6137a2565b905082815260208101848484011115612a6557600080fd5b612a70848285613a15565b509392505050565b600081359050612a878161421e565b92915050565b600081359050612a9c81614235565b92915050565b600081519050612ab181614235565b92915050565b600081359050612ac68161424c565b92915050565b600081519050612adb8161424c565b92915050565b600082601f830112612af257600080fd5b8135612b028482602086016129fc565b91505092915050565b600081359050612b1a81614263565b92915050565b600082601f830112612b3157600080fd5b8135612b41848260208601612a3a565b91505092915050565b600081359050612b598161427a565b92915050565b600081519050612b6e8161427a565b92915050565b600060208284031215612b8657600080fd5b6000612b9484828501612a78565b91505092915050565b60008060408385031215612bb057600080fd5b6000612bbe85828601612a78565b9250506020612bcf85828601612a78565b9150509250929050565b600080600060608486031215612bee57600080fd5b6000612bfc86828701612a78565b9350506020612c0d86828701612a78565b9250506040612c1e86828701612b4a565b9150509250925092565b60008060008060808587031215612c3e57600080fd5b6000612c4c87828801612a78565b9450506020612c5d87828801612a78565b9350506040612c6e87828801612b4a565b925050606085013567ffffffffffffffff811115612c8b57600080fd5b612c9787828801612ae1565b91505092959194509250565b60008060408385031215612cb657600080fd5b6000612cc485828601612a78565b9250506020612cd585828601612a8d565b9150509250929050565b60008060408385031215612cf257600080fd5b6000612d0085828601612a78565b9250506020612d1185828601612b4a565b9150509250929050565b600060208284031215612d2d57600080fd5b6000612d3b84828501612aa2565b91505092915050565b600060208284031215612d5657600080fd5b6000612d6484828501612ab7565b91505092915050565b600060208284031215612d7f57600080fd5b6000612d8d84828501612acc565b91505092915050565b600080600060608486031215612dab57600080fd5b6000612db986828701612b0b565b9350506020612dca86828701612a78565b9250506040612ddb86828701612a8d565b9150509250925092565b600080600060608486031215612dfa57600080fd5b600084013567ffffffffffffffff811115612e1457600080fd5b612e2086828701612b20565b935050602084013567ffffffffffffffff811115612e3d57600080fd5b612e4986828701612b20565b925050604084013567ffffffffffffffff811115612e6657600080fd5b612e7286828701612b20565b9150509250925092565b600060208284031215612e8e57600080fd5b6000612e9c84828501612b4a565b91505092915050565b600060208284031215612eb757600080fd5b6000612ec584828501612b5f565b91505092915050565b612ed781613981565b82525050565b612ee681613993565b82525050565b6000612ef782613829565b612f01818561383f565b9350612f11818560208601613a24565b612f1a81613c1b565b840191505092915050565b6000612f3082613834565b612f3a8185613850565b9350612f4a818560208601613a24565b612f5381613c1b565b840191505092915050565b6000612f6982613834565b612f738185613861565b9350612f83818560208601613a24565b80840191505092915050565b6000612f9c601483613850565b9150612fa782613c2c565b602082019050919050565b6000612fbf601383613850565b9150612fca82613c55565b602082019050919050565b6000612fe2601383613850565b9150612fed82613c7e565b602082019050919050565b6000613005603283613850565b915061301082613ca7565b604082019050919050565b6000613028602683613850565b915061303382613cf6565b604082019050919050565b600061304b601c83613850565b915061305682613d45565b602082019050919050565b600061306e600c83613850565b915061307982613d6e565b602082019050919050565b6000613091602483613850565b915061309c82613d97565b604082019050919050565b60006130b4601983613850565b91506130bf82613de6565b602082019050919050565b60006130d7601483613850565b91506130e282613e0f565b602082019050919050565b60006130fa602c83613850565b915061310582613e38565b604082019050919050565b600061311d603883613850565b915061312882613e87565b604082019050919050565b6000613140602a83613850565b915061314b82613ed6565b604082019050919050565b6000613163602983613850565b915061316e82613f25565b604082019050919050565b6000613186601683613850565b915061319182613f74565b602082019050919050565b60006131a9601583613850565b91506131b482613f9d565b602082019050919050565b60006131cc602083613850565b91506131d782613fc6565b602082019050919050565b60006131ef602c83613850565b91506131fa82613fef565b604082019050919050565b6000613212602083613850565b915061321d8261403e565b602082019050919050565b6000613235602983613850565b915061324082614067565b604082019050919050565b6000613258602f83613850565b9150613263826140b6565b604082019050919050565b600061327b602183613850565b915061328682614105565b604082019050919050565b600061329e603183613850565b91506132a982614154565b604082019050919050565b60006132c1600e83613850565b91506132cc826141a3565b602082019050919050565b60006132e4601883613850565b91506132ef826141cc565b602082019050919050565b6000613307601083613850565b9150613312826141f5565b602082019050919050565b613326816139dd565b82525050565b61333581613a0b565b82525050565b60006133478285612f5e565b91506133538284612f5e565b91508190509392505050565b60006020820190506133746000830184612ece565b92915050565b600060808201905061338f6000830187612ece565b61339c6020830186612ece565b6133a9604083018561332c565b81810360608301526133bb8184612eec565b905095945050505050565b60006040820190506133db6000830185612ece565b6133e8602083018461332c565b9392505050565b60006020820190506134046000830184612edd565b92915050565b600060208201905081810360008301526134248184612f25565b905092915050565b6000602082019050818103600083015261344581612f8f565b9050919050565b6000602082019050818103600083015261346581612fb2565b9050919050565b6000602082019050818103600083015261348581612fd5565b9050919050565b600060208201905081810360008301526134a581612ff8565b9050919050565b600060208201905081810360008301526134c58161301b565b9050919050565b600060208201905081810360008301526134e58161303e565b9050919050565b6000602082019050818103600083015261350581613061565b9050919050565b6000602082019050818103600083015261352581613084565b9050919050565b60006020820190508181036000830152613545816130a7565b9050919050565b60006020820190508181036000830152613565816130ca565b9050919050565b60006020820190508181036000830152613585816130ed565b9050919050565b600060208201905081810360008301526135a581613110565b9050919050565b600060208201905081810360008301526135c581613133565b9050919050565b600060208201905081810360008301526135e581613156565b9050919050565b6000602082019050818103600083015261360581613179565b9050919050565b600060208201905081810360008301526136258161319c565b9050919050565b60006020820190508181036000830152613645816131bf565b9050919050565b60006020820190508181036000830152613665816131e2565b9050919050565b6000602082019050818103600083015261368581613205565b9050919050565b600060208201905081810360008301526136a581613228565b9050919050565b600060208201905081810360008301526136c58161324b565b9050919050565b600060208201905081810360008301526136e58161326e565b9050919050565b6000602082019050818103600083015261370581613291565b9050919050565b60006020820190508181036000830152613725816132b4565b9050919050565b60006020820190508181036000830152613745816132d7565b9050919050565b60006020820190508181036000830152613765816132fa565b9050919050565b6000602082019050613781600083018461331d565b92915050565b600060208201905061379c600083018461332c565b92915050565b60006137ac6137bd565b90506137b88282613a89565b919050565b6000604051905090565b600067ffffffffffffffff8211156137e2576137e1613bec565b5b6137eb82613c1b565b9050602081019050919050565b600067ffffffffffffffff82111561381357613812613bec565b5b61381c82613c1b565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600061387782613a0b565b915061388283613a0b565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156138b7576138b6613b5f565b5b828201905092915050565b60006138cd82613a0b565b91506138d883613a0b565b9250826138e8576138e7613b8e565b5b828204905092915050565b60006138fe82613a0b565b915061390983613a0b565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561394257613941613b5f565b5b828202905092915050565b600061395882613a0b565b915061396383613a0b565b92508282101561397657613975613b5f565b5b828203905092915050565b600061398c826139eb565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b60006139d682613981565b9050919050565b600061ffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613a42578082015181840152602081019050613a27565b83811115613a51576000848401525b50505050565b60006002820490506001821680613a6f57607f821691505b60208210811415613a8357613a82613bbd565b5b50919050565b613a9282613c1b565b810181811067ffffffffffffffff82111715613ab157613ab0613bec565b5b80604052505050565b6000613ac5826139dd565b915061ffff821415613ada57613ad9613b5f565b5b600182019050919050565b6000613af082613a0b565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613b2357613b22613b5f565b5b600182019050919050565b6000613b3982613a0b565b9150613b4483613a0b565b925082613b5457613b53613b8e565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f48617320616c7265616479206265656e20736574000000000000000000000000600082015250565b7f53616c65206d7573742062652061637469766500000000000000000000000000600082015250565b7f4e6f7468696e6720746f20776974686472617700000000000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4d757374206265203e3d20310000000000000000000000000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4e65656420746f2076657269667920746f6b656e000000000000000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4e6f7420656e6f75676820746f6b656e73206c65667400000000000000000000600082015250565b7f4e656564206174206c65617374203120746f6b656e0000000000000000000000600082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f53616c6520697320616374697665000000000000000000000000000000000000600082015250565b7f457468657220616d6f756e74206e6f7420636f72726563740000000000000000600082015250565b7f4d617820353020617420612074696d6500000000000000000000000000000000600082015250565b61422781613981565b811461423257600080fd5b50565b61423e81613993565b811461424957600080fd5b50565b6142558161399f565b811461426057600080fd5b50565b61426c816139cb565b811461427757600080fd5b50565b61428381613a0b565b811461428e57600080fd5b5056fe697066733a2f2f516d6637354c4661636962394a64705942664c76554846524a7a3346394675517a6e75784439563557324d45537868747470733a2f2f6170692e7361746f736869626c65732e636f6d2f746f6b656e2fa264697066735822122030cba3418bcf7d09b9d7ca238ed8dfda63f790cf29388887bbc43cb8a7626d8864736f6c634300080400330000000000000000000000000000000000000000000000000000000000000032

Deployed Bytecode

0x6080604052600436106101e35760003560e01c8063715018a611610102578063b88d4fde11610095578063e985e9c511610064578063e985e9c514610689578063eb8d2444146106c6578063ed9354ad146106f1578063f2fde38b1461071a576101e3565b8063b88d4fde146105e1578063c721f08d1461060a578063c87b56dd14610621578063d5abeb011461065e576101e3565b806395d89b41116100d157806395d89b411461054657806397304ced146105715780639fb9f4df1461058d578063a22cb465146105b8576101e3565b8063715018a6146104ae5780637a19b5c1146104c55780637ff9b596146104f05780638da5cb5b1461051b576101e3565b806342842e0e1161017a57806365477dc01161014957806365477dc0146103f2578063676c0d771461041d57806369d2ceb11461044657806370a0823114610471576101e3565b806342842e0e1461034c578063475025f414610375578063616d0dfd1461039e5780636352211e146103b5576101e3565b8063095ea7b3116101b6578063095ea7b3146102b857806318160ddd146102e157806323b872dd1461030c5780633ccfd60b14610335576101e3565b806301ffc9a7146101e857806303ee438c1461022557806306fdde0314610250578063081812fc1461027b575b600080fd5b3480156101f457600080fd5b5061020f600480360381019061020a9190612d44565b610743565b60405161021c91906133ef565b60405180910390f35b34801561023157600080fd5b5061023a610825565b604051610247919061340a565b60405180910390f35b34801561025c57600080fd5b506102656108b3565b604051610272919061340a565b60405180910390f35b34801561028757600080fd5b506102a2600480360381019061029d9190612e7c565b610945565b6040516102af919061335f565b60405180910390f35b3480156102c457600080fd5b506102df60048036038101906102da9190612cdf565b6109ca565b005b3480156102ed57600080fd5b506102f6610ae2565b6040516103039190613787565b60405180910390f35b34801561031857600080fd5b50610333600480360381019061032e9190612bd9565b610af3565b005b34801561034157600080fd5b5061034a610b53565b005b34801561035857600080fd5b50610373600480360381019061036e9190612bd9565b610c61565b005b34801561038157600080fd5b5061039c60048036038101906103979190612de5565b610c81565b005b3480156103aa57600080fd5b506103b3610db2565b005b3480156103c157600080fd5b506103dc60048036038101906103d79190612e7c565b610e4b565b6040516103e9919061335f565b60405180910390f35b3480156103fe57600080fd5b50610407610efd565b604051610414919061340a565b60405180910390f35b34801561042957600080fd5b50610444600480360381019061043f9190612e7c565b610f19565b005b34801561045257600080fd5b5061045b611033565b60405161046891906133ef565b60405180910390f35b34801561047d57600080fd5b5061049860048036038101906104939190612b74565b611046565b6040516104a59190613787565b60405180910390f35b3480156104ba57600080fd5b506104c36110fe565b005b3480156104d157600080fd5b506104da61123b565b6040516104e7919061340a565b60405180910390f35b3480156104fc57600080fd5b506105056112c9565b6040516105129190613787565b60405180910390f35b34801561052757600080fd5b506105306112cf565b60405161053d919061335f565b60405180910390f35b34801561055257600080fd5b5061055b6112f9565b604051610568919061340a565b60405180910390f35b61058b60048036038101906105869190612e7c565b61138b565b005b34801561059957600080fd5b506105a2611526565b6040516105af919061340a565b60405180910390f35b3480156105c457600080fd5b506105df60048036038101906105da9190612ca3565b6115b4565b005b3480156105ed57600080fd5b5061060860048036038101906106039190612c28565b611735565b005b34801561061657600080fd5b5061061f611797565b005b34801561062d57600080fd5b5061064860048036038101906106439190612e7c565b611830565b604051610655919061340a565b60405180910390f35b34801561066a57600080fd5b506106736118d7565b604051610680919061376c565b60405180910390f35b34801561069557600080fd5b506106b060048036038101906106ab9190612b9d565b6118dd565b6040516106bd91906133ef565b60405180910390f35b3480156106d257600080fd5b506106db611971565b6040516106e891906133ef565b60405180910390f35b3480156106fd57600080fd5b5061071860048036038101906107139190612d96565b611984565b005b34801561072657600080fd5b50610741600480360381019061073c9190612b74565b611c26565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061080e57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061081e575061081d82611e09565b5b9050919050565b600b805461083290613a57565b80601f016020809104026020016040519081016040528092919081815260200182805461085e90613a57565b80156108ab5780601f10610880576101008083540402835291602001916108ab565b820191906000526020600020905b81548152906001019060200180831161088e57829003601f168201915b505050505081565b6060600080546108c290613a57565b80601f01602080910402602001604051908101604052809291908181526020018280546108ee90613a57565b801561093b5780601f106109105761010080835404028352916020019161093b565b820191906000526020600020905b81548152906001019060200180831161091e57829003601f168201915b5050505050905090565b600061095082611e73565b61098f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109869061364c565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006109d582610e4b565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610a46576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a3d906136cc565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610a65611edf565b73ffffffffffffffffffffffffffffffffffffffff161480610a945750610a9381610a8e611edf565b6118dd565b5b610ad3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aca9061358c565b60405180910390fd5b610add8383611ee7565b505050565b6000610aee600c611de8565b905090565b610b04610afe611edf565b82611fa0565b610b43576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b3a906136ec565b60405180910390fd5b610b4e83838361207e565b505050565b610b5b611edf565b73ffffffffffffffffffffffffffffffffffffffff16610b796112cf565b73ffffffffffffffffffffffffffffffffffffffff1614610bcf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bc69061366c565b60405180910390fd5b60004711610c12576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c099061346c565b60405180910390fd5b60004790503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610c5d573d6000803e3d6000fd5b5050565b610c7c83838360405180602001604052806000815250611735565b505050565b610c89611edf565b73ffffffffffffffffffffffffffffffffffffffff16610ca76112cf565b73ffffffffffffffffffffffffffffffffffffffff1614610cfd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cf49061366c565b60405180910390fd5b600860019054906101000a900460ff1615610d4d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d449061342c565b60405180910390fd5b82600a9080519060200190610d63929190612959565b508160099080519060200190610d7a929190612959565b5080600b9080519060200190610d91929190612959565b506001600860016101000a81548160ff021916908315150217905550505050565b610dba611edf565b73ffffffffffffffffffffffffffffffffffffffff16610dd86112cf565b73ffffffffffffffffffffffffffffffffffffffff1614610e2e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e259061366c565b60405180910390fd5b6000600860006101000a81548160ff021916908315150217905550565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610ef4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eeb906135cc565b60405180910390fd5b80915050919050565b6040518060600160405280603581526020016142926035913981565b610f21611edf565b73ffffffffffffffffffffffffffffffffffffffff16610f3f6112cf565b73ffffffffffffffffffffffffffffffffffffffff1614610f95576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f8c9061366c565b60405180910390fd5b6001811015610fd9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fd0906134ec565b60405180910390fd5b600860009054906101000a900460ff1615611029576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110209061370c565b60405180910390fd5b8060078190555050565b600860019054906101000a900460ff1681565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156110b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110ae906135ac565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611106611edf565b73ffffffffffffffffffffffffffffffffffffffff166111246112cf565b73ffffffffffffffffffffffffffffffffffffffff161461117a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111719061366c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b600a805461124890613a57565b80601f016020809104026020016040519081016040528092919081815260200182805461127490613a57565b80156112c15780601f10611296576101008083540402835291602001916112c1565b820191906000526020600020905b8154815290600101906020018083116112a457829003601f168201915b505050505081565b60075481565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606001805461130890613a57565b80601f016020809104026020016040519081016040528092919081815260200182805461133490613a57565b80156113815780601f1061135657610100808354040283529160200191611381565b820191906000526020600020905b81548152906001019060200180831161136457829003601f168201915b5050505050905090565b600860009054906101000a900460ff166113da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113d19061344c565b60405180910390fd5b600181101561141e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114159061360c565b60405180910390fd5b6032811115611462576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114599061374c565b60405180910390fd5b61138861ffff1661148382611475610ae2565b6122da90919063ffffffff16565b11156114c4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114bb906135ec565b60405180910390fd5b346114da826007546122f090919063ffffffff16565b1461151a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115119061372c565b60405180910390fd5b61152381612306565b50565b6009805461153390613a57565b80601f016020809104026020016040519081016040528092919081815260200182805461155f90613a57565b80156115ac5780601f10611581576101008083540402835291602001916115ac565b820191906000526020600020905b81548152906001019060200180831161158f57829003601f168201915b505050505081565b6115bc611edf565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561162a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116219061352c565b60405180910390fd5b8060056000611637611edf565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166116e4611edf565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161172991906133ef565b60405180910390a35050565b611746611740611edf565b83611fa0565b611785576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161177c906136ec565b60405180910390fd5b6117918484848461234d565b50505050565b61179f611edf565b73ffffffffffffffffffffffffffffffffffffffff166117bd6112cf565b73ffffffffffffffffffffffffffffffffffffffff1614611813576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161180a9061366c565b60405180910390fd5b6001600860006101000a81548160ff021916908315150217905550565b606061183b82611e73565b61187a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611871906136ac565b60405180910390fd5b60006118846123a9565b905060008151116118a457604051806020016040528060008152506118cf565b806118ae846123c9565b6040516020016118bf92919061333b565b6040516020818303038152906040525b915050919050565b61138881565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600860009054906101000a900460ff1681565b61198c611edf565b73ffffffffffffffffffffffffffffffffffffffff166119aa6112cf565b73ffffffffffffffffffffffffffffffffffffffff1614611a00576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119f79061366c565b60405180910390fd5b80611a40576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a379061354c565b60405180910390fd5b60008373ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401611a7b919061335f565b60206040518083038186803b158015611a9357600080fd5b505afa158015611aa7573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611acb9190612ea5565b11611b0b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b029061346c565b60405180910390fd5b8273ffffffffffffffffffffffffffffffffffffffff1663a9059cbb838573ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401611b61919061335f565b60206040518083038186803b158015611b7957600080fd5b505afa158015611b8d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611bb19190612ea5565b6040518363ffffffff1660e01b8152600401611bce9291906133c6565b602060405180830381600087803b158015611be857600080fd5b505af1158015611bfc573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611c209190612d1b565b50505050565b611c2e611edf565b73ffffffffffffffffffffffffffffffffffffffff16611c4c6112cf565b73ffffffffffffffffffffffffffffffffffffffff1614611ca2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c999061366c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611d12576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d09906134ac565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6001816000016000828254019250508190555050565b600081600001549050919050565b600080823b905060008111915050919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611f5a83610e4b565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611fab82611e73565b611fea576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fe19061356c565b60405180910390fd5b6000611ff583610e4b565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061206457508373ffffffffffffffffffffffffffffffffffffffff1661204c84610945565b73ffffffffffffffffffffffffffffffffffffffff16145b80612075575061207481856118dd565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661209e82610e4b565b73ffffffffffffffffffffffffffffffffffffffff16146120f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120eb9061368c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612164576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161215b9061350c565b60405180910390fd5b61216f838383612576565b61217a600082611ee7565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546121ca919061394d565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612221919061386c565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b600081836122e8919061386c565b905092915050565b600081836122fe91906138f3565b905092915050565b60005b818161ffff1610156123495761231f600c611dd2565b6000612329610ae2565b9050612335338261257b565b50808061234190613aba565b915050612309565b5050565b61235884848461207e565b61236484848484612599565b6123a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161239a9061348c565b60405180910390fd5b50505050565b60606040518060600160405280602281526020016142c760229139905090565b60606000821415612411576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612571565b600082905060005b6000821461244357808061242c90613ae5565b915050600a8261243c91906138c2565b9150612419565b60008167ffffffffffffffff811115612485577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156124b75781602001600182028036833780820191505090505b5090505b6000851461256a576001826124d0919061394d565b9150600a856124df9190613b2e565b60306124eb919061386c565b60f81b818381518110612527577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561256391906138c2565b94506124bb565b8093505050505b919050565b505050565b612595828260405180602001604052806000815250612730565b5050565b60006125ba8473ffffffffffffffffffffffffffffffffffffffff16611df6565b15612723578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026125e3611edf565b8786866040518563ffffffff1660e01b8152600401612605949392919061337a565b602060405180830381600087803b15801561261f57600080fd5b505af192505050801561265057506040513d601f19601f8201168201806040525081019061264d9190612d6d565b60015b6126d3573d8060008114612680576040519150601f19603f3d011682016040523d82523d6000602084013e612685565b606091505b506000815114156126cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126c29061348c565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612728565b600190505b949350505050565b61273a838361278b565b6127476000848484612599565b612786576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161277d9061348c565b60405180910390fd5b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156127fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127f29061362c565b60405180910390fd5b61280481611e73565b15612844576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161283b906134cc565b60405180910390fd5b61285060008383612576565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546128a0919061386c565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b82805461296590613a57565b90600052602060002090601f01602090048101928261298757600085556129ce565b82601f106129a057805160ff19168380011785556129ce565b828001600101855582156129ce579182015b828111156129cd5782518255916020019190600101906129b2565b5b5090506129db91906129df565b5090565b5b808211156129f85760008160009055506001016129e0565b5090565b6000612a0f612a0a846137c7565b6137a2565b905082815260208101848484011115612a2757600080fd5b612a32848285613a15565b509392505050565b6000612a4d612a48846137f8565b6137a2565b905082815260208101848484011115612a6557600080fd5b612a70848285613a15565b509392505050565b600081359050612a878161421e565b92915050565b600081359050612a9c81614235565b92915050565b600081519050612ab181614235565b92915050565b600081359050612ac68161424c565b92915050565b600081519050612adb8161424c565b92915050565b600082601f830112612af257600080fd5b8135612b028482602086016129fc565b91505092915050565b600081359050612b1a81614263565b92915050565b600082601f830112612b3157600080fd5b8135612b41848260208601612a3a565b91505092915050565b600081359050612b598161427a565b92915050565b600081519050612b6e8161427a565b92915050565b600060208284031215612b8657600080fd5b6000612b9484828501612a78565b91505092915050565b60008060408385031215612bb057600080fd5b6000612bbe85828601612a78565b9250506020612bcf85828601612a78565b9150509250929050565b600080600060608486031215612bee57600080fd5b6000612bfc86828701612a78565b9350506020612c0d86828701612a78565b9250506040612c1e86828701612b4a565b9150509250925092565b60008060008060808587031215612c3e57600080fd5b6000612c4c87828801612a78565b9450506020612c5d87828801612a78565b9350506040612c6e87828801612b4a565b925050606085013567ffffffffffffffff811115612c8b57600080fd5b612c9787828801612ae1565b91505092959194509250565b60008060408385031215612cb657600080fd5b6000612cc485828601612a78565b9250506020612cd585828601612a8d565b9150509250929050565b60008060408385031215612cf257600080fd5b6000612d0085828601612a78565b9250506020612d1185828601612b4a565b9150509250929050565b600060208284031215612d2d57600080fd5b6000612d3b84828501612aa2565b91505092915050565b600060208284031215612d5657600080fd5b6000612d6484828501612ab7565b91505092915050565b600060208284031215612d7f57600080fd5b6000612d8d84828501612acc565b91505092915050565b600080600060608486031215612dab57600080fd5b6000612db986828701612b0b565b9350506020612dca86828701612a78565b9250506040612ddb86828701612a8d565b9150509250925092565b600080600060608486031215612dfa57600080fd5b600084013567ffffffffffffffff811115612e1457600080fd5b612e2086828701612b20565b935050602084013567ffffffffffffffff811115612e3d57600080fd5b612e4986828701612b20565b925050604084013567ffffffffffffffff811115612e6657600080fd5b612e7286828701612b20565b9150509250925092565b600060208284031215612e8e57600080fd5b6000612e9c84828501612b4a565b91505092915050565b600060208284031215612eb757600080fd5b6000612ec584828501612b5f565b91505092915050565b612ed781613981565b82525050565b612ee681613993565b82525050565b6000612ef782613829565b612f01818561383f565b9350612f11818560208601613a24565b612f1a81613c1b565b840191505092915050565b6000612f3082613834565b612f3a8185613850565b9350612f4a818560208601613a24565b612f5381613c1b565b840191505092915050565b6000612f6982613834565b612f738185613861565b9350612f83818560208601613a24565b80840191505092915050565b6000612f9c601483613850565b9150612fa782613c2c565b602082019050919050565b6000612fbf601383613850565b9150612fca82613c55565b602082019050919050565b6000612fe2601383613850565b9150612fed82613c7e565b602082019050919050565b6000613005603283613850565b915061301082613ca7565b604082019050919050565b6000613028602683613850565b915061303382613cf6565b604082019050919050565b600061304b601c83613850565b915061305682613d45565b602082019050919050565b600061306e600c83613850565b915061307982613d6e565b602082019050919050565b6000613091602483613850565b915061309c82613d97565b604082019050919050565b60006130b4601983613850565b91506130bf82613de6565b602082019050919050565b60006130d7601483613850565b91506130e282613e0f565b602082019050919050565b60006130fa602c83613850565b915061310582613e38565b604082019050919050565b600061311d603883613850565b915061312882613e87565b604082019050919050565b6000613140602a83613850565b915061314b82613ed6565b604082019050919050565b6000613163602983613850565b915061316e82613f25565b604082019050919050565b6000613186601683613850565b915061319182613f74565b602082019050919050565b60006131a9601583613850565b91506131b482613f9d565b602082019050919050565b60006131cc602083613850565b91506131d782613fc6565b602082019050919050565b60006131ef602c83613850565b91506131fa82613fef565b604082019050919050565b6000613212602083613850565b915061321d8261403e565b602082019050919050565b6000613235602983613850565b915061324082614067565b604082019050919050565b6000613258602f83613850565b9150613263826140b6565b604082019050919050565b600061327b602183613850565b915061328682614105565b604082019050919050565b600061329e603183613850565b91506132a982614154565b604082019050919050565b60006132c1600e83613850565b91506132cc826141a3565b602082019050919050565b60006132e4601883613850565b91506132ef826141cc565b602082019050919050565b6000613307601083613850565b9150613312826141f5565b602082019050919050565b613326816139dd565b82525050565b61333581613a0b565b82525050565b60006133478285612f5e565b91506133538284612f5e565b91508190509392505050565b60006020820190506133746000830184612ece565b92915050565b600060808201905061338f6000830187612ece565b61339c6020830186612ece565b6133a9604083018561332c565b81810360608301526133bb8184612eec565b905095945050505050565b60006040820190506133db6000830185612ece565b6133e8602083018461332c565b9392505050565b60006020820190506134046000830184612edd565b92915050565b600060208201905081810360008301526134248184612f25565b905092915050565b6000602082019050818103600083015261344581612f8f565b9050919050565b6000602082019050818103600083015261346581612fb2565b9050919050565b6000602082019050818103600083015261348581612fd5565b9050919050565b600060208201905081810360008301526134a581612ff8565b9050919050565b600060208201905081810360008301526134c58161301b565b9050919050565b600060208201905081810360008301526134e58161303e565b9050919050565b6000602082019050818103600083015261350581613061565b9050919050565b6000602082019050818103600083015261352581613084565b9050919050565b60006020820190508181036000830152613545816130a7565b9050919050565b60006020820190508181036000830152613565816130ca565b9050919050565b60006020820190508181036000830152613585816130ed565b9050919050565b600060208201905081810360008301526135a581613110565b9050919050565b600060208201905081810360008301526135c581613133565b9050919050565b600060208201905081810360008301526135e581613156565b9050919050565b6000602082019050818103600083015261360581613179565b9050919050565b600060208201905081810360008301526136258161319c565b9050919050565b60006020820190508181036000830152613645816131bf565b9050919050565b60006020820190508181036000830152613665816131e2565b9050919050565b6000602082019050818103600083015261368581613205565b9050919050565b600060208201905081810360008301526136a581613228565b9050919050565b600060208201905081810360008301526136c58161324b565b9050919050565b600060208201905081810360008301526136e58161326e565b9050919050565b6000602082019050818103600083015261370581613291565b9050919050565b60006020820190508181036000830152613725816132b4565b9050919050565b60006020820190508181036000830152613745816132d7565b9050919050565b60006020820190508181036000830152613765816132fa565b9050919050565b6000602082019050613781600083018461331d565b92915050565b600060208201905061379c600083018461332c565b92915050565b60006137ac6137bd565b90506137b88282613a89565b919050565b6000604051905090565b600067ffffffffffffffff8211156137e2576137e1613bec565b5b6137eb82613c1b565b9050602081019050919050565b600067ffffffffffffffff82111561381357613812613bec565b5b61381c82613c1b565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600061387782613a0b565b915061388283613a0b565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156138b7576138b6613b5f565b5b828201905092915050565b60006138cd82613a0b565b91506138d883613a0b565b9250826138e8576138e7613b8e565b5b828204905092915050565b60006138fe82613a0b565b915061390983613a0b565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561394257613941613b5f565b5b828202905092915050565b600061395882613a0b565b915061396383613a0b565b92508282101561397657613975613b5f565b5b828203905092915050565b600061398c826139eb565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b60006139d682613981565b9050919050565b600061ffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613a42578082015181840152602081019050613a27565b83811115613a51576000848401525b50505050565b60006002820490506001821680613a6f57607f821691505b60208210811415613a8357613a82613bbd565b5b50919050565b613a9282613c1b565b810181811067ffffffffffffffff82111715613ab157613ab0613bec565b5b80604052505050565b6000613ac5826139dd565b915061ffff821415613ada57613ad9613b5f565b5b600182019050919050565b6000613af082613a0b565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613b2357613b22613b5f565b5b600182019050919050565b6000613b3982613a0b565b9150613b4483613a0b565b925082613b5457613b53613b8e565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f48617320616c7265616479206265656e20736574000000000000000000000000600082015250565b7f53616c65206d7573742062652061637469766500000000000000000000000000600082015250565b7f4e6f7468696e6720746f20776974686472617700000000000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4d757374206265203e3d20310000000000000000000000000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4e65656420746f2076657269667920746f6b656e000000000000000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4e6f7420656e6f75676820746f6b656e73206c65667400000000000000000000600082015250565b7f4e656564206174206c65617374203120746f6b656e0000000000000000000000600082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f53616c6520697320616374697665000000000000000000000000000000000000600082015250565b7f457468657220616d6f756e74206e6f7420636f72726563740000000000000000600082015250565b7f4d617820353020617420612074696d6500000000000000000000000000000000600082015250565b61422781613981565b811461423257600080fd5b50565b61423e81613993565b811461424957600080fd5b50565b6142558161399f565b811461426057600080fd5b50565b61426c816139cb565b811461427757600080fd5b50565b61428381613a0b565b811461428e57600080fd5b5056fe697066733a2f2f516d6637354c4661636962394a64705942664c76554846524a7a3346394675517a6e75784439563557324d45537868747470733a2f2f6170692e7361746f736869626c65732e636f6d2f746f6b656e2fa264697066735822122030cba3418bcf7d09b9d7ca238ed8dfda63f790cf29388887bbc43cb8a7626d8864736f6c63430008040033

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

0000000000000000000000000000000000000000000000000000000000000032

-----Decoded View---------------
Arg [0] : initialBatchCount (uint256): 50

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000032


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.