ETH Price: $3,452.23 (-0.79%)
Gas: 4 Gwei

Token

CYBERUNNERS (CYBER)
 

Overview

Max Total Supply

557 CYBER

Holders

272

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
sleepy0x13.eth
Balance
4 CYBER
0x429f13e4ec5E57c9AE2388c5020E372F73fe168A
Loading...
Loading
Loading...
Loading
Loading...
Loading

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

Contract Source Code Verified (Exact Match)

Contract Name:
CYBERUNNERS

Compiler Version
v0.8.6+commit.11564f7e

Optimization Enabled:
No with 200 runs

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

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

// dev is @elbrupt on telegram

contract CYBERUNNERS is ERC721, Ownable {
    using Strings for uint256;

    // test withdraw wallets
    address public verifiedSigner = 0xfA9500C2F2d397e95de8E67a0D78EeaC98340921;
    address private memberOne = 0xDcfe06271A89d454fF3302bAB78d564ad6952607; // art
    address private memberTwo = 0x983C5BC4C3Cfb1e615fc2C686BF996c0cc0532D3; // manage
    address private memberThree = 0x59AC63f2ce680CaDF37193CFed3D41C47F3d8c5E; // code
    address private memberFour = 0x713eeD92d42dF88AB85934E7156aCDC47b9968C4; // web

    uint256 public NFT_MAX = 2222;
    uint256 public NFT_PRICE = 0.07 ether;
    uint256 public constant NFTS_PER_MINT = 8;
    string private _contractURI;
    string private _tokenBaseURI;
    string public _mysteryURI;

    mapping(uint256 => bool) private usedNonce;

    bool public revealed;
    bool public saleLive = true;
    bool public giftLive = true;
    bool public burnLive;

    uint256 public totalSupply;
    uint256 public totalBurnedSupply;

    constructor() ERC721("CYBERUNNERS", "CYBER") {}

    function mintGiftAsOwner(uint256 tokenQuantity, address wallet)
        external
        onlyOwner
    {
        require(giftLive, "GIFTING_CLOSED");
        require(totalSupply < NFT_MAX, "OUT_OF_STOCK");
        require(totalSupply + tokenQuantity <= NFT_MAX, "EXCEED_STOCK");

        for (uint256 i = 0; i < tokenQuantity; i++) {
            _safeMint(wallet, totalSupply + i + 1);
        }

        totalSupply += tokenQuantity;
    }

    function mintGift(
        uint256 tokenQuantity,
        uint256 nonce,
        address wallet,
        bytes memory signature
    ) external {
        require(giftLive, "GIFTING_CLOSED");
        require(totalSupply < NFT_MAX, "OUT_OF_STOCK");
        require(totalSupply + tokenQuantity <= NFT_MAX, "EXCEED_PUBLIC");
        require(usedNonce[nonce] == false, "NONCE_ALREADY_USED");
        require(
            matchSigner(
                hashTransaction(nonce, wallet, tokenQuantity),
                signature
            ),
            "NOT_ALLOWED_TO_MINT"
        );
        usedNonce[nonce] = true;

        // gifts wallet input
        for (uint256 i = 0; i < tokenQuantity; i++) {
            _safeMint(wallet, totalSupply + i + 1);
        }

        totalSupply += tokenQuantity;
    }

    function mint(
        uint256 tokenQuantity,
        uint256 nonce,
        address wallet,
        bytes memory signature
    ) external payable {
        require(saleLive, "SALE_CLOSED");
        require(totalSupply < NFT_MAX, "OUT_OF_STOCK");
        require(totalSupply + tokenQuantity <= NFT_MAX, "EXCEED_STOCK");
        require(NFT_PRICE * tokenQuantity <= msg.value, "INSUFFICIENT_ETH");
        require(!usedNonce[nonce], "NONCE_ALREADY_USED");
        require(tokenQuantity <= NFTS_PER_MINT, "EXCEED_NFTS_PER_MINT");
        require(
            matchSigner(
                hashTransaction(nonce, wallet, tokenQuantity),
                signature
            ),
            "NOT_ALLOWED_TO_MINT"
        );
        usedNonce[nonce] = true;

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

        totalSupply += tokenQuantity;
    }

    function hashTransaction(
        uint256 nonce,
        address wallet,
        uint256 tokenQuantity
    ) internal pure returns (bytes32) {
        bytes32 hash = keccak256(
            abi.encodePacked(
                "\x19Ethereum Signed Message:\n32",
                keccak256(abi.encodePacked(nonce, wallet, tokenQuantity))
            )
        );
        return hash;
    }

    function matchSigner(bytes32 hash, bytes memory signature)
        internal
        view
        returns (bool)
    {
        return verifiedSigner == ECDSA.recover(hash, signature);
    }

    function withdraw() external {
        uint256 currentBalance = address(this).balance;
        payable(memberOne).transfer((currentBalance * 50) / 100);
        payable(memberTwo).transfer((currentBalance * 30) / 100);
        payable(memberThree).transfer((currentBalance * 10) / 100);
        payable(memberFour).transfer((currentBalance * 10) / 100);
    }

    function burnMint(uint256 _tokenId) public {
        require(burnLive == true, "BURN_IS_NOT_LIVE");
        require(ownerOf(_tokenId) == msg.sender, "TOKEN_TO_BURN_NOT_BY_OWNER");
        _burn(_tokenId);
        totalBurnedSupply = totalBurnedSupply + 1;
    }

    function burnMintAsOwner(uint256 _tokenId) public onlyOwner {
        require(burnLive == true, "BURN_IS_NOT_LIVE");
        _burn(_tokenId);
        totalBurnedSupply = totalBurnedSupply + 1;
    }

    function toggleBurnStatus() external onlyOwner {
        burnLive = !burnLive;
    }

    function toggleSaleStatus() external onlyOwner {
        saleLive = !saleLive;
    }

    function toggleSaleGiftStatus() external onlyOwner {
        giftLive = !giftLive;
    }

    function toggleMysteryURI() public onlyOwner {
        revealed = !revealed;
    }

    function setVerifiedSigner(address wallet) public onlyOwner {
        verifiedSigner = wallet;
    }

    function setMysteryURI(string calldata URI) public onlyOwner {
        _mysteryURI = URI;
    }

    function setPriceOfNFT(uint256 price) external onlyOwner {
        // 70000000000000000 = .07 eth
        NFT_PRICE = price;
    }

    function setNFTMax(uint256 max) external onlyOwner {
        NFT_MAX = max;
    }

    function setContractURI(string calldata URI) external onlyOwner {
        _contractURI = URI;
    }

    function setBaseURI(string calldata URI) external onlyOwner {
        _tokenBaseURI = URI;
    }

    function contractURI() public view returns (string memory) {
        return _contractURI;
    }

    function tokenURI(uint256 tokenId)
        public
        view
        override(ERC721)
        returns (string memory)
    {
        require(_exists(tokenId), "Cannot query non-existent token");

        if (revealed == false) {
            return _mysteryURI;
        }

        return
            string(
                abi.encodePacked(_tokenBaseURI, tokenId.toString(), ".json")
            );
    }
}

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

pragma solidity ^0.8.0;

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

import "../Strings.sol";

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

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

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

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

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

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

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

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

        return (signer, RecoverError.NoError);
    }

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, 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 6 of 12 : IERC721Receiver.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (token/ERC721/IERC721Receiver.sol)

pragma solidity ^0.8.0;

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

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

pragma solidity ^0.8.0;

import "../IERC721.sol";

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

pragma solidity ^0.8.0;

import "./IERC165.sol";

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

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

pragma solidity ^0.8.0;

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

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"NFTS_PER_MINT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"NFT_MAX","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"NFT_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_mysteryURI","outputs":[{"internalType":"string","name":"","type":"string"}],"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":[],"name":"burnLive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"burnMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"burnMintAsOwner","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"giftLive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenQuantity","type":"uint256"},{"internalType":"uint256","name":"nonce","type":"uint256"},{"internalType":"address","name":"wallet","type":"address"},{"internalType":"bytes","name":"signature","type":"bytes"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenQuantity","type":"uint256"},{"internalType":"uint256","name":"nonce","type":"uint256"},{"internalType":"address","name":"wallet","type":"address"},{"internalType":"bytes","name":"signature","type":"bytes"}],"name":"mintGift","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenQuantity","type":"uint256"},{"internalType":"address","name":"wallet","type":"address"}],"name":"mintGiftAsOwner","outputs":[],"stateMutability":"nonpayable","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":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"saleLive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"URI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"URI","type":"string"}],"name":"setContractURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"URI","type":"string"}],"name":"setMysteryURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"max","type":"uint256"}],"name":"setNFTMax","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"price","type":"uint256"}],"name":"setPriceOfNFT","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"wallet","type":"address"}],"name":"setVerifiedSigner","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"toggleBurnStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"toggleMysteryURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"toggleSaleGiftStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"toggleSaleStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalBurnedSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"verifiedSigner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

608060405273fa9500c2f2d397e95de8e67a0d78eeac98340921600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555073dcfe06271a89d454ff3302bab78d564ad6952607600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555073983c5bc4c3cfb1e615fc2c686bf996c0cc0532d3600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055507359ac63f2ce680cadf37193cfed3d41c47f3d8c5e600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555073713eed92d42df88ab85934e7156acdc47b9968c4600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506108ae600c5566f8b0a10e470000600d556001601260016101000a81548160ff0219169083151502179055506001601260026101000a81548160ff0219169083151502179055503480156200020157600080fd5b506040518060400160405280600b81526020017f4359424552554e4e4552530000000000000000000000000000000000000000008152506040518060400160405280600581526020017f435942455200000000000000000000000000000000000000000000000000000081525081600090805190602001906200028692919062000396565b5080600190805190602001906200029f92919062000396565b505050620002c2620002b6620002c860201b60201c565b620002d060201b60201c565b620004ab565b600033905090565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620003a49062000446565b90600052602060002090601f016020900481019282620003c8576000855562000414565b82601f10620003e357805160ff191683800117855562000414565b8280016001018555821562000414579182015b8281111562000413578251825591602001919060010190620003f6565b5b50905062000423919062000427565b5090565b5b808211156200044257600081600090555060010162000428565b5090565b600060028204905060018216806200045f57607f821691505b602082108114156200047657620004756200047c565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b61556e80620004bb6000396000f3fe6080604052600436106102675760003560e01c806370a0823111610144578063c87b56dd116100b6578063e423a5111161007a578063e423a5111461089b578063e72be68a146108c4578063e8a3d485146108ed578063e985e9c514610918578063ee37520b14610955578063f2fde38b1461096c57610267565b8063c87b56dd146107c8578063c9f9a72314610805578063cb908cce1461082e578063d1b85c5314610845578063e081b7811461087057610267565b806395d89b411161010857806395d89b41146106cc578063978528c0146106f7578063a22cb46514610720578063a4f8eaeb14610749578063b88d4fde14610774578063c30e76841461079d57610267565b806370a08231146105f9578063715018a61461063657806372bfb1af1461064d5780638da5cb5b14610678578063938e3d7b146106a357610267565b806335ef4fb7116101dd57806351830227116101a157806351830227146104f857806355f804b3146105235780635b0c52fd1461054c5780635ca5933a146105755780636352211e14610591578063676dd563146105ce57610267565b806335ef4fb71461044b57806339aba407146104765780633ccfd60b146104a157806342842e0e146104b857806345bcf17f146104e157610267565b806311084c971161022f57806311084c971461035157806318160ddd1461037a5780631bd98e72146103a557806323b872dd146103ce5780632cff9e06146103f75780633125ac6c1461042257610267565b806301ffc9a71461026c578063049c5c49146102a957806306fdde03146102c0578063081812fc146102eb578063095ea7b314610328575b600080fd5b34801561027857600080fd5b50610293600480360381019061028e9190613b68565b610995565b6040516102a0919061442d565b60405180910390f35b3480156102b557600080fd5b506102be610a77565b005b3480156102cc57600080fd5b506102d5610b1f565b6040516102e2919061448d565b60405180910390f35b3480156102f757600080fd5b50610312600480360381019061030d9190613c0f565b610bb1565b60405161031f91906143c6565b60405180910390f35b34801561033457600080fd5b5061034f600480360381019061034a9190613b28565b610c36565b005b34801561035d57600080fd5b5061037860048036038101906103739190613c7c565b610d4e565b005b34801561038657600080fd5b5061038f610f7c565b60405161039c919061488f565b60405180910390f35b3480156103b157600080fd5b506103cc60048036038101906103c79190613c3c565b610f82565b005b3480156103da57600080fd5b506103f560048036038101906103f09190613a12565b611144565b005b34801561040357600080fd5b5061040c6111a4565b604051610419919061442d565b60405180910390f35b34801561042e57600080fd5b5061044960048036038101906104449190613c0f565b6111b7565b005b34801561045757600080fd5b506104606112a4565b60405161046d91906143c6565b60405180910390f35b34801561048257600080fd5b5061048b6112ca565b604051610498919061488f565b60405180910390f35b3480156104ad57600080fd5b506104b66112d0565b005b3480156104c457600080fd5b506104df60048036038101906104da9190613a12565b6114dc565b005b3480156104ed57600080fd5b506104f66114fc565b005b34801561050457600080fd5b5061050d6115a4565b60405161051a919061442d565b60405180910390f35b34801561052f57600080fd5b5061054a60048036038101906105459190613bc2565b6115b7565b005b34801561055857600080fd5b50610573600480360381019061056e9190613c0f565b611649565b005b61058f600480360381019061058a9190613c7c565b6116cf565b005b34801561059d57600080fd5b506105b860048036038101906105b39190613c0f565b61198b565b6040516105c591906143c6565b60405180910390f35b3480156105da57600080fd5b506105e3611a3d565b6040516105f0919061488f565b60405180910390f35b34801561060557600080fd5b50610620600480360381019061061b91906139a5565b611a43565b60405161062d919061488f565b60405180910390f35b34801561064257600080fd5b5061064b611afb565b005b34801561065957600080fd5b50610662611b83565b60405161066f919061488f565b60405180910390f35b34801561068457600080fd5b5061068d611b88565b60405161069a91906143c6565b60405180910390f35b3480156106af57600080fd5b506106ca60048036038101906106c59190613bc2565b611bb2565b005b3480156106d857600080fd5b506106e1611c44565b6040516106ee919061448d565b60405180910390f35b34801561070357600080fd5b5061071e600480360381019061071991906139a5565b611cd6565b005b34801561072c57600080fd5b5061074760048036038101906107429190613ae8565b611d96565b005b34801561075557600080fd5b5061075e611dac565b60405161076b919061448d565b60405180910390f35b34801561078057600080fd5b5061079b60048036038101906107969190613a65565b611e3a565b005b3480156107a957600080fd5b506107b2611e9c565b6040516107bf919061488f565b60405180910390f35b3480156107d457600080fd5b506107ef60048036038101906107ea9190613c0f565b611ea2565b6040516107fc919061448d565b60405180910390f35b34801561081157600080fd5b5061082c60048036038101906108279190613c0f565b611fcd565b005b34801561083a57600080fd5b506108436120c0565b005b34801561085157600080fd5b5061085a612168565b604051610867919061442d565b60405180910390f35b34801561087c57600080fd5b5061088561217b565b604051610892919061442d565b60405180910390f35b3480156108a757600080fd5b506108c260048036038101906108bd9190613c0f565b61218e565b005b3480156108d057600080fd5b506108eb60048036038101906108e69190613bc2565b612214565b005b3480156108f957600080fd5b506109026122a6565b60405161090f919061448d565b60405180910390f35b34801561092457600080fd5b5061093f600480360381019061093a91906139d2565b612338565b60405161094c919061442d565b60405180910390f35b34801561096157600080fd5b5061096a6123cc565b005b34801561097857600080fd5b50610993600480360381019061098e91906139a5565b612474565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610a6057507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610a705750610a6f8261256c565b5b9050919050565b610a7f6125d6565b73ffffffffffffffffffffffffffffffffffffffff16610a9d611b88565b73ffffffffffffffffffffffffffffffffffffffff1614610af3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aea9061472f565b60405180910390fd5b601260019054906101000a900460ff1615601260016101000a81548160ff021916908315150217905550565b606060008054610b2e90614b3a565b80601f0160208091040260200160405190810160405280929190818152602001828054610b5a90614b3a565b8015610ba75780601f10610b7c57610100808354040283529160200191610ba7565b820191906000526020600020905b815481529060010190602001808311610b8a57829003601f168201915b5050505050905090565b6000610bbc826125de565b610bfb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bf29061470f565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610c418261198b565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610cb2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ca99061478f565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610cd16125d6565b73ffffffffffffffffffffffffffffffffffffffff161480610d005750610cff81610cfa6125d6565b612338565b5b610d3f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d369061464f565b60405180910390fd5b610d49838361264a565b505050565b601260029054906101000a900460ff16610d9d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d949061486f565b60405180910390fd5b600c5460135410610de3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dda906145cf565b60405180910390fd5b600c5484601354610df49190614958565b1115610e35576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e2c906147af565b60405180910390fd5b600015156011600085815260200190815260200160002060009054906101000a900460ff16151514610e9c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e93906146af565b60405180910390fd5b610eb0610eaa848487612703565b82612764565b610eef576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ee6906147cf565b60405180910390fd5b60016011600085815260200190815260200160002060006101000a81548160ff02191690831515021790555060005b84811015610f5c57610f4983600183601354610f3a9190614958565b610f449190614958565b6127c8565b8080610f5490614b9d565b915050610f1e565b508360136000828254610f6f9190614958565b9250508190555050505050565b60135481565b610f8a6125d6565b73ffffffffffffffffffffffffffffffffffffffff16610fa8611b88565b73ffffffffffffffffffffffffffffffffffffffff1614610ffe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ff59061472f565b60405180910390fd5b601260029054906101000a900460ff1661104d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110449061486f565b60405180910390fd5b600c5460135410611093576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161108a906145cf565b60405180910390fd5b600c54826013546110a49190614958565b11156110e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110dc9061454f565b60405180910390fd5b60005b8281101561112657611113826001836013546111049190614958565b61110e9190614958565b6127c8565b808061111e90614b9d565b9150506110e8565b5081601360008282546111399190614958565b925050819055505050565b61115561114f6125d6565b826127e6565b611194576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161118b906147ef565b60405180910390fd5b61119f8383836128c4565b505050565b601260029054906101000a900460ff1681565b60011515601260039054906101000a900460ff1615151461120d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611204906144cf565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff1661122d8261198b565b73ffffffffffffffffffffffffffffffffffffffff1614611283576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161127a9061480f565b60405180910390fd5b61128c81612b20565b600160145461129b9190614958565b60148190555050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60145481565b6000479050600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc606460328461132091906149df565b61132a91906149ae565b9081150290604051600060405180830381858888f19350505050158015611355573d6000803e3d6000fd5b50600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc6064601e846113a191906149df565b6113ab91906149ae565b9081150290604051600060405180830381858888f193505050501580156113d6573d6000803e3d6000fd5b50600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc6064600a8461142291906149df565b61142c91906149ae565b9081150290604051600060405180830381858888f19350505050158015611457573d6000803e3d6000fd5b50600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc6064600a846114a391906149df565b6114ad91906149ae565b9081150290604051600060405180830381858888f193505050501580156114d8573d6000803e3d6000fd5b5050565b6114f783838360405180602001604052806000815250611e3a565b505050565b6115046125d6565b73ffffffffffffffffffffffffffffffffffffffff16611522611b88565b73ffffffffffffffffffffffffffffffffffffffff1614611578576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161156f9061472f565b60405180910390fd5b601260009054906101000a900460ff1615601260006101000a81548160ff021916908315150217905550565b601260009054906101000a900460ff1681565b6115bf6125d6565b73ffffffffffffffffffffffffffffffffffffffff166115dd611b88565b73ffffffffffffffffffffffffffffffffffffffff1614611633576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161162a9061472f565b60405180910390fd5b8181600f91906116449291906137d3565b505050565b6116516125d6565b73ffffffffffffffffffffffffffffffffffffffff1661166f611b88565b73ffffffffffffffffffffffffffffffffffffffff16146116c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116bc9061472f565b60405180910390fd5b80600c8190555050565b601260019054906101000a900460ff1661171e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117159061460f565b60405180910390fd5b600c5460135410611764576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161175b906145cf565b60405180910390fd5b600c54846013546117759190614958565b11156117b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117ad9061454f565b60405180910390fd5b3484600d546117c591906149df565b1115611806576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117fd9061484f565b60405180910390fd5b6011600084815260200190815260200160002060009054906101000a900460ff1615611867576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161185e906146af565b60405180910390fd5b60088411156118ab576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118a29061482f565b60405180910390fd5b6118bf6118b9848487612703565b82612764565b6118fe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118f5906147cf565b60405180910390fd5b60016011600085815260200190815260200160002060006101000a81548160ff02191690831515021790555060005b8481101561196b57611958336001836013546119499190614958565b6119539190614958565b6127c8565b808061196390614b9d565b91505061192d565b50836013600082825461197e9190614958565b9250508190555050505050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611a34576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a2b9061468f565b60405180910390fd5b80915050919050565b600d5481565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611ab4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aab9061466f565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611b036125d6565b73ffffffffffffffffffffffffffffffffffffffff16611b21611b88565b73ffffffffffffffffffffffffffffffffffffffff1614611b77576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b6e9061472f565b60405180910390fd5b611b816000612c31565b565b600881565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611bba6125d6565b73ffffffffffffffffffffffffffffffffffffffff16611bd8611b88565b73ffffffffffffffffffffffffffffffffffffffff1614611c2e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c259061472f565b60405180910390fd5b8181600e9190611c3f9291906137d3565b505050565b606060018054611c5390614b3a565b80601f0160208091040260200160405190810160405280929190818152602001828054611c7f90614b3a565b8015611ccc5780601f10611ca157610100808354040283529160200191611ccc565b820191906000526020600020905b815481529060010190602001808311611caf57829003601f168201915b5050505050905090565b611cde6125d6565b73ffffffffffffffffffffffffffffffffffffffff16611cfc611b88565b73ffffffffffffffffffffffffffffffffffffffff1614611d52576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d499061472f565b60405180910390fd5b80600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b611da8611da16125d6565b8383612cf7565b5050565b60108054611db990614b3a565b80601f0160208091040260200160405190810160405280929190818152602001828054611de590614b3a565b8015611e325780601f10611e0757610100808354040283529160200191611e32565b820191906000526020600020905b815481529060010190602001808311611e1557829003601f168201915b505050505081565b611e4b611e456125d6565b836127e6565b611e8a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e81906147ef565b60405180910390fd5b611e9684848484612e64565b50505050565b600c5481565b6060611ead826125de565b611eec576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ee39061476f565b60405180910390fd5b60001515601260009054906101000a900460ff1615151415611f9a5760108054611f1590614b3a565b80601f0160208091040260200160405190810160405280929190818152602001828054611f4190614b3a565b8015611f8e5780601f10611f6357610100808354040283529160200191611f8e565b820191906000526020600020905b815481529060010190602001808311611f7157829003601f168201915b50505050509050611fc8565b600f611fa583612ec0565b604051602001611fb6929190614334565b60405160208183030381529060405290505b919050565b611fd56125d6565b73ffffffffffffffffffffffffffffffffffffffff16611ff3611b88565b73ffffffffffffffffffffffffffffffffffffffff1614612049576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120409061472f565b60405180910390fd5b60011515601260039054906101000a900460ff1615151461209f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612096906144cf565b60405180910390fd5b6120a881612b20565b60016014546120b79190614958565b60148190555050565b6120c86125d6565b73ffffffffffffffffffffffffffffffffffffffff166120e6611b88565b73ffffffffffffffffffffffffffffffffffffffff161461213c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121339061472f565b60405180910390fd5b601260029054906101000a900460ff1615601260026101000a81548160ff021916908315150217905550565b601260039054906101000a900460ff1681565b601260019054906101000a900460ff1681565b6121966125d6565b73ffffffffffffffffffffffffffffffffffffffff166121b4611b88565b73ffffffffffffffffffffffffffffffffffffffff161461220a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122019061472f565b60405180910390fd5b80600d8190555050565b61221c6125d6565b73ffffffffffffffffffffffffffffffffffffffff1661223a611b88565b73ffffffffffffffffffffffffffffffffffffffff1614612290576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122879061472f565b60405180910390fd5b8181601091906122a19291906137d3565b505050565b6060600e80546122b590614b3a565b80601f01602080910402602001604051908101604052809291908181526020018280546122e190614b3a565b801561232e5780601f106123035761010080835404028352916020019161232e565b820191906000526020600020905b81548152906001019060200180831161231157829003601f168201915b5050505050905090565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6123d46125d6565b73ffffffffffffffffffffffffffffffffffffffff166123f2611b88565b73ffffffffffffffffffffffffffffffffffffffff1614612448576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161243f9061472f565b60405180910390fd5b601260039054906101000a900460ff1615601260036101000a81548160ff021916908315150217905550565b61247c6125d6565b73ffffffffffffffffffffffffffffffffffffffff1661249a611b88565b73ffffffffffffffffffffffffffffffffffffffff16146124f0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124e79061472f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612560576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125579061452f565b60405180910390fd5b61256981612c31565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166126bd8361198b565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60008084848460405160200161271b93929190614389565b604051602081830303815290604052805190602001206040516020016127419190614363565b604051602081830303815290604052805190602001209050809150509392505050565b60006127708383613021565b73ffffffffffffffffffffffffffffffffffffffff16600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614905092915050565b6127e2828260405180602001604052806000815250613048565b5050565b60006127f1826125de565b612830576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128279061462f565b60405180910390fd5b600061283b8361198b565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806128aa57508373ffffffffffffffffffffffffffffffffffffffff1661289284610bb1565b73ffffffffffffffffffffffffffffffffffffffff16145b806128bb57506128ba8185612338565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166128e48261198b565b73ffffffffffffffffffffffffffffffffffffffff161461293a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129319061474f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156129aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129a19061458f565b60405180910390fd5b6129b58383836130a3565b6129c060008261264a565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612a109190614a39565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612a679190614958565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000612b2b8261198b565b9050612b39816000846130a3565b612b4460008361264a565b6001600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612b949190614a39565b925050819055506002600083815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff021916905581600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612d66576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d5d906145af565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051612e57919061442d565b60405180910390a3505050565b612e6f8484846128c4565b612e7b848484846130a8565b612eba576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612eb19061450f565b60405180910390fd5b50505050565b60606000821415612f08576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061301c565b600082905060005b60008214612f3a578080612f2390614b9d565b915050600a82612f3391906149ae565b9150612f10565b60008167ffffffffffffffff811115612f5657612f55614d3a565b5b6040519080825280601f01601f191660200182016040528015612f885781602001600182028036833780820191505090505b5090505b6000851461301557600182612fa19190614a39565b9150600a85612fb09190614c1e565b6030612fbc9190614958565b60f81b818381518110612fd257612fd1614d0b565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561300e91906149ae565b9450612f8c565b8093505050505b919050565b6000806000613030858561323f565b9150915061303d816132c2565b819250505092915050565b6130528383613497565b61305f60008484846130a8565b61309e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130959061450f565b60405180910390fd5b505050565b505050565b60006130c98473ffffffffffffffffffffffffffffffffffffffff16613665565b15613232578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026130f26125d6565b8786866040518563ffffffff1660e01b815260040161311494939291906143e1565b602060405180830381600087803b15801561312e57600080fd5b505af192505050801561315f57506040513d601f19601f8201168201806040525081019061315c9190613b95565b60015b6131e2573d806000811461318f576040519150601f19603f3d011682016040523d82523d6000602084013e613194565b606091505b506000815114156131da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131d19061450f565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050613237565b600190505b949350505050565b6000806041835114156132815760008060006020860151925060408601519150606086015160001a905061327587828585613678565b945094505050506132bb565b6040835114156132b25760008060208501519150604085015190506132a7868383613785565b9350935050506132bb565b60006002915091505b9250929050565b600060048111156132d6576132d5614cad565b5b8160048111156132e9576132e8614cad565b5b14156132f457613494565b6001600481111561330857613307614cad565b5b81600481111561331b5761331a614cad565b5b141561335c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613353906144af565b60405180910390fd5b600260048111156133705761336f614cad565b5b81600481111561338357613382614cad565b5b14156133c4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016133bb906144ef565b60405180910390fd5b600360048111156133d8576133d7614cad565b5b8160048111156133eb576133ea614cad565b5b141561342c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613423906145ef565b60405180910390fd5b60048081111561343f5761343e614cad565b5b81600481111561345257613451614cad565b5b1415613493576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161348a906146cf565b60405180910390fd5b5b50565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613507576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016134fe906146ef565b60405180910390fd5b613510816125de565b15613550576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016135479061456f565b60405180910390fd5b61355c600083836130a3565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546135ac9190614958565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a08360001c11156136b357600060039150915061377c565b601b8560ff16141580156136cb5750601c8560ff1614155b156136dd57600060049150915061377c565b6000600187878787604051600081526020016040526040516137029493929190614448565b6020604051602081039080840390855afa158015613724573d6000803e3d6000fd5b505050602060405103519050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156137735760006001925092505061377c565b80600092509250505b94509492505050565b6000806000807f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff85169150601b8560ff1c0190506137c587828885613678565b935093505050935093915050565b8280546137df90614b3a565b90600052602060002090601f0160209004810192826138015760008555613848565b82601f1061381a57803560ff1916838001178555613848565b82800160010185558215613848579182015b8281111561384757823582559160200191906001019061382c565b5b5090506138559190613859565b5090565b5b8082111561387257600081600090555060010161385a565b5090565b6000613889613884846148cf565b6148aa565b9050828152602081018484840111156138a5576138a4614d78565b5b6138b0848285614af8565b509392505050565b6000813590506138c7816154dc565b92915050565b6000813590506138dc816154f3565b92915050565b6000813590506138f18161550a565b92915050565b6000815190506139068161550a565b92915050565b600082601f83011261392157613920614d6e565b5b8135613931848260208601613876565b91505092915050565b60008083601f8401126139505761394f614d6e565b5b8235905067ffffffffffffffff81111561396d5761396c614d69565b5b60208301915083600182028301111561398957613988614d73565b5b9250929050565b60008135905061399f81615521565b92915050565b6000602082840312156139bb576139ba614d82565b5b60006139c9848285016138b8565b91505092915050565b600080604083850312156139e9576139e8614d82565b5b60006139f7858286016138b8565b9250506020613a08858286016138b8565b9150509250929050565b600080600060608486031215613a2b57613a2a614d82565b5b6000613a39868287016138b8565b9350506020613a4a868287016138b8565b9250506040613a5b86828701613990565b9150509250925092565b60008060008060808587031215613a7f57613a7e614d82565b5b6000613a8d878288016138b8565b9450506020613a9e878288016138b8565b9350506040613aaf87828801613990565b925050606085013567ffffffffffffffff811115613ad057613acf614d7d565b5b613adc8782880161390c565b91505092959194509250565b60008060408385031215613aff57613afe614d82565b5b6000613b0d858286016138b8565b9250506020613b1e858286016138cd565b9150509250929050565b60008060408385031215613b3f57613b3e614d82565b5b6000613b4d858286016138b8565b9250506020613b5e85828601613990565b9150509250929050565b600060208284031215613b7e57613b7d614d82565b5b6000613b8c848285016138e2565b91505092915050565b600060208284031215613bab57613baa614d82565b5b6000613bb9848285016138f7565b91505092915050565b60008060208385031215613bd957613bd8614d82565b5b600083013567ffffffffffffffff811115613bf757613bf6614d7d565b5b613c038582860161393a565b92509250509250929050565b600060208284031215613c2557613c24614d82565b5b6000613c3384828501613990565b91505092915050565b60008060408385031215613c5357613c52614d82565b5b6000613c6185828601613990565b9250506020613c72858286016138b8565b9150509250929050565b60008060008060808587031215613c9657613c95614d82565b5b6000613ca487828801613990565b9450506020613cb587828801613990565b9350506040613cc6878288016138b8565b925050606085013567ffffffffffffffff811115613ce757613ce6614d7d565b5b613cf38782880161390c565b91505092959194509250565b613d0881614a6d565b82525050565b613d1f613d1a82614a6d565b614be6565b82525050565b613d2e81614a7f565b82525050565b613d3d81614a8b565b82525050565b613d54613d4f82614a8b565b614bf8565b82525050565b6000613d6582614915565b613d6f818561492b565b9350613d7f818560208601614b07565b613d8881614d87565b840191505092915050565b6000613d9e82614920565b613da8818561493c565b9350613db8818560208601614b07565b613dc181614d87565b840191505092915050565b6000613dd782614920565b613de1818561494d565b9350613df1818560208601614b07565b80840191505092915050565b60008154613e0a81614b3a565b613e14818661494d565b94506001821660008114613e2f5760018114613e4057613e73565b60ff19831686528186019350613e73565b613e4985614900565b60005b83811015613e6b57815481890152600182019150602081019050613e4c565b838801955050505b50505092915050565b6000613e8960188361493c565b9150613e9482614da5565b602082019050919050565b6000613eac60108361493c565b9150613eb782614dce565b602082019050919050565b6000613ecf601f8361493c565b9150613eda82614df7565b602082019050919050565b6000613ef2601c8361494d565b9150613efd82614e20565b601c82019050919050565b6000613f1560328361493c565b9150613f2082614e49565b604082019050919050565b6000613f3860268361493c565b9150613f4382614e98565b604082019050919050565b6000613f5b600c8361493c565b9150613f6682614ee7565b602082019050919050565b6000613f7e601c8361493c565b9150613f8982614f10565b602082019050919050565b6000613fa160248361493c565b9150613fac82614f39565b604082019050919050565b6000613fc460198361493c565b9150613fcf82614f88565b602082019050919050565b6000613fe7600c8361493c565b9150613ff282614fb1565b602082019050919050565b600061400a60228361493c565b915061401582614fda565b604082019050919050565b600061402d600b8361493c565b915061403882615029565b602082019050919050565b6000614050602c8361493c565b915061405b82615052565b604082019050919050565b600061407360388361493c565b915061407e826150a1565b604082019050919050565b6000614096602a8361493c565b91506140a1826150f0565b604082019050919050565b60006140b960298361493c565b91506140c48261513f565b604082019050919050565b60006140dc60128361493c565b91506140e78261518e565b602082019050919050565b60006140ff60228361493c565b915061410a826151b7565b604082019050919050565b600061412260208361493c565b915061412d82615206565b602082019050919050565b6000614145602c8361493c565b91506141508261522f565b604082019050919050565b600061416860058361494d565b91506141738261527e565b600582019050919050565b600061418b60208361493c565b9150614196826152a7565b602082019050919050565b60006141ae60298361493c565b91506141b9826152d0565b604082019050919050565b60006141d1601f8361493c565b91506141dc8261531f565b602082019050919050565b60006141f460218361493c565b91506141ff82615348565b604082019050919050565b6000614217600d8361493c565b915061422282615397565b602082019050919050565b600061423a60138361493c565b9150614245826153c0565b602082019050919050565b600061425d60318361493c565b9150614268826153e9565b604082019050919050565b6000614280601a8361493c565b915061428b82615438565b602082019050919050565b60006142a360148361493c565b91506142ae82615461565b602082019050919050565b60006142c660108361493c565b91506142d18261548a565b602082019050919050565b60006142e9600e8361493c565b91506142f4826154b3565b602082019050919050565b61430881614ae1565b82525050565b61431f61431a82614ae1565b614c14565b82525050565b61432e81614aeb565b82525050565b60006143408285613dfd565b915061434c8284613dcc565b91506143578261415b565b91508190509392505050565b600061436e82613ee5565b915061437a8284613d43565b60208201915081905092915050565b6000614395828661430e565b6020820191506143a58285613d0e565b6014820191506143b5828461430e565b602082019150819050949350505050565b60006020820190506143db6000830184613cff565b92915050565b60006080820190506143f66000830187613cff565b6144036020830186613cff565b61441060408301856142ff565b81810360608301526144228184613d5a565b905095945050505050565b60006020820190506144426000830184613d25565b92915050565b600060808201905061445d6000830187613d34565b61446a6020830186614325565b6144776040830185613d34565b6144846060830184613d34565b95945050505050565b600060208201905081810360008301526144a78184613d93565b905092915050565b600060208201905081810360008301526144c881613e7c565b9050919050565b600060208201905081810360008301526144e881613e9f565b9050919050565b6000602082019050818103600083015261450881613ec2565b9050919050565b6000602082019050818103600083015261452881613f08565b9050919050565b6000602082019050818103600083015261454881613f2b565b9050919050565b6000602082019050818103600083015261456881613f4e565b9050919050565b6000602082019050818103600083015261458881613f71565b9050919050565b600060208201905081810360008301526145a881613f94565b9050919050565b600060208201905081810360008301526145c881613fb7565b9050919050565b600060208201905081810360008301526145e881613fda565b9050919050565b6000602082019050818103600083015261460881613ffd565b9050919050565b6000602082019050818103600083015261462881614020565b9050919050565b6000602082019050818103600083015261464881614043565b9050919050565b6000602082019050818103600083015261466881614066565b9050919050565b6000602082019050818103600083015261468881614089565b9050919050565b600060208201905081810360008301526146a8816140ac565b9050919050565b600060208201905081810360008301526146c8816140cf565b9050919050565b600060208201905081810360008301526146e8816140f2565b9050919050565b6000602082019050818103600083015261470881614115565b9050919050565b6000602082019050818103600083015261472881614138565b9050919050565b600060208201905081810360008301526147488161417e565b9050919050565b60006020820190508181036000830152614768816141a1565b9050919050565b60006020820190508181036000830152614788816141c4565b9050919050565b600060208201905081810360008301526147a8816141e7565b9050919050565b600060208201905081810360008301526147c88161420a565b9050919050565b600060208201905081810360008301526147e88161422d565b9050919050565b6000602082019050818103600083015261480881614250565b9050919050565b6000602082019050818103600083015261482881614273565b9050919050565b6000602082019050818103600083015261484881614296565b9050919050565b60006020820190508181036000830152614868816142b9565b9050919050565b60006020820190508181036000830152614888816142dc565b9050919050565b60006020820190506148a460008301846142ff565b92915050565b60006148b46148c5565b90506148c08282614b6c565b919050565b6000604051905090565b600067ffffffffffffffff8211156148ea576148e9614d3a565b5b6148f382614d87565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600061496382614ae1565b915061496e83614ae1565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156149a3576149a2614c4f565b5b828201905092915050565b60006149b982614ae1565b91506149c483614ae1565b9250826149d4576149d3614c7e565b5b828204905092915050565b60006149ea82614ae1565b91506149f583614ae1565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614a2e57614a2d614c4f565b5b828202905092915050565b6000614a4482614ae1565b9150614a4f83614ae1565b925082821015614a6257614a61614c4f565b5b828203905092915050565b6000614a7882614ac1565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b82818337600083830152505050565b60005b83811015614b25578082015181840152602081019050614b0a565b83811115614b34576000848401525b50505050565b60006002820490506001821680614b5257607f821691505b60208210811415614b6657614b65614cdc565b5b50919050565b614b7582614d87565b810181811067ffffffffffffffff82111715614b9457614b93614d3a565b5b80604052505050565b6000614ba882614ae1565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614bdb57614bda614c4f565b5b600182019050919050565b6000614bf182614c02565b9050919050565b6000819050919050565b6000614c0d82614d98565b9050919050565b6000819050919050565b6000614c2982614ae1565b9150614c3483614ae1565b925082614c4457614c43614c7e565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f45434453413a20696e76616c6964207369676e61747572650000000000000000600082015250565b7f4255524e5f49535f4e4f545f4c49564500000000000000000000000000000000600082015250565b7f45434453413a20696e76616c6964207369676e6174757265206c656e67746800600082015250565b7f19457468657265756d205369676e6564204d6573736167653a0a333200000000600082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4558434545445f53544f434b0000000000000000000000000000000000000000600082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4f55545f4f465f53544f434b0000000000000000000000000000000000000000600082015250565b7f45434453413a20696e76616c6964207369676e6174757265202773272076616c60008201527f7565000000000000000000000000000000000000000000000000000000000000602082015250565b7f53414c455f434c4f534544000000000000000000000000000000000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4e4f4e43455f414c52454144595f555345440000000000000000000000000000600082015250565b7f45434453413a20696e76616c6964207369676e6174757265202776272076616c60008201527f7565000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f43616e6e6f74207175657279206e6f6e2d6578697374656e7420746f6b656e00600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4558434545445f5055424c494300000000000000000000000000000000000000600082015250565b7f4e4f545f414c4c4f5745445f544f5f4d494e5400000000000000000000000000600082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f544f4b454e5f544f5f4255524e5f4e4f545f42595f4f574e4552000000000000600082015250565b7f4558434545445f4e4654535f5045525f4d494e54000000000000000000000000600082015250565b7f494e53554646494349454e545f45544800000000000000000000000000000000600082015250565b7f47494654494e475f434c4f534544000000000000000000000000000000000000600082015250565b6154e581614a6d565b81146154f057600080fd5b50565b6154fc81614a7f565b811461550757600080fd5b50565b61551381614a95565b811461551e57600080fd5b50565b61552a81614ae1565b811461553557600080fd5b5056fea2646970667358221220e4d0c0a71150a7a81bdd1c7231d2a5d8f71daee5335c8f81c2f6cb46d99b620364736f6c63430008060033

Deployed Bytecode

0x6080604052600436106102675760003560e01c806370a0823111610144578063c87b56dd116100b6578063e423a5111161007a578063e423a5111461089b578063e72be68a146108c4578063e8a3d485146108ed578063e985e9c514610918578063ee37520b14610955578063f2fde38b1461096c57610267565b8063c87b56dd146107c8578063c9f9a72314610805578063cb908cce1461082e578063d1b85c5314610845578063e081b7811461087057610267565b806395d89b411161010857806395d89b41146106cc578063978528c0146106f7578063a22cb46514610720578063a4f8eaeb14610749578063b88d4fde14610774578063c30e76841461079d57610267565b806370a08231146105f9578063715018a61461063657806372bfb1af1461064d5780638da5cb5b14610678578063938e3d7b146106a357610267565b806335ef4fb7116101dd57806351830227116101a157806351830227146104f857806355f804b3146105235780635b0c52fd1461054c5780635ca5933a146105755780636352211e14610591578063676dd563146105ce57610267565b806335ef4fb71461044b57806339aba407146104765780633ccfd60b146104a157806342842e0e146104b857806345bcf17f146104e157610267565b806311084c971161022f57806311084c971461035157806318160ddd1461037a5780631bd98e72146103a557806323b872dd146103ce5780632cff9e06146103f75780633125ac6c1461042257610267565b806301ffc9a71461026c578063049c5c49146102a957806306fdde03146102c0578063081812fc146102eb578063095ea7b314610328575b600080fd5b34801561027857600080fd5b50610293600480360381019061028e9190613b68565b610995565b6040516102a0919061442d565b60405180910390f35b3480156102b557600080fd5b506102be610a77565b005b3480156102cc57600080fd5b506102d5610b1f565b6040516102e2919061448d565b60405180910390f35b3480156102f757600080fd5b50610312600480360381019061030d9190613c0f565b610bb1565b60405161031f91906143c6565b60405180910390f35b34801561033457600080fd5b5061034f600480360381019061034a9190613b28565b610c36565b005b34801561035d57600080fd5b5061037860048036038101906103739190613c7c565b610d4e565b005b34801561038657600080fd5b5061038f610f7c565b60405161039c919061488f565b60405180910390f35b3480156103b157600080fd5b506103cc60048036038101906103c79190613c3c565b610f82565b005b3480156103da57600080fd5b506103f560048036038101906103f09190613a12565b611144565b005b34801561040357600080fd5b5061040c6111a4565b604051610419919061442d565b60405180910390f35b34801561042e57600080fd5b5061044960048036038101906104449190613c0f565b6111b7565b005b34801561045757600080fd5b506104606112a4565b60405161046d91906143c6565b60405180910390f35b34801561048257600080fd5b5061048b6112ca565b604051610498919061488f565b60405180910390f35b3480156104ad57600080fd5b506104b66112d0565b005b3480156104c457600080fd5b506104df60048036038101906104da9190613a12565b6114dc565b005b3480156104ed57600080fd5b506104f66114fc565b005b34801561050457600080fd5b5061050d6115a4565b60405161051a919061442d565b60405180910390f35b34801561052f57600080fd5b5061054a60048036038101906105459190613bc2565b6115b7565b005b34801561055857600080fd5b50610573600480360381019061056e9190613c0f565b611649565b005b61058f600480360381019061058a9190613c7c565b6116cf565b005b34801561059d57600080fd5b506105b860048036038101906105b39190613c0f565b61198b565b6040516105c591906143c6565b60405180910390f35b3480156105da57600080fd5b506105e3611a3d565b6040516105f0919061488f565b60405180910390f35b34801561060557600080fd5b50610620600480360381019061061b91906139a5565b611a43565b60405161062d919061488f565b60405180910390f35b34801561064257600080fd5b5061064b611afb565b005b34801561065957600080fd5b50610662611b83565b60405161066f919061488f565b60405180910390f35b34801561068457600080fd5b5061068d611b88565b60405161069a91906143c6565b60405180910390f35b3480156106af57600080fd5b506106ca60048036038101906106c59190613bc2565b611bb2565b005b3480156106d857600080fd5b506106e1611c44565b6040516106ee919061448d565b60405180910390f35b34801561070357600080fd5b5061071e600480360381019061071991906139a5565b611cd6565b005b34801561072c57600080fd5b5061074760048036038101906107429190613ae8565b611d96565b005b34801561075557600080fd5b5061075e611dac565b60405161076b919061448d565b60405180910390f35b34801561078057600080fd5b5061079b60048036038101906107969190613a65565b611e3a565b005b3480156107a957600080fd5b506107b2611e9c565b6040516107bf919061488f565b60405180910390f35b3480156107d457600080fd5b506107ef60048036038101906107ea9190613c0f565b611ea2565b6040516107fc919061448d565b60405180910390f35b34801561081157600080fd5b5061082c60048036038101906108279190613c0f565b611fcd565b005b34801561083a57600080fd5b506108436120c0565b005b34801561085157600080fd5b5061085a612168565b604051610867919061442d565b60405180910390f35b34801561087c57600080fd5b5061088561217b565b604051610892919061442d565b60405180910390f35b3480156108a757600080fd5b506108c260048036038101906108bd9190613c0f565b61218e565b005b3480156108d057600080fd5b506108eb60048036038101906108e69190613bc2565b612214565b005b3480156108f957600080fd5b506109026122a6565b60405161090f919061448d565b60405180910390f35b34801561092457600080fd5b5061093f600480360381019061093a91906139d2565b612338565b60405161094c919061442d565b60405180910390f35b34801561096157600080fd5b5061096a6123cc565b005b34801561097857600080fd5b50610993600480360381019061098e91906139a5565b612474565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610a6057507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610a705750610a6f8261256c565b5b9050919050565b610a7f6125d6565b73ffffffffffffffffffffffffffffffffffffffff16610a9d611b88565b73ffffffffffffffffffffffffffffffffffffffff1614610af3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aea9061472f565b60405180910390fd5b601260019054906101000a900460ff1615601260016101000a81548160ff021916908315150217905550565b606060008054610b2e90614b3a565b80601f0160208091040260200160405190810160405280929190818152602001828054610b5a90614b3a565b8015610ba75780601f10610b7c57610100808354040283529160200191610ba7565b820191906000526020600020905b815481529060010190602001808311610b8a57829003601f168201915b5050505050905090565b6000610bbc826125de565b610bfb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bf29061470f565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610c418261198b565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610cb2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ca99061478f565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610cd16125d6565b73ffffffffffffffffffffffffffffffffffffffff161480610d005750610cff81610cfa6125d6565b612338565b5b610d3f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d369061464f565b60405180910390fd5b610d49838361264a565b505050565b601260029054906101000a900460ff16610d9d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d949061486f565b60405180910390fd5b600c5460135410610de3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dda906145cf565b60405180910390fd5b600c5484601354610df49190614958565b1115610e35576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e2c906147af565b60405180910390fd5b600015156011600085815260200190815260200160002060009054906101000a900460ff16151514610e9c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e93906146af565b60405180910390fd5b610eb0610eaa848487612703565b82612764565b610eef576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ee6906147cf565b60405180910390fd5b60016011600085815260200190815260200160002060006101000a81548160ff02191690831515021790555060005b84811015610f5c57610f4983600183601354610f3a9190614958565b610f449190614958565b6127c8565b8080610f5490614b9d565b915050610f1e565b508360136000828254610f6f9190614958565b9250508190555050505050565b60135481565b610f8a6125d6565b73ffffffffffffffffffffffffffffffffffffffff16610fa8611b88565b73ffffffffffffffffffffffffffffffffffffffff1614610ffe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ff59061472f565b60405180910390fd5b601260029054906101000a900460ff1661104d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110449061486f565b60405180910390fd5b600c5460135410611093576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161108a906145cf565b60405180910390fd5b600c54826013546110a49190614958565b11156110e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110dc9061454f565b60405180910390fd5b60005b8281101561112657611113826001836013546111049190614958565b61110e9190614958565b6127c8565b808061111e90614b9d565b9150506110e8565b5081601360008282546111399190614958565b925050819055505050565b61115561114f6125d6565b826127e6565b611194576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161118b906147ef565b60405180910390fd5b61119f8383836128c4565b505050565b601260029054906101000a900460ff1681565b60011515601260039054906101000a900460ff1615151461120d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611204906144cf565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff1661122d8261198b565b73ffffffffffffffffffffffffffffffffffffffff1614611283576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161127a9061480f565b60405180910390fd5b61128c81612b20565b600160145461129b9190614958565b60148190555050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60145481565b6000479050600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc606460328461132091906149df565b61132a91906149ae565b9081150290604051600060405180830381858888f19350505050158015611355573d6000803e3d6000fd5b50600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc6064601e846113a191906149df565b6113ab91906149ae565b9081150290604051600060405180830381858888f193505050501580156113d6573d6000803e3d6000fd5b50600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc6064600a8461142291906149df565b61142c91906149ae565b9081150290604051600060405180830381858888f19350505050158015611457573d6000803e3d6000fd5b50600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc6064600a846114a391906149df565b6114ad91906149ae565b9081150290604051600060405180830381858888f193505050501580156114d8573d6000803e3d6000fd5b5050565b6114f783838360405180602001604052806000815250611e3a565b505050565b6115046125d6565b73ffffffffffffffffffffffffffffffffffffffff16611522611b88565b73ffffffffffffffffffffffffffffffffffffffff1614611578576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161156f9061472f565b60405180910390fd5b601260009054906101000a900460ff1615601260006101000a81548160ff021916908315150217905550565b601260009054906101000a900460ff1681565b6115bf6125d6565b73ffffffffffffffffffffffffffffffffffffffff166115dd611b88565b73ffffffffffffffffffffffffffffffffffffffff1614611633576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161162a9061472f565b60405180910390fd5b8181600f91906116449291906137d3565b505050565b6116516125d6565b73ffffffffffffffffffffffffffffffffffffffff1661166f611b88565b73ffffffffffffffffffffffffffffffffffffffff16146116c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116bc9061472f565b60405180910390fd5b80600c8190555050565b601260019054906101000a900460ff1661171e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117159061460f565b60405180910390fd5b600c5460135410611764576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161175b906145cf565b60405180910390fd5b600c54846013546117759190614958565b11156117b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117ad9061454f565b60405180910390fd5b3484600d546117c591906149df565b1115611806576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117fd9061484f565b60405180910390fd5b6011600084815260200190815260200160002060009054906101000a900460ff1615611867576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161185e906146af565b60405180910390fd5b60088411156118ab576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118a29061482f565b60405180910390fd5b6118bf6118b9848487612703565b82612764565b6118fe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118f5906147cf565b60405180910390fd5b60016011600085815260200190815260200160002060006101000a81548160ff02191690831515021790555060005b8481101561196b57611958336001836013546119499190614958565b6119539190614958565b6127c8565b808061196390614b9d565b91505061192d565b50836013600082825461197e9190614958565b9250508190555050505050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611a34576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a2b9061468f565b60405180910390fd5b80915050919050565b600d5481565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611ab4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aab9061466f565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611b036125d6565b73ffffffffffffffffffffffffffffffffffffffff16611b21611b88565b73ffffffffffffffffffffffffffffffffffffffff1614611b77576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b6e9061472f565b60405180910390fd5b611b816000612c31565b565b600881565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611bba6125d6565b73ffffffffffffffffffffffffffffffffffffffff16611bd8611b88565b73ffffffffffffffffffffffffffffffffffffffff1614611c2e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c259061472f565b60405180910390fd5b8181600e9190611c3f9291906137d3565b505050565b606060018054611c5390614b3a565b80601f0160208091040260200160405190810160405280929190818152602001828054611c7f90614b3a565b8015611ccc5780601f10611ca157610100808354040283529160200191611ccc565b820191906000526020600020905b815481529060010190602001808311611caf57829003601f168201915b5050505050905090565b611cde6125d6565b73ffffffffffffffffffffffffffffffffffffffff16611cfc611b88565b73ffffffffffffffffffffffffffffffffffffffff1614611d52576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d499061472f565b60405180910390fd5b80600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b611da8611da16125d6565b8383612cf7565b5050565b60108054611db990614b3a565b80601f0160208091040260200160405190810160405280929190818152602001828054611de590614b3a565b8015611e325780601f10611e0757610100808354040283529160200191611e32565b820191906000526020600020905b815481529060010190602001808311611e1557829003601f168201915b505050505081565b611e4b611e456125d6565b836127e6565b611e8a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e81906147ef565b60405180910390fd5b611e9684848484612e64565b50505050565b600c5481565b6060611ead826125de565b611eec576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ee39061476f565b60405180910390fd5b60001515601260009054906101000a900460ff1615151415611f9a5760108054611f1590614b3a565b80601f0160208091040260200160405190810160405280929190818152602001828054611f4190614b3a565b8015611f8e5780601f10611f6357610100808354040283529160200191611f8e565b820191906000526020600020905b815481529060010190602001808311611f7157829003601f168201915b50505050509050611fc8565b600f611fa583612ec0565b604051602001611fb6929190614334565b60405160208183030381529060405290505b919050565b611fd56125d6565b73ffffffffffffffffffffffffffffffffffffffff16611ff3611b88565b73ffffffffffffffffffffffffffffffffffffffff1614612049576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120409061472f565b60405180910390fd5b60011515601260039054906101000a900460ff1615151461209f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612096906144cf565b60405180910390fd5b6120a881612b20565b60016014546120b79190614958565b60148190555050565b6120c86125d6565b73ffffffffffffffffffffffffffffffffffffffff166120e6611b88565b73ffffffffffffffffffffffffffffffffffffffff161461213c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121339061472f565b60405180910390fd5b601260029054906101000a900460ff1615601260026101000a81548160ff021916908315150217905550565b601260039054906101000a900460ff1681565b601260019054906101000a900460ff1681565b6121966125d6565b73ffffffffffffffffffffffffffffffffffffffff166121b4611b88565b73ffffffffffffffffffffffffffffffffffffffff161461220a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122019061472f565b60405180910390fd5b80600d8190555050565b61221c6125d6565b73ffffffffffffffffffffffffffffffffffffffff1661223a611b88565b73ffffffffffffffffffffffffffffffffffffffff1614612290576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122879061472f565b60405180910390fd5b8181601091906122a19291906137d3565b505050565b6060600e80546122b590614b3a565b80601f01602080910402602001604051908101604052809291908181526020018280546122e190614b3a565b801561232e5780601f106123035761010080835404028352916020019161232e565b820191906000526020600020905b81548152906001019060200180831161231157829003601f168201915b5050505050905090565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6123d46125d6565b73ffffffffffffffffffffffffffffffffffffffff166123f2611b88565b73ffffffffffffffffffffffffffffffffffffffff1614612448576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161243f9061472f565b60405180910390fd5b601260039054906101000a900460ff1615601260036101000a81548160ff021916908315150217905550565b61247c6125d6565b73ffffffffffffffffffffffffffffffffffffffff1661249a611b88565b73ffffffffffffffffffffffffffffffffffffffff16146124f0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124e79061472f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612560576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125579061452f565b60405180910390fd5b61256981612c31565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166126bd8361198b565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60008084848460405160200161271b93929190614389565b604051602081830303815290604052805190602001206040516020016127419190614363565b604051602081830303815290604052805190602001209050809150509392505050565b60006127708383613021565b73ffffffffffffffffffffffffffffffffffffffff16600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614905092915050565b6127e2828260405180602001604052806000815250613048565b5050565b60006127f1826125de565b612830576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128279061462f565b60405180910390fd5b600061283b8361198b565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806128aa57508373ffffffffffffffffffffffffffffffffffffffff1661289284610bb1565b73ffffffffffffffffffffffffffffffffffffffff16145b806128bb57506128ba8185612338565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166128e48261198b565b73ffffffffffffffffffffffffffffffffffffffff161461293a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129319061474f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156129aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129a19061458f565b60405180910390fd5b6129b58383836130a3565b6129c060008261264a565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612a109190614a39565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612a679190614958565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000612b2b8261198b565b9050612b39816000846130a3565b612b4460008361264a565b6001600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612b949190614a39565b925050819055506002600083815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff021916905581600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612d66576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d5d906145af565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051612e57919061442d565b60405180910390a3505050565b612e6f8484846128c4565b612e7b848484846130a8565b612eba576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612eb19061450f565b60405180910390fd5b50505050565b60606000821415612f08576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061301c565b600082905060005b60008214612f3a578080612f2390614b9d565b915050600a82612f3391906149ae565b9150612f10565b60008167ffffffffffffffff811115612f5657612f55614d3a565b5b6040519080825280601f01601f191660200182016040528015612f885781602001600182028036833780820191505090505b5090505b6000851461301557600182612fa19190614a39565b9150600a85612fb09190614c1e565b6030612fbc9190614958565b60f81b818381518110612fd257612fd1614d0b565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561300e91906149ae565b9450612f8c565b8093505050505b919050565b6000806000613030858561323f565b9150915061303d816132c2565b819250505092915050565b6130528383613497565b61305f60008484846130a8565b61309e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130959061450f565b60405180910390fd5b505050565b505050565b60006130c98473ffffffffffffffffffffffffffffffffffffffff16613665565b15613232578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026130f26125d6565b8786866040518563ffffffff1660e01b815260040161311494939291906143e1565b602060405180830381600087803b15801561312e57600080fd5b505af192505050801561315f57506040513d601f19601f8201168201806040525081019061315c9190613b95565b60015b6131e2573d806000811461318f576040519150601f19603f3d011682016040523d82523d6000602084013e613194565b606091505b506000815114156131da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131d19061450f565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050613237565b600190505b949350505050565b6000806041835114156132815760008060006020860151925060408601519150606086015160001a905061327587828585613678565b945094505050506132bb565b6040835114156132b25760008060208501519150604085015190506132a7868383613785565b9350935050506132bb565b60006002915091505b9250929050565b600060048111156132d6576132d5614cad565b5b8160048111156132e9576132e8614cad565b5b14156132f457613494565b6001600481111561330857613307614cad565b5b81600481111561331b5761331a614cad565b5b141561335c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613353906144af565b60405180910390fd5b600260048111156133705761336f614cad565b5b81600481111561338357613382614cad565b5b14156133c4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016133bb906144ef565b60405180910390fd5b600360048111156133d8576133d7614cad565b5b8160048111156133eb576133ea614cad565b5b141561342c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613423906145ef565b60405180910390fd5b60048081111561343f5761343e614cad565b5b81600481111561345257613451614cad565b5b1415613493576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161348a906146cf565b60405180910390fd5b5b50565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613507576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016134fe906146ef565b60405180910390fd5b613510816125de565b15613550576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016135479061456f565b60405180910390fd5b61355c600083836130a3565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546135ac9190614958565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a08360001c11156136b357600060039150915061377c565b601b8560ff16141580156136cb5750601c8560ff1614155b156136dd57600060049150915061377c565b6000600187878787604051600081526020016040526040516137029493929190614448565b6020604051602081039080840390855afa158015613724573d6000803e3d6000fd5b505050602060405103519050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156137735760006001925092505061377c565b80600092509250505b94509492505050565b6000806000807f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff85169150601b8560ff1c0190506137c587828885613678565b935093505050935093915050565b8280546137df90614b3a565b90600052602060002090601f0160209004810192826138015760008555613848565b82601f1061381a57803560ff1916838001178555613848565b82800160010185558215613848579182015b8281111561384757823582559160200191906001019061382c565b5b5090506138559190613859565b5090565b5b8082111561387257600081600090555060010161385a565b5090565b6000613889613884846148cf565b6148aa565b9050828152602081018484840111156138a5576138a4614d78565b5b6138b0848285614af8565b509392505050565b6000813590506138c7816154dc565b92915050565b6000813590506138dc816154f3565b92915050565b6000813590506138f18161550a565b92915050565b6000815190506139068161550a565b92915050565b600082601f83011261392157613920614d6e565b5b8135613931848260208601613876565b91505092915050565b60008083601f8401126139505761394f614d6e565b5b8235905067ffffffffffffffff81111561396d5761396c614d69565b5b60208301915083600182028301111561398957613988614d73565b5b9250929050565b60008135905061399f81615521565b92915050565b6000602082840312156139bb576139ba614d82565b5b60006139c9848285016138b8565b91505092915050565b600080604083850312156139e9576139e8614d82565b5b60006139f7858286016138b8565b9250506020613a08858286016138b8565b9150509250929050565b600080600060608486031215613a2b57613a2a614d82565b5b6000613a39868287016138b8565b9350506020613a4a868287016138b8565b9250506040613a5b86828701613990565b9150509250925092565b60008060008060808587031215613a7f57613a7e614d82565b5b6000613a8d878288016138b8565b9450506020613a9e878288016138b8565b9350506040613aaf87828801613990565b925050606085013567ffffffffffffffff811115613ad057613acf614d7d565b5b613adc8782880161390c565b91505092959194509250565b60008060408385031215613aff57613afe614d82565b5b6000613b0d858286016138b8565b9250506020613b1e858286016138cd565b9150509250929050565b60008060408385031215613b3f57613b3e614d82565b5b6000613b4d858286016138b8565b9250506020613b5e85828601613990565b9150509250929050565b600060208284031215613b7e57613b7d614d82565b5b6000613b8c848285016138e2565b91505092915050565b600060208284031215613bab57613baa614d82565b5b6000613bb9848285016138f7565b91505092915050565b60008060208385031215613bd957613bd8614d82565b5b600083013567ffffffffffffffff811115613bf757613bf6614d7d565b5b613c038582860161393a565b92509250509250929050565b600060208284031215613c2557613c24614d82565b5b6000613c3384828501613990565b91505092915050565b60008060408385031215613c5357613c52614d82565b5b6000613c6185828601613990565b9250506020613c72858286016138b8565b9150509250929050565b60008060008060808587031215613c9657613c95614d82565b5b6000613ca487828801613990565b9450506020613cb587828801613990565b9350506040613cc6878288016138b8565b925050606085013567ffffffffffffffff811115613ce757613ce6614d7d565b5b613cf38782880161390c565b91505092959194509250565b613d0881614a6d565b82525050565b613d1f613d1a82614a6d565b614be6565b82525050565b613d2e81614a7f565b82525050565b613d3d81614a8b565b82525050565b613d54613d4f82614a8b565b614bf8565b82525050565b6000613d6582614915565b613d6f818561492b565b9350613d7f818560208601614b07565b613d8881614d87565b840191505092915050565b6000613d9e82614920565b613da8818561493c565b9350613db8818560208601614b07565b613dc181614d87565b840191505092915050565b6000613dd782614920565b613de1818561494d565b9350613df1818560208601614b07565b80840191505092915050565b60008154613e0a81614b3a565b613e14818661494d565b94506001821660008114613e2f5760018114613e4057613e73565b60ff19831686528186019350613e73565b613e4985614900565b60005b83811015613e6b57815481890152600182019150602081019050613e4c565b838801955050505b50505092915050565b6000613e8960188361493c565b9150613e9482614da5565b602082019050919050565b6000613eac60108361493c565b9150613eb782614dce565b602082019050919050565b6000613ecf601f8361493c565b9150613eda82614df7565b602082019050919050565b6000613ef2601c8361494d565b9150613efd82614e20565b601c82019050919050565b6000613f1560328361493c565b9150613f2082614e49565b604082019050919050565b6000613f3860268361493c565b9150613f4382614e98565b604082019050919050565b6000613f5b600c8361493c565b9150613f6682614ee7565b602082019050919050565b6000613f7e601c8361493c565b9150613f8982614f10565b602082019050919050565b6000613fa160248361493c565b9150613fac82614f39565b604082019050919050565b6000613fc460198361493c565b9150613fcf82614f88565b602082019050919050565b6000613fe7600c8361493c565b9150613ff282614fb1565b602082019050919050565b600061400a60228361493c565b915061401582614fda565b604082019050919050565b600061402d600b8361493c565b915061403882615029565b602082019050919050565b6000614050602c8361493c565b915061405b82615052565b604082019050919050565b600061407360388361493c565b915061407e826150a1565b604082019050919050565b6000614096602a8361493c565b91506140a1826150f0565b604082019050919050565b60006140b960298361493c565b91506140c48261513f565b604082019050919050565b60006140dc60128361493c565b91506140e78261518e565b602082019050919050565b60006140ff60228361493c565b915061410a826151b7565b604082019050919050565b600061412260208361493c565b915061412d82615206565b602082019050919050565b6000614145602c8361493c565b91506141508261522f565b604082019050919050565b600061416860058361494d565b91506141738261527e565b600582019050919050565b600061418b60208361493c565b9150614196826152a7565b602082019050919050565b60006141ae60298361493c565b91506141b9826152d0565b604082019050919050565b60006141d1601f8361493c565b91506141dc8261531f565b602082019050919050565b60006141f460218361493c565b91506141ff82615348565b604082019050919050565b6000614217600d8361493c565b915061422282615397565b602082019050919050565b600061423a60138361493c565b9150614245826153c0565b602082019050919050565b600061425d60318361493c565b9150614268826153e9565b604082019050919050565b6000614280601a8361493c565b915061428b82615438565b602082019050919050565b60006142a360148361493c565b91506142ae82615461565b602082019050919050565b60006142c660108361493c565b91506142d18261548a565b602082019050919050565b60006142e9600e8361493c565b91506142f4826154b3565b602082019050919050565b61430881614ae1565b82525050565b61431f61431a82614ae1565b614c14565b82525050565b61432e81614aeb565b82525050565b60006143408285613dfd565b915061434c8284613dcc565b91506143578261415b565b91508190509392505050565b600061436e82613ee5565b915061437a8284613d43565b60208201915081905092915050565b6000614395828661430e565b6020820191506143a58285613d0e565b6014820191506143b5828461430e565b602082019150819050949350505050565b60006020820190506143db6000830184613cff565b92915050565b60006080820190506143f66000830187613cff565b6144036020830186613cff565b61441060408301856142ff565b81810360608301526144228184613d5a565b905095945050505050565b60006020820190506144426000830184613d25565b92915050565b600060808201905061445d6000830187613d34565b61446a6020830186614325565b6144776040830185613d34565b6144846060830184613d34565b95945050505050565b600060208201905081810360008301526144a78184613d93565b905092915050565b600060208201905081810360008301526144c881613e7c565b9050919050565b600060208201905081810360008301526144e881613e9f565b9050919050565b6000602082019050818103600083015261450881613ec2565b9050919050565b6000602082019050818103600083015261452881613f08565b9050919050565b6000602082019050818103600083015261454881613f2b565b9050919050565b6000602082019050818103600083015261456881613f4e565b9050919050565b6000602082019050818103600083015261458881613f71565b9050919050565b600060208201905081810360008301526145a881613f94565b9050919050565b600060208201905081810360008301526145c881613fb7565b9050919050565b600060208201905081810360008301526145e881613fda565b9050919050565b6000602082019050818103600083015261460881613ffd565b9050919050565b6000602082019050818103600083015261462881614020565b9050919050565b6000602082019050818103600083015261464881614043565b9050919050565b6000602082019050818103600083015261466881614066565b9050919050565b6000602082019050818103600083015261468881614089565b9050919050565b600060208201905081810360008301526146a8816140ac565b9050919050565b600060208201905081810360008301526146c8816140cf565b9050919050565b600060208201905081810360008301526146e8816140f2565b9050919050565b6000602082019050818103600083015261470881614115565b9050919050565b6000602082019050818103600083015261472881614138565b9050919050565b600060208201905081810360008301526147488161417e565b9050919050565b60006020820190508181036000830152614768816141a1565b9050919050565b60006020820190508181036000830152614788816141c4565b9050919050565b600060208201905081810360008301526147a8816141e7565b9050919050565b600060208201905081810360008301526147c88161420a565b9050919050565b600060208201905081810360008301526147e88161422d565b9050919050565b6000602082019050818103600083015261480881614250565b9050919050565b6000602082019050818103600083015261482881614273565b9050919050565b6000602082019050818103600083015261484881614296565b9050919050565b60006020820190508181036000830152614868816142b9565b9050919050565b60006020820190508181036000830152614888816142dc565b9050919050565b60006020820190506148a460008301846142ff565b92915050565b60006148b46148c5565b90506148c08282614b6c565b919050565b6000604051905090565b600067ffffffffffffffff8211156148ea576148e9614d3a565b5b6148f382614d87565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600061496382614ae1565b915061496e83614ae1565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156149a3576149a2614c4f565b5b828201905092915050565b60006149b982614ae1565b91506149c483614ae1565b9250826149d4576149d3614c7e565b5b828204905092915050565b60006149ea82614ae1565b91506149f583614ae1565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614a2e57614a2d614c4f565b5b828202905092915050565b6000614a4482614ae1565b9150614a4f83614ae1565b925082821015614a6257614a61614c4f565b5b828203905092915050565b6000614a7882614ac1565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b82818337600083830152505050565b60005b83811015614b25578082015181840152602081019050614b0a565b83811115614b34576000848401525b50505050565b60006002820490506001821680614b5257607f821691505b60208210811415614b6657614b65614cdc565b5b50919050565b614b7582614d87565b810181811067ffffffffffffffff82111715614b9457614b93614d3a565b5b80604052505050565b6000614ba882614ae1565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614bdb57614bda614c4f565b5b600182019050919050565b6000614bf182614c02565b9050919050565b6000819050919050565b6000614c0d82614d98565b9050919050565b6000819050919050565b6000614c2982614ae1565b9150614c3483614ae1565b925082614c4457614c43614c7e565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f45434453413a20696e76616c6964207369676e61747572650000000000000000600082015250565b7f4255524e5f49535f4e4f545f4c49564500000000000000000000000000000000600082015250565b7f45434453413a20696e76616c6964207369676e6174757265206c656e67746800600082015250565b7f19457468657265756d205369676e6564204d6573736167653a0a333200000000600082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4558434545445f53544f434b0000000000000000000000000000000000000000600082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4f55545f4f465f53544f434b0000000000000000000000000000000000000000600082015250565b7f45434453413a20696e76616c6964207369676e6174757265202773272076616c60008201527f7565000000000000000000000000000000000000000000000000000000000000602082015250565b7f53414c455f434c4f534544000000000000000000000000000000000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4e4f4e43455f414c52454144595f555345440000000000000000000000000000600082015250565b7f45434453413a20696e76616c6964207369676e6174757265202776272076616c60008201527f7565000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f43616e6e6f74207175657279206e6f6e2d6578697374656e7420746f6b656e00600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4558434545445f5055424c494300000000000000000000000000000000000000600082015250565b7f4e4f545f414c4c4f5745445f544f5f4d494e5400000000000000000000000000600082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f544f4b454e5f544f5f4255524e5f4e4f545f42595f4f574e4552000000000000600082015250565b7f4558434545445f4e4654535f5045525f4d494e54000000000000000000000000600082015250565b7f494e53554646494349454e545f45544800000000000000000000000000000000600082015250565b7f47494654494e475f434c4f534544000000000000000000000000000000000000600082015250565b6154e581614a6d565b81146154f057600080fd5b50565b6154fc81614a7f565b811461550757600080fd5b50565b61551381614a95565b811461551e57600080fd5b50565b61552a81614ae1565b811461553557600080fd5b5056fea2646970667358221220e4d0c0a71150a7a81bdd1c7231d2a5d8f71daee5335c8f81c2f6cb46d99b620364736f6c63430008060033

Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.