ETH Price: $3,247.95 (-0.33%)
Gas: 1 Gwei

Token

Future Punkz (PUNK)
 

Overview

Max Total Supply

215 PUNK

Holders

102

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 PUNK
0x105e6adb2fbe744d446e829f90ea75c521db12a4
Loading...
Loading
Loading...
Loading
Loading...
Loading

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

Contract Source Code Verified (Exact Match)

Contract Name:
FuturePunkz

Compiler Version
v0.8.9+commit.e5eed63a

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 15 : FuturePunkz.sol
// SPDX-License-Identifier: MIT
pragma solidity >=0.4.22 <0.9.0;

import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/cryptography/draft-EIP712.sol";
import "@openzeppelin/contracts/utils/cryptography/ECDSA.sol";

contract FuturePunkz is Ownable, EIP712, ERC721Enumerable {
    using Strings for uint256;

    bytes32 public constant WHITELIST_TYPEHASH =
        keccak256("Whitelist(address buyer,uint256 signedQty)");
    address whitelistSigner;
    uint256 public constant TOTAL_MAX_QTY = 4444;
    uint256 public constant GIFT_MAX_QTY = 100;
    uint256 public constant PRESALES_MAX_QTY = 1000;
    uint256 public constant PRESALES_MAX_QTY_PER_MINTER = 3;
    uint256 public constant PUBLIC_SALE_MAX_QTY_PER_TRANSACTION = 7;

    // Remaining presale quantity can be purchase through public sale
    uint256 public constant PUBLIC_SALE_MAX_QTY = TOTAL_MAX_QTY - GIFT_MAX_QTY;
    uint256 public constant PRESALES_PRICE = 0.03 ether;
    uint256 public constant PUBLIC_SALES_PRICE = 0.04 ether;

    string private _contractURI;
    string private _tokenBaseURI;
    mapping(address => uint256) public presaleMinterToTokenQty;
    uint256 public presalesMintedQty = 0;
    uint256 public publicSalesMintedQty = 0;
    uint256 public giftedQty = 0;
    bool public isPresalesActivated;
    bool public isPublicSalesActivated;

    constructor()
        ERC721("Future Punkz", "PUNK")
        EIP712("Future Punkz", "1")
    {}

    function setWhitelistSigner(address _address) external onlyOwner {
        whitelistSigner = _address;
    }

    function getSigner(
        address _buyer,
        uint256 _signedQty,
        bytes memory _signature
    ) public view returns (address) {
        bytes32 digest = _hashTypedDataV4(
            keccak256(abi.encode(WHITELIST_TYPEHASH, _buyer, _signedQty))
        );
        return ECDSA.recover(digest, _signature);
    }

    function presalesMint(
        uint256 _mintQty,
        uint256 _signedQty,
        bytes memory _signature
    ) external payable {
        require(
            getSigner(msg.sender, _signedQty, _signature) == whitelistSigner,
            "Invalid signature"
        );
        require(isPresalesActivated, "Presales is closed");
        require(
            totalSupply() + _mintQty <= TOTAL_MAX_QTY,
            "Exceed total max limit"
        );
        require(
            presalesMintedQty + _mintQty <= PRESALES_MAX_QTY,
            "Exceed presales max limit"
        );
        require(
            presaleMinterToTokenQty[msg.sender] + _mintQty <=
                PRESALES_MAX_QTY_PER_MINTER,
            "Exceed presales max quantity per minter"
        );
        require(msg.value >= PRESALES_PRICE * _mintQty, "Insufficient ETH");

        presaleMinterToTokenQty[msg.sender] += _mintQty;

        for (uint256 i = 0; i < _mintQty; i++) {
            presalesMintedQty++;
            _safeMint(msg.sender, totalSupply() + 1);
        }
    }

    function publicSalesMint(uint256 _mintQty) external payable {
        require(isPublicSalesActivated, "Public sale is closed");
        require(
            totalSupply() + _mintQty <= TOTAL_MAX_QTY,
            "Exceed total max limit"
        );
        require(
            presalesMintedQty + publicSalesMintedQty + _mintQty <= PUBLIC_SALE_MAX_QTY,
            "Exceed public sale max limit"
        );
        require(
            _mintQty <= PUBLIC_SALE_MAX_QTY_PER_TRANSACTION,
            "Exceed public sales max quantity per transaction"
        );
        require(msg.value >= PUBLIC_SALES_PRICE * _mintQty, "Insufficient ETH");

        for (uint256 i = 0; i < _mintQty; i++) {
            publicSalesMintedQty++;
            _safeMint(msg.sender, totalSupply() + 1);
        }
    }

    function gift(address[] calldata receivers) external onlyOwner {
        require(
            totalSupply() + receivers.length <= TOTAL_MAX_QTY,
            "Exceed total max limit"
        );
        require(
            giftedQty + receivers.length <= GIFT_MAX_QTY,
            "Exceed gift max limit"
        );
        for (uint256 i = 0; i < receivers.length; i++) {
            giftedQty++;
            _safeMint(receivers[i], totalSupply() + 1);
        }
    }

    function withdraw() external onlyOwner {
        require(address(this).balance > 0, "No amount to withdraw");
        payable(msg.sender).transfer(address(this).balance);
    }

    function togglePresalesStatus() external onlyOwner {
        isPresalesActivated = !isPresalesActivated;
    }

    function togglePublicSalesStatus() external onlyOwner {
        isPublicSalesActivated = !isPublicSalesActivated;
    }

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

    // To support Opensea contract-level metadata
    // https://docs.opensea.io/docs/contract-level-metadata
    function contractURI() public view returns (string memory) {
        return _contractURI;
    }

    function setBaseURI(string calldata URI) external onlyOwner {
        _tokenBaseURI = URI;
    }

    // To support Opensea token metadata
    // https://docs.opensea.io/docs/metadata-standards
    function tokenURI(uint256 _tokenId)
        public
        view
        override(ERC721)
        returns (string memory)
    {
        require(_exists(_tokenId), "Token not exist");

        return string(abi.encodePacked(_tokenBaseURI, _tokenId.toString()));
    }
}

File 2 of 15 : IERC165.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

File 3 of 15 : ERC165.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./IERC165.sol";

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

File 4 of 15 : draft-EIP712.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./ECDSA.sol";

/**
 * @dev https://eips.ethereum.org/EIPS/eip-712[EIP 712] is a standard for hashing and signing of typed structured data.
 *
 * The encoding specified in the EIP is very generic, and such a generic implementation in Solidity is not feasible,
 * thus this contract does not implement the encoding itself. Protocols need to implement the type-specific encoding
 * they need in their contracts using a combination of `abi.encode` and `keccak256`.
 *
 * This contract implements the EIP 712 domain separator ({_domainSeparatorV4}) that is used as part of the encoding
 * scheme, and the final step of the encoding to obtain the message digest that is then signed via ECDSA
 * ({_hashTypedDataV4}).
 *
 * The implementation of the domain separator was designed to be as efficient as possible while still properly updating
 * the chain id to protect against replay attacks on an eventual fork of the chain.
 *
 * NOTE: This contract implements the version of the encoding known as "v4", as implemented by the JSON RPC method
 * https://docs.metamask.io/guide/signing-data.html[`eth_signTypedDataV4` in MetaMask].
 *
 * _Available since v3.4._
 */
abstract contract EIP712 {
    /* solhint-disable var-name-mixedcase */
    // Cache the domain separator as an immutable value, but also store the chain id that it corresponds to, in order to
    // invalidate the cached domain separator if the chain id changes.
    bytes32 private immutable _CACHED_DOMAIN_SEPARATOR;
    uint256 private immutable _CACHED_CHAIN_ID;

    bytes32 private immutable _HASHED_NAME;
    bytes32 private immutable _HASHED_VERSION;
    bytes32 private immutable _TYPE_HASH;

    /* solhint-enable var-name-mixedcase */

    /**
     * @dev Initializes the domain separator and parameter caches.
     *
     * The meaning of `name` and `version` is specified in
     * https://eips.ethereum.org/EIPS/eip-712#definition-of-domainseparator[EIP 712]:
     *
     * - `name`: the user readable name of the signing domain, i.e. the name of the DApp or the protocol.
     * - `version`: the current major version of the signing domain.
     *
     * NOTE: These parameters cannot be changed except through a xref:learn::upgrading-smart-contracts.adoc[smart
     * contract upgrade].
     */
    constructor(string memory name, string memory version) {
        bytes32 hashedName = keccak256(bytes(name));
        bytes32 hashedVersion = keccak256(bytes(version));
        bytes32 typeHash = keccak256(
            "EIP712Domain(string name,string version,uint256 chainId,address verifyingContract)"
        );
        _HASHED_NAME = hashedName;
        _HASHED_VERSION = hashedVersion;
        _CACHED_CHAIN_ID = block.chainid;
        _CACHED_DOMAIN_SEPARATOR = _buildDomainSeparator(typeHash, hashedName, hashedVersion);
        _TYPE_HASH = typeHash;
    }

    /**
     * @dev Returns the domain separator for the current chain.
     */
    function _domainSeparatorV4() internal view returns (bytes32) {
        if (block.chainid == _CACHED_CHAIN_ID) {
            return _CACHED_DOMAIN_SEPARATOR;
        } else {
            return _buildDomainSeparator(_TYPE_HASH, _HASHED_NAME, _HASHED_VERSION);
        }
    }

    function _buildDomainSeparator(
        bytes32 typeHash,
        bytes32 nameHash,
        bytes32 versionHash
    ) private view returns (bytes32) {
        return keccak256(abi.encode(typeHash, nameHash, versionHash, block.chainid, address(this)));
    }

    /**
     * @dev Given an already https://eips.ethereum.org/EIPS/eip-712#definition-of-hashstruct[hashed struct], this
     * function returns the hash of the fully encoded EIP712 message for this domain.
     *
     * This hash can be used together with {ECDSA-recover} to obtain the signer of a message. For example:
     *
     * ```solidity
     * bytes32 digest = _hashTypedDataV4(keccak256(abi.encode(
     *     keccak256("Mail(address to,string contents)"),
     *     mailTo,
     *     keccak256(bytes(mailContents))
     * )));
     * address signer = ECDSA.recover(digest, signature);
     * ```
     */
    function _hashTypedDataV4(bytes32 structHash) internal view virtual returns (bytes32) {
        return ECDSA.toTypedDataHash(_domainSeparatorV4(), structHash);
    }
}

File 5 of 15 : ECDSA.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

/**
 * @dev Elliptic Curve Digital Signature Algorithm (ECDSA) operations.
 *
 * These functions can be used to verify that a message was signed by the holder
 * of the private keys of a given address.
 */
library ECDSA {
    enum RecoverError {
        NoError,
        InvalidSignature,
        InvalidSignatureLength,
        InvalidSignatureS,
        InvalidSignatureV
    }

    function _throwError(RecoverError error) private pure {
        if (error == RecoverError.NoError) {
            return; // no error: do nothing
        } else if (error == RecoverError.InvalidSignature) {
            revert("ECDSA: invalid signature");
        } else if (error == RecoverError.InvalidSignatureLength) {
            revert("ECDSA: invalid signature length");
        } else if (error == RecoverError.InvalidSignatureS) {
            revert("ECDSA: invalid signature 's' value");
        } else if (error == RecoverError.InvalidSignatureV) {
            revert("ECDSA: invalid signature 'v' value");
        }
    }

    /**
     * @dev Returns the address that signed a hashed message (`hash`) with
     * `signature` or error string. This address can then be used for verification purposes.
     *
     * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures:
     * this function rejects them by requiring the `s` value to be in the lower
     * half order, and the `v` value to be either 27 or 28.
     *
     * IMPORTANT: `hash` _must_ be the result of a hash operation for the
     * verification to be secure: it is possible to craft signatures that
     * recover to arbitrary addresses for non-hashed data. A safe way to ensure
     * this is by receiving a hash of the original message (which may otherwise
     * be too long), and then calling {toEthSignedMessageHash} on it.
     *
     * Documentation for signature generation:
     * - with https://web3js.readthedocs.io/en/v1.3.4/web3-eth-accounts.html#sign[Web3.js]
     * - with https://docs.ethers.io/v5/api/signer/#Signer-signMessage[ethers]
     *
     * _Available since v4.3._
     */
    function tryRecover(bytes32 hash, bytes memory signature) internal pure returns (address, RecoverError) {
        // Check the signature length
        // - case 65: r,s,v signature (standard)
        // - case 64: r,vs signature (cf https://eips.ethereum.org/EIPS/eip-2098) _Available since v4.1._
        if (signature.length == 65) {
            bytes32 r;
            bytes32 s;
            uint8 v;
            // ecrecover takes the signature parameters, and the only way to get them
            // currently is to use assembly.
            assembly {
                r := mload(add(signature, 0x20))
                s := mload(add(signature, 0x40))
                v := byte(0, mload(add(signature, 0x60)))
            }
            return tryRecover(hash, v, r, s);
        } else if (signature.length == 64) {
            bytes32 r;
            bytes32 vs;
            // ecrecover takes the signature parameters, and the only way to get them
            // currently is to use assembly.
            assembly {
                r := mload(add(signature, 0x20))
                vs := mload(add(signature, 0x40))
            }
            return tryRecover(hash, r, vs);
        } else {
            return (address(0), RecoverError.InvalidSignatureLength);
        }
    }

    /**
     * @dev Returns the address that signed a hashed message (`hash`) with
     * `signature`. This address can then be used for verification purposes.
     *
     * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures:
     * this function rejects them by requiring the `s` value to be in the lower
     * half order, and the `v` value to be either 27 or 28.
     *
     * IMPORTANT: `hash` _must_ be the result of a hash operation for the
     * verification to be secure: it is possible to craft signatures that
     * recover to arbitrary addresses for non-hashed data. A safe way to ensure
     * this is by receiving a hash of the original message (which may otherwise
     * be too long), and then calling {toEthSignedMessageHash} on it.
     */
    function recover(bytes32 hash, bytes memory signature) internal pure returns (address) {
        (address recovered, RecoverError error) = tryRecover(hash, signature);
        _throwError(error);
        return recovered;
    }

    /**
     * @dev Overload of {ECDSA-tryRecover} that receives the `r` and `vs` short-signature fields separately.
     *
     * See https://eips.ethereum.org/EIPS/eip-2098[EIP-2098 short signatures]
     *
     * _Available since v4.3._
     */
    function tryRecover(
        bytes32 hash,
        bytes32 r,
        bytes32 vs
    ) internal pure returns (address, RecoverError) {
        bytes32 s;
        uint8 v;
        assembly {
            s := and(vs, 0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff)
            v := add(shr(255, vs), 27)
        }
        return tryRecover(hash, v, r, s);
    }

    /**
     * @dev Overload of {ECDSA-recover} that receives the `r and `vs` short-signature fields separately.
     *
     * _Available since v4.2._
     */
    function recover(
        bytes32 hash,
        bytes32 r,
        bytes32 vs
    ) internal pure returns (address) {
        (address recovered, RecoverError error) = tryRecover(hash, r, vs);
        _throwError(error);
        return recovered;
    }

    /**
     * @dev Overload of {ECDSA-tryRecover} that receives the `v`,
     * `r` and `s` signature fields separately.
     *
     * _Available since v4.3._
     */
    function tryRecover(
        bytes32 hash,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) internal pure returns (address, RecoverError) {
        // EIP-2 still allows signature malleability for ecrecover(). Remove this possibility and make the signature
        // unique. Appendix F in the Ethereum Yellow paper (https://ethereum.github.io/yellowpaper/paper.pdf), defines
        // the valid range for s in (301): 0 < s < secp256k1n ÷ 2 + 1, and for v in (302): v ∈ {27, 28}. Most
        // signatures from current libraries generate a unique signature with an s-value in the lower half order.
        //
        // If your library generates malleable signatures, such as s-values in the upper range, calculate a new s-value
        // with 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEBAAEDCE6AF48A03BBFD25E8CD0364141 - s1 and flip v from 27 to 28 or
        // vice versa. If your library also generates signatures with 0/1 for v instead 27/28, add 27 to v to accept
        // these malleable signatures as well.
        if (uint256(s) > 0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF5D576E7357A4501DDFE92F46681B20A0) {
            return (address(0), RecoverError.InvalidSignatureS);
        }
        if (v != 27 && v != 28) {
            return (address(0), RecoverError.InvalidSignatureV);
        }

        // If the signature is valid (and not malleable), return the signer address
        address signer = ecrecover(hash, v, r, s);
        if (signer == address(0)) {
            return (address(0), RecoverError.InvalidSignature);
        }

        return (signer, RecoverError.NoError);
    }

    /**
     * @dev Overload of {ECDSA-recover} that receives the `v`,
     * `r` and `s` signature fields separately.
     */
    function recover(
        bytes32 hash,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) internal pure returns (address) {
        (address recovered, RecoverError error) = tryRecover(hash, v, r, s);
        _throwError(error);
        return recovered;
    }

    /**
     * @dev Returns an Ethereum Signed Message, created from a `hash`. This
     * produces hash corresponding to the one signed with the
     * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`]
     * JSON-RPC method as part of EIP-191.
     *
     * See {recover}.
     */
    function toEthSignedMessageHash(bytes32 hash) internal pure returns (bytes32) {
        // 32 is the length in bytes of hash,
        // enforced by the type signature above
        return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n32", hash));
    }

    /**
     * @dev Returns an Ethereum Signed Typed Data, created from a
     * `domainSeparator` and a `structHash`. This produces hash corresponding
     * to the one signed with the
     * https://eips.ethereum.org/EIPS/eip-712[`eth_signTypedData`]
     * JSON-RPC method as part of EIP-712.
     *
     * See {recover}.
     */
    function toTypedDataHash(bytes32 domainSeparator, bytes32 structHash) internal pure returns (bytes32) {
        return keccak256(abi.encodePacked("\x19\x01", domainSeparator, structHash));
    }
}

File 6 of 15 : Strings.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

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

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

File 7 of 15 : Context.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

File 9 of 15 : IERC721Metadata.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "../IERC721.sol";

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

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

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

File 10 of 15 : IERC721Enumerable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "../IERC721.sol";

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

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

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

File 11 of 15 : ERC721Enumerable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

File 12 of 15 : IERC721Receiver.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

File 13 of 15 : IERC721.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

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

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

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

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
     * are aware of the ERC721 protocol to prevent tokens from being forever locked.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

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

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

    /**
     * @dev Returns the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId) external view returns (address operator);

    /**
     * @dev Approve or remove `operator` as an operator for the caller.
     * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller.
     *
     * Requirements:
     *
     * - The `operator` cannot be the caller.
     *
     * Emits an {ApprovalForAll} event.
     */
    function setApprovalForAll(address operator, bool _approved) external;

    /**
     * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`.
     *
     * See {setApprovalForAll}
     */
    function isApprovedForAll(address owner, address operator) external view returns (bool);

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes calldata data
    ) external;
}

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

pragma solidity ^0.8.0;

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each
     * token will be the concatenation of the `baseURI` and the `tokenId`. Empty
     * by default, can be overriden in child contracts.
     */
    function _baseURI() internal view virtual returns (string memory) {
        return "";
    }

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

    function _setOwner(address newOwner) private {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"GIFT_MAX_QTY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PRESALES_MAX_QTY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PRESALES_MAX_QTY_PER_MINTER","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PRESALES_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PUBLIC_SALES_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PUBLIC_SALE_MAX_QTY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PUBLIC_SALE_MAX_QTY_PER_TRANSACTION","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"TOTAL_MAX_QTY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"WHITELIST_TYPEHASH","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_buyer","type":"address"},{"internalType":"uint256","name":"_signedQty","type":"uint256"},{"internalType":"bytes","name":"_signature","type":"bytes"}],"name":"getSigner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"receivers","type":"address[]"}],"name":"gift","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"giftedQty","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isPresalesActivated","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isPublicSalesActivated","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"","type":"address"}],"name":"presaleMinterToTokenQty","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintQty","type":"uint256"},{"internalType":"uint256","name":"_signedQty","type":"uint256"},{"internalType":"bytes","name":"_signature","type":"bytes"}],"name":"presalesMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"presalesMintedQty","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintQty","type":"uint256"}],"name":"publicSalesMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"publicSalesMintedQty","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":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"URI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"URI","type":"string"}],"name":"setContractURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"setWhitelistSigner","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":"togglePresalesStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"togglePublicSalesStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6101206040526000600f55600060105560006011553480156200002157600080fd5b506040518060400160405280600c81526020017f4675747572652050756e6b7a00000000000000000000000000000000000000008152506040518060400160405280600481526020017f50554e4b000000000000000000000000000000000000000000000000000000008152506040518060400160405280600c81526020017f4675747572652050756e6b7a00000000000000000000000000000000000000008152506040518060400160405280600181526020017f31000000000000000000000000000000000000000000000000000000000000008152506200011a6200010e620001d160201b60201c565b620001d960201b60201c565b60008280519060200120905060008280519060200120905060007f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f90508260c081815250508160e081815250504660a08181525050620001828184846200029d60201b60201c565b6080818152505080610100818152505050505050508160019080519060200190620001af929190620002d9565b508060029080519060200190620001c8929190620002d9565b505050620004c6565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008383834630604051602001620002ba95949392919062000404565b6040516020818303038152906040528051906020012090509392505050565b828054620002e79062000490565b90600052602060002090601f0160209004810192826200030b576000855562000357565b82601f106200032657805160ff191683800117855562000357565b8280016001018555821562000357579182015b828111156200035657825182559160200191906001019062000339565b5b5090506200036691906200036a565b5090565b5b80821115620003855760008160009055506001016200036b565b5090565b6000819050919050565b6200039e8162000389565b82525050565b6000819050919050565b620003b981620003a4565b82525050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000620003ec82620003bf565b9050919050565b620003fe81620003df565b82525050565b600060a0820190506200041b600083018862000393565b6200042a602083018762000393565b62000439604083018662000393565b620004486060830185620003ae565b620004576080830184620003f3565b9695505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620004a957607f821691505b60208210811415620004c057620004bf62000461565b5b50919050565b60805160a05160c05160e051610100516156f76200050b6000396000612c3701526000612c7901526000612c5801526000612be401526000612c0c01526156f76000f3fe6080604052600436106102725760003560e01c80636352211e1161014f578063bd34fc57116100c1578063dce3a2bf1161007a578063dce3a2bf14610926578063dee816e614610951578063e8a3d4851461097c578063e985e9c5146109a7578063f2fde38b146109e4578063f8293dc014610a0d57610272565b8063bd34fc5714610816578063c3e79c0114610841578063c87b56dd1461087e578063d3381438146108bb578063d6eec46a146108e4578063dba7242b1461090f57610272565b806395d89b411161011357806395d89b411461072c5780639c12366114610757578063a22cb46514610782578063ae4384f1146107ab578063b0897d18146107d6578063b88d4fde146107ed57610272565b80636352211e1461064757806370a0823114610684578063715018a6146106c15780638da5cb5b146106d8578063938e3d7b1461070357610272565b80633354fe34116101e85780634f6ccce7116101ac5780634f6ccce71461052357806355f804b3146105605780635858aa261461058957806359c09529146105c65780635dfab17c146105f15780636301dccf1461061c57610272565b80633354fe34146104715780633ccfd60b1461049c57806342842e0e146104b357806347fc6e76146104dc5780634d192b831461050757610272565b8063163e1e611161023a578063163e1e611461037057806318160ddd1461039957806323b872dd146103c457806324123cc4146103ed5780632cbcdbd4146104095780632f745c591461043457610272565b806301ffc9a7146102775780630532096a146102b457806306fdde03146102df578063081812fc1461030a578063095ea7b314610347575b600080fd5b34801561028357600080fd5b5061029e60048036038101906102999190613855565b610a38565b6040516102ab919061389d565b60405180910390f35b3480156102c057600080fd5b506102c9610ab2565b6040516102d691906138d1565b60405180910390f35b3480156102eb57600080fd5b506102f4610ab7565b6040516103019190613985565b60405180910390f35b34801561031657600080fd5b50610331600480360381019061032c91906139d3565b610b49565b60405161033e9190613a41565b60405180910390f35b34801561035357600080fd5b5061036e60048036038101906103699190613a88565b610bce565b005b34801561037c57600080fd5b5061039760048036038101906103929190613b2d565b610ce6565b005b3480156103a557600080fd5b506103ae610e92565b6040516103bb91906138d1565b60405180910390f35b3480156103d057600080fd5b506103eb60048036038101906103e69190613b7a565b610e9f565b005b61040760048036038101906104029190613cfd565b610eff565b005b34801561041557600080fd5b5061041e611223565b60405161042b91906138d1565b60405180910390f35b34801561044057600080fd5b5061045b60048036038101906104569190613a88565b611235565b60405161046891906138d1565b60405180910390f35b34801561047d57600080fd5b506104866112da565b60405161049391906138d1565b60405180910390f35b3480156104a857600080fd5b506104b16112df565b005b3480156104bf57600080fd5b506104da60048036038101906104d59190613b7a565b6113e7565b005b3480156104e857600080fd5b506104f1611407565b6040516104fe91906138d1565b60405180910390f35b610521600480360381019061051c91906139d3565b61140d565b005b34801561052f57600080fd5b5061054a600480360381019061054591906139d3565b61160e565b60405161055791906138d1565b60405180910390f35b34801561056c57600080fd5b5061058760048036038101906105829190613dc2565b61167f565b005b34801561059557600080fd5b506105b060048036038101906105ab9190613e0f565b611711565b6040516105bd9190613a41565b60405180910390f35b3480156105d257600080fd5b506105db61177d565b6040516105e8919061389d565b60405180910390f35b3480156105fd57600080fd5b50610606611790565b60405161061391906138d1565b60405180910390f35b34801561062857600080fd5b50610631611795565b60405161063e9190613e97565b60405180910390f35b34801561065357600080fd5b5061066e600480360381019061066991906139d3565b6117b9565b60405161067b9190613a41565b60405180910390f35b34801561069057600080fd5b506106ab60048036038101906106a69190613eb2565b61186b565b6040516106b891906138d1565b60405180910390f35b3480156106cd57600080fd5b506106d6611923565b005b3480156106e457600080fd5b506106ed6119ab565b6040516106fa9190613a41565b60405180910390f35b34801561070f57600080fd5b5061072a60048036038101906107259190613dc2565b6119d4565b005b34801561073857600080fd5b50610741611a66565b60405161074e9190613985565b60405180910390f35b34801561076357600080fd5b5061076c611af8565b60405161077991906138d1565b60405180910390f35b34801561078e57600080fd5b506107a960048036038101906107a49190613f0b565b611afe565b005b3480156107b757600080fd5b506107c0611c7f565b6040516107cd919061389d565b60405180910390f35b3480156107e257600080fd5b506107eb611c92565b005b3480156107f957600080fd5b50610814600480360381019061080f9190613f4b565b611d3a565b005b34801561082257600080fd5b5061082b611d9c565b60405161083891906138d1565b60405180910390f35b34801561084d57600080fd5b5061086860048036038101906108639190613eb2565b611da2565b60405161087591906138d1565b60405180910390f35b34801561088a57600080fd5b506108a560048036038101906108a091906139d3565b611dba565b6040516108b29190613985565b60405180910390f35b3480156108c757600080fd5b506108e260048036038101906108dd9190613eb2565b611e36565b005b3480156108f057600080fd5b506108f9611ef6565b60405161090691906138d1565b60405180910390f35b34801561091b57600080fd5b50610924611f01565b005b34801561093257600080fd5b5061093b611fa9565b60405161094891906138d1565b60405180910390f35b34801561095d57600080fd5b50610966611faf565b60405161097391906138d1565b60405180910390f35b34801561098857600080fd5b50610991611fb5565b60405161099e9190613985565b60405180910390f35b3480156109b357600080fd5b506109ce60048036038101906109c99190613fce565b612047565b6040516109db919061389d565b60405180910390f35b3480156109f057600080fd5b50610a0b6004803603810190610a069190613eb2565b6120db565b005b348015610a1957600080fd5b50610a226121d3565b604051610a2f91906138d1565b60405180910390f35b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610aab5750610aaa826121de565b5b9050919050565b600381565b606060018054610ac69061403d565b80601f0160208091040260200160405190810160405280929190818152602001828054610af29061403d565b8015610b3f5780601f10610b1457610100808354040283529160200191610b3f565b820191906000526020600020905b815481529060010190602001808311610b2257829003601f168201915b5050505050905090565b6000610b54826122c0565b610b93576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b8a906140e1565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610bd9826117b9565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610c4a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c4190614173565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610c6961232c565b73ffffffffffffffffffffffffffffffffffffffff161480610c985750610c9781610c9261232c565b612047565b5b610cd7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cce90614205565b60405180910390fd5b610ce18383612334565b505050565b610cee61232c565b73ffffffffffffffffffffffffffffffffffffffff16610d0c6119ab565b73ffffffffffffffffffffffffffffffffffffffff1614610d62576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d5990614271565b60405180910390fd5b61115c82829050610d71610e92565b610d7b91906142c0565b1115610dbc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610db390614362565b60405180910390fd5b606482829050601154610dcf91906142c0565b1115610e10576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e07906143ce565b60405180910390fd5b60005b82829050811015610e8d5760116000815480929190610e31906143ee565b9190505550610e7a838383818110610e4c57610e4b614437565b5b9050602002016020810190610e619190613eb2565b6001610e6b610e92565b610e7591906142c0565b6123ed565b8080610e85906143ee565b915050610e13565b505050565b6000600980549050905090565b610eb0610eaa61232c565b8261240b565b610eef576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ee6906144d8565b60405180910390fd5b610efa8383836124e9565b505050565b600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16610f43338484611711565b73ffffffffffffffffffffffffffffffffffffffff1614610f99576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f9090614544565b60405180910390fd5b601260009054906101000a900460ff16610fe8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fdf906145b0565b60405180910390fd5b61115c83610ff4610e92565b610ffe91906142c0565b111561103f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161103690614362565b60405180910390fd5b6103e883600f5461105091906142c0565b1115611091576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110889061461c565b60405180910390fd5b600383600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546110de91906142c0565b111561111f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611116906146ae565b60405180910390fd5b82666a94d74f43000061113291906146ce565b341015611174576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161116b90614774565b60405180910390fd5b82600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546111c391906142c0565b9250508190555060005b8381101561121d57600f60008154809291906111e8906143ee565b919050555061120a3360016111fb610e92565b61120591906142c0565b6123ed565b8080611215906143ee565b9150506111cd565b50505050565b606461115c6112329190614794565b81565b60006112408361186b565b8210611281576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112789061483a565b60405180910390fd5b600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b606481565b6112e761232c565b73ffffffffffffffffffffffffffffffffffffffff166113056119ab565b73ffffffffffffffffffffffffffffffffffffffff161461135b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161135290614271565b60405180910390fd5b6000471161139e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611395906148a6565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f193505050501580156113e4573d6000803e3d6000fd5b50565b61140283838360405180602001604052806000815250611d3a565b505050565b6103e881565b601260019054906101000a900460ff1661145c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161145390614912565b60405180910390fd5b61115c81611468610e92565b61147291906142c0565b11156114b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114aa90614362565b60405180910390fd5b606461115c6114c29190614794565b81601054600f546114d391906142c0565b6114dd91906142c0565b111561151e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115159061497e565b60405180910390fd5b6007811115611562576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161155990614a10565b60405180910390fd5b80668e1bc9bf04000061157591906146ce565b3410156115b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115ae90614774565b60405180910390fd5b60005b8181101561160a57601060008154809291906115d5906143ee565b91905055506115f73360016115e8610e92565b6115f291906142c0565b6123ed565b8080611602906143ee565b9150506115ba565b5050565b6000611618610e92565b8210611659576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161165090614aa2565b60405180910390fd5b6009828154811061166d5761166c614437565b5b90600052602060002001549050919050565b61168761232c565b73ffffffffffffffffffffffffffffffffffffffff166116a56119ab565b73ffffffffffffffffffffffffffffffffffffffff16146116fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116f290614271565b60405180910390fd5b8181600d919061170c929190613746565b505050565b6000806117677f680b772c0ec4675960b688c733903d940dd27ba2084c6a2e2d98c8b8e1d67390868660405160200161174c93929190614ac2565b60405160208183030381529060405280519060200120612745565b9050611773818461275f565b9150509392505050565b601260009054906101000a900460ff1681565b600781565b7f680b772c0ec4675960b688c733903d940dd27ba2084c6a2e2d98c8b8e1d6739081565b6000806003600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611862576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161185990614b6b565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156118dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118d390614bfd565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61192b61232c565b73ffffffffffffffffffffffffffffffffffffffff166119496119ab565b73ffffffffffffffffffffffffffffffffffffffff161461199f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161199690614271565b60405180910390fd5b6119a96000612786565b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6119dc61232c565b73ffffffffffffffffffffffffffffffffffffffff166119fa6119ab565b73ffffffffffffffffffffffffffffffffffffffff1614611a50576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a4790614271565b60405180910390fd5b8181600c9190611a61929190613746565b505050565b606060028054611a759061403d565b80601f0160208091040260200160405190810160405280929190818152602001828054611aa19061403d565b8015611aee5780601f10611ac357610100808354040283529160200191611aee565b820191906000526020600020905b815481529060010190602001808311611ad157829003601f168201915b5050505050905090565b60105481565b611b0661232c565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611b74576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b6b90614c69565b60405180910390fd5b8060066000611b8161232c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611c2e61232c565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611c73919061389d565b60405180910390a35050565b601260019054906101000a900460ff1681565b611c9a61232c565b73ffffffffffffffffffffffffffffffffffffffff16611cb86119ab565b73ffffffffffffffffffffffffffffffffffffffff1614611d0e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d0590614271565b60405180910390fd5b601260009054906101000a900460ff1615601260006101000a81548160ff021916908315150217905550565b611d4b611d4561232c565b8361240b565b611d8a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d81906144d8565b60405180910390fd5b611d968484848461284a565b50505050565b60115481565b600e6020528060005260406000206000915090505481565b6060611dc5826122c0565b611e04576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dfb90614cd5565b60405180910390fd5b600d611e0f836128a6565b604051602001611e20929190614dc5565b6040516020818303038152906040529050919050565b611e3e61232c565b73ffffffffffffffffffffffffffffffffffffffff16611e5c6119ab565b73ffffffffffffffffffffffffffffffffffffffff1614611eb2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ea990614271565b60405180910390fd5b80600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b668e1bc9bf04000081565b611f0961232c565b73ffffffffffffffffffffffffffffffffffffffff16611f276119ab565b73ffffffffffffffffffffffffffffffffffffffff1614611f7d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f7490614271565b60405180910390fd5b601260019054906101000a900460ff1615601260016101000a81548160ff021916908315150217905550565b600f5481565b61115c81565b6060600c8054611fc49061403d565b80601f0160208091040260200160405190810160405280929190818152602001828054611ff09061403d565b801561203d5780601f106120125761010080835404028352916020019161203d565b820191906000526020600020905b81548152906001019060200180831161202057829003601f168201915b5050505050905090565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6120e361232c565b73ffffffffffffffffffffffffffffffffffffffff166121016119ab565b73ffffffffffffffffffffffffffffffffffffffff1614612157576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161214e90614271565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156121c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121be90614e5b565b60405180910390fd5b6121d081612786565b50565b666a94d74f43000081565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806122a957507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806122b957506122b882612a07565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166003600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816005600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166123a7836117b9565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b612407828260405180602001604052806000815250612a71565b5050565b6000612416826122c0565b612455576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161244c90614eed565b60405180910390fd5b6000612460836117b9565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806124cf57508373ffffffffffffffffffffffffffffffffffffffff166124b784610b49565b73ffffffffffffffffffffffffffffffffffffffff16145b806124e057506124df8185612047565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16612509826117b9565b73ffffffffffffffffffffffffffffffffffffffff161461255f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161255690614f7f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156125cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125c690615011565b60405180910390fd5b6125da838383612acc565b6125e5600082612334565b6001600460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546126359190614794565b925050819055506001600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461268c91906142c0565b92505081905550816003600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000612758612752612be0565b83612ca3565b9050919050565b600080600061276e8585612cd6565b9150915061277b81612d59565b819250505092915050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6128558484846124e9565b61286184848484612f2e565b6128a0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612897906150a3565b60405180910390fd5b50505050565b606060008214156128ee576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612a02565b600082905060005b60008214612920578080612909906143ee565b915050600a8261291991906150f2565b91506128f6565b60008167ffffffffffffffff81111561293c5761293b613bd2565b5b6040519080825280601f01601f19166020018201604052801561296e5781602001600182028036833780820191505090505b5090505b600085146129fb576001826129879190614794565b9150600a856129969190615123565b60306129a291906142c0565b60f81b8183815181106129b8576129b7614437565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856129f491906150f2565b9450612972565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b612a7b83836130c5565b612a886000848484612f2e565b612ac7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612abe906150a3565b60405180910390fd5b505050565b612ad7838383613293565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612b1a57612b1581613298565b612b59565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614612b5857612b5783826132e1565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612b9c57612b978161344e565b612bdb565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614612bda57612bd9828261351f565b5b5b505050565b60007f0000000000000000000000000000000000000000000000000000000000000000461415612c32577f00000000000000000000000000000000000000000000000000000000000000009050612ca0565b612c9d7f00000000000000000000000000000000000000000000000000000000000000007f00000000000000000000000000000000000000000000000000000000000000007f000000000000000000000000000000000000000000000000000000000000000061359e565b90505b90565b60008282604051602001612cb89291906151c1565b60405160208183030381529060405280519060200120905092915050565b600080604183511415612d185760008060006020860151925060408601519150606086015160001a9050612d0c878285856135d8565b94509450505050612d52565b604083511415612d49576000806020850151915060408501519050612d3e8683836136e5565b935093505050612d52565b60006002915091505b9250929050565b60006004811115612d6d57612d6c6151f8565b5b816004811115612d8057612d7f6151f8565b5b1415612d8b57612f2b565b60016004811115612d9f57612d9e6151f8565b5b816004811115612db257612db16151f8565b5b1415612df3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612dea90615273565b60405180910390fd5b60026004811115612e0757612e066151f8565b5b816004811115612e1a57612e196151f8565b5b1415612e5b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e52906152df565b60405180910390fd5b60036004811115612e6f57612e6e6151f8565b5b816004811115612e8257612e816151f8565b5b1415612ec3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612eba90615371565b60405180910390fd5b600480811115612ed657612ed56151f8565b5b816004811115612ee957612ee86151f8565b5b1415612f2a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f2190615403565b60405180910390fd5b5b50565b6000612f4f8473ffffffffffffffffffffffffffffffffffffffff16613733565b156130b8578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612f7861232c565b8786866040518563ffffffff1660e01b8152600401612f9a9493929190615478565b602060405180830381600087803b158015612fb457600080fd5b505af1925050508015612fe557506040513d601f19601f82011682018060405250810190612fe291906154d9565b60015b613068573d8060008114613015576040519150601f19603f3d011682016040523d82523d6000602084013e61301a565b606091505b50600081511415613060576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613057906150a3565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506130bd565b600190505b949350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613135576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161312c90615552565b60405180910390fd5b61313e816122c0565b1561317e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613175906155be565b60405180910390fd5b61318a60008383612acc565b6001600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546131da91906142c0565b92505081905550816003600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b505050565b600980549050600a600083815260200190815260200160002081905550600981908060018154018082558091505060019003906000526020600020016000909190919091505550565b600060016132ee8461186b565b6132f89190614794565b90506000600860008481526020019081526020016000205490508181146133dd576000600760008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600760008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816008600083815260200190815260200160002081905550505b6008600084815260200190815260200160002060009055600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b600060016009805490506134629190614794565b90506000600a600084815260200190815260200160002054905060006009838154811061349257613491614437565b5b9060005260206000200154905080600983815481106134b4576134b3614437565b5b906000526020600020018190555081600a600083815260200190815260200160002081905550600a6000858152602001908152602001600020600090556009805480613503576135026155de565b5b6001900381819060005260206000200160009055905550505050565b600061352a8361186b565b905081600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806008600084815260200190815260200160002081905550505050565b600083838346306040516020016135b995949392919061560d565b6040516020818303038152906040528051906020012090509392505050565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a08360001c11156136135760006003915091506136dc565b601b8560ff161415801561362b5750601c8560ff1614155b1561363d5760006004915091506136dc565b600060018787878760405160008152602001604052604051613662949392919061567c565b6020604051602081039080840390855afa158015613684573d6000803e3d6000fd5b505050602060405103519050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156136d3576000600192509250506136dc565b80600092509250505b94509492505050565b6000806000807f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff85169150601b8560ff1c019050613725878288856135d8565b935093505050935093915050565b600080823b905060008111915050919050565b8280546137529061403d565b90600052602060002090601f01602090048101928261377457600085556137bb565b82601f1061378d57803560ff19168380011785556137bb565b828001600101855582156137bb579182015b828111156137ba57823582559160200191906001019061379f565b5b5090506137c891906137cc565b5090565b5b808211156137e55760008160009055506001016137cd565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b613832816137fd565b811461383d57600080fd5b50565b60008135905061384f81613829565b92915050565b60006020828403121561386b5761386a6137f3565b5b600061387984828501613840565b91505092915050565b60008115159050919050565b61389781613882565b82525050565b60006020820190506138b2600083018461388e565b92915050565b6000819050919050565b6138cb816138b8565b82525050565b60006020820190506138e660008301846138c2565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561392657808201518184015260208101905061390b565b83811115613935576000848401525b50505050565b6000601f19601f8301169050919050565b6000613957826138ec565b61396181856138f7565b9350613971818560208601613908565b61397a8161393b565b840191505092915050565b6000602082019050818103600083015261399f818461394c565b905092915050565b6139b0816138b8565b81146139bb57600080fd5b50565b6000813590506139cd816139a7565b92915050565b6000602082840312156139e9576139e86137f3565b5b60006139f7848285016139be565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000613a2b82613a00565b9050919050565b613a3b81613a20565b82525050565b6000602082019050613a566000830184613a32565b92915050565b613a6581613a20565b8114613a7057600080fd5b50565b600081359050613a8281613a5c565b92915050565b60008060408385031215613a9f57613a9e6137f3565b5b6000613aad85828601613a73565b9250506020613abe858286016139be565b9150509250929050565b600080fd5b600080fd5b600080fd5b60008083601f840112613aed57613aec613ac8565b5b8235905067ffffffffffffffff811115613b0a57613b09613acd565b5b602083019150836020820283011115613b2657613b25613ad2565b5b9250929050565b60008060208385031215613b4457613b436137f3565b5b600083013567ffffffffffffffff811115613b6257613b616137f8565b5b613b6e85828601613ad7565b92509250509250929050565b600080600060608486031215613b9357613b926137f3565b5b6000613ba186828701613a73565b9350506020613bb286828701613a73565b9250506040613bc3868287016139be565b9150509250925092565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b613c0a8261393b565b810181811067ffffffffffffffff82111715613c2957613c28613bd2565b5b80604052505050565b6000613c3c6137e9565b9050613c488282613c01565b919050565b600067ffffffffffffffff821115613c6857613c67613bd2565b5b613c718261393b565b9050602081019050919050565b82818337600083830152505050565b6000613ca0613c9b84613c4d565b613c32565b905082815260208101848484011115613cbc57613cbb613bcd565b5b613cc7848285613c7e565b509392505050565b600082601f830112613ce457613ce3613ac8565b5b8135613cf4848260208601613c8d565b91505092915050565b600080600060608486031215613d1657613d156137f3565b5b6000613d24868287016139be565b9350506020613d35868287016139be565b925050604084013567ffffffffffffffff811115613d5657613d556137f8565b5b613d6286828701613ccf565b9150509250925092565b60008083601f840112613d8257613d81613ac8565b5b8235905067ffffffffffffffff811115613d9f57613d9e613acd565b5b602083019150836001820283011115613dbb57613dba613ad2565b5b9250929050565b60008060208385031215613dd957613dd86137f3565b5b600083013567ffffffffffffffff811115613df757613df66137f8565b5b613e0385828601613d6c565b92509250509250929050565b600080600060608486031215613e2857613e276137f3565b5b6000613e3686828701613a73565b9350506020613e47868287016139be565b925050604084013567ffffffffffffffff811115613e6857613e676137f8565b5b613e7486828701613ccf565b9150509250925092565b6000819050919050565b613e9181613e7e565b82525050565b6000602082019050613eac6000830184613e88565b92915050565b600060208284031215613ec857613ec76137f3565b5b6000613ed684828501613a73565b91505092915050565b613ee881613882565b8114613ef357600080fd5b50565b600081359050613f0581613edf565b92915050565b60008060408385031215613f2257613f216137f3565b5b6000613f3085828601613a73565b9250506020613f4185828601613ef6565b9150509250929050565b60008060008060808587031215613f6557613f646137f3565b5b6000613f7387828801613a73565b9450506020613f8487828801613a73565b9350506040613f95878288016139be565b925050606085013567ffffffffffffffff811115613fb657613fb56137f8565b5b613fc287828801613ccf565b91505092959194509250565b60008060408385031215613fe557613fe46137f3565b5b6000613ff385828601613a73565b925050602061400485828601613a73565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061405557607f821691505b602082108114156140695761406861400e565b5b50919050565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b60006140cb602c836138f7565b91506140d68261406f565b604082019050919050565b600060208201905081810360008301526140fa816140be565b9050919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b600061415d6021836138f7565b915061416882614101565b604082019050919050565b6000602082019050818103600083015261418c81614150565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b60006141ef6038836138f7565b91506141fa82614193565b604082019050919050565b6000602082019050818103600083015261421e816141e2565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061425b6020836138f7565b915061426682614225565b602082019050919050565b6000602082019050818103600083015261428a8161424e565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006142cb826138b8565b91506142d6836138b8565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561430b5761430a614291565b5b828201905092915050565b7f45786365656420746f74616c206d6178206c696d697400000000000000000000600082015250565b600061434c6016836138f7565b915061435782614316565b602082019050919050565b6000602082019050818103600083015261437b8161433f565b9050919050565b7f4578636565642067696674206d6178206c696d69740000000000000000000000600082015250565b60006143b86015836138f7565b91506143c382614382565b602082019050919050565b600060208201905081810360008301526143e7816143ab565b9050919050565b60006143f9826138b8565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561442c5761442b614291565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b60006144c26031836138f7565b91506144cd82614466565b604082019050919050565b600060208201905081810360008301526144f1816144b5565b9050919050565b7f496e76616c6964207369676e6174757265000000000000000000000000000000600082015250565b600061452e6011836138f7565b9150614539826144f8565b602082019050919050565b6000602082019050818103600083015261455d81614521565b9050919050565b7f50726573616c657320697320636c6f7365640000000000000000000000000000600082015250565b600061459a6012836138f7565b91506145a582614564565b602082019050919050565b600060208201905081810360008301526145c98161458d565b9050919050565b7f4578636565642070726573616c6573206d6178206c696d697400000000000000600082015250565b60006146066019836138f7565b9150614611826145d0565b602082019050919050565b60006020820190508181036000830152614635816145f9565b9050919050565b7f4578636565642070726573616c6573206d6178207175616e746974792070657260008201527f206d696e74657200000000000000000000000000000000000000000000000000602082015250565b60006146986027836138f7565b91506146a38261463c565b604082019050919050565b600060208201905081810360008301526146c78161468b565b9050919050565b60006146d9826138b8565b91506146e4836138b8565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561471d5761471c614291565b5b828202905092915050565b7f496e73756666696369656e742045544800000000000000000000000000000000600082015250565b600061475e6010836138f7565b915061476982614728565b602082019050919050565b6000602082019050818103600083015261478d81614751565b9050919050565b600061479f826138b8565b91506147aa836138b8565b9250828210156147bd576147bc614291565b5b828203905092915050565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b6000614824602b836138f7565b915061482f826147c8565b604082019050919050565b6000602082019050818103600083015261485381614817565b9050919050565b7f4e6f20616d6f756e7420746f2077697468647261770000000000000000000000600082015250565b60006148906015836138f7565b915061489b8261485a565b602082019050919050565b600060208201905081810360008301526148bf81614883565b9050919050565b7f5075626c69632073616c6520697320636c6f7365640000000000000000000000600082015250565b60006148fc6015836138f7565b9150614907826148c6565b602082019050919050565b6000602082019050818103600083015261492b816148ef565b9050919050565b7f457863656564207075626c69632073616c65206d6178206c696d697400000000600082015250565b6000614968601c836138f7565b915061497382614932565b602082019050919050565b600060208201905081810360008301526149978161495b565b9050919050565b7f457863656564207075626c69632073616c6573206d6178207175616e7469747960008201527f20706572207472616e73616374696f6e00000000000000000000000000000000602082015250565b60006149fa6030836138f7565b9150614a058261499e565b604082019050919050565b60006020820190508181036000830152614a29816149ed565b9050919050565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b6000614a8c602c836138f7565b9150614a9782614a30565b604082019050919050565b60006020820190508181036000830152614abb81614a7f565b9050919050565b6000606082019050614ad76000830186613e88565b614ae46020830185613a32565b614af160408301846138c2565b949350505050565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b6000614b556029836138f7565b9150614b6082614af9565b604082019050919050565b60006020820190508181036000830152614b8481614b48565b9050919050565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b6000614be7602a836138f7565b9150614bf282614b8b565b604082019050919050565b60006020820190508181036000830152614c1681614bda565b9050919050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b6000614c536019836138f7565b9150614c5e82614c1d565b602082019050919050565b60006020820190508181036000830152614c8281614c46565b9050919050565b7f546f6b656e206e6f742065786973740000000000000000000000000000000000600082015250565b6000614cbf600f836138f7565b9150614cca82614c89565b602082019050919050565b60006020820190508181036000830152614cee81614cb2565b9050919050565b600081905092915050565b60008190508160005260206000209050919050565b60008154614d228161403d565b614d2c8186614cf5565b94506001821660008114614d475760018114614d5857614d8b565b60ff19831686528186019350614d8b565b614d6185614d00565b60005b83811015614d8357815481890152600182019150602081019050614d64565b838801955050505b50505092915050565b6000614d9f826138ec565b614da98185614cf5565b9350614db9818560208601613908565b80840191505092915050565b6000614dd18285614d15565b9150614ddd8284614d94565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000614e456026836138f7565b9150614e5082614de9565b604082019050919050565b60006020820190508181036000830152614e7481614e38565b9050919050565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b6000614ed7602c836138f7565b9150614ee282614e7b565b604082019050919050565b60006020820190508181036000830152614f0681614eca565b9050919050565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b6000614f696029836138f7565b9150614f7482614f0d565b604082019050919050565b60006020820190508181036000830152614f9881614f5c565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000614ffb6024836138f7565b915061500682614f9f565b604082019050919050565b6000602082019050818103600083015261502a81614fee565b9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b600061508d6032836138f7565b915061509882615031565b604082019050919050565b600060208201905081810360008301526150bc81615080565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006150fd826138b8565b9150615108836138b8565b925082615118576151176150c3565b5b828204905092915050565b600061512e826138b8565b9150615139836138b8565b925082615149576151486150c3565b5b828206905092915050565b7f1901000000000000000000000000000000000000000000000000000000000000600082015250565b600061518a600283614cf5565b915061519582615154565b600282019050919050565b6000819050919050565b6151bb6151b682613e7e565b6151a0565b82525050565b60006151cc8261517d565b91506151d882856151aa565b6020820191506151e882846151aa565b6020820191508190509392505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b7f45434453413a20696e76616c6964207369676e61747572650000000000000000600082015250565b600061525d6018836138f7565b915061526882615227565b602082019050919050565b6000602082019050818103600083015261528c81615250565b9050919050565b7f45434453413a20696e76616c6964207369676e6174757265206c656e67746800600082015250565b60006152c9601f836138f7565b91506152d482615293565b602082019050919050565b600060208201905081810360008301526152f8816152bc565b9050919050565b7f45434453413a20696e76616c6964207369676e6174757265202773272076616c60008201527f7565000000000000000000000000000000000000000000000000000000000000602082015250565b600061535b6022836138f7565b9150615366826152ff565b604082019050919050565b6000602082019050818103600083015261538a8161534e565b9050919050565b7f45434453413a20696e76616c6964207369676e6174757265202776272076616c60008201527f7565000000000000000000000000000000000000000000000000000000000000602082015250565b60006153ed6022836138f7565b91506153f882615391565b604082019050919050565b6000602082019050818103600083015261541c816153e0565b9050919050565b600081519050919050565b600082825260208201905092915050565b600061544a82615423565b615454818561542e565b9350615464818560208601613908565b61546d8161393b565b840191505092915050565b600060808201905061548d6000830187613a32565b61549a6020830186613a32565b6154a760408301856138c2565b81810360608301526154b9818461543f565b905095945050505050565b6000815190506154d381613829565b92915050565b6000602082840312156154ef576154ee6137f3565b5b60006154fd848285016154c4565b91505092915050565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b600061553c6020836138f7565b915061554782615506565b602082019050919050565b6000602082019050818103600083015261556b8161552f565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b60006155a8601c836138f7565b91506155b382615572565b602082019050919050565b600060208201905081810360008301526155d78161559b565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b600060a0820190506156226000830188613e88565b61562f6020830187613e88565b61563c6040830186613e88565b61564960608301856138c2565b6156566080830184613a32565b9695505050505050565b600060ff82169050919050565b61567681615660565b82525050565b60006080820190506156916000830187613e88565b61569e602083018661566d565b6156ab6040830185613e88565b6156b86060830184613e88565b9594505050505056fea26469706673582212208f1358ed850d42deb0296baa462d9b0e41082511257efd27d5ae344e3171387b64736f6c63430008090033

Deployed Bytecode

0x6080604052600436106102725760003560e01c80636352211e1161014f578063bd34fc57116100c1578063dce3a2bf1161007a578063dce3a2bf14610926578063dee816e614610951578063e8a3d4851461097c578063e985e9c5146109a7578063f2fde38b146109e4578063f8293dc014610a0d57610272565b8063bd34fc5714610816578063c3e79c0114610841578063c87b56dd1461087e578063d3381438146108bb578063d6eec46a146108e4578063dba7242b1461090f57610272565b806395d89b411161011357806395d89b411461072c5780639c12366114610757578063a22cb46514610782578063ae4384f1146107ab578063b0897d18146107d6578063b88d4fde146107ed57610272565b80636352211e1461064757806370a0823114610684578063715018a6146106c15780638da5cb5b146106d8578063938e3d7b1461070357610272565b80633354fe34116101e85780634f6ccce7116101ac5780634f6ccce71461052357806355f804b3146105605780635858aa261461058957806359c09529146105c65780635dfab17c146105f15780636301dccf1461061c57610272565b80633354fe34146104715780633ccfd60b1461049c57806342842e0e146104b357806347fc6e76146104dc5780634d192b831461050757610272565b8063163e1e611161023a578063163e1e611461037057806318160ddd1461039957806323b872dd146103c457806324123cc4146103ed5780632cbcdbd4146104095780632f745c591461043457610272565b806301ffc9a7146102775780630532096a146102b457806306fdde03146102df578063081812fc1461030a578063095ea7b314610347575b600080fd5b34801561028357600080fd5b5061029e60048036038101906102999190613855565b610a38565b6040516102ab919061389d565b60405180910390f35b3480156102c057600080fd5b506102c9610ab2565b6040516102d691906138d1565b60405180910390f35b3480156102eb57600080fd5b506102f4610ab7565b6040516103019190613985565b60405180910390f35b34801561031657600080fd5b50610331600480360381019061032c91906139d3565b610b49565b60405161033e9190613a41565b60405180910390f35b34801561035357600080fd5b5061036e60048036038101906103699190613a88565b610bce565b005b34801561037c57600080fd5b5061039760048036038101906103929190613b2d565b610ce6565b005b3480156103a557600080fd5b506103ae610e92565b6040516103bb91906138d1565b60405180910390f35b3480156103d057600080fd5b506103eb60048036038101906103e69190613b7a565b610e9f565b005b61040760048036038101906104029190613cfd565b610eff565b005b34801561041557600080fd5b5061041e611223565b60405161042b91906138d1565b60405180910390f35b34801561044057600080fd5b5061045b60048036038101906104569190613a88565b611235565b60405161046891906138d1565b60405180910390f35b34801561047d57600080fd5b506104866112da565b60405161049391906138d1565b60405180910390f35b3480156104a857600080fd5b506104b16112df565b005b3480156104bf57600080fd5b506104da60048036038101906104d59190613b7a565b6113e7565b005b3480156104e857600080fd5b506104f1611407565b6040516104fe91906138d1565b60405180910390f35b610521600480360381019061051c91906139d3565b61140d565b005b34801561052f57600080fd5b5061054a600480360381019061054591906139d3565b61160e565b60405161055791906138d1565b60405180910390f35b34801561056c57600080fd5b5061058760048036038101906105829190613dc2565b61167f565b005b34801561059557600080fd5b506105b060048036038101906105ab9190613e0f565b611711565b6040516105bd9190613a41565b60405180910390f35b3480156105d257600080fd5b506105db61177d565b6040516105e8919061389d565b60405180910390f35b3480156105fd57600080fd5b50610606611790565b60405161061391906138d1565b60405180910390f35b34801561062857600080fd5b50610631611795565b60405161063e9190613e97565b60405180910390f35b34801561065357600080fd5b5061066e600480360381019061066991906139d3565b6117b9565b60405161067b9190613a41565b60405180910390f35b34801561069057600080fd5b506106ab60048036038101906106a69190613eb2565b61186b565b6040516106b891906138d1565b60405180910390f35b3480156106cd57600080fd5b506106d6611923565b005b3480156106e457600080fd5b506106ed6119ab565b6040516106fa9190613a41565b60405180910390f35b34801561070f57600080fd5b5061072a60048036038101906107259190613dc2565b6119d4565b005b34801561073857600080fd5b50610741611a66565b60405161074e9190613985565b60405180910390f35b34801561076357600080fd5b5061076c611af8565b60405161077991906138d1565b60405180910390f35b34801561078e57600080fd5b506107a960048036038101906107a49190613f0b565b611afe565b005b3480156107b757600080fd5b506107c0611c7f565b6040516107cd919061389d565b60405180910390f35b3480156107e257600080fd5b506107eb611c92565b005b3480156107f957600080fd5b50610814600480360381019061080f9190613f4b565b611d3a565b005b34801561082257600080fd5b5061082b611d9c565b60405161083891906138d1565b60405180910390f35b34801561084d57600080fd5b5061086860048036038101906108639190613eb2565b611da2565b60405161087591906138d1565b60405180910390f35b34801561088a57600080fd5b506108a560048036038101906108a091906139d3565b611dba565b6040516108b29190613985565b60405180910390f35b3480156108c757600080fd5b506108e260048036038101906108dd9190613eb2565b611e36565b005b3480156108f057600080fd5b506108f9611ef6565b60405161090691906138d1565b60405180910390f35b34801561091b57600080fd5b50610924611f01565b005b34801561093257600080fd5b5061093b611fa9565b60405161094891906138d1565b60405180910390f35b34801561095d57600080fd5b50610966611faf565b60405161097391906138d1565b60405180910390f35b34801561098857600080fd5b50610991611fb5565b60405161099e9190613985565b60405180910390f35b3480156109b357600080fd5b506109ce60048036038101906109c99190613fce565b612047565b6040516109db919061389d565b60405180910390f35b3480156109f057600080fd5b50610a0b6004803603810190610a069190613eb2565b6120db565b005b348015610a1957600080fd5b50610a226121d3565b604051610a2f91906138d1565b60405180910390f35b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610aab5750610aaa826121de565b5b9050919050565b600381565b606060018054610ac69061403d565b80601f0160208091040260200160405190810160405280929190818152602001828054610af29061403d565b8015610b3f5780601f10610b1457610100808354040283529160200191610b3f565b820191906000526020600020905b815481529060010190602001808311610b2257829003601f168201915b5050505050905090565b6000610b54826122c0565b610b93576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b8a906140e1565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610bd9826117b9565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610c4a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c4190614173565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610c6961232c565b73ffffffffffffffffffffffffffffffffffffffff161480610c985750610c9781610c9261232c565b612047565b5b610cd7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cce90614205565b60405180910390fd5b610ce18383612334565b505050565b610cee61232c565b73ffffffffffffffffffffffffffffffffffffffff16610d0c6119ab565b73ffffffffffffffffffffffffffffffffffffffff1614610d62576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d5990614271565b60405180910390fd5b61115c82829050610d71610e92565b610d7b91906142c0565b1115610dbc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610db390614362565b60405180910390fd5b606482829050601154610dcf91906142c0565b1115610e10576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e07906143ce565b60405180910390fd5b60005b82829050811015610e8d5760116000815480929190610e31906143ee565b9190505550610e7a838383818110610e4c57610e4b614437565b5b9050602002016020810190610e619190613eb2565b6001610e6b610e92565b610e7591906142c0565b6123ed565b8080610e85906143ee565b915050610e13565b505050565b6000600980549050905090565b610eb0610eaa61232c565b8261240b565b610eef576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ee6906144d8565b60405180910390fd5b610efa8383836124e9565b505050565b600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16610f43338484611711565b73ffffffffffffffffffffffffffffffffffffffff1614610f99576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f9090614544565b60405180910390fd5b601260009054906101000a900460ff16610fe8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fdf906145b0565b60405180910390fd5b61115c83610ff4610e92565b610ffe91906142c0565b111561103f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161103690614362565b60405180910390fd5b6103e883600f5461105091906142c0565b1115611091576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110889061461c565b60405180910390fd5b600383600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546110de91906142c0565b111561111f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611116906146ae565b60405180910390fd5b82666a94d74f43000061113291906146ce565b341015611174576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161116b90614774565b60405180910390fd5b82600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546111c391906142c0565b9250508190555060005b8381101561121d57600f60008154809291906111e8906143ee565b919050555061120a3360016111fb610e92565b61120591906142c0565b6123ed565b8080611215906143ee565b9150506111cd565b50505050565b606461115c6112329190614794565b81565b60006112408361186b565b8210611281576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112789061483a565b60405180910390fd5b600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b606481565b6112e761232c565b73ffffffffffffffffffffffffffffffffffffffff166113056119ab565b73ffffffffffffffffffffffffffffffffffffffff161461135b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161135290614271565b60405180910390fd5b6000471161139e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611395906148a6565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f193505050501580156113e4573d6000803e3d6000fd5b50565b61140283838360405180602001604052806000815250611d3a565b505050565b6103e881565b601260019054906101000a900460ff1661145c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161145390614912565b60405180910390fd5b61115c81611468610e92565b61147291906142c0565b11156114b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114aa90614362565b60405180910390fd5b606461115c6114c29190614794565b81601054600f546114d391906142c0565b6114dd91906142c0565b111561151e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115159061497e565b60405180910390fd5b6007811115611562576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161155990614a10565b60405180910390fd5b80668e1bc9bf04000061157591906146ce565b3410156115b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115ae90614774565b60405180910390fd5b60005b8181101561160a57601060008154809291906115d5906143ee565b91905055506115f73360016115e8610e92565b6115f291906142c0565b6123ed565b8080611602906143ee565b9150506115ba565b5050565b6000611618610e92565b8210611659576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161165090614aa2565b60405180910390fd5b6009828154811061166d5761166c614437565b5b90600052602060002001549050919050565b61168761232c565b73ffffffffffffffffffffffffffffffffffffffff166116a56119ab565b73ffffffffffffffffffffffffffffffffffffffff16146116fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116f290614271565b60405180910390fd5b8181600d919061170c929190613746565b505050565b6000806117677f680b772c0ec4675960b688c733903d940dd27ba2084c6a2e2d98c8b8e1d67390868660405160200161174c93929190614ac2565b60405160208183030381529060405280519060200120612745565b9050611773818461275f565b9150509392505050565b601260009054906101000a900460ff1681565b600781565b7f680b772c0ec4675960b688c733903d940dd27ba2084c6a2e2d98c8b8e1d6739081565b6000806003600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611862576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161185990614b6b565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156118dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118d390614bfd565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61192b61232c565b73ffffffffffffffffffffffffffffffffffffffff166119496119ab565b73ffffffffffffffffffffffffffffffffffffffff161461199f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161199690614271565b60405180910390fd5b6119a96000612786565b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6119dc61232c565b73ffffffffffffffffffffffffffffffffffffffff166119fa6119ab565b73ffffffffffffffffffffffffffffffffffffffff1614611a50576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a4790614271565b60405180910390fd5b8181600c9190611a61929190613746565b505050565b606060028054611a759061403d565b80601f0160208091040260200160405190810160405280929190818152602001828054611aa19061403d565b8015611aee5780601f10611ac357610100808354040283529160200191611aee565b820191906000526020600020905b815481529060010190602001808311611ad157829003601f168201915b5050505050905090565b60105481565b611b0661232c565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611b74576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b6b90614c69565b60405180910390fd5b8060066000611b8161232c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611c2e61232c565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611c73919061389d565b60405180910390a35050565b601260019054906101000a900460ff1681565b611c9a61232c565b73ffffffffffffffffffffffffffffffffffffffff16611cb86119ab565b73ffffffffffffffffffffffffffffffffffffffff1614611d0e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d0590614271565b60405180910390fd5b601260009054906101000a900460ff1615601260006101000a81548160ff021916908315150217905550565b611d4b611d4561232c565b8361240b565b611d8a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d81906144d8565b60405180910390fd5b611d968484848461284a565b50505050565b60115481565b600e6020528060005260406000206000915090505481565b6060611dc5826122c0565b611e04576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dfb90614cd5565b60405180910390fd5b600d611e0f836128a6565b604051602001611e20929190614dc5565b6040516020818303038152906040529050919050565b611e3e61232c565b73ffffffffffffffffffffffffffffffffffffffff16611e5c6119ab565b73ffffffffffffffffffffffffffffffffffffffff1614611eb2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ea990614271565b60405180910390fd5b80600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b668e1bc9bf04000081565b611f0961232c565b73ffffffffffffffffffffffffffffffffffffffff16611f276119ab565b73ffffffffffffffffffffffffffffffffffffffff1614611f7d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f7490614271565b60405180910390fd5b601260019054906101000a900460ff1615601260016101000a81548160ff021916908315150217905550565b600f5481565b61115c81565b6060600c8054611fc49061403d565b80601f0160208091040260200160405190810160405280929190818152602001828054611ff09061403d565b801561203d5780601f106120125761010080835404028352916020019161203d565b820191906000526020600020905b81548152906001019060200180831161202057829003601f168201915b5050505050905090565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6120e361232c565b73ffffffffffffffffffffffffffffffffffffffff166121016119ab565b73ffffffffffffffffffffffffffffffffffffffff1614612157576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161214e90614271565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156121c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121be90614e5b565b60405180910390fd5b6121d081612786565b50565b666a94d74f43000081565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806122a957507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806122b957506122b882612a07565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166003600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816005600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166123a7836117b9565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b612407828260405180602001604052806000815250612a71565b5050565b6000612416826122c0565b612455576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161244c90614eed565b60405180910390fd5b6000612460836117b9565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806124cf57508373ffffffffffffffffffffffffffffffffffffffff166124b784610b49565b73ffffffffffffffffffffffffffffffffffffffff16145b806124e057506124df8185612047565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16612509826117b9565b73ffffffffffffffffffffffffffffffffffffffff161461255f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161255690614f7f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156125cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125c690615011565b60405180910390fd5b6125da838383612acc565b6125e5600082612334565b6001600460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546126359190614794565b925050819055506001600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461268c91906142c0565b92505081905550816003600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000612758612752612be0565b83612ca3565b9050919050565b600080600061276e8585612cd6565b9150915061277b81612d59565b819250505092915050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6128558484846124e9565b61286184848484612f2e565b6128a0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612897906150a3565b60405180910390fd5b50505050565b606060008214156128ee576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612a02565b600082905060005b60008214612920578080612909906143ee565b915050600a8261291991906150f2565b91506128f6565b60008167ffffffffffffffff81111561293c5761293b613bd2565b5b6040519080825280601f01601f19166020018201604052801561296e5781602001600182028036833780820191505090505b5090505b600085146129fb576001826129879190614794565b9150600a856129969190615123565b60306129a291906142c0565b60f81b8183815181106129b8576129b7614437565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856129f491906150f2565b9450612972565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b612a7b83836130c5565b612a886000848484612f2e565b612ac7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612abe906150a3565b60405180910390fd5b505050565b612ad7838383613293565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612b1a57612b1581613298565b612b59565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614612b5857612b5783826132e1565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612b9c57612b978161344e565b612bdb565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614612bda57612bd9828261351f565b5b5b505050565b60007f0000000000000000000000000000000000000000000000000000000000000001461415612c32577f567da986f44c82e2d57fa29d33d8fa04a8cc3e1e26584b619de1818113b7e5c59050612ca0565b612c9d7f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f7ff5328aabe708e7c1630eb86546a96c4ba1785b226f9aabe1ff78ee29e19f83e17fc89efdaa54c0f20c7adf612882df0950f5a951637e0307cdcb4c672f298b8bc661359e565b90505b90565b60008282604051602001612cb89291906151c1565b60405160208183030381529060405280519060200120905092915050565b600080604183511415612d185760008060006020860151925060408601519150606086015160001a9050612d0c878285856135d8565b94509450505050612d52565b604083511415612d49576000806020850151915060408501519050612d3e8683836136e5565b935093505050612d52565b60006002915091505b9250929050565b60006004811115612d6d57612d6c6151f8565b5b816004811115612d8057612d7f6151f8565b5b1415612d8b57612f2b565b60016004811115612d9f57612d9e6151f8565b5b816004811115612db257612db16151f8565b5b1415612df3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612dea90615273565b60405180910390fd5b60026004811115612e0757612e066151f8565b5b816004811115612e1a57612e196151f8565b5b1415612e5b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e52906152df565b60405180910390fd5b60036004811115612e6f57612e6e6151f8565b5b816004811115612e8257612e816151f8565b5b1415612ec3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612eba90615371565b60405180910390fd5b600480811115612ed657612ed56151f8565b5b816004811115612ee957612ee86151f8565b5b1415612f2a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f2190615403565b60405180910390fd5b5b50565b6000612f4f8473ffffffffffffffffffffffffffffffffffffffff16613733565b156130b8578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612f7861232c565b8786866040518563ffffffff1660e01b8152600401612f9a9493929190615478565b602060405180830381600087803b158015612fb457600080fd5b505af1925050508015612fe557506040513d601f19601f82011682018060405250810190612fe291906154d9565b60015b613068573d8060008114613015576040519150601f19603f3d011682016040523d82523d6000602084013e61301a565b606091505b50600081511415613060576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613057906150a3565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506130bd565b600190505b949350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613135576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161312c90615552565b60405180910390fd5b61313e816122c0565b1561317e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613175906155be565b60405180910390fd5b61318a60008383612acc565b6001600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546131da91906142c0565b92505081905550816003600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b505050565b600980549050600a600083815260200190815260200160002081905550600981908060018154018082558091505060019003906000526020600020016000909190919091505550565b600060016132ee8461186b565b6132f89190614794565b90506000600860008481526020019081526020016000205490508181146133dd576000600760008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600760008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816008600083815260200190815260200160002081905550505b6008600084815260200190815260200160002060009055600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b600060016009805490506134629190614794565b90506000600a600084815260200190815260200160002054905060006009838154811061349257613491614437565b5b9060005260206000200154905080600983815481106134b4576134b3614437565b5b906000526020600020018190555081600a600083815260200190815260200160002081905550600a6000858152602001908152602001600020600090556009805480613503576135026155de565b5b6001900381819060005260206000200160009055905550505050565b600061352a8361186b565b905081600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806008600084815260200190815260200160002081905550505050565b600083838346306040516020016135b995949392919061560d565b6040516020818303038152906040528051906020012090509392505050565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a08360001c11156136135760006003915091506136dc565b601b8560ff161415801561362b5750601c8560ff1614155b1561363d5760006004915091506136dc565b600060018787878760405160008152602001604052604051613662949392919061567c565b6020604051602081039080840390855afa158015613684573d6000803e3d6000fd5b505050602060405103519050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156136d3576000600192509250506136dc565b80600092509250505b94509492505050565b6000806000807f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff85169150601b8560ff1c019050613725878288856135d8565b935093505050935093915050565b600080823b905060008111915050919050565b8280546137529061403d565b90600052602060002090601f01602090048101928261377457600085556137bb565b82601f1061378d57803560ff19168380011785556137bb565b828001600101855582156137bb579182015b828111156137ba57823582559160200191906001019061379f565b5b5090506137c891906137cc565b5090565b5b808211156137e55760008160009055506001016137cd565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b613832816137fd565b811461383d57600080fd5b50565b60008135905061384f81613829565b92915050565b60006020828403121561386b5761386a6137f3565b5b600061387984828501613840565b91505092915050565b60008115159050919050565b61389781613882565b82525050565b60006020820190506138b2600083018461388e565b92915050565b6000819050919050565b6138cb816138b8565b82525050565b60006020820190506138e660008301846138c2565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561392657808201518184015260208101905061390b565b83811115613935576000848401525b50505050565b6000601f19601f8301169050919050565b6000613957826138ec565b61396181856138f7565b9350613971818560208601613908565b61397a8161393b565b840191505092915050565b6000602082019050818103600083015261399f818461394c565b905092915050565b6139b0816138b8565b81146139bb57600080fd5b50565b6000813590506139cd816139a7565b92915050565b6000602082840312156139e9576139e86137f3565b5b60006139f7848285016139be565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000613a2b82613a00565b9050919050565b613a3b81613a20565b82525050565b6000602082019050613a566000830184613a32565b92915050565b613a6581613a20565b8114613a7057600080fd5b50565b600081359050613a8281613a5c565b92915050565b60008060408385031215613a9f57613a9e6137f3565b5b6000613aad85828601613a73565b9250506020613abe858286016139be565b9150509250929050565b600080fd5b600080fd5b600080fd5b60008083601f840112613aed57613aec613ac8565b5b8235905067ffffffffffffffff811115613b0a57613b09613acd565b5b602083019150836020820283011115613b2657613b25613ad2565b5b9250929050565b60008060208385031215613b4457613b436137f3565b5b600083013567ffffffffffffffff811115613b6257613b616137f8565b5b613b6e85828601613ad7565b92509250509250929050565b600080600060608486031215613b9357613b926137f3565b5b6000613ba186828701613a73565b9350506020613bb286828701613a73565b9250506040613bc3868287016139be565b9150509250925092565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b613c0a8261393b565b810181811067ffffffffffffffff82111715613c2957613c28613bd2565b5b80604052505050565b6000613c3c6137e9565b9050613c488282613c01565b919050565b600067ffffffffffffffff821115613c6857613c67613bd2565b5b613c718261393b565b9050602081019050919050565b82818337600083830152505050565b6000613ca0613c9b84613c4d565b613c32565b905082815260208101848484011115613cbc57613cbb613bcd565b5b613cc7848285613c7e565b509392505050565b600082601f830112613ce457613ce3613ac8565b5b8135613cf4848260208601613c8d565b91505092915050565b600080600060608486031215613d1657613d156137f3565b5b6000613d24868287016139be565b9350506020613d35868287016139be565b925050604084013567ffffffffffffffff811115613d5657613d556137f8565b5b613d6286828701613ccf565b9150509250925092565b60008083601f840112613d8257613d81613ac8565b5b8235905067ffffffffffffffff811115613d9f57613d9e613acd565b5b602083019150836001820283011115613dbb57613dba613ad2565b5b9250929050565b60008060208385031215613dd957613dd86137f3565b5b600083013567ffffffffffffffff811115613df757613df66137f8565b5b613e0385828601613d6c565b92509250509250929050565b600080600060608486031215613e2857613e276137f3565b5b6000613e3686828701613a73565b9350506020613e47868287016139be565b925050604084013567ffffffffffffffff811115613e6857613e676137f8565b5b613e7486828701613ccf565b9150509250925092565b6000819050919050565b613e9181613e7e565b82525050565b6000602082019050613eac6000830184613e88565b92915050565b600060208284031215613ec857613ec76137f3565b5b6000613ed684828501613a73565b91505092915050565b613ee881613882565b8114613ef357600080fd5b50565b600081359050613f0581613edf565b92915050565b60008060408385031215613f2257613f216137f3565b5b6000613f3085828601613a73565b9250506020613f4185828601613ef6565b9150509250929050565b60008060008060808587031215613f6557613f646137f3565b5b6000613f7387828801613a73565b9450506020613f8487828801613a73565b9350506040613f95878288016139be565b925050606085013567ffffffffffffffff811115613fb657613fb56137f8565b5b613fc287828801613ccf565b91505092959194509250565b60008060408385031215613fe557613fe46137f3565b5b6000613ff385828601613a73565b925050602061400485828601613a73565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061405557607f821691505b602082108114156140695761406861400e565b5b50919050565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b60006140cb602c836138f7565b91506140d68261406f565b604082019050919050565b600060208201905081810360008301526140fa816140be565b9050919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b600061415d6021836138f7565b915061416882614101565b604082019050919050565b6000602082019050818103600083015261418c81614150565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b60006141ef6038836138f7565b91506141fa82614193565b604082019050919050565b6000602082019050818103600083015261421e816141e2565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061425b6020836138f7565b915061426682614225565b602082019050919050565b6000602082019050818103600083015261428a8161424e565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006142cb826138b8565b91506142d6836138b8565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561430b5761430a614291565b5b828201905092915050565b7f45786365656420746f74616c206d6178206c696d697400000000000000000000600082015250565b600061434c6016836138f7565b915061435782614316565b602082019050919050565b6000602082019050818103600083015261437b8161433f565b9050919050565b7f4578636565642067696674206d6178206c696d69740000000000000000000000600082015250565b60006143b86015836138f7565b91506143c382614382565b602082019050919050565b600060208201905081810360008301526143e7816143ab565b9050919050565b60006143f9826138b8565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561442c5761442b614291565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b60006144c26031836138f7565b91506144cd82614466565b604082019050919050565b600060208201905081810360008301526144f1816144b5565b9050919050565b7f496e76616c6964207369676e6174757265000000000000000000000000000000600082015250565b600061452e6011836138f7565b9150614539826144f8565b602082019050919050565b6000602082019050818103600083015261455d81614521565b9050919050565b7f50726573616c657320697320636c6f7365640000000000000000000000000000600082015250565b600061459a6012836138f7565b91506145a582614564565b602082019050919050565b600060208201905081810360008301526145c98161458d565b9050919050565b7f4578636565642070726573616c6573206d6178206c696d697400000000000000600082015250565b60006146066019836138f7565b9150614611826145d0565b602082019050919050565b60006020820190508181036000830152614635816145f9565b9050919050565b7f4578636565642070726573616c6573206d6178207175616e746974792070657260008201527f206d696e74657200000000000000000000000000000000000000000000000000602082015250565b60006146986027836138f7565b91506146a38261463c565b604082019050919050565b600060208201905081810360008301526146c78161468b565b9050919050565b60006146d9826138b8565b91506146e4836138b8565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561471d5761471c614291565b5b828202905092915050565b7f496e73756666696369656e742045544800000000000000000000000000000000600082015250565b600061475e6010836138f7565b915061476982614728565b602082019050919050565b6000602082019050818103600083015261478d81614751565b9050919050565b600061479f826138b8565b91506147aa836138b8565b9250828210156147bd576147bc614291565b5b828203905092915050565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b6000614824602b836138f7565b915061482f826147c8565b604082019050919050565b6000602082019050818103600083015261485381614817565b9050919050565b7f4e6f20616d6f756e7420746f2077697468647261770000000000000000000000600082015250565b60006148906015836138f7565b915061489b8261485a565b602082019050919050565b600060208201905081810360008301526148bf81614883565b9050919050565b7f5075626c69632073616c6520697320636c6f7365640000000000000000000000600082015250565b60006148fc6015836138f7565b9150614907826148c6565b602082019050919050565b6000602082019050818103600083015261492b816148ef565b9050919050565b7f457863656564207075626c69632073616c65206d6178206c696d697400000000600082015250565b6000614968601c836138f7565b915061497382614932565b602082019050919050565b600060208201905081810360008301526149978161495b565b9050919050565b7f457863656564207075626c69632073616c6573206d6178207175616e7469747960008201527f20706572207472616e73616374696f6e00000000000000000000000000000000602082015250565b60006149fa6030836138f7565b9150614a058261499e565b604082019050919050565b60006020820190508181036000830152614a29816149ed565b9050919050565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b6000614a8c602c836138f7565b9150614a9782614a30565b604082019050919050565b60006020820190508181036000830152614abb81614a7f565b9050919050565b6000606082019050614ad76000830186613e88565b614ae46020830185613a32565b614af160408301846138c2565b949350505050565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b6000614b556029836138f7565b9150614b6082614af9565b604082019050919050565b60006020820190508181036000830152614b8481614b48565b9050919050565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b6000614be7602a836138f7565b9150614bf282614b8b565b604082019050919050565b60006020820190508181036000830152614c1681614bda565b9050919050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b6000614c536019836138f7565b9150614c5e82614c1d565b602082019050919050565b60006020820190508181036000830152614c8281614c46565b9050919050565b7f546f6b656e206e6f742065786973740000000000000000000000000000000000600082015250565b6000614cbf600f836138f7565b9150614cca82614c89565b602082019050919050565b60006020820190508181036000830152614cee81614cb2565b9050919050565b600081905092915050565b60008190508160005260206000209050919050565b60008154614d228161403d565b614d2c8186614cf5565b94506001821660008114614d475760018114614d5857614d8b565b60ff19831686528186019350614d8b565b614d6185614d00565b60005b83811015614d8357815481890152600182019150602081019050614d64565b838801955050505b50505092915050565b6000614d9f826138ec565b614da98185614cf5565b9350614db9818560208601613908565b80840191505092915050565b6000614dd18285614d15565b9150614ddd8284614d94565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000614e456026836138f7565b9150614e5082614de9565b604082019050919050565b60006020820190508181036000830152614e7481614e38565b9050919050565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b6000614ed7602c836138f7565b9150614ee282614e7b565b604082019050919050565b60006020820190508181036000830152614f0681614eca565b9050919050565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b6000614f696029836138f7565b9150614f7482614f0d565b604082019050919050565b60006020820190508181036000830152614f9881614f5c565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000614ffb6024836138f7565b915061500682614f9f565b604082019050919050565b6000602082019050818103600083015261502a81614fee565b9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b600061508d6032836138f7565b915061509882615031565b604082019050919050565b600060208201905081810360008301526150bc81615080565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006150fd826138b8565b9150615108836138b8565b925082615118576151176150c3565b5b828204905092915050565b600061512e826138b8565b9150615139836138b8565b925082615149576151486150c3565b5b828206905092915050565b7f1901000000000000000000000000000000000000000000000000000000000000600082015250565b600061518a600283614cf5565b915061519582615154565b600282019050919050565b6000819050919050565b6151bb6151b682613e7e565b6151a0565b82525050565b60006151cc8261517d565b91506151d882856151aa565b6020820191506151e882846151aa565b6020820191508190509392505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b7f45434453413a20696e76616c6964207369676e61747572650000000000000000600082015250565b600061525d6018836138f7565b915061526882615227565b602082019050919050565b6000602082019050818103600083015261528c81615250565b9050919050565b7f45434453413a20696e76616c6964207369676e6174757265206c656e67746800600082015250565b60006152c9601f836138f7565b91506152d482615293565b602082019050919050565b600060208201905081810360008301526152f8816152bc565b9050919050565b7f45434453413a20696e76616c6964207369676e6174757265202773272076616c60008201527f7565000000000000000000000000000000000000000000000000000000000000602082015250565b600061535b6022836138f7565b9150615366826152ff565b604082019050919050565b6000602082019050818103600083015261538a8161534e565b9050919050565b7f45434453413a20696e76616c6964207369676e6174757265202776272076616c60008201527f7565000000000000000000000000000000000000000000000000000000000000602082015250565b60006153ed6022836138f7565b91506153f882615391565b604082019050919050565b6000602082019050818103600083015261541c816153e0565b9050919050565b600081519050919050565b600082825260208201905092915050565b600061544a82615423565b615454818561542e565b9350615464818560208601613908565b61546d8161393b565b840191505092915050565b600060808201905061548d6000830187613a32565b61549a6020830186613a32565b6154a760408301856138c2565b81810360608301526154b9818461543f565b905095945050505050565b6000815190506154d381613829565b92915050565b6000602082840312156154ef576154ee6137f3565b5b60006154fd848285016154c4565b91505092915050565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b600061553c6020836138f7565b915061554782615506565b602082019050919050565b6000602082019050818103600083015261556b8161552f565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b60006155a8601c836138f7565b91506155b382615572565b602082019050919050565b600060208201905081810360008301526155d78161559b565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b600060a0820190506156226000830188613e88565b61562f6020830187613e88565b61563c6040830186613e88565b61564960608301856138c2565b6156566080830184613a32565b9695505050505050565b600060ff82169050919050565b61567681615660565b82525050565b60006080820190506156916000830187613e88565b61569e602083018661566d565b6156ab6040830185613e88565b6156b86060830184613e88565b9594505050505056fea26469706673582212208f1358ed850d42deb0296baa462d9b0e41082511257efd27d5ae344e3171387b64736f6c63430008090033

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.