ETH Price: $3,390.38 (-1.49%)
Gas: 2 Gwei

Token

Outkast (OK)
 

Overview

Max Total Supply

9,760 OK

Holders

2,479

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
aoetvapno.eth
Balance
8 OK
0x1795dee42dec2705f7a228fe0e62cd0a143a8de3
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

OUTKAST is a collection of 10,000 programmatically generated unique pieces of art inspired by a combination of anime, star wars, steampunk, and various other pop culture references.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
Outkast

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

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

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

contract Outkast is Ownable, ERC721 {
    using ECDSA for bytes32;

    uint256 constant public MAX_OUTKASTS = 10000;
    uint256 constant public OUTKAST_PRICE = 0.05 ether;
    uint256 constant public MAX_OUTKASTS_PER_TXNS = 3;

    mapping(bytes32 => bool) public usedHashes;
   
    /*
    // Metadata will start on AWS and once enough Outkasts have upgraded will be moved to IPFS in order to stay frozen
    // The Metadata generator will be given out once all outkasts have been revealed
    // The contract address will be used as the seed for the randomness so everyone can verify its integrity
    */
    string private _outkastBaseURI = "https://outkasts.s3.us-east-2.amazonaws.com/";
    address private _signatureVerifier = 0x82629De19B3e450b5CDC9a0E5E8Fab638DBFef9d;

    uint256 public totalSupply = 0;
    bool public isSaleActive = false;
    bool public isURIFrozen = false;
    bool public saleHasConcluded = false;

    /*
    // Initalize the Outkast token
    // Reserve 30 Outkast for special, charity, and sponsoring events (not randomly generated)
    // Reserve 30 more randomly generated Outkast's for giveaways (randomly generated like the rest)
    */
    constructor() ERC721("Outkast", "OK") {
        for (uint256 i = 0; i < 60; i++) {
            _safeMint(msg.sender, ++totalSupply);
        }
    }

    /*
    // Rehash the message to verify all the information is valid
    */
    function hashMessage(address sender, uint256 tokenQuantity, uint256 nonce) internal pure returns(bytes32) {
        bytes32 hash = keccak256(abi.encodePacked(
            "\x19Ethereum Signed Message:\n32",
            keccak256(abi.encodePacked(sender, tokenQuantity, nonce))));
        return hash;
    }

    /*
    // Presale is handled internally using the hash system, so no need for 2 seperate functions
    */
    function mintOutkast(uint256 tokenQuantity, bytes calldata signature, uint256 nonce) external payable {
        require(isSaleActive, "Sale Inactive");
        require(totalSupply + tokenQuantity <= MAX_OUTKASTS, "Sold Out");
        require(tokenQuantity <= MAX_OUTKASTS_PER_TXNS, "Mint Overflow");
        require(OUTKAST_PRICE * tokenQuantity <= msg.value, "Insufficient Funds");

        bytes32 messageHash = hashMessage(msg.sender, tokenQuantity, nonce);
        require(messageHash.recover(signature) == _signatureVerifier, "Unrecognizable Hash");
        require(!usedHashes[messageHash], "Reused Hash");

        usedHashes[messageHash] = true;

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

        if(totalSupply == MAX_OUTKASTS) {
            saleHasConcluded = true;
        }
    }

    /*
    // To be used during staking for upgradable Outkasts
    */ 
    function burnOutkast(uint256 tokenId) external {
        require(saleHasConcluded, "Ongoing Sale");
        require(_exists(tokenId), "Inexistant Token");
        require(msg.sender == ownerOf(tokenId), "Not Owner");
        totalSupply -= 1;
        _burn(tokenId);
    } 

    function toggleSale() external onlyOwner {
        isSaleActive = !isSaleActive;
    }

    function freezeURI() external onlyOwner {
        isURIFrozen = true;
    }

    /*
    // In the unlikely scenario that someone discovers it's secret key and begins mass minting
    */
    function setSignatureVerifier(address newVerifier) external onlyOwner {
        _signatureVerifier = newVerifier;
    }

    function setBaseURI(string calldata newURI) external onlyOwner {
        require(!isURIFrozen, "URI is Frozen");
        _outkastBaseURI = newURI;
    }

    function withdrawAll(address treasury) external payable onlyOwner {
        require(payable(treasury).send(address(this).balance));
    }

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

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

pragma solidity ^0.8.0;

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

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

pragma solidity ^0.8.0;

import "./IERC165.sol";

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

File 4 of 12 : ECDSA.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

        return (signer, RecoverError.NoError);
    }

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

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

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

File 5 of 12 : Strings.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

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

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

File 6 of 12 : Context.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

File 7 of 12 : Address.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

File 8 of 12 : IERC721Metadata.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "../IERC721.sol";

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

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

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

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

pragma solidity ^0.8.0;

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

File 10 of 12 : IERC721.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

File 11 of 12 : ERC721.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_OUTKASTS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_OUTKASTS_PER_TXNS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"OUTKAST_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"burnOutkast","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"freezeURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isSaleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isURIFrozen","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenQuantity","type":"uint256"},{"internalType":"bytes","name":"signature","type":"bytes"},{"internalType":"uint256","name":"nonce","type":"uint256"}],"name":"mintOutkast","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"saleHasConcluded","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"newURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newVerifier","type":"address"}],"name":"setSignatureVerifier","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":"toggleSale","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":[{"internalType":"bytes32","name":"","type":"bytes32"}],"name":"usedHashes","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"treasury","type":"address"}],"name":"withdrawAll","outputs":[],"stateMutability":"payable","type":"function"}]

60806040526040518060600160405280602c8152602001620054d5602c9139600890805190602001906200003592919062000785565b507382629de19b3e450b5cdc9a0e5e8fab638dbfef9d600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506000600a556000600b60006101000a81548160ff0219169083151502179055506000600b60016101000a81548160ff0219169083151502179055506000600b60026101000a81548160ff021916908315150217905550348015620000ee57600080fd5b506040518060400160405280600781526020017f4f75746b617374000000000000000000000000000000000000000000000000008152506040518060400160405280600281526020017f4f4b0000000000000000000000000000000000000000000000000000000000008152506200017b6200016f6200020160201b60201c565b6200020960201b60201c565b81600190805190602001906200019392919062000785565b508060029080519060200190620001ac92919062000785565b50505060005b603c811015620001fa57620001e433600a60008154620001d29062000b70565b919050819055620002cd60201b60201c565b8080620001f19062000b70565b915050620001b2565b5062000ced565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620002ef828260405180602001604052806000815250620002f360201b60201c565b5050565b6200030583836200036160201b60201c565b6200031a60008484846200054760201b60201c565b6200035c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200035390620009aa565b60405180910390fd5b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415620003d4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620003cb90620009ee565b60405180910390fd5b620003e5816200070160201b60201c565b1562000428576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200041f90620009cc565b60405180910390fd5b6200043c600083836200076d60201b60201c565b6001600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546200048e919062000a3d565b92505081905550816003600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b6000620005758473ffffffffffffffffffffffffffffffffffffffff166200077260201b620019e81760201c565b15620006f4578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02620005a76200020160201b60201c565b8786866040518563ffffffff1660e01b8152600401620005cb949392919062000956565b602060405180830381600087803b158015620005e657600080fd5b505af19250505080156200061a57506040513d601f19601f820116820180604052508101906200061791906200084c565b60015b620006a3573d80600081146200064d576040519150601f19603f3d011682016040523d82523d6000602084013e62000652565b606091505b506000815114156200069b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200069290620009aa565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050620006f9565b600190505b949350505050565b60008073ffffffffffffffffffffffffffffffffffffffff166003600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b505050565b600080823b905060008111915050919050565b828054620007939062000b3a565b90600052602060002090601f016020900481019282620007b7576000855562000803565b82601f10620007d257805160ff191683800117855562000803565b8280016001018555821562000803579182015b8281111562000802578251825591602001919060010190620007e5565b5b50905062000812919062000816565b5090565b5b808211156200083157600081600090555060010162000817565b5090565b600081519050620008468162000cd3565b92915050565b60006020828403121562000865576200086462000c1c565b5b6000620008758482850162000835565b91505092915050565b620008898162000a9a565b82525050565b60006200089c8262000a10565b620008a8818562000a1b565b9350620008ba81856020860162000b04565b620008c58162000c21565b840191505092915050565b6000620008df60328362000a2c565b9150620008ec8262000c32565b604082019050919050565b600062000906601c8362000a2c565b9150620009138262000c81565b602082019050919050565b60006200092d60208362000a2c565b91506200093a8262000caa565b602082019050919050565b620009508162000afa565b82525050565b60006080820190506200096d60008301876200087e565b6200097c60208301866200087e565b6200098b604083018562000945565b81810360608301526200099f81846200088f565b905095945050505050565b60006020820190508181036000830152620009c581620008d0565b9050919050565b60006020820190508181036000830152620009e781620008f7565b9050919050565b6000602082019050818103600083015262000a09816200091e565b9050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600062000a4a8262000afa565b915062000a578362000afa565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111562000a8f5762000a8e62000bbe565b5b828201905092915050565b600062000aa78262000ada565b9050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b60005b8381101562000b2457808201518184015260208101905062000b07565b8381111562000b34576000848401525b50505050565b6000600282049050600182168062000b5357607f821691505b6020821081141562000b6a5762000b6962000bed565b5b50919050565b600062000b7d8262000afa565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141562000bb35762000bb262000bbe565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600080fd5b6000601f19601f8301169050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b62000cde8162000aae565b811462000cea57600080fd5b50565b6147d88062000cfd6000396000f3fe6080604052600436106101d85760003560e01c8063715018a611610102578063c793803c11610095578063e985e9c511610064578063e985e9c514610677578063f2fde38b146106b4578063fa09e630146106dd578063fcd4b212146106f9576101d8565b8063c793803c146105cf578063c87b56dd146105e6578063df460e0414610623578063e08a66051461064e576101d8565b80639ea34e61116100d15780639ea34e6114610515578063a22cb46514610540578063aef18bf714610569578063b88d4fde146105a6576101d8565b8063715018a6146104915780637d8966e4146104a85780638da5cb5b146104bf57806395d89b41146104ea576101d8565b806323b872dd1161017a57806355f804b31161014957806355f804b3146103c3578063564566a8146103ec5780636352211e1461041757806370a0823114610454576101d8565b806323b872dd1461032a5780633a7aaa98146103535780633e42c1581461037e57806342842e0e1461039a576101d8565b8063081812fc116101b6578063081812fc14610270578063095ea7b3146102ad57806318160ddd146102d65780631ea33c4d14610301576101d8565b806301ffc9a7146101dd578063048046c31461021a57806306fdde0314610245575b600080fd5b3480156101e957600080fd5b5061020460048036038101906101ff9190612f3b565b610724565b60405161021191906136e1565b60405180910390f35b34801561022657600080fd5b5061022f610806565b60405161023c9190613b23565b60405180910390f35b34801561025157600080fd5b5061025a61080b565b6040516102679190613741565b60405180910390f35b34801561027c57600080fd5b5061029760048036038101906102929190612fe2565b61089d565b6040516102a4919061367a565b60405180910390f35b3480156102b957600080fd5b506102d460048036038101906102cf9190612ece565b610922565b005b3480156102e257600080fd5b506102eb610a3a565b6040516102f89190613b23565b60405180910390f35b34801561030d57600080fd5b5061032860048036038101906103239190612fe2565b610a40565b005b34801561033657600080fd5b50610351600480360381019061034c9190612db8565b610b73565b005b34801561035f57600080fd5b50610368610bd3565b60405161037591906136e1565b60405180910390f35b6103986004803603810190610393919061300f565b610be6565b005b3480156103a657600080fd5b506103c160048036038101906103bc9190612db8565b610f0e565b005b3480156103cf57600080fd5b506103ea60048036038101906103e59190612f95565b610f2e565b005b3480156103f857600080fd5b50610401611010565b60405161040e91906136e1565b60405180910390f35b34801561042357600080fd5b5061043e60048036038101906104399190612fe2565b611023565b60405161044b919061367a565b60405180910390f35b34801561046057600080fd5b5061047b60048036038101906104769190612d4b565b6110d5565b6040516104889190613b23565b60405180910390f35b34801561049d57600080fd5b506104a661118d565b005b3480156104b457600080fd5b506104bd611215565b005b3480156104cb57600080fd5b506104d46112bd565b6040516104e1919061367a565b60405180910390f35b3480156104f657600080fd5b506104ff6112e6565b60405161050c9190613741565b60405180910390f35b34801561052157600080fd5b5061052a611378565b6040516105379190613b23565b60405180910390f35b34801561054c57600080fd5b5061056760048036038101906105629190612e8e565b61137e565b005b34801561057557600080fd5b50610590600480360381019061058b9190612f0e565b6114ff565b60405161059d91906136e1565b60405180910390f35b3480156105b257600080fd5b506105cd60048036038101906105c89190612e0b565b61151f565b005b3480156105db57600080fd5b506105e4611581565b005b3480156105f257600080fd5b5061060d60048036038101906106089190612fe2565b61161a565b60405161061a9190613741565b60405180910390f35b34801561062f57600080fd5b506106386116c1565b6040516106459190613b23565b60405180910390f35b34801561065a57600080fd5b5061067560048036038101906106709190612d4b565b6116cc565b005b34801561068357600080fd5b5061069e60048036038101906106999190612d78565b61178c565b6040516106ab91906136e1565b60405180910390f35b3480156106c057600080fd5b506106db60048036038101906106d69190612d4b565b611820565b005b6106f760048036038101906106f29190612d4b565b611918565b005b34801561070557600080fd5b5061070e6119d5565b60405161071b91906136e1565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806107ef57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806107ff57506107fe826119fb565b5b9050919050565b600381565b60606001805461081a90613db9565b80601f016020809104026020016040519081016040528092919081815260200182805461084690613db9565b80156108935780601f1061086857610100808354040283529160200191610893565b820191906000526020600020905b81548152906001019060200180831161087657829003601f168201915b5050505050905090565b60006108a882611a65565b6108e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108de90613a23565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061092d82611023565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561099e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161099590613aa3565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166109bd611ad1565b73ffffffffffffffffffffffffffffffffffffffff1614806109ec57506109eb816109e6611ad1565b61178c565b5b610a2b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a2290613983565b60405180910390fd5b610a358383611ad9565b505050565b600a5481565b600b60029054906101000a900460ff16610a8f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a8690613b03565b60405180910390fd5b610a9881611a65565b610ad7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ace90613943565b60405180910390fd5b610ae081611023565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610b4d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b44906138c3565b60405180910390fd5b6001600a6000828254610b609190613cb8565b92505081905550610b7081611b92565b50565b610b84610b7e611ad1565b82611ca3565b610bc3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bba90613ac3565b60405180910390fd5b610bce838383611d81565b505050565b600b60029054906101000a900460ff1681565b600b60009054906101000a900460ff16610c35576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c2c90613923565b60405180910390fd5b61271084600a54610c469190613bd7565b1115610c87576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c7e906137c3565b60405180910390fd5b6003841115610ccb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cc2906138a3565b60405180910390fd5b348466b1a2bc2ec50000610cdf9190613c5e565b1115610d20576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d1790613843565b60405180910390fd5b6000610d2d338684611fdd565b9050600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16610dbf85858080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f820116905080830192505050505050508361203e90919063ffffffff16565b73ffffffffffffffffffffffffffffffffffffffff1614610e15576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e0c90613823565b60405180910390fd5b6007600082815260200190815260200160002060009054906101000a900460ff1615610e76576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e6d90613ae3565b60405180910390fd5b60016007600083815260200190815260200160002060006101000a81548160ff02191690831515021790555060005b85811015610ede57610ecb33600a60008154610ec090613e1c565b919050819055612065565b8080610ed690613e1c565b915050610ea5565b50612710600a541415610f07576001600b60026101000a81548160ff0219169083151502179055505b5050505050565b610f298383836040518060200160405280600081525061151f565b505050565b610f36611ad1565b73ffffffffffffffffffffffffffffffffffffffff16610f546112bd565b73ffffffffffffffffffffffffffffffffffffffff1614610faa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fa190613a43565b60405180910390fd5b600b60019054906101000a900460ff1615610ffa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ff190613963565b60405180910390fd5b81816008919061100b929190612b0e565b505050565b600b60009054906101000a900460ff1681565b6000806003600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156110cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110c3906139c3565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611146576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161113d906139a3565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611195611ad1565b73ffffffffffffffffffffffffffffffffffffffff166111b36112bd565b73ffffffffffffffffffffffffffffffffffffffff1614611209576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161120090613a43565b60405180910390fd5b6112136000612083565b565b61121d611ad1565b73ffffffffffffffffffffffffffffffffffffffff1661123b6112bd565b73ffffffffffffffffffffffffffffffffffffffff1614611291576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161128890613a43565b60405180910390fd5b600b60009054906101000a900460ff1615600b60006101000a81548160ff021916908315150217905550565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600280546112f590613db9565b80601f016020809104026020016040519081016040528092919081815260200182805461132190613db9565b801561136e5780601f106113435761010080835404028352916020019161136e565b820191906000526020600020905b81548152906001019060200180831161135157829003601f168201915b5050505050905090565b61271081565b611386611ad1565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156113f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113eb90613883565b60405180910390fd5b8060066000611401611ad1565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166114ae611ad1565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516114f391906136e1565b60405180910390a35050565b60076020528060005260406000206000915054906101000a900460ff1681565b61153061152a611ad1565b83611ca3565b61156f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161156690613ac3565b60405180910390fd5b61157b84848484612147565b50505050565b611589611ad1565b73ffffffffffffffffffffffffffffffffffffffff166115a76112bd565b73ffffffffffffffffffffffffffffffffffffffff16146115fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115f490613a43565b60405180910390fd5b6001600b60016101000a81548160ff021916908315150217905550565b606061162582611a65565b611664576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161165b90613a83565b60405180910390fd5b600061166e6121a3565b9050600081511161168e57604051806020016040528060008152506116b9565b8061169884612235565b6040516020016116a9929190613630565b6040516020818303038152906040525b915050919050565b66b1a2bc2ec5000081565b6116d4611ad1565b73ffffffffffffffffffffffffffffffffffffffff166116f26112bd565b73ffffffffffffffffffffffffffffffffffffffff1614611748576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161173f90613a43565b60405180910390fd5b80600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611828611ad1565b73ffffffffffffffffffffffffffffffffffffffff166118466112bd565b73ffffffffffffffffffffffffffffffffffffffff161461189c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161189390613a43565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561190c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611903906137e3565b60405180910390fd5b61191581612083565b50565b611920611ad1565b73ffffffffffffffffffffffffffffffffffffffff1661193e6112bd565b73ffffffffffffffffffffffffffffffffffffffff1614611994576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161198b90613a43565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f193505050506119d257600080fd5b50565b600b60019054906101000a900460ff1681565b600080823b905060008111915050919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166003600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816005600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611b4c83611023565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611b9d82611023565b9050611bab81600084612396565b611bb6600083611ad9565b6001600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611c069190613cb8565b925050819055506003600083815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff021916905581600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b6000611cae82611a65565b611ced576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ce490613903565b60405180910390fd5b6000611cf883611023565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611d6757508373ffffffffffffffffffffffffffffffffffffffff16611d4f8461089d565b73ffffffffffffffffffffffffffffffffffffffff16145b80611d785750611d77818561178c565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611da182611023565b73ffffffffffffffffffffffffffffffffffffffff1614611df7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dee90613a63565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611e67576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e5e90613863565b60405180910390fd5b611e72838383612396565b611e7d600082611ad9565b6001600460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611ecd9190613cb8565b925050819055506001600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611f249190613bd7565b92505081905550816003600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b600080848484604051602001611ff5939291906135f3565b6040516020818303038152906040528051906020012060405160200161201b9190613654565b604051602081830303815290604052805190602001209050809150509392505050565b600080600061204d858561239b565b9150915061205a8161241e565b819250505092915050565b61207f8282604051806020016040528060008152506125f3565b5050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612152848484611d81565b61215e8484848461264e565b61219d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612194906137a3565b60405180910390fd5b50505050565b6060600880546121b290613db9565b80601f01602080910402602001604051908101604052809291908181526020018280546121de90613db9565b801561222b5780601f106122005761010080835404028352916020019161222b565b820191906000526020600020905b81548152906001019060200180831161220e57829003601f168201915b5050505050905090565b6060600082141561227d576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612391565b600082905060005b600082146122af57808061229890613e1c565b915050600a826122a89190613c2d565b9150612285565b60008167ffffffffffffffff8111156122cb576122ca613fb9565b5b6040519080825280601f01601f1916602001820160405280156122fd5781602001600182028036833780820191505090505b5090505b6000851461238a576001826123169190613cb8565b9150600a856123259190613e9d565b60306123319190613bd7565b60f81b81838151811061234757612346613f8a565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856123839190613c2d565b9450612301565b8093505050505b919050565b505050565b6000806041835114156123dd5760008060006020860151925060408601519150606086015160001a90506123d1878285856127e5565b94509450505050612417565b60408351141561240e5760008060208501519150604085015190506124038683836128f2565b935093505050612417565b60006002915091505b9250929050565b6000600481111561243257612431613f2c565b5b81600481111561244557612444613f2c565b5b1415612450576125f0565b6001600481111561246457612463613f2c565b5b81600481111561247757612476613f2c565b5b14156124b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124af90613763565b60405180910390fd5b600260048111156124cc576124cb613f2c565b5b8160048111156124df576124de613f2c565b5b1415612520576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161251790613783565b60405180910390fd5b6003600481111561253457612533613f2c565b5b81600481111561254757612546613f2c565b5b1415612588576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161257f906138e3565b60405180910390fd5b60048081111561259b5761259a613f2c565b5b8160048111156125ae576125ad613f2c565b5b14156125ef576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125e6906139e3565b60405180910390fd5b5b50565b6125fd8383612940565b61260a600084848461264e565b612649576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612640906137a3565b60405180910390fd5b505050565b600061266f8473ffffffffffffffffffffffffffffffffffffffff166119e8565b156127d8578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612698611ad1565b8786866040518563ffffffff1660e01b81526004016126ba9493929190613695565b602060405180830381600087803b1580156126d457600080fd5b505af192505050801561270557506040513d601f19601f820116820180604052508101906127029190612f68565b60015b612788573d8060008114612735576040519150601f19603f3d011682016040523d82523d6000602084013e61273a565b606091505b50600081511415612780576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612777906137a3565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506127dd565b600190505b949350505050565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a08360001c11156128205760006003915091506128e9565b601b8560ff16141580156128385750601c8560ff1614155b1561284a5760006004915091506128e9565b60006001878787876040516000815260200160405260405161286f94939291906136fc565b6020604051602081039080840390855afa158015612891573d6000803e3d6000fd5b505050602060405103519050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156128e0576000600192509250506128e9565b80600092509250505b94509492505050565b6000806000807f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff85169150601b8560ff1c019050612932878288856127e5565b935093505050935093915050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156129b0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129a790613a03565b60405180910390fd5b6129b981611a65565b156129f9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129f090613803565b60405180910390fd5b612a0560008383612396565b6001600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612a559190613bd7565b92505081905550816003600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b828054612b1a90613db9565b90600052602060002090601f016020900481019282612b3c5760008555612b83565b82601f10612b5557803560ff1916838001178555612b83565b82800160010185558215612b83579182015b82811115612b82578235825591602001919060010190612b67565b5b509050612b909190612b94565b5090565b5b80821115612bad576000816000905550600101612b95565b5090565b6000612bc4612bbf84613b63565b613b3e565b905082815260208101848484011115612be057612bdf613ff7565b5b612beb848285613d77565b509392505050565b600081359050612c028161472f565b92915050565b600081359050612c1781614746565b92915050565b600081359050612c2c8161475d565b92915050565b600081359050612c4181614774565b92915050565b600081519050612c5681614774565b92915050565b60008083601f840112612c7257612c71613fed565b5b8235905067ffffffffffffffff811115612c8f57612c8e613fe8565b5b602083019150836001820283011115612cab57612caa613ff2565b5b9250929050565b600082601f830112612cc757612cc6613fed565b5b8135612cd7848260208601612bb1565b91505092915050565b60008083601f840112612cf657612cf5613fed565b5b8235905067ffffffffffffffff811115612d1357612d12613fe8565b5b602083019150836001820283011115612d2f57612d2e613ff2565b5b9250929050565b600081359050612d458161478b565b92915050565b600060208284031215612d6157612d60614001565b5b6000612d6f84828501612bf3565b91505092915050565b60008060408385031215612d8f57612d8e614001565b5b6000612d9d85828601612bf3565b9250506020612dae85828601612bf3565b9150509250929050565b600080600060608486031215612dd157612dd0614001565b5b6000612ddf86828701612bf3565b9350506020612df086828701612bf3565b9250506040612e0186828701612d36565b9150509250925092565b60008060008060808587031215612e2557612e24614001565b5b6000612e3387828801612bf3565b9450506020612e4487828801612bf3565b9350506040612e5587828801612d36565b925050606085013567ffffffffffffffff811115612e7657612e75613ffc565b5b612e8287828801612cb2565b91505092959194509250565b60008060408385031215612ea557612ea4614001565b5b6000612eb385828601612bf3565b9250506020612ec485828601612c08565b9150509250929050565b60008060408385031215612ee557612ee4614001565b5b6000612ef385828601612bf3565b9250506020612f0485828601612d36565b9150509250929050565b600060208284031215612f2457612f23614001565b5b6000612f3284828501612c1d565b91505092915050565b600060208284031215612f5157612f50614001565b5b6000612f5f84828501612c32565b91505092915050565b600060208284031215612f7e57612f7d614001565b5b6000612f8c84828501612c47565b91505092915050565b60008060208385031215612fac57612fab614001565b5b600083013567ffffffffffffffff811115612fca57612fc9613ffc565b5b612fd685828601612ce0565b92509250509250929050565b600060208284031215612ff857612ff7614001565b5b600061300684828501612d36565b91505092915050565b6000806000806060858703121561302957613028614001565b5b600061303787828801612d36565b945050602085013567ffffffffffffffff81111561305857613057613ffc565b5b61306487828801612c5c565b9350935050604061307787828801612d36565b91505092959194509250565b61308c81613cec565b82525050565b6130a361309e82613cec565b613e65565b82525050565b6130b281613cfe565b82525050565b6130c181613d0a565b82525050565b6130d86130d382613d0a565b613e77565b82525050565b60006130e982613b94565b6130f38185613baa565b9350613103818560208601613d86565b61310c81614006565b840191505092915050565b600061312282613b9f565b61312c8185613bbb565b935061313c818560208601613d86565b61314581614006565b840191505092915050565b600061315b82613b9f565b6131658185613bcc565b9350613175818560208601613d86565b80840191505092915050565b600061318e601883613bbb565b915061319982614024565b602082019050919050565b60006131b1601f83613bbb565b91506131bc8261404d565b602082019050919050565b60006131d4601c83613bcc565b91506131df82614076565b601c82019050919050565b60006131f7603283613bbb565b91506132028261409f565b604082019050919050565b600061321a600883613bbb565b9150613225826140ee565b602082019050919050565b600061323d602683613bbb565b915061324882614117565b604082019050919050565b6000613260601c83613bbb565b915061326b82614166565b602082019050919050565b6000613283601383613bbb565b915061328e8261418f565b602082019050919050565b60006132a6601283613bbb565b91506132b1826141b8565b602082019050919050565b60006132c9602483613bbb565b91506132d4826141e1565b604082019050919050565b60006132ec601983613bbb565b91506132f782614230565b602082019050919050565b600061330f600d83613bbb565b915061331a82614259565b602082019050919050565b6000613332600983613bbb565b915061333d82614282565b602082019050919050565b6000613355602283613bbb565b9150613360826142ab565b604082019050919050565b6000613378602c83613bbb565b9150613383826142fa565b604082019050919050565b600061339b600d83613bbb565b91506133a682614349565b602082019050919050565b60006133be601083613bbb565b91506133c982614372565b602082019050919050565b60006133e1600d83613bbb565b91506133ec8261439b565b602082019050919050565b6000613404603883613bbb565b915061340f826143c4565b604082019050919050565b6000613427602a83613bbb565b915061343282614413565b604082019050919050565b600061344a602983613bbb565b915061345582614462565b604082019050919050565b600061346d602283613bbb565b9150613478826144b1565b604082019050919050565b6000613490602083613bbb565b915061349b82614500565b602082019050919050565b60006134b3602c83613bbb565b91506134be82614529565b604082019050919050565b60006134d6602083613bbb565b91506134e182614578565b602082019050919050565b60006134f9602983613bbb565b9150613504826145a1565b604082019050919050565b600061351c602f83613bbb565b9150613527826145f0565b604082019050919050565b600061353f602183613bbb565b915061354a8261463f565b604082019050919050565b6000613562603183613bbb565b915061356d8261468e565b604082019050919050565b6000613585600b83613bbb565b9150613590826146dd565b602082019050919050565b60006135a8600c83613bbb565b91506135b382614706565b602082019050919050565b6135c781613d60565b82525050565b6135de6135d982613d60565b613e93565b82525050565b6135ed81613d6a565b82525050565b60006135ff8286613092565b60148201915061360f82856135cd565b60208201915061361f82846135cd565b602082019150819050949350505050565b600061363c8285613150565b91506136488284613150565b91508190509392505050565b600061365f826131c7565b915061366b82846130c7565b60208201915081905092915050565b600060208201905061368f6000830184613083565b92915050565b60006080820190506136aa6000830187613083565b6136b76020830186613083565b6136c460408301856135be565b81810360608301526136d681846130de565b905095945050505050565b60006020820190506136f660008301846130a9565b92915050565b600060808201905061371160008301876130b8565b61371e60208301866135e4565b61372b60408301856130b8565b61373860608301846130b8565b95945050505050565b6000602082019050818103600083015261375b8184613117565b905092915050565b6000602082019050818103600083015261377c81613181565b9050919050565b6000602082019050818103600083015261379c816131a4565b9050919050565b600060208201905081810360008301526137bc816131ea565b9050919050565b600060208201905081810360008301526137dc8161320d565b9050919050565b600060208201905081810360008301526137fc81613230565b9050919050565b6000602082019050818103600083015261381c81613253565b9050919050565b6000602082019050818103600083015261383c81613276565b9050919050565b6000602082019050818103600083015261385c81613299565b9050919050565b6000602082019050818103600083015261387c816132bc565b9050919050565b6000602082019050818103600083015261389c816132df565b9050919050565b600060208201905081810360008301526138bc81613302565b9050919050565b600060208201905081810360008301526138dc81613325565b9050919050565b600060208201905081810360008301526138fc81613348565b9050919050565b6000602082019050818103600083015261391c8161336b565b9050919050565b6000602082019050818103600083015261393c8161338e565b9050919050565b6000602082019050818103600083015261395c816133b1565b9050919050565b6000602082019050818103600083015261397c816133d4565b9050919050565b6000602082019050818103600083015261399c816133f7565b9050919050565b600060208201905081810360008301526139bc8161341a565b9050919050565b600060208201905081810360008301526139dc8161343d565b9050919050565b600060208201905081810360008301526139fc81613460565b9050919050565b60006020820190508181036000830152613a1c81613483565b9050919050565b60006020820190508181036000830152613a3c816134a6565b9050919050565b60006020820190508181036000830152613a5c816134c9565b9050919050565b60006020820190508181036000830152613a7c816134ec565b9050919050565b60006020820190508181036000830152613a9c8161350f565b9050919050565b60006020820190508181036000830152613abc81613532565b9050919050565b60006020820190508181036000830152613adc81613555565b9050919050565b60006020820190508181036000830152613afc81613578565b9050919050565b60006020820190508181036000830152613b1c8161359b565b9050919050565b6000602082019050613b3860008301846135be565b92915050565b6000613b48613b59565b9050613b548282613deb565b919050565b6000604051905090565b600067ffffffffffffffff821115613b7e57613b7d613fb9565b5b613b8782614006565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000613be282613d60565b9150613bed83613d60565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613c2257613c21613ece565b5b828201905092915050565b6000613c3882613d60565b9150613c4383613d60565b925082613c5357613c52613efd565b5b828204905092915050565b6000613c6982613d60565b9150613c7483613d60565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613cad57613cac613ece565b5b828202905092915050565b6000613cc382613d60565b9150613cce83613d60565b925082821015613ce157613ce0613ece565b5b828203905092915050565b6000613cf782613d40565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b82818337600083830152505050565b60005b83811015613da4578082015181840152602081019050613d89565b83811115613db3576000848401525b50505050565b60006002820490506001821680613dd157607f821691505b60208210811415613de557613de4613f5b565b5b50919050565b613df482614006565b810181811067ffffffffffffffff82111715613e1357613e12613fb9565b5b80604052505050565b6000613e2782613d60565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613e5a57613e59613ece565b5b600182019050919050565b6000613e7082613e81565b9050919050565b6000819050919050565b6000613e8c82614017565b9050919050565b6000819050919050565b6000613ea882613d60565b9150613eb383613d60565b925082613ec357613ec2613efd565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f45434453413a20696e76616c6964207369676e61747572650000000000000000600082015250565b7f45434453413a20696e76616c6964207369676e6174757265206c656e67746800600082015250565b7f19457468657265756d205369676e6564204d6573736167653a0a333200000000600082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f536f6c64204f7574000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f556e7265636f676e697a61626c65204861736800000000000000000000000000600082015250565b7f496e73756666696369656e742046756e64730000000000000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4d696e74204f766572666c6f7700000000000000000000000000000000000000600082015250565b7f4e6f74204f776e65720000000000000000000000000000000000000000000000600082015250565b7f45434453413a20696e76616c6964207369676e6174757265202773272076616c60008201527f7565000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f53616c6520496e61637469766500000000000000000000000000000000000000600082015250565b7f496e6578697374616e7420546f6b656e00000000000000000000000000000000600082015250565b7f5552492069732046726f7a656e00000000000000000000000000000000000000600082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f45434453413a20696e76616c6964207369676e6174757265202776272076616c60008201527f7565000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f5265757365642048617368000000000000000000000000000000000000000000600082015250565b7f4f6e676f696e672053616c650000000000000000000000000000000000000000600082015250565b61473881613cec565b811461474357600080fd5b50565b61474f81613cfe565b811461475a57600080fd5b50565b61476681613d0a565b811461477157600080fd5b50565b61477d81613d14565b811461478857600080fd5b50565b61479481613d60565b811461479f57600080fd5b5056fea264697066735822122007b0965337a2e894c70b489cf11c58040b9be71cb700c7a85f20a9c2f1791b4f64736f6c6343000807003368747470733a2f2f6f75746b617374732e73332e75732d656173742d322e616d617a6f6e6177732e636f6d2f

Deployed Bytecode

0x6080604052600436106101d85760003560e01c8063715018a611610102578063c793803c11610095578063e985e9c511610064578063e985e9c514610677578063f2fde38b146106b4578063fa09e630146106dd578063fcd4b212146106f9576101d8565b8063c793803c146105cf578063c87b56dd146105e6578063df460e0414610623578063e08a66051461064e576101d8565b80639ea34e61116100d15780639ea34e6114610515578063a22cb46514610540578063aef18bf714610569578063b88d4fde146105a6576101d8565b8063715018a6146104915780637d8966e4146104a85780638da5cb5b146104bf57806395d89b41146104ea576101d8565b806323b872dd1161017a57806355f804b31161014957806355f804b3146103c3578063564566a8146103ec5780636352211e1461041757806370a0823114610454576101d8565b806323b872dd1461032a5780633a7aaa98146103535780633e42c1581461037e57806342842e0e1461039a576101d8565b8063081812fc116101b6578063081812fc14610270578063095ea7b3146102ad57806318160ddd146102d65780631ea33c4d14610301576101d8565b806301ffc9a7146101dd578063048046c31461021a57806306fdde0314610245575b600080fd5b3480156101e957600080fd5b5061020460048036038101906101ff9190612f3b565b610724565b60405161021191906136e1565b60405180910390f35b34801561022657600080fd5b5061022f610806565b60405161023c9190613b23565b60405180910390f35b34801561025157600080fd5b5061025a61080b565b6040516102679190613741565b60405180910390f35b34801561027c57600080fd5b5061029760048036038101906102929190612fe2565b61089d565b6040516102a4919061367a565b60405180910390f35b3480156102b957600080fd5b506102d460048036038101906102cf9190612ece565b610922565b005b3480156102e257600080fd5b506102eb610a3a565b6040516102f89190613b23565b60405180910390f35b34801561030d57600080fd5b5061032860048036038101906103239190612fe2565b610a40565b005b34801561033657600080fd5b50610351600480360381019061034c9190612db8565b610b73565b005b34801561035f57600080fd5b50610368610bd3565b60405161037591906136e1565b60405180910390f35b6103986004803603810190610393919061300f565b610be6565b005b3480156103a657600080fd5b506103c160048036038101906103bc9190612db8565b610f0e565b005b3480156103cf57600080fd5b506103ea60048036038101906103e59190612f95565b610f2e565b005b3480156103f857600080fd5b50610401611010565b60405161040e91906136e1565b60405180910390f35b34801561042357600080fd5b5061043e60048036038101906104399190612fe2565b611023565b60405161044b919061367a565b60405180910390f35b34801561046057600080fd5b5061047b60048036038101906104769190612d4b565b6110d5565b6040516104889190613b23565b60405180910390f35b34801561049d57600080fd5b506104a661118d565b005b3480156104b457600080fd5b506104bd611215565b005b3480156104cb57600080fd5b506104d46112bd565b6040516104e1919061367a565b60405180910390f35b3480156104f657600080fd5b506104ff6112e6565b60405161050c9190613741565b60405180910390f35b34801561052157600080fd5b5061052a611378565b6040516105379190613b23565b60405180910390f35b34801561054c57600080fd5b5061056760048036038101906105629190612e8e565b61137e565b005b34801561057557600080fd5b50610590600480360381019061058b9190612f0e565b6114ff565b60405161059d91906136e1565b60405180910390f35b3480156105b257600080fd5b506105cd60048036038101906105c89190612e0b565b61151f565b005b3480156105db57600080fd5b506105e4611581565b005b3480156105f257600080fd5b5061060d60048036038101906106089190612fe2565b61161a565b60405161061a9190613741565b60405180910390f35b34801561062f57600080fd5b506106386116c1565b6040516106459190613b23565b60405180910390f35b34801561065a57600080fd5b5061067560048036038101906106709190612d4b565b6116cc565b005b34801561068357600080fd5b5061069e60048036038101906106999190612d78565b61178c565b6040516106ab91906136e1565b60405180910390f35b3480156106c057600080fd5b506106db60048036038101906106d69190612d4b565b611820565b005b6106f760048036038101906106f29190612d4b565b611918565b005b34801561070557600080fd5b5061070e6119d5565b60405161071b91906136e1565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806107ef57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806107ff57506107fe826119fb565b5b9050919050565b600381565b60606001805461081a90613db9565b80601f016020809104026020016040519081016040528092919081815260200182805461084690613db9565b80156108935780601f1061086857610100808354040283529160200191610893565b820191906000526020600020905b81548152906001019060200180831161087657829003601f168201915b5050505050905090565b60006108a882611a65565b6108e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108de90613a23565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061092d82611023565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561099e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161099590613aa3565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166109bd611ad1565b73ffffffffffffffffffffffffffffffffffffffff1614806109ec57506109eb816109e6611ad1565b61178c565b5b610a2b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a2290613983565b60405180910390fd5b610a358383611ad9565b505050565b600a5481565b600b60029054906101000a900460ff16610a8f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a8690613b03565b60405180910390fd5b610a9881611a65565b610ad7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ace90613943565b60405180910390fd5b610ae081611023565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610b4d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b44906138c3565b60405180910390fd5b6001600a6000828254610b609190613cb8565b92505081905550610b7081611b92565b50565b610b84610b7e611ad1565b82611ca3565b610bc3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bba90613ac3565b60405180910390fd5b610bce838383611d81565b505050565b600b60029054906101000a900460ff1681565b600b60009054906101000a900460ff16610c35576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c2c90613923565b60405180910390fd5b61271084600a54610c469190613bd7565b1115610c87576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c7e906137c3565b60405180910390fd5b6003841115610ccb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cc2906138a3565b60405180910390fd5b348466b1a2bc2ec50000610cdf9190613c5e565b1115610d20576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d1790613843565b60405180910390fd5b6000610d2d338684611fdd565b9050600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16610dbf85858080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f820116905080830192505050505050508361203e90919063ffffffff16565b73ffffffffffffffffffffffffffffffffffffffff1614610e15576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e0c90613823565b60405180910390fd5b6007600082815260200190815260200160002060009054906101000a900460ff1615610e76576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e6d90613ae3565b60405180910390fd5b60016007600083815260200190815260200160002060006101000a81548160ff02191690831515021790555060005b85811015610ede57610ecb33600a60008154610ec090613e1c565b919050819055612065565b8080610ed690613e1c565b915050610ea5565b50612710600a541415610f07576001600b60026101000a81548160ff0219169083151502179055505b5050505050565b610f298383836040518060200160405280600081525061151f565b505050565b610f36611ad1565b73ffffffffffffffffffffffffffffffffffffffff16610f546112bd565b73ffffffffffffffffffffffffffffffffffffffff1614610faa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fa190613a43565b60405180910390fd5b600b60019054906101000a900460ff1615610ffa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ff190613963565b60405180910390fd5b81816008919061100b929190612b0e565b505050565b600b60009054906101000a900460ff1681565b6000806003600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156110cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110c3906139c3565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611146576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161113d906139a3565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611195611ad1565b73ffffffffffffffffffffffffffffffffffffffff166111b36112bd565b73ffffffffffffffffffffffffffffffffffffffff1614611209576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161120090613a43565b60405180910390fd5b6112136000612083565b565b61121d611ad1565b73ffffffffffffffffffffffffffffffffffffffff1661123b6112bd565b73ffffffffffffffffffffffffffffffffffffffff1614611291576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161128890613a43565b60405180910390fd5b600b60009054906101000a900460ff1615600b60006101000a81548160ff021916908315150217905550565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600280546112f590613db9565b80601f016020809104026020016040519081016040528092919081815260200182805461132190613db9565b801561136e5780601f106113435761010080835404028352916020019161136e565b820191906000526020600020905b81548152906001019060200180831161135157829003601f168201915b5050505050905090565b61271081565b611386611ad1565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156113f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113eb90613883565b60405180910390fd5b8060066000611401611ad1565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166114ae611ad1565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516114f391906136e1565b60405180910390a35050565b60076020528060005260406000206000915054906101000a900460ff1681565b61153061152a611ad1565b83611ca3565b61156f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161156690613ac3565b60405180910390fd5b61157b84848484612147565b50505050565b611589611ad1565b73ffffffffffffffffffffffffffffffffffffffff166115a76112bd565b73ffffffffffffffffffffffffffffffffffffffff16146115fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115f490613a43565b60405180910390fd5b6001600b60016101000a81548160ff021916908315150217905550565b606061162582611a65565b611664576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161165b90613a83565b60405180910390fd5b600061166e6121a3565b9050600081511161168e57604051806020016040528060008152506116b9565b8061169884612235565b6040516020016116a9929190613630565b6040516020818303038152906040525b915050919050565b66b1a2bc2ec5000081565b6116d4611ad1565b73ffffffffffffffffffffffffffffffffffffffff166116f26112bd565b73ffffffffffffffffffffffffffffffffffffffff1614611748576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161173f90613a43565b60405180910390fd5b80600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611828611ad1565b73ffffffffffffffffffffffffffffffffffffffff166118466112bd565b73ffffffffffffffffffffffffffffffffffffffff161461189c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161189390613a43565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561190c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611903906137e3565b60405180910390fd5b61191581612083565b50565b611920611ad1565b73ffffffffffffffffffffffffffffffffffffffff1661193e6112bd565b73ffffffffffffffffffffffffffffffffffffffff1614611994576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161198b90613a43565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f193505050506119d257600080fd5b50565b600b60019054906101000a900460ff1681565b600080823b905060008111915050919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166003600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816005600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611b4c83611023565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611b9d82611023565b9050611bab81600084612396565b611bb6600083611ad9565b6001600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611c069190613cb8565b925050819055506003600083815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff021916905581600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b6000611cae82611a65565b611ced576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ce490613903565b60405180910390fd5b6000611cf883611023565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611d6757508373ffffffffffffffffffffffffffffffffffffffff16611d4f8461089d565b73ffffffffffffffffffffffffffffffffffffffff16145b80611d785750611d77818561178c565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611da182611023565b73ffffffffffffffffffffffffffffffffffffffff1614611df7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dee90613a63565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611e67576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e5e90613863565b60405180910390fd5b611e72838383612396565b611e7d600082611ad9565b6001600460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611ecd9190613cb8565b925050819055506001600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611f249190613bd7565b92505081905550816003600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b600080848484604051602001611ff5939291906135f3565b6040516020818303038152906040528051906020012060405160200161201b9190613654565b604051602081830303815290604052805190602001209050809150509392505050565b600080600061204d858561239b565b9150915061205a8161241e565b819250505092915050565b61207f8282604051806020016040528060008152506125f3565b5050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612152848484611d81565b61215e8484848461264e565b61219d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612194906137a3565b60405180910390fd5b50505050565b6060600880546121b290613db9565b80601f01602080910402602001604051908101604052809291908181526020018280546121de90613db9565b801561222b5780601f106122005761010080835404028352916020019161222b565b820191906000526020600020905b81548152906001019060200180831161220e57829003601f168201915b5050505050905090565b6060600082141561227d576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612391565b600082905060005b600082146122af57808061229890613e1c565b915050600a826122a89190613c2d565b9150612285565b60008167ffffffffffffffff8111156122cb576122ca613fb9565b5b6040519080825280601f01601f1916602001820160405280156122fd5781602001600182028036833780820191505090505b5090505b6000851461238a576001826123169190613cb8565b9150600a856123259190613e9d565b60306123319190613bd7565b60f81b81838151811061234757612346613f8a565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856123839190613c2d565b9450612301565b8093505050505b919050565b505050565b6000806041835114156123dd5760008060006020860151925060408601519150606086015160001a90506123d1878285856127e5565b94509450505050612417565b60408351141561240e5760008060208501519150604085015190506124038683836128f2565b935093505050612417565b60006002915091505b9250929050565b6000600481111561243257612431613f2c565b5b81600481111561244557612444613f2c565b5b1415612450576125f0565b6001600481111561246457612463613f2c565b5b81600481111561247757612476613f2c565b5b14156124b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124af90613763565b60405180910390fd5b600260048111156124cc576124cb613f2c565b5b8160048111156124df576124de613f2c565b5b1415612520576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161251790613783565b60405180910390fd5b6003600481111561253457612533613f2c565b5b81600481111561254757612546613f2c565b5b1415612588576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161257f906138e3565b60405180910390fd5b60048081111561259b5761259a613f2c565b5b8160048111156125ae576125ad613f2c565b5b14156125ef576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125e6906139e3565b60405180910390fd5b5b50565b6125fd8383612940565b61260a600084848461264e565b612649576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612640906137a3565b60405180910390fd5b505050565b600061266f8473ffffffffffffffffffffffffffffffffffffffff166119e8565b156127d8578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612698611ad1565b8786866040518563ffffffff1660e01b81526004016126ba9493929190613695565b602060405180830381600087803b1580156126d457600080fd5b505af192505050801561270557506040513d601f19601f820116820180604052508101906127029190612f68565b60015b612788573d8060008114612735576040519150601f19603f3d011682016040523d82523d6000602084013e61273a565b606091505b50600081511415612780576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612777906137a3565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506127dd565b600190505b949350505050565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a08360001c11156128205760006003915091506128e9565b601b8560ff16141580156128385750601c8560ff1614155b1561284a5760006004915091506128e9565b60006001878787876040516000815260200160405260405161286f94939291906136fc565b6020604051602081039080840390855afa158015612891573d6000803e3d6000fd5b505050602060405103519050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156128e0576000600192509250506128e9565b80600092509250505b94509492505050565b6000806000807f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff85169150601b8560ff1c019050612932878288856127e5565b935093505050935093915050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156129b0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129a790613a03565b60405180910390fd5b6129b981611a65565b156129f9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129f090613803565b60405180910390fd5b612a0560008383612396565b6001600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612a559190613bd7565b92505081905550816003600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b828054612b1a90613db9565b90600052602060002090601f016020900481019282612b3c5760008555612b83565b82601f10612b5557803560ff1916838001178555612b83565b82800160010185558215612b83579182015b82811115612b82578235825591602001919060010190612b67565b5b509050612b909190612b94565b5090565b5b80821115612bad576000816000905550600101612b95565b5090565b6000612bc4612bbf84613b63565b613b3e565b905082815260208101848484011115612be057612bdf613ff7565b5b612beb848285613d77565b509392505050565b600081359050612c028161472f565b92915050565b600081359050612c1781614746565b92915050565b600081359050612c2c8161475d565b92915050565b600081359050612c4181614774565b92915050565b600081519050612c5681614774565b92915050565b60008083601f840112612c7257612c71613fed565b5b8235905067ffffffffffffffff811115612c8f57612c8e613fe8565b5b602083019150836001820283011115612cab57612caa613ff2565b5b9250929050565b600082601f830112612cc757612cc6613fed565b5b8135612cd7848260208601612bb1565b91505092915050565b60008083601f840112612cf657612cf5613fed565b5b8235905067ffffffffffffffff811115612d1357612d12613fe8565b5b602083019150836001820283011115612d2f57612d2e613ff2565b5b9250929050565b600081359050612d458161478b565b92915050565b600060208284031215612d6157612d60614001565b5b6000612d6f84828501612bf3565b91505092915050565b60008060408385031215612d8f57612d8e614001565b5b6000612d9d85828601612bf3565b9250506020612dae85828601612bf3565b9150509250929050565b600080600060608486031215612dd157612dd0614001565b5b6000612ddf86828701612bf3565b9350506020612df086828701612bf3565b9250506040612e0186828701612d36565b9150509250925092565b60008060008060808587031215612e2557612e24614001565b5b6000612e3387828801612bf3565b9450506020612e4487828801612bf3565b9350506040612e5587828801612d36565b925050606085013567ffffffffffffffff811115612e7657612e75613ffc565b5b612e8287828801612cb2565b91505092959194509250565b60008060408385031215612ea557612ea4614001565b5b6000612eb385828601612bf3565b9250506020612ec485828601612c08565b9150509250929050565b60008060408385031215612ee557612ee4614001565b5b6000612ef385828601612bf3565b9250506020612f0485828601612d36565b9150509250929050565b600060208284031215612f2457612f23614001565b5b6000612f3284828501612c1d565b91505092915050565b600060208284031215612f5157612f50614001565b5b6000612f5f84828501612c32565b91505092915050565b600060208284031215612f7e57612f7d614001565b5b6000612f8c84828501612c47565b91505092915050565b60008060208385031215612fac57612fab614001565b5b600083013567ffffffffffffffff811115612fca57612fc9613ffc565b5b612fd685828601612ce0565b92509250509250929050565b600060208284031215612ff857612ff7614001565b5b600061300684828501612d36565b91505092915050565b6000806000806060858703121561302957613028614001565b5b600061303787828801612d36565b945050602085013567ffffffffffffffff81111561305857613057613ffc565b5b61306487828801612c5c565b9350935050604061307787828801612d36565b91505092959194509250565b61308c81613cec565b82525050565b6130a361309e82613cec565b613e65565b82525050565b6130b281613cfe565b82525050565b6130c181613d0a565b82525050565b6130d86130d382613d0a565b613e77565b82525050565b60006130e982613b94565b6130f38185613baa565b9350613103818560208601613d86565b61310c81614006565b840191505092915050565b600061312282613b9f565b61312c8185613bbb565b935061313c818560208601613d86565b61314581614006565b840191505092915050565b600061315b82613b9f565b6131658185613bcc565b9350613175818560208601613d86565b80840191505092915050565b600061318e601883613bbb565b915061319982614024565b602082019050919050565b60006131b1601f83613bbb565b91506131bc8261404d565b602082019050919050565b60006131d4601c83613bcc565b91506131df82614076565b601c82019050919050565b60006131f7603283613bbb565b91506132028261409f565b604082019050919050565b600061321a600883613bbb565b9150613225826140ee565b602082019050919050565b600061323d602683613bbb565b915061324882614117565b604082019050919050565b6000613260601c83613bbb565b915061326b82614166565b602082019050919050565b6000613283601383613bbb565b915061328e8261418f565b602082019050919050565b60006132a6601283613bbb565b91506132b1826141b8565b602082019050919050565b60006132c9602483613bbb565b91506132d4826141e1565b604082019050919050565b60006132ec601983613bbb565b91506132f782614230565b602082019050919050565b600061330f600d83613bbb565b915061331a82614259565b602082019050919050565b6000613332600983613bbb565b915061333d82614282565b602082019050919050565b6000613355602283613bbb565b9150613360826142ab565b604082019050919050565b6000613378602c83613bbb565b9150613383826142fa565b604082019050919050565b600061339b600d83613bbb565b91506133a682614349565b602082019050919050565b60006133be601083613bbb565b91506133c982614372565b602082019050919050565b60006133e1600d83613bbb565b91506133ec8261439b565b602082019050919050565b6000613404603883613bbb565b915061340f826143c4565b604082019050919050565b6000613427602a83613bbb565b915061343282614413565b604082019050919050565b600061344a602983613bbb565b915061345582614462565b604082019050919050565b600061346d602283613bbb565b9150613478826144b1565b604082019050919050565b6000613490602083613bbb565b915061349b82614500565b602082019050919050565b60006134b3602c83613bbb565b91506134be82614529565b604082019050919050565b60006134d6602083613bbb565b91506134e182614578565b602082019050919050565b60006134f9602983613bbb565b9150613504826145a1565b604082019050919050565b600061351c602f83613bbb565b9150613527826145f0565b604082019050919050565b600061353f602183613bbb565b915061354a8261463f565b604082019050919050565b6000613562603183613bbb565b915061356d8261468e565b604082019050919050565b6000613585600b83613bbb565b9150613590826146dd565b602082019050919050565b60006135a8600c83613bbb565b91506135b382614706565b602082019050919050565b6135c781613d60565b82525050565b6135de6135d982613d60565b613e93565b82525050565b6135ed81613d6a565b82525050565b60006135ff8286613092565b60148201915061360f82856135cd565b60208201915061361f82846135cd565b602082019150819050949350505050565b600061363c8285613150565b91506136488284613150565b91508190509392505050565b600061365f826131c7565b915061366b82846130c7565b60208201915081905092915050565b600060208201905061368f6000830184613083565b92915050565b60006080820190506136aa6000830187613083565b6136b76020830186613083565b6136c460408301856135be565b81810360608301526136d681846130de565b905095945050505050565b60006020820190506136f660008301846130a9565b92915050565b600060808201905061371160008301876130b8565b61371e60208301866135e4565b61372b60408301856130b8565b61373860608301846130b8565b95945050505050565b6000602082019050818103600083015261375b8184613117565b905092915050565b6000602082019050818103600083015261377c81613181565b9050919050565b6000602082019050818103600083015261379c816131a4565b9050919050565b600060208201905081810360008301526137bc816131ea565b9050919050565b600060208201905081810360008301526137dc8161320d565b9050919050565b600060208201905081810360008301526137fc81613230565b9050919050565b6000602082019050818103600083015261381c81613253565b9050919050565b6000602082019050818103600083015261383c81613276565b9050919050565b6000602082019050818103600083015261385c81613299565b9050919050565b6000602082019050818103600083015261387c816132bc565b9050919050565b6000602082019050818103600083015261389c816132df565b9050919050565b600060208201905081810360008301526138bc81613302565b9050919050565b600060208201905081810360008301526138dc81613325565b9050919050565b600060208201905081810360008301526138fc81613348565b9050919050565b6000602082019050818103600083015261391c8161336b565b9050919050565b6000602082019050818103600083015261393c8161338e565b9050919050565b6000602082019050818103600083015261395c816133b1565b9050919050565b6000602082019050818103600083015261397c816133d4565b9050919050565b6000602082019050818103600083015261399c816133f7565b9050919050565b600060208201905081810360008301526139bc8161341a565b9050919050565b600060208201905081810360008301526139dc8161343d565b9050919050565b600060208201905081810360008301526139fc81613460565b9050919050565b60006020820190508181036000830152613a1c81613483565b9050919050565b60006020820190508181036000830152613a3c816134a6565b9050919050565b60006020820190508181036000830152613a5c816134c9565b9050919050565b60006020820190508181036000830152613a7c816134ec565b9050919050565b60006020820190508181036000830152613a9c8161350f565b9050919050565b60006020820190508181036000830152613abc81613532565b9050919050565b60006020820190508181036000830152613adc81613555565b9050919050565b60006020820190508181036000830152613afc81613578565b9050919050565b60006020820190508181036000830152613b1c8161359b565b9050919050565b6000602082019050613b3860008301846135be565b92915050565b6000613b48613b59565b9050613b548282613deb565b919050565b6000604051905090565b600067ffffffffffffffff821115613b7e57613b7d613fb9565b5b613b8782614006565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000613be282613d60565b9150613bed83613d60565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613c2257613c21613ece565b5b828201905092915050565b6000613c3882613d60565b9150613c4383613d60565b925082613c5357613c52613efd565b5b828204905092915050565b6000613c6982613d60565b9150613c7483613d60565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613cad57613cac613ece565b5b828202905092915050565b6000613cc382613d60565b9150613cce83613d60565b925082821015613ce157613ce0613ece565b5b828203905092915050565b6000613cf782613d40565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b82818337600083830152505050565b60005b83811015613da4578082015181840152602081019050613d89565b83811115613db3576000848401525b50505050565b60006002820490506001821680613dd157607f821691505b60208210811415613de557613de4613f5b565b5b50919050565b613df482614006565b810181811067ffffffffffffffff82111715613e1357613e12613fb9565b5b80604052505050565b6000613e2782613d60565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613e5a57613e59613ece565b5b600182019050919050565b6000613e7082613e81565b9050919050565b6000819050919050565b6000613e8c82614017565b9050919050565b6000819050919050565b6000613ea882613d60565b9150613eb383613d60565b925082613ec357613ec2613efd565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f45434453413a20696e76616c6964207369676e61747572650000000000000000600082015250565b7f45434453413a20696e76616c6964207369676e6174757265206c656e67746800600082015250565b7f19457468657265756d205369676e6564204d6573736167653a0a333200000000600082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f536f6c64204f7574000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f556e7265636f676e697a61626c65204861736800000000000000000000000000600082015250565b7f496e73756666696369656e742046756e64730000000000000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4d696e74204f766572666c6f7700000000000000000000000000000000000000600082015250565b7f4e6f74204f776e65720000000000000000000000000000000000000000000000600082015250565b7f45434453413a20696e76616c6964207369676e6174757265202773272076616c60008201527f7565000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f53616c6520496e61637469766500000000000000000000000000000000000000600082015250565b7f496e6578697374616e7420546f6b656e00000000000000000000000000000000600082015250565b7f5552492069732046726f7a656e00000000000000000000000000000000000000600082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f45434453413a20696e76616c6964207369676e6174757265202776272076616c60008201527f7565000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f5265757365642048617368000000000000000000000000000000000000000000600082015250565b7f4f6e676f696e672053616c650000000000000000000000000000000000000000600082015250565b61473881613cec565b811461474357600080fd5b50565b61474f81613cfe565b811461475a57600080fd5b50565b61476681613d0a565b811461477157600080fd5b50565b61477d81613d14565b811461478857600080fd5b50565b61479481613d60565b811461479f57600080fd5b5056fea264697066735822122007b0965337a2e894c70b489cf11c58040b9be71cb700c7a85f20a9c2f1791b4f64736f6c63430008070033

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.