ETH Price: $2,677.30 (-0.74%)

Token

Mintech (MINTECH)
 

Overview

Max Total Supply

0 MINTECH

Holders

248

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 MINTECH
0x680e8a5a1dc9499342a7bc0bfb3b99dff60ec1f9
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

# The Best in ETH Automations MinTech license pass allows you to get access to the software. **Please note that expired licenses can't be traded until they are renewed.** More info [here](https://www.mintechbots.com)

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
MinTech

Compiler Version
v0.8.13+commit.abaa5c0e

Optimization Enabled:
No with 200 runs

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

pragma solidity ^0.8.13;

import "@openzeppelin/contracts/token/ERC721/ERC721.sol";
import "@openzeppelin/contracts/token/ERC721/IERC721Receiver.sol";
import "@openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol";

import "@openzeppelin/contracts/utils/Address.sol";
import "@openzeppelin/contracts/utils/Counters.sol";
import "@openzeppelin/contracts/utils/introspection/IERC165.sol";
import "@openzeppelin/contracts/utils/Strings.sol";
import "@openzeppelin/contracts/utils/Context.sol";

import "@openzeppelin/contracts/access/Ownable.sol";

error MintPriceNotPaid();

/*
      ___                       ___           ___           ___           ___           ___     
     /\__\          ___        /\__\         /\  \         /\  \         /\  \         /\__\    
    /::|  |        /\  \      /::|  |        \:\  \       /::\  \       /::\  \       /:/  /    
   /:|:|  |        \:\  \    /:|:|  |         \:\  \     /:/\:\  \     /:/\:\  \     /:/__/     
  /:/|:|__|__      /::\__\  /:/|:|  |__       /::\  \   /::\~\:\  \   /:/  \:\  \   /::\  \ ___ 
 /:/ |::::\__\  __/:/\/__/ /:/ |:| /\__\     /:/\:\__\ /:/\:\ \:\__\ /:/__/ \:\__\ /:/\:\  /\__\
 \/__/~~/:/  / /\/:/  /    \/__|:|/:/  /    /:/  \/__/ \:\~\:\ \/__/ \:\  \  \/__/ \/__\:\/:/  /
       /:/  /  \::/__/         |:/:/  /    /:/  /       \:\ \:\__\    \:\  \            \::/  / 
      /:/  /    \:\__\         |::/  /     \/__/         \:\ \/__/     \:\  \           /:/  /  
     /:/  /      \/__/         /:/  /                     \:\__\        \:\__\         /:/  /   
     \/__/                     \/__/                       \/__/         \/__/         \/__/  
                                                                                            
*/ 
/// @title The Best Web3 Automation Tool!
/// @author karlssonunderthebridge#3415
/// @notice Welcome and Congrats on joining MinTech!

contract MinTech is ERC721, Ownable {

    using Strings for uint;
    using Counters for Counters.Counter;

    Counters.Counter private _tokenIdCounter;

    string private _tokenURI;
    string private _contractURI;
    
    uint256 public maxSupply = 300;
    uint256 public tokenPrice = 0.4 ether;
    uint256 public renewalPrice = 0.2 ether;

    bool public privateSaleActive = false;
    bool public saleActive = false;
    bool public transfersEnabled = false;

    mapping(address => bool) whitelistedAddresses;
    mapping(uint => uint256) public expiryTime;

    event tokenMinted(uint256 tokenId, uint256 _expiryTime);
    event tokenRenew(uint256 tokenId, uint256 _expiryTime);

    constructor(string memory tokenURI_, string memory contractURI_) ERC721("Mintech", "MINTECH") {
        _tokenURI = tokenURI_;
        _contractURI = contractURI_;
    }

    modifier noHaxxor() {
        require(msg.sender == tx.origin, "Haxxor access blocked");
        _;
    }

    function publicMint() external payable noHaxxor {
        uint256 tokenIndex = _tokenIdCounter.current() + 1;

        require(saleActive, "Sale is not active.");
        if (msg.value < tokenPrice) { revert MintPriceNotPaid(); }
        require(tokenIndex < maxSupply, "Minting this token would exceed total supply.");

        _tokenIdCounter.increment();
        _safeMint(msg.sender, tokenIndex);
        expiryTime[tokenIndex] = block.timestamp + 30 days;
        emit tokenMinted(tokenIndex, expiryTime[tokenIndex]);
    }

    function whitelistMint() public payable noHaxxor {
        uint256 tokenIndex = _tokenIdCounter.current() + 1;

        require(privateSaleActive, "Private sale is currently not active.");
        require(whitelistedAddresses[msg.sender], "Wallet is not whitelisted.");
        if (msg.value < tokenPrice) { revert MintPriceNotPaid(); }
        require(tokenIndex < maxSupply, "Minting this token would exceed total supply.");

        whitelistedAddresses[msg.sender] = false;
        _tokenIdCounter.increment();
        _safeMint(msg.sender, tokenIndex);
        expiryTime[tokenIndex] = block.timestamp + 30 days;
        emit tokenMinted(tokenIndex, expiryTime[tokenIndex]);
    }

    function renewToken(uint _tokenId) public payable noHaxxor {
        require(msg.value == renewalPrice, "Incorrect amount of ether sent.");
        require(_exists(_tokenId), "Token does not exist.");

        uint256 _currentexpiryTime = expiryTime[_tokenId];

        if (block.timestamp > _currentexpiryTime) {
            expiryTime[_tokenId] = block.timestamp + 30 days;
        } else {
            expiryTime[_tokenId] += 30 days;
        }
        emit tokenRenew(_tokenId, expiryTime[_tokenId]);
    }

    //Admin functions

    function ownerOnlyMint(address _receiver) public onlyOwner {
        uint tokenIndex = _tokenIdCounter.current() + 1;

        require(_receiver != address(0), "Receiver cannot be zero address.");
        require(tokenIndex <= maxSupply, "Minting this token would exceed total supply.");

        if (msg.sender != _receiver) {
            require(balanceOf(_receiver) == 0, "Individual already owns a token.");
        }

        _tokenIdCounter.increment();

        _safeMint(_receiver, tokenIndex);
        expiryTime[tokenIndex] = block.timestamp + 30 days;
        emit tokenMinted(tokenIndex, expiryTime[tokenIndex]);

    }

    function ownerRenewToken(uint _tokenId) external onlyOwner {
        require(_exists(_tokenId), "Token does not exist.");
        
        uint _currentexpiryTime = expiryTime[_tokenId];

        if (block.timestamp > _currentexpiryTime) {
            expiryTime[_tokenId] = block.timestamp + 30 days;
        } else {
            expiryTime[_tokenId] += 30 days;
        }
        emit tokenRenew(_tokenId, expiryTime[_tokenId]);
    }

    function changeMintPrice(uint256 _changedMintPrice) external onlyOwner {
        require(tokenPrice != _changedMintPrice, "Price did not change.");
        tokenPrice = _changedMintPrice;
    }

    function addWhitelist(address[] calldata _addresses) public onlyOwner {
        uint256 _address_length = _addresses.length;
        uint256 i = 0;
        for (i; i < _address_length;) {
            whitelistedAddresses[_addresses[i]] = true;
            unchecked {++i;}
        }
    }

    function removeWhitelist(address[] calldata _addresses) public onlyOwner {
        uint256 _address_length = _addresses.length;
        uint256 i = 0;
        for (i; i < _address_length;) {
            whitelistedAddresses[_addresses[i]] = false;
            unchecked {++i;}
        }
    }

    function changeRenewalPrice(uint256 _changedRenewalPrice) external onlyOwner {
        require(renewalPrice != _changedRenewalPrice, "Price did not change.");
        renewalPrice = _changedRenewalPrice;
    }

    function addTokenSupply(uint256 _newTokens) external onlyOwner {
        maxSupply += _newTokens;
    }

    function removeTokens(uint256 _numTokens) external onlyOwner {
        require(maxSupply - _numTokens >= currentSupply(), "Supply cannot fall below minted tokens.");
        maxSupply -= _numTokens;
    }

    function setTokenURI(string calldata tokenURI_) external onlyOwner {
        _tokenURI = tokenURI_;
    }

    function setContractURI(string calldata contractURI_) external onlyOwner {
        _contractURI = contractURI_;
    }

    function withdrawBalance() public onlyOwner {
		payable(msg.sender).transfer(address(this).balance);
	}

    function startSale() public onlyOwner {
        saleActive = !saleActive;
    }

    function startPrivateSale() public onlyOwner {
        privateSaleActive = !privateSaleActive;
    }

    function activateTransfers() public onlyOwner {
        transfersEnabled = !transfersEnabled;
    }

    //View Functions

    function hasWhitelist(address _address) public view returns (bool) {
        return whitelistedAddresses[_address];
    }

    function authenticateUser(address _user, uint256 _tokenId) public view returns (bool) {
        require(_exists(_tokenId), "Token does not exist.");
        require(expiryTime[_tokenId] > block.timestamp, "Token has expired. Please renew your token!");

        return _user == ownerOf(_tokenId) ? true : false;
    }

    function authenticateUser(uint256 _tokenId) public view returns (bool) {
        require(_exists(_tokenId), "Token does not exist.");
        require(expiryTime[_tokenId] > block.timestamp, "Token has expired. Please renew your token!");

        return msg.sender == ownerOf(_tokenId) ? true : false;
    }

    function currentSupply() public view returns (uint) {
        return _tokenIdCounter.current();
    }

    function tokenURI(uint _tokenId) public view override returns (string memory) {
        require(_exists(_tokenId), "Token does not exist.");
        return string(abi.encodePacked(_tokenURI, _tokenId.toString()));
    }

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

    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public virtual override {
        require(expiryTime[tokenId] > block.timestamp, "Token is expired.");
        _safeTransfer(from, to, tokenId, _data);
    }

    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        require(expiryTime[tokenId] > block.timestamp, "Token is expired.");
        _transfer(from, to, tokenId);
    }

    receive() external payable {}
}

File 2 of 12 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (access/Ownable.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

File 3 of 12 : 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 4 of 12 : Strings.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Strings.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

File 5 of 12 : 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);
}

File 6 of 12 : Counters.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Counters.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

File 7 of 12 : Address.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.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

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

File 8 of 12 : 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 9 of 12 : 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 10 of 12 : ERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/ERC721.sol)

pragma solidity ^0.8.0;

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

    /**
     * @dev See {IERC721-balanceOf}.
     */
    function balanceOf(address owner) public view virtual override returns (uint256) {
        require(owner != address(0), "ERC721: balance query for the zero address");
        return _balances[owner];
    }

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view virtual override returns (address) {
        address owner = _owners[tokenId];
        require(owner != address(0), "ERC721: owner query for nonexistent token");
        return owner;
    }

    /**
     * @dev See {IERC721Metadata-name}.
     */
    function name() public view virtual override returns (string memory) {
        return _name;
    }

    /**
     * @dev See {IERC721Metadata-symbol}.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token");

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

    /**
     * @dev Returns whether `spender` is allowed to manage `tokenId`.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) {
        require(_exists(tokenId), "ERC721: operator query for nonexistent token");
        address owner = ERC721.ownerOf(tokenId);
        return (spender == owner || 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 a {Approval} event.
     */
    function _approve(address to, uint256 tokenId) internal virtual {
        _tokenApprovals[tokenId] = to;
        emit Approval(ERC721.ownerOf(tokenId), to, tokenId);
    }

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

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

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

    /**
     * @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 11 of 12 : IERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.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 be have been allowed to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

    /**
     * @dev Transfers `tokenId` token from `from` to `to`.
     *
     * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

    /**
     * @dev Gives permission to `to` to transfer `tokenId` token to another account.
     * The approval is cleared when the token is transferred.
     *
     * Only a single account can be approved at a time, so approving the zero address clears previous approvals.
     *
     * Requirements:
     *
     * - The caller must own the token or be an approved operator.
     * - `tokenId` must exist.
     *
     * Emits an {Approval} event.
     */
    function approve(address to, uint256 tokenId) external;

    /**
     * @dev 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 12 of 12 : 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;
    }
}

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"tokenURI_","type":"string"},{"internalType":"string","name":"contractURI_","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"MintPriceNotPaid","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"_expiryTime","type":"uint256"}],"name":"tokenMinted","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"_expiryTime","type":"uint256"}],"name":"tokenRenew","type":"event"},{"inputs":[],"name":"activateTransfers","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newTokens","type":"uint256"}],"name":"addTokenSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"_addresses","type":"address[]"}],"name":"addWhitelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_user","type":"address"},{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"authenticateUser","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"authenticateUser","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_changedMintPrice","type":"uint256"}],"name":"changeMintPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_changedRenewalPrice","type":"uint256"}],"name":"changeRenewalPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"currentSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"expiryTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":"_address","type":"address"}],"name":"hasWhitelist","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_receiver","type":"address"}],"name":"ownerOnlyMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"ownerRenewToken","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"privateSaleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_numTokens","type":"uint256"}],"name":"removeTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"_addresses","type":"address[]"}],"name":"removeWhitelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"renewToken","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"renewalPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"saleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"contractURI_","type":"string"}],"name":"setContractURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"tokenURI_","type":"string"}],"name":"setTokenURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"startPrivateSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"startSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokenPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"transfersEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"whitelistMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"withdrawBalance","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

608060405261012c600a5567058d15e176280000600b556702c68af0bb140000600c556000600d60006101000a81548160ff0219169083151502179055506000600d60016101000a81548160ff0219169083151502179055506000600d60026101000a81548160ff0219169083151502179055503480156200008057600080fd5b5060405162005425380380620054258339818101604052810190620000a69190620004bb565b6040518060400160405280600781526020017f4d696e74656368000000000000000000000000000000000000000000000000008152506040518060400160405280600781526020017f4d494e544543480000000000000000000000000000000000000000000000000081525081600090805190602001906200012a9291906200026e565b508060019080519060200190620001439291906200026e565b505050620001666200015a620001a060201b60201c565b620001a860201b60201c565b81600890805190602001906200017e9291906200026e565b508060099080519060200190620001979291906200026e565b505050620005a4565b600033905090565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200027c906200056f565b90600052602060002090601f016020900481019282620002a05760008555620002ec565b82601f10620002bb57805160ff1916838001178555620002ec565b82800160010185558215620002ec579182015b82811115620002eb578251825591602001919060010190620002ce565b5b509050620002fb9190620002ff565b5090565b5b808211156200031a57600081600090555060010162000300565b5090565b6000604051905090565b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b62000387826200033c565b810181811067ffffffffffffffff82111715620003a957620003a86200034d565b5b80604052505050565b6000620003be6200031e565b9050620003cc82826200037c565b919050565b600067ffffffffffffffff821115620003ef57620003ee6200034d565b5b620003fa826200033c565b9050602081019050919050565b60005b83811015620004275780820151818401526020810190506200040a565b8381111562000437576000848401525b50505050565b6000620004546200044e84620003d1565b620003b2565b90508281526020810184848401111562000473576200047262000337565b5b6200048084828562000407565b509392505050565b600082601f830112620004a0576200049f62000332565b5b8151620004b28482602086016200043d565b91505092915050565b60008060408385031215620004d557620004d462000328565b5b600083015167ffffffffffffffff811115620004f657620004f56200032d565b5b620005048582860162000488565b925050602083015167ffffffffffffffff8111156200052857620005276200032d565b5b620005368582860162000488565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200058857607f821691505b6020821081036200059e576200059d62000540565b5b50919050565b614e7180620005b46000396000f3fe6080604052600436106102765760003560e01c80637ff9b5961161014f578063be010c40116100c1578063e8a3d4851161007a578063e8a3d485146108e4578063e985e9c51461090f578063edac985b1461094c578063f18d4dbb14610975578063f2fde38b1461099e578063faab3def146109c75761027d565b8063be010c40146107ae578063bef97c87146107eb578063c87b56dd14610816578063cdffd6ed14610853578063d5abeb0114610890578063e0df5b6f146108bb5761027d565b806395d89b411161011357806395d89b41146106c8578063a22cb465146106f3578063b66a0e5d1461071c578063b88d4fde14610733578063b8cb65ee1461075c578063bb026e32146107855761027d565b80637ff9b59614610602578063804f43cd1461062d5780638cdb7e8b146106375780638da5cb5b14610674578063938e3d7b1461069f5761027d565b806342842e0e116101e857806368428a1b116101ac57806368428a1b1461051157806370a082311461053c578063715018a61461057957806371e2394714610590578063771282f6146105ac5780637b55297a146105d75761027d565b806342842e0e1461042e5780634e5db165146104575780635fd8c710146104945780636352211e146104ab57806367805d71146104e85761027d565b806323b872dd1161023a57806323b872dd1461037957806326092b83146103a25780632a237bb6146103ac578063338dbf59146103d75780633a62244f146103ee5780633fd17366146104055761027d565b806301ffc9a71461028257806306fdde03146102bf578063081812fc146102ea578063095ea7b31461032757806323245216146103505761027d565b3661027d57005b600080fd5b34801561028e57600080fd5b506102a960048036038101906102a4919061368d565b6109f0565b6040516102b691906136d5565b60405180910390f35b3480156102cb57600080fd5b506102d4610ad2565b6040516102e19190613789565b60405180910390f35b3480156102f657600080fd5b50610311600480360381019061030c91906137e1565b610b64565b60405161031e919061384f565b60405180910390f35b34801561033357600080fd5b5061034e60048036038101906103499190613896565b610be9565b005b34801561035c57600080fd5b506103776004803603810190610372919061393b565b610d00565b005b34801561038557600080fd5b506103a0600480360381019061039b9190613988565b610e1f565b005b6103aa610e84565b005b3480156103b857600080fd5b506103c1611064565b6040516103ce91906136d5565b60405180910390f35b3480156103e357600080fd5b506103ec611077565b005b3480156103fa57600080fd5b5061040361111f565b005b34801561041157600080fd5b5061042c600480360381019061042791906137e1565b6111c7565b005b34801561043a57600080fd5b5061045560048036038101906104509190613988565b611291565b005b34801561046357600080fd5b5061047e60048036038101906104799190613896565b6112b1565b60405161048b91906136d5565b60405180910390f35b3480156104a057600080fd5b506104a961139d565b005b3480156104b757600080fd5b506104d260048036038101906104cd91906137e1565b611462565b6040516104df919061384f565b60405180910390f35b3480156104f457600080fd5b5061050f600480360381019061050a91906139db565b611513565b005b34801561051d57600080fd5b50610526611766565b60405161053391906136d5565b60405180910390f35b34801561054857600080fd5b50610563600480360381019061055e91906139db565b611779565b6040516105709190613a17565b60405180910390f35b34801561058557600080fd5b5061058e611830565b005b6105aa60048036038101906105a591906137e1565b6118b8565b005b3480156105b857600080fd5b506105c1611a7b565b6040516105ce9190613a17565b60405180910390f35b3480156105e357600080fd5b506105ec611a8c565b6040516105f99190613a17565b60405180910390f35b34801561060e57600080fd5b50610617611a92565b6040516106249190613a17565b60405180910390f35b610635611a98565b005b34801561064357600080fd5b5061065e600480360381019061065991906139db565b611d5c565b60405161066b91906136d5565b60405180910390f35b34801561068057600080fd5b50610689611db2565b604051610696919061384f565b60405180910390f35b3480156106ab57600080fd5b506106c660048036038101906106c19190613a88565b611ddc565b005b3480156106d457600080fd5b506106dd611e6e565b6040516106ea9190613789565b60405180910390f35b3480156106ff57600080fd5b5061071a60048036038101906107159190613b01565b611f00565b005b34801561072857600080fd5b50610731611f16565b005b34801561073f57600080fd5b5061075a60048036038101906107559190613c71565b611fbe565b005b34801561076857600080fd5b50610783600480360381019061077e91906137e1565b612025565b005b34801561079157600080fd5b506107ac60048036038101906107a791906137e1565b612114565b005b3480156107ba57600080fd5b506107d560048036038101906107d091906137e1565b6121de565b6040516107e29190613a17565b60405180910390f35b3480156107f757600080fd5b506108006121f6565b60405161080d91906136d5565b60405180910390f35b34801561082257600080fd5b5061083d600480360381019061083891906137e1565b612209565b60405161084a9190613789565b60405180910390f35b34801561085f57600080fd5b5061087a600480360381019061087591906137e1565b612285565b60405161088791906136d5565b60405180910390f35b34801561089c57600080fd5b506108a5612370565b6040516108b29190613a17565b60405180910390f35b3480156108c757600080fd5b506108e260048036038101906108dd9190613a88565b612376565b005b3480156108f057600080fd5b506108f9612408565b6040516109069190613789565b60405180910390f35b34801561091b57600080fd5b5061093660048036038101906109319190613cf4565b61249a565b60405161094391906136d5565b60405180910390f35b34801561095857600080fd5b50610973600480360381019061096e919061393b565b61252e565b005b34801561098157600080fd5b5061099c600480360381019061099791906137e1565b61264d565b005b3480156109aa57600080fd5b506109c560048036038101906109c091906139db565b6126e5565b005b3480156109d357600080fd5b506109ee60048036038101906109e991906137e1565b6127dc565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610abb57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610acb5750610aca82612969565b5b9050919050565b606060008054610ae190613d63565b80601f0160208091040260200160405190810160405280929190818152602001828054610b0d90613d63565b8015610b5a5780601f10610b2f57610100808354040283529160200191610b5a565b820191906000526020600020905b815481529060010190602001808311610b3d57829003601f168201915b5050505050905090565b6000610b6f826129d3565b610bae576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ba590613e06565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610bf482611462565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610c64576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c5b90613e98565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610c83612a3f565b73ffffffffffffffffffffffffffffffffffffffff161480610cb25750610cb181610cac612a3f565b61249a565b5b610cf1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ce890613f2a565b60405180910390fd5b610cfb8383612a47565b505050565b610d08612a3f565b73ffffffffffffffffffffffffffffffffffffffff16610d26611db2565b73ffffffffffffffffffffffffffffffffffffffff1614610d7c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d7390613f96565b60405180910390fd5b600082829050905060005b81811015610e19576000600e6000868685818110610da857610da7613fb6565b5b9050602002016020810190610dbd91906139db565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550806001019050610d87565b50505050565b42600f60008381526020019081526020016000205411610e74576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e6b90614031565b60405180910390fd5b610e7f838383612b00565b505050565b3273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610ef2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ee99061409d565b60405180910390fd5b60006001610f006007612d66565b610f0a91906140ec565b9050600d60019054906101000a900460ff16610f5b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f529061418e565b60405180910390fd5b600b54341015610f97576040517f21e191e200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600a548110610fdb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fd290614220565b60405180910390fd5b610fe56007612d74565b610fef3382612d8a565b62278d0042610ffe91906140ec565b600f6000838152602001908152602001600020819055507f0930d5cc1d8162f59cde20a12fdc913d0072915ecfbdf4b1ed9e4f10f0fb479281600f600084815260200190815260200160002054604051611059929190614240565b60405180910390a150565b600d60009054906101000a900460ff1681565b61107f612a3f565b73ffffffffffffffffffffffffffffffffffffffff1661109d611db2565b73ffffffffffffffffffffffffffffffffffffffff16146110f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110ea90613f96565b60405180910390fd5b600d60009054906101000a900460ff1615600d60006101000a81548160ff021916908315150217905550565b611127612a3f565b73ffffffffffffffffffffffffffffffffffffffff16611145611db2565b73ffffffffffffffffffffffffffffffffffffffff161461119b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161119290613f96565b60405180910390fd5b600d60029054906101000a900460ff1615600d60026101000a81548160ff021916908315150217905550565b6111cf612a3f565b73ffffffffffffffffffffffffffffffffffffffff166111ed611db2565b73ffffffffffffffffffffffffffffffffffffffff1614611243576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161123a90613f96565b60405180910390fd5b80600b5403611287576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161127e906142b5565b60405180910390fd5b80600b8190555050565b6112ac83838360405180602001604052806000815250611fbe565b505050565b60006112bc826129d3565b6112fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112f290614321565b60405180910390fd5b42600f60008481526020019081526020016000205411611350576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611347906143b3565b60405180910390fd5b61135982611462565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614611392576000611395565b60015b905092915050565b6113a5612a3f565b73ffffffffffffffffffffffffffffffffffffffff166113c3611db2565b73ffffffffffffffffffffffffffffffffffffffff1614611419576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161141090613f96565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f1935050505015801561145f573d6000803e3d6000fd5b50565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361150a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161150190614445565b60405180910390fd5b80915050919050565b61151b612a3f565b73ffffffffffffffffffffffffffffffffffffffff16611539611db2565b73ffffffffffffffffffffffffffffffffffffffff161461158f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161158690613f96565b60405180910390fd5b6000600161159d6007612d66565b6115a791906140ec565b9050600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611618576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161160f906144b1565b60405180910390fd5b600a5481111561165d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161165490614220565b60405180910390fd5b8173ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146116dc57600061169b83611779565b146116db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116d29061451d565b60405180910390fd5b5b6116e66007612d74565b6116f08282612d8a565b62278d00426116ff91906140ec565b600f6000838152602001908152602001600020819055507f0930d5cc1d8162f59cde20a12fdc913d0072915ecfbdf4b1ed9e4f10f0fb479281600f60008481526020019081526020016000205460405161175a929190614240565b60405180910390a15050565b600d60019054906101000a900460ff1681565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036117e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117e0906145af565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611838612a3f565b73ffffffffffffffffffffffffffffffffffffffff16611856611db2565b73ffffffffffffffffffffffffffffffffffffffff16146118ac576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118a390613f96565b60405180910390fd5b6118b66000612da8565b565b3273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611926576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161191d9061409d565b60405180910390fd5b600c54341461196a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119619061461b565b60405180910390fd5b611973816129d3565b6119b2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119a990614321565b60405180910390fd5b6000600f6000838152602001908152602001600020549050804211156119fd5762278d00426119e191906140ec565b600f600084815260200190815260200160002081905550611a2b565b62278d00600f60008481526020019081526020016000206000828254611a2391906140ec565b925050819055505b7fc5b22e9a67a130743449e00b09e4a00a944ca980e143df60ab742426c534c4f982600f600085815260200190815260200160002054604051611a6f929190614240565b60405180910390a15050565b6000611a876007612d66565b905090565b600c5481565b600b5481565b3273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611b06576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611afd9061409d565b60405180910390fd5b60006001611b146007612d66565b611b1e91906140ec565b9050600d60009054906101000a900460ff16611b6f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b66906146ad565b60405180910390fd5b600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16611bfb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bf290614719565b60405180910390fd5b600b54341015611c37576040517f21e191e200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600a548110611c7b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c7290614220565b60405180910390fd5b6000600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550611cdd6007612d74565b611ce73382612d8a565b62278d0042611cf691906140ec565b600f6000838152602001908152602001600020819055507f0930d5cc1d8162f59cde20a12fdc913d0072915ecfbdf4b1ed9e4f10f0fb479281600f600084815260200190815260200160002054604051611d51929190614240565b60405180910390a150565b6000600e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611de4612a3f565b73ffffffffffffffffffffffffffffffffffffffff16611e02611db2565b73ffffffffffffffffffffffffffffffffffffffff1614611e58576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e4f90613f96565b60405180910390fd5b818160099190611e6992919061357e565b505050565b606060018054611e7d90613d63565b80601f0160208091040260200160405190810160405280929190818152602001828054611ea990613d63565b8015611ef65780601f10611ecb57610100808354040283529160200191611ef6565b820191906000526020600020905b815481529060010190602001808311611ed957829003601f168201915b5050505050905090565b611f12611f0b612a3f565b8383612e6e565b5050565b611f1e612a3f565b73ffffffffffffffffffffffffffffffffffffffff16611f3c611db2565b73ffffffffffffffffffffffffffffffffffffffff1614611f92576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f8990613f96565b60405180910390fd5b600d60019054906101000a900460ff1615600d60016101000a81548160ff021916908315150217905550565b42600f60008481526020019081526020016000205411612013576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161200a90614031565b60405180910390fd5b61201f84848484612fda565b50505050565b61202d612a3f565b73ffffffffffffffffffffffffffffffffffffffff1661204b611db2565b73ffffffffffffffffffffffffffffffffffffffff16146120a1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161209890613f96565b60405180910390fd5b6120a9611a7b565b81600a546120b79190614739565b10156120f8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120ef906147df565b60405180910390fd5b80600a600082825461210a9190614739565b9250508190555050565b61211c612a3f565b73ffffffffffffffffffffffffffffffffffffffff1661213a611db2565b73ffffffffffffffffffffffffffffffffffffffff1614612190576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161218790613f96565b60405180910390fd5b80600c54036121d4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121cb906142b5565b60405180910390fd5b80600c8190555050565b600f6020528060005260406000206000915090505481565b600d60029054906101000a900460ff1681565b6060612214826129d3565b612253576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161224a90614321565b60405180910390fd5b600861225e83613036565b60405160200161226f9291906148cf565b6040516020818303038152906040529050919050565b6000612290826129d3565b6122cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122c690614321565b60405180910390fd5b42600f60008481526020019081526020016000205411612324576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161231b906143b3565b60405180910390fd5b61232d82611462565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614612366576000612369565b60015b9050919050565b600a5481565b61237e612a3f565b73ffffffffffffffffffffffffffffffffffffffff1661239c611db2565b73ffffffffffffffffffffffffffffffffffffffff16146123f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123e990613f96565b60405180910390fd5b81816008919061240392919061357e565b505050565b60606009805461241790613d63565b80601f016020809104026020016040519081016040528092919081815260200182805461244390613d63565b80156124905780601f1061246557610100808354040283529160200191612490565b820191906000526020600020905b81548152906001019060200180831161247357829003601f168201915b5050505050905090565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b612536612a3f565b73ffffffffffffffffffffffffffffffffffffffff16612554611db2565b73ffffffffffffffffffffffffffffffffffffffff16146125aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125a190613f96565b60405180910390fd5b600082829050905060005b81811015612647576001600e60008686858181106125d6576125d5613fb6565b5b90506020020160208101906125eb91906139db565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508060010190506125b5565b50505050565b612655612a3f565b73ffffffffffffffffffffffffffffffffffffffff16612673611db2565b73ffffffffffffffffffffffffffffffffffffffff16146126c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126c090613f96565b60405180910390fd5b80600a60008282546126db91906140ec565b9250508190555050565b6126ed612a3f565b73ffffffffffffffffffffffffffffffffffffffff1661270b611db2565b73ffffffffffffffffffffffffffffffffffffffff1614612761576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161275890613f96565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036127d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127c790614965565b60405180910390fd5b6127d981612da8565b50565b6127e4612a3f565b73ffffffffffffffffffffffffffffffffffffffff16612802611db2565b73ffffffffffffffffffffffffffffffffffffffff1614612858576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161284f90613f96565b60405180910390fd5b612861816129d3565b6128a0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161289790614321565b60405180910390fd5b6000600f6000838152602001908152602001600020549050804211156128eb5762278d00426128cf91906140ec565b600f600084815260200190815260200160002081905550612919565b62278d00600f6000848152602001908152602001600020600082825461291191906140ec565b925050819055505b7fc5b22e9a67a130743449e00b09e4a00a944ca980e143df60ab742426c534c4f982600f60008581526020019081526020016000205460405161295d929190614240565b60405180910390a15050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16612aba83611462565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b8273ffffffffffffffffffffffffffffffffffffffff16612b2082611462565b73ffffffffffffffffffffffffffffffffffffffff1614612b76576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b6d906149f7565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612be5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bdc90614a89565b60405180910390fd5b612bf0838383613196565b612bfb600082612a47565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612c4b9190614739565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612ca291906140ec565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612d6183838361319b565b505050565b600081600001549050919050565b6001816000016000828254019250508190555050565b612da48282604051806020016040528060008152506131a0565b5050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612edc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ed390614af5565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051612fcd91906136d5565b60405180910390a3505050565b612fe5848484612b00565b612ff1848484846131fb565b613030576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161302790614b87565b60405180910390fd5b50505050565b60606000820361307d576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050613191565b600082905060005b600082146130af57808061309890614ba7565b915050600a826130a89190614c1e565b9150613085565b60008167ffffffffffffffff8111156130cb576130ca613b46565b5b6040519080825280601f01601f1916602001820160405280156130fd5781602001600182028036833780820191505090505b5090505b6000851461318a576001826131169190614739565b9150600a856131259190614c4f565b603061313191906140ec565b60f81b81838151811061314757613146613fb6565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856131839190614c1e565b9450613101565b8093505050505b919050565b505050565b505050565b6131aa8383613382565b6131b760008484846131fb565b6131f6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131ed90614b87565b60405180910390fd5b505050565b600061321c8473ffffffffffffffffffffffffffffffffffffffff1661355b565b15613375578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02613245612a3f565b8786866040518563ffffffff1660e01b81526004016132679493929190614cd5565b6020604051808303816000875af19250505080156132a357506040513d601f19601f820116820180604052508101906132a09190614d36565b60015b613325573d80600081146132d3576040519150601f19603f3d011682016040523d82523d6000602084013e6132d8565b606091505b50600081510361331d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161331490614b87565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161491505061337a565b600190505b949350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036133f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016133e890614daf565b60405180910390fd5b6133fa816129d3565b1561343a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161343190614e1b565b60405180910390fd5b61344660008383613196565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461349691906140ec565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46135576000838361319b565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b82805461358a90613d63565b90600052602060002090601f0160209004810192826135ac57600085556135f3565b82601f106135c557803560ff19168380011785556135f3565b828001600101855582156135f3579182015b828111156135f25782358255916020019190600101906135d7565b5b5090506136009190613604565b5090565b5b8082111561361d576000816000905550600101613605565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61366a81613635565b811461367557600080fd5b50565b60008135905061368781613661565b92915050565b6000602082840312156136a3576136a261362b565b5b60006136b184828501613678565b91505092915050565b60008115159050919050565b6136cf816136ba565b82525050565b60006020820190506136ea60008301846136c6565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561372a57808201518184015260208101905061370f565b83811115613739576000848401525b50505050565b6000601f19601f8301169050919050565b600061375b826136f0565b61376581856136fb565b935061377581856020860161370c565b61377e8161373f565b840191505092915050565b600060208201905081810360008301526137a38184613750565b905092915050565b6000819050919050565b6137be816137ab565b81146137c957600080fd5b50565b6000813590506137db816137b5565b92915050565b6000602082840312156137f7576137f661362b565b5b6000613805848285016137cc565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006138398261380e565b9050919050565b6138498161382e565b82525050565b60006020820190506138646000830184613840565b92915050565b6138738161382e565b811461387e57600080fd5b50565b6000813590506138908161386a565b92915050565b600080604083850312156138ad576138ac61362b565b5b60006138bb85828601613881565b92505060206138cc858286016137cc565b9150509250929050565b600080fd5b600080fd5b600080fd5b60008083601f8401126138fb576138fa6138d6565b5b8235905067ffffffffffffffff811115613918576139176138db565b5b602083019150836020820283011115613934576139336138e0565b5b9250929050565b600080602083850312156139525761395161362b565b5b600083013567ffffffffffffffff8111156139705761396f613630565b5b61397c858286016138e5565b92509250509250929050565b6000806000606084860312156139a1576139a061362b565b5b60006139af86828701613881565b93505060206139c086828701613881565b92505060406139d1868287016137cc565b9150509250925092565b6000602082840312156139f1576139f061362b565b5b60006139ff84828501613881565b91505092915050565b613a11816137ab565b82525050565b6000602082019050613a2c6000830184613a08565b92915050565b60008083601f840112613a4857613a476138d6565b5b8235905067ffffffffffffffff811115613a6557613a646138db565b5b602083019150836001820283011115613a8157613a806138e0565b5b9250929050565b60008060208385031215613a9f57613a9e61362b565b5b600083013567ffffffffffffffff811115613abd57613abc613630565b5b613ac985828601613a32565b92509250509250929050565b613ade816136ba565b8114613ae957600080fd5b50565b600081359050613afb81613ad5565b92915050565b60008060408385031215613b1857613b1761362b565b5b6000613b2685828601613881565b9250506020613b3785828601613aec565b9150509250929050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b613b7e8261373f565b810181811067ffffffffffffffff82111715613b9d57613b9c613b46565b5b80604052505050565b6000613bb0613621565b9050613bbc8282613b75565b919050565b600067ffffffffffffffff821115613bdc57613bdb613b46565b5b613be58261373f565b9050602081019050919050565b82818337600083830152505050565b6000613c14613c0f84613bc1565b613ba6565b905082815260208101848484011115613c3057613c2f613b41565b5b613c3b848285613bf2565b509392505050565b600082601f830112613c5857613c576138d6565b5b8135613c68848260208601613c01565b91505092915050565b60008060008060808587031215613c8b57613c8a61362b565b5b6000613c9987828801613881565b9450506020613caa87828801613881565b9350506040613cbb878288016137cc565b925050606085013567ffffffffffffffff811115613cdc57613cdb613630565b5b613ce887828801613c43565b91505092959194509250565b60008060408385031215613d0b57613d0a61362b565b5b6000613d1985828601613881565b9250506020613d2a85828601613881565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680613d7b57607f821691505b602082108103613d8e57613d8d613d34565b5b50919050565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b6000613df0602c836136fb565b9150613dfb82613d94565b604082019050919050565b60006020820190508181036000830152613e1f81613de3565b9050919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b6000613e826021836136fb565b9150613e8d82613e26565b604082019050919050565b60006020820190508181036000830152613eb181613e75565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b6000613f146038836136fb565b9150613f1f82613eb8565b604082019050919050565b60006020820190508181036000830152613f4381613f07565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613f806020836136fb565b9150613f8b82613f4a565b602082019050919050565b60006020820190508181036000830152613faf81613f73565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f546f6b656e20697320657870697265642e000000000000000000000000000000600082015250565b600061401b6011836136fb565b915061402682613fe5565b602082019050919050565b6000602082019050818103600083015261404a8161400e565b9050919050565b7f486178786f722061636365737320626c6f636b65640000000000000000000000600082015250565b60006140876015836136fb565b915061409282614051565b602082019050919050565b600060208201905081810360008301526140b68161407a565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006140f7826137ab565b9150614102836137ab565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614137576141366140bd565b5b828201905092915050565b7f53616c65206973206e6f74206163746976652e00000000000000000000000000600082015250565b60006141786013836136fb565b915061418382614142565b602082019050919050565b600060208201905081810360008301526141a78161416b565b9050919050565b7f4d696e74696e67207468697320746f6b656e20776f756c64206578636565642060008201527f746f74616c20737570706c792e00000000000000000000000000000000000000602082015250565b600061420a602d836136fb565b9150614215826141ae565b604082019050919050565b60006020820190508181036000830152614239816141fd565b9050919050565b60006040820190506142556000830185613a08565b6142626020830184613a08565b9392505050565b7f507269636520646964206e6f74206368616e67652e0000000000000000000000600082015250565b600061429f6015836136fb565b91506142aa82614269565b602082019050919050565b600060208201905081810360008301526142ce81614292565b9050919050565b7f546f6b656e20646f6573206e6f742065786973742e0000000000000000000000600082015250565b600061430b6015836136fb565b9150614316826142d5565b602082019050919050565b6000602082019050818103600083015261433a816142fe565b9050919050565b7f546f6b656e2068617320657870697265642e20506c656173652072656e65772060008201527f796f757220746f6b656e21000000000000000000000000000000000000000000602082015250565b600061439d602b836136fb565b91506143a882614341565b604082019050919050565b600060208201905081810360008301526143cc81614390565b9050919050565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b600061442f6029836136fb565b915061443a826143d3565b604082019050919050565b6000602082019050818103600083015261445e81614422565b9050919050565b7f52656365697665722063616e6e6f74206265207a65726f20616464726573732e600082015250565b600061449b6020836136fb565b91506144a682614465565b602082019050919050565b600060208201905081810360008301526144ca8161448e565b9050919050565b7f496e646976696475616c20616c7265616479206f776e73206120746f6b656e2e600082015250565b60006145076020836136fb565b9150614512826144d1565b602082019050919050565b60006020820190508181036000830152614536816144fa565b9050919050565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b6000614599602a836136fb565b91506145a48261453d565b604082019050919050565b600060208201905081810360008301526145c88161458c565b9050919050565b7f496e636f727265637420616d6f756e74206f662065746865722073656e742e00600082015250565b6000614605601f836136fb565b9150614610826145cf565b602082019050919050565b60006020820190508181036000830152614634816145f8565b9050919050565b7f507269766174652073616c652069732063757272656e746c79206e6f7420616360008201527f746976652e000000000000000000000000000000000000000000000000000000602082015250565b60006146976025836136fb565b91506146a28261463b565b604082019050919050565b600060208201905081810360008301526146c68161468a565b9050919050565b7f57616c6c6574206973206e6f742077686974656c69737465642e000000000000600082015250565b6000614703601a836136fb565b915061470e826146cd565b602082019050919050565b60006020820190508181036000830152614732816146f6565b9050919050565b6000614744826137ab565b915061474f836137ab565b925082821015614762576147616140bd565b5b828203905092915050565b7f537570706c792063616e6e6f742066616c6c2062656c6f77206d696e7465642060008201527f746f6b656e732e00000000000000000000000000000000000000000000000000602082015250565b60006147c96027836136fb565b91506147d48261476d565b604082019050919050565b600060208201905081810360008301526147f8816147bc565b9050919050565b600081905092915050565b60008190508160005260206000209050919050565b6000815461482c81613d63565b61483681866147ff565b94506001821660008114614851576001811461486257614895565b60ff19831686528186019350614895565b61486b8561480a565b60005b8381101561488d5781548189015260018201915060208101905061486e565b838801955050505b50505092915050565b60006148a9826136f0565b6148b381856147ff565b93506148c381856020860161370c565b80840191505092915050565b60006148db828561481f565b91506148e7828461489e565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061494f6026836136fb565b915061495a826148f3565b604082019050919050565b6000602082019050818103600083015261497e81614942565b9050919050565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b60006149e16025836136fb565b91506149ec82614985565b604082019050919050565b60006020820190508181036000830152614a10816149d4565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000614a736024836136fb565b9150614a7e82614a17565b604082019050919050565b60006020820190508181036000830152614aa281614a66565b9050919050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b6000614adf6019836136fb565b9150614aea82614aa9565b602082019050919050565b60006020820190508181036000830152614b0e81614ad2565b9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b6000614b716032836136fb565b9150614b7c82614b15565b604082019050919050565b60006020820190508181036000830152614ba081614b64565b9050919050565b6000614bb2826137ab565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203614be457614be36140bd565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000614c29826137ab565b9150614c34836137ab565b925082614c4457614c43614bef565b5b828204905092915050565b6000614c5a826137ab565b9150614c65836137ab565b925082614c7557614c74614bef565b5b828206905092915050565b600081519050919050565b600082825260208201905092915050565b6000614ca782614c80565b614cb18185614c8b565b9350614cc181856020860161370c565b614cca8161373f565b840191505092915050565b6000608082019050614cea6000830187613840565b614cf76020830186613840565b614d046040830185613a08565b8181036060830152614d168184614c9c565b905095945050505050565b600081519050614d3081613661565b92915050565b600060208284031215614d4c57614d4b61362b565b5b6000614d5a84828501614d21565b91505092915050565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b6000614d996020836136fb565b9150614da482614d63565b602082019050919050565b60006020820190508181036000830152614dc881614d8c565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b6000614e05601c836136fb565b9150614e1082614dcf565b602082019050919050565b60006020820190508181036000830152614e3481614df8565b905091905056fea2646970667358221220b2ef0b787ff0dd24fdc7c904b1b820301b732bec42a31c91e265152a3216bf5564736f6c634300080d00330000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106102765760003560e01c80637ff9b5961161014f578063be010c40116100c1578063e8a3d4851161007a578063e8a3d485146108e4578063e985e9c51461090f578063edac985b1461094c578063f18d4dbb14610975578063f2fde38b1461099e578063faab3def146109c75761027d565b8063be010c40146107ae578063bef97c87146107eb578063c87b56dd14610816578063cdffd6ed14610853578063d5abeb0114610890578063e0df5b6f146108bb5761027d565b806395d89b411161011357806395d89b41146106c8578063a22cb465146106f3578063b66a0e5d1461071c578063b88d4fde14610733578063b8cb65ee1461075c578063bb026e32146107855761027d565b80637ff9b59614610602578063804f43cd1461062d5780638cdb7e8b146106375780638da5cb5b14610674578063938e3d7b1461069f5761027d565b806342842e0e116101e857806368428a1b116101ac57806368428a1b1461051157806370a082311461053c578063715018a61461057957806371e2394714610590578063771282f6146105ac5780637b55297a146105d75761027d565b806342842e0e1461042e5780634e5db165146104575780635fd8c710146104945780636352211e146104ab57806367805d71146104e85761027d565b806323b872dd1161023a57806323b872dd1461037957806326092b83146103a25780632a237bb6146103ac578063338dbf59146103d75780633a62244f146103ee5780633fd17366146104055761027d565b806301ffc9a71461028257806306fdde03146102bf578063081812fc146102ea578063095ea7b31461032757806323245216146103505761027d565b3661027d57005b600080fd5b34801561028e57600080fd5b506102a960048036038101906102a4919061368d565b6109f0565b6040516102b691906136d5565b60405180910390f35b3480156102cb57600080fd5b506102d4610ad2565b6040516102e19190613789565b60405180910390f35b3480156102f657600080fd5b50610311600480360381019061030c91906137e1565b610b64565b60405161031e919061384f565b60405180910390f35b34801561033357600080fd5b5061034e60048036038101906103499190613896565b610be9565b005b34801561035c57600080fd5b506103776004803603810190610372919061393b565b610d00565b005b34801561038557600080fd5b506103a0600480360381019061039b9190613988565b610e1f565b005b6103aa610e84565b005b3480156103b857600080fd5b506103c1611064565b6040516103ce91906136d5565b60405180910390f35b3480156103e357600080fd5b506103ec611077565b005b3480156103fa57600080fd5b5061040361111f565b005b34801561041157600080fd5b5061042c600480360381019061042791906137e1565b6111c7565b005b34801561043a57600080fd5b5061045560048036038101906104509190613988565b611291565b005b34801561046357600080fd5b5061047e60048036038101906104799190613896565b6112b1565b60405161048b91906136d5565b60405180910390f35b3480156104a057600080fd5b506104a961139d565b005b3480156104b757600080fd5b506104d260048036038101906104cd91906137e1565b611462565b6040516104df919061384f565b60405180910390f35b3480156104f457600080fd5b5061050f600480360381019061050a91906139db565b611513565b005b34801561051d57600080fd5b50610526611766565b60405161053391906136d5565b60405180910390f35b34801561054857600080fd5b50610563600480360381019061055e91906139db565b611779565b6040516105709190613a17565b60405180910390f35b34801561058557600080fd5b5061058e611830565b005b6105aa60048036038101906105a591906137e1565b6118b8565b005b3480156105b857600080fd5b506105c1611a7b565b6040516105ce9190613a17565b60405180910390f35b3480156105e357600080fd5b506105ec611a8c565b6040516105f99190613a17565b60405180910390f35b34801561060e57600080fd5b50610617611a92565b6040516106249190613a17565b60405180910390f35b610635611a98565b005b34801561064357600080fd5b5061065e600480360381019061065991906139db565b611d5c565b60405161066b91906136d5565b60405180910390f35b34801561068057600080fd5b50610689611db2565b604051610696919061384f565b60405180910390f35b3480156106ab57600080fd5b506106c660048036038101906106c19190613a88565b611ddc565b005b3480156106d457600080fd5b506106dd611e6e565b6040516106ea9190613789565b60405180910390f35b3480156106ff57600080fd5b5061071a60048036038101906107159190613b01565b611f00565b005b34801561072857600080fd5b50610731611f16565b005b34801561073f57600080fd5b5061075a60048036038101906107559190613c71565b611fbe565b005b34801561076857600080fd5b50610783600480360381019061077e91906137e1565b612025565b005b34801561079157600080fd5b506107ac60048036038101906107a791906137e1565b612114565b005b3480156107ba57600080fd5b506107d560048036038101906107d091906137e1565b6121de565b6040516107e29190613a17565b60405180910390f35b3480156107f757600080fd5b506108006121f6565b60405161080d91906136d5565b60405180910390f35b34801561082257600080fd5b5061083d600480360381019061083891906137e1565b612209565b60405161084a9190613789565b60405180910390f35b34801561085f57600080fd5b5061087a600480360381019061087591906137e1565b612285565b60405161088791906136d5565b60405180910390f35b34801561089c57600080fd5b506108a5612370565b6040516108b29190613a17565b60405180910390f35b3480156108c757600080fd5b506108e260048036038101906108dd9190613a88565b612376565b005b3480156108f057600080fd5b506108f9612408565b6040516109069190613789565b60405180910390f35b34801561091b57600080fd5b5061093660048036038101906109319190613cf4565b61249a565b60405161094391906136d5565b60405180910390f35b34801561095857600080fd5b50610973600480360381019061096e919061393b565b61252e565b005b34801561098157600080fd5b5061099c600480360381019061099791906137e1565b61264d565b005b3480156109aa57600080fd5b506109c560048036038101906109c091906139db565b6126e5565b005b3480156109d357600080fd5b506109ee60048036038101906109e991906137e1565b6127dc565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610abb57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610acb5750610aca82612969565b5b9050919050565b606060008054610ae190613d63565b80601f0160208091040260200160405190810160405280929190818152602001828054610b0d90613d63565b8015610b5a5780601f10610b2f57610100808354040283529160200191610b5a565b820191906000526020600020905b815481529060010190602001808311610b3d57829003601f168201915b5050505050905090565b6000610b6f826129d3565b610bae576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ba590613e06565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610bf482611462565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610c64576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c5b90613e98565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610c83612a3f565b73ffffffffffffffffffffffffffffffffffffffff161480610cb25750610cb181610cac612a3f565b61249a565b5b610cf1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ce890613f2a565b60405180910390fd5b610cfb8383612a47565b505050565b610d08612a3f565b73ffffffffffffffffffffffffffffffffffffffff16610d26611db2565b73ffffffffffffffffffffffffffffffffffffffff1614610d7c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d7390613f96565b60405180910390fd5b600082829050905060005b81811015610e19576000600e6000868685818110610da857610da7613fb6565b5b9050602002016020810190610dbd91906139db565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550806001019050610d87565b50505050565b42600f60008381526020019081526020016000205411610e74576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e6b90614031565b60405180910390fd5b610e7f838383612b00565b505050565b3273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610ef2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ee99061409d565b60405180910390fd5b60006001610f006007612d66565b610f0a91906140ec565b9050600d60019054906101000a900460ff16610f5b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f529061418e565b60405180910390fd5b600b54341015610f97576040517f21e191e200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600a548110610fdb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fd290614220565b60405180910390fd5b610fe56007612d74565b610fef3382612d8a565b62278d0042610ffe91906140ec565b600f6000838152602001908152602001600020819055507f0930d5cc1d8162f59cde20a12fdc913d0072915ecfbdf4b1ed9e4f10f0fb479281600f600084815260200190815260200160002054604051611059929190614240565b60405180910390a150565b600d60009054906101000a900460ff1681565b61107f612a3f565b73ffffffffffffffffffffffffffffffffffffffff1661109d611db2565b73ffffffffffffffffffffffffffffffffffffffff16146110f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110ea90613f96565b60405180910390fd5b600d60009054906101000a900460ff1615600d60006101000a81548160ff021916908315150217905550565b611127612a3f565b73ffffffffffffffffffffffffffffffffffffffff16611145611db2565b73ffffffffffffffffffffffffffffffffffffffff161461119b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161119290613f96565b60405180910390fd5b600d60029054906101000a900460ff1615600d60026101000a81548160ff021916908315150217905550565b6111cf612a3f565b73ffffffffffffffffffffffffffffffffffffffff166111ed611db2565b73ffffffffffffffffffffffffffffffffffffffff1614611243576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161123a90613f96565b60405180910390fd5b80600b5403611287576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161127e906142b5565b60405180910390fd5b80600b8190555050565b6112ac83838360405180602001604052806000815250611fbe565b505050565b60006112bc826129d3565b6112fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112f290614321565b60405180910390fd5b42600f60008481526020019081526020016000205411611350576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611347906143b3565b60405180910390fd5b61135982611462565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614611392576000611395565b60015b905092915050565b6113a5612a3f565b73ffffffffffffffffffffffffffffffffffffffff166113c3611db2565b73ffffffffffffffffffffffffffffffffffffffff1614611419576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161141090613f96565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f1935050505015801561145f573d6000803e3d6000fd5b50565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361150a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161150190614445565b60405180910390fd5b80915050919050565b61151b612a3f565b73ffffffffffffffffffffffffffffffffffffffff16611539611db2565b73ffffffffffffffffffffffffffffffffffffffff161461158f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161158690613f96565b60405180910390fd5b6000600161159d6007612d66565b6115a791906140ec565b9050600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611618576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161160f906144b1565b60405180910390fd5b600a5481111561165d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161165490614220565b60405180910390fd5b8173ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146116dc57600061169b83611779565b146116db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116d29061451d565b60405180910390fd5b5b6116e66007612d74565b6116f08282612d8a565b62278d00426116ff91906140ec565b600f6000838152602001908152602001600020819055507f0930d5cc1d8162f59cde20a12fdc913d0072915ecfbdf4b1ed9e4f10f0fb479281600f60008481526020019081526020016000205460405161175a929190614240565b60405180910390a15050565b600d60019054906101000a900460ff1681565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036117e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117e0906145af565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611838612a3f565b73ffffffffffffffffffffffffffffffffffffffff16611856611db2565b73ffffffffffffffffffffffffffffffffffffffff16146118ac576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118a390613f96565b60405180910390fd5b6118b66000612da8565b565b3273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611926576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161191d9061409d565b60405180910390fd5b600c54341461196a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119619061461b565b60405180910390fd5b611973816129d3565b6119b2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119a990614321565b60405180910390fd5b6000600f6000838152602001908152602001600020549050804211156119fd5762278d00426119e191906140ec565b600f600084815260200190815260200160002081905550611a2b565b62278d00600f60008481526020019081526020016000206000828254611a2391906140ec565b925050819055505b7fc5b22e9a67a130743449e00b09e4a00a944ca980e143df60ab742426c534c4f982600f600085815260200190815260200160002054604051611a6f929190614240565b60405180910390a15050565b6000611a876007612d66565b905090565b600c5481565b600b5481565b3273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611b06576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611afd9061409d565b60405180910390fd5b60006001611b146007612d66565b611b1e91906140ec565b9050600d60009054906101000a900460ff16611b6f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b66906146ad565b60405180910390fd5b600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16611bfb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bf290614719565b60405180910390fd5b600b54341015611c37576040517f21e191e200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600a548110611c7b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c7290614220565b60405180910390fd5b6000600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550611cdd6007612d74565b611ce73382612d8a565b62278d0042611cf691906140ec565b600f6000838152602001908152602001600020819055507f0930d5cc1d8162f59cde20a12fdc913d0072915ecfbdf4b1ed9e4f10f0fb479281600f600084815260200190815260200160002054604051611d51929190614240565b60405180910390a150565b6000600e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611de4612a3f565b73ffffffffffffffffffffffffffffffffffffffff16611e02611db2565b73ffffffffffffffffffffffffffffffffffffffff1614611e58576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e4f90613f96565b60405180910390fd5b818160099190611e6992919061357e565b505050565b606060018054611e7d90613d63565b80601f0160208091040260200160405190810160405280929190818152602001828054611ea990613d63565b8015611ef65780601f10611ecb57610100808354040283529160200191611ef6565b820191906000526020600020905b815481529060010190602001808311611ed957829003601f168201915b5050505050905090565b611f12611f0b612a3f565b8383612e6e565b5050565b611f1e612a3f565b73ffffffffffffffffffffffffffffffffffffffff16611f3c611db2565b73ffffffffffffffffffffffffffffffffffffffff1614611f92576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f8990613f96565b60405180910390fd5b600d60019054906101000a900460ff1615600d60016101000a81548160ff021916908315150217905550565b42600f60008481526020019081526020016000205411612013576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161200a90614031565b60405180910390fd5b61201f84848484612fda565b50505050565b61202d612a3f565b73ffffffffffffffffffffffffffffffffffffffff1661204b611db2565b73ffffffffffffffffffffffffffffffffffffffff16146120a1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161209890613f96565b60405180910390fd5b6120a9611a7b565b81600a546120b79190614739565b10156120f8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120ef906147df565b60405180910390fd5b80600a600082825461210a9190614739565b9250508190555050565b61211c612a3f565b73ffffffffffffffffffffffffffffffffffffffff1661213a611db2565b73ffffffffffffffffffffffffffffffffffffffff1614612190576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161218790613f96565b60405180910390fd5b80600c54036121d4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121cb906142b5565b60405180910390fd5b80600c8190555050565b600f6020528060005260406000206000915090505481565b600d60029054906101000a900460ff1681565b6060612214826129d3565b612253576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161224a90614321565b60405180910390fd5b600861225e83613036565b60405160200161226f9291906148cf565b6040516020818303038152906040529050919050565b6000612290826129d3565b6122cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122c690614321565b60405180910390fd5b42600f60008481526020019081526020016000205411612324576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161231b906143b3565b60405180910390fd5b61232d82611462565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614612366576000612369565b60015b9050919050565b600a5481565b61237e612a3f565b73ffffffffffffffffffffffffffffffffffffffff1661239c611db2565b73ffffffffffffffffffffffffffffffffffffffff16146123f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123e990613f96565b60405180910390fd5b81816008919061240392919061357e565b505050565b60606009805461241790613d63565b80601f016020809104026020016040519081016040528092919081815260200182805461244390613d63565b80156124905780601f1061246557610100808354040283529160200191612490565b820191906000526020600020905b81548152906001019060200180831161247357829003601f168201915b5050505050905090565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b612536612a3f565b73ffffffffffffffffffffffffffffffffffffffff16612554611db2565b73ffffffffffffffffffffffffffffffffffffffff16146125aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125a190613f96565b60405180910390fd5b600082829050905060005b81811015612647576001600e60008686858181106125d6576125d5613fb6565b5b90506020020160208101906125eb91906139db565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508060010190506125b5565b50505050565b612655612a3f565b73ffffffffffffffffffffffffffffffffffffffff16612673611db2565b73ffffffffffffffffffffffffffffffffffffffff16146126c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126c090613f96565b60405180910390fd5b80600a60008282546126db91906140ec565b9250508190555050565b6126ed612a3f565b73ffffffffffffffffffffffffffffffffffffffff1661270b611db2565b73ffffffffffffffffffffffffffffffffffffffff1614612761576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161275890613f96565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036127d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127c790614965565b60405180910390fd5b6127d981612da8565b50565b6127e4612a3f565b73ffffffffffffffffffffffffffffffffffffffff16612802611db2565b73ffffffffffffffffffffffffffffffffffffffff1614612858576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161284f90613f96565b60405180910390fd5b612861816129d3565b6128a0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161289790614321565b60405180910390fd5b6000600f6000838152602001908152602001600020549050804211156128eb5762278d00426128cf91906140ec565b600f600084815260200190815260200160002081905550612919565b62278d00600f6000848152602001908152602001600020600082825461291191906140ec565b925050819055505b7fc5b22e9a67a130743449e00b09e4a00a944ca980e143df60ab742426c534c4f982600f60008581526020019081526020016000205460405161295d929190614240565b60405180910390a15050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16612aba83611462565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b8273ffffffffffffffffffffffffffffffffffffffff16612b2082611462565b73ffffffffffffffffffffffffffffffffffffffff1614612b76576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b6d906149f7565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612be5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bdc90614a89565b60405180910390fd5b612bf0838383613196565b612bfb600082612a47565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612c4b9190614739565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612ca291906140ec565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612d6183838361319b565b505050565b600081600001549050919050565b6001816000016000828254019250508190555050565b612da48282604051806020016040528060008152506131a0565b5050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612edc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ed390614af5565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051612fcd91906136d5565b60405180910390a3505050565b612fe5848484612b00565b612ff1848484846131fb565b613030576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161302790614b87565b60405180910390fd5b50505050565b60606000820361307d576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050613191565b600082905060005b600082146130af57808061309890614ba7565b915050600a826130a89190614c1e565b9150613085565b60008167ffffffffffffffff8111156130cb576130ca613b46565b5b6040519080825280601f01601f1916602001820160405280156130fd5781602001600182028036833780820191505090505b5090505b6000851461318a576001826131169190614739565b9150600a856131259190614c4f565b603061313191906140ec565b60f81b81838151811061314757613146613fb6565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856131839190614c1e565b9450613101565b8093505050505b919050565b505050565b505050565b6131aa8383613382565b6131b760008484846131fb565b6131f6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131ed90614b87565b60405180910390fd5b505050565b600061321c8473ffffffffffffffffffffffffffffffffffffffff1661355b565b15613375578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02613245612a3f565b8786866040518563ffffffff1660e01b81526004016132679493929190614cd5565b6020604051808303816000875af19250505080156132a357506040513d601f19601f820116820180604052508101906132a09190614d36565b60015b613325573d80600081146132d3576040519150601f19603f3d011682016040523d82523d6000602084013e6132d8565b606091505b50600081510361331d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161331490614b87565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161491505061337a565b600190505b949350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036133f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016133e890614daf565b60405180910390fd5b6133fa816129d3565b1561343a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161343190614e1b565b60405180910390fd5b61344660008383613196565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461349691906140ec565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46135576000838361319b565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b82805461358a90613d63565b90600052602060002090601f0160209004810192826135ac57600085556135f3565b82601f106135c557803560ff19168380011785556135f3565b828001600101855582156135f3579182015b828111156135f25782358255916020019190600101906135d7565b5b5090506136009190613604565b5090565b5b8082111561361d576000816000905550600101613605565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61366a81613635565b811461367557600080fd5b50565b60008135905061368781613661565b92915050565b6000602082840312156136a3576136a261362b565b5b60006136b184828501613678565b91505092915050565b60008115159050919050565b6136cf816136ba565b82525050565b60006020820190506136ea60008301846136c6565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561372a57808201518184015260208101905061370f565b83811115613739576000848401525b50505050565b6000601f19601f8301169050919050565b600061375b826136f0565b61376581856136fb565b935061377581856020860161370c565b61377e8161373f565b840191505092915050565b600060208201905081810360008301526137a38184613750565b905092915050565b6000819050919050565b6137be816137ab565b81146137c957600080fd5b50565b6000813590506137db816137b5565b92915050565b6000602082840312156137f7576137f661362b565b5b6000613805848285016137cc565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006138398261380e565b9050919050565b6138498161382e565b82525050565b60006020820190506138646000830184613840565b92915050565b6138738161382e565b811461387e57600080fd5b50565b6000813590506138908161386a565b92915050565b600080604083850312156138ad576138ac61362b565b5b60006138bb85828601613881565b92505060206138cc858286016137cc565b9150509250929050565b600080fd5b600080fd5b600080fd5b60008083601f8401126138fb576138fa6138d6565b5b8235905067ffffffffffffffff811115613918576139176138db565b5b602083019150836020820283011115613934576139336138e0565b5b9250929050565b600080602083850312156139525761395161362b565b5b600083013567ffffffffffffffff8111156139705761396f613630565b5b61397c858286016138e5565b92509250509250929050565b6000806000606084860312156139a1576139a061362b565b5b60006139af86828701613881565b93505060206139c086828701613881565b92505060406139d1868287016137cc565b9150509250925092565b6000602082840312156139f1576139f061362b565b5b60006139ff84828501613881565b91505092915050565b613a11816137ab565b82525050565b6000602082019050613a2c6000830184613a08565b92915050565b60008083601f840112613a4857613a476138d6565b5b8235905067ffffffffffffffff811115613a6557613a646138db565b5b602083019150836001820283011115613a8157613a806138e0565b5b9250929050565b60008060208385031215613a9f57613a9e61362b565b5b600083013567ffffffffffffffff811115613abd57613abc613630565b5b613ac985828601613a32565b92509250509250929050565b613ade816136ba565b8114613ae957600080fd5b50565b600081359050613afb81613ad5565b92915050565b60008060408385031215613b1857613b1761362b565b5b6000613b2685828601613881565b9250506020613b3785828601613aec565b9150509250929050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b613b7e8261373f565b810181811067ffffffffffffffff82111715613b9d57613b9c613b46565b5b80604052505050565b6000613bb0613621565b9050613bbc8282613b75565b919050565b600067ffffffffffffffff821115613bdc57613bdb613b46565b5b613be58261373f565b9050602081019050919050565b82818337600083830152505050565b6000613c14613c0f84613bc1565b613ba6565b905082815260208101848484011115613c3057613c2f613b41565b5b613c3b848285613bf2565b509392505050565b600082601f830112613c5857613c576138d6565b5b8135613c68848260208601613c01565b91505092915050565b60008060008060808587031215613c8b57613c8a61362b565b5b6000613c9987828801613881565b9450506020613caa87828801613881565b9350506040613cbb878288016137cc565b925050606085013567ffffffffffffffff811115613cdc57613cdb613630565b5b613ce887828801613c43565b91505092959194509250565b60008060408385031215613d0b57613d0a61362b565b5b6000613d1985828601613881565b9250506020613d2a85828601613881565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680613d7b57607f821691505b602082108103613d8e57613d8d613d34565b5b50919050565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b6000613df0602c836136fb565b9150613dfb82613d94565b604082019050919050565b60006020820190508181036000830152613e1f81613de3565b9050919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b6000613e826021836136fb565b9150613e8d82613e26565b604082019050919050565b60006020820190508181036000830152613eb181613e75565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b6000613f146038836136fb565b9150613f1f82613eb8565b604082019050919050565b60006020820190508181036000830152613f4381613f07565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613f806020836136fb565b9150613f8b82613f4a565b602082019050919050565b60006020820190508181036000830152613faf81613f73565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f546f6b656e20697320657870697265642e000000000000000000000000000000600082015250565b600061401b6011836136fb565b915061402682613fe5565b602082019050919050565b6000602082019050818103600083015261404a8161400e565b9050919050565b7f486178786f722061636365737320626c6f636b65640000000000000000000000600082015250565b60006140876015836136fb565b915061409282614051565b602082019050919050565b600060208201905081810360008301526140b68161407a565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006140f7826137ab565b9150614102836137ab565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614137576141366140bd565b5b828201905092915050565b7f53616c65206973206e6f74206163746976652e00000000000000000000000000600082015250565b60006141786013836136fb565b915061418382614142565b602082019050919050565b600060208201905081810360008301526141a78161416b565b9050919050565b7f4d696e74696e67207468697320746f6b656e20776f756c64206578636565642060008201527f746f74616c20737570706c792e00000000000000000000000000000000000000602082015250565b600061420a602d836136fb565b9150614215826141ae565b604082019050919050565b60006020820190508181036000830152614239816141fd565b9050919050565b60006040820190506142556000830185613a08565b6142626020830184613a08565b9392505050565b7f507269636520646964206e6f74206368616e67652e0000000000000000000000600082015250565b600061429f6015836136fb565b91506142aa82614269565b602082019050919050565b600060208201905081810360008301526142ce81614292565b9050919050565b7f546f6b656e20646f6573206e6f742065786973742e0000000000000000000000600082015250565b600061430b6015836136fb565b9150614316826142d5565b602082019050919050565b6000602082019050818103600083015261433a816142fe565b9050919050565b7f546f6b656e2068617320657870697265642e20506c656173652072656e65772060008201527f796f757220746f6b656e21000000000000000000000000000000000000000000602082015250565b600061439d602b836136fb565b91506143a882614341565b604082019050919050565b600060208201905081810360008301526143cc81614390565b9050919050565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b600061442f6029836136fb565b915061443a826143d3565b604082019050919050565b6000602082019050818103600083015261445e81614422565b9050919050565b7f52656365697665722063616e6e6f74206265207a65726f20616464726573732e600082015250565b600061449b6020836136fb565b91506144a682614465565b602082019050919050565b600060208201905081810360008301526144ca8161448e565b9050919050565b7f496e646976696475616c20616c7265616479206f776e73206120746f6b656e2e600082015250565b60006145076020836136fb565b9150614512826144d1565b602082019050919050565b60006020820190508181036000830152614536816144fa565b9050919050565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b6000614599602a836136fb565b91506145a48261453d565b604082019050919050565b600060208201905081810360008301526145c88161458c565b9050919050565b7f496e636f727265637420616d6f756e74206f662065746865722073656e742e00600082015250565b6000614605601f836136fb565b9150614610826145cf565b602082019050919050565b60006020820190508181036000830152614634816145f8565b9050919050565b7f507269766174652073616c652069732063757272656e746c79206e6f7420616360008201527f746976652e000000000000000000000000000000000000000000000000000000602082015250565b60006146976025836136fb565b91506146a28261463b565b604082019050919050565b600060208201905081810360008301526146c68161468a565b9050919050565b7f57616c6c6574206973206e6f742077686974656c69737465642e000000000000600082015250565b6000614703601a836136fb565b915061470e826146cd565b602082019050919050565b60006020820190508181036000830152614732816146f6565b9050919050565b6000614744826137ab565b915061474f836137ab565b925082821015614762576147616140bd565b5b828203905092915050565b7f537570706c792063616e6e6f742066616c6c2062656c6f77206d696e7465642060008201527f746f6b656e732e00000000000000000000000000000000000000000000000000602082015250565b60006147c96027836136fb565b91506147d48261476d565b604082019050919050565b600060208201905081810360008301526147f8816147bc565b9050919050565b600081905092915050565b60008190508160005260206000209050919050565b6000815461482c81613d63565b61483681866147ff565b94506001821660008114614851576001811461486257614895565b60ff19831686528186019350614895565b61486b8561480a565b60005b8381101561488d5781548189015260018201915060208101905061486e565b838801955050505b50505092915050565b60006148a9826136f0565b6148b381856147ff565b93506148c381856020860161370c565b80840191505092915050565b60006148db828561481f565b91506148e7828461489e565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061494f6026836136fb565b915061495a826148f3565b604082019050919050565b6000602082019050818103600083015261497e81614942565b9050919050565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b60006149e16025836136fb565b91506149ec82614985565b604082019050919050565b60006020820190508181036000830152614a10816149d4565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000614a736024836136fb565b9150614a7e82614a17565b604082019050919050565b60006020820190508181036000830152614aa281614a66565b9050919050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b6000614adf6019836136fb565b9150614aea82614aa9565b602082019050919050565b60006020820190508181036000830152614b0e81614ad2565b9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b6000614b716032836136fb565b9150614b7c82614b15565b604082019050919050565b60006020820190508181036000830152614ba081614b64565b9050919050565b6000614bb2826137ab565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203614be457614be36140bd565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000614c29826137ab565b9150614c34836137ab565b925082614c4457614c43614bef565b5b828204905092915050565b6000614c5a826137ab565b9150614c65836137ab565b925082614c7557614c74614bef565b5b828206905092915050565b600081519050919050565b600082825260208201905092915050565b6000614ca782614c80565b614cb18185614c8b565b9350614cc181856020860161370c565b614cca8161373f565b840191505092915050565b6000608082019050614cea6000830187613840565b614cf76020830186613840565b614d046040830185613a08565b8181036060830152614d168184614c9c565b905095945050505050565b600081519050614d3081613661565b92915050565b600060208284031215614d4c57614d4b61362b565b5b6000614d5a84828501614d21565b91505092915050565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b6000614d996020836136fb565b9150614da482614d63565b602082019050919050565b60006020820190508181036000830152614dc881614d8c565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b6000614e05601c836136fb565b9150614e1082614dcf565b602082019050919050565b60006020820190508181036000830152614e3481614df8565b905091905056fea2646970667358221220b2ef0b787ff0dd24fdc7c904b1b820301b732bec42a31c91e265152a3216bf5564736f6c634300080d0033

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

0000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : tokenURI_ (string):
Arg [1] : contractURI_ (string):

-----Encoded View---------------
4 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000000


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.