ETH Price: $3,485.29 (+3.67%)
Gas: 2 Gwei

Token

Lil Demonz (DEMONZ)
 

Overview

Max Total Supply

1,490 DEMONZ

Holders

742

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
5 DEMONZ
0x9c2ce5e09611f5e7947747e0fd333e38c75910b6
Loading...
Loading
Loading...
Loading
Loading...
Loading

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

Contract Source Code Verified (Exact Match)

Contract Name:
LilDemonz

Compiler Version
v0.8.11+commit.d7f03943

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 15 : LilDemonz.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.2;

/* 
    (      (      (        (               *         )       )      )  
    )\ )   )\ )   )\ )     )\ )          (  `     ( /(    ( /(   ( /(  
    (()/(  (()/(  (()/(    (()/(    (     )\))(    )\())   )\())  )\()) 
    /(_))  /(_))  /(_))    /(_))   )\   ((_)()\  ((_)\   ((_)\  ((_)\  
    (_))   (_))   (_))     (_))_   ((_)  (_()((_)   ((_)   _((_)  _((_) 
    | |    |_ _|  | |       |   \  | __| |  \/  |  / _ \  | \| | |_  /  
    | |__   | |   | |__     | |) | | _|  | |\/| | | (_) | | .` |  / /   
    |____| |___|  |____|    |___/  |___| |_|  |_|  \___/  |_|\_| /___|  

    Lil Demonz All Rights Reserved 2022
    Developed by ATOMICON.PRO ([email protected])
*/

import "./ERC721A.sol";
import "@openzeppelin/contracts/utils/cryptography/ECDSA.sol";
import "@openzeppelin/contracts/security/ReentrancyGuard.sol";
import "@openzeppelin/contracts/utils/math/Math.sol";
import "@openzeppelin/contracts/access/Ownable.sol";

contract LilDemonz is ERC721A, Ownable, ReentrancyGuard {
    using ECDSA for bytes32;
    using Math for uint;

    // Ensures that other contracts can't call a method 
    modifier callerIsUser() {
        require(tx.origin == msg.sender, "The caller is another contract");
        _;
    }

    uint16 constant public COLLECTION_SIZE = 9999;
    uint256 constant public TOKEN_PRICE = 0.09 ether;
    
    uint8 constant public MAX_TOKENS_WHITELIST_SALE = 3;
    uint8 constant public MAX_TOKENS_PUBLIC_SALE = 2;

    uint32 public whitelistSaleStartTime = 1644768000;
    uint32 public publicSaleStartTime = 1644778800;

    uint256 private _yetToPayToDeveloper = 17.99 ether;
    address private _creatorPayoutAddress = 0x2364a6dC7b6A36002a5249Cb69e2534D569B6118;
    address private _developerPayoutAddress = 0x4E98bd082406e99A0405EdAAD0744CB2A1c4EeBA;

    bytes8 private _hashSalt = 0x59655436346a7037;
    address private _signerAddress = 0xF8595114806a464e18B7b3878d25D8B9DD46E824;

    // Ammount of tokens an address has minted during the whitelist sales
    mapping (address => uint256) private _numberMintedDuringWhitelistSale;

    // Used nonces for minting signatures    
    mapping(uint64 => bool) private _usedNonces;

    constructor() ERC721A("Lil Demonz", "DEMONZ") {}

    // Mint tokens during the sales
    function saleMint(bytes32 hash, bytes memory signature, uint64 nonce, uint256 quantity)
        external
        payable
        callerIsUser
    {
        require(totalSupply() + quantity <= COLLECTION_SIZE, "Reached max supply");
        require(msg.value == (TOKEN_PRICE * quantity), "Invalid amount of ETH sent");

        if(isPublicSaleOn())
            require(quantity <= numberAbleToMint(msg.sender), "Exceeding minting limit for this account");
        else if(isWhitelistSaleOn())
            require(quantity <= numberAbleToMint(msg.sender), "Exceeding minting limit for this account during whitelist sales");
        else
            require(false, "Sales have not begun yet");

        require(_operationHash(msg.sender, quantity, nonce) == hash, "Hash comparison failed");
        require(_isTrustedSigner(hash, signature), "Direct minting is disallowed");
        require(!_usedNonces[nonce], "Hash is already used");

        _safeMint(msg.sender, quantity);
        _usedNonces[nonce] = true;

        if(!isPublicSaleOn())
            _numberMintedDuringWhitelistSale[msg.sender] = _numberMintedDuringWhitelistSale[msg.sender] + quantity;
    }

    // Generate hash of current mint operation
    function _operationHash(address buyer, uint256 quantity, uint64 nonce) internal view returns (bytes32) {        
        uint8 saleStage;
        if(isPublicSaleOn())
            saleStage = 2;
        else if(isWhitelistSaleOn())        
            saleStage = 1;
        else 
            require(false, "Sales have not begun yet");

        return keccak256(abi.encodePacked(
            _hashSalt,
            buyer,
            uint64(block.chainid),
            uint64(saleStage),
            uint64(quantity),
            uint64(nonce)
        ));
    } 

    // Test whether a message was signed by a trusted address
    function _isTrustedSigner(bytes32 hash, bytes memory signature) internal view returns(bool) {
        return _signerAddress == ECDSA.recover(hash, signature);
    }

    // Withdraw money for developers and for creators (2% and 98%)
    function withdrawMoney() external onlyOwner nonReentrant {
        require(address(this).balance > 0, "No funds on the contract");

        if(_yetToPayToDeveloper > 0) {
            uint256 developerPayoutSum = Math.min(_yetToPayToDeveloper, address(this).balance);
            payable(_developerPayoutAddress).transfer(developerPayoutSum);
            _yetToPayToDeveloper = _yetToPayToDeveloper - developerPayoutSum;
        }

        if(address(this).balance > 0) {
            payable(_creatorPayoutAddress).transfer(address(this).balance);
        }
    }

    // Number of tokens an address can mint at the given moment
    function numberAbleToMint(address owner) public view returns (uint256) {
        if(isPublicSaleOn())
            return MAX_TOKENS_PUBLIC_SALE + numberMintedDuringWhitelistSale(owner) - numberMinted(owner);
        else if(isWhitelistSaleOn())
            return MAX_TOKENS_WHITELIST_SALE - numberMinted(owner);
        else
            return 0;
    }

    // Number of tokens minted by an address
    function numberMinted(address owner) public view returns (uint256) {
        return _numberMinted(owner);
    }

    // Number of tokens minted by an address during the whitelist sales
    function numberMintedDuringWhitelistSale(address owner) public view returns(uint256){
        return _numberMintedDuringWhitelistSale[owner];
    }

    // Change public sales start time in unix time format
    function setPublicSaleStartTime(uint32 unixTime) public onlyOwner {
        publicSaleStartTime = unixTime;
    }

    // Check whether public sales are already started
    function isPublicSaleOn() public view returns (bool) {
        return block.timestamp >= publicSaleStartTime;
    }

    // Change whitelist sales start time in unix time format
    function setWhitelistSaleStartTime(uint32 unixTime) public onlyOwner {
        whitelistSaleStartTime = unixTime;
    }

    // Check whether whitelist sales are already started
    function isWhitelistSaleOn() public view returns (bool) {
        return block.timestamp >= whitelistSaleStartTime;
    }

    function getOwnershipData(uint256 tokenId)
        external
        view
        returns (TokenOwnership memory)
    {
        return ownershipOf(tokenId);
    }

    // Token metadata folder/root URI
    string private _baseTokenURI;

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

    function setBaseURI(string calldata baseURI) external onlyOwner {
        _baseTokenURI = baseURI;
    }
}

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

File 3 of 15 : Math.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (utils/math/Math.sol)

pragma solidity ^0.8.0;

/**
 * @dev Standard math utilities missing in the Solidity language.
 */
library Math {
    /**
     * @dev Returns the largest of two numbers.
     */
    function max(uint256 a, uint256 b) internal pure returns (uint256) {
        return a >= b ? a : b;
    }

    /**
     * @dev Returns the smallest of two numbers.
     */
    function min(uint256 a, uint256 b) internal pure returns (uint256) {
        return a < b ? a : b;
    }

    /**
     * @dev Returns the average of two numbers. The result is rounded towards
     * zero.
     */
    function average(uint256 a, uint256 b) internal pure returns (uint256) {
        // (a + b) / 2 can overflow.
        return (a & b) + (a ^ b) / 2;
    }

    /**
     * @dev Returns the ceiling of the division of two numbers.
     *
     * This differs from standard division with `/` in that it rounds up instead
     * of rounding down.
     */
    function ceilDiv(uint256 a, uint256 b) internal pure returns (uint256) {
        // (a + b - 1) / b can overflow on addition, so we distribute.
        return a / b + (a % b == 0 ? 0 : 1);
    }
}

File 4 of 15 : ReentrancyGuard.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol)

pragma solidity ^0.8.0;

/**
 * @dev Contract module that helps prevent reentrant calls to a function.
 *
 * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier
 * available, which can be applied to functions to make sure there are no nested
 * (reentrant) calls to them.
 *
 * Note that because there is a single `nonReentrant` guard, functions marked as
 * `nonReentrant` may not call one another. This can be worked around by making
 * those functions `private`, and then adding `external` `nonReentrant` entry
 * points to them.
 *
 * TIP: If you would like to learn more about reentrancy and alternative ways
 * to protect against it, check out our blog post
 * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].
 */
abstract contract ReentrancyGuard {
    // Booleans are more expensive than uint256 or any type that takes up a full
    // word because each write operation emits an extra SLOAD to first read the
    // slot's contents, replace the bits taken up by the boolean, and then write
    // back. This is the compiler's defense against contract upgrades and
    // pointer aliasing, and it cannot be disabled.

    // The values being non-zero value makes deployment a bit more expensive,
    // but in exchange the refund on every call to nonReentrant will be lower in
    // amount. Since refunds are capped to a percentage of the total
    // transaction's gas, it is best to keep them low in cases like this one, to
    // increase the likelihood of the full refund coming into effect.
    uint256 private constant _NOT_ENTERED = 1;
    uint256 private constant _ENTERED = 2;

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

    /**
     * @dev Prevents a contract from calling itself, directly or indirectly.
     * Calling a `nonReentrant` function from another `nonReentrant`
     * function is not supported. It is possible to prevent this from happening
     * by making the `nonReentrant` function external, and making it call a
     * `private` function that does the actual work.
     */
    modifier nonReentrant() {
        // On the first call to nonReentrant, _notEntered will be true
        require(_status != _ENTERED, "ReentrancyGuard: reentrant call");

        // Any calls to nonReentrant after this point will fail
        _status = _ENTERED;

        _;

        // By storing the original value once again, a refund is triggered (see
        // https://eips.ethereum.org/EIPS/eip-2200)
        _status = _NOT_ENTERED;
    }
}

File 5 of 15 : ECDSA.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (utils/cryptography/ECDSA.sol)

pragma solidity ^0.8.0;

import "../Strings.sol";

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

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

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

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

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

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

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

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

        return (signer, RecoverError.NoError);
    }

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

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

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

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

File 6 of 15 : ERC721A.sol
// SPDX-License-Identifier: MIT
// Creator: Chiru Labs

pragma solidity ^0.8.0;

import '@openzeppelin/contracts/token/ERC721/IERC721.sol';
import '@openzeppelin/contracts/token/ERC721/IERC721Receiver.sol';
import '@openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol';
import '@openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable.sol';
import '@openzeppelin/contracts/utils/Address.sol';
import '@openzeppelin/contracts/utils/Context.sol';
import '@openzeppelin/contracts/utils/Strings.sol';
import '@openzeppelin/contracts/utils/introspection/ERC165.sol';

/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata and Enumerable extension. Built to optimize for lower gas during batch mints.
 *
 * Assumes serials are sequentially minted starting at 0 (e.g. 0, 1, 2, 3..).
 *
 * Does not support burning tokens to address(0).
 *
 * Assumes that an owner cannot have more than the 2**128 - 1 (max value of uint128) of supply
 */
contract ERC721A is Context, ERC165, IERC721, IERC721Metadata, IERC721Enumerable {
    using Address for address;
    using Strings for uint256;

    struct TokenOwnership {
        address addr;
        uint64 startTimestamp;
    }

    struct AddressData {
        uint128 balance;
        uint128 numberMinted;
    }

    uint256 internal currentIndex;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to ownership details
    // An empty struct value does not necessarily mean the token is unowned. See ownershipOf implementation for details.
    mapping(uint256 => TokenOwnership) internal _ownerships;

    // Mapping owner address to address data
    mapping(address => AddressData) private _addressData;

    // 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;

    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

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

    /**
     * @dev See {IERC721Enumerable-tokenByIndex}.
     */
    function tokenByIndex(uint256 index) public view override returns (uint256) {
        require(index < totalSupply(), 'ERC721A: global index out of bounds');
        return index;
    }

    /**
     * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
     * This read function is O(totalSupply). If calling from a separate contract, be sure to test gas first.
     * It may also degrade with extremely large collection sizes (e.g >> 10000), test for your use case.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) public view override returns (uint256) {
        require(index < balanceOf(owner), 'ERC721A: owner index out of bounds');
        uint256 numMintedSoFar = totalSupply();
        uint256 tokenIdsIdx;
        address currOwnershipAddr;

        // Counter overflow is impossible as the loop breaks when uint256 i is equal to another uint256 numMintedSoFar.
        unchecked {
            for (uint256 i; i < numMintedSoFar; i++) {
                TokenOwnership memory ownership = _ownerships[i];
                if (ownership.addr != address(0)) {
                    currOwnershipAddr = ownership.addr;
                }
                if (currOwnershipAddr == owner) {
                    if (tokenIdsIdx == index) {
                        return i;
                    }
                    tokenIdsIdx++;
                }
            }
        }

        revert('ERC721A: unable to get token of owner by index');
    }

    /**
     * @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 ||
            interfaceId == type(IERC721Enumerable).interfaceId ||
            super.supportsInterface(interfaceId);
    }

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

    function _numberMinted(address owner) internal view returns (uint256) {
        require(owner != address(0), 'ERC721A: number minted query for the zero address');
        return uint256(_addressData[owner].numberMinted);
    }

    /**
     * Gas spent here starts off proportional to the maximum mint batch size.
     * It gradually moves to O(1) as tokens get transferred around in the collection over time.
     */
    function ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) {
        require(_exists(tokenId), 'ERC721A: owner query for nonexistent token');

        unchecked {
            for (uint256 curr = tokenId; curr >= 0; curr--) {
                TokenOwnership memory ownership = _ownerships[curr];
                if (ownership.addr != address(0)) {
                    return ownership;
                }
            }
        }

        revert('ERC721A: unable to determine the owner of token');
    }

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view override returns (address) {
        return ownershipOf(tokenId).addr;
    }

    /**
     * @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())) : '';
        // return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, (tokenId + 1).toString(), '.json')) : '';
    }

    /**
     * @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 override {
        address owner = ERC721A.ownerOf(tokenId);
        require(to != owner, 'ERC721A: approval to current owner');

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

        _approve(to, tokenId, owner);
    }

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

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public override {
        require(operator != _msgSender(), 'ERC721A: 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 override {
        _transfer(from, to, tokenId);
    }

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

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public override {
        _transfer(from, to, tokenId);
        require(
            _checkOnERC721Received(from, to, tokenId, _data),
            'ERC721A: 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`),
     */
    function _exists(uint256 tokenId) internal view returns (bool) {
        return tokenId < currentIndex;
    }

    function _safeMint(address to, uint256 quantity) internal {
        _safeMint(to, quantity, '');
    }

    /**
     * @dev Safely mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called for each safe transfer.
     * - `quantity` must be greater than 0.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(
        address to,
        uint256 quantity,
        bytes memory _data
    ) internal {
        _mint(to, quantity, _data, true);
    }

    /**
     * @dev Mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `quantity` must be greater than 0.
     *
     * Emits a {Transfer} event.
     */
    function _mint(
        address to,
        uint256 quantity,
        bytes memory _data,
        bool safe
    ) internal {
        uint256 startTokenId = currentIndex;
        require(to != address(0), 'ERC721A: mint to the zero address');
        require(quantity != 0, 'ERC721A: quantity must be greater than 0');

        _beforeTokenTransfers(address(0), to, startTokenId, quantity);

        // Overflows are incredibly unrealistic.
        // balance or numberMinted overflow if current value of either + quantity > 3.4e38 (2**128) - 1
        // updatedIndex overflows if currentIndex + quantity > 1.56e77 (2**256) - 1
        unchecked {
            _addressData[to].balance += uint128(quantity);
            _addressData[to].numberMinted += uint128(quantity);

            _ownerships[startTokenId].addr = to;
            _ownerships[startTokenId].startTimestamp = uint64(block.timestamp);

            uint256 updatedIndex = startTokenId;

            for (uint256 i; i < quantity; i++) {
                emit Transfer(address(0), to, updatedIndex);
                if (safe) {
                    require(
                        _checkOnERC721Received(address(0), to, updatedIndex, _data),
                        'ERC721A: transfer to non ERC721Receiver implementer'
                    );
                }

                updatedIndex++;
            }

            currentIndex = updatedIndex;
        }

        _afterTokenTransfers(address(0), to, startTokenId, quantity);
    }

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *
     * 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
    ) private {
        TokenOwnership memory prevOwnership = ownershipOf(tokenId);

        bool isApprovedOrOwner = (_msgSender() == prevOwnership.addr ||
            getApproved(tokenId) == _msgSender() ||
            isApprovedForAll(prevOwnership.addr, _msgSender()));

        require(isApprovedOrOwner, 'ERC721A: transfer caller is not owner nor approved');

        require(prevOwnership.addr == from, 'ERC721A: transfer from incorrect owner');
        require(to != address(0), 'ERC721A: transfer to the zero address');

        _beforeTokenTransfers(from, to, tokenId, 1);

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

        // Underflow of the sender's balance is impossible because we check for
        // ownership above and the recipient's balance can't realistically overflow.
        // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256.
        unchecked {
            _addressData[from].balance -= 1;
            _addressData[to].balance += 1;

            _ownerships[tokenId].addr = to;
            _ownerships[tokenId].startTimestamp = uint64(block.timestamp);

            // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it.
            // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.
            uint256 nextTokenId = tokenId + 1;
            if (_ownerships[nextTokenId].addr == address(0)) {
                if (_exists(nextTokenId)) {
                    _ownerships[nextTokenId].addr = prevOwnership.addr;
                    _ownerships[nextTokenId].startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

        emit Transfer(from, to, tokenId);
        _afterTokenTransfers(from, to, tokenId, 1);
    }

    /**
     * @dev Approve `to` to operate on `tokenId`
     *
     * Emits a {Approval} event.
     */
    function _approve(
        address to,
        uint256 tokenId,
        address owner
    ) private {
        _tokenApprovals[tokenId] = to;
        emit Approval(owner, 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(to).onERC721Received.selector;
            } catch (bytes memory reason) {
                if (reason.length == 0) {
                    revert('ERC721A: transfer to non ERC721Receiver implementer');
                } else {
                    assembly {
                        revert(add(32, reason), mload(reason))
                    }
                }
            }
        } else {
            return true;
        }
    }

    /**
     * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting.
     *
     * startTokenId - the first token id to be transferred
     * quantity - the amount to be transferred
     *
     * 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`.
     */
    function _beforeTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}

    /**
     * @dev Hook that is called after a set of serially-ordered token ids have been transferred. This includes
     * minting.
     *
     * startTokenId - the first token id to be transferred
     * quantity - the amount to be transferred
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero.
     * - `from` and `to` are never both zero.
     */
    function _afterTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}
}

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

pragma solidity ^0.8.0;

import "./IERC165.sol";

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

File 8 of 15 : Strings.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Strings.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

pragma solidity ^0.8.1;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     *
     * [IMPORTANT]
     * ====
     * You shouldn't rely on `isContract` to protect against flash loan attacks!
     *
     * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
     * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
     * constructor.
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize/address.code.length, which returns 0
        // for contracts in construction, since the code is only stored at the end
        // of the constructor execution.

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

import "../IERC721.sol";

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

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

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

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

pragma solidity ^0.8.0;

import "../IERC721.sol";

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

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

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

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

pragma solidity ^0.8.0;

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

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":"COLLECTION_SIZE","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_TOKENS_PUBLIC_SALE","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_TOKENS_WHITELIST_SALE","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"TOKEN_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":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getOwnershipData","outputs":[{"components":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"uint64","name":"startTimestamp","type":"uint64"}],"internalType":"struct ERC721A.TokenOwnership","name":"","type":"tuple"}],"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":"isPublicSaleOn","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isWhitelistSaleOn","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"numberAbleToMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"numberMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"numberMintedDuringWhitelistSale","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicSaleStartTime","outputs":[{"internalType":"uint32","name":"","type":"uint32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"hash","type":"bytes32"},{"internalType":"bytes","name":"signature","type":"bytes"},{"internalType":"uint64","name":"nonce","type":"uint64"},{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"saleMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint32","name":"unixTime","type":"uint32"}],"name":"setPublicSaleStartTime","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint32","name":"unixTime","type":"uint32"}],"name":"setWhitelistSaleStartTime","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"whitelistSaleStartTime","outputs":[{"internalType":"uint32","name":"","type":"uint32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdrawMoney","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526362092b00600960006101000a81548163ffffffff021916908363ffffffff1602179055506362095530600960046101000a81548163ffffffff021916908363ffffffff16021790555067f9a951af55470000600a55732364a6dc7b6a36002a5249cb69e2534d569b6118600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550734e98bd082406e99a0405edaad0744cb2a1c4eeba600c60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506759655436346a703760c01b600c60146101000a81548167ffffffffffffffff021916908360c01c021790555073f8595114806a464e18b7b3878d25d8b9dd46e824600d60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055503480156200019357600080fd5b506040518060400160405280600a81526020017f4c696c2044656d6f6e7a000000000000000000000000000000000000000000008152506040518060400160405280600681526020017f44454d4f4e5a000000000000000000000000000000000000000000000000000081525081600190805190602001906200021892919062000330565b5080600290805190602001906200023192919062000330565b50505062000254620002486200026260201b60201c565b6200026a60201b60201c565b600160088190555062000445565b600033905090565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200033e906200040f565b90600052602060002090601f016020900481019282620003625760008555620003ae565b82601f106200037d57805160ff1916838001178555620003ae565b82800160010185558215620003ae579182015b82811115620003ad57825182559160200191906001019062000390565b5b509050620003bd9190620003c1565b5090565b5b80821115620003dc576000816000905550600101620003c2565b5090565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200042857607f821691505b602082108114156200043f576200043e620003e0565b5b50919050565b61561e80620004556000396000f3fe60806040526004361061020f5760003560e01c8063715018a611610118578063b88d4fde116100a0578063dc33e6811161006f578063dc33e681146107c5578063e985e9c514610802578063f2fde38b1461083f578063fd0525bc14610868578063fd0daa57146108845761020f565b8063b88d4fde14610709578063c87b56dd14610732578063d2d8cb671461076f578063d8258d951461079a5761020f565b806395d89b41116100e757806395d89b41146106365780639737e73014610661578063a22cb4651461069e578063ac446002146106c7578063ac5227cf146106de5761020f565b8063715018a61461058e5780637de86909146105a55780638da5cb5b146105ce5780639231ab2a146105f95761020f565b80633f5e47411161019b5780635f31c7fb1161016a5780635f31c7fb146104955780635fd84c28146104c05780636352211e146104e95780636bb7b1d91461052657806370a08231146105515761020f565b80633f5e4741146103db57806342842e0e146104065780634f6ccce71461042f57806355f804b31461046c5761020f565b806317bb0556116101e257806317bb0556146102e257806318160ddd1461031f578063230b43f41461034a57806323b872dd146103755780632f745c591461039e5761020f565b806301ffc9a71461021457806306fdde0314610251578063081812fc1461027c578063095ea7b3146102b9575b600080fd5b34801561022057600080fd5b5061023b600480360381019061023691906135fb565b6108af565b6040516102489190613643565b60405180910390f35b34801561025d57600080fd5b506102666109f9565b60405161027391906136f7565b60405180910390f35b34801561028857600080fd5b506102a3600480360381019061029e919061374f565b610a8b565b6040516102b091906137bd565b60405180910390f35b3480156102c557600080fd5b506102e060048036038101906102db9190613804565b610b10565b005b3480156102ee57600080fd5b5061030960048036038101906103049190613844565b610c29565b6040516103169190613880565b60405180910390f35b34801561032b57600080fd5b50610334610c72565b6040516103419190613880565b60405180910390f35b34801561035657600080fd5b5061035f610c7b565b60405161036c91906138ba565b60405180910390f35b34801561038157600080fd5b5061039c600480360381019061039791906138d5565b610c91565b005b3480156103aa57600080fd5b506103c560048036038101906103c09190613804565b610ca1565b6040516103d29190613880565b60405180910390f35b3480156103e757600080fd5b506103f0610e93565b6040516103fd9190613643565b60405180910390f35b34801561041257600080fd5b5061042d600480360381019061042891906138d5565b610eb6565b005b34801561043b57600080fd5b506104566004803603810190610451919061374f565b610ed6565b6040516104639190613880565b60405180910390f35b34801561047857600080fd5b50610493600480360381019061048e919061398d565b610f29565b005b3480156104a157600080fd5b506104aa610fbb565b6040516104b791906139f6565b60405180910390f35b3480156104cc57600080fd5b506104e760048036038101906104e29190613a3d565b610fc0565b005b3480156104f557600080fd5b50610510600480360381019061050b919061374f565b611060565b60405161051d91906137bd565b60405180910390f35b34801561053257600080fd5b5061053b611076565b60405161054891906138ba565b60405180910390f35b34801561055d57600080fd5b5061057860048036038101906105739190613844565b61108c565b6040516105859190613880565b60405180910390f35b34801561059a57600080fd5b506105a3611175565b005b3480156105b157600080fd5b506105cc60048036038101906105c79190613a3d565b6111fd565b005b3480156105da57600080fd5b506105e361129d565b6040516105f091906137bd565b60405180910390f35b34801561060557600080fd5b50610620600480360381019061061b919061374f565b6112c7565b60405161062d9190613acb565b60405180910390f35b34801561064257600080fd5b5061064b6112df565b60405161065891906136f7565b60405180910390f35b34801561066d57600080fd5b5061068860048036038101906106839190613844565b611371565b6040516106959190613880565b60405180910390f35b3480156106aa57600080fd5b506106c560048036038101906106c09190613b12565b6113e8565b005b3480156106d357600080fd5b506106dc611569565b005b3480156106ea57600080fd5b506106f361178d565b6040516107009190613643565b60405180910390f35b34801561071557600080fd5b50610730600480360381019061072b9190613c82565b6117b0565b005b34801561073e57600080fd5b506107596004803603810190610754919061374f565b61180c565b60405161076691906136f7565b60405180910390f35b34801561077b57600080fd5b506107846118b4565b6040516107919190613880565b60405180910390f35b3480156107a657600080fd5b506107af6118c0565b6040516107bc9190613d22565b60405180910390f35b3480156107d157600080fd5b506107ec60048036038101906107e79190613844565b6118c6565b6040516107f99190613880565b60405180910390f35b34801561080e57600080fd5b5061082960048036038101906108249190613d3d565b6118d8565b6040516108369190613643565b60405180910390f35b34801561084b57600080fd5b5061086660048036038101906108619190613844565b61196c565b005b610882600480360381019061087d9190613ddf565b611a64565b005b34801561089057600080fd5b50610899611e74565b6040516108a691906139f6565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061097a57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806109e257507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806109f257506109f182611e79565b5b9050919050565b606060018054610a0890613e91565b80601f0160208091040260200160405190810160405280929190818152602001828054610a3490613e91565b8015610a815780601f10610a5657610100808354040283529160200191610a81565b820191906000526020600020905b815481529060010190602001808311610a6457829003601f168201915b5050505050905090565b6000610a9682611ee3565b610ad5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610acc90613f35565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610b1b82611060565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610b8c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b8390613fc7565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610bab611ef0565b73ffffffffffffffffffffffffffffffffffffffff161480610bda5750610bd981610bd4611ef0565b6118d8565b5b610c19576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c1090614059565b60405180910390fd5b610c24838383611ef8565b505050565b6000600e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b60008054905090565b600960009054906101000a900463ffffffff1681565b610c9c838383611faa565b505050565b6000610cac8361108c565b8210610ced576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ce4906140eb565b60405180910390fd5b6000610cf7610c72565b905060008060005b83811015610e51576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614610df157806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610e435786841415610e3a578195505050505050610e8d565b83806001019450505b508080600101915050610cff565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e849061417d565b60405180910390fd5b92915050565b6000600960049054906101000a900463ffffffff1663ffffffff16421015905090565b610ed1838383604051806020016040528060008152506117b0565b505050565b6000610ee0610c72565b8210610f21576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f189061420f565b60405180910390fd5b819050919050565b610f31611ef0565b73ffffffffffffffffffffffffffffffffffffffff16610f4f61129d565b73ffffffffffffffffffffffffffffffffffffffff1614610fa5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f9c9061427b565b60405180910390fd5b818160109190610fb69291906134b2565b505050565b600381565b610fc8611ef0565b73ffffffffffffffffffffffffffffffffffffffff16610fe661129d565b73ffffffffffffffffffffffffffffffffffffffff161461103c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110339061427b565b60405180910390fd5b80600960046101000a81548163ffffffff021916908363ffffffff16021790555050565b600061106b826124ea565b600001519050919050565b600960049054906101000a900463ffffffff1681565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156110fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110f49061430d565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b61117d611ef0565b73ffffffffffffffffffffffffffffffffffffffff1661119b61129d565b73ffffffffffffffffffffffffffffffffffffffff16146111f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111e89061427b565b60405180910390fd5b6111fb6000612684565b565b611205611ef0565b73ffffffffffffffffffffffffffffffffffffffff1661122361129d565b73ffffffffffffffffffffffffffffffffffffffff1614611279576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112709061427b565b60405180910390fd5b80600960006101000a81548163ffffffff021916908363ffffffff16021790555050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6112cf613538565b6112d8826124ea565b9050919050565b6060600280546112ee90613e91565b80601f016020809104026020016040519081016040528092919081815260200182805461131a90613e91565b80156113675780601f1061133c57610100808354040283529160200191611367565b820191906000526020600020905b81548152906001019060200180831161134a57829003601f168201915b5050505050905090565b600061137b610e93565b156113b257611389826118c6565b61139283610c29565b600260ff166113a1919061435c565b6113ab91906143b2565b90506113e3565b6113ba61178d565b156113de576113c8826118c6565b600360ff166113d791906143b2565b90506113e3565b600090505b919050565b6113f0611ef0565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561145e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161145590614432565b60405180910390fd5b806006600061146b611ef0565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611518611ef0565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161155d9190613643565b60405180910390a35050565b611571611ef0565b73ffffffffffffffffffffffffffffffffffffffff1661158f61129d565b73ffffffffffffffffffffffffffffffffffffffff16146115e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115dc9061427b565b60405180910390fd5b6002600854141561162b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116229061449e565b60405180910390fd5b600260088190555060004711611676576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161166d9061450a565b60405180910390fd5b6000600a54111561171057600061168f600a544761274a565b9050600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f193505050501580156116f9573d6000803e3d6000fd5b5080600a5461170891906143b2565b600a81905550505b600047111561178357600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015611781573d6000803e3d6000fd5b505b6001600881905550565b6000600960009054906101000a900463ffffffff1663ffffffff16421015905090565b6117bb848484611faa565b6117c784848484612763565b611806576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117fd9061459c565b60405180910390fd5b50505050565b606061181782611ee3565b611856576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161184d9061462e565b60405180910390fd5b60006118606128eb565b905060008151141561188157604051806020016040528060008152506118ac565b8061188b8461297d565b60405160200161189c92919061468a565b6040516020818303038152906040525b915050919050565b67013fbe85edc9000081565b61270f81565b60006118d182612ade565b9050919050565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611974611ef0565b73ffffffffffffffffffffffffffffffffffffffff1661199261129d565b73ffffffffffffffffffffffffffffffffffffffff16146119e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119df9061427b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611a58576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a4f90614720565b60405180910390fd5b611a6181612684565b50565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614611ad2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ac99061478c565b60405180910390fd5b61270f61ffff1681611ae2610c72565b611aec919061435c565b1115611b2d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b24906147f8565b60405180910390fd5b8067013fbe85edc90000611b419190614818565b3414611b82576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b79906148be565b60405180910390fd5b611b8a610e93565b15611bdf57611b9833611371565b811115611bda576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bd190614950565b60405180910390fd5b611c7f565b611be761178d565b15611c3c57611bf533611371565b811115611c37576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c2e906149e2565b60405180910390fd5b611c7e565b6000611c7d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c7490614a4e565b60405180910390fd5b5b5b83611c8b338385612bc7565b14611ccb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cc290614aba565b60405180910390fd5b611cd58484612c86565b611d14576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d0b90614b26565b60405180910390fd5b600f60008367ffffffffffffffff1667ffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615611d89576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d8090614b92565b60405180910390fd5b611d933382612cea565b6001600f60008467ffffffffffffffff1667ffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550611ddb610e93565b611e6e5780600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611e2a919061435c565b600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b50505050565b600281565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000805482109050919050565b600033905090565b826005600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000611fb5826124ea565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff16611fdc611ef0565b73ffffffffffffffffffffffffffffffffffffffff1614806120385750612001611ef0565b73ffffffffffffffffffffffffffffffffffffffff1661202084610a8b565b73ffffffffffffffffffffffffffffffffffffffff16145b806120545750612053826000015161204e611ef0565b6118d8565b5b905080612096576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161208d90614c24565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614612108576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120ff90614cb6565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612178576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161216f90614d48565b60405180910390fd5b6121858585856001612d08565b6121956000848460000151611ef8565b6001600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160392506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550836003600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141561247a576123d981611ee3565b156124795782600001516003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46124e38585856001612d0e565b5050505050565b6124f2613538565b6124fb82611ee3565b61253a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161253190614dda565b60405180910390fd5b60008290505b60008110612643576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461263457809250505061267f565b50808060019003915050612540565b506040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161267690614e6c565b60405180910390fd5b919050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000818310612759578161275b565b825b905092915050565b60006127848473ffffffffffffffffffffffffffffffffffffffff16612d14565b156128de578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026127ad611ef0565b8786866040518563ffffffff1660e01b81526004016127cf9493929190614ee1565b6020604051808303816000875af192505050801561280b57506040513d601f19601f820116820180604052508101906128089190614f42565b60015b61288e573d806000811461283b576040519150601f19603f3d011682016040523d82523d6000602084013e612840565b606091505b50600081511415612886576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161287d9061459c565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506128e3565b600190505b949350505050565b6060601080546128fa90613e91565b80601f016020809104026020016040519081016040528092919081815260200182805461292690613e91565b80156129735780601f1061294857610100808354040283529160200191612973565b820191906000526020600020905b81548152906001019060200180831161295657829003601f168201915b5050505050905090565b606060008214156129c5576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612ad9565b600082905060005b600082146129f75780806129e090614f6f565b915050600a826129f09190614fe7565b91506129cd565b60008167ffffffffffffffff811115612a1357612a12613b57565b5b6040519080825280601f01601f191660200182016040528015612a455781602001600182028036833780820191505090505b5090505b60008514612ad257600182612a5e91906143b2565b9150600a85612a6d9190615018565b6030612a79919061435c565b60f81b818381518110612a8f57612a8e615049565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612acb9190614fe7565b9450612a49565b8093505050505b919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612b4f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b46906150ea565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b600080612bd2610e93565b15612be05760029050612c39565b612be861178d565b15612bf65760019050612c38565b6000612c37576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c2e90614a4e565b60405180910390fd5b5b5b600c60149054906101000a900460c01b85468360ff168787604051602001612c66969594939291906151d5565b604051602081830303815290604052805190602001209150509392505050565b6000612c928383612d37565b73ffffffffffffffffffffffffffffffffffffffff16600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614905092915050565b612d04828260405180602001604052806000815250612d5e565b5050565b50505050565b50505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b6000806000612d468585612d70565b91509150612d5381612df3565b819250505092915050565b612d6b8383836001612fc8565b505050565b600080604183511415612db25760008060006020860151925060408601519150606086015160001a9050612da687828585613346565b94509450505050612dec565b604083511415612de3576000806020850151915060408501519050612dd8868383613453565b935093505050612dec565b60006002915091505b9250929050565b60006004811115612e0757612e06615245565b5b816004811115612e1a57612e19615245565b5b1415612e2557612fc5565b60016004811115612e3957612e38615245565b5b816004811115612e4c57612e4b615245565b5b1415612e8d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e84906152c0565b60405180910390fd5b60026004811115612ea157612ea0615245565b5b816004811115612eb457612eb3615245565b5b1415612ef5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612eec9061532c565b60405180910390fd5b60036004811115612f0957612f08615245565b5b816004811115612f1c57612f1b615245565b5b1415612f5d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f54906153be565b60405180910390fd5b600480811115612f7057612f6f615245565b5b816004811115612f8357612f82615245565b5b1415612fc4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612fbb90615450565b60405180910390fd5b5b50565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16141561303e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613035906154e2565b60405180910390fd5b6000841415613082576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161307990615574565b60405180910390fd5b61308f6000868387612d08565b83600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555083600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160108282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550846003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060005b8581101561332957818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a48315613314576132d46000888488612763565b613313576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161330a9061459c565b60405180910390fd5b5b8180600101925050808060010191505061325d565b50806000819055505061333f6000868387612d0e565b5050505050565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a08360001c111561338157600060039150915061344a565b601b8560ff16141580156133995750601c8560ff1614155b156133ab57600060049150915061344a565b6000600187878787604051600081526020016040526040516133d094939291906155a3565b6020604051602081039080840390855afa1580156133f2573d6000803e3d6000fd5b505050602060405103519050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156134415760006001925092505061344a565b80600092509250505b94509492505050565b60008060007f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff60001b841690506000601b60ff8660001c901c613496919061435c565b90506134a487828885613346565b935093505050935093915050565b8280546134be90613e91565b90600052602060002090601f0160209004810192826134e05760008555613527565b82601f106134f957803560ff1916838001178555613527565b82800160010185558215613527579182015b8281111561352657823582559160200191906001019061350b565b5b5090506135349190613572565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b8082111561358b576000816000905550600101613573565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6135d8816135a3565b81146135e357600080fd5b50565b6000813590506135f5816135cf565b92915050565b60006020828403121561361157613610613599565b5b600061361f848285016135e6565b91505092915050565b60008115159050919050565b61363d81613628565b82525050565b60006020820190506136586000830184613634565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561369857808201518184015260208101905061367d565b838111156136a7576000848401525b50505050565b6000601f19601f8301169050919050565b60006136c98261365e565b6136d38185613669565b93506136e381856020860161367a565b6136ec816136ad565b840191505092915050565b6000602082019050818103600083015261371181846136be565b905092915050565b6000819050919050565b61372c81613719565b811461373757600080fd5b50565b60008135905061374981613723565b92915050565b60006020828403121561376557613764613599565b5b60006137738482850161373a565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006137a78261377c565b9050919050565b6137b78161379c565b82525050565b60006020820190506137d260008301846137ae565b92915050565b6137e18161379c565b81146137ec57600080fd5b50565b6000813590506137fe816137d8565b92915050565b6000806040838503121561381b5761381a613599565b5b6000613829858286016137ef565b925050602061383a8582860161373a565b9150509250929050565b60006020828403121561385a57613859613599565b5b6000613868848285016137ef565b91505092915050565b61387a81613719565b82525050565b60006020820190506138956000830184613871565b92915050565b600063ffffffff82169050919050565b6138b48161389b565b82525050565b60006020820190506138cf60008301846138ab565b92915050565b6000806000606084860312156138ee576138ed613599565b5b60006138fc868287016137ef565b935050602061390d868287016137ef565b925050604061391e8682870161373a565b9150509250925092565b600080fd5b600080fd5b600080fd5b60008083601f84011261394d5761394c613928565b5b8235905067ffffffffffffffff81111561396a5761396961392d565b5b60208301915083600182028301111561398657613985613932565b5b9250929050565b600080602083850312156139a4576139a3613599565b5b600083013567ffffffffffffffff8111156139c2576139c161359e565b5b6139ce85828601613937565b92509250509250929050565b600060ff82169050919050565b6139f0816139da565b82525050565b6000602082019050613a0b60008301846139e7565b92915050565b613a1a8161389b565b8114613a2557600080fd5b50565b600081359050613a3781613a11565b92915050565b600060208284031215613a5357613a52613599565b5b6000613a6184828501613a28565b91505092915050565b613a738161379c565b82525050565b600067ffffffffffffffff82169050919050565b613a9681613a79565b82525050565b604082016000820151613ab26000850182613a6a565b506020820151613ac56020850182613a8d565b50505050565b6000604082019050613ae06000830184613a9c565b92915050565b613aef81613628565b8114613afa57600080fd5b50565b600081359050613b0c81613ae6565b92915050565b60008060408385031215613b2957613b28613599565b5b6000613b37858286016137ef565b9250506020613b4885828601613afd565b9150509250929050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b613b8f826136ad565b810181811067ffffffffffffffff82111715613bae57613bad613b57565b5b80604052505050565b6000613bc161358f565b9050613bcd8282613b86565b919050565b600067ffffffffffffffff821115613bed57613bec613b57565b5b613bf6826136ad565b9050602081019050919050565b82818337600083830152505050565b6000613c25613c2084613bd2565b613bb7565b905082815260208101848484011115613c4157613c40613b52565b5b613c4c848285613c03565b509392505050565b600082601f830112613c6957613c68613928565b5b8135613c79848260208601613c12565b91505092915050565b60008060008060808587031215613c9c57613c9b613599565b5b6000613caa878288016137ef565b9450506020613cbb878288016137ef565b9350506040613ccc8782880161373a565b925050606085013567ffffffffffffffff811115613ced57613cec61359e565b5b613cf987828801613c54565b91505092959194509250565b600061ffff82169050919050565b613d1c81613d05565b82525050565b6000602082019050613d376000830184613d13565b92915050565b60008060408385031215613d5457613d53613599565b5b6000613d62858286016137ef565b9250506020613d73858286016137ef565b9150509250929050565b6000819050919050565b613d9081613d7d565b8114613d9b57600080fd5b50565b600081359050613dad81613d87565b92915050565b613dbc81613a79565b8114613dc757600080fd5b50565b600081359050613dd981613db3565b92915050565b60008060008060808587031215613df957613df8613599565b5b6000613e0787828801613d9e565b945050602085013567ffffffffffffffff811115613e2857613e2761359e565b5b613e3487828801613c54565b9350506040613e4587828801613dca565b9250506060613e568782880161373a565b91505092959194509250565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680613ea957607f821691505b60208210811415613ebd57613ebc613e62565b5b50919050565b7f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b6000613f1f602d83613669565b9150613f2a82613ec3565b604082019050919050565b60006020820190508181036000830152613f4e81613f12565b9050919050565b7f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b6000613fb1602283613669565b9150613fbc82613f55565b604082019050919050565b60006020820190508181036000830152613fe081613fa4565b9050919050565b7f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000602082015250565b6000614043603983613669565b915061404e82613fe7565b604082019050919050565b6000602082019050818103600083015261407281614036565b9050919050565b7f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b60006140d5602283613669565b91506140e082614079565b604082019050919050565b60006020820190508181036000830152614104816140c8565b9050919050565b7f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008201527f6f776e657220627920696e646578000000000000000000000000000000000000602082015250565b6000614167602e83613669565b91506141728261410b565b604082019050919050565b600060208201905081810360008301526141968161415a565b9050919050565b7f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008201527f6e64730000000000000000000000000000000000000000000000000000000000602082015250565b60006141f9602383613669565b91506142048261419d565b604082019050919050565b60006020820190508181036000830152614228816141ec565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000614265602083613669565b91506142708261422f565b602082019050919050565b6000602082019050818103600083015261429481614258565b9050919050565b7f455243373231413a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b60006142f7602b83613669565b91506143028261429b565b604082019050919050565b60006020820190508181036000830152614326816142ea565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061436782613719565b915061437283613719565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156143a7576143a661432d565b5b828201905092915050565b60006143bd82613719565b91506143c883613719565b9250828210156143db576143da61432d565b5b828203905092915050565b7f455243373231413a20617070726f766520746f2063616c6c6572000000000000600082015250565b600061441c601a83613669565b9150614427826143e6565b602082019050919050565b6000602082019050818103600083015261444b8161440f565b9050919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b6000614488601f83613669565b915061449382614452565b602082019050919050565b600060208201905081810360008301526144b78161447b565b9050919050565b7f4e6f2066756e6473206f6e2074686520636f6e74726163740000000000000000600082015250565b60006144f4601883613669565b91506144ff826144be565b602082019050919050565b60006020820190508181036000830152614523816144e7565b9050919050565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b6000614586603383613669565b91506145918261452a565b604082019050919050565b600060208201905081810360008301526145b581614579565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b6000614618602f83613669565b9150614623826145bc565b604082019050919050565b600060208201905081810360008301526146478161460b565b9050919050565b600081905092915050565b60006146648261365e565b61466e818561464e565b935061467e81856020860161367a565b80840191505092915050565b60006146968285614659565b91506146a28284614659565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061470a602683613669565b9150614715826146ae565b604082019050919050565b60006020820190508181036000830152614739816146fd565b9050919050565b7f5468652063616c6c657220697320616e6f7468657220636f6e74726163740000600082015250565b6000614776601e83613669565b915061478182614740565b602082019050919050565b600060208201905081810360008301526147a581614769565b9050919050565b7f52656163686564206d617820737570706c790000000000000000000000000000600082015250565b60006147e2601283613669565b91506147ed826147ac565b602082019050919050565b60006020820190508181036000830152614811816147d5565b9050919050565b600061482382613719565b915061482e83613719565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156148675761486661432d565b5b828202905092915050565b7f496e76616c696420616d6f756e74206f66204554482073656e74000000000000600082015250565b60006148a8601a83613669565b91506148b382614872565b602082019050919050565b600060208201905081810360008301526148d78161489b565b9050919050565b7f457863656564696e67206d696e74696e67206c696d697420666f72207468697360008201527f206163636f756e74000000000000000000000000000000000000000000000000602082015250565b600061493a602883613669565b9150614945826148de565b604082019050919050565b600060208201905081810360008301526149698161492d565b9050919050565b7f457863656564696e67206d696e74696e67206c696d697420666f72207468697360008201527f206163636f756e7420647572696e672077686974656c6973742073616c657300602082015250565b60006149cc603f83613669565b91506149d782614970565b604082019050919050565b600060208201905081810360008301526149fb816149bf565b9050919050565b7f53616c65732068617665206e6f7420626567756e207965740000000000000000600082015250565b6000614a38601883613669565b9150614a4382614a02565b602082019050919050565b60006020820190508181036000830152614a6781614a2b565b9050919050565b7f4861736820636f6d70617269736f6e206661696c656400000000000000000000600082015250565b6000614aa4601683613669565b9150614aaf82614a6e565b602082019050919050565b60006020820190508181036000830152614ad381614a97565b9050919050565b7f446972656374206d696e74696e6720697320646973616c6c6f77656400000000600082015250565b6000614b10601c83613669565b9150614b1b82614ada565b602082019050919050565b60006020820190508181036000830152614b3f81614b03565b9050919050565b7f4861736820697320616c72656164792075736564000000000000000000000000600082015250565b6000614b7c601483613669565b9150614b8782614b46565b602082019050919050565b60006020820190508181036000830152614bab81614b6f565b9050919050565b7f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b6000614c0e603283613669565b9150614c1982614bb2565b604082019050919050565b60006020820190508181036000830152614c3d81614c01565b9050919050565b7f455243373231413a207472616e736665722066726f6d20696e636f727265637460008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b6000614ca0602683613669565b9150614cab82614c44565b604082019050919050565b60006020820190508181036000830152614ccf81614c93565b9050919050565b7f455243373231413a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000614d32602583613669565b9150614d3d82614cd6565b604082019050919050565b60006020820190508181036000830152614d6181614d25565b9050919050565b7f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008201527f74656e7420746f6b656e00000000000000000000000000000000000000000000602082015250565b6000614dc4602a83613669565b9150614dcf82614d68565b604082019050919050565b60006020820190508181036000830152614df381614db7565b9050919050565b7f455243373231413a20756e61626c6520746f2064657465726d696e652074686560008201527f206f776e6572206f6620746f6b656e0000000000000000000000000000000000602082015250565b6000614e56602f83613669565b9150614e6182614dfa565b604082019050919050565b60006020820190508181036000830152614e8581614e49565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000614eb382614e8c565b614ebd8185614e97565b9350614ecd81856020860161367a565b614ed6816136ad565b840191505092915050565b6000608082019050614ef660008301876137ae565b614f0360208301866137ae565b614f106040830185613871565b8181036060830152614f228184614ea8565b905095945050505050565b600081519050614f3c816135cf565b92915050565b600060208284031215614f5857614f57613599565b5b6000614f6684828501614f2d565b91505092915050565b6000614f7a82613719565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614fad57614fac61432d565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000614ff282613719565b9150614ffd83613719565b92508261500d5761500c614fb8565b5b828204905092915050565b600061502382613719565b915061502e83613719565b92508261503e5761503d614fb8565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f455243373231413a206e756d626572206d696e74656420717565727920666f7260008201527f20746865207a65726f2061646472657373000000000000000000000000000000602082015250565b60006150d4603183613669565b91506150df82615078565b604082019050919050565b60006020820190508181036000830152615103816150c7565b9050919050565b60007fffffffffffffffff00000000000000000000000000000000000000000000000082169050919050565b6000819050919050565b61515161514c8261510a565b615136565b82525050565b60008160601b9050919050565b600061516f82615157565b9050919050565b600061518182615164565b9050919050565b6151996151948261379c565b615176565b82525050565b60008160c01b9050919050565b60006151b78261519f565b9050919050565b6151cf6151ca82613a79565b6151ac565b82525050565b60006151e18289615140565b6008820191506151f18288615188565b60148201915061520182876151be565b60088201915061521182866151be565b60088201915061522182856151be565b60088201915061523182846151be565b600882019150819050979650505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b7f45434453413a20696e76616c6964207369676e61747572650000000000000000600082015250565b60006152aa601883613669565b91506152b582615274565b602082019050919050565b600060208201905081810360008301526152d98161529d565b9050919050565b7f45434453413a20696e76616c6964207369676e6174757265206c656e67746800600082015250565b6000615316601f83613669565b9150615321826152e0565b602082019050919050565b6000602082019050818103600083015261534581615309565b9050919050565b7f45434453413a20696e76616c6964207369676e6174757265202773272076616c60008201527f7565000000000000000000000000000000000000000000000000000000000000602082015250565b60006153a8602283613669565b91506153b38261534c565b604082019050919050565b600060208201905081810360008301526153d78161539b565b9050919050565b7f45434453413a20696e76616c6964207369676e6174757265202776272076616c60008201527f7565000000000000000000000000000000000000000000000000000000000000602082015250565b600061543a602283613669565b9150615445826153de565b604082019050919050565b600060208201905081810360008301526154698161542d565b9050919050565b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b60006154cc602183613669565b91506154d782615470565b604082019050919050565b600060208201905081810360008301526154fb816154bf565b9050919050565b7f455243373231413a207175616e74697479206d7573742062652067726561746560008201527f72207468616e2030000000000000000000000000000000000000000000000000602082015250565b600061555e602883613669565b915061556982615502565b604082019050919050565b6000602082019050818103600083015261558d81615551565b9050919050565b61559d81613d7d565b82525050565b60006080820190506155b86000830187615594565b6155c560208301866139e7565b6155d26040830185615594565b6155df6060830184615594565b9594505050505056fea26469706673582212209ceb8f6d351629f397db01a5a33af5e2d5606663fd568e3bb92e2ecb655ca2be64736f6c634300080b0033

Deployed Bytecode

0x60806040526004361061020f5760003560e01c8063715018a611610118578063b88d4fde116100a0578063dc33e6811161006f578063dc33e681146107c5578063e985e9c514610802578063f2fde38b1461083f578063fd0525bc14610868578063fd0daa57146108845761020f565b8063b88d4fde14610709578063c87b56dd14610732578063d2d8cb671461076f578063d8258d951461079a5761020f565b806395d89b41116100e757806395d89b41146106365780639737e73014610661578063a22cb4651461069e578063ac446002146106c7578063ac5227cf146106de5761020f565b8063715018a61461058e5780637de86909146105a55780638da5cb5b146105ce5780639231ab2a146105f95761020f565b80633f5e47411161019b5780635f31c7fb1161016a5780635f31c7fb146104955780635fd84c28146104c05780636352211e146104e95780636bb7b1d91461052657806370a08231146105515761020f565b80633f5e4741146103db57806342842e0e146104065780634f6ccce71461042f57806355f804b31461046c5761020f565b806317bb0556116101e257806317bb0556146102e257806318160ddd1461031f578063230b43f41461034a57806323b872dd146103755780632f745c591461039e5761020f565b806301ffc9a71461021457806306fdde0314610251578063081812fc1461027c578063095ea7b3146102b9575b600080fd5b34801561022057600080fd5b5061023b600480360381019061023691906135fb565b6108af565b6040516102489190613643565b60405180910390f35b34801561025d57600080fd5b506102666109f9565b60405161027391906136f7565b60405180910390f35b34801561028857600080fd5b506102a3600480360381019061029e919061374f565b610a8b565b6040516102b091906137bd565b60405180910390f35b3480156102c557600080fd5b506102e060048036038101906102db9190613804565b610b10565b005b3480156102ee57600080fd5b5061030960048036038101906103049190613844565b610c29565b6040516103169190613880565b60405180910390f35b34801561032b57600080fd5b50610334610c72565b6040516103419190613880565b60405180910390f35b34801561035657600080fd5b5061035f610c7b565b60405161036c91906138ba565b60405180910390f35b34801561038157600080fd5b5061039c600480360381019061039791906138d5565b610c91565b005b3480156103aa57600080fd5b506103c560048036038101906103c09190613804565b610ca1565b6040516103d29190613880565b60405180910390f35b3480156103e757600080fd5b506103f0610e93565b6040516103fd9190613643565b60405180910390f35b34801561041257600080fd5b5061042d600480360381019061042891906138d5565b610eb6565b005b34801561043b57600080fd5b506104566004803603810190610451919061374f565b610ed6565b6040516104639190613880565b60405180910390f35b34801561047857600080fd5b50610493600480360381019061048e919061398d565b610f29565b005b3480156104a157600080fd5b506104aa610fbb565b6040516104b791906139f6565b60405180910390f35b3480156104cc57600080fd5b506104e760048036038101906104e29190613a3d565b610fc0565b005b3480156104f557600080fd5b50610510600480360381019061050b919061374f565b611060565b60405161051d91906137bd565b60405180910390f35b34801561053257600080fd5b5061053b611076565b60405161054891906138ba565b60405180910390f35b34801561055d57600080fd5b5061057860048036038101906105739190613844565b61108c565b6040516105859190613880565b60405180910390f35b34801561059a57600080fd5b506105a3611175565b005b3480156105b157600080fd5b506105cc60048036038101906105c79190613a3d565b6111fd565b005b3480156105da57600080fd5b506105e361129d565b6040516105f091906137bd565b60405180910390f35b34801561060557600080fd5b50610620600480360381019061061b919061374f565b6112c7565b60405161062d9190613acb565b60405180910390f35b34801561064257600080fd5b5061064b6112df565b60405161065891906136f7565b60405180910390f35b34801561066d57600080fd5b5061068860048036038101906106839190613844565b611371565b6040516106959190613880565b60405180910390f35b3480156106aa57600080fd5b506106c560048036038101906106c09190613b12565b6113e8565b005b3480156106d357600080fd5b506106dc611569565b005b3480156106ea57600080fd5b506106f361178d565b6040516107009190613643565b60405180910390f35b34801561071557600080fd5b50610730600480360381019061072b9190613c82565b6117b0565b005b34801561073e57600080fd5b506107596004803603810190610754919061374f565b61180c565b60405161076691906136f7565b60405180910390f35b34801561077b57600080fd5b506107846118b4565b6040516107919190613880565b60405180910390f35b3480156107a657600080fd5b506107af6118c0565b6040516107bc9190613d22565b60405180910390f35b3480156107d157600080fd5b506107ec60048036038101906107e79190613844565b6118c6565b6040516107f99190613880565b60405180910390f35b34801561080e57600080fd5b5061082960048036038101906108249190613d3d565b6118d8565b6040516108369190613643565b60405180910390f35b34801561084b57600080fd5b5061086660048036038101906108619190613844565b61196c565b005b610882600480360381019061087d9190613ddf565b611a64565b005b34801561089057600080fd5b50610899611e74565b6040516108a691906139f6565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061097a57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806109e257507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806109f257506109f182611e79565b5b9050919050565b606060018054610a0890613e91565b80601f0160208091040260200160405190810160405280929190818152602001828054610a3490613e91565b8015610a815780601f10610a5657610100808354040283529160200191610a81565b820191906000526020600020905b815481529060010190602001808311610a6457829003601f168201915b5050505050905090565b6000610a9682611ee3565b610ad5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610acc90613f35565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610b1b82611060565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610b8c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b8390613fc7565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610bab611ef0565b73ffffffffffffffffffffffffffffffffffffffff161480610bda5750610bd981610bd4611ef0565b6118d8565b5b610c19576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c1090614059565b60405180910390fd5b610c24838383611ef8565b505050565b6000600e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b60008054905090565b600960009054906101000a900463ffffffff1681565b610c9c838383611faa565b505050565b6000610cac8361108c565b8210610ced576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ce4906140eb565b60405180910390fd5b6000610cf7610c72565b905060008060005b83811015610e51576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614610df157806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610e435786841415610e3a578195505050505050610e8d565b83806001019450505b508080600101915050610cff565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e849061417d565b60405180910390fd5b92915050565b6000600960049054906101000a900463ffffffff1663ffffffff16421015905090565b610ed1838383604051806020016040528060008152506117b0565b505050565b6000610ee0610c72565b8210610f21576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f189061420f565b60405180910390fd5b819050919050565b610f31611ef0565b73ffffffffffffffffffffffffffffffffffffffff16610f4f61129d565b73ffffffffffffffffffffffffffffffffffffffff1614610fa5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f9c9061427b565b60405180910390fd5b818160109190610fb69291906134b2565b505050565b600381565b610fc8611ef0565b73ffffffffffffffffffffffffffffffffffffffff16610fe661129d565b73ffffffffffffffffffffffffffffffffffffffff161461103c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110339061427b565b60405180910390fd5b80600960046101000a81548163ffffffff021916908363ffffffff16021790555050565b600061106b826124ea565b600001519050919050565b600960049054906101000a900463ffffffff1681565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156110fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110f49061430d565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b61117d611ef0565b73ffffffffffffffffffffffffffffffffffffffff1661119b61129d565b73ffffffffffffffffffffffffffffffffffffffff16146111f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111e89061427b565b60405180910390fd5b6111fb6000612684565b565b611205611ef0565b73ffffffffffffffffffffffffffffffffffffffff1661122361129d565b73ffffffffffffffffffffffffffffffffffffffff1614611279576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112709061427b565b60405180910390fd5b80600960006101000a81548163ffffffff021916908363ffffffff16021790555050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6112cf613538565b6112d8826124ea565b9050919050565b6060600280546112ee90613e91565b80601f016020809104026020016040519081016040528092919081815260200182805461131a90613e91565b80156113675780601f1061133c57610100808354040283529160200191611367565b820191906000526020600020905b81548152906001019060200180831161134a57829003601f168201915b5050505050905090565b600061137b610e93565b156113b257611389826118c6565b61139283610c29565b600260ff166113a1919061435c565b6113ab91906143b2565b90506113e3565b6113ba61178d565b156113de576113c8826118c6565b600360ff166113d791906143b2565b90506113e3565b600090505b919050565b6113f0611ef0565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561145e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161145590614432565b60405180910390fd5b806006600061146b611ef0565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611518611ef0565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161155d9190613643565b60405180910390a35050565b611571611ef0565b73ffffffffffffffffffffffffffffffffffffffff1661158f61129d565b73ffffffffffffffffffffffffffffffffffffffff16146115e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115dc9061427b565b60405180910390fd5b6002600854141561162b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116229061449e565b60405180910390fd5b600260088190555060004711611676576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161166d9061450a565b60405180910390fd5b6000600a54111561171057600061168f600a544761274a565b9050600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f193505050501580156116f9573d6000803e3d6000fd5b5080600a5461170891906143b2565b600a81905550505b600047111561178357600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015611781573d6000803e3d6000fd5b505b6001600881905550565b6000600960009054906101000a900463ffffffff1663ffffffff16421015905090565b6117bb848484611faa565b6117c784848484612763565b611806576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117fd9061459c565b60405180910390fd5b50505050565b606061181782611ee3565b611856576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161184d9061462e565b60405180910390fd5b60006118606128eb565b905060008151141561188157604051806020016040528060008152506118ac565b8061188b8461297d565b60405160200161189c92919061468a565b6040516020818303038152906040525b915050919050565b67013fbe85edc9000081565b61270f81565b60006118d182612ade565b9050919050565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611974611ef0565b73ffffffffffffffffffffffffffffffffffffffff1661199261129d565b73ffffffffffffffffffffffffffffffffffffffff16146119e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119df9061427b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611a58576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a4f90614720565b60405180910390fd5b611a6181612684565b50565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614611ad2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ac99061478c565b60405180910390fd5b61270f61ffff1681611ae2610c72565b611aec919061435c565b1115611b2d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b24906147f8565b60405180910390fd5b8067013fbe85edc90000611b419190614818565b3414611b82576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b79906148be565b60405180910390fd5b611b8a610e93565b15611bdf57611b9833611371565b811115611bda576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bd190614950565b60405180910390fd5b611c7f565b611be761178d565b15611c3c57611bf533611371565b811115611c37576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c2e906149e2565b60405180910390fd5b611c7e565b6000611c7d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c7490614a4e565b60405180910390fd5b5b5b83611c8b338385612bc7565b14611ccb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cc290614aba565b60405180910390fd5b611cd58484612c86565b611d14576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d0b90614b26565b60405180910390fd5b600f60008367ffffffffffffffff1667ffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615611d89576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d8090614b92565b60405180910390fd5b611d933382612cea565b6001600f60008467ffffffffffffffff1667ffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550611ddb610e93565b611e6e5780600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611e2a919061435c565b600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b50505050565b600281565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000805482109050919050565b600033905090565b826005600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000611fb5826124ea565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff16611fdc611ef0565b73ffffffffffffffffffffffffffffffffffffffff1614806120385750612001611ef0565b73ffffffffffffffffffffffffffffffffffffffff1661202084610a8b565b73ffffffffffffffffffffffffffffffffffffffff16145b806120545750612053826000015161204e611ef0565b6118d8565b5b905080612096576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161208d90614c24565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614612108576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120ff90614cb6565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612178576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161216f90614d48565b60405180910390fd5b6121858585856001612d08565b6121956000848460000151611ef8565b6001600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160392506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550836003600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141561247a576123d981611ee3565b156124795782600001516003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46124e38585856001612d0e565b5050505050565b6124f2613538565b6124fb82611ee3565b61253a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161253190614dda565b60405180910390fd5b60008290505b60008110612643576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461263457809250505061267f565b50808060019003915050612540565b506040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161267690614e6c565b60405180910390fd5b919050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000818310612759578161275b565b825b905092915050565b60006127848473ffffffffffffffffffffffffffffffffffffffff16612d14565b156128de578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026127ad611ef0565b8786866040518563ffffffff1660e01b81526004016127cf9493929190614ee1565b6020604051808303816000875af192505050801561280b57506040513d601f19601f820116820180604052508101906128089190614f42565b60015b61288e573d806000811461283b576040519150601f19603f3d011682016040523d82523d6000602084013e612840565b606091505b50600081511415612886576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161287d9061459c565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506128e3565b600190505b949350505050565b6060601080546128fa90613e91565b80601f016020809104026020016040519081016040528092919081815260200182805461292690613e91565b80156129735780601f1061294857610100808354040283529160200191612973565b820191906000526020600020905b81548152906001019060200180831161295657829003601f168201915b5050505050905090565b606060008214156129c5576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612ad9565b600082905060005b600082146129f75780806129e090614f6f565b915050600a826129f09190614fe7565b91506129cd565b60008167ffffffffffffffff811115612a1357612a12613b57565b5b6040519080825280601f01601f191660200182016040528015612a455781602001600182028036833780820191505090505b5090505b60008514612ad257600182612a5e91906143b2565b9150600a85612a6d9190615018565b6030612a79919061435c565b60f81b818381518110612a8f57612a8e615049565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612acb9190614fe7565b9450612a49565b8093505050505b919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612b4f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b46906150ea565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b600080612bd2610e93565b15612be05760029050612c39565b612be861178d565b15612bf65760019050612c38565b6000612c37576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c2e90614a4e565b60405180910390fd5b5b5b600c60149054906101000a900460c01b85468360ff168787604051602001612c66969594939291906151d5565b604051602081830303815290604052805190602001209150509392505050565b6000612c928383612d37565b73ffffffffffffffffffffffffffffffffffffffff16600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614905092915050565b612d04828260405180602001604052806000815250612d5e565b5050565b50505050565b50505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b6000806000612d468585612d70565b91509150612d5381612df3565b819250505092915050565b612d6b8383836001612fc8565b505050565b600080604183511415612db25760008060006020860151925060408601519150606086015160001a9050612da687828585613346565b94509450505050612dec565b604083511415612de3576000806020850151915060408501519050612dd8868383613453565b935093505050612dec565b60006002915091505b9250929050565b60006004811115612e0757612e06615245565b5b816004811115612e1a57612e19615245565b5b1415612e2557612fc5565b60016004811115612e3957612e38615245565b5b816004811115612e4c57612e4b615245565b5b1415612e8d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e84906152c0565b60405180910390fd5b60026004811115612ea157612ea0615245565b5b816004811115612eb457612eb3615245565b5b1415612ef5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612eec9061532c565b60405180910390fd5b60036004811115612f0957612f08615245565b5b816004811115612f1c57612f1b615245565b5b1415612f5d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f54906153be565b60405180910390fd5b600480811115612f7057612f6f615245565b5b816004811115612f8357612f82615245565b5b1415612fc4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612fbb90615450565b60405180910390fd5b5b50565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16141561303e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613035906154e2565b60405180910390fd5b6000841415613082576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161307990615574565b60405180910390fd5b61308f6000868387612d08565b83600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555083600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160108282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550846003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060005b8581101561332957818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a48315613314576132d46000888488612763565b613313576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161330a9061459c565b60405180910390fd5b5b8180600101925050808060010191505061325d565b50806000819055505061333f6000868387612d0e565b5050505050565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a08360001c111561338157600060039150915061344a565b601b8560ff16141580156133995750601c8560ff1614155b156133ab57600060049150915061344a565b6000600187878787604051600081526020016040526040516133d094939291906155a3565b6020604051602081039080840390855afa1580156133f2573d6000803e3d6000fd5b505050602060405103519050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156134415760006001925092505061344a565b80600092509250505b94509492505050565b60008060007f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff60001b841690506000601b60ff8660001c901c613496919061435c565b90506134a487828885613346565b935093505050935093915050565b8280546134be90613e91565b90600052602060002090601f0160209004810192826134e05760008555613527565b82601f106134f957803560ff1916838001178555613527565b82800160010185558215613527579182015b8281111561352657823582559160200191906001019061350b565b5b5090506135349190613572565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b8082111561358b576000816000905550600101613573565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6135d8816135a3565b81146135e357600080fd5b50565b6000813590506135f5816135cf565b92915050565b60006020828403121561361157613610613599565b5b600061361f848285016135e6565b91505092915050565b60008115159050919050565b61363d81613628565b82525050565b60006020820190506136586000830184613634565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561369857808201518184015260208101905061367d565b838111156136a7576000848401525b50505050565b6000601f19601f8301169050919050565b60006136c98261365e565b6136d38185613669565b93506136e381856020860161367a565b6136ec816136ad565b840191505092915050565b6000602082019050818103600083015261371181846136be565b905092915050565b6000819050919050565b61372c81613719565b811461373757600080fd5b50565b60008135905061374981613723565b92915050565b60006020828403121561376557613764613599565b5b60006137738482850161373a565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006137a78261377c565b9050919050565b6137b78161379c565b82525050565b60006020820190506137d260008301846137ae565b92915050565b6137e18161379c565b81146137ec57600080fd5b50565b6000813590506137fe816137d8565b92915050565b6000806040838503121561381b5761381a613599565b5b6000613829858286016137ef565b925050602061383a8582860161373a565b9150509250929050565b60006020828403121561385a57613859613599565b5b6000613868848285016137ef565b91505092915050565b61387a81613719565b82525050565b60006020820190506138956000830184613871565b92915050565b600063ffffffff82169050919050565b6138b48161389b565b82525050565b60006020820190506138cf60008301846138ab565b92915050565b6000806000606084860312156138ee576138ed613599565b5b60006138fc868287016137ef565b935050602061390d868287016137ef565b925050604061391e8682870161373a565b9150509250925092565b600080fd5b600080fd5b600080fd5b60008083601f84011261394d5761394c613928565b5b8235905067ffffffffffffffff81111561396a5761396961392d565b5b60208301915083600182028301111561398657613985613932565b5b9250929050565b600080602083850312156139a4576139a3613599565b5b600083013567ffffffffffffffff8111156139c2576139c161359e565b5b6139ce85828601613937565b92509250509250929050565b600060ff82169050919050565b6139f0816139da565b82525050565b6000602082019050613a0b60008301846139e7565b92915050565b613a1a8161389b565b8114613a2557600080fd5b50565b600081359050613a3781613a11565b92915050565b600060208284031215613a5357613a52613599565b5b6000613a6184828501613a28565b91505092915050565b613a738161379c565b82525050565b600067ffffffffffffffff82169050919050565b613a9681613a79565b82525050565b604082016000820151613ab26000850182613a6a565b506020820151613ac56020850182613a8d565b50505050565b6000604082019050613ae06000830184613a9c565b92915050565b613aef81613628565b8114613afa57600080fd5b50565b600081359050613b0c81613ae6565b92915050565b60008060408385031215613b2957613b28613599565b5b6000613b37858286016137ef565b9250506020613b4885828601613afd565b9150509250929050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b613b8f826136ad565b810181811067ffffffffffffffff82111715613bae57613bad613b57565b5b80604052505050565b6000613bc161358f565b9050613bcd8282613b86565b919050565b600067ffffffffffffffff821115613bed57613bec613b57565b5b613bf6826136ad565b9050602081019050919050565b82818337600083830152505050565b6000613c25613c2084613bd2565b613bb7565b905082815260208101848484011115613c4157613c40613b52565b5b613c4c848285613c03565b509392505050565b600082601f830112613c6957613c68613928565b5b8135613c79848260208601613c12565b91505092915050565b60008060008060808587031215613c9c57613c9b613599565b5b6000613caa878288016137ef565b9450506020613cbb878288016137ef565b9350506040613ccc8782880161373a565b925050606085013567ffffffffffffffff811115613ced57613cec61359e565b5b613cf987828801613c54565b91505092959194509250565b600061ffff82169050919050565b613d1c81613d05565b82525050565b6000602082019050613d376000830184613d13565b92915050565b60008060408385031215613d5457613d53613599565b5b6000613d62858286016137ef565b9250506020613d73858286016137ef565b9150509250929050565b6000819050919050565b613d9081613d7d565b8114613d9b57600080fd5b50565b600081359050613dad81613d87565b92915050565b613dbc81613a79565b8114613dc757600080fd5b50565b600081359050613dd981613db3565b92915050565b60008060008060808587031215613df957613df8613599565b5b6000613e0787828801613d9e565b945050602085013567ffffffffffffffff811115613e2857613e2761359e565b5b613e3487828801613c54565b9350506040613e4587828801613dca565b9250506060613e568782880161373a565b91505092959194509250565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680613ea957607f821691505b60208210811415613ebd57613ebc613e62565b5b50919050565b7f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b6000613f1f602d83613669565b9150613f2a82613ec3565b604082019050919050565b60006020820190508181036000830152613f4e81613f12565b9050919050565b7f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b6000613fb1602283613669565b9150613fbc82613f55565b604082019050919050565b60006020820190508181036000830152613fe081613fa4565b9050919050565b7f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000602082015250565b6000614043603983613669565b915061404e82613fe7565b604082019050919050565b6000602082019050818103600083015261407281614036565b9050919050565b7f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b60006140d5602283613669565b91506140e082614079565b604082019050919050565b60006020820190508181036000830152614104816140c8565b9050919050565b7f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008201527f6f776e657220627920696e646578000000000000000000000000000000000000602082015250565b6000614167602e83613669565b91506141728261410b565b604082019050919050565b600060208201905081810360008301526141968161415a565b9050919050565b7f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008201527f6e64730000000000000000000000000000000000000000000000000000000000602082015250565b60006141f9602383613669565b91506142048261419d565b604082019050919050565b60006020820190508181036000830152614228816141ec565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000614265602083613669565b91506142708261422f565b602082019050919050565b6000602082019050818103600083015261429481614258565b9050919050565b7f455243373231413a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b60006142f7602b83613669565b91506143028261429b565b604082019050919050565b60006020820190508181036000830152614326816142ea565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061436782613719565b915061437283613719565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156143a7576143a661432d565b5b828201905092915050565b60006143bd82613719565b91506143c883613719565b9250828210156143db576143da61432d565b5b828203905092915050565b7f455243373231413a20617070726f766520746f2063616c6c6572000000000000600082015250565b600061441c601a83613669565b9150614427826143e6565b602082019050919050565b6000602082019050818103600083015261444b8161440f565b9050919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b6000614488601f83613669565b915061449382614452565b602082019050919050565b600060208201905081810360008301526144b78161447b565b9050919050565b7f4e6f2066756e6473206f6e2074686520636f6e74726163740000000000000000600082015250565b60006144f4601883613669565b91506144ff826144be565b602082019050919050565b60006020820190508181036000830152614523816144e7565b9050919050565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b6000614586603383613669565b91506145918261452a565b604082019050919050565b600060208201905081810360008301526145b581614579565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b6000614618602f83613669565b9150614623826145bc565b604082019050919050565b600060208201905081810360008301526146478161460b565b9050919050565b600081905092915050565b60006146648261365e565b61466e818561464e565b935061467e81856020860161367a565b80840191505092915050565b60006146968285614659565b91506146a28284614659565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061470a602683613669565b9150614715826146ae565b604082019050919050565b60006020820190508181036000830152614739816146fd565b9050919050565b7f5468652063616c6c657220697320616e6f7468657220636f6e74726163740000600082015250565b6000614776601e83613669565b915061478182614740565b602082019050919050565b600060208201905081810360008301526147a581614769565b9050919050565b7f52656163686564206d617820737570706c790000000000000000000000000000600082015250565b60006147e2601283613669565b91506147ed826147ac565b602082019050919050565b60006020820190508181036000830152614811816147d5565b9050919050565b600061482382613719565b915061482e83613719565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156148675761486661432d565b5b828202905092915050565b7f496e76616c696420616d6f756e74206f66204554482073656e74000000000000600082015250565b60006148a8601a83613669565b91506148b382614872565b602082019050919050565b600060208201905081810360008301526148d78161489b565b9050919050565b7f457863656564696e67206d696e74696e67206c696d697420666f72207468697360008201527f206163636f756e74000000000000000000000000000000000000000000000000602082015250565b600061493a602883613669565b9150614945826148de565b604082019050919050565b600060208201905081810360008301526149698161492d565b9050919050565b7f457863656564696e67206d696e74696e67206c696d697420666f72207468697360008201527f206163636f756e7420647572696e672077686974656c6973742073616c657300602082015250565b60006149cc603f83613669565b91506149d782614970565b604082019050919050565b600060208201905081810360008301526149fb816149bf565b9050919050565b7f53616c65732068617665206e6f7420626567756e207965740000000000000000600082015250565b6000614a38601883613669565b9150614a4382614a02565b602082019050919050565b60006020820190508181036000830152614a6781614a2b565b9050919050565b7f4861736820636f6d70617269736f6e206661696c656400000000000000000000600082015250565b6000614aa4601683613669565b9150614aaf82614a6e565b602082019050919050565b60006020820190508181036000830152614ad381614a97565b9050919050565b7f446972656374206d696e74696e6720697320646973616c6c6f77656400000000600082015250565b6000614b10601c83613669565b9150614b1b82614ada565b602082019050919050565b60006020820190508181036000830152614b3f81614b03565b9050919050565b7f4861736820697320616c72656164792075736564000000000000000000000000600082015250565b6000614b7c601483613669565b9150614b8782614b46565b602082019050919050565b60006020820190508181036000830152614bab81614b6f565b9050919050565b7f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b6000614c0e603283613669565b9150614c1982614bb2565b604082019050919050565b60006020820190508181036000830152614c3d81614c01565b9050919050565b7f455243373231413a207472616e736665722066726f6d20696e636f727265637460008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b6000614ca0602683613669565b9150614cab82614c44565b604082019050919050565b60006020820190508181036000830152614ccf81614c93565b9050919050565b7f455243373231413a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000614d32602583613669565b9150614d3d82614cd6565b604082019050919050565b60006020820190508181036000830152614d6181614d25565b9050919050565b7f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008201527f74656e7420746f6b656e00000000000000000000000000000000000000000000602082015250565b6000614dc4602a83613669565b9150614dcf82614d68565b604082019050919050565b60006020820190508181036000830152614df381614db7565b9050919050565b7f455243373231413a20756e61626c6520746f2064657465726d696e652074686560008201527f206f776e6572206f6620746f6b656e0000000000000000000000000000000000602082015250565b6000614e56602f83613669565b9150614e6182614dfa565b604082019050919050565b60006020820190508181036000830152614e8581614e49565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000614eb382614e8c565b614ebd8185614e97565b9350614ecd81856020860161367a565b614ed6816136ad565b840191505092915050565b6000608082019050614ef660008301876137ae565b614f0360208301866137ae565b614f106040830185613871565b8181036060830152614f228184614ea8565b905095945050505050565b600081519050614f3c816135cf565b92915050565b600060208284031215614f5857614f57613599565b5b6000614f6684828501614f2d565b91505092915050565b6000614f7a82613719565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614fad57614fac61432d565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000614ff282613719565b9150614ffd83613719565b92508261500d5761500c614fb8565b5b828204905092915050565b600061502382613719565b915061502e83613719565b92508261503e5761503d614fb8565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f455243373231413a206e756d626572206d696e74656420717565727920666f7260008201527f20746865207a65726f2061646472657373000000000000000000000000000000602082015250565b60006150d4603183613669565b91506150df82615078565b604082019050919050565b60006020820190508181036000830152615103816150c7565b9050919050565b60007fffffffffffffffff00000000000000000000000000000000000000000000000082169050919050565b6000819050919050565b61515161514c8261510a565b615136565b82525050565b60008160601b9050919050565b600061516f82615157565b9050919050565b600061518182615164565b9050919050565b6151996151948261379c565b615176565b82525050565b60008160c01b9050919050565b60006151b78261519f565b9050919050565b6151cf6151ca82613a79565b6151ac565b82525050565b60006151e18289615140565b6008820191506151f18288615188565b60148201915061520182876151be565b60088201915061521182866151be565b60088201915061522182856151be565b60088201915061523182846151be565b600882019150819050979650505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b7f45434453413a20696e76616c6964207369676e61747572650000000000000000600082015250565b60006152aa601883613669565b91506152b582615274565b602082019050919050565b600060208201905081810360008301526152d98161529d565b9050919050565b7f45434453413a20696e76616c6964207369676e6174757265206c656e67746800600082015250565b6000615316601f83613669565b9150615321826152e0565b602082019050919050565b6000602082019050818103600083015261534581615309565b9050919050565b7f45434453413a20696e76616c6964207369676e6174757265202773272076616c60008201527f7565000000000000000000000000000000000000000000000000000000000000602082015250565b60006153a8602283613669565b91506153b38261534c565b604082019050919050565b600060208201905081810360008301526153d78161539b565b9050919050565b7f45434453413a20696e76616c6964207369676e6174757265202776272076616c60008201527f7565000000000000000000000000000000000000000000000000000000000000602082015250565b600061543a602283613669565b9150615445826153de565b604082019050919050565b600060208201905081810360008301526154698161542d565b9050919050565b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b60006154cc602183613669565b91506154d782615470565b604082019050919050565b600060208201905081810360008301526154fb816154bf565b9050919050565b7f455243373231413a207175616e74697479206d7573742062652067726561746560008201527f72207468616e2030000000000000000000000000000000000000000000000000602082015250565b600061555e602883613669565b915061556982615502565b604082019050919050565b6000602082019050818103600083015261558d81615551565b9050919050565b61559d81613d7d565b82525050565b60006080820190506155b86000830187615594565b6155c560208301866139e7565b6155d26040830185615594565b6155df6060830184615594565b9594505050505056fea26469706673582212209ceb8f6d351629f397db01a5a33af5e2d5606663fd568e3bb92e2ecb655ca2be64736f6c634300080b0033

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.