ETH Price: $3,412.54 (-2.51%)
Gas: 7 Gwei

Token

S7 GoldenFruit (S7GF)
 

Overview

Max Total Supply

700 S7GF

Holders

386

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
8 S7GF
0x170fcd5c519bcc48068a1b177edbb6c16b792b88
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
S7NSFruit

Compiler Version
v0.8.9+commit.e5eed63a

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 14 : S7NSFruit.sol
// SPDX-License-Identifier: None
pragma solidity ^0.8.0;

import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "./interfaces/IS7NSManagement.sol";

contract S7NSFruit is ERC721Enumerable, Ownable {
	
	IS7NSManagement public management;
	
	bytes32 private constant MANAGER_ROLE = keccak256("MANAGER_ROLE");
    bytes32 private constant MINTER_ROLE = keccak256("MINTER_ROLE");

	string public baseURI;
	mapping(uint256 => mapping(address => uint256)) public nonces;

	modifier isHalted() {
		require(!management.halted(), "Maintenance");
		_;
	}
	
	modifier onlyMinter() {
		require(
			management.hasRole(MINTER_ROLE, _msgSender()), "OnlyMinter"
		);
        _;
    }

	modifier onlyManager() {
		require(
			management.hasRole(MANAGER_ROLE, _msgSender()), "OnlyManager"
		);
        _;
    }

	event Harvest(address indexed to, uint256 indexed tokenId);
	event ToTheAsh(address indexed operator, uint256[] IDs);

	constructor(address _management, string memory _uri) ERC721("S7 GoldenFruit", "S7GF") {
		management = IS7NSManagement(_management);
		baseURI = _uri;
	}

	/**
       	@notice Update Address of S7NSManagement contract
       	@dev  Caller must have MANAGER_ROLE
		@param	_management				Address of S7NSManagement contract
    */
	function setManagement(address _management) external onlyManager {
		require(_management != address(0), "AddressZero");

		management = IS7NSManagement(_management);
	}

	/**
       	@notice Update new value of Base URI
       	@dev  Caller must have MANAGER_ROLE
       	@param 	baseURI_			New string of `baseURI`
    */
	function setBaseURI(string calldata baseURI_) external onlyManager {
		baseURI = baseURI_;
	}

    /**
       	@notice Mint Fruit to `_beneficiary`
       	@dev  Caller must have MINTER_ROLE
		@param	_beneficiary			Address of the Receiver
		@param	_tokenId			    TokenId to be minted
    */
	function harvest(address _beneficiary, uint256 _tokenId) external onlyMinter {
        _harvest(_beneficiary, _tokenId);
	}

	/**
       	@notice Mint Batch of Fruits to `_beneficiaries`
       	@dev  Caller must have MINTER_ROLE
		@param	_beneficiaries			A list of receiving addresses
		@param	_tokenIds			    A list of `_tokenIds` to be minted
    */
	function harvestBatch(address[] calldata _beneficiaries, uint256[] calldata _tokenIds) external onlyMinter {
        uint256 _len = _beneficiaries.length;
        require(
            _tokenIds.length == _len, "Length mismatch"
        );

		for (uint256 i; i < _len; i++) 
            _harvest(_beneficiaries[i], _tokenIds[i]);
	}

	/**
       	@notice Burn Fruits from `msg.sender`
       	@dev  Caller can be ANY
		@param	_ids				A list of `tokenIds` to be burned
		
		Note: MINTER_ROLE is granted a priviledge to burn Fruits
    */
	function burn(uint256[] calldata _ids) external {
		bool isAuthorized;
		address _operator = _msgSender();
		if (management.hasRole(MINTER_ROLE, _operator)) isAuthorized = true;

		uint256 _amounts = _ids.length;
		uint256 _tokenId;
		for (uint256 i; i < _amounts; i++) {
			_tokenId = _ids[i];
			require(
				ownerOf(_tokenId) == _operator || isAuthorized,
				"NotAuthorizedNorOwner"
			);

			_burn(_tokenId);
		}

		emit ToTheAsh(_operator, _ids);
	}

	/**
       	@notice Query a list of Fruits that owned by `_account`
       	@dev  Caller can be ANY
		@param	_account			Account's address to query
		@param	_fromIdx			Starting index
		@param	_toIdx				Ending index
    */
	function tokensByOwner(address _account, uint256 _fromIdx, uint256 _toIdx) external view returns (uint256[] memory _tokens) {
		uint256 _size = _toIdx - _fromIdx + 1;
		_tokens = new uint256[](_size);

		for(uint256 i; i < _size; i++) 
			_tokens[i] = tokenOfOwnerByIndex(_account, _fromIdx + i);
	}

    function _harvest(address _beneficiary, uint256 _tokenId) private {
        _safeMint(_beneficiary, _tokenId);

        emit Harvest(_beneficiary, _tokenId);
    }

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

	function _beforeTokenTransfer(address from, address to, uint256 tokenId) internal override isHalted {
		super._beforeTokenTransfer(from, to, tokenId);
    }

	function _afterTokenTransfer(address from, address to, uint256 tokenId) internal override {
		nonces[tokenId][from] += 1;
		nonces[tokenId][to] += 1;
	}
}

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

pragma solidity ^0.8.0;

import "../ERC721.sol";
import "./IERC721Enumerable.sol";

/**
 * @dev This implements an optional extension of {ERC721} defined in the EIP that adds
 * enumerability of all the token ids in the contract as well as all token ids owned by each
 * account.
 */
abstract contract ERC721Enumerable is ERC721, IERC721Enumerable {
    // Mapping from owner to list of owned token IDs
    mapping(address => mapping(uint256 => uint256)) private _ownedTokens;

    // Mapping from token ID to index of the owner tokens list
    mapping(uint256 => uint256) private _ownedTokensIndex;

    // Array with all token ids, used for enumeration
    uint256[] private _allTokens;

    // Mapping from token id to position in the allTokens array
    mapping(uint256 => uint256) private _allTokensIndex;

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

    /**
     * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) {
        require(index < ERC721.balanceOf(owner), "ERC721Enumerable: owner index out of bounds");
        return _ownedTokens[owner][index];
    }

    /**
     * @dev See {IERC721Enumerable-totalSupply}.
     */
    function totalSupply() public view virtual override returns (uint256) {
        return _allTokens.length;
    }

    /**
     * @dev See {IERC721Enumerable-tokenByIndex}.
     */
    function tokenByIndex(uint256 index) public view virtual override returns (uint256) {
        require(index < ERC721Enumerable.totalSupply(), "ERC721Enumerable: global index out of bounds");
        return _allTokens[index];
    }

    /**
     * @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 override {
        super._beforeTokenTransfer(from, to, tokenId);

        if (from == address(0)) {
            _addTokenToAllTokensEnumeration(tokenId);
        } else if (from != to) {
            _removeTokenFromOwnerEnumeration(from, tokenId);
        }
        if (to == address(0)) {
            _removeTokenFromAllTokensEnumeration(tokenId);
        } else if (to != from) {
            _addTokenToOwnerEnumeration(to, tokenId);
        }
    }

    /**
     * @dev Private function to add a token to this extension's ownership-tracking data structures.
     * @param to address representing the new owner of the given token ID
     * @param tokenId uint256 ID of the token to be added to the tokens list of the given address
     */
    function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private {
        uint256 length = ERC721.balanceOf(to);
        _ownedTokens[to][length] = tokenId;
        _ownedTokensIndex[tokenId] = length;
    }

    /**
     * @dev Private function to add a token to this extension's token tracking data structures.
     * @param tokenId uint256 ID of the token to be added to the tokens list
     */
    function _addTokenToAllTokensEnumeration(uint256 tokenId) private {
        _allTokensIndex[tokenId] = _allTokens.length;
        _allTokens.push(tokenId);
    }

    /**
     * @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that
     * while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for
     * gas optimizations e.g. when performing a transfer operation (avoiding double writes).
     * This has O(1) time complexity, but alters the order of the _ownedTokens array.
     * @param from address representing the previous owner of the given token ID
     * @param tokenId uint256 ID of the token to be removed from the tokens list of the given address
     */
    function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private {
        // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = ERC721.balanceOf(from) - 1;
        uint256 tokenIndex = _ownedTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary
        if (tokenIndex != lastTokenIndex) {
            uint256 lastTokenId = _ownedTokens[from][lastTokenIndex];

            _ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
            _ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index
        }

        // This also deletes the contents at the last position of the array
        delete _ownedTokensIndex[tokenId];
        delete _ownedTokens[from][lastTokenIndex];
    }

    /**
     * @dev Private function to remove a token from this extension's token tracking data structures.
     * This has O(1) time complexity, but alters the order of the _allTokens array.
     * @param tokenId uint256 ID of the token to be removed from the tokens list
     */
    function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private {
        // To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = _allTokens.length - 1;
        uint256 tokenIndex = _allTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so
        // rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding
        // an 'if' statement (like in _removeTokenFromOwnerEnumeration)
        uint256 lastTokenId = _allTokens[lastTokenIndex];

        _allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
        _allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index

        // This also deletes the contents at the last position of the array
        delete _allTokensIndex[tokenId];
        _allTokens.pop();
    }
}

File 3 of 14 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol)

pragma solidity ^0.8.0;

import "../utils/Context.sol";

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

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

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

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

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

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
    }

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

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

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

File 4 of 14 : IS7NSManagement.sol
// SPDX-License-Identifier: None
pragma solidity ^0.8.0;

/**
   @title IS7NSManagement contract
   @dev Provide interfaces that allow interaction to S7NSManagement contract
*/
interface IS7NSManagement {
    function treasury() external view returns (address);
    function hasRole(bytes32 role, address account) external view returns (bool);
    function paymentTokens(address _token) external view returns (bool);
    function halted() external view returns (bool);
}

File 5 of 14 : ERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (token/ERC721/ERC721.sol)

pragma solidity ^0.8.0;

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

/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata extension, but not including the Enumerable extension, which is available separately as
 * {ERC721Enumerable}.
 */
contract ERC721 is Context, ERC165, IERC721, IERC721Metadata {
    using Address for address;
    using Strings for uint256;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to owner address
    mapping(uint256 => address) private _owners;

    // Mapping owner address to token count
    mapping(address => uint256) private _balances;

    // Mapping from token ID to approved address
    mapping(uint256 => address) private _tokenApprovals;

    // Mapping from owner to operator approvals
    mapping(address => mapping(address => bool)) private _operatorApprovals;

    /**
     * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

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

    /**
     * @dev See {IERC721-balanceOf}.
     */
    function balanceOf(address owner) public view virtual override returns (uint256) {
        require(owner != address(0), "ERC721: address zero is not a valid owner");
        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: invalid token ID");
        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) {
        _requireMinted(tokenId);

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

    /**
     * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each
     * token will be the concatenation of the `baseURI` and the `tokenId`. Empty
     * by default, can be overridden 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 token owner nor approved for all"
        );

        _approve(to, tokenId);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view virtual override returns (address) {
        _requireMinted(tokenId);

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        _setApprovalForAll(_msgSender(), operator, approved);
    }

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

    /**
     * @dev See {IERC721-transferFrom}.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        //solhint-disable-next-line max-line-length
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: caller is not token 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: caller is not token 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) {
        address owner = ERC721.ownerOf(tokenId);
        return (spender == owner || isApprovedForAll(owner, spender) || getApproved(tokenId) == 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);

        _afterTokenTransfer(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);

        _afterTokenTransfer(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 from incorrect owner");
        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);

        _afterTokenTransfer(from, to, tokenId);
    }

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

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

    /**
     * @dev Reverts if the `tokenId` has not been minted yet.
     */
    function _requireMinted(uint256 tokenId) internal view virtual {
        require(_exists(tokenId), "ERC721: invalid token ID");
    }

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

    /**
     * @dev Hook that is called after any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _afterTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {}
}

File 6 of 14 : IERC721Enumerable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/extensions/IERC721Enumerable.sol)

pragma solidity ^0.8.0;

import "../IERC721.sol";

/**
 * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Enumerable is IERC721 {
    /**
     * @dev Returns the total amount of tokens stored by the contract.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns a token ID owned by `owner` at a given `index` of its token list.
     * Use along with {balanceOf} to enumerate all of ``owner``'s tokens.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256);

    /**
     * @dev Returns a token ID at a given `index` of all the tokens stored by the contract.
     * Use along with {totalSupply} to enumerate all tokens.
     */
    function tokenByIndex(uint256 index) external view returns (uint256);
}

File 7 of 14 : IERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`.
     *
     * 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;

    /**
     * @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 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 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 the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId) external view returns (address operator);

    /**
     * @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);
}

File 8 of 14 : IERC721Receiver.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721Receiver.sol)

pragma solidity ^0.8.0;

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

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

pragma solidity ^0.8.0;

import "../IERC721.sol";

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

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

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

File 10 of 14 : Address.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (utils/Address.sol)

pragma solidity ^0.8.1;

/**
 * @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
     * ====
     *
     * [IMPORTANT]
     * ====
     * You shouldn't rely on `isContract` to protect against flash loan attacks!
     *
     * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
     * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
     * constructor.
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize/address.code.length, which returns 0
        // for contracts in construction, since the code is only stored at the end
        // of the constructor execution.

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

File 12 of 14 : Strings.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (utils/Strings.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

    /**
     * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation.
     */
    function toHexString(address addr) internal pure returns (string memory) {
        return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH);
    }
}

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

pragma solidity ^0.8.0;

import "./IERC165.sol";

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

File 14 of 14 : IERC165.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)

pragma solidity ^0.8.0;

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

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"_management","type":"address"},{"internalType":"string","name":"_uri","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Harvest","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":"operator","type":"address"},{"indexed":false,"internalType":"uint256[]","name":"IDs","type":"uint256[]"}],"name":"ToTheAsh","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"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":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"_ids","type":"uint256[]"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_beneficiary","type":"address"},{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"harvest","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"_beneficiaries","type":"address[]"},{"internalType":"uint256[]","name":"_tokenIds","type":"uint256[]"}],"name":"harvestBatch","outputs":[],"stateMutability":"nonpayable","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":"management","outputs":[{"internalType":"contract IS7NSManagement","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"address","name":"","type":"address"}],"name":"nonces","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI_","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_management","type":"address"}],"name":"setManagement","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_account","type":"address"},{"internalType":"uint256","name":"_fromIdx","type":"uint256"},{"internalType":"uint256","name":"_toIdx","type":"uint256"}],"name":"tokensByOwner","outputs":[{"internalType":"uint256[]","name":"_tokens","type":"uint256[]"}],"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"}]

60806040523480156200001157600080fd5b5060405162004cd938038062004cd98339818101604052810190620000379190620004d9565b6040518060400160405280600e81526020017f533720476f6c64656e46727569740000000000000000000000000000000000008152506040518060400160405280600481526020017f53374746000000000000000000000000000000000000000000000000000000008152508160009080519060200190620000bb92919062000227565b508060019080519060200190620000d492919062000227565b505050620000f7620000eb6200015960201b60201c565b6200016160201b60201c565b81600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080600c90805190602001906200015092919062000227565b505050620005a4565b600033905090565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b82805462000235906200056e565b90600052602060002090601f016020900481019282620002595760008555620002a5565b82601f106200027457805160ff1916838001178555620002a5565b82800160010185558215620002a5579182015b82811115620002a457825182559160200191906001019062000287565b5b509050620002b49190620002b8565b5090565b5b80821115620002d3576000816000905550600101620002b9565b5090565b6000604051905090565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006200031882620002eb565b9050919050565b6200032a816200030b565b81146200033657600080fd5b50565b6000815190506200034a816200031f565b92915050565b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b620003a5826200035a565b810181811067ffffffffffffffff82111715620003c757620003c66200036b565b5b80604052505050565b6000620003dc620002d7565b9050620003ea82826200039a565b919050565b600067ffffffffffffffff8211156200040d576200040c6200036b565b5b62000418826200035a565b9050602081019050919050565b60005b838110156200044557808201518184015260208101905062000428565b8381111562000455576000848401525b50505050565b6000620004726200046c84620003ef565b620003d0565b90508281526020810184848401111562000491576200049062000355565b5b6200049e84828562000425565b509392505050565b600082601f830112620004be57620004bd62000350565b5b8151620004d08482602086016200045b565b91505092915050565b60008060408385031215620004f357620004f2620002e1565b5b6000620005038582860162000339565b925050602083015167ffffffffffffffff811115620005275762000526620002e6565b5b6200053585828601620004a6565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200058757607f821691505b602082108114156200059e576200059d6200053f565b5b50919050565b61472580620005b46000396000f3fe608060405234801561001057600080fd5b50600436106101c45760003560e01c80636352211e116100f9578063a22cb46511610097578063c87b56dd11610071578063c87b56dd14610503578063d4a22bde14610533578063e985e9c51461054f578063f2fde38b1461057f576101c4565b8063a22cb465146104af578063b80f55c9146104cb578063b88d4fde146104e7576101c4565b8063715018a6116100d3578063715018a61461044b57806388a8d602146104555780638da5cb5b1461047357806395d89b4114610491576101c4565b80636352211e146103cd5780636c0360eb146103fd57806370a082311461041b576101c4565b80632a81d49d1161016657806343198ac41161014057806343198ac414610335578063465b893a146103655780634f6ccce71461038157806355f804b3146103b1576101c4565b80632a81d49d146102b95780632f745c59146102e957806342842e0e14610319576101c4565b8063081812fc116101a2578063081812fc14610233578063095ea7b31461026357806318160ddd1461027f57806323b872dd1461029d576101c4565b8063018ee9b7146101c957806301ffc9a7146101e557806306fdde0314610215575b600080fd5b6101e360048036038101906101de9190612eca565b61059b565b005b6101ff60048036038101906101fa9190612f62565b6106bc565b60405161020c9190612faa565b60405180910390f35b61021d610736565b60405161022a919061305e565b60405180910390f35b61024d60048036038101906102489190613080565b6107c8565b60405161025a91906130bc565b60405180910390f35b61027d60048036038101906102789190612eca565b61080e565b005b610287610926565b60405161029491906130e6565b60405180910390f35b6102b760048036038101906102b29190613101565b610933565b005b6102d360048036038101906102ce9190613154565b610993565b6040516102e091906130e6565b60405180910390f35b61030360048036038101906102fe9190612eca565b6109b8565b60405161031091906130e6565b60405180910390f35b610333600480360381019061032e9190613101565b610a5d565b005b61034f600480360381019061034a9190613194565b610a7d565b60405161035c91906132a5565b60405180910390f35b61037f600480360381019061037a9190613382565b610b41565b005b61039b60048036038101906103969190613080565b610d11565b6040516103a891906130e6565b60405180910390f35b6103cb60048036038101906103c69190613459565b610d82565b005b6103e760048036038101906103e29190613080565b610eab565b6040516103f491906130bc565b60405180910390f35b610405610f5d565b604051610412919061305e565b60405180910390f35b610435600480360381019061043091906134a6565b610feb565b60405161044291906130e6565b60405180910390f35b6104536110a3565b005b61045d6110b7565b60405161046a9190613532565b60405180910390f35b61047b6110dd565b60405161048891906130bc565b60405180910390f35b610499611107565b6040516104a6919061305e565b60405180910390f35b6104c960048036038101906104c49190613579565b611199565b005b6104e560048036038101906104e091906135b9565b6111af565b005b61050160048036038101906104fc9190613736565b6113b6565b005b61051d60048036038101906105189190613080565b611418565b60405161052a919061305e565b60405180910390f35b61054d600480360381019061054891906134a6565b611480565b005b610569600480360381019061056491906137b9565b611647565b6040516105769190612faa565b60405180910390f35b610599600480360381019061059491906134a6565b6116db565b005b600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166391d148547f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a661060261175f565b6040518363ffffffff1660e01b815260040161061f929190613812565b60206040518083038186803b15801561063757600080fd5b505afa15801561064b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061066f9190613850565b6106ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106a5906138c9565b60405180910390fd5b6106b88282611767565b5050565b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061072f575061072e826117b9565b5b9050919050565b60606000805461074590613918565b80601f016020809104026020016040519081016040528092919081815260200182805461077190613918565b80156107be5780601f10610793576101008083540402835291602001916107be565b820191906000526020600020905b8154815290600101906020018083116107a157829003601f168201915b5050505050905090565b60006107d38261189b565b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061081982610eab565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561088a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610881906139bc565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166108a961175f565b73ffffffffffffffffffffffffffffffffffffffff1614806108d857506108d7816108d261175f565b611647565b5b610917576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161090e90613a4e565b60405180910390fd5b61092183836118e6565b505050565b6000600880549050905090565b61094461093e61175f565b8261199f565b610983576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161097a90613ae0565b60405180910390fd5b61098e838383611a34565b505050565b600d602052816000526040600020602052806000526040600020600091509150505481565b60006109c383610feb565b8210610a04576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109fb90613b72565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b610a78838383604051806020016040528060008152506113b6565b505050565b6060600060018484610a8f9190613bc1565b610a999190613bf5565b90508067ffffffffffffffff811115610ab557610ab461360b565b5b604051908082528060200260200182016040528015610ae35781602001602082028036833780820191505090505b50915060005b81811015610b3857610b06868287610b019190613bf5565b6109b8565b838281518110610b1957610b18613c4b565b5b6020026020010181815250508080610b3090613c7a565b915050610ae9565b50509392505050565b600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166391d148547f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a6610ba861175f565b6040518363ffffffff1660e01b8152600401610bc5929190613812565b60206040518083038186803b158015610bdd57600080fd5b505afa158015610bf1573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c159190613850565b610c54576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c4b906138c9565b60405180910390fd5b6000848490509050808383905014610ca1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c9890613d0f565b60405180910390fd5b60005b81811015610d0957610cf6868683818110610cc257610cc1613c4b565b5b9050602002016020810190610cd791906134a6565b858584818110610cea57610ce9613c4b565b5b90506020020135611767565b8080610d0190613c7a565b915050610ca4565b505050505050565b6000610d1b610926565b8210610d5c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d5390613da1565b60405180910390fd5b60088281548110610d7057610d6f613c4b565b5b90600052602060002001549050919050565b600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166391d148547f241ecf16d79d0f8dbfb92cbc07fe17840425976cf0667f022fe9877caa831b08610de961175f565b6040518363ffffffff1660e01b8152600401610e06929190613812565b60206040518083038186803b158015610e1e57600080fd5b505afa158015610e32573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e569190613850565b610e95576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e8c90613e0d565b60405180910390fd5b8181600c9190610ea6929190612d7f565b505050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610f54576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f4b90613e79565b60405180910390fd5b80915050919050565b600c8054610f6a90613918565b80601f0160208091040260200160405190810160405280929190818152602001828054610f9690613918565b8015610fe35780601f10610fb857610100808354040283529160200191610fe3565b820191906000526020600020905b815481529060010190602001808311610fc657829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561105c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161105390613f0b565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6110ab611c9b565b6110b56000611d19565b565b600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606001805461111690613918565b80601f016020809104026020016040519081016040528092919081815260200182805461114290613918565b801561118f5780601f106111645761010080835404028352916020019161118f565b820191906000526020600020905b81548152906001019060200180831161117257829003601f168201915b5050505050905090565b6111ab6111a461175f565b8383611ddf565b5050565b6000806111ba61175f565b9050600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166391d148547f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a6836040518363ffffffff1660e01b8152600401611239929190613812565b60206040518083038186803b15801561125157600080fd5b505afa158015611265573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112899190613850565b1561129357600191505b60008484905090506000805b8281101561135d578686828181106112ba576112b9613c4b565b5b9050602002013591508373ffffffffffffffffffffffffffffffffffffffff166112e383610eab565b73ffffffffffffffffffffffffffffffffffffffff1614806113025750845b611341576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161133890613f77565b60405180910390fd5b61134a82611f4c565b808061135590613c7a565b91505061129f565b508273ffffffffffffffffffffffffffffffffffffffff167f0c1ce0e88eed982b63571098be7d9fc5a65269fc06f278742e8530bf52f878d787876040516113a6929190613ff8565b60405180910390a2505050505050565b6113c76113c161175f565b8361199f565b611406576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113fd90613ae0565b60405180910390fd5b61141284848484612069565b50505050565b60606114238261189b565b600061142d6120c5565b9050600081511161144d5760405180602001604052806000815250611478565b8061145784612157565b604051602001611468929190614058565b6040516020818303038152906040525b915050919050565b600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166391d148547f241ecf16d79d0f8dbfb92cbc07fe17840425976cf0667f022fe9877caa831b086114e761175f565b6040518363ffffffff1660e01b8152600401611504929190613812565b60206040518083038186803b15801561151c57600080fd5b505afa158015611530573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906115549190613850565b611593576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161158a90613e0d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611603576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115fa906140c8565b60405180910390fd5b80600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6116e3611c9b565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611753576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161174a9061415a565b60405180910390fd5b61175c81611d19565b50565b600033905090565b61177182826122b8565b808273ffffffffffffffffffffffffffffffffffffffff167fc9695243a805adb74c91f28311176c65b417e842d5699893cef56d18bfa48cba60405160405180910390a35050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061188457507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806118945750611893826122d6565b5b9050919050565b6118a481612340565b6118e3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118da90613e79565b60405180910390fd5b50565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661195983610eab565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000806119ab83610eab565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806119ed57506119ec8185611647565b5b80611a2b57508373ffffffffffffffffffffffffffffffffffffffff16611a13846107c8565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611a5482610eab565b73ffffffffffffffffffffffffffffffffffffffff1614611aaa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aa1906141ec565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611b1a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b119061427e565b60405180910390fd5b611b258383836123ac565b611b306000826118e6565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611b809190613bc1565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611bd79190613bf5565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611c9683838361249c565b505050565b611ca361175f565b73ffffffffffffffffffffffffffffffffffffffff16611cc16110dd565b73ffffffffffffffffffffffffffffffffffffffff1614611d17576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d0e906142ea565b60405180910390fd5b565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611e4e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e4590614356565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611f3f9190612faa565b60405180910390a3505050565b6000611f5782610eab565b9050611f65816000846123ac565b611f706000836118e6565b6001600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611fc09190613bc1565b925050819055506002600083815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff021916905581600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46120658160008461249c565b5050565b612074848484611a34565b61208084848484612571565b6120bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120b6906143e8565b60405180910390fd5b50505050565b6060600c80546120d490613918565b80601f016020809104026020016040519081016040528092919081815260200182805461210090613918565b801561214d5780601f106121225761010080835404028352916020019161214d565b820191906000526020600020905b81548152906001019060200180831161213057829003601f168201915b5050505050905090565b6060600082141561219f576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506122b3565b600082905060005b600082146121d15780806121ba90613c7a565b915050600a826121ca9190614437565b91506121a7565b60008167ffffffffffffffff8111156121ed576121ec61360b565b5b6040519080825280601f01601f19166020018201604052801561221f5781602001600182028036833780820191505090505b5090505b600085146122ac576001826122389190613bc1565b9150600a856122479190614468565b60306122539190613bf5565b60f81b81838151811061226957612268613c4b565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856122a59190614437565b9450612223565b8093505050505b919050565b6122d2828260405180602001604052806000815250612708565b5050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663b9b8af0b6040518163ffffffff1660e01b815260040160206040518083038186803b15801561241457600080fd5b505afa158015612428573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061244c9190613850565b1561248c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612483906144e5565b60405180910390fd5b612497838383612763565b505050565b6001600d600083815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546124fd9190613bf5565b925050819055506001600d600083815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546125659190613bf5565b92505081905550505050565b60006125928473ffffffffffffffffffffffffffffffffffffffff16612877565b156126fb578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026125bb61175f565b8786866040518563ffffffff1660e01b81526004016125dd949392919061455a565b602060405180830381600087803b1580156125f757600080fd5b505af192505050801561262857506040513d601f19601f8201168201806040525081019061262591906145bb565b60015b6126ab573d8060008114612658576040519150601f19603f3d011682016040523d82523d6000602084013e61265d565b606091505b506000815114156126a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161269a906143e8565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612700565b600190505b949350505050565b612712838361289a565b61271f6000848484612571565b61275e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612755906143e8565b60405180910390fd5b505050565b61276e838383612a74565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156127b1576127ac81612a79565b6127f0565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16146127ef576127ee8382612ac2565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156128335761282e81612c2f565b612872565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614612871576128708282612d00565b5b5b505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561290a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161290190614634565b60405180910390fd5b61291381612340565b15612953576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161294a906146a0565b60405180910390fd5b61295f600083836123ac565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546129af9190613bf5565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612a706000838361249c565b5050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b60006001612acf84610feb565b612ad99190613bc1565b9050600060076000848152602001908152602001600020549050818114612bbe576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b60006001600880549050612c439190613bc1565b9050600060096000848152602001908152602001600020549050600060088381548110612c7357612c72613c4b565b5b906000526020600020015490508060088381548110612c9557612c94613c4b565b5b906000526020600020018190555081600960008381526020019081526020016000208190555060096000858152602001908152602001600020600090556008805480612ce457612ce36146c0565b5b6001900381819060005260206000200160009055905550505050565b6000612d0b83610feb565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b828054612d8b90613918565b90600052602060002090601f016020900481019282612dad5760008555612df4565b82601f10612dc657803560ff1916838001178555612df4565b82800160010185558215612df4579182015b82811115612df3578235825591602001919060010190612dd8565b5b509050612e019190612e05565b5090565b5b80821115612e1e576000816000905550600101612e06565b5090565b6000604051905090565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612e6182612e36565b9050919050565b612e7181612e56565b8114612e7c57600080fd5b50565b600081359050612e8e81612e68565b92915050565b6000819050919050565b612ea781612e94565b8114612eb257600080fd5b50565b600081359050612ec481612e9e565b92915050565b60008060408385031215612ee157612ee0612e2c565b5b6000612eef85828601612e7f565b9250506020612f0085828601612eb5565b9150509250929050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612f3f81612f0a565b8114612f4a57600080fd5b50565b600081359050612f5c81612f36565b92915050565b600060208284031215612f7857612f77612e2c565b5b6000612f8684828501612f4d565b91505092915050565b60008115159050919050565b612fa481612f8f565b82525050565b6000602082019050612fbf6000830184612f9b565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612fff578082015181840152602081019050612fe4565b8381111561300e576000848401525b50505050565b6000601f19601f8301169050919050565b600061303082612fc5565b61303a8185612fd0565b935061304a818560208601612fe1565b61305381613014565b840191505092915050565b600060208201905081810360008301526130788184613025565b905092915050565b60006020828403121561309657613095612e2c565b5b60006130a484828501612eb5565b91505092915050565b6130b681612e56565b82525050565b60006020820190506130d160008301846130ad565b92915050565b6130e081612e94565b82525050565b60006020820190506130fb60008301846130d7565b92915050565b60008060006060848603121561311a57613119612e2c565b5b600061312886828701612e7f565b935050602061313986828701612e7f565b925050604061314a86828701612eb5565b9150509250925092565b6000806040838503121561316b5761316a612e2c565b5b600061317985828601612eb5565b925050602061318a85828601612e7f565b9150509250929050565b6000806000606084860312156131ad576131ac612e2c565b5b60006131bb86828701612e7f565b93505060206131cc86828701612eb5565b92505060406131dd86828701612eb5565b9150509250925092565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b61321c81612e94565b82525050565b600061322e8383613213565b60208301905092915050565b6000602082019050919050565b6000613252826131e7565b61325c81856131f2565b935061326783613203565b8060005b8381101561329857815161327f8882613222565b975061328a8361323a565b92505060018101905061326b565b5085935050505092915050565b600060208201905081810360008301526132bf8184613247565b905092915050565b600080fd5b600080fd5b600080fd5b60008083601f8401126132ec576132eb6132c7565b5b8235905067ffffffffffffffff811115613309576133086132cc565b5b602083019150836020820283011115613325576133246132d1565b5b9250929050565b60008083601f840112613342576133416132c7565b5b8235905067ffffffffffffffff81111561335f5761335e6132cc565b5b60208301915083602082028301111561337b5761337a6132d1565b5b9250929050565b6000806000806040858703121561339c5761339b612e2c565b5b600085013567ffffffffffffffff8111156133ba576133b9612e31565b5b6133c6878288016132d6565b9450945050602085013567ffffffffffffffff8111156133e9576133e8612e31565b5b6133f58782880161332c565b925092505092959194509250565b60008083601f840112613419576134186132c7565b5b8235905067ffffffffffffffff811115613436576134356132cc565b5b602083019150836001820283011115613452576134516132d1565b5b9250929050565b600080602083850312156134705761346f612e2c565b5b600083013567ffffffffffffffff81111561348e5761348d612e31565b5b61349a85828601613403565b92509250509250929050565b6000602082840312156134bc576134bb612e2c565b5b60006134ca84828501612e7f565b91505092915050565b6000819050919050565b60006134f86134f36134ee84612e36565b6134d3565b612e36565b9050919050565b600061350a826134dd565b9050919050565b600061351c826134ff565b9050919050565b61352c81613511565b82525050565b60006020820190506135476000830184613523565b92915050565b61355681612f8f565b811461356157600080fd5b50565b6000813590506135738161354d565b92915050565b600080604083850312156135905761358f612e2c565b5b600061359e85828601612e7f565b92505060206135af85828601613564565b9150509250929050565b600080602083850312156135d0576135cf612e2c565b5b600083013567ffffffffffffffff8111156135ee576135ed612e31565b5b6135fa8582860161332c565b92509250509250929050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61364382613014565b810181811067ffffffffffffffff821117156136625761366161360b565b5b80604052505050565b6000613675612e22565b9050613681828261363a565b919050565b600067ffffffffffffffff8211156136a1576136a061360b565b5b6136aa82613014565b9050602081019050919050565b82818337600083830152505050565b60006136d96136d484613686565b61366b565b9050828152602081018484840111156136f5576136f4613606565b5b6137008482856136b7565b509392505050565b600082601f83011261371d5761371c6132c7565b5b813561372d8482602086016136c6565b91505092915050565b600080600080608085870312156137505761374f612e2c565b5b600061375e87828801612e7f565b945050602061376f87828801612e7f565b935050604061378087828801612eb5565b925050606085013567ffffffffffffffff8111156137a1576137a0612e31565b5b6137ad87828801613708565b91505092959194509250565b600080604083850312156137d0576137cf612e2c565b5b60006137de85828601612e7f565b92505060206137ef85828601612e7f565b9150509250929050565b6000819050919050565b61380c816137f9565b82525050565b60006040820190506138276000830185613803565b61383460208301846130ad565b9392505050565b60008151905061384a8161354d565b92915050565b60006020828403121561386657613865612e2c565b5b60006138748482850161383b565b91505092915050565b7f4f6e6c794d696e74657200000000000000000000000000000000000000000000600082015250565b60006138b3600a83612fd0565b91506138be8261387d565b602082019050919050565b600060208201905081810360008301526138e2816138a6565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061393057607f821691505b60208210811415613944576139436138e9565b5b50919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b60006139a6602183612fd0565b91506139b18261394a565b604082019050919050565b600060208201905081810360008301526139d581613999565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60008201527f6b656e206f776e6572206e6f7220617070726f76656420666f7220616c6c0000602082015250565b6000613a38603e83612fd0565b9150613a43826139dc565b604082019050919050565b60006020820190508181036000830152613a6781613a2b565b9050919050565b7f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560008201527f72206e6f7220617070726f766564000000000000000000000000000000000000602082015250565b6000613aca602e83612fd0565b9150613ad582613a6e565b604082019050919050565b60006020820190508181036000830152613af981613abd565b9050919050565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b6000613b5c602b83612fd0565b9150613b6782613b00565b604082019050919050565b60006020820190508181036000830152613b8b81613b4f565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000613bcc82612e94565b9150613bd783612e94565b925082821015613bea57613be9613b92565b5b828203905092915050565b6000613c0082612e94565b9150613c0b83612e94565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613c4057613c3f613b92565b5b828201905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000613c8582612e94565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613cb857613cb7613b92565b5b600182019050919050565b7f4c656e677468206d69736d617463680000000000000000000000000000000000600082015250565b6000613cf9600f83612fd0565b9150613d0482613cc3565b602082019050919050565b60006020820190508181036000830152613d2881613cec565b9050919050565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b6000613d8b602c83612fd0565b9150613d9682613d2f565b604082019050919050565b60006020820190508181036000830152613dba81613d7e565b9050919050565b7f4f6e6c794d616e61676572000000000000000000000000000000000000000000600082015250565b6000613df7600b83612fd0565b9150613e0282613dc1565b602082019050919050565b60006020820190508181036000830152613e2681613dea565b9050919050565b7f4552433732313a20696e76616c696420746f6b656e2049440000000000000000600082015250565b6000613e63601883612fd0565b9150613e6e82613e2d565b602082019050919050565b60006020820190508181036000830152613e9281613e56565b9050919050565b7f4552433732313a2061646472657373207a65726f206973206e6f74206120766160008201527f6c6964206f776e65720000000000000000000000000000000000000000000000602082015250565b6000613ef5602983612fd0565b9150613f0082613e99565b604082019050919050565b60006020820190508181036000830152613f2481613ee8565b9050919050565b7f4e6f74417574686f72697a65644e6f724f776e65720000000000000000000000600082015250565b6000613f61601583612fd0565b9150613f6c82613f2b565b602082019050919050565b60006020820190508181036000830152613f9081613f54565b9050919050565b600080fd5b6000613fa883856131f2565b93507f07ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff831115613fdb57613fda613f97565b5b602083029250613fec8385846136b7565b82840190509392505050565b60006020820190508181036000830152614013818486613f9c565b90509392505050565b600081905092915050565b600061403282612fc5565b61403c818561401c565b935061404c818560208601612fe1565b80840191505092915050565b60006140648285614027565b91506140708284614027565b91508190509392505050565b7f416464726573735a65726f000000000000000000000000000000000000000000600082015250565b60006140b2600b83612fd0565b91506140bd8261407c565b602082019050919050565b600060208201905081810360008301526140e1816140a5565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000614144602683612fd0565b915061414f826140e8565b604082019050919050565b6000602082019050818103600083015261417381614137565b9050919050565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b60006141d6602583612fd0565b91506141e18261417a565b604082019050919050565b60006020820190508181036000830152614205816141c9565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000614268602483612fd0565b91506142738261420c565b604082019050919050565b600060208201905081810360008301526142978161425b565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006142d4602083612fd0565b91506142df8261429e565b602082019050919050565b60006020820190508181036000830152614303816142c7565b9050919050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b6000614340601983612fd0565b915061434b8261430a565b602082019050919050565b6000602082019050818103600083015261436f81614333565b9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b60006143d2603283612fd0565b91506143dd82614376565b604082019050919050565b60006020820190508181036000830152614401816143c5565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061444282612e94565b915061444d83612e94565b92508261445d5761445c614408565b5b828204905092915050565b600061447382612e94565b915061447e83612e94565b92508261448e5761448d614408565b5b828206905092915050565b7f4d61696e74656e616e6365000000000000000000000000000000000000000000600082015250565b60006144cf600b83612fd0565b91506144da82614499565b602082019050919050565b600060208201905081810360008301526144fe816144c2565b9050919050565b600081519050919050565b600082825260208201905092915050565b600061452c82614505565b6145368185614510565b9350614546818560208601612fe1565b61454f81613014565b840191505092915050565b600060808201905061456f60008301876130ad565b61457c60208301866130ad565b61458960408301856130d7565b818103606083015261459b8184614521565b905095945050505050565b6000815190506145b581612f36565b92915050565b6000602082840312156145d1576145d0612e2c565b5b60006145df848285016145a6565b91505092915050565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b600061461e602083612fd0565b9150614629826145e8565b602082019050919050565b6000602082019050818103600083015261464d81614611565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b600061468a601c83612fd0565b915061469582614654565b602082019050919050565b600060208201905081810360008301526146b98161467d565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fdfea2646970667358221220d961521d4b4430c505a36c8c0c52578d926bd7b0868857a399ed1a0134776aa664736f6c634300080900330000000000000000000000003cd993f928eab47b7d5024521c84bf2476cbb3db0000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000005368747470733a2f2f73376e737066702e6d7970696e6174612e636c6f75642f697066732f516d62753550663956576e637845436f41346864526f75434547627a374c317372335342576f51357438774e68752f00000000000000000000000000

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101c45760003560e01c80636352211e116100f9578063a22cb46511610097578063c87b56dd11610071578063c87b56dd14610503578063d4a22bde14610533578063e985e9c51461054f578063f2fde38b1461057f576101c4565b8063a22cb465146104af578063b80f55c9146104cb578063b88d4fde146104e7576101c4565b8063715018a6116100d3578063715018a61461044b57806388a8d602146104555780638da5cb5b1461047357806395d89b4114610491576101c4565b80636352211e146103cd5780636c0360eb146103fd57806370a082311461041b576101c4565b80632a81d49d1161016657806343198ac41161014057806343198ac414610335578063465b893a146103655780634f6ccce71461038157806355f804b3146103b1576101c4565b80632a81d49d146102b95780632f745c59146102e957806342842e0e14610319576101c4565b8063081812fc116101a2578063081812fc14610233578063095ea7b31461026357806318160ddd1461027f57806323b872dd1461029d576101c4565b8063018ee9b7146101c957806301ffc9a7146101e557806306fdde0314610215575b600080fd5b6101e360048036038101906101de9190612eca565b61059b565b005b6101ff60048036038101906101fa9190612f62565b6106bc565b60405161020c9190612faa565b60405180910390f35b61021d610736565b60405161022a919061305e565b60405180910390f35b61024d60048036038101906102489190613080565b6107c8565b60405161025a91906130bc565b60405180910390f35b61027d60048036038101906102789190612eca565b61080e565b005b610287610926565b60405161029491906130e6565b60405180910390f35b6102b760048036038101906102b29190613101565b610933565b005b6102d360048036038101906102ce9190613154565b610993565b6040516102e091906130e6565b60405180910390f35b61030360048036038101906102fe9190612eca565b6109b8565b60405161031091906130e6565b60405180910390f35b610333600480360381019061032e9190613101565b610a5d565b005b61034f600480360381019061034a9190613194565b610a7d565b60405161035c91906132a5565b60405180910390f35b61037f600480360381019061037a9190613382565b610b41565b005b61039b60048036038101906103969190613080565b610d11565b6040516103a891906130e6565b60405180910390f35b6103cb60048036038101906103c69190613459565b610d82565b005b6103e760048036038101906103e29190613080565b610eab565b6040516103f491906130bc565b60405180910390f35b610405610f5d565b604051610412919061305e565b60405180910390f35b610435600480360381019061043091906134a6565b610feb565b60405161044291906130e6565b60405180910390f35b6104536110a3565b005b61045d6110b7565b60405161046a9190613532565b60405180910390f35b61047b6110dd565b60405161048891906130bc565b60405180910390f35b610499611107565b6040516104a6919061305e565b60405180910390f35b6104c960048036038101906104c49190613579565b611199565b005b6104e560048036038101906104e091906135b9565b6111af565b005b61050160048036038101906104fc9190613736565b6113b6565b005b61051d60048036038101906105189190613080565b611418565b60405161052a919061305e565b60405180910390f35b61054d600480360381019061054891906134a6565b611480565b005b610569600480360381019061056491906137b9565b611647565b6040516105769190612faa565b60405180910390f35b610599600480360381019061059491906134a6565b6116db565b005b600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166391d148547f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a661060261175f565b6040518363ffffffff1660e01b815260040161061f929190613812565b60206040518083038186803b15801561063757600080fd5b505afa15801561064b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061066f9190613850565b6106ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106a5906138c9565b60405180910390fd5b6106b88282611767565b5050565b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061072f575061072e826117b9565b5b9050919050565b60606000805461074590613918565b80601f016020809104026020016040519081016040528092919081815260200182805461077190613918565b80156107be5780601f10610793576101008083540402835291602001916107be565b820191906000526020600020905b8154815290600101906020018083116107a157829003601f168201915b5050505050905090565b60006107d38261189b565b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061081982610eab565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561088a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610881906139bc565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166108a961175f565b73ffffffffffffffffffffffffffffffffffffffff1614806108d857506108d7816108d261175f565b611647565b5b610917576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161090e90613a4e565b60405180910390fd5b61092183836118e6565b505050565b6000600880549050905090565b61094461093e61175f565b8261199f565b610983576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161097a90613ae0565b60405180910390fd5b61098e838383611a34565b505050565b600d602052816000526040600020602052806000526040600020600091509150505481565b60006109c383610feb565b8210610a04576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109fb90613b72565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b610a78838383604051806020016040528060008152506113b6565b505050565b6060600060018484610a8f9190613bc1565b610a999190613bf5565b90508067ffffffffffffffff811115610ab557610ab461360b565b5b604051908082528060200260200182016040528015610ae35781602001602082028036833780820191505090505b50915060005b81811015610b3857610b06868287610b019190613bf5565b6109b8565b838281518110610b1957610b18613c4b565b5b6020026020010181815250508080610b3090613c7a565b915050610ae9565b50509392505050565b600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166391d148547f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a6610ba861175f565b6040518363ffffffff1660e01b8152600401610bc5929190613812565b60206040518083038186803b158015610bdd57600080fd5b505afa158015610bf1573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c159190613850565b610c54576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c4b906138c9565b60405180910390fd5b6000848490509050808383905014610ca1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c9890613d0f565b60405180910390fd5b60005b81811015610d0957610cf6868683818110610cc257610cc1613c4b565b5b9050602002016020810190610cd791906134a6565b858584818110610cea57610ce9613c4b565b5b90506020020135611767565b8080610d0190613c7a565b915050610ca4565b505050505050565b6000610d1b610926565b8210610d5c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d5390613da1565b60405180910390fd5b60088281548110610d7057610d6f613c4b565b5b90600052602060002001549050919050565b600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166391d148547f241ecf16d79d0f8dbfb92cbc07fe17840425976cf0667f022fe9877caa831b08610de961175f565b6040518363ffffffff1660e01b8152600401610e06929190613812565b60206040518083038186803b158015610e1e57600080fd5b505afa158015610e32573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e569190613850565b610e95576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e8c90613e0d565b60405180910390fd5b8181600c9190610ea6929190612d7f565b505050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610f54576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f4b90613e79565b60405180910390fd5b80915050919050565b600c8054610f6a90613918565b80601f0160208091040260200160405190810160405280929190818152602001828054610f9690613918565b8015610fe35780601f10610fb857610100808354040283529160200191610fe3565b820191906000526020600020905b815481529060010190602001808311610fc657829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561105c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161105390613f0b565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6110ab611c9b565b6110b56000611d19565b565b600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606001805461111690613918565b80601f016020809104026020016040519081016040528092919081815260200182805461114290613918565b801561118f5780601f106111645761010080835404028352916020019161118f565b820191906000526020600020905b81548152906001019060200180831161117257829003601f168201915b5050505050905090565b6111ab6111a461175f565b8383611ddf565b5050565b6000806111ba61175f565b9050600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166391d148547f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a6836040518363ffffffff1660e01b8152600401611239929190613812565b60206040518083038186803b15801561125157600080fd5b505afa158015611265573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112899190613850565b1561129357600191505b60008484905090506000805b8281101561135d578686828181106112ba576112b9613c4b565b5b9050602002013591508373ffffffffffffffffffffffffffffffffffffffff166112e383610eab565b73ffffffffffffffffffffffffffffffffffffffff1614806113025750845b611341576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161133890613f77565b60405180910390fd5b61134a82611f4c565b808061135590613c7a565b91505061129f565b508273ffffffffffffffffffffffffffffffffffffffff167f0c1ce0e88eed982b63571098be7d9fc5a65269fc06f278742e8530bf52f878d787876040516113a6929190613ff8565b60405180910390a2505050505050565b6113c76113c161175f565b8361199f565b611406576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113fd90613ae0565b60405180910390fd5b61141284848484612069565b50505050565b60606114238261189b565b600061142d6120c5565b9050600081511161144d5760405180602001604052806000815250611478565b8061145784612157565b604051602001611468929190614058565b6040516020818303038152906040525b915050919050565b600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166391d148547f241ecf16d79d0f8dbfb92cbc07fe17840425976cf0667f022fe9877caa831b086114e761175f565b6040518363ffffffff1660e01b8152600401611504929190613812565b60206040518083038186803b15801561151c57600080fd5b505afa158015611530573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906115549190613850565b611593576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161158a90613e0d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611603576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115fa906140c8565b60405180910390fd5b80600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6116e3611c9b565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611753576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161174a9061415a565b60405180910390fd5b61175c81611d19565b50565b600033905090565b61177182826122b8565b808273ffffffffffffffffffffffffffffffffffffffff167fc9695243a805adb74c91f28311176c65b417e842d5699893cef56d18bfa48cba60405160405180910390a35050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061188457507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806118945750611893826122d6565b5b9050919050565b6118a481612340565b6118e3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118da90613e79565b60405180910390fd5b50565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661195983610eab565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000806119ab83610eab565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806119ed57506119ec8185611647565b5b80611a2b57508373ffffffffffffffffffffffffffffffffffffffff16611a13846107c8565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611a5482610eab565b73ffffffffffffffffffffffffffffffffffffffff1614611aaa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aa1906141ec565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611b1a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b119061427e565b60405180910390fd5b611b258383836123ac565b611b306000826118e6565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611b809190613bc1565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611bd79190613bf5565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611c9683838361249c565b505050565b611ca361175f565b73ffffffffffffffffffffffffffffffffffffffff16611cc16110dd565b73ffffffffffffffffffffffffffffffffffffffff1614611d17576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d0e906142ea565b60405180910390fd5b565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611e4e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e4590614356565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611f3f9190612faa565b60405180910390a3505050565b6000611f5782610eab565b9050611f65816000846123ac565b611f706000836118e6565b6001600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611fc09190613bc1565b925050819055506002600083815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff021916905581600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46120658160008461249c565b5050565b612074848484611a34565b61208084848484612571565b6120bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120b6906143e8565b60405180910390fd5b50505050565b6060600c80546120d490613918565b80601f016020809104026020016040519081016040528092919081815260200182805461210090613918565b801561214d5780601f106121225761010080835404028352916020019161214d565b820191906000526020600020905b81548152906001019060200180831161213057829003601f168201915b5050505050905090565b6060600082141561219f576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506122b3565b600082905060005b600082146121d15780806121ba90613c7a565b915050600a826121ca9190614437565b91506121a7565b60008167ffffffffffffffff8111156121ed576121ec61360b565b5b6040519080825280601f01601f19166020018201604052801561221f5781602001600182028036833780820191505090505b5090505b600085146122ac576001826122389190613bc1565b9150600a856122479190614468565b60306122539190613bf5565b60f81b81838151811061226957612268613c4b565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856122a59190614437565b9450612223565b8093505050505b919050565b6122d2828260405180602001604052806000815250612708565b5050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663b9b8af0b6040518163ffffffff1660e01b815260040160206040518083038186803b15801561241457600080fd5b505afa158015612428573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061244c9190613850565b1561248c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612483906144e5565b60405180910390fd5b612497838383612763565b505050565b6001600d600083815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546124fd9190613bf5565b925050819055506001600d600083815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546125659190613bf5565b92505081905550505050565b60006125928473ffffffffffffffffffffffffffffffffffffffff16612877565b156126fb578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026125bb61175f565b8786866040518563ffffffff1660e01b81526004016125dd949392919061455a565b602060405180830381600087803b1580156125f757600080fd5b505af192505050801561262857506040513d601f19601f8201168201806040525081019061262591906145bb565b60015b6126ab573d8060008114612658576040519150601f19603f3d011682016040523d82523d6000602084013e61265d565b606091505b506000815114156126a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161269a906143e8565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612700565b600190505b949350505050565b612712838361289a565b61271f6000848484612571565b61275e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612755906143e8565b60405180910390fd5b505050565b61276e838383612a74565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156127b1576127ac81612a79565b6127f0565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16146127ef576127ee8382612ac2565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156128335761282e81612c2f565b612872565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614612871576128708282612d00565b5b5b505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561290a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161290190614634565b60405180910390fd5b61291381612340565b15612953576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161294a906146a0565b60405180910390fd5b61295f600083836123ac565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546129af9190613bf5565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612a706000838361249c565b5050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b60006001612acf84610feb565b612ad99190613bc1565b9050600060076000848152602001908152602001600020549050818114612bbe576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b60006001600880549050612c439190613bc1565b9050600060096000848152602001908152602001600020549050600060088381548110612c7357612c72613c4b565b5b906000526020600020015490508060088381548110612c9557612c94613c4b565b5b906000526020600020018190555081600960008381526020019081526020016000208190555060096000858152602001908152602001600020600090556008805480612ce457612ce36146c0565b5b6001900381819060005260206000200160009055905550505050565b6000612d0b83610feb565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b828054612d8b90613918565b90600052602060002090601f016020900481019282612dad5760008555612df4565b82601f10612dc657803560ff1916838001178555612df4565b82800160010185558215612df4579182015b82811115612df3578235825591602001919060010190612dd8565b5b509050612e019190612e05565b5090565b5b80821115612e1e576000816000905550600101612e06565b5090565b6000604051905090565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612e6182612e36565b9050919050565b612e7181612e56565b8114612e7c57600080fd5b50565b600081359050612e8e81612e68565b92915050565b6000819050919050565b612ea781612e94565b8114612eb257600080fd5b50565b600081359050612ec481612e9e565b92915050565b60008060408385031215612ee157612ee0612e2c565b5b6000612eef85828601612e7f565b9250506020612f0085828601612eb5565b9150509250929050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612f3f81612f0a565b8114612f4a57600080fd5b50565b600081359050612f5c81612f36565b92915050565b600060208284031215612f7857612f77612e2c565b5b6000612f8684828501612f4d565b91505092915050565b60008115159050919050565b612fa481612f8f565b82525050565b6000602082019050612fbf6000830184612f9b565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612fff578082015181840152602081019050612fe4565b8381111561300e576000848401525b50505050565b6000601f19601f8301169050919050565b600061303082612fc5565b61303a8185612fd0565b935061304a818560208601612fe1565b61305381613014565b840191505092915050565b600060208201905081810360008301526130788184613025565b905092915050565b60006020828403121561309657613095612e2c565b5b60006130a484828501612eb5565b91505092915050565b6130b681612e56565b82525050565b60006020820190506130d160008301846130ad565b92915050565b6130e081612e94565b82525050565b60006020820190506130fb60008301846130d7565b92915050565b60008060006060848603121561311a57613119612e2c565b5b600061312886828701612e7f565b935050602061313986828701612e7f565b925050604061314a86828701612eb5565b9150509250925092565b6000806040838503121561316b5761316a612e2c565b5b600061317985828601612eb5565b925050602061318a85828601612e7f565b9150509250929050565b6000806000606084860312156131ad576131ac612e2c565b5b60006131bb86828701612e7f565b93505060206131cc86828701612eb5565b92505060406131dd86828701612eb5565b9150509250925092565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b61321c81612e94565b82525050565b600061322e8383613213565b60208301905092915050565b6000602082019050919050565b6000613252826131e7565b61325c81856131f2565b935061326783613203565b8060005b8381101561329857815161327f8882613222565b975061328a8361323a565b92505060018101905061326b565b5085935050505092915050565b600060208201905081810360008301526132bf8184613247565b905092915050565b600080fd5b600080fd5b600080fd5b60008083601f8401126132ec576132eb6132c7565b5b8235905067ffffffffffffffff811115613309576133086132cc565b5b602083019150836020820283011115613325576133246132d1565b5b9250929050565b60008083601f840112613342576133416132c7565b5b8235905067ffffffffffffffff81111561335f5761335e6132cc565b5b60208301915083602082028301111561337b5761337a6132d1565b5b9250929050565b6000806000806040858703121561339c5761339b612e2c565b5b600085013567ffffffffffffffff8111156133ba576133b9612e31565b5b6133c6878288016132d6565b9450945050602085013567ffffffffffffffff8111156133e9576133e8612e31565b5b6133f58782880161332c565b925092505092959194509250565b60008083601f840112613419576134186132c7565b5b8235905067ffffffffffffffff811115613436576134356132cc565b5b602083019150836001820283011115613452576134516132d1565b5b9250929050565b600080602083850312156134705761346f612e2c565b5b600083013567ffffffffffffffff81111561348e5761348d612e31565b5b61349a85828601613403565b92509250509250929050565b6000602082840312156134bc576134bb612e2c565b5b60006134ca84828501612e7f565b91505092915050565b6000819050919050565b60006134f86134f36134ee84612e36565b6134d3565b612e36565b9050919050565b600061350a826134dd565b9050919050565b600061351c826134ff565b9050919050565b61352c81613511565b82525050565b60006020820190506135476000830184613523565b92915050565b61355681612f8f565b811461356157600080fd5b50565b6000813590506135738161354d565b92915050565b600080604083850312156135905761358f612e2c565b5b600061359e85828601612e7f565b92505060206135af85828601613564565b9150509250929050565b600080602083850312156135d0576135cf612e2c565b5b600083013567ffffffffffffffff8111156135ee576135ed612e31565b5b6135fa8582860161332c565b92509250509250929050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61364382613014565b810181811067ffffffffffffffff821117156136625761366161360b565b5b80604052505050565b6000613675612e22565b9050613681828261363a565b919050565b600067ffffffffffffffff8211156136a1576136a061360b565b5b6136aa82613014565b9050602081019050919050565b82818337600083830152505050565b60006136d96136d484613686565b61366b565b9050828152602081018484840111156136f5576136f4613606565b5b6137008482856136b7565b509392505050565b600082601f83011261371d5761371c6132c7565b5b813561372d8482602086016136c6565b91505092915050565b600080600080608085870312156137505761374f612e2c565b5b600061375e87828801612e7f565b945050602061376f87828801612e7f565b935050604061378087828801612eb5565b925050606085013567ffffffffffffffff8111156137a1576137a0612e31565b5b6137ad87828801613708565b91505092959194509250565b600080604083850312156137d0576137cf612e2c565b5b60006137de85828601612e7f565b92505060206137ef85828601612e7f565b9150509250929050565b6000819050919050565b61380c816137f9565b82525050565b60006040820190506138276000830185613803565b61383460208301846130ad565b9392505050565b60008151905061384a8161354d565b92915050565b60006020828403121561386657613865612e2c565b5b60006138748482850161383b565b91505092915050565b7f4f6e6c794d696e74657200000000000000000000000000000000000000000000600082015250565b60006138b3600a83612fd0565b91506138be8261387d565b602082019050919050565b600060208201905081810360008301526138e2816138a6565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061393057607f821691505b60208210811415613944576139436138e9565b5b50919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b60006139a6602183612fd0565b91506139b18261394a565b604082019050919050565b600060208201905081810360008301526139d581613999565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60008201527f6b656e206f776e6572206e6f7220617070726f76656420666f7220616c6c0000602082015250565b6000613a38603e83612fd0565b9150613a43826139dc565b604082019050919050565b60006020820190508181036000830152613a6781613a2b565b9050919050565b7f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560008201527f72206e6f7220617070726f766564000000000000000000000000000000000000602082015250565b6000613aca602e83612fd0565b9150613ad582613a6e565b604082019050919050565b60006020820190508181036000830152613af981613abd565b9050919050565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b6000613b5c602b83612fd0565b9150613b6782613b00565b604082019050919050565b60006020820190508181036000830152613b8b81613b4f565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000613bcc82612e94565b9150613bd783612e94565b925082821015613bea57613be9613b92565b5b828203905092915050565b6000613c0082612e94565b9150613c0b83612e94565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613c4057613c3f613b92565b5b828201905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000613c8582612e94565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613cb857613cb7613b92565b5b600182019050919050565b7f4c656e677468206d69736d617463680000000000000000000000000000000000600082015250565b6000613cf9600f83612fd0565b9150613d0482613cc3565b602082019050919050565b60006020820190508181036000830152613d2881613cec565b9050919050565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b6000613d8b602c83612fd0565b9150613d9682613d2f565b604082019050919050565b60006020820190508181036000830152613dba81613d7e565b9050919050565b7f4f6e6c794d616e61676572000000000000000000000000000000000000000000600082015250565b6000613df7600b83612fd0565b9150613e0282613dc1565b602082019050919050565b60006020820190508181036000830152613e2681613dea565b9050919050565b7f4552433732313a20696e76616c696420746f6b656e2049440000000000000000600082015250565b6000613e63601883612fd0565b9150613e6e82613e2d565b602082019050919050565b60006020820190508181036000830152613e9281613e56565b9050919050565b7f4552433732313a2061646472657373207a65726f206973206e6f74206120766160008201527f6c6964206f776e65720000000000000000000000000000000000000000000000602082015250565b6000613ef5602983612fd0565b9150613f0082613e99565b604082019050919050565b60006020820190508181036000830152613f2481613ee8565b9050919050565b7f4e6f74417574686f72697a65644e6f724f776e65720000000000000000000000600082015250565b6000613f61601583612fd0565b9150613f6c82613f2b565b602082019050919050565b60006020820190508181036000830152613f9081613f54565b9050919050565b600080fd5b6000613fa883856131f2565b93507f07ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff831115613fdb57613fda613f97565b5b602083029250613fec8385846136b7565b82840190509392505050565b60006020820190508181036000830152614013818486613f9c565b90509392505050565b600081905092915050565b600061403282612fc5565b61403c818561401c565b935061404c818560208601612fe1565b80840191505092915050565b60006140648285614027565b91506140708284614027565b91508190509392505050565b7f416464726573735a65726f000000000000000000000000000000000000000000600082015250565b60006140b2600b83612fd0565b91506140bd8261407c565b602082019050919050565b600060208201905081810360008301526140e1816140a5565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000614144602683612fd0565b915061414f826140e8565b604082019050919050565b6000602082019050818103600083015261417381614137565b9050919050565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b60006141d6602583612fd0565b91506141e18261417a565b604082019050919050565b60006020820190508181036000830152614205816141c9565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000614268602483612fd0565b91506142738261420c565b604082019050919050565b600060208201905081810360008301526142978161425b565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006142d4602083612fd0565b91506142df8261429e565b602082019050919050565b60006020820190508181036000830152614303816142c7565b9050919050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b6000614340601983612fd0565b915061434b8261430a565b602082019050919050565b6000602082019050818103600083015261436f81614333565b9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b60006143d2603283612fd0565b91506143dd82614376565b604082019050919050565b60006020820190508181036000830152614401816143c5565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061444282612e94565b915061444d83612e94565b92508261445d5761445c614408565b5b828204905092915050565b600061447382612e94565b915061447e83612e94565b92508261448e5761448d614408565b5b828206905092915050565b7f4d61696e74656e616e6365000000000000000000000000000000000000000000600082015250565b60006144cf600b83612fd0565b91506144da82614499565b602082019050919050565b600060208201905081810360008301526144fe816144c2565b9050919050565b600081519050919050565b600082825260208201905092915050565b600061452c82614505565b6145368185614510565b9350614546818560208601612fe1565b61454f81613014565b840191505092915050565b600060808201905061456f60008301876130ad565b61457c60208301866130ad565b61458960408301856130d7565b818103606083015261459b8184614521565b905095945050505050565b6000815190506145b581612f36565b92915050565b6000602082840312156145d1576145d0612e2c565b5b60006145df848285016145a6565b91505092915050565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b600061461e602083612fd0565b9150614629826145e8565b602082019050919050565b6000602082019050818103600083015261464d81614611565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b600061468a601c83612fd0565b915061469582614654565b602082019050919050565b600060208201905081810360008301526146b98161467d565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fdfea2646970667358221220d961521d4b4430c505a36c8c0c52578d926bd7b0868857a399ed1a0134776aa664736f6c63430008090033

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

0000000000000000000000003cd993f928eab47b7d5024521c84bf2476cbb3db0000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000005368747470733a2f2f73376e737066702e6d7970696e6174612e636c6f75642f697066732f516d62753550663956576e637845436f41346864526f75434547627a374c317372335342576f51357438774e68752f00000000000000000000000000

-----Decoded View---------------
Arg [0] : _management (address): 0x3CD993f928eaB47b7d5024521c84bF2476cbb3Db
Arg [1] : _uri (string): https://s7nspfp.mypinata.cloud/ipfs/Qmbu5Pf9VWncxECoA4hdRouCEGbz7L1sr3SBWoQ5t8wNhu/

-----Encoded View---------------
6 Constructor Arguments found :
Arg [0] : 0000000000000000000000003cd993f928eab47b7d5024521c84bf2476cbb3db
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000053
Arg [3] : 68747470733a2f2f73376e737066702e6d7970696e6174612e636c6f75642f69
Arg [4] : 7066732f516d62753550663956576e637845436f41346864526f75434547627a
Arg [5] : 374c317372335342576f51357438774e68752f00000000000000000000000000


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.