ETH Price: $2,941.09 (-6.06%)
Gas: 8 Gwei

Contract

0xD647F35C57f482166f1bcf4B1f7b721ed048920e
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Value
0x60806040143854442022-03-14 15:06:14843 days ago1647270374IN
 Create: Fortuna
0 ETH0.093459825

View more zero value Internal Transactions in Advanced View mode

Advanced mode:
Loading...
Loading

Contract Source Code Verified (Exact Match)

Contract Name:
Fortuna

Compiler Version
v0.8.12+commit.f00d7308

Optimization Enabled:
Yes with 120000 runs

Other Settings:
default evmVersion
File 1 of 13 : Fortuna.sol
//SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;

import '@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol';
import '@openzeppelin/contracts-upgradeable/access/OwnableUpgradeable.sol';
import '@openzeppelin/contracts-upgradeable/utils/cryptography/ECDSAUpgradeable.sol';

import './ERC721Upgradeable.sol';

/***
 *
 *
 *    `7MM"""YMM   .g8""8q. `7MM"""Mq. MMP""MM""YMM `7MMF'   `7MF'`7MN.   `7MF'     db
 *      MM    `7 .dP'    `YM. MM   `MM.P'   MM   `7   MM       M    MMN.    M      ;MM:
 *      MM   d   dM'      `MM MM   ,M9      MM        MM       M    M YMb   M     ,V^MM.
 *      MM""MM   MM        MM MMmmdM9       MM        MM       M    M  `MN. M    ,M  `MM
 *      MM   Y   MM.      ,MP MM  YM.       MM        MM       M    M   `MM.M    AbmmmqMA
 *      MM       `Mb.    ,dP' MM   `Mb.     MM        YM.     ,M    M     YMM   A'     VML
 *    .JMML.       `"bmmd"' .JMML. .JMM.  .JMML.       `bmmmmd"'  .JML.    YM .AMA.   .AMMA.
 *
 *
 */

contract Fortuna is OwnableUpgradeable, ERC721Upgradeable {
    uint256 public constant MAX_SUPPLY = 7777;

    uint256 public constant SALE_PRIVATE_PRICE = 0.065 ether;
    uint256 public constant SALE_PUBLIC_PRICE = 0.077 ether;

    uint256 public SALE_PUBLIC_STARTED_AT;
    uint256 public SALE_PRIVATE_STARTED_AT;

    uint256 public supply;

    address private _proxyRegistryAddress;
    address private _verifier;

    string private _baseTokenURI;

    struct TokenMeta {
        address owner;
        uint96 meta;
    }

    mapping(uint256 => TokenMeta) public tokenState;
    uint256[] internal _tokenStateKeys;

    mapping(address => uint16) public tokenOwnerState;

    mapping(address => int16) private _balances;

    mapping(address => bool) private _operators;

    function initialize(
        address verifier_,
        address operator_,
        address proxyRegistryAddress_
    ) public initializer {
        __ERC721_init('Fortuna', 'FRTN');
        __Ownable_init();

        _verifier = verifier_;
        _proxyRegistryAddress = proxyRegistryAddress_;

        _operators[_msgSender()] = true;
        _operators[operator_] = true;
    }

    /**
     * This is used instead of msg.sender as transactions won't be sent by the original token owner, but by OpenSea.
     */
    function _msgSender() internal view override returns (address sender) {
        if (msg.sender == address(this)) {
            bytes memory array = msg.data;
            uint256 index = msg.data.length;
            assembly {
                // Load the 32 bytes word from memory with the address on the lower 20 bytes, and mask those.
                sender := and(
                    mload(add(array, index)),
                    0xffffffffffffffffffffffffffffffffffffffff
                )
            }
        } else {
            sender = msg.sender;
        }
        return sender;
    }

    function actualOwnerOf(uint256 tokenId) public view returns (address) {
        if (tokenState[tokenId].owner != address(0)) {
            return tokenState[tokenId].owner;
        }

        address tokenIdOwner = address(uint160(tokenId));
        uint16 tokenIndex = uint16(tokenId >> 160);

        require(tokenOwnerState[tokenIdOwner] != 0, 'Token not minted');
        require(
            tokenIndex < tokenOwnerState[tokenIdOwner],
            'Invalid token index'
        );

        return tokenIdOwner;
    }

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

        return uint16(int16(tokenOwnerState[owner_]) + _balances[owner_]);
    }

    function ownerOf(uint256 tokenId)
        public
        view
        virtual
        override
        returns (address)
    {
        return actualOwnerOf(tokenId);
    }

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

        address tokenIdOwner = address(uint160(tokenId));
        uint16 tokenIndex = uint16(tokenId >> 160);

        return
            (tokenOwnerState[tokenIdOwner] != 0) &&
            (tokenIndex < tokenOwnerState[tokenIdOwner]);
    }

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

        require(to != from, "ERC721: can't transfer themself");

        _beforeTokenTransfer(from, to, tokenId);

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

        if (tokenState[tokenId].owner == address(0)) {
            _tokenStateKeys.push(tokenId);
        }

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

        tokenState[tokenId].owner = to;

        emit Transfer(from, to, tokenId);

        _afterTokenTransfer(from, to, tokenId);
    }

    function _recoverSigner(bytes32 hash, bytes memory signature)
        internal
        pure
        returns (address)
    {
        return
            ECDSAUpgradeable.recover(
                ECDSAUpgradeable.toEthSignedMessageHash(hash),
                signature
            );
    }

    function _mintTokens(address receiver, uint16 amount) internal {
        require(supply + amount <= MAX_SUPPLY, 'FRTN: supply overflow');

        uint16 tokensAmount = tokenOwnerState[receiver] + amount;

        uint256 ownerBase = uint256(uint160(receiver));

        for (
            uint256 index = tokenOwnerState[receiver];
            index < tokensAmount;
            index++
        ) {
            emit Transfer(address(0), receiver, ownerBase | (index << 160));
        }

        tokenOwnerState[receiver] = tokensAmount;

        supply += amount;
    }

    function _mintBase(
        uint8 mintType,
        uint16 amount,
        uint16 maxAmount,
        uint256 timestamp,
        bytes memory sig
    ) internal {
        require(block.timestamp < timestamp, 'Outdated transaction');

        address sender = _msgSender();

        require(
            tokenOwnerState[sender] + amount <= maxAmount,
            'Mint amount exceeded'
        );

        bytes32 hash = keccak256(
            abi.encodePacked(mintType, sender, amount, timestamp)
        );

        require(
            _verifier == _recoverSigner(hash, sig),
            'FRTN: invalid signature'
        );

        _mintTokens(sender, amount);
    }

    function mintPresale(
        uint16 amount,
        uint256 timestamp,
        bytes memory sig
    ) public payable {
        require(SALE_PRIVATE_STARTED_AT > 0, 'FRTN: sale should be active');

        require(
            msg.value >= amount * SALE_PRIVATE_PRICE,
            'FRTN: not enough funds for presale'
        );

        _mintBase(0, amount, 6, timestamp, sig);
    }

    function mint(
        uint16 amount,
        uint256 timestamp,
        bytes memory sig
    ) public payable {
        require(SALE_PUBLIC_STARTED_AT > 0, 'FRTN: sale should be active');

        require(
            msg.value >= amount * SALE_PUBLIC_PRICE,
            'FRTN: not enough funds for sale'
        );

        _mintBase(1, amount, 12, timestamp, sig);
    }

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

    /**
     * Override isApprovedForAll to whitelist user's OpenSea proxy accounts to enable gas-less listings.
     */
    function isApprovedForAll(address owner_, address operator_)
        public
        view
        override
        returns (bool)
    {
        // Whitelist OpenSea proxy contract for easy trading.
        ProxyRegistry proxyRegistry = ProxyRegistry(_proxyRegistryAddress);
        if (address(proxyRegistry.proxies(owner_)) == operator_) {
            return true;
        }

        return super.isApprovedForAll(owner_, operator_);
    }

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

    /* onlyOwner */

    modifier onlyOperator() {
        require(_operators[_msgSender()] == true, 'Caller is not the operator');
        _;
    }

    function setOperator(address operatorAddress, bool value) public onlyOwner {
        _operators[operatorAddress] = value;
    }

    function setVerifier(address verifier_) external onlyOwner {
        _verifier = verifier_;
    }

    function setBaseURI(string memory baseURI_) external onlyOwner {
        _baseTokenURI = baseURI_;
    }

    function setState(bool publicSaleState_, bool privateSaleState_)
        external
        onlyOwner
    {
        SALE_PUBLIC_STARTED_AT = publicSaleState_ ? block.timestamp : 0;

        SALE_PRIVATE_STARTED_AT = privateSaleState_ ? block.timestamp : 0;
    }

    function withdraw(uint256 amount) public onlyOwner {
        (bool success, ) = _msgSender().call{value: amount}('');
        require(success, 'Withdraw failed');
    }

    function withdrawAll() external onlyOwner {
        withdraw(address(this).balance);
    }

    function mintForWallet(
        address wallet,
        uint16 amount,
        uint16 maxAmount
    ) external onlyOperator {
        address receiver = wallet == address(0) ? _msgSender() : wallet;

        require(
            tokenOwnerState[receiver] + amount <= maxAmount,
            'Mint amount exceeded'
        );

        _mintTokens(receiver, amount);
    }

    function mintForWalletBatch(
        address[] calldata wallets,
        uint16[] calldata amounts
    ) external onlyOwner {
        require(wallets.length == amounts.length, 'Mismatched arrays');

        for (uint256 i; i < wallets.length; i++) {
            _mintTokens(wallets[i], amounts[i]);
        }
    }
}

contract OwnableDelegateProxy {}

contract ProxyRegistry {
    mapping(address => OwnableDelegateProxy) public proxies;
}

File 2 of 13 : Initializable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (proxy/utils/Initializable.sol)

pragma solidity ^0.8.0;

import "../../utils/AddressUpgradeable.sol";

/**
 * @dev This is a base contract to aid in writing upgradeable contracts, or any kind of contract that will be deployed
 * behind a proxy. Since proxied contracts do not make use of a constructor, it's common to move constructor logic to an
 * external initializer function, usually called `initialize`. It then becomes necessary to protect this initializer
 * function so it can only be called once. The {initializer} modifier provided by this contract will have this effect.
 *
 * TIP: To avoid leaving the proxy in an uninitialized state, the initializer function should be called as early as
 * possible by providing the encoded function call as the `_data` argument to {ERC1967Proxy-constructor}.
 *
 * CAUTION: When used with inheritance, manual care must be taken to not invoke a parent initializer twice, or to ensure
 * that all initializers are idempotent. This is not verified automatically as constructors are by Solidity.
 *
 * [CAUTION]
 * ====
 * Avoid leaving a contract uninitialized.
 *
 * An uninitialized contract can be taken over by an attacker. This applies to both a proxy and its implementation
 * contract, which may impact the proxy. To initialize the implementation contract, you can either invoke the
 * initializer manually, or you can include a constructor to automatically mark it as initialized when it is deployed:
 *
 * [.hljs-theme-light.nopadding]
 * ```
 * /// @custom:oz-upgrades-unsafe-allow constructor
 * constructor() initializer {}
 * ```
 * ====
 */
abstract contract Initializable {
    /**
     * @dev Indicates that the contract has been initialized.
     */
    bool private _initialized;

    /**
     * @dev Indicates that the contract is in the process of being initialized.
     */
    bool private _initializing;

    /**
     * @dev Modifier to protect an initializer function from being invoked twice.
     */
    modifier initializer() {
        // If the contract is initializing we ignore whether _initialized is set in order to support multiple
        // inheritance patterns, but we only do this in the context of a constructor, because in other contexts the
        // contract may have been reentered.
        require(_initializing ? _isConstructor() : !_initialized, "Initializable: contract is already initialized");

        bool isTopLevelCall = !_initializing;
        if (isTopLevelCall) {
            _initializing = true;
            _initialized = true;
        }

        _;

        if (isTopLevelCall) {
            _initializing = false;
        }
    }

    /**
     * @dev Modifier to protect an initialization function so that it can only be invoked by functions with the
     * {initializer} modifier, directly or indirectly.
     */
    modifier onlyInitializing() {
        require(_initializing, "Initializable: contract is not initializing");
        _;
    }

    function _isConstructor() private view returns (bool) {
        return !AddressUpgradeable.isContract(address(this));
    }
}

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

pragma solidity ^0.8.0;

import "../utils/ContextUpgradeable.sol";
import "../proxy/utils/Initializable.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 OwnableUpgradeable is Initializable, ContextUpgradeable {
    address private _owner;

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

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    function __Ownable_init() internal onlyInitializing {
        __Ownable_init_unchained();
    }

    function __Ownable_init_unchained() internal onlyInitializing {
        _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);
    }

    /**
     * @dev This empty reserved space is put in place to allow future versions to add new
     * variables without shifting down storage in the inheritance chain.
     * See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps
     */
    uint256[49] private __gap;
}

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

pragma solidity ^0.8.0;

import "../StringsUpgradeable.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 ECDSAUpgradeable {
    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", StringsUpgradeable.toString(s.length), s));
    }

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

File 5 of 13 : ERC721Upgradeable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/ERC721.sol)

pragma solidity ^0.8.0;

import '@openzeppelin/contracts-upgradeable/token/ERC721/IERC721Upgradeable.sol';
import '@openzeppelin/contracts-upgradeable/token/ERC721/IERC721ReceiverUpgradeable.sol';
import '@openzeppelin/contracts-upgradeable/token/ERC721/extensions/IERC721MetadataUpgradeable.sol';
import '@openzeppelin/contracts-upgradeable/utils/AddressUpgradeable.sol';
import '@openzeppelin/contracts-upgradeable/utils/ContextUpgradeable.sol';
import '@openzeppelin/contracts-upgradeable/utils/StringsUpgradeable.sol';
import '@openzeppelin/contracts-upgradeable/utils/introspection/ERC165Upgradeable.sol';
import '@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol';

/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata extension, but not including the Enumerable extension, which is available separately as
 * {ERC721Enumerable}.
 */
contract ERC721Upgradeable is
    Initializable,
    ContextUpgradeable,
    ERC165Upgradeable,
    IERC721Upgradeable,
    IERC721MetadataUpgradeable
{
    using AddressUpgradeable for address;
    using StringsUpgradeable for uint256;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

    /**
     * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection.
     */
    function __ERC721_init(string memory name_, string memory symbol_)
        internal
        onlyInitializing
    {
        __Context_init_unchained();
        __ERC165_init_unchained();
        __ERC721_init_unchained(name_, symbol_);
    }

    function __ERC721_init_unchained(string memory name_, string memory symbol_)
        internal
        onlyInitializing
    {
        _name = name_;
        _symbol = symbol_;
    }

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

    /**
     * @dev See {IERC721-balanceOf}.
     */
    function balanceOf(address owner)
        public
        view
        virtual
        override
        returns (uint256)
    {
        require(false, 'Implementation required');

        return 0;
    }

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId)
        public
        view
        virtual
        override
        returns (address)
    {
        require(false, 'Implementation required');

        return address(0);
    }

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

    /**
     * @dev Returns whether `tokenId` exists.
     *
     * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}.
     *
     * Tokens start existing when they are minted (`_mint`),
     * and stop existing when they are burned (`_burn`).
     */
    function _exists(uint256 tokenId) internal view virtual returns (bool) {
        require(false, 'Implementation required');

        return false;
    }

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

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

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

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

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

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *  As opposed to {transferFrom}, this imposes no restrictions on msg.sender.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     *
     * Emits a {Transfer} event.
     */
    function _transfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {}

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

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

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

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

    /**
     * @dev Hook that is called after any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _afterTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {}

    uint256[44] private __gap;
}

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

pragma solidity ^0.8.1;

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

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

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

pragma solidity ^0.8.0;
import "../proxy/utils/Initializable.sol";

/**
 * @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 ContextUpgradeable is Initializable {
    function __Context_init() internal onlyInitializing {
    }

    function __Context_init_unchained() internal onlyInitializing {
    }
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

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

    /**
     * @dev This empty reserved space is put in place to allow future versions to add new
     * variables without shifting down storage in the inheritance chain.
     * See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps
     */
    uint256[50] private __gap;
}

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

pragma solidity ^0.8.0;

import "../IERC721Upgradeable.sol";

/**
 * @title ERC-721 Non-Fungible Token Standard, optional metadata extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721MetadataUpgradeable is IERC721Upgradeable {
    /**
     * @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 12 of 13 : ERC165Upgradeable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol)

pragma solidity ^0.8.0;

import "./IERC165Upgradeable.sol";
import "../../proxy/utils/Initializable.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 ERC165Upgradeable is Initializable, IERC165Upgradeable {
    function __ERC165_init() internal onlyInitializing {
    }

    function __ERC165_init_unchained() internal onlyInitializing {
    }
    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        return interfaceId == type(IERC165Upgradeable).interfaceId;
    }

    /**
     * @dev This empty reserved space is put in place to allow future versions to add new
     * variables without shifting down storage in the inheritance chain.
     * See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps
     */
    uint256[50] private __gap;
}

File 13 of 13 : IERC165Upgradeable.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 IERC165Upgradeable {
    /**
     * @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": true,
    "runs": 120000
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "devdoc",
        "userdoc",
        "metadata",
        "abi"
      ]
    }
  },
  "metadata": {
    "useLiteralContent": true
  },
  "libraries": {}
}

Contract Security Audit

Contract ABI

[{"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_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"SALE_PRIVATE_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"SALE_PRIVATE_STARTED_AT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"SALE_PUBLIC_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"SALE_PUBLIC_STARTED_AT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"actualOwnerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner_","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"verifier_","type":"address"},{"internalType":"address","name":"operator_","type":"address"},{"internalType":"address","name":"proxyRegistryAddress_","type":"address"}],"name":"initialize","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner_","type":"address"},{"internalType":"address","name":"operator_","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint16","name":"amount","type":"uint16"},{"internalType":"uint256","name":"timestamp","type":"uint256"},{"internalType":"bytes","name":"sig","type":"bytes"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"wallet","type":"address"},{"internalType":"uint16","name":"amount","type":"uint16"},{"internalType":"uint16","name":"maxAmount","type":"uint16"}],"name":"mintForWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"wallets","type":"address[]"},{"internalType":"uint16[]","name":"amounts","type":"uint16[]"}],"name":"mintForWalletBatch","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"amount","type":"uint16"},{"internalType":"uint256","name":"timestamp","type":"uint256"},{"internalType":"bytes","name":"sig","type":"bytes"}],"name":"mintPresale","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"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":"address","name":"operatorAddress","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setOperator","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"publicSaleState_","type":"bool"},{"internalType":"bool","name":"privateSaleState_","type":"bool"}],"name":"setState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"verifier_","type":"address"}],"name":"setVerifier","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"supply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":"address","name":"","type":"address"}],"name":"tokenOwnerState","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"tokenState","outputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint96","name":"meta","type":"uint96"}],"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":"uint256","name":"amount","type":"uint256"}],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawAll","outputs":[],"stateMutability":"nonpayable","type":"function"}]

608060405234801561001057600080fd5b50614337806100206000396000f3fe60806040526004361061026a5760003560e01c80636352211e116101535780639745cc3d116100cb578063c87b56dd1161007f578063d1f883fc11610064578063d1f883fc1461073c578063e985e9c514610757578063f2fde38b1461077757600080fd5b8063c87b56dd146106fc578063cceabc301461071c57600080fd5b8063a22cb465116100b0578063a22cb4651461069c578063b88d4fde146106bc578063c0c53b8b146106dc57600080fd5b80639745cc3d146105e55780639eeaf9a21461068957600080fd5b8063715018a6116101225780638da5cb5b116101075780638da5cb5b146105895780638e3a4e33146105b457806395d89b41146105d057600080fd5b8063715018a61461055f578063853828b61461057457600080fd5b80636352211e146104df57806367aa4aa6146104ff5780636db021ee1461051f57806370a082311461053f57600080fd5b80632e1a7d4d116101e6578063464f1289116101b55780635437988d1161019a5780635437988d1461047f578063558a72971461049f57806355f804b3146104bf57600080fd5b8063464f128914610453578063522249ac1461046957600080fd5b80632e1a7d4d146103b957806332cb6b0c146103d9578063408b3cdb146103ef57806342842e0e1461043357600080fd5b8063095ea7b31161023d578063191abcd311610222578063191abcd31461036657806323b872dd146103795780632a792d6c1461039957600080fd5b8063095ea7b31461032f57806318160ddd1461035157600080fd5b806301ffc9a71461026f578063047fc9aa146102a457806306fdde03146102c8578063081812fc146102ea575b600080fd5b34801561027b57600080fd5b5061028f61028a366004613a29565b610797565b60405190151581526020015b60405180910390f35b3480156102b057600080fd5b506102ba60c95481565b60405190815260200161029b565b3480156102d457600080fd5b506102dd61087c565b60405161029b9190613abc565b3480156102f657600080fd5b5061030a610305366004613acf565b61090e565b60405173ffffffffffffffffffffffffffffffffffffffff909116815260200161029b565b34801561033b57600080fd5b5061034f61034a366004613b0a565b6109d3565b005b34801561035d57600080fd5b5060c9546102ba565b61034f610374366004613c30565b610b7f565b34801561038557600080fd5b5061034f610394366004613c87565b610c79565b3480156103a557600080fd5b5061034f6103b4366004613cc8565b610d21565b3480156103c557600080fd5b5061034f6103d4366004613acf565b610ea6565b3480156103e557600080fd5b506102ba611e6181565b3480156103fb57600080fd5b5061042061040a366004613d0d565b60cf6020526000908152604090205461ffff1681565b60405161ffff909116815260200161029b565b34801561043f57600080fd5b5061034f61044e366004613c87565b611035565b34801561045f57600080fd5b506102ba60c85481565b34801561047557600080fd5b506102ba60c75481565b34801561048b57600080fd5b5061034f61049a366004613d0d565b611050565b3480156104ab57600080fd5b5061034f6104ba366004613d3a565b611151565b3480156104cb57600080fd5b5061034f6104da366004613d6f565b611261565b3480156104eb57600080fd5b5061030a6104fa366004613acf565b61132e565b34801561050b57600080fd5b5061034f61051a366004613db8565b611339565b34801561052b57600080fd5b5061030a61053a366004613acf565b611419565b34801561054b57600080fd5b506102ba61055a366004613d0d565b6115a1565b34801561056b57600080fd5b5061034f611693565b34801561058057600080fd5b5061034f611759565b34801561059557600080fd5b5060335473ffffffffffffffffffffffffffffffffffffffff1661030a565b3480156105c057600080fd5b506102ba6701118f178fb4800081565b3480156105dc57600080fd5b506102dd61181c565b3480156105f157600080fd5b50610650610600366004613acf565b60cd6020526000908152604090205473ffffffffffffffffffffffffffffffffffffffff8116907401000000000000000000000000000000000000000090046bffffffffffffffffffffffff1682565b6040805173ffffffffffffffffffffffffffffffffffffffff90931683526bffffffffffffffffffffffff90911660208301520161029b565b61034f610697366004613c30565b61182b565b3480156106a857600080fd5b5061034f6106b7366004613d3a565b61194a565b3480156106c857600080fd5b5061034f6106d7366004613dd4565b61195c565b3480156106e857600080fd5b5061034f6106f7366004613e40565b611a05565b34801561070857600080fd5b506102dd610717366004613acf565b611c71565b34801561072857600080fd5b5061034f610737366004613ed0565b611d64565b34801561074857600080fd5b506102ba66e6ed27d666800081565b34801561076357600080fd5b5061028f610772366004613f3c565b611f01565b34801561078357600080fd5b5061034f610792366004613d0d565b612002565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f80ac58cd00000000000000000000000000000000000000000000000000000000148061082a57507fffffffff0000000000000000000000000000000000000000000000000000000082167f5b5e139f00000000000000000000000000000000000000000000000000000000145b8061087657507f01ffc9a7000000000000000000000000000000000000000000000000000000007fffffffff000000000000000000000000000000000000000000000000000000008316145b92915050565b60606097805461088b90613f75565b80601f01602080910402602001604051908101604052809291908181526020018280546108b790613f75565b80156109045780601f106108d957610100808354040283529160200191610904565b820191906000526020600020905b8154815290600101906020018083116108e757829003601f168201915b5050505050905090565b60006109198261216b565b6109aa576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201527f697374656e7420746f6b656e000000000000000000000000000000000000000060648201526084015b60405180910390fd5b5060009081526099602052604090205473ffffffffffffffffffffffffffffffffffffffff1690565b60006109de8261132e565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610a9c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560448201527f720000000000000000000000000000000000000000000000000000000000000060648201526084016109a1565b8073ffffffffffffffffffffffffffffffffffffffff16610abb61220f565b73ffffffffffffffffffffffffffffffffffffffff161480610ae45750610ae48161077261220f565b610b70576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016109a1565b610b7a8383612279565b505050565b600060c75411610beb576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601b60248201527f4652544e3a2073616c652073686f756c6420626520616374697665000000000060448201526064016109a1565b610c016701118f178fb4800061ffff8516613ff8565b341015610c6a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601f60248201527f4652544e3a206e6f7420656e6f7567682066756e647320666f722073616c650060448201526064016109a1565b610b7a600184600c8585612319565b610c8a610c8461220f565b82612581565b610d16576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656400000000000000000000000000000060648201526084016109a1565b610b7a8383836126a2565b60d16000610d2d61220f565b73ffffffffffffffffffffffffffffffffffffffff16815260208101919091526040016000205460ff161515600114610dc2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601a60248201527f43616c6c6572206973206e6f7420746865206f70657261746f7200000000000060448201526064016109a1565b600073ffffffffffffffffffffffffffffffffffffffff841615610de65783610dee565b610dee61220f565b73ffffffffffffffffffffffffffffffffffffffff8116600090815260cf602052604090205490915061ffff80841691610e2a91869116614035565b61ffff161115610e96576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601460248201527f4d696e7420616d6f756e7420657863656564656400000000000000000000000060448201526064016109a1565b610ea08184612a35565b50505050565b610eae61220f565b73ffffffffffffffffffffffffffffffffffffffff16610ee360335473ffffffffffffffffffffffffffffffffffffffff1690565b73ffffffffffffffffffffffffffffffffffffffff1614610f60576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016109a1565b6000610f6a61220f565b73ffffffffffffffffffffffffffffffffffffffff168260405160006040518083038185875af1925050503d8060008114610fc1576040519150601f19603f3d011682016040523d82523d6000602084013e610fc6565b606091505b5050905080611031576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600f60248201527f5769746864726177206661696c6564000000000000000000000000000000000060448201526064016109a1565b5050565b610b7a8383836040518060200160405280600081525061195c565b61105861220f565b73ffffffffffffffffffffffffffffffffffffffff1661108d60335473ffffffffffffffffffffffffffffffffffffffff1690565b73ffffffffffffffffffffffffffffffffffffffff161461110a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016109a1565b60cb80547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff92909216919091179055565b61115961220f565b73ffffffffffffffffffffffffffffffffffffffff1661118e60335473ffffffffffffffffffffffffffffffffffffffff1690565b73ffffffffffffffffffffffffffffffffffffffff161461120b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016109a1565b73ffffffffffffffffffffffffffffffffffffffff91909116600090815260d16020526040902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016911515919091179055565b61126961220f565b73ffffffffffffffffffffffffffffffffffffffff1661129e60335473ffffffffffffffffffffffffffffffffffffffff1690565b73ffffffffffffffffffffffffffffffffffffffff161461131b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016109a1565b80516110319060cc906020840190613962565b600061087682611419565b61134161220f565b73ffffffffffffffffffffffffffffffffffffffff1661137660335473ffffffffffffffffffffffffffffffffffffffff1690565b73ffffffffffffffffffffffffffffffffffffffff16146113f3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016109a1565b816113ff576000611401565b425b60c75580611410576000611412565b425b60c8555050565b600081815260cd602052604081205473ffffffffffffffffffffffffffffffffffffffff161561146c5750600090815260cd602052604090205473ffffffffffffffffffffffffffffffffffffffff1690565b73ffffffffffffffffffffffffffffffffffffffff8216600090815260cf6020526040902054829060a082901c9061ffff16611504576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601060248201527f546f6b656e206e6f74206d696e7465640000000000000000000000000000000060448201526064016109a1565b73ffffffffffffffffffffffffffffffffffffffff8216600090815260cf602052604090205461ffff9081169082161061159a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601360248201527f496e76616c696420746f6b656e20696e6465780000000000000000000000000060448201526064016109a1565b5092915050565b600073ffffffffffffffffffffffffffffffffffffffff8216611646576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a6560448201527f726f20616464726573730000000000000000000000000000000000000000000060648201526084016109a1565b73ffffffffffffffffffffffffffffffffffffffff8216600090815260d0602090815260408083205460cf909252909120546116899160010b9061ffff1661405b565b61ffff1692915050565b61169b61220f565b73ffffffffffffffffffffffffffffffffffffffff166116d060335473ffffffffffffffffffffffffffffffffffffffff1690565b73ffffffffffffffffffffffffffffffffffffffff161461174d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016109a1565b6117576000612bf6565b565b61176161220f565b73ffffffffffffffffffffffffffffffffffffffff1661179660335473ffffffffffffffffffffffffffffffffffffffff1690565b73ffffffffffffffffffffffffffffffffffffffff1614611813576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016109a1565b61175747610ea6565b60606098805461088b90613f75565b600060c85411611897576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601b60248201527f4652544e3a2073616c652073686f756c6420626520616374697665000000000060448201526064016109a1565b6118ac66e6ed27d666800061ffff8516613ff8565b34101561193b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602260248201527f4652544e3a206e6f7420656e6f7567682066756e647320666f7220707265736160448201527f6c6500000000000000000000000000000000000000000000000000000000000060648201526084016109a1565b610b7a60008460068585612319565b61103161195561220f565b8383612c6d565b61196d61196761220f565b83612581565b6119f9576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656400000000000000000000000000000060648201526084016109a1565b610ea084848484612d9b565b600054610100900460ff16611a205760005460ff1615611a24565b303b155b611ab0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602e60248201527f496e697469616c697a61626c653a20636f6e747261637420697320616c72656160448201527f647920696e697469616c697a656400000000000000000000000000000000000060648201526084016109a1565b600054610100900460ff16158015611aef57600080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0000166101011790555b611b636040518060400160405280600781526020017f466f7274756e61000000000000000000000000000000000000000000000000008152506040518060400160405280600481526020017f4652544e00000000000000000000000000000000000000000000000000000000815250612e3e565b611b6b612eef565b60cb805473ffffffffffffffffffffffffffffffffffffffff8087167fffffffffffffffffffffffff00000000000000000000000000000000000000009283161790925560ca805492851692909116919091179055600160d16000611bce61220f565b73ffffffffffffffffffffffffffffffffffffffff90811682526020808301939093526040918201600090812080549515157fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00968716179055908716815260d19092529020805490911660011790558015610ea057600080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ff16905550505050565b6060611c7c8261216b565b611d08576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201527f6e6578697374656e7420746f6b656e000000000000000000000000000000000060648201526084016109a1565b6000611d12612f8e565b90506000815111611d325760405180602001604052806000815250611d5d565b80611d3c84612f9d565b604051602001611d4d9291906140bd565b6040516020818303038152906040525b9392505050565b611d6c61220f565b73ffffffffffffffffffffffffffffffffffffffff16611da160335473ffffffffffffffffffffffffffffffffffffffff1690565b73ffffffffffffffffffffffffffffffffffffffff1614611e1e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016109a1565b828114611e87576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601160248201527f4d69736d6174636865642061727261797300000000000000000000000000000060448201526064016109a1565b60005b83811015611efa57611ee8858583818110611ea757611ea76140e3565b9050602002016020810190611ebc9190613d0d565b848484818110611ece57611ece6140e3565b9050602002016020810190611ee39190614112565b612a35565b80611ef28161412d565b915050611e8a565b5050505050565b60ca546040517fc455279100000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff848116600483015260009281169190841690829063c455279190602401602060405180830381865afa158015611f79573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611f9d9190614166565b73ffffffffffffffffffffffffffffffffffffffff161415611fc3576001915050610876565b73ffffffffffffffffffffffffffffffffffffffff8085166000908152609a602090815260408083209387168352929052205460ff165b949350505050565b61200a61220f565b73ffffffffffffffffffffffffffffffffffffffff1661203f60335473ffffffffffffffffffffffffffffffffffffffff1690565b73ffffffffffffffffffffffffffffffffffffffff16146120bc576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016109a1565b73ffffffffffffffffffffffffffffffffffffffff811661215f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f646472657373000000000000000000000000000000000000000000000000000060648201526084016109a1565b61216881612bf6565b50565b600081815260cd602052604081205473ffffffffffffffffffffffffffffffffffffffff161561219d57506001919050565b73ffffffffffffffffffffffffffffffffffffffff8216600090815260cf6020526040902054829060a082901c9061ffff1615801590611ffa575073ffffffffffffffffffffffffffffffffffffffff91909116600090815260cf602052604090205461ffff90811691161092915050565b60003330141561227357600080368080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201919091525050505036015173ffffffffffffffffffffffffffffffffffffffff1691506122769050565b50335b90565b600081815260996020526040902080547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff841690811790915581906122d38261132e565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b814210612382576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601460248201527f4f75746461746564207472616e73616374696f6e00000000000000000000000060448201526064016109a1565b600061238c61220f565b73ffffffffffffffffffffffffffffffffffffffff8116600090815260cf602052604090205490915061ffff808616916123c891889116614035565b61ffff161115612434576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601460248201527f4d696e7420616d6f756e7420657863656564656400000000000000000000000060448201526064016109a1565b6040517fff0000000000000000000000000000000000000000000000000000000000000060f888901b1660208201527fffffffffffffffffffffffffffffffffffffffff000000000000000000000000606083901b1660218201527fffff00000000000000000000000000000000000000000000000000000000000060f087901b166035820152603781018490526000906057016040516020818303038152906040528051906020012090506124ea81846130cf565b60cb5473ffffffffffffffffffffffffffffffffffffffff90811691161461256e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601760248201527f4652544e3a20696e76616c6964207369676e617475726500000000000000000060448201526064016109a1565b6125788287612a35565b50505050505050565b600061258c8261216b565b612618576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201527f697374656e7420746f6b656e000000000000000000000000000000000000000060648201526084016109a1565b60006126238361132e565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061269257508373ffffffffffffffffffffffffffffffffffffffff1661267a8461090e565b73ffffffffffffffffffffffffffffffffffffffff16145b80611ffa5750611ffa8185611f01565b8273ffffffffffffffffffffffffffffffffffffffff166126c28261132e565b73ffffffffffffffffffffffffffffffffffffffff1614612765576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201527f6f776e657200000000000000000000000000000000000000000000000000000060648201526084016109a1565b73ffffffffffffffffffffffffffffffffffffffff8216612807576040517f08c379a0000000000000000000000000000000000000000000000000000000008152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f2061646460448201527f726573730000000000000000000000000000000000000000000000000000000060648201526084016109a1565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561289d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601f60248201527f4552433732313a2063616e2774207472616e73666572207468656d73656c660060448201526064016109a1565b6128a8600082612279565b600081815260cd602052604090205473ffffffffffffffffffffffffffffffffffffffff166129075760ce80546001810182556000919091527fd36cd1c74ef8d7326d8021b776c18fb5a5724b7f7bc93c2f42e43e10ef27d12a018190555b73ffffffffffffffffffffffffffffffffffffffff8316600090815260d06020526040812080546001929061293f908490810b614183565b825461ffff9182166101009390930a92830291909202199091161790555073ffffffffffffffffffffffffffffffffffffffff8216600090815260d060205260408120805460019290612995908490810b61405b565b825461ffff9182166101009390930a928302919092021990911617905550600081815260cd6020526040808220805473ffffffffffffffffffffffffffffffffffffffff8087167fffffffffffffffffffffffff0000000000000000000000000000000000000000909216821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b611e618161ffff1660c954612a4a91906141e6565b1115612ab2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601560248201527f4652544e3a20737570706c79206f766572666c6f77000000000000000000000060448201526064016109a1565b73ffffffffffffffffffffffffffffffffffffffff8216600090815260cf6020526040812054612ae790839061ffff16614035565b73ffffffffffffffffffffffffffffffffffffffff8416600081815260cf60205260409020549192509061ffff165b8261ffff16811015612b7f5760405160a082901b83179073ffffffffffffffffffffffffffffffffffffffff8716906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a480612b778161412d565b915050612b16565b5073ffffffffffffffffffffffffffffffffffffffff8416600090815260cf6020526040812080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00001661ffff8581169190911790915560c98054918616929091612beb9084906141e6565b909155505050505050565b6033805473ffffffffffffffffffffffffffffffffffffffff8381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612d03576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016109a1565b73ffffffffffffffffffffffffffffffffffffffff8381166000818152609a602090815260408083209487168084529482529182902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b612da68484846126a2565b612db284848484613131565b610ea0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e746572000000000000000000000000000060648201526084016109a1565b600054610100900460ff16612ed5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602b60248201527f496e697469616c697a61626c653a20636f6e7472616374206973206e6f74206960448201527f6e697469616c697a696e6700000000000000000000000000000000000000000060648201526084016109a1565b612edd61330f565b612ee561330f565b61103182826133a6565b600054610100900460ff16612f86576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602b60248201527f496e697469616c697a61626c653a20636f6e7472616374206973206e6f74206960448201527f6e697469616c697a696e6700000000000000000000000000000000000000000060648201526084016109a1565b611757613464565b606060cc805461088b90613f75565b606081612fdd57505060408051808201909152600181527f3000000000000000000000000000000000000000000000000000000000000000602082015290565b8160005b81156130075780612ff18161412d565b91506130009050600a8361422d565b9150612fe1565b60008167ffffffffffffffff81111561302257613022613b4d565b6040519080825280601f01601f19166020018201604052801561304c576020820181803683370190505b5090505b8415611ffa57613061600183614241565b915061306e600a86614258565b6130799060306141e6565b60f81b81838151811061308e5761308e6140e3565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053506130c8600a8661422d565b9450613050565b6000611d5d61312b846040517f19457468657265756d205369676e6564204d6573736167653a0a3332000000006020820152603c8101829052600090605c01604051602081830303815290604052805190602001209050919050565b8361350b565b600073ffffffffffffffffffffffffffffffffffffffff84163b15613304578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261317461220f565b8786866040518563ffffffff1660e01b8152600401613196949392919061426c565b6020604051808303816000875af19250505080156131ef575060408051601f3d9081017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe01682019092526131ec918101906142b5565b60015b6132b9573d80801561321d576040519150601f19603f3d011682016040523d82523d6000602084013e613222565b606091505b5080516132b1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e746572000000000000000000000000000060648201526084016109a1565b805181602001fd5b7fffffffff00000000000000000000000000000000000000000000000000000000167f150b7a0200000000000000000000000000000000000000000000000000000000149050611ffa565b506001949350505050565b600054610100900460ff16611757576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602b60248201527f496e697469616c697a61626c653a20636f6e7472616374206973206e6f74206960448201527f6e697469616c697a696e6700000000000000000000000000000000000000000060648201526084016109a1565b600054610100900460ff1661343d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602b60248201527f496e697469616c697a61626c653a20636f6e7472616374206973206e6f74206960448201527f6e697469616c697a696e6700000000000000000000000000000000000000000060648201526084016109a1565b8151613450906097906020850190613962565b508051610b7a906098906020840190613962565b600054610100900460ff166134fb576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602b60248201527f496e697469616c697a61626c653a20636f6e7472616374206973206e6f74206960448201527f6e697469616c697a696e6700000000000000000000000000000000000000000060648201526084016109a1565b61175761350661220f565b612bf6565b600080600061351a858561352f565b915091506135278161359f565b509392505050565b6000808251604114156135665760208301516040840151606085015160001a61355a878285856137f8565b94509450505050613598565b8251604014156135905760208301516040840151613585868383613910565b935093505050613598565b506000905060025b9250929050565b60008160048111156135b3576135b36142d2565b14156135bc5750565b60018160048111156135d0576135d06142d2565b1415613638576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601860248201527f45434453413a20696e76616c6964207369676e6174757265000000000000000060448201526064016109a1565b600281600481111561364c5761364c6142d2565b14156136b4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601f60248201527f45434453413a20696e76616c6964207369676e6174757265206c656e6774680060448201526064016109a1565b60038160048111156136c8576136c86142d2565b1415613756576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202773272076616c60448201527f756500000000000000000000000000000000000000000000000000000000000060648201526084016109a1565b600481600481111561376a5761376a6142d2565b1415612168576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202776272076616c60448201527f756500000000000000000000000000000000000000000000000000000000000060648201526084016109a1565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a083111561382f5750600090506003613907565b8460ff16601b1415801561384757508460ff16601c14155b156138585750600090506004613907565b6040805160008082526020820180845289905260ff881692820192909252606081018690526080810185905260019060a0016020604051602081039080840390855afa1580156138ac573d6000803e3d6000fd5b50506040517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0015191505073ffffffffffffffffffffffffffffffffffffffff811661390057600060019250925050613907565b9150600090505b94509492505050565b6000807f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff83168161394660ff86901c601b6141e6565b9050613954878288856137f8565b935093505050935093915050565b82805461396e90613f75565b90600052602060002090601f01602090048101928261399057600085556139d6565b82601f106139a957805160ff19168380011785556139d6565b828001600101855582156139d6579182015b828111156139d65782518255916020019190600101906139bb565b506139e29291506139e6565b5090565b5b808211156139e257600081556001016139e7565b7fffffffff000000000000000000000000000000000000000000000000000000008116811461216857600080fd5b600060208284031215613a3b57600080fd5b8135611d5d816139fb565b60005b83811015613a61578181015183820152602001613a49565b83811115610ea05750506000910152565b60008151808452613a8a816020860160208601613a46565b601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0169290920160200192915050565b602081526000611d5d6020830184613a72565b600060208284031215613ae157600080fd5b5035919050565b73ffffffffffffffffffffffffffffffffffffffff8116811461216857600080fd5b60008060408385031215613b1d57600080fd5b8235613b2881613ae8565b946020939093013593505050565b803561ffff81168114613b4857600080fd5b919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600067ffffffffffffffff80841115613b9757613b97613b4d565b604051601f85017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0908116603f01168101908282118183101715613bdd57613bdd613b4d565b81604052809350858152868686011115613bf657600080fd5b858560208301376000602087830101525050509392505050565b600082601f830112613c2157600080fd5b611d5d83833560208501613b7c565b600080600060608486031215613c4557600080fd5b613c4e84613b36565b925060208401359150604084013567ffffffffffffffff811115613c7157600080fd5b613c7d86828701613c10565b9150509250925092565b600080600060608486031215613c9c57600080fd5b8335613ca781613ae8565b92506020840135613cb781613ae8565b929592945050506040919091013590565b600080600060608486031215613cdd57600080fd5b8335613ce881613ae8565b9250613cf660208501613b36565b9150613d0460408501613b36565b90509250925092565b600060208284031215613d1f57600080fd5b8135611d5d81613ae8565b80358015158114613b4857600080fd5b60008060408385031215613d4d57600080fd5b8235613d5881613ae8565b9150613d6660208401613d2a565b90509250929050565b600060208284031215613d8157600080fd5b813567ffffffffffffffff811115613d9857600080fd5b8201601f81018413613da957600080fd5b611ffa84823560208401613b7c565b60008060408385031215613dcb57600080fd5b613d5883613d2a565b60008060008060808587031215613dea57600080fd5b8435613df581613ae8565b93506020850135613e0581613ae8565b925060408501359150606085013567ffffffffffffffff811115613e2857600080fd5b613e3487828801613c10565b91505092959194509250565b600080600060608486031215613e5557600080fd5b8335613e6081613ae8565b92506020840135613e7081613ae8565b91506040840135613e8081613ae8565b809150509250925092565b60008083601f840112613e9d57600080fd5b50813567ffffffffffffffff811115613eb557600080fd5b6020830191508360208260051b850101111561359857600080fd5b60008060008060408587031215613ee657600080fd5b843567ffffffffffffffff80821115613efe57600080fd5b613f0a88838901613e8b565b90965094506020870135915080821115613f2357600080fd5b50613f3087828801613e8b565b95989497509550505050565b60008060408385031215613f4f57600080fd5b8235613f5a81613ae8565b91506020830135613f6a81613ae8565b809150509250929050565b600181811c90821680613f8957607f821691505b60208210811415613fc3577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561403057614030613fc9565b500290565b600061ffff80831681851680830382111561405257614052613fc9565b01949350505050565b60008160010b8360010b6000821282617fff0382138115161561408057614080613fc9565b827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff80000382128116156140b4576140b4613fc9565b50019392505050565b600083516140cf818460208801613a46565b835190830190614052818360208801613a46565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60006020828403121561412457600080fd5b611d5d82613b36565b60007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561415f5761415f613fc9565b5060010190565b60006020828403121561417857600080fd5b8151611d5d81613ae8565b60008160010b8360010b60008112817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8000018312811516156141c6576141c6613fc9565b81617fff0183138116156141dc576141dc613fc9565b5090039392505050565b600082198211156141f9576141f9613fc9565b500190565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60008261423c5761423c6141fe565b500490565b60008282101561425357614253613fc9565b500390565b600082614267576142676141fe565b500690565b600073ffffffffffffffffffffffffffffffffffffffff8087168352808616602084015250836040830152608060608301526142ab6080830184613a72565b9695505050505050565b6000602082840312156142c757600080fd5b8151611d5d816139fb565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fdfea264697066735822122020c1653183ae4d3ff759b7c1ab91a26ff73a474a4df343f8c5fc1ee66e0252ec64736f6c634300080c0033

Deployed Bytecode

0x60806040526004361061026a5760003560e01c80636352211e116101535780639745cc3d116100cb578063c87b56dd1161007f578063d1f883fc11610064578063d1f883fc1461073c578063e985e9c514610757578063f2fde38b1461077757600080fd5b8063c87b56dd146106fc578063cceabc301461071c57600080fd5b8063a22cb465116100b0578063a22cb4651461069c578063b88d4fde146106bc578063c0c53b8b146106dc57600080fd5b80639745cc3d146105e55780639eeaf9a21461068957600080fd5b8063715018a6116101225780638da5cb5b116101075780638da5cb5b146105895780638e3a4e33146105b457806395d89b41146105d057600080fd5b8063715018a61461055f578063853828b61461057457600080fd5b80636352211e146104df57806367aa4aa6146104ff5780636db021ee1461051f57806370a082311461053f57600080fd5b80632e1a7d4d116101e6578063464f1289116101b55780635437988d1161019a5780635437988d1461047f578063558a72971461049f57806355f804b3146104bf57600080fd5b8063464f128914610453578063522249ac1461046957600080fd5b80632e1a7d4d146103b957806332cb6b0c146103d9578063408b3cdb146103ef57806342842e0e1461043357600080fd5b8063095ea7b31161023d578063191abcd311610222578063191abcd31461036657806323b872dd146103795780632a792d6c1461039957600080fd5b8063095ea7b31461032f57806318160ddd1461035157600080fd5b806301ffc9a71461026f578063047fc9aa146102a457806306fdde03146102c8578063081812fc146102ea575b600080fd5b34801561027b57600080fd5b5061028f61028a366004613a29565b610797565b60405190151581526020015b60405180910390f35b3480156102b057600080fd5b506102ba60c95481565b60405190815260200161029b565b3480156102d457600080fd5b506102dd61087c565b60405161029b9190613abc565b3480156102f657600080fd5b5061030a610305366004613acf565b61090e565b60405173ffffffffffffffffffffffffffffffffffffffff909116815260200161029b565b34801561033b57600080fd5b5061034f61034a366004613b0a565b6109d3565b005b34801561035d57600080fd5b5060c9546102ba565b61034f610374366004613c30565b610b7f565b34801561038557600080fd5b5061034f610394366004613c87565b610c79565b3480156103a557600080fd5b5061034f6103b4366004613cc8565b610d21565b3480156103c557600080fd5b5061034f6103d4366004613acf565b610ea6565b3480156103e557600080fd5b506102ba611e6181565b3480156103fb57600080fd5b5061042061040a366004613d0d565b60cf6020526000908152604090205461ffff1681565b60405161ffff909116815260200161029b565b34801561043f57600080fd5b5061034f61044e366004613c87565b611035565b34801561045f57600080fd5b506102ba60c85481565b34801561047557600080fd5b506102ba60c75481565b34801561048b57600080fd5b5061034f61049a366004613d0d565b611050565b3480156104ab57600080fd5b5061034f6104ba366004613d3a565b611151565b3480156104cb57600080fd5b5061034f6104da366004613d6f565b611261565b3480156104eb57600080fd5b5061030a6104fa366004613acf565b61132e565b34801561050b57600080fd5b5061034f61051a366004613db8565b611339565b34801561052b57600080fd5b5061030a61053a366004613acf565b611419565b34801561054b57600080fd5b506102ba61055a366004613d0d565b6115a1565b34801561056b57600080fd5b5061034f611693565b34801561058057600080fd5b5061034f611759565b34801561059557600080fd5b5060335473ffffffffffffffffffffffffffffffffffffffff1661030a565b3480156105c057600080fd5b506102ba6701118f178fb4800081565b3480156105dc57600080fd5b506102dd61181c565b3480156105f157600080fd5b50610650610600366004613acf565b60cd6020526000908152604090205473ffffffffffffffffffffffffffffffffffffffff8116907401000000000000000000000000000000000000000090046bffffffffffffffffffffffff1682565b6040805173ffffffffffffffffffffffffffffffffffffffff90931683526bffffffffffffffffffffffff90911660208301520161029b565b61034f610697366004613c30565b61182b565b3480156106a857600080fd5b5061034f6106b7366004613d3a565b61194a565b3480156106c857600080fd5b5061034f6106d7366004613dd4565b61195c565b3480156106e857600080fd5b5061034f6106f7366004613e40565b611a05565b34801561070857600080fd5b506102dd610717366004613acf565b611c71565b34801561072857600080fd5b5061034f610737366004613ed0565b611d64565b34801561074857600080fd5b506102ba66e6ed27d666800081565b34801561076357600080fd5b5061028f610772366004613f3c565b611f01565b34801561078357600080fd5b5061034f610792366004613d0d565b612002565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f80ac58cd00000000000000000000000000000000000000000000000000000000148061082a57507fffffffff0000000000000000000000000000000000000000000000000000000082167f5b5e139f00000000000000000000000000000000000000000000000000000000145b8061087657507f01ffc9a7000000000000000000000000000000000000000000000000000000007fffffffff000000000000000000000000000000000000000000000000000000008316145b92915050565b60606097805461088b90613f75565b80601f01602080910402602001604051908101604052809291908181526020018280546108b790613f75565b80156109045780601f106108d957610100808354040283529160200191610904565b820191906000526020600020905b8154815290600101906020018083116108e757829003601f168201915b5050505050905090565b60006109198261216b565b6109aa576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201527f697374656e7420746f6b656e000000000000000000000000000000000000000060648201526084015b60405180910390fd5b5060009081526099602052604090205473ffffffffffffffffffffffffffffffffffffffff1690565b60006109de8261132e565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610a9c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560448201527f720000000000000000000000000000000000000000000000000000000000000060648201526084016109a1565b8073ffffffffffffffffffffffffffffffffffffffff16610abb61220f565b73ffffffffffffffffffffffffffffffffffffffff161480610ae45750610ae48161077261220f565b610b70576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016109a1565b610b7a8383612279565b505050565b600060c75411610beb576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601b60248201527f4652544e3a2073616c652073686f756c6420626520616374697665000000000060448201526064016109a1565b610c016701118f178fb4800061ffff8516613ff8565b341015610c6a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601f60248201527f4652544e3a206e6f7420656e6f7567682066756e647320666f722073616c650060448201526064016109a1565b610b7a600184600c8585612319565b610c8a610c8461220f565b82612581565b610d16576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656400000000000000000000000000000060648201526084016109a1565b610b7a8383836126a2565b60d16000610d2d61220f565b73ffffffffffffffffffffffffffffffffffffffff16815260208101919091526040016000205460ff161515600114610dc2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601a60248201527f43616c6c6572206973206e6f7420746865206f70657261746f7200000000000060448201526064016109a1565b600073ffffffffffffffffffffffffffffffffffffffff841615610de65783610dee565b610dee61220f565b73ffffffffffffffffffffffffffffffffffffffff8116600090815260cf602052604090205490915061ffff80841691610e2a91869116614035565b61ffff161115610e96576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601460248201527f4d696e7420616d6f756e7420657863656564656400000000000000000000000060448201526064016109a1565b610ea08184612a35565b50505050565b610eae61220f565b73ffffffffffffffffffffffffffffffffffffffff16610ee360335473ffffffffffffffffffffffffffffffffffffffff1690565b73ffffffffffffffffffffffffffffffffffffffff1614610f60576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016109a1565b6000610f6a61220f565b73ffffffffffffffffffffffffffffffffffffffff168260405160006040518083038185875af1925050503d8060008114610fc1576040519150601f19603f3d011682016040523d82523d6000602084013e610fc6565b606091505b5050905080611031576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600f60248201527f5769746864726177206661696c6564000000000000000000000000000000000060448201526064016109a1565b5050565b610b7a8383836040518060200160405280600081525061195c565b61105861220f565b73ffffffffffffffffffffffffffffffffffffffff1661108d60335473ffffffffffffffffffffffffffffffffffffffff1690565b73ffffffffffffffffffffffffffffffffffffffff161461110a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016109a1565b60cb80547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff92909216919091179055565b61115961220f565b73ffffffffffffffffffffffffffffffffffffffff1661118e60335473ffffffffffffffffffffffffffffffffffffffff1690565b73ffffffffffffffffffffffffffffffffffffffff161461120b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016109a1565b73ffffffffffffffffffffffffffffffffffffffff91909116600090815260d16020526040902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016911515919091179055565b61126961220f565b73ffffffffffffffffffffffffffffffffffffffff1661129e60335473ffffffffffffffffffffffffffffffffffffffff1690565b73ffffffffffffffffffffffffffffffffffffffff161461131b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016109a1565b80516110319060cc906020840190613962565b600061087682611419565b61134161220f565b73ffffffffffffffffffffffffffffffffffffffff1661137660335473ffffffffffffffffffffffffffffffffffffffff1690565b73ffffffffffffffffffffffffffffffffffffffff16146113f3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016109a1565b816113ff576000611401565b425b60c75580611410576000611412565b425b60c8555050565b600081815260cd602052604081205473ffffffffffffffffffffffffffffffffffffffff161561146c5750600090815260cd602052604090205473ffffffffffffffffffffffffffffffffffffffff1690565b73ffffffffffffffffffffffffffffffffffffffff8216600090815260cf6020526040902054829060a082901c9061ffff16611504576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601060248201527f546f6b656e206e6f74206d696e7465640000000000000000000000000000000060448201526064016109a1565b73ffffffffffffffffffffffffffffffffffffffff8216600090815260cf602052604090205461ffff9081169082161061159a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601360248201527f496e76616c696420746f6b656e20696e6465780000000000000000000000000060448201526064016109a1565b5092915050565b600073ffffffffffffffffffffffffffffffffffffffff8216611646576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a6560448201527f726f20616464726573730000000000000000000000000000000000000000000060648201526084016109a1565b73ffffffffffffffffffffffffffffffffffffffff8216600090815260d0602090815260408083205460cf909252909120546116899160010b9061ffff1661405b565b61ffff1692915050565b61169b61220f565b73ffffffffffffffffffffffffffffffffffffffff166116d060335473ffffffffffffffffffffffffffffffffffffffff1690565b73ffffffffffffffffffffffffffffffffffffffff161461174d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016109a1565b6117576000612bf6565b565b61176161220f565b73ffffffffffffffffffffffffffffffffffffffff1661179660335473ffffffffffffffffffffffffffffffffffffffff1690565b73ffffffffffffffffffffffffffffffffffffffff1614611813576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016109a1565b61175747610ea6565b60606098805461088b90613f75565b600060c85411611897576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601b60248201527f4652544e3a2073616c652073686f756c6420626520616374697665000000000060448201526064016109a1565b6118ac66e6ed27d666800061ffff8516613ff8565b34101561193b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602260248201527f4652544e3a206e6f7420656e6f7567682066756e647320666f7220707265736160448201527f6c6500000000000000000000000000000000000000000000000000000000000060648201526084016109a1565b610b7a60008460068585612319565b61103161195561220f565b8383612c6d565b61196d61196761220f565b83612581565b6119f9576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656400000000000000000000000000000060648201526084016109a1565b610ea084848484612d9b565b600054610100900460ff16611a205760005460ff1615611a24565b303b155b611ab0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602e60248201527f496e697469616c697a61626c653a20636f6e747261637420697320616c72656160448201527f647920696e697469616c697a656400000000000000000000000000000000000060648201526084016109a1565b600054610100900460ff16158015611aef57600080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0000166101011790555b611b636040518060400160405280600781526020017f466f7274756e61000000000000000000000000000000000000000000000000008152506040518060400160405280600481526020017f4652544e00000000000000000000000000000000000000000000000000000000815250612e3e565b611b6b612eef565b60cb805473ffffffffffffffffffffffffffffffffffffffff8087167fffffffffffffffffffffffff00000000000000000000000000000000000000009283161790925560ca805492851692909116919091179055600160d16000611bce61220f565b73ffffffffffffffffffffffffffffffffffffffff90811682526020808301939093526040918201600090812080549515157fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00968716179055908716815260d19092529020805490911660011790558015610ea057600080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ff16905550505050565b6060611c7c8261216b565b611d08576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201527f6e6578697374656e7420746f6b656e000000000000000000000000000000000060648201526084016109a1565b6000611d12612f8e565b90506000815111611d325760405180602001604052806000815250611d5d565b80611d3c84612f9d565b604051602001611d4d9291906140bd565b6040516020818303038152906040525b9392505050565b611d6c61220f565b73ffffffffffffffffffffffffffffffffffffffff16611da160335473ffffffffffffffffffffffffffffffffffffffff1690565b73ffffffffffffffffffffffffffffffffffffffff1614611e1e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016109a1565b828114611e87576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601160248201527f4d69736d6174636865642061727261797300000000000000000000000000000060448201526064016109a1565b60005b83811015611efa57611ee8858583818110611ea757611ea76140e3565b9050602002016020810190611ebc9190613d0d565b848484818110611ece57611ece6140e3565b9050602002016020810190611ee39190614112565b612a35565b80611ef28161412d565b915050611e8a565b5050505050565b60ca546040517fc455279100000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff848116600483015260009281169190841690829063c455279190602401602060405180830381865afa158015611f79573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611f9d9190614166565b73ffffffffffffffffffffffffffffffffffffffff161415611fc3576001915050610876565b73ffffffffffffffffffffffffffffffffffffffff8085166000908152609a602090815260408083209387168352929052205460ff165b949350505050565b61200a61220f565b73ffffffffffffffffffffffffffffffffffffffff1661203f60335473ffffffffffffffffffffffffffffffffffffffff1690565b73ffffffffffffffffffffffffffffffffffffffff16146120bc576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016109a1565b73ffffffffffffffffffffffffffffffffffffffff811661215f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f646472657373000000000000000000000000000000000000000000000000000060648201526084016109a1565b61216881612bf6565b50565b600081815260cd602052604081205473ffffffffffffffffffffffffffffffffffffffff161561219d57506001919050565b73ffffffffffffffffffffffffffffffffffffffff8216600090815260cf6020526040902054829060a082901c9061ffff1615801590611ffa575073ffffffffffffffffffffffffffffffffffffffff91909116600090815260cf602052604090205461ffff90811691161092915050565b60003330141561227357600080368080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201919091525050505036015173ffffffffffffffffffffffffffffffffffffffff1691506122769050565b50335b90565b600081815260996020526040902080547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff841690811790915581906122d38261132e565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b814210612382576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601460248201527f4f75746461746564207472616e73616374696f6e00000000000000000000000060448201526064016109a1565b600061238c61220f565b73ffffffffffffffffffffffffffffffffffffffff8116600090815260cf602052604090205490915061ffff808616916123c891889116614035565b61ffff161115612434576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601460248201527f4d696e7420616d6f756e7420657863656564656400000000000000000000000060448201526064016109a1565b6040517fff0000000000000000000000000000000000000000000000000000000000000060f888901b1660208201527fffffffffffffffffffffffffffffffffffffffff000000000000000000000000606083901b1660218201527fffff00000000000000000000000000000000000000000000000000000000000060f087901b166035820152603781018490526000906057016040516020818303038152906040528051906020012090506124ea81846130cf565b60cb5473ffffffffffffffffffffffffffffffffffffffff90811691161461256e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601760248201527f4652544e3a20696e76616c6964207369676e617475726500000000000000000060448201526064016109a1565b6125788287612a35565b50505050505050565b600061258c8261216b565b612618576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201527f697374656e7420746f6b656e000000000000000000000000000000000000000060648201526084016109a1565b60006126238361132e565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061269257508373ffffffffffffffffffffffffffffffffffffffff1661267a8461090e565b73ffffffffffffffffffffffffffffffffffffffff16145b80611ffa5750611ffa8185611f01565b8273ffffffffffffffffffffffffffffffffffffffff166126c28261132e565b73ffffffffffffffffffffffffffffffffffffffff1614612765576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201527f6f776e657200000000000000000000000000000000000000000000000000000060648201526084016109a1565b73ffffffffffffffffffffffffffffffffffffffff8216612807576040517f08c379a0000000000000000000000000000000000000000000000000000000008152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f2061646460448201527f726573730000000000000000000000000000000000000000000000000000000060648201526084016109a1565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561289d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601f60248201527f4552433732313a2063616e2774207472616e73666572207468656d73656c660060448201526064016109a1565b6128a8600082612279565b600081815260cd602052604090205473ffffffffffffffffffffffffffffffffffffffff166129075760ce80546001810182556000919091527fd36cd1c74ef8d7326d8021b776c18fb5a5724b7f7bc93c2f42e43e10ef27d12a018190555b73ffffffffffffffffffffffffffffffffffffffff8316600090815260d06020526040812080546001929061293f908490810b614183565b825461ffff9182166101009390930a92830291909202199091161790555073ffffffffffffffffffffffffffffffffffffffff8216600090815260d060205260408120805460019290612995908490810b61405b565b825461ffff9182166101009390930a928302919092021990911617905550600081815260cd6020526040808220805473ffffffffffffffffffffffffffffffffffffffff8087167fffffffffffffffffffffffff0000000000000000000000000000000000000000909216821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b611e618161ffff1660c954612a4a91906141e6565b1115612ab2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601560248201527f4652544e3a20737570706c79206f766572666c6f77000000000000000000000060448201526064016109a1565b73ffffffffffffffffffffffffffffffffffffffff8216600090815260cf6020526040812054612ae790839061ffff16614035565b73ffffffffffffffffffffffffffffffffffffffff8416600081815260cf60205260409020549192509061ffff165b8261ffff16811015612b7f5760405160a082901b83179073ffffffffffffffffffffffffffffffffffffffff8716906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a480612b778161412d565b915050612b16565b5073ffffffffffffffffffffffffffffffffffffffff8416600090815260cf6020526040812080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00001661ffff8581169190911790915560c98054918616929091612beb9084906141e6565b909155505050505050565b6033805473ffffffffffffffffffffffffffffffffffffffff8381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612d03576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016109a1565b73ffffffffffffffffffffffffffffffffffffffff8381166000818152609a602090815260408083209487168084529482529182902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b612da68484846126a2565b612db284848484613131565b610ea0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e746572000000000000000000000000000060648201526084016109a1565b600054610100900460ff16612ed5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602b60248201527f496e697469616c697a61626c653a20636f6e7472616374206973206e6f74206960448201527f6e697469616c697a696e6700000000000000000000000000000000000000000060648201526084016109a1565b612edd61330f565b612ee561330f565b61103182826133a6565b600054610100900460ff16612f86576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602b60248201527f496e697469616c697a61626c653a20636f6e7472616374206973206e6f74206960448201527f6e697469616c697a696e6700000000000000000000000000000000000000000060648201526084016109a1565b611757613464565b606060cc805461088b90613f75565b606081612fdd57505060408051808201909152600181527f3000000000000000000000000000000000000000000000000000000000000000602082015290565b8160005b81156130075780612ff18161412d565b91506130009050600a8361422d565b9150612fe1565b60008167ffffffffffffffff81111561302257613022613b4d565b6040519080825280601f01601f19166020018201604052801561304c576020820181803683370190505b5090505b8415611ffa57613061600183614241565b915061306e600a86614258565b6130799060306141e6565b60f81b81838151811061308e5761308e6140e3565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053506130c8600a8661422d565b9450613050565b6000611d5d61312b846040517f19457468657265756d205369676e6564204d6573736167653a0a3332000000006020820152603c8101829052600090605c01604051602081830303815290604052805190602001209050919050565b8361350b565b600073ffffffffffffffffffffffffffffffffffffffff84163b15613304578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261317461220f565b8786866040518563ffffffff1660e01b8152600401613196949392919061426c565b6020604051808303816000875af19250505080156131ef575060408051601f3d9081017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe01682019092526131ec918101906142b5565b60015b6132b9573d80801561321d576040519150601f19603f3d011682016040523d82523d6000602084013e613222565b606091505b5080516132b1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e746572000000000000000000000000000060648201526084016109a1565b805181602001fd5b7fffffffff00000000000000000000000000000000000000000000000000000000167f150b7a0200000000000000000000000000000000000000000000000000000000149050611ffa565b506001949350505050565b600054610100900460ff16611757576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602b60248201527f496e697469616c697a61626c653a20636f6e7472616374206973206e6f74206960448201527f6e697469616c697a696e6700000000000000000000000000000000000000000060648201526084016109a1565b600054610100900460ff1661343d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602b60248201527f496e697469616c697a61626c653a20636f6e7472616374206973206e6f74206960448201527f6e697469616c697a696e6700000000000000000000000000000000000000000060648201526084016109a1565b8151613450906097906020850190613962565b508051610b7a906098906020840190613962565b600054610100900460ff166134fb576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602b60248201527f496e697469616c697a61626c653a20636f6e7472616374206973206e6f74206960448201527f6e697469616c697a696e6700000000000000000000000000000000000000000060648201526084016109a1565b61175761350661220f565b612bf6565b600080600061351a858561352f565b915091506135278161359f565b509392505050565b6000808251604114156135665760208301516040840151606085015160001a61355a878285856137f8565b94509450505050613598565b8251604014156135905760208301516040840151613585868383613910565b935093505050613598565b506000905060025b9250929050565b60008160048111156135b3576135b36142d2565b14156135bc5750565b60018160048111156135d0576135d06142d2565b1415613638576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601860248201527f45434453413a20696e76616c6964207369676e6174757265000000000000000060448201526064016109a1565b600281600481111561364c5761364c6142d2565b14156136b4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601f60248201527f45434453413a20696e76616c6964207369676e6174757265206c656e6774680060448201526064016109a1565b60038160048111156136c8576136c86142d2565b1415613756576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202773272076616c60448201527f756500000000000000000000000000000000000000000000000000000000000060648201526084016109a1565b600481600481111561376a5761376a6142d2565b1415612168576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202776272076616c60448201527f756500000000000000000000000000000000000000000000000000000000000060648201526084016109a1565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a083111561382f5750600090506003613907565b8460ff16601b1415801561384757508460ff16601c14155b156138585750600090506004613907565b6040805160008082526020820180845289905260ff881692820192909252606081018690526080810185905260019060a0016020604051602081039080840390855afa1580156138ac573d6000803e3d6000fd5b50506040517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0015191505073ffffffffffffffffffffffffffffffffffffffff811661390057600060019250925050613907565b9150600090505b94509492505050565b6000807f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff83168161394660ff86901c601b6141e6565b9050613954878288856137f8565b935093505050935093915050565b82805461396e90613f75565b90600052602060002090601f01602090048101928261399057600085556139d6565b82601f106139a957805160ff19168380011785556139d6565b828001600101855582156139d6579182015b828111156139d65782518255916020019190600101906139bb565b506139e29291506139e6565b5090565b5b808211156139e257600081556001016139e7565b7fffffffff000000000000000000000000000000000000000000000000000000008116811461216857600080fd5b600060208284031215613a3b57600080fd5b8135611d5d816139fb565b60005b83811015613a61578181015183820152602001613a49565b83811115610ea05750506000910152565b60008151808452613a8a816020860160208601613a46565b601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0169290920160200192915050565b602081526000611d5d6020830184613a72565b600060208284031215613ae157600080fd5b5035919050565b73ffffffffffffffffffffffffffffffffffffffff8116811461216857600080fd5b60008060408385031215613b1d57600080fd5b8235613b2881613ae8565b946020939093013593505050565b803561ffff81168114613b4857600080fd5b919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600067ffffffffffffffff80841115613b9757613b97613b4d565b604051601f85017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0908116603f01168101908282118183101715613bdd57613bdd613b4d565b81604052809350858152868686011115613bf657600080fd5b858560208301376000602087830101525050509392505050565b600082601f830112613c2157600080fd5b611d5d83833560208501613b7c565b600080600060608486031215613c4557600080fd5b613c4e84613b36565b925060208401359150604084013567ffffffffffffffff811115613c7157600080fd5b613c7d86828701613c10565b9150509250925092565b600080600060608486031215613c9c57600080fd5b8335613ca781613ae8565b92506020840135613cb781613ae8565b929592945050506040919091013590565b600080600060608486031215613cdd57600080fd5b8335613ce881613ae8565b9250613cf660208501613b36565b9150613d0460408501613b36565b90509250925092565b600060208284031215613d1f57600080fd5b8135611d5d81613ae8565b80358015158114613b4857600080fd5b60008060408385031215613d4d57600080fd5b8235613d5881613ae8565b9150613d6660208401613d2a565b90509250929050565b600060208284031215613d8157600080fd5b813567ffffffffffffffff811115613d9857600080fd5b8201601f81018413613da957600080fd5b611ffa84823560208401613b7c565b60008060408385031215613dcb57600080fd5b613d5883613d2a565b60008060008060808587031215613dea57600080fd5b8435613df581613ae8565b93506020850135613e0581613ae8565b925060408501359150606085013567ffffffffffffffff811115613e2857600080fd5b613e3487828801613c10565b91505092959194509250565b600080600060608486031215613e5557600080fd5b8335613e6081613ae8565b92506020840135613e7081613ae8565b91506040840135613e8081613ae8565b809150509250925092565b60008083601f840112613e9d57600080fd5b50813567ffffffffffffffff811115613eb557600080fd5b6020830191508360208260051b850101111561359857600080fd5b60008060008060408587031215613ee657600080fd5b843567ffffffffffffffff80821115613efe57600080fd5b613f0a88838901613e8b565b90965094506020870135915080821115613f2357600080fd5b50613f3087828801613e8b565b95989497509550505050565b60008060408385031215613f4f57600080fd5b8235613f5a81613ae8565b91506020830135613f6a81613ae8565b809150509250929050565b600181811c90821680613f8957607f821691505b60208210811415613fc3577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561403057614030613fc9565b500290565b600061ffff80831681851680830382111561405257614052613fc9565b01949350505050565b60008160010b8360010b6000821282617fff0382138115161561408057614080613fc9565b827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff80000382128116156140b4576140b4613fc9565b50019392505050565b600083516140cf818460208801613a46565b835190830190614052818360208801613a46565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60006020828403121561412457600080fd5b611d5d82613b36565b60007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561415f5761415f613fc9565b5060010190565b60006020828403121561417857600080fd5b8151611d5d81613ae8565b60008160010b8360010b60008112817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8000018312811516156141c6576141c6613fc9565b81617fff0183138116156141dc576141dc613fc9565b5090039392505050565b600082198211156141f9576141f9613fc9565b500190565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60008261423c5761423c6141fe565b500490565b60008282101561425357614253613fc9565b500390565b600082614267576142676141fe565b500690565b600073ffffffffffffffffffffffffffffffffffffffff8087168352808616602084015250836040830152608060608301526142ab6080830184613a72565b9695505050505050565b6000602082840312156142c757600080fd5b8151611d5d816139fb565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fdfea264697066735822122020c1653183ae4d3ff759b7c1ab91a26ff73a474a4df343f8c5fc1ee66e0252ec64736f6c634300080c0033

Block Transaction Difficulty Gas Used Reward
View All Blocks Produced

Block Uncle Number Difficulty Gas Used Reward
View All Uncles
Loading...
Loading
Loading...
Loading

Validator Index Block Amount
View All Withdrawals

Transaction Hash Block Value Eth2 PubKey Valid
View All Deposits
Loading...
Loading
[ Download: CSV Export  ]

A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.