ETH Price: $3,308.73 (+0.03%)
Gas: 17 Gwei

Token

Alchemist Order Genesis (AOG)
 

Overview

Max Total Supply

888 AOG

Holders

238

Total Transfers

-

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
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:
Alchemist

Compiler Version
v0.8.6+commit.11564f7e

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 12 : Alchemist.sol
// SPDX-License-Identifier: MIT
pragma solidity >=0.8.6;

import "@openzeppelin/contracts/token/ERC721/ERC721.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/cryptography/ECDSA.sol";

contract Alchemist is ERC721, Ownable { 

    using ECDSA for bytes32; 
    
    string internal baseTokenURI = 'https://us-central1-alchemist-order.cloudfunctions.net/api/asset/';

    uint public price = 0.08 ether;

    uint public maxSupply = 888;
    uint public totalSupply = 0;

    uint public maxTx = 8;
    uint public maxAssetsPresale = 8;

    bool public mintOpen = false;
    bool public presaleOpen = true;
    
    mapping(address => uint) private presaleMints;

    address private _signer = 0x9b208A7B07A75419C28a8B8510c2ce07C3B4Be5B;
    
    constructor() ERC721("Alchemist Order Genesis", "AOG") {}

    function toggleMint() external onlyOwner {
        mintOpen = !mintOpen;
    }

    function setSigner(address newSigner) public onlyOwner {
        _signer = newSigner;
    }

    function togglePresale() external onlyOwner {
        presaleOpen = !presaleOpen;
    }
    
    function setPrice(uint newPrice) external onlyOwner {
        price = newPrice;
    }
    
    function setBaseTokenURI(string calldata _uri) external onlyOwner {
        baseTokenURI = _uri;
    }
    
    function setMaxSupply(uint newSupply) external onlyOwner {
        maxSupply = newSupply;
    }
    
    function setMaxTx(uint newMax) external onlyOwner {
        maxTx = newMax;
    }

    function setMaxAssetsPresale(uint newMax) external onlyOwner {
        maxAssetsPresale = newMax;
    }

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

    function giveaway(address to, uint qty) external onlyOwner {
        _mintTo(to, qty);
    }

    function _buyPresale(uint qty, bytes calldata signature_) external payable {
        require(presaleOpen, "presale closed");
        require(isInWhitelist(signature_), "address not in whitelist");
        require(presaleMints[_msgSender()] + qty <= maxAssetsPresale, "max presale mints reached");
        presaleMints[_msgSender()] += qty;
        _buy(qty);
    }

    function buy(uint qty) external payable {
        require(mintOpen, "store closed");
        _buy(qty);
    }

    function _buy(uint qty) internal {
        require(qty <= maxTx && qty > 0, "TRANSACTION: qty of mints not alowed");
        require(msg.value >= price * qty, "PAYMENT: invalid value");
        require(qty + totalSupply <= maxSupply, "Sold out");
        _mintTo(_msgSender(), qty);
    }

    function _mintTo(address to, uint qty) internal {
        require(qty + totalSupply <= maxSupply, "SUPPLY: Value exceeds totalSupply");
        for(uint i = 0; i < qty; i++){
            totalSupply++;
            _safeMint(to, totalSupply);
        }
    }

    function isInWhitelist(bytes calldata signature_) private view returns (bool) {
        return ECDSA.recover(ECDSA.toEthSignedMessageHash(abi.encodePacked(_msgSender())), signature_) == _signer;
    }
    
    function withdraw() external onlyOwner {
        payable(_msgSender()).transfer(address(this).balance);
    }
    
}

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

pragma solidity ^0.8.0;

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

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

pragma solidity ^0.8.0;

import "./IERC165.sol";

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

File 4 of 12 : ECDSA.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/cryptography/ECDSA.sol)

pragma solidity ^0.8.0;

import "../Strings.sol";

/**
 * @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 Message, created from `s`. 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(bytes memory s) internal pure returns (bytes32) {
        return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n", Strings.toString(s.length), s));
    }

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

import "../IERC721.sol";

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

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

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

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

pragma solidity ^0.8.0;

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

File 10 of 12 : IERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

File 11 of 12 : ERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/ERC721.sol)

pragma solidity ^0.8.0;

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

Settings
{
  "remappings": [],
  "optimizer": {
    "enabled": false,
    "runs": 200
  },
  "evmVersion": "berlin",
  "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":[{"internalType":"uint256","name":"qty","type":"uint256"},{"internalType":"bytes","name":"signature_","type":"bytes"}],"name":"_buyPresale","outputs":[],"stateMutability":"payable","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":[{"internalType":"uint256","name":"qty","type":"uint256"}],"name":"buy","outputs":[],"stateMutability":"payable","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":"to","type":"address"},{"internalType":"uint256","name":"qty","type":"uint256"}],"name":"giveaway","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxAssetsPresale","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mintOpen","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":[],"name":"presaleOpen","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","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":"setBaseTokenURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newMax","type":"uint256"}],"name":"setMaxAssetsPresale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newSupply","type":"uint256"}],"name":"setMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newMax","type":"uint256"}],"name":"setMaxTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newPrice","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newSigner","type":"address"}],"name":"setSigner","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":"toggleMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"togglePresale","outputs":[],"stateMutability":"nonpayable","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"}]

608060405260405180608001604052806041815260200162004c2f60419139600790805190602001906200003592919062000284565b5067011c37937e0800006008556103786009556000600a556008600b556008600c556000600d60006101000a81548160ff0219169083151502179055506001600d60016101000a81548160ff021916908315150217905550739b208a7b07a75419c28a8b8510c2ce07c3b4be5b600f60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550348015620000ef57600080fd5b506040518060400160405280601781526020017f416c6368656d697374204f726465722047656e657369730000000000000000008152506040518060400160405280600381526020017f414f47000000000000000000000000000000000000000000000000000000000081525081600090805190602001906200017492919062000284565b5080600190805190602001906200018d92919062000284565b505050620001b0620001a4620001b660201b60201c565b620001be60201b60201c565b62000399565b600033905090565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620002929062000334565b90600052602060002090601f016020900481019282620002b6576000855562000302565b82601f10620002d157805160ff191683800117855562000302565b8280016001018555821562000302579182015b8281111562000301578251825591602001919060010190620002e4565b5b50905062000311919062000315565b5090565b5b808211156200033057600081600090555060010162000316565b5090565b600060028204905060018216806200034d57607f821691505b602082108114156200036457620003636200036a565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b61488680620003a96000396000f3fe6080604052600436106102045760003560e01c806370a0823111610118578063b88d4fde116100a0578063d3dd5fe01161006f578063d3dd5fe01461070a578063d5abeb0114610721578063d96a094a1461074c578063e985e9c514610768578063f2fde38b146107a557610204565b8063b88d4fde14610650578063bc33718214610679578063bee6348a146106a2578063c87b56dd146106cd57610204565b806391b7f5ed116100e757806391b7f5ed1461057f57806395d89b41146105a8578063a035b1fe146105d3578063a22cb465146105fe578063b019ab011461062757610204565b806370a08231146104d5578063715018a6146105125780637437681e146105295780638da5cb5b1461055457610204565b806323b872dd1161019b5780633ccfd60b1161016a5780633ccfd60b1461040657806342842e0e1461041d5780636352211e146104465780636c19e783146104835780636f8b44b0146104ac57610204565b806323b872dd1461037257806324bbd0491461039b57806330176e13146103c657806334393743146103ef57610204565b8063095ea7b3116101d7578063095ea7b3146102d757806312f3422c1461030057806318160ddd1461032b5780631fd933771461035657610204565b806301ffc9a714610209578063050225ea1461024657806306fdde031461026f578063081812fc1461029a575b600080fd5b34801561021557600080fd5b50610230600480360381019061022b91906130bf565b6107ce565b60405161023d91906137f5565b60405180910390f35b34801561025257600080fd5b5061026d6004803603810190610268919061307f565b6108b0565b005b34801561027b57600080fd5b5061028461093a565b6040516102919190613855565b60405180910390f35b3480156102a657600080fd5b506102c160048036038101906102bc9190613166565b6109cc565b6040516102ce919061378e565b60405180910390f35b3480156102e357600080fd5b506102fe60048036038101906102f9919061307f565b610a51565b005b34801561030c57600080fd5b50610315610b69565b6040516103229190613bf7565b60405180910390f35b34801561033757600080fd5b50610340610b6f565b60405161034d9190613bf7565b60405180910390f35b610370600480360381019061036b9190613193565b610b75565b005b34801561037e57600080fd5b5061039960048036038101906103949190612f69565b610d0e565b005b3480156103a757600080fd5b506103b0610d6e565b6040516103bd91906137f5565b60405180910390f35b3480156103d257600080fd5b506103ed60048036038101906103e89190613119565b610d81565b005b3480156103fb57600080fd5b50610404610e13565b005b34801561041257600080fd5b5061041b610ebb565b005b34801561042957600080fd5b50610444600480360381019061043f9190612f69565b610f87565b005b34801561045257600080fd5b5061046d60048036038101906104689190613166565b610fa7565b60405161047a919061378e565b60405180910390f35b34801561048f57600080fd5b506104aa60048036038101906104a59190612efc565b611059565b005b3480156104b857600080fd5b506104d360048036038101906104ce9190613166565b611119565b005b3480156104e157600080fd5b506104fc60048036038101906104f79190612efc565b61119f565b6040516105099190613bf7565b60405180910390f35b34801561051e57600080fd5b50610527611257565b005b34801561053557600080fd5b5061053e6112df565b60405161054b9190613bf7565b60405180910390f35b34801561056057600080fd5b506105696112e5565b604051610576919061378e565b60405180910390f35b34801561058b57600080fd5b506105a660048036038101906105a19190613166565b61130f565b005b3480156105b457600080fd5b506105bd611395565b6040516105ca9190613855565b60405180910390f35b3480156105df57600080fd5b506105e8611427565b6040516105f59190613bf7565b60405180910390f35b34801561060a57600080fd5b506106256004803603810190610620919061303f565b61142d565b005b34801561063357600080fd5b5061064e60048036038101906106499190613166565b611443565b005b34801561065c57600080fd5b5061067760048036038101906106729190612fbc565b6114c9565b005b34801561068557600080fd5b506106a0600480360381019061069b9190613166565b61152b565b005b3480156106ae57600080fd5b506106b76115b1565b6040516106c491906137f5565b60405180910390f35b3480156106d957600080fd5b506106f460048036038101906106ef9190613166565b6115c4565b6040516107019190613855565b60405180910390f35b34801561071657600080fd5b5061071f61166b565b005b34801561072d57600080fd5b50610736611713565b6040516107439190613bf7565b60405180910390f35b61076660048036038101906107619190613166565b611719565b005b34801561077457600080fd5b5061078f600480360381019061078a9190612f29565b611774565b60405161079c91906137f5565b60405180910390f35b3480156107b157600080fd5b506107cc60048036038101906107c79190612efc565b611808565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061089957507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108a957506108a882611900565b5b9050919050565b6108b861196a565b73ffffffffffffffffffffffffffffffffffffffff166108d66112e5565b73ffffffffffffffffffffffffffffffffffffffff161461092c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161092390613b17565b60405180910390fd5b6109368282611972565b5050565b60606000805461094990613e98565b80601f016020809104026020016040519081016040528092919081815260200182805461097590613e98565b80156109c25780601f10610997576101008083540402835291602001916109c2565b820191906000526020600020905b8154815290600101906020018083116109a557829003601f168201915b5050505050905090565b60006109d782611a0b565b610a16576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a0d90613af7565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610a5c82610fa7565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610acd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ac490613b77565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610aec61196a565b73ffffffffffffffffffffffffffffffffffffffff161480610b1b5750610b1a81610b1561196a565b611774565b5b610b5a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b5190613a37565b60405180910390fd5b610b648383611a77565b505050565b600c5481565b600a5481565b600d60019054906101000a900460ff16610bc4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bbb90613937565b60405180910390fd5b610bce8282611b30565b610c0d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c0490613ad7565b60405180910390fd5b600c5483600e6000610c1d61196a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610c629190613cb6565b1115610ca3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c9a90613897565b60405180910390fd5b82600e6000610cb061196a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610cf99190613cb6565b92505081905550610d0983611c06565b505050565b610d1f610d1961196a565b82611d0d565b610d5e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d5590613bb7565b60405180910390fd5b610d69838383611deb565b505050565b600d60009054906101000a900460ff1681565b610d8961196a565b73ffffffffffffffffffffffffffffffffffffffff16610da76112e5565b73ffffffffffffffffffffffffffffffffffffffff1614610dfd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610df490613b17565b60405180910390fd5b818160079190610e0e929190612cd4565b505050565b610e1b61196a565b73ffffffffffffffffffffffffffffffffffffffff16610e396112e5565b73ffffffffffffffffffffffffffffffffffffffff1614610e8f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e8690613b17565b60405180910390fd5b600d60019054906101000a900460ff1615600d60016101000a81548160ff021916908315150217905550565b610ec361196a565b73ffffffffffffffffffffffffffffffffffffffff16610ee16112e5565b73ffffffffffffffffffffffffffffffffffffffff1614610f37576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f2e90613b17565b60405180910390fd5b610f3f61196a565b73ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015610f84573d6000803e3d6000fd5b50565b610fa2838383604051806020016040528060008152506114c9565b505050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611050576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161104790613a77565b60405180910390fd5b80915050919050565b61106161196a565b73ffffffffffffffffffffffffffffffffffffffff1661107f6112e5565b73ffffffffffffffffffffffffffffffffffffffff16146110d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110cc90613b17565b60405180910390fd5b80600f60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b61112161196a565b73ffffffffffffffffffffffffffffffffffffffff1661113f6112e5565b73ffffffffffffffffffffffffffffffffffffffff1614611195576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161118c90613b17565b60405180910390fd5b8060098190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611210576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161120790613a57565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61125f61196a565b73ffffffffffffffffffffffffffffffffffffffff1661127d6112e5565b73ffffffffffffffffffffffffffffffffffffffff16146112d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112ca90613b17565b60405180910390fd5b6112dd6000612047565b565b600b5481565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b61131761196a565b73ffffffffffffffffffffffffffffffffffffffff166113356112e5565b73ffffffffffffffffffffffffffffffffffffffff161461138b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161138290613b17565b60405180910390fd5b8060088190555050565b6060600180546113a490613e98565b80601f01602080910402602001604051908101604052809291908181526020018280546113d090613e98565b801561141d5780601f106113f25761010080835404028352916020019161141d565b820191906000526020600020905b81548152906001019060200180831161140057829003601f168201915b5050505050905090565b60085481565b61143f61143861196a565b838361210d565b5050565b61144b61196a565b73ffffffffffffffffffffffffffffffffffffffff166114696112e5565b73ffffffffffffffffffffffffffffffffffffffff16146114bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114b690613b17565b60405180910390fd5b80600c8190555050565b6114da6114d461196a565b83611d0d565b611519576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161151090613bb7565b60405180910390fd5b6115258484848461227a565b50505050565b61153361196a565b73ffffffffffffffffffffffffffffffffffffffff166115516112e5565b73ffffffffffffffffffffffffffffffffffffffff16146115a7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161159e90613b17565b60405180910390fd5b80600b8190555050565b600d60019054906101000a900460ff1681565b60606115cf82611a0b565b61160e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161160590613b57565b60405180910390fd5b60006116186122d6565b905060008151116116385760405180602001604052806000815250611663565b8061164284612368565b60405160200161165392919061373b565b6040516020818303038152906040525b915050919050565b61167361196a565b73ffffffffffffffffffffffffffffffffffffffff166116916112e5565b73ffffffffffffffffffffffffffffffffffffffff16146116e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116de90613b17565b60405180910390fd5b600d60009054906101000a900460ff1615600d60006101000a81548160ff021916908315150217905550565b60095481565b600d60009054906101000a900460ff16611768576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161175f90613a17565b60405180910390fd5b61177181611c06565b50565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61181061196a565b73ffffffffffffffffffffffffffffffffffffffff1661182e6112e5565b73ffffffffffffffffffffffffffffffffffffffff1614611884576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161187b90613b17565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156118f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118eb906138f7565b60405180910390fd5b6118fd81612047565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b600954600a54826119839190613cb6565b11156119c4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119bb90613b97565b60405180910390fd5b60005b81811015611a0657600a60008154809291906119e290613efb565b91905055506119f383600a546124c9565b80806119fe90613efb565b9150506119c7565b505050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611aea83610fa7565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16611be7611b9d611b7961196a565b604051602001611b899190613720565b6040516020818303038152906040526124e7565b85858080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f82011690508083019250505050505050612522565b73ffffffffffffffffffffffffffffffffffffffff1614905092915050565b600b548111158015611c185750600081115b611c57576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c4e90613957565b60405180910390fd5b80600854611c659190613d3d565b341015611ca7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c9e90613977565b60405180910390fd5b600954600a5482611cb89190613cb6565b1115611cf9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cf090613bd7565b60405180910390fd5b611d0a611d0461196a565b82611972565b50565b6000611d1882611a0b565b611d57576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d4e906139f7565b60405180910390fd5b6000611d6283610fa7565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611dd157508373ffffffffffffffffffffffffffffffffffffffff16611db9846109cc565b73ffffffffffffffffffffffffffffffffffffffff16145b80611de25750611de18185611774565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611e0b82610fa7565b73ffffffffffffffffffffffffffffffffffffffff1614611e61576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e5890613b37565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611ed1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ec890613997565b60405180910390fd5b611edc838383612549565b611ee7600082611a77565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611f379190613d97565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611f8e9190613cb6565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561217c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612173906139b7565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161226d91906137f5565b60405180910390a3505050565b612285848484611deb565b6122918484848461254e565b6122d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122c7906138d7565b60405180910390fd5b50505050565b6060600780546122e590613e98565b80601f016020809104026020016040519081016040528092919081815260200182805461231190613e98565b801561235e5780601f106123335761010080835404028352916020019161235e565b820191906000526020600020905b81548152906001019060200180831161234157829003601f168201915b5050505050905090565b606060008214156123b0576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506124c4565b600082905060005b600082146123e25780806123cb90613efb565b915050600a826123db9190613d0c565b91506123b8565b60008167ffffffffffffffff8111156123fe576123fd614084565b5b6040519080825280601f01601f1916602001820160405280156124305781602001600182028036833780820191505090505b5090505b600085146124bd576001826124499190613d97565b9150600a856124589190613f68565b60306124649190613cb6565b60f81b81838151811061247a57612479614055565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856124b69190613d0c565b9450612434565b8093505050505b919050565b6124e38282604051806020016040528060008152506126e5565b5050565b60006124f38251612368565b8260405160200161250592919061375f565b604051602081830303815290604052805190602001209050919050565b60008060006125318585612740565b9150915061253e816127c3565b819250505092915050565b505050565b600061256f8473ffffffffffffffffffffffffffffffffffffffff16612998565b156126d8578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261259861196a565b8786866040518563ffffffff1660e01b81526004016125ba94939291906137a9565b602060405180830381600087803b1580156125d457600080fd5b505af192505050801561260557506040513d601f19601f8201168201806040525081019061260291906130ec565b60015b612688573d8060008114612635576040519150601f19603f3d011682016040523d82523d6000602084013e61263a565b606091505b50600081511415612680576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612677906138d7565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506126dd565b600190505b949350505050565b6126ef83836129ab565b6126fc600084848461254e565b61273b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612732906138d7565b60405180910390fd5b505050565b6000806041835114156127825760008060006020860151925060408601519150606086015160001a905061277687828585612b79565b945094505050506127bc565b6040835114156127b35760008060208501519150604085015190506127a8868383612c86565b9350935050506127bc565b60006002915091505b9250929050565b600060048111156127d7576127d6613ff7565b5b8160048111156127ea576127e9613ff7565b5b14156127f557612995565b6001600481111561280957612808613ff7565b5b81600481111561281c5761281b613ff7565b5b141561285d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161285490613877565b60405180910390fd5b6002600481111561287157612870613ff7565b5b81600481111561288457612883613ff7565b5b14156128c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128bc906138b7565b60405180910390fd5b600360048111156128d9576128d8613ff7565b5b8160048111156128ec576128eb613ff7565b5b141561292d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612924906139d7565b60405180910390fd5b6004808111156129405761293f613ff7565b5b81600481111561295357612952613ff7565b5b1415612994576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161298b90613a97565b60405180910390fd5b5b50565b600080823b905060008111915050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612a1b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a1290613ab7565b60405180910390fd5b612a2481611a0b565b15612a64576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a5b90613917565b60405180910390fd5b612a7060008383612549565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612ac09190613cb6565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a08360001c1115612bb4576000600391509150612c7d565b601b8560ff1614158015612bcc5750601c8560ff1614155b15612bde576000600491509150612c7d565b600060018787878760405160008152602001604052604051612c039493929190613810565b6020604051602081039080840390855afa158015612c25573d6000803e3d6000fd5b505050602060405103519050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612c7457600060019250925050612c7d565b80600092509250505b94509492505050565b6000806000807f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff85169150601b8560ff1c019050612cc687828885612b79565b935093505050935093915050565b828054612ce090613e98565b90600052602060002090601f016020900481019282612d025760008555612d49565b82601f10612d1b57803560ff1916838001178555612d49565b82800160010185558215612d49579182015b82811115612d48578235825591602001919060010190612d2d565b5b509050612d569190612d5a565b5090565b5b80821115612d73576000816000905550600101612d5b565b5090565b6000612d8a612d8584613c37565b613c12565b905082815260208101848484011115612da657612da56140c2565b5b612db1848285613e56565b509392505050565b600081359050612dc8816147f4565b92915050565b600081359050612ddd8161480b565b92915050565b600081359050612df281614822565b92915050565b600081519050612e0781614822565b92915050565b60008083601f840112612e2357612e226140b8565b5b8235905067ffffffffffffffff811115612e4057612e3f6140b3565b5b602083019150836001820283011115612e5c57612e5b6140bd565b5b9250929050565b600082601f830112612e7857612e776140b8565b5b8135612e88848260208601612d77565b91505092915050565b60008083601f840112612ea757612ea66140b8565b5b8235905067ffffffffffffffff811115612ec457612ec36140b3565b5b602083019150836001820283011115612ee057612edf6140bd565b5b9250929050565b600081359050612ef681614839565b92915050565b600060208284031215612f1257612f116140cc565b5b6000612f2084828501612db9565b91505092915050565b60008060408385031215612f4057612f3f6140cc565b5b6000612f4e85828601612db9565b9250506020612f5f85828601612db9565b9150509250929050565b600080600060608486031215612f8257612f816140cc565b5b6000612f9086828701612db9565b9350506020612fa186828701612db9565b9250506040612fb286828701612ee7565b9150509250925092565b60008060008060808587031215612fd657612fd56140cc565b5b6000612fe487828801612db9565b9450506020612ff587828801612db9565b935050604061300687828801612ee7565b925050606085013567ffffffffffffffff811115613027576130266140c7565b5b61303387828801612e63565b91505092959194509250565b60008060408385031215613056576130556140cc565b5b600061306485828601612db9565b925050602061307585828601612dce565b9150509250929050565b60008060408385031215613096576130956140cc565b5b60006130a485828601612db9565b92505060206130b585828601612ee7565b9150509250929050565b6000602082840312156130d5576130d46140cc565b5b60006130e384828501612de3565b91505092915050565b600060208284031215613102576131016140cc565b5b600061311084828501612df8565b91505092915050565b600080602083850312156131305761312f6140cc565b5b600083013567ffffffffffffffff81111561314e5761314d6140c7565b5b61315a85828601612e91565b92509250509250929050565b60006020828403121561317c5761317b6140cc565b5b600061318a84828501612ee7565b91505092915050565b6000806000604084860312156131ac576131ab6140cc565b5b60006131ba86828701612ee7565b935050602084013567ffffffffffffffff8111156131db576131da6140c7565b5b6131e786828701612e0d565b92509250509250925092565b6131fc81613dcb565b82525050565b61321361320e82613dcb565b613f44565b82525050565b61322281613ddd565b82525050565b61323181613de9565b82525050565b600061324282613c68565b61324c8185613c7e565b935061325c818560208601613e65565b613265816140d1565b840191505092915050565b600061327b82613c68565b6132858185613c8f565b9350613295818560208601613e65565b80840191505092915050565b60006132ac82613c73565b6132b68185613c9a565b93506132c6818560208601613e65565b6132cf816140d1565b840191505092915050565b60006132e582613c73565b6132ef8185613cab565b93506132ff818560208601613e65565b80840191505092915050565b6000613318601883613c9a565b9150613323826140ef565b602082019050919050565b600061333b601983613c9a565b915061334682614118565b602082019050919050565b600061335e601f83613c9a565b915061336982614141565b602082019050919050565b6000613381603283613c9a565b915061338c8261416a565b604082019050919050565b60006133a4602683613c9a565b91506133af826141b9565b604082019050919050565b60006133c7601c83613c9a565b91506133d282614208565b602082019050919050565b60006133ea600e83613c9a565b91506133f582614231565b602082019050919050565b600061340d602483613c9a565b91506134188261425a565b604082019050919050565b6000613430601683613c9a565b915061343b826142a9565b602082019050919050565b6000613453602483613c9a565b915061345e826142d2565b604082019050919050565b6000613476601983613c9a565b915061348182614321565b602082019050919050565b6000613499602283613c9a565b91506134a48261434a565b604082019050919050565b60006134bc602c83613c9a565b91506134c782614399565b604082019050919050565b60006134df600c83613c9a565b91506134ea826143e8565b602082019050919050565b6000613502603883613c9a565b915061350d82614411565b604082019050919050565b6000613525602a83613c9a565b915061353082614460565b604082019050919050565b6000613548602983613c9a565b9150613553826144af565b604082019050919050565b600061356b602283613c9a565b9150613576826144fe565b604082019050919050565b600061358e602083613c9a565b91506135998261454d565b602082019050919050565b60006135b1601883613c9a565b91506135bc82614576565b602082019050919050565b60006135d4602c83613c9a565b91506135df8261459f565b604082019050919050565b60006135f7602083613c9a565b9150613602826145ee565b602082019050919050565b600061361a601a83613cab565b915061362582614617565b601a82019050919050565b600061363d602983613c9a565b915061364882614640565b604082019050919050565b6000613660602f83613c9a565b915061366b8261468f565b604082019050919050565b6000613683602183613c9a565b915061368e826146de565b604082019050919050565b60006136a6602183613c9a565b91506136b18261472d565b604082019050919050565b60006136c9603183613c9a565b91506136d48261477c565b604082019050919050565b60006136ec600883613c9a565b91506136f7826147cb565b602082019050919050565b61370b81613e3f565b82525050565b61371a81613e49565b82525050565b600061372c8284613202565b60148201915081905092915050565b600061374782856132da565b915061375382846132da565b91508190509392505050565b600061376a8261360d565b915061377682856132da565b91506137828284613270565b91508190509392505050565b60006020820190506137a360008301846131f3565b92915050565b60006080820190506137be60008301876131f3565b6137cb60208301866131f3565b6137d86040830185613702565b81810360608301526137ea8184613237565b905095945050505050565b600060208201905061380a6000830184613219565b92915050565b60006080820190506138256000830187613228565b6138326020830186613711565b61383f6040830185613228565b61384c6060830184613228565b95945050505050565b6000602082019050818103600083015261386f81846132a1565b905092915050565b600060208201905081810360008301526138908161330b565b9050919050565b600060208201905081810360008301526138b08161332e565b9050919050565b600060208201905081810360008301526138d081613351565b9050919050565b600060208201905081810360008301526138f081613374565b9050919050565b6000602082019050818103600083015261391081613397565b9050919050565b60006020820190508181036000830152613930816133ba565b9050919050565b60006020820190508181036000830152613950816133dd565b9050919050565b6000602082019050818103600083015261397081613400565b9050919050565b6000602082019050818103600083015261399081613423565b9050919050565b600060208201905081810360008301526139b081613446565b9050919050565b600060208201905081810360008301526139d081613469565b9050919050565b600060208201905081810360008301526139f08161348c565b9050919050565b60006020820190508181036000830152613a10816134af565b9050919050565b60006020820190508181036000830152613a30816134d2565b9050919050565b60006020820190508181036000830152613a50816134f5565b9050919050565b60006020820190508181036000830152613a7081613518565b9050919050565b60006020820190508181036000830152613a908161353b565b9050919050565b60006020820190508181036000830152613ab08161355e565b9050919050565b60006020820190508181036000830152613ad081613581565b9050919050565b60006020820190508181036000830152613af0816135a4565b9050919050565b60006020820190508181036000830152613b10816135c7565b9050919050565b60006020820190508181036000830152613b30816135ea565b9050919050565b60006020820190508181036000830152613b5081613630565b9050919050565b60006020820190508181036000830152613b7081613653565b9050919050565b60006020820190508181036000830152613b9081613676565b9050919050565b60006020820190508181036000830152613bb081613699565b9050919050565b60006020820190508181036000830152613bd0816136bc565b9050919050565b60006020820190508181036000830152613bf0816136df565b9050919050565b6000602082019050613c0c6000830184613702565b92915050565b6000613c1c613c2d565b9050613c288282613eca565b919050565b6000604051905090565b600067ffffffffffffffff821115613c5257613c51614084565b5b613c5b826140d1565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000613cc182613e3f565b9150613ccc83613e3f565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613d0157613d00613f99565b5b828201905092915050565b6000613d1782613e3f565b9150613d2283613e3f565b925082613d3257613d31613fc8565b5b828204905092915050565b6000613d4882613e3f565b9150613d5383613e3f565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613d8c57613d8b613f99565b5b828202905092915050565b6000613da282613e3f565b9150613dad83613e3f565b925082821015613dc057613dbf613f99565b5b828203905092915050565b6000613dd682613e1f565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b82818337600083830152505050565b60005b83811015613e83578082015181840152602081019050613e68565b83811115613e92576000848401525b50505050565b60006002820490506001821680613eb057607f821691505b60208210811415613ec457613ec3614026565b5b50919050565b613ed3826140d1565b810181811067ffffffffffffffff82111715613ef257613ef1614084565b5b80604052505050565b6000613f0682613e3f565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613f3957613f38613f99565b5b600182019050919050565b6000613f4f82613f56565b9050919050565b6000613f61826140e2565b9050919050565b6000613f7382613e3f565b9150613f7e83613e3f565b925082613f8e57613f8d613fc8565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f45434453413a20696e76616c6964207369676e61747572650000000000000000600082015250565b7f6d61782070726573616c65206d696e7473207265616368656400000000000000600082015250565b7f45434453413a20696e76616c6964207369676e6174757265206c656e67746800600082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f70726573616c6520636c6f736564000000000000000000000000000000000000600082015250565b7f5452414e53414354494f4e3a20717479206f66206d696e7473206e6f7420616c60008201527f6f77656400000000000000000000000000000000000000000000000000000000602082015250565b7f5041594d454e543a20696e76616c69642076616c756500000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f45434453413a20696e76616c6964207369676e6174757265202773272076616c60008201527f7565000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f73746f726520636c6f7365640000000000000000000000000000000000000000600082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f45434453413a20696e76616c6964207369676e6174757265202776272076616c60008201527f7565000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f61646472657373206e6f7420696e2077686974656c6973740000000000000000600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f19457468657265756d205369676e6564204d6573736167653a0a000000000000600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f535550504c593a2056616c7565206578636565647320746f74616c537570706c60008201527f7900000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f536f6c64206f7574000000000000000000000000000000000000000000000000600082015250565b6147fd81613dcb565b811461480857600080fd5b50565b61481481613ddd565b811461481f57600080fd5b50565b61482b81613df3565b811461483657600080fd5b50565b61484281613e3f565b811461484d57600080fd5b5056fea264697066735822122065575200c50d0010a9606aa96a7c45b52d52dcd23081e08ea9cf336644cabfad64736f6c6343000806003368747470733a2f2f75732d63656e7472616c312d616c6368656d6973742d6f726465722e636c6f756466756e6374696f6e732e6e65742f6170692f61737365742f

Deployed Bytecode

0x6080604052600436106102045760003560e01c806370a0823111610118578063b88d4fde116100a0578063d3dd5fe01161006f578063d3dd5fe01461070a578063d5abeb0114610721578063d96a094a1461074c578063e985e9c514610768578063f2fde38b146107a557610204565b8063b88d4fde14610650578063bc33718214610679578063bee6348a146106a2578063c87b56dd146106cd57610204565b806391b7f5ed116100e757806391b7f5ed1461057f57806395d89b41146105a8578063a035b1fe146105d3578063a22cb465146105fe578063b019ab011461062757610204565b806370a08231146104d5578063715018a6146105125780637437681e146105295780638da5cb5b1461055457610204565b806323b872dd1161019b5780633ccfd60b1161016a5780633ccfd60b1461040657806342842e0e1461041d5780636352211e146104465780636c19e783146104835780636f8b44b0146104ac57610204565b806323b872dd1461037257806324bbd0491461039b57806330176e13146103c657806334393743146103ef57610204565b8063095ea7b3116101d7578063095ea7b3146102d757806312f3422c1461030057806318160ddd1461032b5780631fd933771461035657610204565b806301ffc9a714610209578063050225ea1461024657806306fdde031461026f578063081812fc1461029a575b600080fd5b34801561021557600080fd5b50610230600480360381019061022b91906130bf565b6107ce565b60405161023d91906137f5565b60405180910390f35b34801561025257600080fd5b5061026d6004803603810190610268919061307f565b6108b0565b005b34801561027b57600080fd5b5061028461093a565b6040516102919190613855565b60405180910390f35b3480156102a657600080fd5b506102c160048036038101906102bc9190613166565b6109cc565b6040516102ce919061378e565b60405180910390f35b3480156102e357600080fd5b506102fe60048036038101906102f9919061307f565b610a51565b005b34801561030c57600080fd5b50610315610b69565b6040516103229190613bf7565b60405180910390f35b34801561033757600080fd5b50610340610b6f565b60405161034d9190613bf7565b60405180910390f35b610370600480360381019061036b9190613193565b610b75565b005b34801561037e57600080fd5b5061039960048036038101906103949190612f69565b610d0e565b005b3480156103a757600080fd5b506103b0610d6e565b6040516103bd91906137f5565b60405180910390f35b3480156103d257600080fd5b506103ed60048036038101906103e89190613119565b610d81565b005b3480156103fb57600080fd5b50610404610e13565b005b34801561041257600080fd5b5061041b610ebb565b005b34801561042957600080fd5b50610444600480360381019061043f9190612f69565b610f87565b005b34801561045257600080fd5b5061046d60048036038101906104689190613166565b610fa7565b60405161047a919061378e565b60405180910390f35b34801561048f57600080fd5b506104aa60048036038101906104a59190612efc565b611059565b005b3480156104b857600080fd5b506104d360048036038101906104ce9190613166565b611119565b005b3480156104e157600080fd5b506104fc60048036038101906104f79190612efc565b61119f565b6040516105099190613bf7565b60405180910390f35b34801561051e57600080fd5b50610527611257565b005b34801561053557600080fd5b5061053e6112df565b60405161054b9190613bf7565b60405180910390f35b34801561056057600080fd5b506105696112e5565b604051610576919061378e565b60405180910390f35b34801561058b57600080fd5b506105a660048036038101906105a19190613166565b61130f565b005b3480156105b457600080fd5b506105bd611395565b6040516105ca9190613855565b60405180910390f35b3480156105df57600080fd5b506105e8611427565b6040516105f59190613bf7565b60405180910390f35b34801561060a57600080fd5b506106256004803603810190610620919061303f565b61142d565b005b34801561063357600080fd5b5061064e60048036038101906106499190613166565b611443565b005b34801561065c57600080fd5b5061067760048036038101906106729190612fbc565b6114c9565b005b34801561068557600080fd5b506106a0600480360381019061069b9190613166565b61152b565b005b3480156106ae57600080fd5b506106b76115b1565b6040516106c491906137f5565b60405180910390f35b3480156106d957600080fd5b506106f460048036038101906106ef9190613166565b6115c4565b6040516107019190613855565b60405180910390f35b34801561071657600080fd5b5061071f61166b565b005b34801561072d57600080fd5b50610736611713565b6040516107439190613bf7565b60405180910390f35b61076660048036038101906107619190613166565b611719565b005b34801561077457600080fd5b5061078f600480360381019061078a9190612f29565b611774565b60405161079c91906137f5565b60405180910390f35b3480156107b157600080fd5b506107cc60048036038101906107c79190612efc565b611808565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061089957507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108a957506108a882611900565b5b9050919050565b6108b861196a565b73ffffffffffffffffffffffffffffffffffffffff166108d66112e5565b73ffffffffffffffffffffffffffffffffffffffff161461092c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161092390613b17565b60405180910390fd5b6109368282611972565b5050565b60606000805461094990613e98565b80601f016020809104026020016040519081016040528092919081815260200182805461097590613e98565b80156109c25780601f10610997576101008083540402835291602001916109c2565b820191906000526020600020905b8154815290600101906020018083116109a557829003601f168201915b5050505050905090565b60006109d782611a0b565b610a16576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a0d90613af7565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610a5c82610fa7565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610acd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ac490613b77565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610aec61196a565b73ffffffffffffffffffffffffffffffffffffffff161480610b1b5750610b1a81610b1561196a565b611774565b5b610b5a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b5190613a37565b60405180910390fd5b610b648383611a77565b505050565b600c5481565b600a5481565b600d60019054906101000a900460ff16610bc4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bbb90613937565b60405180910390fd5b610bce8282611b30565b610c0d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c0490613ad7565b60405180910390fd5b600c5483600e6000610c1d61196a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610c629190613cb6565b1115610ca3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c9a90613897565b60405180910390fd5b82600e6000610cb061196a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610cf99190613cb6565b92505081905550610d0983611c06565b505050565b610d1f610d1961196a565b82611d0d565b610d5e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d5590613bb7565b60405180910390fd5b610d69838383611deb565b505050565b600d60009054906101000a900460ff1681565b610d8961196a565b73ffffffffffffffffffffffffffffffffffffffff16610da76112e5565b73ffffffffffffffffffffffffffffffffffffffff1614610dfd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610df490613b17565b60405180910390fd5b818160079190610e0e929190612cd4565b505050565b610e1b61196a565b73ffffffffffffffffffffffffffffffffffffffff16610e396112e5565b73ffffffffffffffffffffffffffffffffffffffff1614610e8f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e8690613b17565b60405180910390fd5b600d60019054906101000a900460ff1615600d60016101000a81548160ff021916908315150217905550565b610ec361196a565b73ffffffffffffffffffffffffffffffffffffffff16610ee16112e5565b73ffffffffffffffffffffffffffffffffffffffff1614610f37576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f2e90613b17565b60405180910390fd5b610f3f61196a565b73ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015610f84573d6000803e3d6000fd5b50565b610fa2838383604051806020016040528060008152506114c9565b505050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611050576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161104790613a77565b60405180910390fd5b80915050919050565b61106161196a565b73ffffffffffffffffffffffffffffffffffffffff1661107f6112e5565b73ffffffffffffffffffffffffffffffffffffffff16146110d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110cc90613b17565b60405180910390fd5b80600f60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b61112161196a565b73ffffffffffffffffffffffffffffffffffffffff1661113f6112e5565b73ffffffffffffffffffffffffffffffffffffffff1614611195576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161118c90613b17565b60405180910390fd5b8060098190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611210576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161120790613a57565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61125f61196a565b73ffffffffffffffffffffffffffffffffffffffff1661127d6112e5565b73ffffffffffffffffffffffffffffffffffffffff16146112d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112ca90613b17565b60405180910390fd5b6112dd6000612047565b565b600b5481565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b61131761196a565b73ffffffffffffffffffffffffffffffffffffffff166113356112e5565b73ffffffffffffffffffffffffffffffffffffffff161461138b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161138290613b17565b60405180910390fd5b8060088190555050565b6060600180546113a490613e98565b80601f01602080910402602001604051908101604052809291908181526020018280546113d090613e98565b801561141d5780601f106113f25761010080835404028352916020019161141d565b820191906000526020600020905b81548152906001019060200180831161140057829003601f168201915b5050505050905090565b60085481565b61143f61143861196a565b838361210d565b5050565b61144b61196a565b73ffffffffffffffffffffffffffffffffffffffff166114696112e5565b73ffffffffffffffffffffffffffffffffffffffff16146114bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114b690613b17565b60405180910390fd5b80600c8190555050565b6114da6114d461196a565b83611d0d565b611519576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161151090613bb7565b60405180910390fd5b6115258484848461227a565b50505050565b61153361196a565b73ffffffffffffffffffffffffffffffffffffffff166115516112e5565b73ffffffffffffffffffffffffffffffffffffffff16146115a7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161159e90613b17565b60405180910390fd5b80600b8190555050565b600d60019054906101000a900460ff1681565b60606115cf82611a0b565b61160e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161160590613b57565b60405180910390fd5b60006116186122d6565b905060008151116116385760405180602001604052806000815250611663565b8061164284612368565b60405160200161165392919061373b565b6040516020818303038152906040525b915050919050565b61167361196a565b73ffffffffffffffffffffffffffffffffffffffff166116916112e5565b73ffffffffffffffffffffffffffffffffffffffff16146116e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116de90613b17565b60405180910390fd5b600d60009054906101000a900460ff1615600d60006101000a81548160ff021916908315150217905550565b60095481565b600d60009054906101000a900460ff16611768576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161175f90613a17565b60405180910390fd5b61177181611c06565b50565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61181061196a565b73ffffffffffffffffffffffffffffffffffffffff1661182e6112e5565b73ffffffffffffffffffffffffffffffffffffffff1614611884576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161187b90613b17565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156118f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118eb906138f7565b60405180910390fd5b6118fd81612047565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b600954600a54826119839190613cb6565b11156119c4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119bb90613b97565b60405180910390fd5b60005b81811015611a0657600a60008154809291906119e290613efb565b91905055506119f383600a546124c9565b80806119fe90613efb565b9150506119c7565b505050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611aea83610fa7565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16611be7611b9d611b7961196a565b604051602001611b899190613720565b6040516020818303038152906040526124e7565b85858080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f82011690508083019250505050505050612522565b73ffffffffffffffffffffffffffffffffffffffff1614905092915050565b600b548111158015611c185750600081115b611c57576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c4e90613957565b60405180910390fd5b80600854611c659190613d3d565b341015611ca7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c9e90613977565b60405180910390fd5b600954600a5482611cb89190613cb6565b1115611cf9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cf090613bd7565b60405180910390fd5b611d0a611d0461196a565b82611972565b50565b6000611d1882611a0b565b611d57576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d4e906139f7565b60405180910390fd5b6000611d6283610fa7565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611dd157508373ffffffffffffffffffffffffffffffffffffffff16611db9846109cc565b73ffffffffffffffffffffffffffffffffffffffff16145b80611de25750611de18185611774565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611e0b82610fa7565b73ffffffffffffffffffffffffffffffffffffffff1614611e61576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e5890613b37565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611ed1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ec890613997565b60405180910390fd5b611edc838383612549565b611ee7600082611a77565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611f379190613d97565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611f8e9190613cb6565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561217c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612173906139b7565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161226d91906137f5565b60405180910390a3505050565b612285848484611deb565b6122918484848461254e565b6122d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122c7906138d7565b60405180910390fd5b50505050565b6060600780546122e590613e98565b80601f016020809104026020016040519081016040528092919081815260200182805461231190613e98565b801561235e5780601f106123335761010080835404028352916020019161235e565b820191906000526020600020905b81548152906001019060200180831161234157829003601f168201915b5050505050905090565b606060008214156123b0576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506124c4565b600082905060005b600082146123e25780806123cb90613efb565b915050600a826123db9190613d0c565b91506123b8565b60008167ffffffffffffffff8111156123fe576123fd614084565b5b6040519080825280601f01601f1916602001820160405280156124305781602001600182028036833780820191505090505b5090505b600085146124bd576001826124499190613d97565b9150600a856124589190613f68565b60306124649190613cb6565b60f81b81838151811061247a57612479614055565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856124b69190613d0c565b9450612434565b8093505050505b919050565b6124e38282604051806020016040528060008152506126e5565b5050565b60006124f38251612368565b8260405160200161250592919061375f565b604051602081830303815290604052805190602001209050919050565b60008060006125318585612740565b9150915061253e816127c3565b819250505092915050565b505050565b600061256f8473ffffffffffffffffffffffffffffffffffffffff16612998565b156126d8578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261259861196a565b8786866040518563ffffffff1660e01b81526004016125ba94939291906137a9565b602060405180830381600087803b1580156125d457600080fd5b505af192505050801561260557506040513d601f19601f8201168201806040525081019061260291906130ec565b60015b612688573d8060008114612635576040519150601f19603f3d011682016040523d82523d6000602084013e61263a565b606091505b50600081511415612680576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612677906138d7565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506126dd565b600190505b949350505050565b6126ef83836129ab565b6126fc600084848461254e565b61273b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612732906138d7565b60405180910390fd5b505050565b6000806041835114156127825760008060006020860151925060408601519150606086015160001a905061277687828585612b79565b945094505050506127bc565b6040835114156127b35760008060208501519150604085015190506127a8868383612c86565b9350935050506127bc565b60006002915091505b9250929050565b600060048111156127d7576127d6613ff7565b5b8160048111156127ea576127e9613ff7565b5b14156127f557612995565b6001600481111561280957612808613ff7565b5b81600481111561281c5761281b613ff7565b5b141561285d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161285490613877565b60405180910390fd5b6002600481111561287157612870613ff7565b5b81600481111561288457612883613ff7565b5b14156128c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128bc906138b7565b60405180910390fd5b600360048111156128d9576128d8613ff7565b5b8160048111156128ec576128eb613ff7565b5b141561292d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612924906139d7565b60405180910390fd5b6004808111156129405761293f613ff7565b5b81600481111561295357612952613ff7565b5b1415612994576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161298b90613a97565b60405180910390fd5b5b50565b600080823b905060008111915050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612a1b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a1290613ab7565b60405180910390fd5b612a2481611a0b565b15612a64576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a5b90613917565b60405180910390fd5b612a7060008383612549565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612ac09190613cb6565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a08360001c1115612bb4576000600391509150612c7d565b601b8560ff1614158015612bcc5750601c8560ff1614155b15612bde576000600491509150612c7d565b600060018787878760405160008152602001604052604051612c039493929190613810565b6020604051602081039080840390855afa158015612c25573d6000803e3d6000fd5b505050602060405103519050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612c7457600060019250925050612c7d565b80600092509250505b94509492505050565b6000806000807f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff85169150601b8560ff1c019050612cc687828885612b79565b935093505050935093915050565b828054612ce090613e98565b90600052602060002090601f016020900481019282612d025760008555612d49565b82601f10612d1b57803560ff1916838001178555612d49565b82800160010185558215612d49579182015b82811115612d48578235825591602001919060010190612d2d565b5b509050612d569190612d5a565b5090565b5b80821115612d73576000816000905550600101612d5b565b5090565b6000612d8a612d8584613c37565b613c12565b905082815260208101848484011115612da657612da56140c2565b5b612db1848285613e56565b509392505050565b600081359050612dc8816147f4565b92915050565b600081359050612ddd8161480b565b92915050565b600081359050612df281614822565b92915050565b600081519050612e0781614822565b92915050565b60008083601f840112612e2357612e226140b8565b5b8235905067ffffffffffffffff811115612e4057612e3f6140b3565b5b602083019150836001820283011115612e5c57612e5b6140bd565b5b9250929050565b600082601f830112612e7857612e776140b8565b5b8135612e88848260208601612d77565b91505092915050565b60008083601f840112612ea757612ea66140b8565b5b8235905067ffffffffffffffff811115612ec457612ec36140b3565b5b602083019150836001820283011115612ee057612edf6140bd565b5b9250929050565b600081359050612ef681614839565b92915050565b600060208284031215612f1257612f116140cc565b5b6000612f2084828501612db9565b91505092915050565b60008060408385031215612f4057612f3f6140cc565b5b6000612f4e85828601612db9565b9250506020612f5f85828601612db9565b9150509250929050565b600080600060608486031215612f8257612f816140cc565b5b6000612f9086828701612db9565b9350506020612fa186828701612db9565b9250506040612fb286828701612ee7565b9150509250925092565b60008060008060808587031215612fd657612fd56140cc565b5b6000612fe487828801612db9565b9450506020612ff587828801612db9565b935050604061300687828801612ee7565b925050606085013567ffffffffffffffff811115613027576130266140c7565b5b61303387828801612e63565b91505092959194509250565b60008060408385031215613056576130556140cc565b5b600061306485828601612db9565b925050602061307585828601612dce565b9150509250929050565b60008060408385031215613096576130956140cc565b5b60006130a485828601612db9565b92505060206130b585828601612ee7565b9150509250929050565b6000602082840312156130d5576130d46140cc565b5b60006130e384828501612de3565b91505092915050565b600060208284031215613102576131016140cc565b5b600061311084828501612df8565b91505092915050565b600080602083850312156131305761312f6140cc565b5b600083013567ffffffffffffffff81111561314e5761314d6140c7565b5b61315a85828601612e91565b92509250509250929050565b60006020828403121561317c5761317b6140cc565b5b600061318a84828501612ee7565b91505092915050565b6000806000604084860312156131ac576131ab6140cc565b5b60006131ba86828701612ee7565b935050602084013567ffffffffffffffff8111156131db576131da6140c7565b5b6131e786828701612e0d565b92509250509250925092565b6131fc81613dcb565b82525050565b61321361320e82613dcb565b613f44565b82525050565b61322281613ddd565b82525050565b61323181613de9565b82525050565b600061324282613c68565b61324c8185613c7e565b935061325c818560208601613e65565b613265816140d1565b840191505092915050565b600061327b82613c68565b6132858185613c8f565b9350613295818560208601613e65565b80840191505092915050565b60006132ac82613c73565b6132b68185613c9a565b93506132c6818560208601613e65565b6132cf816140d1565b840191505092915050565b60006132e582613c73565b6132ef8185613cab565b93506132ff818560208601613e65565b80840191505092915050565b6000613318601883613c9a565b9150613323826140ef565b602082019050919050565b600061333b601983613c9a565b915061334682614118565b602082019050919050565b600061335e601f83613c9a565b915061336982614141565b602082019050919050565b6000613381603283613c9a565b915061338c8261416a565b604082019050919050565b60006133a4602683613c9a565b91506133af826141b9565b604082019050919050565b60006133c7601c83613c9a565b91506133d282614208565b602082019050919050565b60006133ea600e83613c9a565b91506133f582614231565b602082019050919050565b600061340d602483613c9a565b91506134188261425a565b604082019050919050565b6000613430601683613c9a565b915061343b826142a9565b602082019050919050565b6000613453602483613c9a565b915061345e826142d2565b604082019050919050565b6000613476601983613c9a565b915061348182614321565b602082019050919050565b6000613499602283613c9a565b91506134a48261434a565b604082019050919050565b60006134bc602c83613c9a565b91506134c782614399565b604082019050919050565b60006134df600c83613c9a565b91506134ea826143e8565b602082019050919050565b6000613502603883613c9a565b915061350d82614411565b604082019050919050565b6000613525602a83613c9a565b915061353082614460565b604082019050919050565b6000613548602983613c9a565b9150613553826144af565b604082019050919050565b600061356b602283613c9a565b9150613576826144fe565b604082019050919050565b600061358e602083613c9a565b91506135998261454d565b602082019050919050565b60006135b1601883613c9a565b91506135bc82614576565b602082019050919050565b60006135d4602c83613c9a565b91506135df8261459f565b604082019050919050565b60006135f7602083613c9a565b9150613602826145ee565b602082019050919050565b600061361a601a83613cab565b915061362582614617565b601a82019050919050565b600061363d602983613c9a565b915061364882614640565b604082019050919050565b6000613660602f83613c9a565b915061366b8261468f565b604082019050919050565b6000613683602183613c9a565b915061368e826146de565b604082019050919050565b60006136a6602183613c9a565b91506136b18261472d565b604082019050919050565b60006136c9603183613c9a565b91506136d48261477c565b604082019050919050565b60006136ec600883613c9a565b91506136f7826147cb565b602082019050919050565b61370b81613e3f565b82525050565b61371a81613e49565b82525050565b600061372c8284613202565b60148201915081905092915050565b600061374782856132da565b915061375382846132da565b91508190509392505050565b600061376a8261360d565b915061377682856132da565b91506137828284613270565b91508190509392505050565b60006020820190506137a360008301846131f3565b92915050565b60006080820190506137be60008301876131f3565b6137cb60208301866131f3565b6137d86040830185613702565b81810360608301526137ea8184613237565b905095945050505050565b600060208201905061380a6000830184613219565b92915050565b60006080820190506138256000830187613228565b6138326020830186613711565b61383f6040830185613228565b61384c6060830184613228565b95945050505050565b6000602082019050818103600083015261386f81846132a1565b905092915050565b600060208201905081810360008301526138908161330b565b9050919050565b600060208201905081810360008301526138b08161332e565b9050919050565b600060208201905081810360008301526138d081613351565b9050919050565b600060208201905081810360008301526138f081613374565b9050919050565b6000602082019050818103600083015261391081613397565b9050919050565b60006020820190508181036000830152613930816133ba565b9050919050565b60006020820190508181036000830152613950816133dd565b9050919050565b6000602082019050818103600083015261397081613400565b9050919050565b6000602082019050818103600083015261399081613423565b9050919050565b600060208201905081810360008301526139b081613446565b9050919050565b600060208201905081810360008301526139d081613469565b9050919050565b600060208201905081810360008301526139f08161348c565b9050919050565b60006020820190508181036000830152613a10816134af565b9050919050565b60006020820190508181036000830152613a30816134d2565b9050919050565b60006020820190508181036000830152613a50816134f5565b9050919050565b60006020820190508181036000830152613a7081613518565b9050919050565b60006020820190508181036000830152613a908161353b565b9050919050565b60006020820190508181036000830152613ab08161355e565b9050919050565b60006020820190508181036000830152613ad081613581565b9050919050565b60006020820190508181036000830152613af0816135a4565b9050919050565b60006020820190508181036000830152613b10816135c7565b9050919050565b60006020820190508181036000830152613b30816135ea565b9050919050565b60006020820190508181036000830152613b5081613630565b9050919050565b60006020820190508181036000830152613b7081613653565b9050919050565b60006020820190508181036000830152613b9081613676565b9050919050565b60006020820190508181036000830152613bb081613699565b9050919050565b60006020820190508181036000830152613bd0816136bc565b9050919050565b60006020820190508181036000830152613bf0816136df565b9050919050565b6000602082019050613c0c6000830184613702565b92915050565b6000613c1c613c2d565b9050613c288282613eca565b919050565b6000604051905090565b600067ffffffffffffffff821115613c5257613c51614084565b5b613c5b826140d1565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000613cc182613e3f565b9150613ccc83613e3f565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613d0157613d00613f99565b5b828201905092915050565b6000613d1782613e3f565b9150613d2283613e3f565b925082613d3257613d31613fc8565b5b828204905092915050565b6000613d4882613e3f565b9150613d5383613e3f565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613d8c57613d8b613f99565b5b828202905092915050565b6000613da282613e3f565b9150613dad83613e3f565b925082821015613dc057613dbf613f99565b5b828203905092915050565b6000613dd682613e1f565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b82818337600083830152505050565b60005b83811015613e83578082015181840152602081019050613e68565b83811115613e92576000848401525b50505050565b60006002820490506001821680613eb057607f821691505b60208210811415613ec457613ec3614026565b5b50919050565b613ed3826140d1565b810181811067ffffffffffffffff82111715613ef257613ef1614084565b5b80604052505050565b6000613f0682613e3f565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613f3957613f38613f99565b5b600182019050919050565b6000613f4f82613f56565b9050919050565b6000613f61826140e2565b9050919050565b6000613f7382613e3f565b9150613f7e83613e3f565b925082613f8e57613f8d613fc8565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f45434453413a20696e76616c6964207369676e61747572650000000000000000600082015250565b7f6d61782070726573616c65206d696e7473207265616368656400000000000000600082015250565b7f45434453413a20696e76616c6964207369676e6174757265206c656e67746800600082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f70726573616c6520636c6f736564000000000000000000000000000000000000600082015250565b7f5452414e53414354494f4e3a20717479206f66206d696e7473206e6f7420616c60008201527f6f77656400000000000000000000000000000000000000000000000000000000602082015250565b7f5041594d454e543a20696e76616c69642076616c756500000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f45434453413a20696e76616c6964207369676e6174757265202773272076616c60008201527f7565000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f73746f726520636c6f7365640000000000000000000000000000000000000000600082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f45434453413a20696e76616c6964207369676e6174757265202776272076616c60008201527f7565000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f61646472657373206e6f7420696e2077686974656c6973740000000000000000600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f19457468657265756d205369676e6564204d6573736167653a0a000000000000600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f535550504c593a2056616c7565206578636565647320746f74616c537570706c60008201527f7900000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f536f6c64206f7574000000000000000000000000000000000000000000000000600082015250565b6147fd81613dcb565b811461480857600080fd5b50565b61481481613ddd565b811461481f57600080fd5b50565b61482b81613df3565b811461483657600080fd5b50565b61484281613e3f565b811461484d57600080fd5b5056fea264697066735822122065575200c50d0010a9606aa96a7c45b52d52dcd23081e08ea9cf336644cabfad64736f6c63430008060033

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.