ETH Price: $3,423.37 (-1.69%)
Gas: 4 Gwei

Token

JuiceboxStudios (JBS)
 

Overview

Max Total Supply

318 JBS

Holders

145

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
shadyoak.eth
Balance
1 JBS
0x65aa9d769edbcc170aced9dceed464f19ed755a7
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:
Juiceboxes

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 12 : juiceboxes.sol
// SPDX-License-Identifier: MIT
// @FritzNFT
pragma solidity ^0.8.0;

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

contract Juiceboxes is ERC721A, Ownable {
    //Sale States
    uint256 public mintStart = 1662937200 - 1;
    mapping (address => uint256) public mintClaimed;
    mapping (address => uint256) public publicMints;
    
    //Privates
    string private _baseURIextended;
    address private signer = 0x9fdE17Ed72a828b6898e6C7020221D626f7b8dd3;
    address private payoutWallet = 0xEf8ACC51b6411af79FFdaD8182394F0d7792445b;
    
    //Constants
    uint256 public constant MAX_SUPPLY = 1112; //1111 + 1 gas
    uint256 public constant MAX_POINT_SUPPLY = 576; //555 + 20 reserve + 1 gas
    uint256 public constant PRICE_PER_TOKEN = 0.33 ether;
    uint256 public constant MAX_PER_TXN = 6; //5 + 1 gas
    
    constructor() ERC721A("JuiceboxStudios", "JBS") {
    }

    //Airdrop
    function airdrop(address[] calldata _addresses, uint256[] calldata _amounts) external onlyOwner {
        require(totalSupply() < MAX_POINT_SUPPLY, "Tokens already airdropped");
        require (_addresses.length == _amounts.length, "Bad Arrays");
        for (uint256 i = 0; i < _addresses.length; i++) {
            _safeMint(_addresses[i], _amounts[i]);
        }
    }

    //Point Minting
    function setMintStart(uint256 _mintStart) external onlyOwner {
        mintStart = _mintStart;
    }

    function setSigner(address _signer) external onlyOwner {
        signer = _signer;
    }

    function mintWithPoint(uint256 _amount, address _address, uint256 _points, bool _topHolder, bytes calldata _voucher) external payable {
        uint256 mintsClaimed = mintClaimed[_address];
        require(block.timestamp > mintStart, "Point minting not started");
        require(block.timestamp < mintStart + 86401, "Sale minting is over");
        require(mintsClaimed + _amount < 4, "Over mint allowance");
        require(totalSupply() + _amount < MAX_POINT_SUPPLY, "Purchase would exceed max tokens");
        uint256 price = PRICE_PER_TOKEN * _amount;
        //First sale gets discount
        if (mintsClaimed == 0) {
            price -= (_points * .025 ether);
        }
        require(msg.value + 1 > price, "Ether value sent is not correct");
        require(msg.sender == _address, "Not your voucher");

        bytes32 hash = keccak256(
            abi.encodePacked(_address, _points, _topHolder, "points")
        );
        require(_verifySignature(signer, hash, _voucher), "Invalid voucher");

        if (block.timestamp < mintStart + 43201) {
            require(_topHolder, "Only top 555 holders may mint during the first 12 hours");
        }
        else {
            uint256 requiredPoints = 3 - (block.timestamp - (mintStart + 43200)) / 10800; // 4 - 1 gas
            require(_topHolder || _points > requiredPoints, "Not enough points to mint yet");
        }

        mintClaimed[_address] += _amount;
        _safeMint(_address, _amount);
    }

    function _verifySignature(address _signer, bytes32 _hash, bytes memory _signature) private pure returns (bool) {
        return _signer == ECDSA.recover(ECDSA.toEthSignedMessageHash(_hash), _signature);
    }

    function pointsRequired() external view returns (uint256) {
        require(pointMintActive(), "Point minting not active");
        if (block.timestamp < mintStart + 43201) {
            return 13;
        }
        return 4 - (block.timestamp - (mintStart + 43200)) / 10800;
    }

    function pointMintActive() public view returns (bool) {
        return (block.timestamp > mintStart && block.timestamp < mintStart + 86401);
    }
    //
    
    //Public Minting
    function mintNFT(uint256 _amount, address _address) external payable {
        uint256 ts = totalSupply();
        require(tx.origin == msg.sender, "No contracts");
        require(block.timestamp > mintStart + 86400, "Public sale is not active");
        require(ts + _amount < MAX_SUPPLY, "Purchase would exceed max tokens");
        require(msg.value + 1 > PRICE_PER_TOKEN * _amount, "Ether value sent is not correct");
        require(_amount < MAX_PER_TXN, "Max 5 per txn");

        _safeMint(_address, _amount);
    }

    function publicMintActive() external view returns (bool) {
        return (block.timestamp > mintStart + 86400);
    }
    //

    //Overrides
    function setBaseURI(string memory baseURI_) external onlyOwner() {
        _baseURIextended = baseURI_;
    }

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

    function _startTokenId() internal view virtual override returns (uint256) {
        return 1;
    }
    //

    function reserve() external onlyOwner {
        require(totalSupply() == 0, "Tokens already reserved");
        _safeMint(payoutWallet, 20);
    }
    
    //Withdraw balance
    function withdraw() external onlyOwner {
        uint256 balance = address(this).balance;
        payable(payoutWallet).transfer(balance);
    }
    //
}

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

File 4 of 12 : ERC721A.sol
// SPDX-License-Identifier: MIT
// Creator: Chiru Labs

pragma solidity ^0.8.4;

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/utils/Address.sol';
import '@openzeppelin/contracts/utils/Context.sol';
import '@openzeppelin/contracts/utils/Strings.sol';
import '@openzeppelin/contracts/utils/introspection/ERC165.sol';

error ApprovalCallerNotOwnerNorApproved();
error ApprovalQueryForNonexistentToken();
error ApproveToCaller();
error ApprovalToCurrentOwner();
error BalanceQueryForZeroAddress();
error MintToZeroAddress();
error MintZeroQuantity();
error OwnerQueryForNonexistentToken();
error TransferCallerNotOwnerNorApproved();
error TransferFromIncorrectOwner();
error TransferToNonERC721ReceiverImplementer();
error TransferToZeroAddress();
error URIQueryForNonexistentToken();

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

    // Compiler will pack this into a single 256bit word.
    struct TokenOwnership {
        // The address of the owner.
        address addr;
        // Keeps track of the start time of ownership with minimal overhead for tokenomics.
        uint64 startTimestamp;
        // Whether the token has been burned.
        bool burned;
    }

    // Compiler will pack this into a single 256bit word.
    struct AddressData {
        // Realistically, 2**64-1 is more than enough.
        uint64 balance;
        // Keeps track of mint count with minimal overhead for tokenomics.
        uint64 numberMinted;
        // Keeps track of burn count with minimal overhead for tokenomics.
        uint64 numberBurned;
        // For miscellaneous variable(s) pertaining to the address
        // (e.g. number of whitelist mint slots used).
        // If there are multiple variables, please pack them into a uint64.
        uint64 aux;
    }

    // The tokenId of the next token to be minted.
    uint256 internal _currentIndex;

    // The number of tokens burned.
    uint256 internal _burnCounter;

    // 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_;
        _currentIndex = _startTokenId();
    }

    /**
     * To change the starting tokenId, please override this function.
     */
    function _startTokenId() internal view virtual returns (uint256) {
        return 0;
    }

    /**
     * @dev Burned tokens are calculated here, use _totalMinted() if you want to count just minted tokens.
     */
    function totalSupply() public view returns (uint256) {
        // Counter underflow is impossible as _burnCounter cannot be incremented
        // more than _currentIndex - _startTokenId() times
        unchecked {
            return _currentIndex - _burnCounter - _startTokenId();
        }
    }

    /**
     * Returns the total amount of tokens minted in the contract.
     */
    function _totalMinted() internal view returns (uint256) {
        // Counter underflow is impossible as _currentIndex does not decrement,
        // and it is initialized to _startTokenId()
        unchecked {
            return _currentIndex - _startTokenId();
        }
    }

    function walletOfOwner(address owner) public view returns(uint256[] memory) {
        uint256 tokenCount = balanceOf(owner);

        uint256[] memory tokenIds = new uint256[](tokenCount);
        if (tokenCount == 0)
        {
            return tokenIds;
        }

        uint256 numMintedSoFar = totalSupply() + _startTokenId();
        uint256 tokenIdsIdx = 0;
        address currOwnershipAddr = address(0);
        for (uint256 i = _startTokenId(); i < numMintedSoFar; i++) {
            TokenOwnership memory ownership = _ownerships[i];
            if (ownership.addr != address(0)) {
                currOwnershipAddr = ownership.addr;
            }
            if (currOwnershipAddr == owner) {
                tokenIds[tokenIdsIdx] = i;
                tokenIdsIdx++;
                if (tokenIdsIdx == tokenCount) {
                    return tokenIds;
                }
            }
        }
        revert("ERC721A: unable to get walletOfOwner");
    }

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

    /**
     * @dev See {IERC721-balanceOf}.
     */
    function balanceOf(address owner) public view override returns (uint256) {
        if (owner == address(0)) revert BalanceQueryForZeroAddress();
        return uint256(_addressData[owner].balance);
    }

    /**
     * Returns the number of tokens minted by `owner`.
     */
    function _numberMinted(address owner) internal view returns (uint256) {
        return uint256(_addressData[owner].numberMinted);
    }

    /**
     * Returns the number of tokens burned by or on behalf of `owner`.
     */
    function _numberBurned(address owner) internal view returns (uint256) {
        return uint256(_addressData[owner].numberBurned);
    }

    /**
     * Returns the auxillary data for `owner`. (e.g. number of whitelist mint slots used).
     */
    function _getAux(address owner) internal view returns (uint64) {
        return _addressData[owner].aux;
    }

    /**
     * Sets the auxillary data for `owner`. (e.g. number of whitelist mint slots used).
     * If there are multiple variables, please pack them into a uint64.
     */
    function _setAux(address owner, uint64 aux) internal {
        _addressData[owner].aux = aux;
    }

    /**
     * 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) {
        uint256 curr = tokenId;

        unchecked {
            if (_startTokenId() <= curr && curr < _currentIndex) {
                TokenOwnership memory ownership = _ownerships[curr];
                if (!ownership.burned) {
                    if (ownership.addr != address(0)) {
                        return ownership;
                    }
                    // Invariant:
                    // There will always be an ownership that has an address and is not burned
                    // before an ownership that does not have an address and is not burned.
                    // Hence, curr will not underflow.
                    while (true) {
                        curr--;
                        ownership = _ownerships[curr];
                        if (ownership.addr != address(0)) {
                            return ownership;
                        }
                    }
                }
            }
        }
        revert OwnerQueryForNonexistentToken();
    }

    /**
     * @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) {
        if (!_exists(tokenId)) revert URIQueryForNonexistentToken();

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

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

    /**
     * @dev See {IERC721-approve}.
     */
    function approve(address to, uint256 tokenId) public override {
        address owner = ERC721A.ownerOf(tokenId);
        if (to == owner) revert ApprovalToCurrentOwner();

        if (_msgSender() != owner && !isApprovedForAll(owner, _msgSender())) {
            revert ApprovalCallerNotOwnerNorApproved();
        }

        _approve(to, tokenId, owner);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view override returns (address) {
        if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken();

        return _tokenApprovals[tokenId];
    }

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

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

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

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

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

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public virtual override {
        _transfer(from, to, tokenId);
        if (to.isContract() && !_checkContractOnERC721Received(from, to, tokenId, _data)) {
            revert TransferToNonERC721ReceiverImplementer();
        }
    }

    /**
     * @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 _startTokenId() <= tokenId && tokenId < _currentIndex && !_ownerships[tokenId].burned;
    }

    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;
        if (to == address(0)) revert MintToZeroAddress();
        if (quantity == 0) revert MintZeroQuantity();

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

        // Overflows are incredibly unrealistic.
        // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1
        // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1
        unchecked {
            _addressData[to].balance += uint64(quantity);
            _addressData[to].numberMinted += uint64(quantity);

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

            uint256 updatedIndex = startTokenId;
            uint256 end = updatedIndex + quantity;

            if (safe && to.isContract()) {
                do {
                    emit Transfer(address(0), to, updatedIndex);
                    if (!_checkContractOnERC721Received(address(0), to, updatedIndex++, _data)) {
                        revert TransferToNonERC721ReceiverImplementer();
                    }
                } while (updatedIndex != end);
                // Reentrancy protection
                if (_currentIndex != startTokenId) revert();
            } else {
                do {
                    emit Transfer(address(0), to, updatedIndex++);
                } while (updatedIndex != end);
            }
            _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);

        if (prevOwnership.addr != from) revert TransferFromIncorrectOwner();

        bool isApprovedOrOwner = (_msgSender() == from ||
            isApprovedForAll(from, _msgSender()) ||
            getApproved(tokenId) == _msgSender());

        if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        if (to == address(0)) revert TransferToZeroAddress();

        _beforeTokenTransfers(from, to, tokenId, 1);

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

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

            TokenOwnership storage currSlot = _ownerships[tokenId];
            currSlot.addr = to;
            currSlot.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;
            TokenOwnership storage nextSlot = _ownerships[nextTokenId];
            if (nextSlot.addr == address(0)) {
                // This will suffice for checking _exists(nextTokenId),
                // as a burned slot cannot contain the zero address.
                if (nextTokenId != _currentIndex) {
                    nextSlot.addr = from;
                    nextSlot.startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

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

    /**
     * @dev This is equivalent to _burn(tokenId, false)
     */
    function _burn(uint256 tokenId) internal virtual {
        _burn(tokenId, false);
    }

    /**
     * @dev Destroys `tokenId`.
     * The approval is cleared when the token is burned.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     *
     * Emits a {Transfer} event.
     */
    function _burn(uint256 tokenId, bool approvalCheck) internal virtual {
        TokenOwnership memory prevOwnership = _ownershipOf(tokenId);

        address from = prevOwnership.addr;

        if (approvalCheck) {
            bool isApprovedOrOwner = (_msgSender() == from ||
                isApprovedForAll(from, _msgSender()) ||
                getApproved(tokenId) == _msgSender());

            if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        }

        _beforeTokenTransfers(from, address(0), tokenId, 1);

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

        // 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 storage addressData = _addressData[from];
            addressData.balance -= 1;
            addressData.numberBurned += 1;

            // Keep track of who burned the token, and the timestamp of burning.
            TokenOwnership storage currSlot = _ownerships[tokenId];
            currSlot.addr = from;
            currSlot.startTimestamp = uint64(block.timestamp);
            currSlot.burned = true;

            // If the ownership slot of tokenId+1 is not explicitly set, that means the burn initiator owns it.
            // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.
            uint256 nextTokenId = tokenId + 1;
            TokenOwnership storage nextSlot = _ownerships[nextTokenId];
            if (nextSlot.addr == address(0)) {
                // This will suffice for checking _exists(nextTokenId),
                // as a burned slot cannot contain the zero address.
                if (nextTokenId != _currentIndex) {
                    nextSlot.addr = from;
                    nextSlot.startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

        emit Transfer(from, address(0), tokenId);
        _afterTokenTransfers(from, address(0), tokenId, 1);

        // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times.
        unchecked {
            _burnCounter++;
        }
    }

    /**
     * @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 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 _checkContractOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) private returns (bool) {
        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 TransferToNonERC721ReceiverImplementer();
            } else {
                assembly {
                    revert(add(32, reason), mload(reason))
                }
            }
        }
    }

    /**
     * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting.
     * And also called before burning one token.
     *
     * 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`.
     * - When `to` is zero, `tokenId` will be burned by `from`.
     * - `from` and `to` are never both zero.
     */
    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.
     * And also called after one token has been burned.
     *
     * 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` has been
     * transferred to `to`.
     * - When `from` is zero, `tokenId` has been minted for `to`.
     * - When `to` is zero, `tokenId` has been burned by `from`.
     * - `from` and `to` are never both zero.
     */
    function _afterTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}
}

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

pragma solidity ^0.8.0;

import "./IERC165.sol";

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

File 8 of 12 : Address.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.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
                /// @solidity memory-safe-assembly
                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

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

pragma solidity ^0.8.0;

import "../IERC721.sol";

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

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

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

File 10 of 12 : IERC721Receiver.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721Receiver.sol)

pragma solidity ^0.8.0;

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

File 12 of 12 : 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"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_PER_TXN","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_POINT_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PRICE_PER_TOKEN","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"_addresses","type":"address[]"},{"internalType":"uint256[]","name":"_amounts","type":"uint256[]"}],"name":"airdrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"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":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"mintClaimed","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"},{"internalType":"address","name":"_address","type":"address"}],"name":"mintNFT","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintStart","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"},{"internalType":"address","name":"_address","type":"address"},{"internalType":"uint256","name":"_points","type":"uint256"},{"internalType":"bool","name":"_topHolder","type":"bool"},{"internalType":"bytes","name":"_voucher","type":"bytes"}],"name":"mintWithPoint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pointMintActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pointsRequired","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicMintActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"publicMints","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reserve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI_","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintStart","type":"uint256"}],"name":"setMintStart","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_signer","type":"address"}],"name":"setSigner","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

608060405263631e686f600955739fde17ed72a828b6898e6c7020221d626f7b8dd3600d60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555073ef8acc51b6411af79ffdad8182394f0d7792445b600e60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550348015620000c357600080fd5b506040518060400160405280600f81526020017f4a75696365626f7853747564696f7300000000000000000000000000000000008152506040518060400160405280600381526020017f4a4253000000000000000000000000000000000000000000000000000000000081525081600290805190602001906200014892919062000277565b5080600390805190602001906200016192919062000277565b5062000172620001a060201b60201c565b60008190555050506200019a6200018e620001a960201b60201c565b620001b160201b60201c565b6200038c565b60006001905090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620002859062000327565b90600052602060002090601f016020900481019282620002a95760008555620002f5565b82601f10620002c457805160ff1916838001178555620002f5565b82800160010185558215620002f5579182015b82811115620002f4578251825591602001919060010190620002d7565b5b50905062000304919062000308565b5090565b5b808211156200032357600081600090555060010162000309565b5090565b600060028204905060018216806200034057607f821691505b602082108114156200035757620003566200035d565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b615271806200039c6000396000f3fe60806040526004361061020f5760003560e01c80636724348211610118578063a22cb465116100a0578063cc7b32191161006f578063cc7b321914610790578063cd3293de146107ac578063d5eee3c5146107c3578063e985e9c5146107ee578063f2fde38b1461082b5761020f565b8063a22cb465146106d6578063b67c25a3146106ff578063b88d4fde1461072a578063c87b56dd146107535761020f565b80637460d603116100e75780637460d603146106015780637960c27f1461062c578063833b9499146106555780638da5cb5b1461068057806395d89b41146106ab5761020f565b8063672434821461055b5780636c19e7831461058457806370a08231146105ad578063715018a6146105ea5761020f565b80633add14c81161019b57806351b96d921161016a57806351b96d921461048357806355f804b3146104ae578063572d878c146104d75780636352211e14610502578063669f5a511461053f5761020f565b80633add14c8146103c95780633ccfd60b1461040657806342842e0e1461041d578063438b6300146104465761020f565b80631237e5e8116101e25780631237e5e8146102e257806318160ddd1461031f57806323b872dd1461034a578063255e46851461037357806332cb6b0c1461039e5761020f565b806301ffc9a71461021457806306fdde0314610251578063081812fc1461027c578063095ea7b3146102b9575b600080fd5b34801561022057600080fd5b5061023b60048036038101906102369190613c23565b610854565b6040516102489190614422565b60405180910390f35b34801561025d57600080fd5b50610266610936565b6040516102739190614482565b60405180910390f35b34801561028857600080fd5b506102a3600480360381019061029e9190613cc6565b6109c8565b6040516102b09190614399565b60405180910390f35b3480156102c557600080fd5b506102e060048036038101906102db9190613b62565b610a44565b005b3480156102ee57600080fd5b50610309600480360381019061030491906139df565b610b4f565b6040516103169190614784565b60405180910390f35b34801561032b57600080fd5b50610334610b67565b6040516103419190614784565b60405180910390f35b34801561035657600080fd5b50610371600480360381019061036c9190613a4c565b610b7e565b005b34801561037f57600080fd5b50610388610b8e565b6040516103959190614784565b60405180910390f35b3480156103aa57600080fd5b506103b3610b94565b6040516103c09190614784565b60405180910390f35b3480156103d557600080fd5b506103f060048036038101906103eb91906139df565b610b9a565b6040516103fd9190614784565b60405180910390f35b34801561041257600080fd5b5061041b610bb2565b005b34801561042957600080fd5b50610444600480360381019061043f9190613a4c565b610c9f565b005b34801561045257600080fd5b5061046d600480360381019061046891906139df565b610cbf565b60405161047a9190614400565b60405180910390f35b34801561048f57600080fd5b50610498610f38565b6040516104a59190614784565b60405180910390f35b3480156104ba57600080fd5b506104d560048036038101906104d09190613c7d565b610f3d565b005b3480156104e357600080fd5b506104ec610fd3565b6040516104f99190614784565b60405180910390f35b34801561050e57600080fd5b5061052960048036038101906105249190613cc6565b611076565b6040516105369190614399565b60405180910390f35b61055960048036038101906105549190613cf3565b61108c565b005b34801561056757600080fd5b50610582600480360381019061057d9190613ba2565b61125a565b005b34801561059057600080fd5b506105ab60048036038101906105a691906139df565b6113db565b005b3480156105b957600080fd5b506105d460048036038101906105cf91906139df565b61149b565b6040516105e19190614784565b60405180910390f35b3480156105f657600080fd5b506105ff61156b565b005b34801561060d57600080fd5b506106166115f3565b6040516106239190614422565b60405180910390f35b34801561063857600080fd5b50610653600480360381019061064e9190613cc6565b61161a565b005b34801561066157600080fd5b5061066a6116a0565b6040516106779190614784565b60405180910390f35b34801561068c57600080fd5b506106956116ac565b6040516106a29190614399565b60405180910390f35b3480156106b757600080fd5b506106c06116d6565b6040516106cd9190614482565b60405180910390f35b3480156106e257600080fd5b506106fd60048036038101906106f89190613b22565b611768565b005b34801561070b57600080fd5b506107146118e0565b6040516107219190614422565b60405180910390f35b34801561073657600080fd5b50610751600480360381019061074c9190613a9f565b6118fa565b005b34801561075f57600080fd5b5061077a60048036038101906107759190613cc6565b611976565b6040516107879190614482565b60405180910390f35b6107aa60048036038101906107a59190613d33565b611a15565b005b3480156107b857600080fd5b506107c1611ebb565b005b3480156107cf57600080fd5b506107d8611fb0565b6040516107e59190614784565b60405180910390f35b3480156107fa57600080fd5b5061081560048036038101906108109190613a0c565b611fb6565b6040516108229190614422565b60405180910390f35b34801561083757600080fd5b50610852600480360381019061084d91906139df565b61204a565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061091f57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061092f575061092e82612142565b5b9050919050565b60606002805461094590614a84565b80601f016020809104026020016040519081016040528092919081815260200182805461097190614a84565b80156109be5780601f10610993576101008083540402835291602001916109be565b820191906000526020600020905b8154815290600101906020018083116109a157829003601f168201915b5050505050905090565b60006109d3826121ac565b610a09576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610a4f82611076565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610ab7576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610ad66121fa565b73ffffffffffffffffffffffffffffffffffffffff1614158015610b085750610b0681610b016121fa565b611fb6565b155b15610b3f576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610b4a838383612202565b505050565b600a6020528060005260406000206000915090505481565b6000610b716122b4565b6001546000540303905090565b610b898383836122bd565b505050565b60095481565b61045881565b600b6020528060005260406000206000915090505481565b610bba6121fa565b73ffffffffffffffffffffffffffffffffffffffff16610bd86116ac565b73ffffffffffffffffffffffffffffffffffffffff1614610c2e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c2590614704565b60405180910390fd5b6000479050600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610c9b573d6000803e3d6000fd5b5050565b610cba838383604051806020016040528060008152506118fa565b505050565b60606000610ccc8361149b565b905060008167ffffffffffffffff811115610cea57610ce9614ca8565b5b604051908082528060200260200182016040528015610d185781602001602082028036833780820191505090505b5090506000821415610d2e578092505050610f33565b6000610d386122b4565b610d40610b67565b610d4a91906148a2565b90506000806000610d596122b4565b90505b83811015610ef7576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614610e6957806000015192505b8873ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610ee35781868581518110610eb157610eb0614c79565b5b6020026020010181815250508380610ec890614ae7565b94505086841415610ee25785975050505050505050610f33565b5b508080610eef90614ae7565b915050610d5c565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f2a906145a4565b60405180910390fd5b919050565b600681565b610f456121fa565b73ffffffffffffffffffffffffffffffffffffffff16610f636116ac565b73ffffffffffffffffffffffffffffffffffffffff1614610fb9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fb090614704565b60405180910390fd5b80600c9080519060200190610fcf9291906136ae565b5050565b6000610fdd6115f3565b61101c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161101390614664565b60405180910390fd5b61a8c160095461102c91906148a2565b42101561103c57600d9050611073565b612a3061a8c060095461104f91906148a2565b4261105a9190614983565b61106491906148f8565b60046110709190614983565b90505b90565b600061108182612773565b600001519050919050565b6000611096610b67565b90503373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614611106576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110fd90614764565b60405180910390fd5b6201518060095461111791906148a2565b4211611158576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161114f90614684565b60405180910390fd5b610458838261116791906148a2565b106111a7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161119e90614544565b60405180910390fd5b82670494654067e100006111bb9190614929565b6001346111c891906148a2565b11611208576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111ff906145e4565b60405180910390fd5b6006831061124b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161124290614584565b60405180910390fd5b6112558284612a02565b505050565b6112626121fa565b73ffffffffffffffffffffffffffffffffffffffff166112806116ac565b73ffffffffffffffffffffffffffffffffffffffff16146112d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112cd90614704565b60405180910390fd5b6102406112e1610b67565b10611321576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161131890614504565b60405180910390fd5b818190508484905014611369576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611360906146a4565b60405180910390fd5b60005b848490508110156113d4576113c185858381811061138d5761138c614c79565b5b90506020020160208101906113a291906139df565b8484848181106113b5576113b4614c79565b5b90506020020135612a02565b80806113cc90614ae7565b91505061136c565b5050505050565b6113e36121fa565b73ffffffffffffffffffffffffffffffffffffffff166114016116ac565b73ffffffffffffffffffffffffffffffffffffffff1614611457576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161144e90614704565b60405180910390fd5b80600d60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611503576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b6115736121fa565b73ffffffffffffffffffffffffffffffffffffffff166115916116ac565b73ffffffffffffffffffffffffffffffffffffffff16146115e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115de90614704565b60405180910390fd5b6115f16000612a20565b565b60006009544211801561161557506201518160095461161291906148a2565b42105b905090565b6116226121fa565b73ffffffffffffffffffffffffffffffffffffffff166116406116ac565b73ffffffffffffffffffffffffffffffffffffffff1614611696576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161168d90614704565b60405180910390fd5b8060098190555050565b670494654067e1000081565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600380546116e590614a84565b80601f016020809104026020016040519081016040528092919081815260200182805461171190614a84565b801561175e5780601f106117335761010080835404028352916020019161175e565b820191906000526020600020905b81548152906001019060200180831161174157829003601f168201915b5050505050905090565b6117706121fa565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156117d5576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600760006117e26121fa565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661188f6121fa565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516118d49190614422565b60405180910390a35050565b6000620151806009546118f391906148a2565b4211905090565b6119058484846122bd565b6119248373ffffffffffffffffffffffffffffffffffffffff16612ae6565b8015611939575061193784848484612b09565b155b15611970576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b6060611981826121ac565b6119b7576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60006119c1612c69565b90506000815114156119e25760405180602001604052806000815250611a0d565b806119ec84612cfb565b6040516020016119fd92919061434f565b6040516020818303038152906040525b915050919050565b6000600a60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490506009544211611a9d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a9490614564565b60405180910390fd5b62015181600954611aae91906148a2565b4210611aef576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ae690614744565b60405180910390fd5b60048782611afd91906148a2565b10611b3d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b3490614724565b60405180910390fd5b61024087611b49610b67565b611b5391906148a2565b10611b93576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b8a90614544565b60405180910390fd5b600087670494654067e10000611ba99190614929565b90506000821415611bd5576658d15e1762800086611bc79190614929565b81611bd29190614983565b90505b80600134611be391906148a2565b11611c23576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c1a906145e4565b60405180910390fd5b8673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611c91576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c88906145c4565b60405180910390fd5b6000878787604051602001611ca893929190614307565b604051602081830303815290604052805190602001209050611d31600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff168287878080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f82011690508083019250505050505050612e5c565b611d70576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d67906144e4565b60405180910390fd5b61a8c1600954611d8091906148a2565b421015611dcc5785611dc7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dbe906146e4565b60405180910390fd5b611e50565b6000612a3061a8c0600954611de191906148a2565b42611dec9190614983565b611df691906148f8565b6003611e029190614983565b90508680611e0f57508088115b611e4e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e4590614624565b60405180910390fd5b505b88600a60008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611e9f91906148a2565b92505081905550611eb0888a612a02565b505050505050505050565b611ec36121fa565b73ffffffffffffffffffffffffffffffffffffffff16611ee16116ac565b73ffffffffffffffffffffffffffffffffffffffff1614611f37576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f2e90614704565b60405180910390fd5b6000611f41610b67565b14611f81576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f7890614644565b60405180910390fd5b611fae600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166014612a02565b565b61024081565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6120526121fa565b73ffffffffffffffffffffffffffffffffffffffff166120706116ac565b73ffffffffffffffffffffffffffffffffffffffff16146120c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120bd90614704565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612136576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161212d90614524565b60405180910390fd5b61213f81612a20565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000816121b76122b4565b111580156121c6575060005482105b80156121f3575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006001905090565b60006122c882612773565b90508373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612333576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff166123546121fa565b73ffffffffffffffffffffffffffffffffffffffff16148061238357506123828561237d6121fa565b611fb6565b5b806123c857506123916121fa565b73ffffffffffffffffffffffffffffffffffffffff166123b0846109c8565b73ffffffffffffffffffffffffffffffffffffffff16145b905080612401576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612468576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6124758585856001612ea7565b61248160008487612202565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600460008581526020019081526020016000209050848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060006001850190506000600460008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141561270157600054821461270057878160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b505050828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461276c8585856001612ead565b5050505050565b61277b613734565b6000829050806127896122b4565b11158015612798575060005481105b156129cb576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff161515151581525050905080604001516129c957600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146128ad5780925050506129fd565b5b6001156129c857818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146129c35780925050506129fd565b6128ae565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b612a1c828260405180602001604052806000815250612eb3565b5050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612b2f6121fa565b8786866040518563ffffffff1660e01b8152600401612b5194939291906143b4565b602060405180830381600087803b158015612b6b57600080fd5b505af1925050508015612b9c57506040513d601f19601f82011682018060405250810190612b999190613c50565b60015b612c16573d8060008114612bcc576040519150601f19603f3d011682016040523d82523d6000602084013e612bd1565b606091505b50600081511415612c0e576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600c8054612c7890614a84565b80601f0160208091040260200160405190810160405280929190818152602001828054612ca490614a84565b8015612cf15780601f10612cc657610100808354040283529160200191612cf1565b820191906000526020600020905b815481529060010190602001808311612cd457829003601f168201915b5050505050905090565b60606000821415612d43576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612e57565b600082905060005b60008214612d75578080612d5e90614ae7565b915050600a82612d6e91906148f8565b9150612d4b565b60008167ffffffffffffffff811115612d9157612d90614ca8565b5b6040519080825280601f01601f191660200182016040528015612dc35781602001600182028036833780820191505090505b5090505b60008514612e5057600182612ddc9190614983565b9150600a85612deb9190614b8c565b6030612df791906148a2565b60f81b818381518110612e0d57612e0c614c79565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612e4991906148f8565b9450612dc7565b8093505050505b919050565b6000612e70612e6a84612ec5565b83612ef5565b73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161490509392505050565b50505050565b50505050565b612ec08383836001612f1c565b505050565b600081604051602001612ed89190614373565b604051602081830303815290604052805190602001209050919050565b6000806000612f0485856132ea565b91509150612f118161336d565b819250505092915050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415612f89576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000841415612fc4576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612fd16000868387612ea7565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060008190506000858201905083801561319b575061319a8773ffffffffffffffffffffffffffffffffffffffff16612ae6565b5b15613261575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46132106000888480600101955088612b09565b613246576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b808214156131a157826000541461325c57600080fd5b6132cd565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a480821415613262575b8160008190555050506132e36000868387612ead565b5050505050565b60008060418351141561332c5760008060006020860151925060408601519150606086015160001a905061332087828585613542565b94509450505050613366565b60408351141561335d57600080602085015191506040850151905061335286838361364f565b935093505050613366565b60006002915091505b9250929050565b6000600481111561338157613380614c1b565b5b81600481111561339457613393614c1b565b5b141561339f5761353f565b600160048111156133b3576133b2614c1b565b5b8160048111156133c6576133c5614c1b565b5b1415613407576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016133fe906144a4565b60405180910390fd5b6002600481111561341b5761341a614c1b565b5b81600481111561342e5761342d614c1b565b5b141561346f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613466906144c4565b60405180910390fd5b6003600481111561348357613482614c1b565b5b81600481111561349657613495614c1b565b5b14156134d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016134ce90614604565b60405180910390fd5b6004808111156134ea576134e9614c1b565b5b8160048111156134fd576134fc614c1b565b5b141561353e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613535906146c4565b60405180910390fd5b5b50565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a08360001c111561357d576000600391509150613646565b601b8560ff16141580156135955750601c8560ff1614155b156135a7576000600491509150613646565b6000600187878787604051600081526020016040526040516135cc949392919061443d565b6020604051602081039080840390855afa1580156135ee573d6000803e3d6000fd5b505050602060405103519050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561363d57600060019250925050613646565b80600092509250505b94509492505050565b60008060007f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff60001b841690506000601b60ff8660001c901c61369291906148a2565b90506136a087828885613542565b935093505050935093915050565b8280546136ba90614a84565b90600052602060002090601f0160209004810192826136dc5760008555613723565b82601f106136f557805160ff1916838001178555613723565b82800160010185558215613723579182015b82811115613722578251825591602001919060010190613707565b5b5090506137309190613777565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b80821115613790576000816000905550600101613778565b5090565b60006137a76137a2846147c4565b61479f565b9050828152602081018484840111156137c3576137c2614ce6565b5b6137ce848285614a42565b509392505050565b60006137e96137e4846147f5565b61479f565b90508281526020810184848401111561380557613804614ce6565b5b613810848285614a42565b509392505050565b600081359050613827816151df565b92915050565b60008083601f84011261384357613842614cdc565b5b8235905067ffffffffffffffff8111156138605761385f614cd7565b5b60208301915083602082028301111561387c5761387b614ce1565b5b9250929050565b60008083601f84011261389957613898614cdc565b5b8235905067ffffffffffffffff8111156138b6576138b5614cd7565b5b6020830191508360208202830111156138d2576138d1614ce1565b5b9250929050565b6000813590506138e8816151f6565b92915050565b6000813590506138fd8161520d565b92915050565b6000815190506139128161520d565b92915050565b60008083601f84011261392e5761392d614cdc565b5b8235905067ffffffffffffffff81111561394b5761394a614cd7565b5b60208301915083600182028301111561396757613966614ce1565b5b9250929050565b600082601f83011261398357613982614cdc565b5b8135613993848260208601613794565b91505092915050565b600082601f8301126139b1576139b0614cdc565b5b81356139c18482602086016137d6565b91505092915050565b6000813590506139d981615224565b92915050565b6000602082840312156139f5576139f4614cf0565b5b6000613a0384828501613818565b91505092915050565b60008060408385031215613a2357613a22614cf0565b5b6000613a3185828601613818565b9250506020613a4285828601613818565b9150509250929050565b600080600060608486031215613a6557613a64614cf0565b5b6000613a7386828701613818565b9350506020613a8486828701613818565b9250506040613a95868287016139ca565b9150509250925092565b60008060008060808587031215613ab957613ab8614cf0565b5b6000613ac787828801613818565b9450506020613ad887828801613818565b9350506040613ae9878288016139ca565b925050606085013567ffffffffffffffff811115613b0a57613b09614ceb565b5b613b168782880161396e565b91505092959194509250565b60008060408385031215613b3957613b38614cf0565b5b6000613b4785828601613818565b9250506020613b58858286016138d9565b9150509250929050565b60008060408385031215613b7957613b78614cf0565b5b6000613b8785828601613818565b9250506020613b98858286016139ca565b9150509250929050565b60008060008060408587031215613bbc57613bbb614cf0565b5b600085013567ffffffffffffffff811115613bda57613bd9614ceb565b5b613be68782880161382d565b9450945050602085013567ffffffffffffffff811115613c0957613c08614ceb565b5b613c1587828801613883565b925092505092959194509250565b600060208284031215613c3957613c38614cf0565b5b6000613c47848285016138ee565b91505092915050565b600060208284031215613c6657613c65614cf0565b5b6000613c7484828501613903565b91505092915050565b600060208284031215613c9357613c92614cf0565b5b600082013567ffffffffffffffff811115613cb157613cb0614ceb565b5b613cbd8482850161399c565b91505092915050565b600060208284031215613cdc57613cdb614cf0565b5b6000613cea848285016139ca565b91505092915050565b60008060408385031215613d0a57613d09614cf0565b5b6000613d18858286016139ca565b9250506020613d2985828601613818565b9150509250929050565b60008060008060008060a08789031215613d5057613d4f614cf0565b5b6000613d5e89828a016139ca565b9650506020613d6f89828a01613818565b9550506040613d8089828a016139ca565b9450506060613d9189828a016138d9565b935050608087013567ffffffffffffffff811115613db257613db1614ceb565b5b613dbe89828a01613918565b92509250509295509295509295565b6000613dd983836142c3565b60208301905092915050565b613dee816149b7565b82525050565b613e05613e00826149b7565b614b30565b82525050565b6000613e1682614836565b613e208185614864565b9350613e2b83614826565b8060005b83811015613e5c578151613e438882613dcd565b9750613e4e83614857565b925050600181019050613e2f565b5085935050505092915050565b613e72816149c9565b82525050565b613e89613e84826149c9565b614b42565b82525050565b613e98816149d5565b82525050565b613eaf613eaa826149d5565b614b54565b82525050565b6000613ec082614841565b613eca8185614875565b9350613eda818560208601614a51565b613ee381614cf5565b840191505092915050565b6000613ef98261484c565b613f038185614886565b9350613f13818560208601614a51565b613f1c81614cf5565b840191505092915050565b6000613f328261484c565b613f3c8185614897565b9350613f4c818560208601614a51565b80840191505092915050565b6000613f65601883614886565b9150613f7082614d20565b602082019050919050565b6000613f88601f83614886565b9150613f9382614d49565b602082019050919050565b6000613fab600f83614886565b9150613fb682614d72565b602082019050919050565b6000613fce601c83614897565b9150613fd982614d9b565b601c82019050919050565b6000613ff1601983614886565b9150613ffc82614dc4565b602082019050919050565b6000614014602683614886565b915061401f82614ded565b604082019050919050565b6000614037602083614886565b915061404282614e3c565b602082019050919050565b600061405a601983614886565b915061406582614e65565b602082019050919050565b600061407d600d83614886565b915061408882614e8e565b602082019050919050565b60006140a0602483614886565b91506140ab82614eb7565b604082019050919050565b60006140c3601083614886565b91506140ce82614f06565b602082019050919050565b60006140e6601f83614886565b91506140f182614f2f565b602082019050919050565b6000614109602283614886565b915061411482614f58565b604082019050919050565b600061412c601d83614886565b915061413782614fa7565b602082019050919050565b600061414f601783614886565b915061415a82614fd0565b602082019050919050565b6000614172601883614886565b915061417d82614ff9565b602082019050919050565b6000614195601983614886565b91506141a082615022565b602082019050919050565b60006141b8600a83614886565b91506141c38261504b565b602082019050919050565b60006141db602283614886565b91506141e682615074565b604082019050919050565b60006141fe603783614886565b9150614209826150c3565b604082019050919050565b6000614221602083614886565b915061422c82615112565b602082019050919050565b6000614244601383614886565b915061424f8261513b565b602082019050919050565b6000614267600683614897565b915061427282615164565b600682019050919050565b600061428a601483614886565b91506142958261518d565b602082019050919050565b60006142ad600c83614886565b91506142b8826151b6565b602082019050919050565b6142cc81614a2b565b82525050565b6142db81614a2b565b82525050565b6142f26142ed82614a2b565b614b70565b82525050565b61430181614a35565b82525050565b60006143138286613df4565b60148201915061432382856142e1565b6020820191506143338284613e78565b6001820191506143428261425a565b9150819050949350505050565b600061435b8285613f27565b91506143678284613f27565b91508190509392505050565b600061437e82613fc1565b915061438a8284613e9e565b60208201915081905092915050565b60006020820190506143ae6000830184613de5565b92915050565b60006080820190506143c96000830187613de5565b6143d66020830186613de5565b6143e360408301856142d2565b81810360608301526143f58184613eb5565b905095945050505050565b6000602082019050818103600083015261441a8184613e0b565b905092915050565b60006020820190506144376000830184613e69565b92915050565b60006080820190506144526000830187613e8f565b61445f60208301866142f8565b61446c6040830185613e8f565b6144796060830184613e8f565b95945050505050565b6000602082019050818103600083015261449c8184613eee565b905092915050565b600060208201905081810360008301526144bd81613f58565b9050919050565b600060208201905081810360008301526144dd81613f7b565b9050919050565b600060208201905081810360008301526144fd81613f9e565b9050919050565b6000602082019050818103600083015261451d81613fe4565b9050919050565b6000602082019050818103600083015261453d81614007565b9050919050565b6000602082019050818103600083015261455d8161402a565b9050919050565b6000602082019050818103600083015261457d8161404d565b9050919050565b6000602082019050818103600083015261459d81614070565b9050919050565b600060208201905081810360008301526145bd81614093565b9050919050565b600060208201905081810360008301526145dd816140b6565b9050919050565b600060208201905081810360008301526145fd816140d9565b9050919050565b6000602082019050818103600083015261461d816140fc565b9050919050565b6000602082019050818103600083015261463d8161411f565b9050919050565b6000602082019050818103600083015261465d81614142565b9050919050565b6000602082019050818103600083015261467d81614165565b9050919050565b6000602082019050818103600083015261469d81614188565b9050919050565b600060208201905081810360008301526146bd816141ab565b9050919050565b600060208201905081810360008301526146dd816141ce565b9050919050565b600060208201905081810360008301526146fd816141f1565b9050919050565b6000602082019050818103600083015261471d81614214565b9050919050565b6000602082019050818103600083015261473d81614237565b9050919050565b6000602082019050818103600083015261475d8161427d565b9050919050565b6000602082019050818103600083015261477d816142a0565b9050919050565b600060208201905061479960008301846142d2565b92915050565b60006147a96147ba565b90506147b58282614ab6565b919050565b6000604051905090565b600067ffffffffffffffff8211156147df576147de614ca8565b5b6147e882614cf5565b9050602081019050919050565b600067ffffffffffffffff8211156148105761480f614ca8565b5b61481982614cf5565b9050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b60006148ad82614a2b565b91506148b883614a2b565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156148ed576148ec614bbd565b5b828201905092915050565b600061490382614a2b565b915061490e83614a2b565b92508261491e5761491d614bec565b5b828204905092915050565b600061493482614a2b565b915061493f83614a2b565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561497857614977614bbd565b5b828202905092915050565b600061498e82614a2b565b915061499983614a2b565b9250828210156149ac576149ab614bbd565b5b828203905092915050565b60006149c282614a0b565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b82818337600083830152505050565b60005b83811015614a6f578082015181840152602081019050614a54565b83811115614a7e576000848401525b50505050565b60006002820490506001821680614a9c57607f821691505b60208210811415614ab057614aaf614c4a565b5b50919050565b614abf82614cf5565b810181811067ffffffffffffffff82111715614ade57614add614ca8565b5b80604052505050565b6000614af282614a2b565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614b2557614b24614bbd565b5b600182019050919050565b6000614b3b82614b5e565b9050919050565b6000614b4d82614b7a565b9050919050565b6000819050919050565b6000614b6982614d13565b9050919050565b6000819050919050565b6000614b8582614d06565b9050919050565b6000614b9782614a2b565b9150614ba283614a2b565b925082614bb257614bb1614bec565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160f81b9050919050565b60008160601b9050919050565b7f45434453413a20696e76616c6964207369676e61747572650000000000000000600082015250565b7f45434453413a20696e76616c6964207369676e6174757265206c656e67746800600082015250565b7f496e76616c696420766f75636865720000000000000000000000000000000000600082015250565b7f19457468657265756d205369676e6564204d6573736167653a0a333200000000600082015250565b7f546f6b656e7320616c72656164792061697264726f7070656400000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f507572636861736520776f756c6420657863656564206d617820746f6b656e73600082015250565b7f506f696e74206d696e74696e67206e6f74207374617274656400000000000000600082015250565b7f4d61782035207065722074786e00000000000000000000000000000000000000600082015250565b7f455243373231413a20756e61626c6520746f206765742077616c6c65744f664f60008201527f776e657200000000000000000000000000000000000000000000000000000000602082015250565b7f4e6f7420796f757220766f756368657200000000000000000000000000000000600082015250565b7f45746865722076616c75652073656e74206973206e6f7420636f727265637400600082015250565b7f45434453413a20696e76616c6964207369676e6174757265202773272076616c60008201527f7565000000000000000000000000000000000000000000000000000000000000602082015250565b7f4e6f7420656e6f75676820706f696e747320746f206d696e7420796574000000600082015250565b7f546f6b656e7320616c7265616479207265736572766564000000000000000000600082015250565b7f506f696e74206d696e74696e67206e6f74206163746976650000000000000000600082015250565b7f5075626c69632073616c65206973206e6f742061637469766500000000000000600082015250565b7f4261642041727261797300000000000000000000000000000000000000000000600082015250565b7f45434453413a20696e76616c6964207369676e6174757265202776272076616c60008201527f7565000000000000000000000000000000000000000000000000000000000000602082015250565b7f4f6e6c7920746f702035353520686f6c64657273206d6179206d696e7420647560008201527f72696e672074686520666972737420313220686f757273000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4f766572206d696e7420616c6c6f77616e636500000000000000000000000000600082015250565b7f706f696e74730000000000000000000000000000000000000000000000000000600082015250565b7f53616c65206d696e74696e67206973206f766572000000000000000000000000600082015250565b7f4e6f20636f6e7472616374730000000000000000000000000000000000000000600082015250565b6151e8816149b7565b81146151f357600080fd5b50565b6151ff816149c9565b811461520a57600080fd5b50565b615216816149df565b811461522157600080fd5b50565b61522d81614a2b565b811461523857600080fd5b5056fea26469706673582212207ee276765669c863831020696724a0b04746772bca98a42863e647b253459e6264736f6c63430008070033

Deployed Bytecode

0x60806040526004361061020f5760003560e01c80636724348211610118578063a22cb465116100a0578063cc7b32191161006f578063cc7b321914610790578063cd3293de146107ac578063d5eee3c5146107c3578063e985e9c5146107ee578063f2fde38b1461082b5761020f565b8063a22cb465146106d6578063b67c25a3146106ff578063b88d4fde1461072a578063c87b56dd146107535761020f565b80637460d603116100e75780637460d603146106015780637960c27f1461062c578063833b9499146106555780638da5cb5b1461068057806395d89b41146106ab5761020f565b8063672434821461055b5780636c19e7831461058457806370a08231146105ad578063715018a6146105ea5761020f565b80633add14c81161019b57806351b96d921161016a57806351b96d921461048357806355f804b3146104ae578063572d878c146104d75780636352211e14610502578063669f5a511461053f5761020f565b80633add14c8146103c95780633ccfd60b1461040657806342842e0e1461041d578063438b6300146104465761020f565b80631237e5e8116101e25780631237e5e8146102e257806318160ddd1461031f57806323b872dd1461034a578063255e46851461037357806332cb6b0c1461039e5761020f565b806301ffc9a71461021457806306fdde0314610251578063081812fc1461027c578063095ea7b3146102b9575b600080fd5b34801561022057600080fd5b5061023b60048036038101906102369190613c23565b610854565b6040516102489190614422565b60405180910390f35b34801561025d57600080fd5b50610266610936565b6040516102739190614482565b60405180910390f35b34801561028857600080fd5b506102a3600480360381019061029e9190613cc6565b6109c8565b6040516102b09190614399565b60405180910390f35b3480156102c557600080fd5b506102e060048036038101906102db9190613b62565b610a44565b005b3480156102ee57600080fd5b50610309600480360381019061030491906139df565b610b4f565b6040516103169190614784565b60405180910390f35b34801561032b57600080fd5b50610334610b67565b6040516103419190614784565b60405180910390f35b34801561035657600080fd5b50610371600480360381019061036c9190613a4c565b610b7e565b005b34801561037f57600080fd5b50610388610b8e565b6040516103959190614784565b60405180910390f35b3480156103aa57600080fd5b506103b3610b94565b6040516103c09190614784565b60405180910390f35b3480156103d557600080fd5b506103f060048036038101906103eb91906139df565b610b9a565b6040516103fd9190614784565b60405180910390f35b34801561041257600080fd5b5061041b610bb2565b005b34801561042957600080fd5b50610444600480360381019061043f9190613a4c565b610c9f565b005b34801561045257600080fd5b5061046d600480360381019061046891906139df565b610cbf565b60405161047a9190614400565b60405180910390f35b34801561048f57600080fd5b50610498610f38565b6040516104a59190614784565b60405180910390f35b3480156104ba57600080fd5b506104d560048036038101906104d09190613c7d565b610f3d565b005b3480156104e357600080fd5b506104ec610fd3565b6040516104f99190614784565b60405180910390f35b34801561050e57600080fd5b5061052960048036038101906105249190613cc6565b611076565b6040516105369190614399565b60405180910390f35b61055960048036038101906105549190613cf3565b61108c565b005b34801561056757600080fd5b50610582600480360381019061057d9190613ba2565b61125a565b005b34801561059057600080fd5b506105ab60048036038101906105a691906139df565b6113db565b005b3480156105b957600080fd5b506105d460048036038101906105cf91906139df565b61149b565b6040516105e19190614784565b60405180910390f35b3480156105f657600080fd5b506105ff61156b565b005b34801561060d57600080fd5b506106166115f3565b6040516106239190614422565b60405180910390f35b34801561063857600080fd5b50610653600480360381019061064e9190613cc6565b61161a565b005b34801561066157600080fd5b5061066a6116a0565b6040516106779190614784565b60405180910390f35b34801561068c57600080fd5b506106956116ac565b6040516106a29190614399565b60405180910390f35b3480156106b757600080fd5b506106c06116d6565b6040516106cd9190614482565b60405180910390f35b3480156106e257600080fd5b506106fd60048036038101906106f89190613b22565b611768565b005b34801561070b57600080fd5b506107146118e0565b6040516107219190614422565b60405180910390f35b34801561073657600080fd5b50610751600480360381019061074c9190613a9f565b6118fa565b005b34801561075f57600080fd5b5061077a60048036038101906107759190613cc6565b611976565b6040516107879190614482565b60405180910390f35b6107aa60048036038101906107a59190613d33565b611a15565b005b3480156107b857600080fd5b506107c1611ebb565b005b3480156107cf57600080fd5b506107d8611fb0565b6040516107e59190614784565b60405180910390f35b3480156107fa57600080fd5b5061081560048036038101906108109190613a0c565b611fb6565b6040516108229190614422565b60405180910390f35b34801561083757600080fd5b50610852600480360381019061084d91906139df565b61204a565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061091f57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061092f575061092e82612142565b5b9050919050565b60606002805461094590614a84565b80601f016020809104026020016040519081016040528092919081815260200182805461097190614a84565b80156109be5780601f10610993576101008083540402835291602001916109be565b820191906000526020600020905b8154815290600101906020018083116109a157829003601f168201915b5050505050905090565b60006109d3826121ac565b610a09576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610a4f82611076565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610ab7576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610ad66121fa565b73ffffffffffffffffffffffffffffffffffffffff1614158015610b085750610b0681610b016121fa565b611fb6565b155b15610b3f576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610b4a838383612202565b505050565b600a6020528060005260406000206000915090505481565b6000610b716122b4565b6001546000540303905090565b610b898383836122bd565b505050565b60095481565b61045881565b600b6020528060005260406000206000915090505481565b610bba6121fa565b73ffffffffffffffffffffffffffffffffffffffff16610bd86116ac565b73ffffffffffffffffffffffffffffffffffffffff1614610c2e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c2590614704565b60405180910390fd5b6000479050600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610c9b573d6000803e3d6000fd5b5050565b610cba838383604051806020016040528060008152506118fa565b505050565b60606000610ccc8361149b565b905060008167ffffffffffffffff811115610cea57610ce9614ca8565b5b604051908082528060200260200182016040528015610d185781602001602082028036833780820191505090505b5090506000821415610d2e578092505050610f33565b6000610d386122b4565b610d40610b67565b610d4a91906148a2565b90506000806000610d596122b4565b90505b83811015610ef7576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614610e6957806000015192505b8873ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610ee35781868581518110610eb157610eb0614c79565b5b6020026020010181815250508380610ec890614ae7565b94505086841415610ee25785975050505050505050610f33565b5b508080610eef90614ae7565b915050610d5c565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f2a906145a4565b60405180910390fd5b919050565b600681565b610f456121fa565b73ffffffffffffffffffffffffffffffffffffffff16610f636116ac565b73ffffffffffffffffffffffffffffffffffffffff1614610fb9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fb090614704565b60405180910390fd5b80600c9080519060200190610fcf9291906136ae565b5050565b6000610fdd6115f3565b61101c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161101390614664565b60405180910390fd5b61a8c160095461102c91906148a2565b42101561103c57600d9050611073565b612a3061a8c060095461104f91906148a2565b4261105a9190614983565b61106491906148f8565b60046110709190614983565b90505b90565b600061108182612773565b600001519050919050565b6000611096610b67565b90503373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614611106576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110fd90614764565b60405180910390fd5b6201518060095461111791906148a2565b4211611158576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161114f90614684565b60405180910390fd5b610458838261116791906148a2565b106111a7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161119e90614544565b60405180910390fd5b82670494654067e100006111bb9190614929565b6001346111c891906148a2565b11611208576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111ff906145e4565b60405180910390fd5b6006831061124b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161124290614584565b60405180910390fd5b6112558284612a02565b505050565b6112626121fa565b73ffffffffffffffffffffffffffffffffffffffff166112806116ac565b73ffffffffffffffffffffffffffffffffffffffff16146112d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112cd90614704565b60405180910390fd5b6102406112e1610b67565b10611321576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161131890614504565b60405180910390fd5b818190508484905014611369576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611360906146a4565b60405180910390fd5b60005b848490508110156113d4576113c185858381811061138d5761138c614c79565b5b90506020020160208101906113a291906139df565b8484848181106113b5576113b4614c79565b5b90506020020135612a02565b80806113cc90614ae7565b91505061136c565b5050505050565b6113e36121fa565b73ffffffffffffffffffffffffffffffffffffffff166114016116ac565b73ffffffffffffffffffffffffffffffffffffffff1614611457576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161144e90614704565b60405180910390fd5b80600d60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611503576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b6115736121fa565b73ffffffffffffffffffffffffffffffffffffffff166115916116ac565b73ffffffffffffffffffffffffffffffffffffffff16146115e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115de90614704565b60405180910390fd5b6115f16000612a20565b565b60006009544211801561161557506201518160095461161291906148a2565b42105b905090565b6116226121fa565b73ffffffffffffffffffffffffffffffffffffffff166116406116ac565b73ffffffffffffffffffffffffffffffffffffffff1614611696576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161168d90614704565b60405180910390fd5b8060098190555050565b670494654067e1000081565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600380546116e590614a84565b80601f016020809104026020016040519081016040528092919081815260200182805461171190614a84565b801561175e5780601f106117335761010080835404028352916020019161175e565b820191906000526020600020905b81548152906001019060200180831161174157829003601f168201915b5050505050905090565b6117706121fa565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156117d5576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600760006117e26121fa565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661188f6121fa565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516118d49190614422565b60405180910390a35050565b6000620151806009546118f391906148a2565b4211905090565b6119058484846122bd565b6119248373ffffffffffffffffffffffffffffffffffffffff16612ae6565b8015611939575061193784848484612b09565b155b15611970576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b6060611981826121ac565b6119b7576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60006119c1612c69565b90506000815114156119e25760405180602001604052806000815250611a0d565b806119ec84612cfb565b6040516020016119fd92919061434f565b6040516020818303038152906040525b915050919050565b6000600a60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490506009544211611a9d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a9490614564565b60405180910390fd5b62015181600954611aae91906148a2565b4210611aef576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ae690614744565b60405180910390fd5b60048782611afd91906148a2565b10611b3d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b3490614724565b60405180910390fd5b61024087611b49610b67565b611b5391906148a2565b10611b93576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b8a90614544565b60405180910390fd5b600087670494654067e10000611ba99190614929565b90506000821415611bd5576658d15e1762800086611bc79190614929565b81611bd29190614983565b90505b80600134611be391906148a2565b11611c23576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c1a906145e4565b60405180910390fd5b8673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611c91576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c88906145c4565b60405180910390fd5b6000878787604051602001611ca893929190614307565b604051602081830303815290604052805190602001209050611d31600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff168287878080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f82011690508083019250505050505050612e5c565b611d70576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d67906144e4565b60405180910390fd5b61a8c1600954611d8091906148a2565b421015611dcc5785611dc7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dbe906146e4565b60405180910390fd5b611e50565b6000612a3061a8c0600954611de191906148a2565b42611dec9190614983565b611df691906148f8565b6003611e029190614983565b90508680611e0f57508088115b611e4e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e4590614624565b60405180910390fd5b505b88600a60008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611e9f91906148a2565b92505081905550611eb0888a612a02565b505050505050505050565b611ec36121fa565b73ffffffffffffffffffffffffffffffffffffffff16611ee16116ac565b73ffffffffffffffffffffffffffffffffffffffff1614611f37576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f2e90614704565b60405180910390fd5b6000611f41610b67565b14611f81576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f7890614644565b60405180910390fd5b611fae600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166014612a02565b565b61024081565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6120526121fa565b73ffffffffffffffffffffffffffffffffffffffff166120706116ac565b73ffffffffffffffffffffffffffffffffffffffff16146120c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120bd90614704565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612136576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161212d90614524565b60405180910390fd5b61213f81612a20565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000816121b76122b4565b111580156121c6575060005482105b80156121f3575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006001905090565b60006122c882612773565b90508373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612333576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff166123546121fa565b73ffffffffffffffffffffffffffffffffffffffff16148061238357506123828561237d6121fa565b611fb6565b5b806123c857506123916121fa565b73ffffffffffffffffffffffffffffffffffffffff166123b0846109c8565b73ffffffffffffffffffffffffffffffffffffffff16145b905080612401576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612468576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6124758585856001612ea7565b61248160008487612202565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600460008581526020019081526020016000209050848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060006001850190506000600460008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141561270157600054821461270057878160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b505050828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461276c8585856001612ead565b5050505050565b61277b613734565b6000829050806127896122b4565b11158015612798575060005481105b156129cb576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff161515151581525050905080604001516129c957600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146128ad5780925050506129fd565b5b6001156129c857818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146129c35780925050506129fd565b6128ae565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b612a1c828260405180602001604052806000815250612eb3565b5050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612b2f6121fa565b8786866040518563ffffffff1660e01b8152600401612b5194939291906143b4565b602060405180830381600087803b158015612b6b57600080fd5b505af1925050508015612b9c57506040513d601f19601f82011682018060405250810190612b999190613c50565b60015b612c16573d8060008114612bcc576040519150601f19603f3d011682016040523d82523d6000602084013e612bd1565b606091505b50600081511415612c0e576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600c8054612c7890614a84565b80601f0160208091040260200160405190810160405280929190818152602001828054612ca490614a84565b8015612cf15780601f10612cc657610100808354040283529160200191612cf1565b820191906000526020600020905b815481529060010190602001808311612cd457829003601f168201915b5050505050905090565b60606000821415612d43576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612e57565b600082905060005b60008214612d75578080612d5e90614ae7565b915050600a82612d6e91906148f8565b9150612d4b565b60008167ffffffffffffffff811115612d9157612d90614ca8565b5b6040519080825280601f01601f191660200182016040528015612dc35781602001600182028036833780820191505090505b5090505b60008514612e5057600182612ddc9190614983565b9150600a85612deb9190614b8c565b6030612df791906148a2565b60f81b818381518110612e0d57612e0c614c79565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612e4991906148f8565b9450612dc7565b8093505050505b919050565b6000612e70612e6a84612ec5565b83612ef5565b73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161490509392505050565b50505050565b50505050565b612ec08383836001612f1c565b505050565b600081604051602001612ed89190614373565b604051602081830303815290604052805190602001209050919050565b6000806000612f0485856132ea565b91509150612f118161336d565b819250505092915050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415612f89576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000841415612fc4576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612fd16000868387612ea7565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060008190506000858201905083801561319b575061319a8773ffffffffffffffffffffffffffffffffffffffff16612ae6565b5b15613261575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46132106000888480600101955088612b09565b613246576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b808214156131a157826000541461325c57600080fd5b6132cd565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a480821415613262575b8160008190555050506132e36000868387612ead565b5050505050565b60008060418351141561332c5760008060006020860151925060408601519150606086015160001a905061332087828585613542565b94509450505050613366565b60408351141561335d57600080602085015191506040850151905061335286838361364f565b935093505050613366565b60006002915091505b9250929050565b6000600481111561338157613380614c1b565b5b81600481111561339457613393614c1b565b5b141561339f5761353f565b600160048111156133b3576133b2614c1b565b5b8160048111156133c6576133c5614c1b565b5b1415613407576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016133fe906144a4565b60405180910390fd5b6002600481111561341b5761341a614c1b565b5b81600481111561342e5761342d614c1b565b5b141561346f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613466906144c4565b60405180910390fd5b6003600481111561348357613482614c1b565b5b81600481111561349657613495614c1b565b5b14156134d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016134ce90614604565b60405180910390fd5b6004808111156134ea576134e9614c1b565b5b8160048111156134fd576134fc614c1b565b5b141561353e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613535906146c4565b60405180910390fd5b5b50565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a08360001c111561357d576000600391509150613646565b601b8560ff16141580156135955750601c8560ff1614155b156135a7576000600491509150613646565b6000600187878787604051600081526020016040526040516135cc949392919061443d565b6020604051602081039080840390855afa1580156135ee573d6000803e3d6000fd5b505050602060405103519050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561363d57600060019250925050613646565b80600092509250505b94509492505050565b60008060007f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff60001b841690506000601b60ff8660001c901c61369291906148a2565b90506136a087828885613542565b935093505050935093915050565b8280546136ba90614a84565b90600052602060002090601f0160209004810192826136dc5760008555613723565b82601f106136f557805160ff1916838001178555613723565b82800160010185558215613723579182015b82811115613722578251825591602001919060010190613707565b5b5090506137309190613777565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b80821115613790576000816000905550600101613778565b5090565b60006137a76137a2846147c4565b61479f565b9050828152602081018484840111156137c3576137c2614ce6565b5b6137ce848285614a42565b509392505050565b60006137e96137e4846147f5565b61479f565b90508281526020810184848401111561380557613804614ce6565b5b613810848285614a42565b509392505050565b600081359050613827816151df565b92915050565b60008083601f84011261384357613842614cdc565b5b8235905067ffffffffffffffff8111156138605761385f614cd7565b5b60208301915083602082028301111561387c5761387b614ce1565b5b9250929050565b60008083601f84011261389957613898614cdc565b5b8235905067ffffffffffffffff8111156138b6576138b5614cd7565b5b6020830191508360208202830111156138d2576138d1614ce1565b5b9250929050565b6000813590506138e8816151f6565b92915050565b6000813590506138fd8161520d565b92915050565b6000815190506139128161520d565b92915050565b60008083601f84011261392e5761392d614cdc565b5b8235905067ffffffffffffffff81111561394b5761394a614cd7565b5b60208301915083600182028301111561396757613966614ce1565b5b9250929050565b600082601f83011261398357613982614cdc565b5b8135613993848260208601613794565b91505092915050565b600082601f8301126139b1576139b0614cdc565b5b81356139c18482602086016137d6565b91505092915050565b6000813590506139d981615224565b92915050565b6000602082840312156139f5576139f4614cf0565b5b6000613a0384828501613818565b91505092915050565b60008060408385031215613a2357613a22614cf0565b5b6000613a3185828601613818565b9250506020613a4285828601613818565b9150509250929050565b600080600060608486031215613a6557613a64614cf0565b5b6000613a7386828701613818565b9350506020613a8486828701613818565b9250506040613a95868287016139ca565b9150509250925092565b60008060008060808587031215613ab957613ab8614cf0565b5b6000613ac787828801613818565b9450506020613ad887828801613818565b9350506040613ae9878288016139ca565b925050606085013567ffffffffffffffff811115613b0a57613b09614ceb565b5b613b168782880161396e565b91505092959194509250565b60008060408385031215613b3957613b38614cf0565b5b6000613b4785828601613818565b9250506020613b58858286016138d9565b9150509250929050565b60008060408385031215613b7957613b78614cf0565b5b6000613b8785828601613818565b9250506020613b98858286016139ca565b9150509250929050565b60008060008060408587031215613bbc57613bbb614cf0565b5b600085013567ffffffffffffffff811115613bda57613bd9614ceb565b5b613be68782880161382d565b9450945050602085013567ffffffffffffffff811115613c0957613c08614ceb565b5b613c1587828801613883565b925092505092959194509250565b600060208284031215613c3957613c38614cf0565b5b6000613c47848285016138ee565b91505092915050565b600060208284031215613c6657613c65614cf0565b5b6000613c7484828501613903565b91505092915050565b600060208284031215613c9357613c92614cf0565b5b600082013567ffffffffffffffff811115613cb157613cb0614ceb565b5b613cbd8482850161399c565b91505092915050565b600060208284031215613cdc57613cdb614cf0565b5b6000613cea848285016139ca565b91505092915050565b60008060408385031215613d0a57613d09614cf0565b5b6000613d18858286016139ca565b9250506020613d2985828601613818565b9150509250929050565b60008060008060008060a08789031215613d5057613d4f614cf0565b5b6000613d5e89828a016139ca565b9650506020613d6f89828a01613818565b9550506040613d8089828a016139ca565b9450506060613d9189828a016138d9565b935050608087013567ffffffffffffffff811115613db257613db1614ceb565b5b613dbe89828a01613918565b92509250509295509295509295565b6000613dd983836142c3565b60208301905092915050565b613dee816149b7565b82525050565b613e05613e00826149b7565b614b30565b82525050565b6000613e1682614836565b613e208185614864565b9350613e2b83614826565b8060005b83811015613e5c578151613e438882613dcd565b9750613e4e83614857565b925050600181019050613e2f565b5085935050505092915050565b613e72816149c9565b82525050565b613e89613e84826149c9565b614b42565b82525050565b613e98816149d5565b82525050565b613eaf613eaa826149d5565b614b54565b82525050565b6000613ec082614841565b613eca8185614875565b9350613eda818560208601614a51565b613ee381614cf5565b840191505092915050565b6000613ef98261484c565b613f038185614886565b9350613f13818560208601614a51565b613f1c81614cf5565b840191505092915050565b6000613f328261484c565b613f3c8185614897565b9350613f4c818560208601614a51565b80840191505092915050565b6000613f65601883614886565b9150613f7082614d20565b602082019050919050565b6000613f88601f83614886565b9150613f9382614d49565b602082019050919050565b6000613fab600f83614886565b9150613fb682614d72565b602082019050919050565b6000613fce601c83614897565b9150613fd982614d9b565b601c82019050919050565b6000613ff1601983614886565b9150613ffc82614dc4565b602082019050919050565b6000614014602683614886565b915061401f82614ded565b604082019050919050565b6000614037602083614886565b915061404282614e3c565b602082019050919050565b600061405a601983614886565b915061406582614e65565b602082019050919050565b600061407d600d83614886565b915061408882614e8e565b602082019050919050565b60006140a0602483614886565b91506140ab82614eb7565b604082019050919050565b60006140c3601083614886565b91506140ce82614f06565b602082019050919050565b60006140e6601f83614886565b91506140f182614f2f565b602082019050919050565b6000614109602283614886565b915061411482614f58565b604082019050919050565b600061412c601d83614886565b915061413782614fa7565b602082019050919050565b600061414f601783614886565b915061415a82614fd0565b602082019050919050565b6000614172601883614886565b915061417d82614ff9565b602082019050919050565b6000614195601983614886565b91506141a082615022565b602082019050919050565b60006141b8600a83614886565b91506141c38261504b565b602082019050919050565b60006141db602283614886565b91506141e682615074565b604082019050919050565b60006141fe603783614886565b9150614209826150c3565b604082019050919050565b6000614221602083614886565b915061422c82615112565b602082019050919050565b6000614244601383614886565b915061424f8261513b565b602082019050919050565b6000614267600683614897565b915061427282615164565b600682019050919050565b600061428a601483614886565b91506142958261518d565b602082019050919050565b60006142ad600c83614886565b91506142b8826151b6565b602082019050919050565b6142cc81614a2b565b82525050565b6142db81614a2b565b82525050565b6142f26142ed82614a2b565b614b70565b82525050565b61430181614a35565b82525050565b60006143138286613df4565b60148201915061432382856142e1565b6020820191506143338284613e78565b6001820191506143428261425a565b9150819050949350505050565b600061435b8285613f27565b91506143678284613f27565b91508190509392505050565b600061437e82613fc1565b915061438a8284613e9e565b60208201915081905092915050565b60006020820190506143ae6000830184613de5565b92915050565b60006080820190506143c96000830187613de5565b6143d66020830186613de5565b6143e360408301856142d2565b81810360608301526143f58184613eb5565b905095945050505050565b6000602082019050818103600083015261441a8184613e0b565b905092915050565b60006020820190506144376000830184613e69565b92915050565b60006080820190506144526000830187613e8f565b61445f60208301866142f8565b61446c6040830185613e8f565b6144796060830184613e8f565b95945050505050565b6000602082019050818103600083015261449c8184613eee565b905092915050565b600060208201905081810360008301526144bd81613f58565b9050919050565b600060208201905081810360008301526144dd81613f7b565b9050919050565b600060208201905081810360008301526144fd81613f9e565b9050919050565b6000602082019050818103600083015261451d81613fe4565b9050919050565b6000602082019050818103600083015261453d81614007565b9050919050565b6000602082019050818103600083015261455d8161402a565b9050919050565b6000602082019050818103600083015261457d8161404d565b9050919050565b6000602082019050818103600083015261459d81614070565b9050919050565b600060208201905081810360008301526145bd81614093565b9050919050565b600060208201905081810360008301526145dd816140b6565b9050919050565b600060208201905081810360008301526145fd816140d9565b9050919050565b6000602082019050818103600083015261461d816140fc565b9050919050565b6000602082019050818103600083015261463d8161411f565b9050919050565b6000602082019050818103600083015261465d81614142565b9050919050565b6000602082019050818103600083015261467d81614165565b9050919050565b6000602082019050818103600083015261469d81614188565b9050919050565b600060208201905081810360008301526146bd816141ab565b9050919050565b600060208201905081810360008301526146dd816141ce565b9050919050565b600060208201905081810360008301526146fd816141f1565b9050919050565b6000602082019050818103600083015261471d81614214565b9050919050565b6000602082019050818103600083015261473d81614237565b9050919050565b6000602082019050818103600083015261475d8161427d565b9050919050565b6000602082019050818103600083015261477d816142a0565b9050919050565b600060208201905061479960008301846142d2565b92915050565b60006147a96147ba565b90506147b58282614ab6565b919050565b6000604051905090565b600067ffffffffffffffff8211156147df576147de614ca8565b5b6147e882614cf5565b9050602081019050919050565b600067ffffffffffffffff8211156148105761480f614ca8565b5b61481982614cf5565b9050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b60006148ad82614a2b565b91506148b883614a2b565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156148ed576148ec614bbd565b5b828201905092915050565b600061490382614a2b565b915061490e83614a2b565b92508261491e5761491d614bec565b5b828204905092915050565b600061493482614a2b565b915061493f83614a2b565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561497857614977614bbd565b5b828202905092915050565b600061498e82614a2b565b915061499983614a2b565b9250828210156149ac576149ab614bbd565b5b828203905092915050565b60006149c282614a0b565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b82818337600083830152505050565b60005b83811015614a6f578082015181840152602081019050614a54565b83811115614a7e576000848401525b50505050565b60006002820490506001821680614a9c57607f821691505b60208210811415614ab057614aaf614c4a565b5b50919050565b614abf82614cf5565b810181811067ffffffffffffffff82111715614ade57614add614ca8565b5b80604052505050565b6000614af282614a2b565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614b2557614b24614bbd565b5b600182019050919050565b6000614b3b82614b5e565b9050919050565b6000614b4d82614b7a565b9050919050565b6000819050919050565b6000614b6982614d13565b9050919050565b6000819050919050565b6000614b8582614d06565b9050919050565b6000614b9782614a2b565b9150614ba283614a2b565b925082614bb257614bb1614bec565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160f81b9050919050565b60008160601b9050919050565b7f45434453413a20696e76616c6964207369676e61747572650000000000000000600082015250565b7f45434453413a20696e76616c6964207369676e6174757265206c656e67746800600082015250565b7f496e76616c696420766f75636865720000000000000000000000000000000000600082015250565b7f19457468657265756d205369676e6564204d6573736167653a0a333200000000600082015250565b7f546f6b656e7320616c72656164792061697264726f7070656400000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f507572636861736520776f756c6420657863656564206d617820746f6b656e73600082015250565b7f506f696e74206d696e74696e67206e6f74207374617274656400000000000000600082015250565b7f4d61782035207065722074786e00000000000000000000000000000000000000600082015250565b7f455243373231413a20756e61626c6520746f206765742077616c6c65744f664f60008201527f776e657200000000000000000000000000000000000000000000000000000000602082015250565b7f4e6f7420796f757220766f756368657200000000000000000000000000000000600082015250565b7f45746865722076616c75652073656e74206973206e6f7420636f727265637400600082015250565b7f45434453413a20696e76616c6964207369676e6174757265202773272076616c60008201527f7565000000000000000000000000000000000000000000000000000000000000602082015250565b7f4e6f7420656e6f75676820706f696e747320746f206d696e7420796574000000600082015250565b7f546f6b656e7320616c7265616479207265736572766564000000000000000000600082015250565b7f506f696e74206d696e74696e67206e6f74206163746976650000000000000000600082015250565b7f5075626c69632073616c65206973206e6f742061637469766500000000000000600082015250565b7f4261642041727261797300000000000000000000000000000000000000000000600082015250565b7f45434453413a20696e76616c6964207369676e6174757265202776272076616c60008201527f7565000000000000000000000000000000000000000000000000000000000000602082015250565b7f4f6e6c7920746f702035353520686f6c64657273206d6179206d696e7420647560008201527f72696e672074686520666972737420313220686f757273000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4f766572206d696e7420616c6c6f77616e636500000000000000000000000000600082015250565b7f706f696e74730000000000000000000000000000000000000000000000000000600082015250565b7f53616c65206d696e74696e67206973206f766572000000000000000000000000600082015250565b7f4e6f20636f6e7472616374730000000000000000000000000000000000000000600082015250565b6151e8816149b7565b81146151f357600080fd5b50565b6151ff816149c9565b811461520a57600080fd5b50565b615216816149df565b811461522157600080fd5b50565b61522d81614a2b565b811461523857600080fd5b5056fea26469706673582212207ee276765669c863831020696724a0b04746772bca98a42863e647b253459e6264736f6c63430008070033

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.