ETH Price: $3,393.79 (-1.24%)
Gas: 2 Gwei

Token

0x0DAO (0x0DAO)
 

Overview

Max Total Supply

10,000 0x0DAO

Holders

375

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Balance
2 0x0DAO
0xf39df112ea070c93f2841650805fde216218a572
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:
ZeroXZeroFactory

Compiler Version
v0.8.9+commit.e5eed63a

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 13 : ZeroXZeroFactory.sol
// SPDX-License-Identifier: MIT
pragma solidity >=0.8.6;

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

contract ZeroXZeroFactory is ERC721, ERC721URIStorage, Ownable { 
    
    bool public presaleActive = true;
    bool public saleActive = false;
    bool public claimActive = true;

    string internal baseTokenURI;

    uint public presalePrice = 0.096 ether;
    uint public price = 0.141 ether;
    uint public totalSupply = 10000;
    uint public mintSupply = 640;
    uint public claimSupply = 50;
    uint public nonce = 0;
    uint public maxTx = 2;
    address public signerAddress = 0x82078e077526409D7057d533bD9eb722ea8Da2F2;
    
    mapping(address => uint[]) private ownership;
    mapping(address => uint) public holders;
    mapping(address => mapping(uint => uint)) internal blockMints;
    mapping(bytes => bool) public _ticketUsed;
    
    event Mint(address owner, uint qty);
    event Withdraw(uint amount);
    
    struct Holders {
        address wallet;
        uint qty;
    }
    
    modifier onlyHolders() {
        require(holders[_msgSender()] > 0, "ONLY HOLDERS");
        _;
    }
///////////
    constructor() ERC721("0x0DAO", "0x0DAO") {}

    function safeMint(address to, uint256 tokenId) public onlyOwner {
        _safeMint(to, tokenId);
    }

    // The following functions are overrides required by Solidity.

    function _burn(uint256 tokenId) internal override(ERC721, ERC721URIStorage) {
        super._burn(tokenId);
    }

    function tokenURI(uint256 tokenId)
        public
        view
        override(ERC721, ERC721URIStorage)
        returns (string memory)
    {
        return super.tokenURI(tokenId);
    }
///////////////    
    
    function setPresalePrice(uint newPrice) external onlyOwner {
        presalePrice = newPrice;
    }
    
    function setPrice(uint newPrice) external onlyOwner {
        price = newPrice;
    }
    
    function setBaseTokenURI(string calldata _uri) external onlyOwner {
        baseTokenURI = _uri;
    }

    function setTokenURI(uint256 tokenId, string calldata _tokenURI) external onlyOwner {
        _setTokenURI(tokenId, _tokenURI);
    }

    function setMintSupply(uint newSupply) external onlyOwner {
        mintSupply = newSupply;
    }

    function setClaimSupply(uint newSupply) external onlyOwner {
        claimSupply = newSupply;
    }
    
    function setMaxTx(uint newMax) external onlyOwner {
        maxTx = newMax;
    }

    function setPresaleActive(bool val) public onlyOwner {
        presaleActive = val;
    }
    
    function setSaleActive(bool val) public onlyOwner {
        saleActive = val;
    }

    function setClaimActive(bool val) public onlyOwner {
        claimActive = val;
    }
    
    function getTokenIdsByOwner(address _owner) public view returns(uint[] memory) {
        return ownership[_owner];
    }

    function _baseURI() internal override view returns (string memory) {
        return baseTokenURI;
    }
/////////////// Presale
    function presale(
        bytes memory _ticket,
        bytes memory _signature,
        uint qty
    ) public payable {
        require(!_ticketUsed[_ticket], "ticket has already been used");

        require(
            isAuthorized(
                msg.sender,
                _ticket,
                _signature,
                signerAddress
            ),
            "WL authorization failed"
        );
        require(presaleActive, 'presale is not active');
        require(qty <= maxTx || qty < 1, "TX: qty of mints not allowed");
        require(qty + nonce <= totalSupply, "SUPPLY: Value exceeds totalSupply");
        require(msg.value == presalePrice * qty, "PAYMENT: invalid value");
        require(mintSupply >= qty, "Sold out");
        mintSupply -= qty;
        _create(_msgSender(), qty);
        emit Mint(_msgSender(), qty);
        _ticketUsed[_ticket] = true;
    }
    using ECDSA for bytes32;
    function isAuthorized(
        address sender, 
        bytes memory ticket, 
        bytes memory signature,
        address _signerAddress 
    ) private pure returns (bool) {
        bytes32 hash = keccak256(abi.encodePacked(ticket, sender));
        bytes32 ethSignedHash = hash.toEthSignedMessageHash();
        return _signerAddress == ethSignedHash.recover(signature);
    }
/////////////// Public Sale        
    function buy(uint qty) external payable {
        require(saleActive, 'Sale is not active');
        require(qty <= maxTx || qty < 1, "TX: qty of mints not allowed");
        require(qty + nonce <= totalSupply, "SUPPLY: Value exceeds totalSupply");
        require(msg.value == price * qty, "PAYMENT: invalid value");
        require(mintSupply >= qty, "Sold out");
        mintSupply -= qty;
        _create(_msgSender(), qty);
        emit Mint(_msgSender(), qty);
    }
    
    function addHolders(address[] calldata holders_, uint[] calldata qty) external onlyOwner {
        for(uint i=0; i< holders_.length; i++){
            holders[holders_[i]] = qty[i];
        }
    }
    
    function claim() external onlyHolders {
        require(claimActive, 'Claim is not active');
        uint qty = holders[_msgSender()];
        require(claimSupply >= qty, "Claim over");
        require(nonce + qty <= totalSupply, "sold out");
        holders[_msgSender()] = 0;
        claimSupply -= qty;
        _create(_msgSender(), qty);
    }
    
    function giveaway(address to, uint qty, bool fromHolders) external onlyOwner {
        require(nonce + qty <= totalSupply, "sold out");
        if(fromHolders){
             require(claimSupply >= qty, "Claim over");
             claimSupply -= qty;
        }
        _create(to,qty);
        
    }
    
    function _create(address to, uint qty) internal {
        for(uint i = 0; i < qty; i++){
            nonce++;
            _safeMint(to, nonce);
        }
    }

    function withdrawTeam() external onlyOwner {
        payable(0x9612460DC35a7261c6FdB193A722cFb2dA2E5b3c).transfer(address(this).balance);
    }
    
    function withdraw() external onlyOwner {
        payable(_msgSender()).transfer(address(this).balance);
    }
    
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal override {
        if(from != address(0)){
            uint[] memory tokens = ownership[from];
            for(uint i=0;i<tokens.length;i++){
                if(tokens[i] == tokenId){
                    delete ownership[from][i];
                    break;
                }
            }
        }
        if(to != address(0)){
            ownership[to].push(tokenId);
        }
    }
    
}

File 2 of 13 : ERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (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 13 : ERC721URIStorage.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/ERC721URIStorage.sol)

pragma solidity ^0.8.0;

import "../ERC721.sol";

/**
 * @dev ERC721 token with storage based token URI management.
 */
abstract contract ERC721URIStorage is ERC721 {
    using Strings for uint256;

    // Optional mapping for token URIs
    mapping(uint256 => string) private _tokenURIs;

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

        string memory _tokenURI = _tokenURIs[tokenId];
        string memory base = _baseURI();

        // If there is no base URI, return the token URI.
        if (bytes(base).length == 0) {
            return _tokenURI;
        }
        // If both are set, concatenate the baseURI and tokenURI (via abi.encodePacked).
        if (bytes(_tokenURI).length > 0) {
            return string(abi.encodePacked(base, _tokenURI));
        }

        return super.tokenURI(tokenId);
    }

    /**
     * @dev Sets `_tokenURI` as the tokenURI of `tokenId`.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function _setTokenURI(uint256 tokenId, string memory _tokenURI) internal virtual {
        require(_exists(tokenId), "ERC721URIStorage: URI set of nonexistent token");
        _tokenURIs[tokenId] = _tokenURI;
    }

    /**
     * @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 override {
        super._burn(tokenId);

        if (bytes(_tokenURIs[tokenId]).length != 0) {
            delete _tokenURIs[tokenId];
        }
    }
}

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

File 5 of 13 : ECDSA.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (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 6 of 13 : IERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

pragma solidity ^0.8.0;

import "../IERC721.sol";

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

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

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

File 9 of 13 : Address.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (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 10 of 13 : Context.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

pragma solidity ^0.8.0;

import "./IERC165.sol";

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

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

pragma solidity ^0.8.0;

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

Settings
{
  "optimizer": {
    "enabled": false,
    "runs": 200
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "devdoc",
        "userdoc",
        "metadata",
        "abi"
      ]
    }
  },
  "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":false,"internalType":"address","name":"owner","type":"address"},{"indexed":false,"internalType":"uint256","name":"qty","type":"uint256"}],"name":"Mint","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"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Withdraw","type":"event"},{"inputs":[{"internalType":"bytes","name":"","type":"bytes"}],"name":"_ticketUsed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"holders_","type":"address[]"},{"internalType":"uint256[]","name":"qty","type":"uint256[]"}],"name":"addHolders","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"qty","type":"uint256"}],"name":"buy","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"claim","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"claimActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"claimSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"getTokenIdsByOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"qty","type":"uint256"},{"internalType":"bool","name":"fromHolders","type":"bool"}],"name":"giveaway","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"holders","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mintSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nonce","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes","name":"_ticket","type":"bytes"},{"internalType":"bytes","name":"_signature","type":"bytes"},{"internalType":"uint256","name":"qty","type":"uint256"}],"name":"presale","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"presaleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"presalePrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"saleActive","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":"setBaseTokenURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"val","type":"bool"}],"name":"setClaimActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newSupply","type":"uint256"}],"name":"setClaimSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newMax","type":"uint256"}],"name":"setMaxTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newSupply","type":"uint256"}],"name":"setMintSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"val","type":"bool"}],"name":"setPresaleActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newPrice","type":"uint256"}],"name":"setPresalePrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newPrice","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"val","type":"bool"}],"name":"setSaleActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"string","name":"_tokenURI","type":"string"}],"name":"setTokenURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"signerAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawTeam","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526001600760146101000a81548160ff0219169083151502179055506000600760156101000a81548160ff0219169083151502179055506001600760166101000a81548160ff0219169083151502179055506701550f7dca7000006009556701f4eec0c1548000600a55612710600b55610280600c556032600d556000600e556002600f557382078e077526409d7057d533bd9eb722ea8da2f2601060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550348015620000ea57600080fd5b506040518060400160405280600681526020017f30783044414f00000000000000000000000000000000000000000000000000008152506040518060400160405280600681526020017f30783044414f000000000000000000000000000000000000000000000000000081525081600090805190602001906200016f9291906200027f565b508060019080519060200190620001889291906200027f565b505050620001ab6200019f620001b160201b60201c565b620001b960201b60201c565b62000394565b600033905090565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200028d906200035e565b90600052602060002090601f016020900481019282620002b15760008555620002fd565b82601f10620002cc57805160ff1916838001178555620002fd565b82800160010185558215620002fd579182015b82811115620002fc578251825591602001919060010190620002df565b5b5090506200030c919062000310565b5090565b5b808211156200032b57600081600090555060010162000311565b5090565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200037757607f821691505b602082108114156200038e576200038d6200032f565b5b50919050565b615ef280620003a46000396000f3fe6080604052600436106102925760003560e01c806368428a1b1161015a578063a1448194116100c1578063bc3371821161007a578063bc337182146109a2578063c87b56dd146109cb578063d4a6a2fd14610a08578063d96a094a14610a33578063e985e9c514610a4f578063f2fde38b14610a8c57610292565b8063a1448194146108bc578063a22cb465146108e5578063ac568e841461090e578063affed0e014610937578063b88d4fde14610962578063bb51f32d1461098b57610292565b80637d4437c0116101135780637d4437c0146107c0578063841718a6146107e95780638da5cb5b1461081257806391b7f5ed1461083d57806395d89b4114610866578063a035b1fe1461089157610292565b806368428a1b146106b05780636970bb0a146106db57806370a0823114610718578063715018a61461075557806373417b091461076c5780637437681e1461079557610292565b806323b872dd116101fe57806342842e0e116101b757806342842e0e146105c15780634e71d92d146105ea57806353135ca0146106015780635b7633d01461062c5780636352211e14610657578063652567671461069457610292565b806323b872dd146104dd5780632a3e67fc1461050657806330176e131461052f5780633549345e146105585780633ccfd60b146105815780633f8121a21461059857610292565b8063095ea7b311610250578063095ea7b3146103cf5780630ad29ec3146103f8578063162094c41461042357806318160ddd1461044c57806318a5bbdc1461047757806322e8d8cd146104b457610292565b80620e7fa81461029757806301ffc9a7146102c2578063045b7dca146102ff57806306fdde031461032a5780630801dded14610355578063081812fc14610392575b600080fd5b3480156102a357600080fd5b506102ac610ab5565b6040516102b99190613dde565b60405180910390f35b3480156102ce57600080fd5b506102e960048036038101906102e49190613e65565b610abb565b6040516102f69190613ead565b60405180910390f35b34801561030b57600080fd5b50610314610b9d565b6040516103219190613dde565b60405180910390f35b34801561033657600080fd5b5061033f610ba3565b60405161034c9190613f61565b60405180910390f35b34801561036157600080fd5b5061037c600480360381019061037791906140b8565b610c35565b6040516103899190613ead565b60405180910390f35b34801561039e57600080fd5b506103b960048036038101906103b4919061412d565b610c6b565b6040516103c6919061419b565b60405180910390f35b3480156103db57600080fd5b506103f660048036038101906103f191906141e2565b610cf0565b005b34801561040457600080fd5b5061040d610e08565b60405161041a9190613dde565b60405180910390f35b34801561042f57600080fd5b5061044a60048036038101906104459190614282565b610e0e565b005b34801561045857600080fd5b50610461610edd565b60405161046e9190613dde565b60405180910390f35b34801561048357600080fd5b5061049e600480360381019061049991906142e2565b610ee3565b6040516104ab9190613dde565b60405180910390f35b3480156104c057600080fd5b506104db60048036038101906104d6919061412d565b610efb565b005b3480156104e957600080fd5b5061050460048036038101906104ff919061430f565b610f81565b005b34801561051257600080fd5b5061052d6004803603810190610528919061438e565b610fe1565b005b34801561053b57600080fd5b50610556600480360381019061055191906143e1565b611123565b005b34801561056457600080fd5b5061057f600480360381019061057a919061412d565b6111b5565b005b34801561058d57600080fd5b5061059661123b565b005b3480156105a457600080fd5b506105bf60048036038101906105ba919061442e565b611307565b005b3480156105cd57600080fd5b506105e860048036038101906105e3919061430f565b6113a0565b005b3480156105f657600080fd5b506105ff6113c0565b005b34801561060d57600080fd5b506106166115f3565b6040516106239190613ead565b60405180910390f35b34801561063857600080fd5b50610641611606565b60405161064e919061419b565b60405180910390f35b34801561066357600080fd5b5061067e6004803603810190610679919061412d565b61162c565b60405161068b919061419b565b60405180910390f35b6106ae60048036038101906106a9919061445b565b6116de565b005b3480156106bc57600080fd5b506106c56119e2565b6040516106d29190613ead565b60405180910390f35b3480156106e757600080fd5b5061070260048036038101906106fd91906142e2565b6119f5565b60405161070f91906145a4565b60405180910390f35b34801561072457600080fd5b5061073f600480360381019061073a91906142e2565b611a8c565b60405161074c9190613dde565b60405180910390f35b34801561076157600080fd5b5061076a611b44565b005b34801561077857600080fd5b50610793600480360381019061078e919061442e565b611bcc565b005b3480156107a157600080fd5b506107aa611c65565b6040516107b79190613dde565b60405180910390f35b3480156107cc57600080fd5b506107e760048036038101906107e29190614672565b611c6b565b005b3480156107f557600080fd5b50610810600480360381019061080b919061442e565b611d93565b005b34801561081e57600080fd5b50610827611e2c565b604051610834919061419b565b60405180910390f35b34801561084957600080fd5b50610864600480360381019061085f919061412d565b611e56565b005b34801561087257600080fd5b5061087b611edc565b6040516108889190613f61565b60405180910390f35b34801561089d57600080fd5b506108a6611f6e565b6040516108b39190613dde565b60405180910390f35b3480156108c857600080fd5b506108e360048036038101906108de91906141e2565b611f74565b005b3480156108f157600080fd5b5061090c600480360381019061090791906146f3565b611ffe565b005b34801561091a57600080fd5b506109356004803603810190610930919061412d565b612014565b005b34801561094357600080fd5b5061094c61209a565b6040516109599190613dde565b60405180910390f35b34801561096e57600080fd5b5061098960048036038101906109849190614733565b6120a0565b005b34801561099757600080fd5b506109a0612102565b005b3480156109ae57600080fd5b506109c960048036038101906109c4919061412d565b6121db565b005b3480156109d757600080fd5b506109f260048036038101906109ed919061412d565b612261565b6040516109ff9190613f61565b60405180910390f35b348015610a1457600080fd5b50610a1d612273565b604051610a2a9190613ead565b60405180910390f35b610a4d6004803603810190610a48919061412d565b612286565b005b348015610a5b57600080fd5b50610a766004803603810190610a7191906147b6565b612478565b604051610a839190613ead565b60405180910390f35b348015610a9857600080fd5b50610ab36004803603810190610aae91906142e2565b61250c565b005b60095481565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610b8657507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610b965750610b9582612604565b5b9050919050565b600c5481565b606060008054610bb290614825565b80601f0160208091040260200160405190810160405280929190818152602001828054610bde90614825565b8015610c2b5780601f10610c0057610100808354040283529160200191610c2b565b820191906000526020600020905b815481529060010190602001808311610c0e57829003601f168201915b5050505050905090565b6014818051602081018201805184825260208301602085012081835280955050505050506000915054906101000a900460ff1681565b6000610c768261266e565b610cb5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cac906148c9565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610cfb8261162c565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610d6c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d639061495b565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610d8b6126da565b73ffffffffffffffffffffffffffffffffffffffff161480610dba5750610db981610db46126da565b612478565b5b610df9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610df0906149ed565b60405180910390fd5b610e0383836126e2565b505050565b600d5481565b610e166126da565b73ffffffffffffffffffffffffffffffffffffffff16610e34611e2c565b73ffffffffffffffffffffffffffffffffffffffff1614610e8a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e8190614a59565b60405180910390fd5b610ed88383838080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f8201169050808301925050505050505061279b565b505050565b600b5481565b60126020528060005260406000206000915090505481565b610f036126da565b73ffffffffffffffffffffffffffffffffffffffff16610f21611e2c565b73ffffffffffffffffffffffffffffffffffffffff1614610f77576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f6e90614a59565b60405180910390fd5b80600d8190555050565b610f92610f8c6126da565b8261280f565b610fd1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fc890614aeb565b60405180910390fd5b610fdc8383836128ed565b505050565b610fe96126da565b73ffffffffffffffffffffffffffffffffffffffff16611007611e2c565b73ffffffffffffffffffffffffffffffffffffffff161461105d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161105490614a59565b60405180910390fd5b600b5482600e5461106e9190614b3a565b11156110af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110a690614bdc565b60405180910390fd5b80156111145781600d5410156110fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110f190614c48565b60405180910390fd5b81600d600082825461110c9190614c68565b925050819055505b61111e8383612b49565b505050565b61112b6126da565b73ffffffffffffffffffffffffffffffffffffffff16611149611e2c565b73ffffffffffffffffffffffffffffffffffffffff161461119f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161119690614a59565b60405180910390fd5b8181600891906111b0929190613c9c565b505050565b6111bd6126da565b73ffffffffffffffffffffffffffffffffffffffff166111db611e2c565b73ffffffffffffffffffffffffffffffffffffffff1614611231576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161122890614a59565b60405180910390fd5b8060098190555050565b6112436126da565b73ffffffffffffffffffffffffffffffffffffffff16611261611e2c565b73ffffffffffffffffffffffffffffffffffffffff16146112b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112ae90614a59565b60405180910390fd5b6112bf6126da565b73ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015611304573d6000803e3d6000fd5b50565b61130f6126da565b73ffffffffffffffffffffffffffffffffffffffff1661132d611e2c565b73ffffffffffffffffffffffffffffffffffffffff1614611383576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161137a90614a59565b60405180910390fd5b80600760146101000a81548160ff02191690831515021790555050565b6113bb838383604051806020016040528060008152506120a0565b505050565b6000601260006113ce6126da565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205411611449576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161144090614ce8565b60405180910390fd5b600760169054906101000a900460ff16611498576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161148f90614d54565b60405180910390fd5b6000601260006114a66126da565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905080600d541015611528576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161151f90614c48565b60405180910390fd5b600b5481600e546115399190614b3a565b111561157a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161157190614bdc565b60405180910390fd5b6000601260006115886126da565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555080600d60008282546115d89190614c68565b925050819055506115f06115ea6126da565b82612b49565b50565b600760149054906101000a900460ff1681565b601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156116d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116cc90614de6565b60405180910390fd5b80915050919050565b6014836040516116ee9190614e4d565b908152602001604051809103902060009054906101000a900460ff161561174a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161174190614eb0565b60405180910390fd5b611778338484601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16612b90565b6117b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117ae90614f1c565b60405180910390fd5b600760149054906101000a900460ff16611806576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117fd90614f88565b60405180910390fd5b600f54811115806118175750600181105b611856576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161184d90614ff4565b60405180910390fd5b600b54600e54826118679190614b3a565b11156118a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161189f90615086565b60405180910390fd5b806009546118b691906150a6565b34146118f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118ee9061514c565b60405180910390fd5b80600c54101561193c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611933906151b8565b60405180910390fd5b80600c600082825461194e9190614c68565b925050819055506119666119606126da565b82612b49565b7f0f6798a560793a54c3bcfe86a93cde1e73087d944c0ea20544137d412139688561198f6126da565b8260405161199e9291906151d8565b60405180910390a160016014846040516119b89190614e4d565b908152602001604051809103902060006101000a81548160ff021916908315150217905550505050565b600760159054906101000a900460ff1681565b6060601160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020805480602002602001604051908101604052809291908181526020018280548015611a8057602002820191906000526020600020905b815481526020019060010190808311611a6c575b50505050509050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611afd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611af490615273565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611b4c6126da565b73ffffffffffffffffffffffffffffffffffffffff16611b6a611e2c565b73ffffffffffffffffffffffffffffffffffffffff1614611bc0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bb790614a59565b60405180910390fd5b611bca6000612c18565b565b611bd46126da565b73ffffffffffffffffffffffffffffffffffffffff16611bf2611e2c565b73ffffffffffffffffffffffffffffffffffffffff1614611c48576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c3f90614a59565b60405180910390fd5b80600760166101000a81548160ff02191690831515021790555050565b600f5481565b611c736126da565b73ffffffffffffffffffffffffffffffffffffffff16611c91611e2c565b73ffffffffffffffffffffffffffffffffffffffff1614611ce7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cde90614a59565b60405180910390fd5b60005b84849050811015611d8c57828282818110611d0857611d07615293565b5b9050602002013560126000878785818110611d2657611d25615293565b5b9050602002016020810190611d3b91906142e2565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508080611d84906152c2565b915050611cea565b5050505050565b611d9b6126da565b73ffffffffffffffffffffffffffffffffffffffff16611db9611e2c565b73ffffffffffffffffffffffffffffffffffffffff1614611e0f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e0690614a59565b60405180910390fd5b80600760156101000a81548160ff02191690831515021790555050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611e5e6126da565b73ffffffffffffffffffffffffffffffffffffffff16611e7c611e2c565b73ffffffffffffffffffffffffffffffffffffffff1614611ed2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ec990614a59565b60405180910390fd5b80600a8190555050565b606060018054611eeb90614825565b80601f0160208091040260200160405190810160405280929190818152602001828054611f1790614825565b8015611f645780601f10611f3957610100808354040283529160200191611f64565b820191906000526020600020905b815481529060010190602001808311611f4757829003601f168201915b5050505050905090565b600a5481565b611f7c6126da565b73ffffffffffffffffffffffffffffffffffffffff16611f9a611e2c565b73ffffffffffffffffffffffffffffffffffffffff1614611ff0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fe790614a59565b60405180910390fd5b611ffa8282612cde565b5050565b6120106120096126da565b8383612cfc565b5050565b61201c6126da565b73ffffffffffffffffffffffffffffffffffffffff1661203a611e2c565b73ffffffffffffffffffffffffffffffffffffffff1614612090576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161208790614a59565b60405180910390fd5b80600c8190555050565b600e5481565b6120b16120ab6126da565b8361280f565b6120f0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120e790614aeb565b60405180910390fd5b6120fc84848484612e69565b50505050565b61210a6126da565b73ffffffffffffffffffffffffffffffffffffffff16612128611e2c565b73ffffffffffffffffffffffffffffffffffffffff161461217e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161217590614a59565b60405180910390fd5b739612460dc35a7261c6fdb193a722cfb2da2e5b3c73ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f193505050501580156121d8573d6000803e3d6000fd5b50565b6121e36126da565b73ffffffffffffffffffffffffffffffffffffffff16612201611e2c565b73ffffffffffffffffffffffffffffffffffffffff1614612257576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161224e90614a59565b60405180910390fd5b80600f8190555050565b606061226c82612ec5565b9050919050565b600760169054906101000a900460ff1681565b600760159054906101000a900460ff166122d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122cc90615357565b60405180910390fd5b600f54811115806122e65750600181105b612325576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161231c90614ff4565b60405180910390fd5b600b54600e54826123369190614b3a565b1115612377576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161236e90615086565b60405180910390fd5b80600a5461238591906150a6565b34146123c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123bd9061514c565b60405180910390fd5b80600c54101561240b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612402906151b8565b60405180910390fd5b80600c600082825461241d9190614c68565b9250508190555061243561242f6126da565b82612b49565b7f0f6798a560793a54c3bcfe86a93cde1e73087d944c0ea20544137d412139688561245e6126da565b8260405161246d9291906151d8565b60405180910390a150565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6125146126da565b73ffffffffffffffffffffffffffffffffffffffff16612532611e2c565b73ffffffffffffffffffffffffffffffffffffffff1614612588576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161257f90614a59565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156125f8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125ef906153e9565b60405180910390fd5b61260181612c18565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166127558361162c565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6127a48261266e565b6127e3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127da9061547b565b60405180910390fd5b8060066000848152602001908152602001600020908051906020019061280a929190613d22565b505050565b600061281a8261266e565b612859576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128509061550d565b60405180910390fd5b60006128648361162c565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806128d357508373ffffffffffffffffffffffffffffffffffffffff166128bb84610c6b565b73ffffffffffffffffffffffffffffffffffffffff16145b806128e457506128e38185612478565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661290d8261162c565b73ffffffffffffffffffffffffffffffffffffffff1614612963576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161295a9061559f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156129d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129ca90615631565b60405180910390fd5b6129de838383613017565b6129e96000826126e2565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612a399190614c68565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612a909190614b3a565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b60005b81811015612b8b57600e6000815480929190612b67906152c2565b9190505550612b7883600e54612cde565b8080612b83906152c2565b915050612b4c565b505050565b6000808486604051602001612ba6929190615699565b6040516020818303038152906040528051906020012090506000612bc982613225565b9050612bde858261325590919063ffffffff16565b73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161492505050949350505050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612cf882826040518060200160405280600081525061327c565b5050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612d6b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d629061570d565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051612e5c9190613ead565b60405180910390a3505050565b612e748484846128ed565b612e80848484846132d7565b612ebf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612eb69061579f565b60405180910390fd5b50505050565b6060612ed08261266e565b612f0f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f0690615831565b60405180910390fd5b6000600660008481526020019081526020016000208054612f2f90614825565b80601f0160208091040260200160405190810160405280929190818152602001828054612f5b90614825565b8015612fa85780601f10612f7d57610100808354040283529160200191612fa8565b820191906000526020600020905b815481529060010190602001808311612f8b57829003601f168201915b505050505090506000612fb961346e565b9050600081511415612fcf578192505050613012565b600082511115613004578082604051602001612fec92919061588d565b60405160208183030381529060405292505050613012565b61300d84613500565b925050505b919050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614613185576000601160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208054806020026020016040519081016040528092919081815260200182805480156130d657602002820191906000526020600020905b8154815260200190600101908083116130c2575b5050505050905060005b815181101561318257828282815181106130fd576130fc615293565b5b6020026020010151141561316f57601160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020818154811061315c5761315b615293565b5b9060005260206000200160009055613182565b808061317a906152c2565b9150506130e0565b50505b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161461322057601160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190806001815401808255809150506001900390600052602060002001600090919091909150555b505050565b6000816040516020016132389190615928565b604051602081830303815290604052805190602001209050919050565b600080600061326485856135a7565b915091506132718161362a565b819250505092915050565b61328683836137ff565b61329360008484846132d7565b6132d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016132c99061579f565b60405180910390fd5b505050565b60006132f88473ffffffffffffffffffffffffffffffffffffffff166139cd565b15613461578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026133216126da565b8786866040518563ffffffff1660e01b81526004016133439493929190615998565b602060405180830381600087803b15801561335d57600080fd5b505af192505050801561338e57506040513d601f19601f8201168201806040525081019061338b91906159f9565b60015b613411573d80600081146133be576040519150601f19603f3d011682016040523d82523d6000602084013e6133c3565b606091505b50600081511415613409576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016134009061579f565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050613466565b600190505b949350505050565b60606008805461347d90614825565b80601f01602080910402602001604051908101604052809291908181526020018280546134a990614825565b80156134f65780601f106134cb576101008083540402835291602001916134f6565b820191906000526020600020905b8154815290600101906020018083116134d957829003601f168201915b5050505050905090565b606061350b8261266e565b61354a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161354190615a98565b60405180910390fd5b600061355461346e565b90506000815111613574576040518060200160405280600081525061359f565b8061357e846139e0565b60405160200161358f92919061588d565b6040516020818303038152906040525b915050919050565b6000806041835114156135e95760008060006020860151925060408601519150606086015160001a90506135dd87828585613b41565b94509450505050613623565b60408351141561361a57600080602085015191506040850151905061360f868383613c4e565b935093505050613623565b60006002915091505b9250929050565b6000600481111561363e5761363d615ab8565b5b81600481111561365157613650615ab8565b5b141561365c576137fc565b600160048111156136705761366f615ab8565b5b81600481111561368357613682615ab8565b5b14156136c4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016136bb90615b33565b60405180910390fd5b600260048111156136d8576136d7615ab8565b5b8160048111156136eb576136ea615ab8565b5b141561372c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161372390615b9f565b60405180910390fd5b600360048111156137405761373f615ab8565b5b81600481111561375357613752615ab8565b5b1415613794576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161378b90615c31565b60405180910390fd5b6004808111156137a7576137a6615ab8565b5b8160048111156137ba576137b9615ab8565b5b14156137fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016137f290615cc3565b60405180910390fd5b5b50565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561386f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161386690615d2f565b60405180910390fd5b6138788161266e565b156138b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016138af90615d9b565b60405180910390fd5b6138c460008383613017565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546139149190614b3a565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b60606000821415613a28576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050613b3c565b600082905060005b60008214613a5a578080613a43906152c2565b915050600a82613a539190615dea565b9150613a30565b60008167ffffffffffffffff811115613a7657613a75613f8d565b5b6040519080825280601f01601f191660200182016040528015613aa85781602001600182028036833780820191505090505b5090505b60008514613b3557600182613ac19190614c68565b9150600a85613ad09190615e1b565b6030613adc9190614b3a565b60f81b818381518110613af257613af1615293565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85613b2e9190615dea565b9450613aac565b8093505050505b919050565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a08360001c1115613b7c576000600391509150613c45565b601b8560ff1614158015613b945750601c8560ff1614155b15613ba6576000600491509150613c45565b600060018787878760405160008152602001604052604051613bcb9493929190615e77565b6020604051602081039080840390855afa158015613bed573d6000803e3d6000fd5b505050602060405103519050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415613c3c57600060019250925050613c45565b80600092509250505b94509492505050565b6000806000807f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff85169150601b8560ff1c019050613c8e87828885613b41565b935093505050935093915050565b828054613ca890614825565b90600052602060002090601f016020900481019282613cca5760008555613d11565b82601f10613ce357803560ff1916838001178555613d11565b82800160010185558215613d11579182015b82811115613d10578235825591602001919060010190613cf5565b5b509050613d1e9190613da8565b5090565b828054613d2e90614825565b90600052602060002090601f016020900481019282613d505760008555613d97565b82601f10613d6957805160ff1916838001178555613d97565b82800160010185558215613d97579182015b82811115613d96578251825591602001919060010190613d7b565b5b509050613da49190613da8565b5090565b5b80821115613dc1576000816000905550600101613da9565b5090565b6000819050919050565b613dd881613dc5565b82525050565b6000602082019050613df36000830184613dcf565b92915050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b613e4281613e0d565b8114613e4d57600080fd5b50565b600081359050613e5f81613e39565b92915050565b600060208284031215613e7b57613e7a613e03565b5b6000613e8984828501613e50565b91505092915050565b60008115159050919050565b613ea781613e92565b82525050565b6000602082019050613ec26000830184613e9e565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015613f02578082015181840152602081019050613ee7565b83811115613f11576000848401525b50505050565b6000601f19601f8301169050919050565b6000613f3382613ec8565b613f3d8185613ed3565b9350613f4d818560208601613ee4565b613f5681613f17565b840191505092915050565b60006020820190508181036000830152613f7b8184613f28565b905092915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b613fc582613f17565b810181811067ffffffffffffffff82111715613fe457613fe3613f8d565b5b80604052505050565b6000613ff7613df9565b90506140038282613fbc565b919050565b600067ffffffffffffffff82111561402357614022613f8d565b5b61402c82613f17565b9050602081019050919050565b82818337600083830152505050565b600061405b61405684614008565b613fed565b90508281526020810184848401111561407757614076613f88565b5b614082848285614039565b509392505050565b600082601f83011261409f5761409e613f83565b5b81356140af848260208601614048565b91505092915050565b6000602082840312156140ce576140cd613e03565b5b600082013567ffffffffffffffff8111156140ec576140eb613e08565b5b6140f88482850161408a565b91505092915050565b61410a81613dc5565b811461411557600080fd5b50565b60008135905061412781614101565b92915050565b60006020828403121561414357614142613e03565b5b600061415184828501614118565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006141858261415a565b9050919050565b6141958161417a565b82525050565b60006020820190506141b0600083018461418c565b92915050565b6141bf8161417a565b81146141ca57600080fd5b50565b6000813590506141dc816141b6565b92915050565b600080604083850312156141f9576141f8613e03565b5b6000614207858286016141cd565b925050602061421885828601614118565b9150509250929050565b600080fd5b600080fd5b60008083601f84011261424257614241613f83565b5b8235905067ffffffffffffffff81111561425f5761425e614222565b5b60208301915083600182028301111561427b5761427a614227565b5b9250929050565b60008060006040848603121561429b5761429a613e03565b5b60006142a986828701614118565b935050602084013567ffffffffffffffff8111156142ca576142c9613e08565b5b6142d68682870161422c565b92509250509250925092565b6000602082840312156142f8576142f7613e03565b5b6000614306848285016141cd565b91505092915050565b60008060006060848603121561432857614327613e03565b5b6000614336868287016141cd565b9350506020614347868287016141cd565b925050604061435886828701614118565b9150509250925092565b61436b81613e92565b811461437657600080fd5b50565b60008135905061438881614362565b92915050565b6000806000606084860312156143a7576143a6613e03565b5b60006143b5868287016141cd565b93505060206143c686828701614118565b92505060406143d786828701614379565b9150509250925092565b600080602083850312156143f8576143f7613e03565b5b600083013567ffffffffffffffff81111561441657614415613e08565b5b6144228582860161422c565b92509250509250929050565b60006020828403121561444457614443613e03565b5b600061445284828501614379565b91505092915050565b60008060006060848603121561447457614473613e03565b5b600084013567ffffffffffffffff81111561449257614491613e08565b5b61449e8682870161408a565b935050602084013567ffffffffffffffff8111156144bf576144be613e08565b5b6144cb8682870161408a565b92505060406144dc86828701614118565b9150509250925092565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b61451b81613dc5565b82525050565b600061452d8383614512565b60208301905092915050565b6000602082019050919050565b6000614551826144e6565b61455b81856144f1565b935061456683614502565b8060005b8381101561459757815161457e8882614521565b975061458983614539565b92505060018101905061456a565b5085935050505092915050565b600060208201905081810360008301526145be8184614546565b905092915050565b60008083601f8401126145dc576145db613f83565b5b8235905067ffffffffffffffff8111156145f9576145f8614222565b5b60208301915083602082028301111561461557614614614227565b5b9250929050565b60008083601f84011261463257614631613f83565b5b8235905067ffffffffffffffff81111561464f5761464e614222565b5b60208301915083602082028301111561466b5761466a614227565b5b9250929050565b6000806000806040858703121561468c5761468b613e03565b5b600085013567ffffffffffffffff8111156146aa576146a9613e08565b5b6146b6878288016145c6565b9450945050602085013567ffffffffffffffff8111156146d9576146d8613e08565b5b6146e58782880161461c565b925092505092959194509250565b6000806040838503121561470a57614709613e03565b5b6000614718858286016141cd565b925050602061472985828601614379565b9150509250929050565b6000806000806080858703121561474d5761474c613e03565b5b600061475b878288016141cd565b945050602061476c878288016141cd565b935050604061477d87828801614118565b925050606085013567ffffffffffffffff81111561479e5761479d613e08565b5b6147aa8782880161408a565b91505092959194509250565b600080604083850312156147cd576147cc613e03565b5b60006147db858286016141cd565b92505060206147ec858286016141cd565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061483d57607f821691505b60208210811415614851576148506147f6565b5b50919050565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b60006148b3602c83613ed3565b91506148be82614857565b604082019050919050565b600060208201905081810360008301526148e2816148a6565b9050919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b6000614945602183613ed3565b9150614950826148e9565b604082019050919050565b6000602082019050818103600083015261497481614938565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b60006149d7603883613ed3565b91506149e28261497b565b604082019050919050565b60006020820190508181036000830152614a06816149ca565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000614a43602083613ed3565b9150614a4e82614a0d565b602082019050919050565b60006020820190508181036000830152614a7281614a36565b9050919050565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b6000614ad5603183613ed3565b9150614ae082614a79565b604082019050919050565b60006020820190508181036000830152614b0481614ac8565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000614b4582613dc5565b9150614b5083613dc5565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614b8557614b84614b0b565b5b828201905092915050565b7f736f6c64206f7574000000000000000000000000000000000000000000000000600082015250565b6000614bc6600883613ed3565b9150614bd182614b90565b602082019050919050565b60006020820190508181036000830152614bf581614bb9565b9050919050565b7f436c61696d206f76657200000000000000000000000000000000000000000000600082015250565b6000614c32600a83613ed3565b9150614c3d82614bfc565b602082019050919050565b60006020820190508181036000830152614c6181614c25565b9050919050565b6000614c7382613dc5565b9150614c7e83613dc5565b925082821015614c9157614c90614b0b565b5b828203905092915050565b7f4f4e4c5920484f4c444552530000000000000000000000000000000000000000600082015250565b6000614cd2600c83613ed3565b9150614cdd82614c9c565b602082019050919050565b60006020820190508181036000830152614d0181614cc5565b9050919050565b7f436c61696d206973206e6f742061637469766500000000000000000000000000600082015250565b6000614d3e601383613ed3565b9150614d4982614d08565b602082019050919050565b60006020820190508181036000830152614d6d81614d31565b9050919050565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b6000614dd0602983613ed3565b9150614ddb82614d74565b604082019050919050565b60006020820190508181036000830152614dff81614dc3565b9050919050565b600081519050919050565b600081905092915050565b6000614e2782614e06565b614e318185614e11565b9350614e41818560208601613ee4565b80840191505092915050565b6000614e598284614e1c565b915081905092915050565b7f7469636b65742068617320616c7265616479206265656e207573656400000000600082015250565b6000614e9a601c83613ed3565b9150614ea582614e64565b602082019050919050565b60006020820190508181036000830152614ec981614e8d565b9050919050565b7f574c20617574686f72697a6174696f6e206661696c6564000000000000000000600082015250565b6000614f06601783613ed3565b9150614f1182614ed0565b602082019050919050565b60006020820190508181036000830152614f3581614ef9565b9050919050565b7f70726573616c65206973206e6f74206163746976650000000000000000000000600082015250565b6000614f72601583613ed3565b9150614f7d82614f3c565b602082019050919050565b60006020820190508181036000830152614fa181614f65565b9050919050565b7f54583a20717479206f66206d696e7473206e6f7420616c6c6f77656400000000600082015250565b6000614fde601c83613ed3565b9150614fe982614fa8565b602082019050919050565b6000602082019050818103600083015261500d81614fd1565b9050919050565b7f535550504c593a2056616c7565206578636565647320746f74616c537570706c60008201527f7900000000000000000000000000000000000000000000000000000000000000602082015250565b6000615070602183613ed3565b915061507b82615014565b604082019050919050565b6000602082019050818103600083015261509f81615063565b9050919050565b60006150b182613dc5565b91506150bc83613dc5565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156150f5576150f4614b0b565b5b828202905092915050565b7f5041594d454e543a20696e76616c69642076616c756500000000000000000000600082015250565b6000615136601683613ed3565b915061514182615100565b602082019050919050565b6000602082019050818103600083015261516581615129565b9050919050565b7f536f6c64206f7574000000000000000000000000000000000000000000000000600082015250565b60006151a2600883613ed3565b91506151ad8261516c565b602082019050919050565b600060208201905081810360008301526151d181615195565b9050919050565b60006040820190506151ed600083018561418c565b6151fa6020830184613dcf565b9392505050565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b600061525d602a83613ed3565b915061526882615201565b604082019050919050565b6000602082019050818103600083015261528c81615250565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60006152cd82613dc5565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415615300576152ff614b0b565b5b600182019050919050565b7f53616c65206973206e6f74206163746976650000000000000000000000000000600082015250565b6000615341601283613ed3565b915061534c8261530b565b602082019050919050565b6000602082019050818103600083015261537081615334565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006153d3602683613ed3565b91506153de82615377565b604082019050919050565b60006020820190508181036000830152615402816153c6565b9050919050565b7f45524337323155524953746f726167653a2055524920736574206f66206e6f6e60008201527f6578697374656e7420746f6b656e000000000000000000000000000000000000602082015250565b6000615465602e83613ed3565b915061547082615409565b604082019050919050565b6000602082019050818103600083015261549481615458565b9050919050565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b60006154f7602c83613ed3565b91506155028261549b565b604082019050919050565b60006020820190508181036000830152615526816154ea565b9050919050565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b6000615589602983613ed3565b91506155948261552d565b604082019050919050565b600060208201905081810360008301526155b88161557c565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b600061561b602483613ed3565b9150615626826155bf565b604082019050919050565b6000602082019050818103600083015261564a8161560e565b9050919050565b60008160601b9050919050565b600061566982615651565b9050919050565b600061567b8261565e565b9050919050565b61569361568e8261417a565b615670565b82525050565b60006156a58285614e1c565b91506156b18284615682565b6014820191508190509392505050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b60006156f7601983613ed3565b9150615702826156c1565b602082019050919050565b60006020820190508181036000830152615726816156ea565b9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b6000615789603283613ed3565b91506157948261572d565b604082019050919050565b600060208201905081810360008301526157b88161577c565b9050919050565b7f45524337323155524953746f726167653a2055524920717565727920666f722060008201527f6e6f6e6578697374656e7420746f6b656e000000000000000000000000000000602082015250565b600061581b603183613ed3565b9150615826826157bf565b604082019050919050565b6000602082019050818103600083015261584a8161580e565b9050919050565b600081905092915050565b600061586782613ec8565b6158718185615851565b9350615881818560208601613ee4565b80840191505092915050565b6000615899828561585c565b91506158a5828461585c565b91508190509392505050565b7f19457468657265756d205369676e6564204d6573736167653a0a333200000000600082015250565b60006158e7601c83615851565b91506158f2826158b1565b601c82019050919050565b6000819050919050565b6000819050919050565b61592261591d826158fd565b615907565b82525050565b6000615933826158da565b915061593f8284615911565b60208201915081905092915050565b600082825260208201905092915050565b600061596a82614e06565b615974818561594e565b9350615984818560208601613ee4565b61598d81613f17565b840191505092915050565b60006080820190506159ad600083018761418c565b6159ba602083018661418c565b6159c76040830185613dcf565b81810360608301526159d9818461595f565b905095945050505050565b6000815190506159f381613e39565b92915050565b600060208284031215615a0f57615a0e613e03565b5b6000615a1d848285016159e4565b91505092915050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b6000615a82602f83613ed3565b9150615a8d82615a26565b604082019050919050565b60006020820190508181036000830152615ab181615a75565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b7f45434453413a20696e76616c6964207369676e61747572650000000000000000600082015250565b6000615b1d601883613ed3565b9150615b2882615ae7565b602082019050919050565b60006020820190508181036000830152615b4c81615b10565b9050919050565b7f45434453413a20696e76616c6964207369676e6174757265206c656e67746800600082015250565b6000615b89601f83613ed3565b9150615b9482615b53565b602082019050919050565b60006020820190508181036000830152615bb881615b7c565b9050919050565b7f45434453413a20696e76616c6964207369676e6174757265202773272076616c60008201527f7565000000000000000000000000000000000000000000000000000000000000602082015250565b6000615c1b602283613ed3565b9150615c2682615bbf565b604082019050919050565b60006020820190508181036000830152615c4a81615c0e565b9050919050565b7f45434453413a20696e76616c6964207369676e6174757265202776272076616c60008201527f7565000000000000000000000000000000000000000000000000000000000000602082015250565b6000615cad602283613ed3565b9150615cb882615c51565b604082019050919050565b60006020820190508181036000830152615cdc81615ca0565b9050919050565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b6000615d19602083613ed3565b9150615d2482615ce3565b602082019050919050565b60006020820190508181036000830152615d4881615d0c565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b6000615d85601c83613ed3565b9150615d9082615d4f565b602082019050919050565b60006020820190508181036000830152615db481615d78565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000615df582613dc5565b9150615e0083613dc5565b925082615e1057615e0f615dbb565b5b828204905092915050565b6000615e2682613dc5565b9150615e3183613dc5565b925082615e4157615e40615dbb565b5b828206905092915050565b615e55816158fd565b82525050565b600060ff82169050919050565b615e7181615e5b565b82525050565b6000608082019050615e8c6000830187615e4c565b615e996020830186615e68565b615ea66040830185615e4c565b615eb36060830184615e4c565b9594505050505056fea26469706673582212203e7910e93ca7571a0ba6e9171685ffbbd40a48643881364d84473a807666338b64736f6c63430008090033

Deployed Bytecode

0x6080604052600436106102925760003560e01c806368428a1b1161015a578063a1448194116100c1578063bc3371821161007a578063bc337182146109a2578063c87b56dd146109cb578063d4a6a2fd14610a08578063d96a094a14610a33578063e985e9c514610a4f578063f2fde38b14610a8c57610292565b8063a1448194146108bc578063a22cb465146108e5578063ac568e841461090e578063affed0e014610937578063b88d4fde14610962578063bb51f32d1461098b57610292565b80637d4437c0116101135780637d4437c0146107c0578063841718a6146107e95780638da5cb5b1461081257806391b7f5ed1461083d57806395d89b4114610866578063a035b1fe1461089157610292565b806368428a1b146106b05780636970bb0a146106db57806370a0823114610718578063715018a61461075557806373417b091461076c5780637437681e1461079557610292565b806323b872dd116101fe57806342842e0e116101b757806342842e0e146105c15780634e71d92d146105ea57806353135ca0146106015780635b7633d01461062c5780636352211e14610657578063652567671461069457610292565b806323b872dd146104dd5780632a3e67fc1461050657806330176e131461052f5780633549345e146105585780633ccfd60b146105815780633f8121a21461059857610292565b8063095ea7b311610250578063095ea7b3146103cf5780630ad29ec3146103f8578063162094c41461042357806318160ddd1461044c57806318a5bbdc1461047757806322e8d8cd146104b457610292565b80620e7fa81461029757806301ffc9a7146102c2578063045b7dca146102ff57806306fdde031461032a5780630801dded14610355578063081812fc14610392575b600080fd5b3480156102a357600080fd5b506102ac610ab5565b6040516102b99190613dde565b60405180910390f35b3480156102ce57600080fd5b506102e960048036038101906102e49190613e65565b610abb565b6040516102f69190613ead565b60405180910390f35b34801561030b57600080fd5b50610314610b9d565b6040516103219190613dde565b60405180910390f35b34801561033657600080fd5b5061033f610ba3565b60405161034c9190613f61565b60405180910390f35b34801561036157600080fd5b5061037c600480360381019061037791906140b8565b610c35565b6040516103899190613ead565b60405180910390f35b34801561039e57600080fd5b506103b960048036038101906103b4919061412d565b610c6b565b6040516103c6919061419b565b60405180910390f35b3480156103db57600080fd5b506103f660048036038101906103f191906141e2565b610cf0565b005b34801561040457600080fd5b5061040d610e08565b60405161041a9190613dde565b60405180910390f35b34801561042f57600080fd5b5061044a60048036038101906104459190614282565b610e0e565b005b34801561045857600080fd5b50610461610edd565b60405161046e9190613dde565b60405180910390f35b34801561048357600080fd5b5061049e600480360381019061049991906142e2565b610ee3565b6040516104ab9190613dde565b60405180910390f35b3480156104c057600080fd5b506104db60048036038101906104d6919061412d565b610efb565b005b3480156104e957600080fd5b5061050460048036038101906104ff919061430f565b610f81565b005b34801561051257600080fd5b5061052d6004803603810190610528919061438e565b610fe1565b005b34801561053b57600080fd5b50610556600480360381019061055191906143e1565b611123565b005b34801561056457600080fd5b5061057f600480360381019061057a919061412d565b6111b5565b005b34801561058d57600080fd5b5061059661123b565b005b3480156105a457600080fd5b506105bf60048036038101906105ba919061442e565b611307565b005b3480156105cd57600080fd5b506105e860048036038101906105e3919061430f565b6113a0565b005b3480156105f657600080fd5b506105ff6113c0565b005b34801561060d57600080fd5b506106166115f3565b6040516106239190613ead565b60405180910390f35b34801561063857600080fd5b50610641611606565b60405161064e919061419b565b60405180910390f35b34801561066357600080fd5b5061067e6004803603810190610679919061412d565b61162c565b60405161068b919061419b565b60405180910390f35b6106ae60048036038101906106a9919061445b565b6116de565b005b3480156106bc57600080fd5b506106c56119e2565b6040516106d29190613ead565b60405180910390f35b3480156106e757600080fd5b5061070260048036038101906106fd91906142e2565b6119f5565b60405161070f91906145a4565b60405180910390f35b34801561072457600080fd5b5061073f600480360381019061073a91906142e2565b611a8c565b60405161074c9190613dde565b60405180910390f35b34801561076157600080fd5b5061076a611b44565b005b34801561077857600080fd5b50610793600480360381019061078e919061442e565b611bcc565b005b3480156107a157600080fd5b506107aa611c65565b6040516107b79190613dde565b60405180910390f35b3480156107cc57600080fd5b506107e760048036038101906107e29190614672565b611c6b565b005b3480156107f557600080fd5b50610810600480360381019061080b919061442e565b611d93565b005b34801561081e57600080fd5b50610827611e2c565b604051610834919061419b565b60405180910390f35b34801561084957600080fd5b50610864600480360381019061085f919061412d565b611e56565b005b34801561087257600080fd5b5061087b611edc565b6040516108889190613f61565b60405180910390f35b34801561089d57600080fd5b506108a6611f6e565b6040516108b39190613dde565b60405180910390f35b3480156108c857600080fd5b506108e360048036038101906108de91906141e2565b611f74565b005b3480156108f157600080fd5b5061090c600480360381019061090791906146f3565b611ffe565b005b34801561091a57600080fd5b506109356004803603810190610930919061412d565b612014565b005b34801561094357600080fd5b5061094c61209a565b6040516109599190613dde565b60405180910390f35b34801561096e57600080fd5b5061098960048036038101906109849190614733565b6120a0565b005b34801561099757600080fd5b506109a0612102565b005b3480156109ae57600080fd5b506109c960048036038101906109c4919061412d565b6121db565b005b3480156109d757600080fd5b506109f260048036038101906109ed919061412d565b612261565b6040516109ff9190613f61565b60405180910390f35b348015610a1457600080fd5b50610a1d612273565b604051610a2a9190613ead565b60405180910390f35b610a4d6004803603810190610a48919061412d565b612286565b005b348015610a5b57600080fd5b50610a766004803603810190610a7191906147b6565b612478565b604051610a839190613ead565b60405180910390f35b348015610a9857600080fd5b50610ab36004803603810190610aae91906142e2565b61250c565b005b60095481565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610b8657507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610b965750610b9582612604565b5b9050919050565b600c5481565b606060008054610bb290614825565b80601f0160208091040260200160405190810160405280929190818152602001828054610bde90614825565b8015610c2b5780601f10610c0057610100808354040283529160200191610c2b565b820191906000526020600020905b815481529060010190602001808311610c0e57829003601f168201915b5050505050905090565b6014818051602081018201805184825260208301602085012081835280955050505050506000915054906101000a900460ff1681565b6000610c768261266e565b610cb5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cac906148c9565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610cfb8261162c565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610d6c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d639061495b565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610d8b6126da565b73ffffffffffffffffffffffffffffffffffffffff161480610dba5750610db981610db46126da565b612478565b5b610df9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610df0906149ed565b60405180910390fd5b610e0383836126e2565b505050565b600d5481565b610e166126da565b73ffffffffffffffffffffffffffffffffffffffff16610e34611e2c565b73ffffffffffffffffffffffffffffffffffffffff1614610e8a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e8190614a59565b60405180910390fd5b610ed88383838080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f8201169050808301925050505050505061279b565b505050565b600b5481565b60126020528060005260406000206000915090505481565b610f036126da565b73ffffffffffffffffffffffffffffffffffffffff16610f21611e2c565b73ffffffffffffffffffffffffffffffffffffffff1614610f77576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f6e90614a59565b60405180910390fd5b80600d8190555050565b610f92610f8c6126da565b8261280f565b610fd1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fc890614aeb565b60405180910390fd5b610fdc8383836128ed565b505050565b610fe96126da565b73ffffffffffffffffffffffffffffffffffffffff16611007611e2c565b73ffffffffffffffffffffffffffffffffffffffff161461105d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161105490614a59565b60405180910390fd5b600b5482600e5461106e9190614b3a565b11156110af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110a690614bdc565b60405180910390fd5b80156111145781600d5410156110fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110f190614c48565b60405180910390fd5b81600d600082825461110c9190614c68565b925050819055505b61111e8383612b49565b505050565b61112b6126da565b73ffffffffffffffffffffffffffffffffffffffff16611149611e2c565b73ffffffffffffffffffffffffffffffffffffffff161461119f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161119690614a59565b60405180910390fd5b8181600891906111b0929190613c9c565b505050565b6111bd6126da565b73ffffffffffffffffffffffffffffffffffffffff166111db611e2c565b73ffffffffffffffffffffffffffffffffffffffff1614611231576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161122890614a59565b60405180910390fd5b8060098190555050565b6112436126da565b73ffffffffffffffffffffffffffffffffffffffff16611261611e2c565b73ffffffffffffffffffffffffffffffffffffffff16146112b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112ae90614a59565b60405180910390fd5b6112bf6126da565b73ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015611304573d6000803e3d6000fd5b50565b61130f6126da565b73ffffffffffffffffffffffffffffffffffffffff1661132d611e2c565b73ffffffffffffffffffffffffffffffffffffffff1614611383576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161137a90614a59565b60405180910390fd5b80600760146101000a81548160ff02191690831515021790555050565b6113bb838383604051806020016040528060008152506120a0565b505050565b6000601260006113ce6126da565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205411611449576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161144090614ce8565b60405180910390fd5b600760169054906101000a900460ff16611498576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161148f90614d54565b60405180910390fd5b6000601260006114a66126da565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905080600d541015611528576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161151f90614c48565b60405180910390fd5b600b5481600e546115399190614b3a565b111561157a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161157190614bdc565b60405180910390fd5b6000601260006115886126da565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555080600d60008282546115d89190614c68565b925050819055506115f06115ea6126da565b82612b49565b50565b600760149054906101000a900460ff1681565b601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156116d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116cc90614de6565b60405180910390fd5b80915050919050565b6014836040516116ee9190614e4d565b908152602001604051809103902060009054906101000a900460ff161561174a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161174190614eb0565b60405180910390fd5b611778338484601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16612b90565b6117b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117ae90614f1c565b60405180910390fd5b600760149054906101000a900460ff16611806576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117fd90614f88565b60405180910390fd5b600f54811115806118175750600181105b611856576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161184d90614ff4565b60405180910390fd5b600b54600e54826118679190614b3a565b11156118a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161189f90615086565b60405180910390fd5b806009546118b691906150a6565b34146118f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118ee9061514c565b60405180910390fd5b80600c54101561193c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611933906151b8565b60405180910390fd5b80600c600082825461194e9190614c68565b925050819055506119666119606126da565b82612b49565b7f0f6798a560793a54c3bcfe86a93cde1e73087d944c0ea20544137d412139688561198f6126da565b8260405161199e9291906151d8565b60405180910390a160016014846040516119b89190614e4d565b908152602001604051809103902060006101000a81548160ff021916908315150217905550505050565b600760159054906101000a900460ff1681565b6060601160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020805480602002602001604051908101604052809291908181526020018280548015611a8057602002820191906000526020600020905b815481526020019060010190808311611a6c575b50505050509050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611afd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611af490615273565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611b4c6126da565b73ffffffffffffffffffffffffffffffffffffffff16611b6a611e2c565b73ffffffffffffffffffffffffffffffffffffffff1614611bc0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bb790614a59565b60405180910390fd5b611bca6000612c18565b565b611bd46126da565b73ffffffffffffffffffffffffffffffffffffffff16611bf2611e2c565b73ffffffffffffffffffffffffffffffffffffffff1614611c48576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c3f90614a59565b60405180910390fd5b80600760166101000a81548160ff02191690831515021790555050565b600f5481565b611c736126da565b73ffffffffffffffffffffffffffffffffffffffff16611c91611e2c565b73ffffffffffffffffffffffffffffffffffffffff1614611ce7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cde90614a59565b60405180910390fd5b60005b84849050811015611d8c57828282818110611d0857611d07615293565b5b9050602002013560126000878785818110611d2657611d25615293565b5b9050602002016020810190611d3b91906142e2565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508080611d84906152c2565b915050611cea565b5050505050565b611d9b6126da565b73ffffffffffffffffffffffffffffffffffffffff16611db9611e2c565b73ffffffffffffffffffffffffffffffffffffffff1614611e0f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e0690614a59565b60405180910390fd5b80600760156101000a81548160ff02191690831515021790555050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611e5e6126da565b73ffffffffffffffffffffffffffffffffffffffff16611e7c611e2c565b73ffffffffffffffffffffffffffffffffffffffff1614611ed2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ec990614a59565b60405180910390fd5b80600a8190555050565b606060018054611eeb90614825565b80601f0160208091040260200160405190810160405280929190818152602001828054611f1790614825565b8015611f645780601f10611f3957610100808354040283529160200191611f64565b820191906000526020600020905b815481529060010190602001808311611f4757829003601f168201915b5050505050905090565b600a5481565b611f7c6126da565b73ffffffffffffffffffffffffffffffffffffffff16611f9a611e2c565b73ffffffffffffffffffffffffffffffffffffffff1614611ff0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fe790614a59565b60405180910390fd5b611ffa8282612cde565b5050565b6120106120096126da565b8383612cfc565b5050565b61201c6126da565b73ffffffffffffffffffffffffffffffffffffffff1661203a611e2c565b73ffffffffffffffffffffffffffffffffffffffff1614612090576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161208790614a59565b60405180910390fd5b80600c8190555050565b600e5481565b6120b16120ab6126da565b8361280f565b6120f0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120e790614aeb565b60405180910390fd5b6120fc84848484612e69565b50505050565b61210a6126da565b73ffffffffffffffffffffffffffffffffffffffff16612128611e2c565b73ffffffffffffffffffffffffffffffffffffffff161461217e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161217590614a59565b60405180910390fd5b739612460dc35a7261c6fdb193a722cfb2da2e5b3c73ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f193505050501580156121d8573d6000803e3d6000fd5b50565b6121e36126da565b73ffffffffffffffffffffffffffffffffffffffff16612201611e2c565b73ffffffffffffffffffffffffffffffffffffffff1614612257576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161224e90614a59565b60405180910390fd5b80600f8190555050565b606061226c82612ec5565b9050919050565b600760169054906101000a900460ff1681565b600760159054906101000a900460ff166122d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122cc90615357565b60405180910390fd5b600f54811115806122e65750600181105b612325576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161231c90614ff4565b60405180910390fd5b600b54600e54826123369190614b3a565b1115612377576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161236e90615086565b60405180910390fd5b80600a5461238591906150a6565b34146123c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123bd9061514c565b60405180910390fd5b80600c54101561240b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612402906151b8565b60405180910390fd5b80600c600082825461241d9190614c68565b9250508190555061243561242f6126da565b82612b49565b7f0f6798a560793a54c3bcfe86a93cde1e73087d944c0ea20544137d412139688561245e6126da565b8260405161246d9291906151d8565b60405180910390a150565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6125146126da565b73ffffffffffffffffffffffffffffffffffffffff16612532611e2c565b73ffffffffffffffffffffffffffffffffffffffff1614612588576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161257f90614a59565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156125f8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125ef906153e9565b60405180910390fd5b61260181612c18565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166127558361162c565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6127a48261266e565b6127e3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127da9061547b565b60405180910390fd5b8060066000848152602001908152602001600020908051906020019061280a929190613d22565b505050565b600061281a8261266e565b612859576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128509061550d565b60405180910390fd5b60006128648361162c565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806128d357508373ffffffffffffffffffffffffffffffffffffffff166128bb84610c6b565b73ffffffffffffffffffffffffffffffffffffffff16145b806128e457506128e38185612478565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661290d8261162c565b73ffffffffffffffffffffffffffffffffffffffff1614612963576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161295a9061559f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156129d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129ca90615631565b60405180910390fd5b6129de838383613017565b6129e96000826126e2565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612a399190614c68565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612a909190614b3a565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b60005b81811015612b8b57600e6000815480929190612b67906152c2565b9190505550612b7883600e54612cde565b8080612b83906152c2565b915050612b4c565b505050565b6000808486604051602001612ba6929190615699565b6040516020818303038152906040528051906020012090506000612bc982613225565b9050612bde858261325590919063ffffffff16565b73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161492505050949350505050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612cf882826040518060200160405280600081525061327c565b5050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612d6b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d629061570d565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051612e5c9190613ead565b60405180910390a3505050565b612e748484846128ed565b612e80848484846132d7565b612ebf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612eb69061579f565b60405180910390fd5b50505050565b6060612ed08261266e565b612f0f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f0690615831565b60405180910390fd5b6000600660008481526020019081526020016000208054612f2f90614825565b80601f0160208091040260200160405190810160405280929190818152602001828054612f5b90614825565b8015612fa85780601f10612f7d57610100808354040283529160200191612fa8565b820191906000526020600020905b815481529060010190602001808311612f8b57829003601f168201915b505050505090506000612fb961346e565b9050600081511415612fcf578192505050613012565b600082511115613004578082604051602001612fec92919061588d565b60405160208183030381529060405292505050613012565b61300d84613500565b925050505b919050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614613185576000601160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208054806020026020016040519081016040528092919081815260200182805480156130d657602002820191906000526020600020905b8154815260200190600101908083116130c2575b5050505050905060005b815181101561318257828282815181106130fd576130fc615293565b5b6020026020010151141561316f57601160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020818154811061315c5761315b615293565b5b9060005260206000200160009055613182565b808061317a906152c2565b9150506130e0565b50505b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161461322057601160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190806001815401808255809150506001900390600052602060002001600090919091909150555b505050565b6000816040516020016132389190615928565b604051602081830303815290604052805190602001209050919050565b600080600061326485856135a7565b915091506132718161362a565b819250505092915050565b61328683836137ff565b61329360008484846132d7565b6132d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016132c99061579f565b60405180910390fd5b505050565b60006132f88473ffffffffffffffffffffffffffffffffffffffff166139cd565b15613461578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026133216126da565b8786866040518563ffffffff1660e01b81526004016133439493929190615998565b602060405180830381600087803b15801561335d57600080fd5b505af192505050801561338e57506040513d601f19601f8201168201806040525081019061338b91906159f9565b60015b613411573d80600081146133be576040519150601f19603f3d011682016040523d82523d6000602084013e6133c3565b606091505b50600081511415613409576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016134009061579f565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050613466565b600190505b949350505050565b60606008805461347d90614825565b80601f01602080910402602001604051908101604052809291908181526020018280546134a990614825565b80156134f65780601f106134cb576101008083540402835291602001916134f6565b820191906000526020600020905b8154815290600101906020018083116134d957829003601f168201915b5050505050905090565b606061350b8261266e565b61354a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161354190615a98565b60405180910390fd5b600061355461346e565b90506000815111613574576040518060200160405280600081525061359f565b8061357e846139e0565b60405160200161358f92919061588d565b6040516020818303038152906040525b915050919050565b6000806041835114156135e95760008060006020860151925060408601519150606086015160001a90506135dd87828585613b41565b94509450505050613623565b60408351141561361a57600080602085015191506040850151905061360f868383613c4e565b935093505050613623565b60006002915091505b9250929050565b6000600481111561363e5761363d615ab8565b5b81600481111561365157613650615ab8565b5b141561365c576137fc565b600160048111156136705761366f615ab8565b5b81600481111561368357613682615ab8565b5b14156136c4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016136bb90615b33565b60405180910390fd5b600260048111156136d8576136d7615ab8565b5b8160048111156136eb576136ea615ab8565b5b141561372c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161372390615b9f565b60405180910390fd5b600360048111156137405761373f615ab8565b5b81600481111561375357613752615ab8565b5b1415613794576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161378b90615c31565b60405180910390fd5b6004808111156137a7576137a6615ab8565b5b8160048111156137ba576137b9615ab8565b5b14156137fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016137f290615cc3565b60405180910390fd5b5b50565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561386f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161386690615d2f565b60405180910390fd5b6138788161266e565b156138b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016138af90615d9b565b60405180910390fd5b6138c460008383613017565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546139149190614b3a565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b60606000821415613a28576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050613b3c565b600082905060005b60008214613a5a578080613a43906152c2565b915050600a82613a539190615dea565b9150613a30565b60008167ffffffffffffffff811115613a7657613a75613f8d565b5b6040519080825280601f01601f191660200182016040528015613aa85781602001600182028036833780820191505090505b5090505b60008514613b3557600182613ac19190614c68565b9150600a85613ad09190615e1b565b6030613adc9190614b3a565b60f81b818381518110613af257613af1615293565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85613b2e9190615dea565b9450613aac565b8093505050505b919050565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a08360001c1115613b7c576000600391509150613c45565b601b8560ff1614158015613b945750601c8560ff1614155b15613ba6576000600491509150613c45565b600060018787878760405160008152602001604052604051613bcb9493929190615e77565b6020604051602081039080840390855afa158015613bed573d6000803e3d6000fd5b505050602060405103519050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415613c3c57600060019250925050613c45565b80600092509250505b94509492505050565b6000806000807f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff85169150601b8560ff1c019050613c8e87828885613b41565b935093505050935093915050565b828054613ca890614825565b90600052602060002090601f016020900481019282613cca5760008555613d11565b82601f10613ce357803560ff1916838001178555613d11565b82800160010185558215613d11579182015b82811115613d10578235825591602001919060010190613cf5565b5b509050613d1e9190613da8565b5090565b828054613d2e90614825565b90600052602060002090601f016020900481019282613d505760008555613d97565b82601f10613d6957805160ff1916838001178555613d97565b82800160010185558215613d97579182015b82811115613d96578251825591602001919060010190613d7b565b5b509050613da49190613da8565b5090565b5b80821115613dc1576000816000905550600101613da9565b5090565b6000819050919050565b613dd881613dc5565b82525050565b6000602082019050613df36000830184613dcf565b92915050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b613e4281613e0d565b8114613e4d57600080fd5b50565b600081359050613e5f81613e39565b92915050565b600060208284031215613e7b57613e7a613e03565b5b6000613e8984828501613e50565b91505092915050565b60008115159050919050565b613ea781613e92565b82525050565b6000602082019050613ec26000830184613e9e565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015613f02578082015181840152602081019050613ee7565b83811115613f11576000848401525b50505050565b6000601f19601f8301169050919050565b6000613f3382613ec8565b613f3d8185613ed3565b9350613f4d818560208601613ee4565b613f5681613f17565b840191505092915050565b60006020820190508181036000830152613f7b8184613f28565b905092915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b613fc582613f17565b810181811067ffffffffffffffff82111715613fe457613fe3613f8d565b5b80604052505050565b6000613ff7613df9565b90506140038282613fbc565b919050565b600067ffffffffffffffff82111561402357614022613f8d565b5b61402c82613f17565b9050602081019050919050565b82818337600083830152505050565b600061405b61405684614008565b613fed565b90508281526020810184848401111561407757614076613f88565b5b614082848285614039565b509392505050565b600082601f83011261409f5761409e613f83565b5b81356140af848260208601614048565b91505092915050565b6000602082840312156140ce576140cd613e03565b5b600082013567ffffffffffffffff8111156140ec576140eb613e08565b5b6140f88482850161408a565b91505092915050565b61410a81613dc5565b811461411557600080fd5b50565b60008135905061412781614101565b92915050565b60006020828403121561414357614142613e03565b5b600061415184828501614118565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006141858261415a565b9050919050565b6141958161417a565b82525050565b60006020820190506141b0600083018461418c565b92915050565b6141bf8161417a565b81146141ca57600080fd5b50565b6000813590506141dc816141b6565b92915050565b600080604083850312156141f9576141f8613e03565b5b6000614207858286016141cd565b925050602061421885828601614118565b9150509250929050565b600080fd5b600080fd5b60008083601f84011261424257614241613f83565b5b8235905067ffffffffffffffff81111561425f5761425e614222565b5b60208301915083600182028301111561427b5761427a614227565b5b9250929050565b60008060006040848603121561429b5761429a613e03565b5b60006142a986828701614118565b935050602084013567ffffffffffffffff8111156142ca576142c9613e08565b5b6142d68682870161422c565b92509250509250925092565b6000602082840312156142f8576142f7613e03565b5b6000614306848285016141cd565b91505092915050565b60008060006060848603121561432857614327613e03565b5b6000614336868287016141cd565b9350506020614347868287016141cd565b925050604061435886828701614118565b9150509250925092565b61436b81613e92565b811461437657600080fd5b50565b60008135905061438881614362565b92915050565b6000806000606084860312156143a7576143a6613e03565b5b60006143b5868287016141cd565b93505060206143c686828701614118565b92505060406143d786828701614379565b9150509250925092565b600080602083850312156143f8576143f7613e03565b5b600083013567ffffffffffffffff81111561441657614415613e08565b5b6144228582860161422c565b92509250509250929050565b60006020828403121561444457614443613e03565b5b600061445284828501614379565b91505092915050565b60008060006060848603121561447457614473613e03565b5b600084013567ffffffffffffffff81111561449257614491613e08565b5b61449e8682870161408a565b935050602084013567ffffffffffffffff8111156144bf576144be613e08565b5b6144cb8682870161408a565b92505060406144dc86828701614118565b9150509250925092565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b61451b81613dc5565b82525050565b600061452d8383614512565b60208301905092915050565b6000602082019050919050565b6000614551826144e6565b61455b81856144f1565b935061456683614502565b8060005b8381101561459757815161457e8882614521565b975061458983614539565b92505060018101905061456a565b5085935050505092915050565b600060208201905081810360008301526145be8184614546565b905092915050565b60008083601f8401126145dc576145db613f83565b5b8235905067ffffffffffffffff8111156145f9576145f8614222565b5b60208301915083602082028301111561461557614614614227565b5b9250929050565b60008083601f84011261463257614631613f83565b5b8235905067ffffffffffffffff81111561464f5761464e614222565b5b60208301915083602082028301111561466b5761466a614227565b5b9250929050565b6000806000806040858703121561468c5761468b613e03565b5b600085013567ffffffffffffffff8111156146aa576146a9613e08565b5b6146b6878288016145c6565b9450945050602085013567ffffffffffffffff8111156146d9576146d8613e08565b5b6146e58782880161461c565b925092505092959194509250565b6000806040838503121561470a57614709613e03565b5b6000614718858286016141cd565b925050602061472985828601614379565b9150509250929050565b6000806000806080858703121561474d5761474c613e03565b5b600061475b878288016141cd565b945050602061476c878288016141cd565b935050604061477d87828801614118565b925050606085013567ffffffffffffffff81111561479e5761479d613e08565b5b6147aa8782880161408a565b91505092959194509250565b600080604083850312156147cd576147cc613e03565b5b60006147db858286016141cd565b92505060206147ec858286016141cd565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061483d57607f821691505b60208210811415614851576148506147f6565b5b50919050565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b60006148b3602c83613ed3565b91506148be82614857565b604082019050919050565b600060208201905081810360008301526148e2816148a6565b9050919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b6000614945602183613ed3565b9150614950826148e9565b604082019050919050565b6000602082019050818103600083015261497481614938565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b60006149d7603883613ed3565b91506149e28261497b565b604082019050919050565b60006020820190508181036000830152614a06816149ca565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000614a43602083613ed3565b9150614a4e82614a0d565b602082019050919050565b60006020820190508181036000830152614a7281614a36565b9050919050565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b6000614ad5603183613ed3565b9150614ae082614a79565b604082019050919050565b60006020820190508181036000830152614b0481614ac8565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000614b4582613dc5565b9150614b5083613dc5565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614b8557614b84614b0b565b5b828201905092915050565b7f736f6c64206f7574000000000000000000000000000000000000000000000000600082015250565b6000614bc6600883613ed3565b9150614bd182614b90565b602082019050919050565b60006020820190508181036000830152614bf581614bb9565b9050919050565b7f436c61696d206f76657200000000000000000000000000000000000000000000600082015250565b6000614c32600a83613ed3565b9150614c3d82614bfc565b602082019050919050565b60006020820190508181036000830152614c6181614c25565b9050919050565b6000614c7382613dc5565b9150614c7e83613dc5565b925082821015614c9157614c90614b0b565b5b828203905092915050565b7f4f4e4c5920484f4c444552530000000000000000000000000000000000000000600082015250565b6000614cd2600c83613ed3565b9150614cdd82614c9c565b602082019050919050565b60006020820190508181036000830152614d0181614cc5565b9050919050565b7f436c61696d206973206e6f742061637469766500000000000000000000000000600082015250565b6000614d3e601383613ed3565b9150614d4982614d08565b602082019050919050565b60006020820190508181036000830152614d6d81614d31565b9050919050565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b6000614dd0602983613ed3565b9150614ddb82614d74565b604082019050919050565b60006020820190508181036000830152614dff81614dc3565b9050919050565b600081519050919050565b600081905092915050565b6000614e2782614e06565b614e318185614e11565b9350614e41818560208601613ee4565b80840191505092915050565b6000614e598284614e1c565b915081905092915050565b7f7469636b65742068617320616c7265616479206265656e207573656400000000600082015250565b6000614e9a601c83613ed3565b9150614ea582614e64565b602082019050919050565b60006020820190508181036000830152614ec981614e8d565b9050919050565b7f574c20617574686f72697a6174696f6e206661696c6564000000000000000000600082015250565b6000614f06601783613ed3565b9150614f1182614ed0565b602082019050919050565b60006020820190508181036000830152614f3581614ef9565b9050919050565b7f70726573616c65206973206e6f74206163746976650000000000000000000000600082015250565b6000614f72601583613ed3565b9150614f7d82614f3c565b602082019050919050565b60006020820190508181036000830152614fa181614f65565b9050919050565b7f54583a20717479206f66206d696e7473206e6f7420616c6c6f77656400000000600082015250565b6000614fde601c83613ed3565b9150614fe982614fa8565b602082019050919050565b6000602082019050818103600083015261500d81614fd1565b9050919050565b7f535550504c593a2056616c7565206578636565647320746f74616c537570706c60008201527f7900000000000000000000000000000000000000000000000000000000000000602082015250565b6000615070602183613ed3565b915061507b82615014565b604082019050919050565b6000602082019050818103600083015261509f81615063565b9050919050565b60006150b182613dc5565b91506150bc83613dc5565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156150f5576150f4614b0b565b5b828202905092915050565b7f5041594d454e543a20696e76616c69642076616c756500000000000000000000600082015250565b6000615136601683613ed3565b915061514182615100565b602082019050919050565b6000602082019050818103600083015261516581615129565b9050919050565b7f536f6c64206f7574000000000000000000000000000000000000000000000000600082015250565b60006151a2600883613ed3565b91506151ad8261516c565b602082019050919050565b600060208201905081810360008301526151d181615195565b9050919050565b60006040820190506151ed600083018561418c565b6151fa6020830184613dcf565b9392505050565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b600061525d602a83613ed3565b915061526882615201565b604082019050919050565b6000602082019050818103600083015261528c81615250565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60006152cd82613dc5565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415615300576152ff614b0b565b5b600182019050919050565b7f53616c65206973206e6f74206163746976650000000000000000000000000000600082015250565b6000615341601283613ed3565b915061534c8261530b565b602082019050919050565b6000602082019050818103600083015261537081615334565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006153d3602683613ed3565b91506153de82615377565b604082019050919050565b60006020820190508181036000830152615402816153c6565b9050919050565b7f45524337323155524953746f726167653a2055524920736574206f66206e6f6e60008201527f6578697374656e7420746f6b656e000000000000000000000000000000000000602082015250565b6000615465602e83613ed3565b915061547082615409565b604082019050919050565b6000602082019050818103600083015261549481615458565b9050919050565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b60006154f7602c83613ed3565b91506155028261549b565b604082019050919050565b60006020820190508181036000830152615526816154ea565b9050919050565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b6000615589602983613ed3565b91506155948261552d565b604082019050919050565b600060208201905081810360008301526155b88161557c565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b600061561b602483613ed3565b9150615626826155bf565b604082019050919050565b6000602082019050818103600083015261564a8161560e565b9050919050565b60008160601b9050919050565b600061566982615651565b9050919050565b600061567b8261565e565b9050919050565b61569361568e8261417a565b615670565b82525050565b60006156a58285614e1c565b91506156b18284615682565b6014820191508190509392505050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b60006156f7601983613ed3565b9150615702826156c1565b602082019050919050565b60006020820190508181036000830152615726816156ea565b9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b6000615789603283613ed3565b91506157948261572d565b604082019050919050565b600060208201905081810360008301526157b88161577c565b9050919050565b7f45524337323155524953746f726167653a2055524920717565727920666f722060008201527f6e6f6e6578697374656e7420746f6b656e000000000000000000000000000000602082015250565b600061581b603183613ed3565b9150615826826157bf565b604082019050919050565b6000602082019050818103600083015261584a8161580e565b9050919050565b600081905092915050565b600061586782613ec8565b6158718185615851565b9350615881818560208601613ee4565b80840191505092915050565b6000615899828561585c565b91506158a5828461585c565b91508190509392505050565b7f19457468657265756d205369676e6564204d6573736167653a0a333200000000600082015250565b60006158e7601c83615851565b91506158f2826158b1565b601c82019050919050565b6000819050919050565b6000819050919050565b61592261591d826158fd565b615907565b82525050565b6000615933826158da565b915061593f8284615911565b60208201915081905092915050565b600082825260208201905092915050565b600061596a82614e06565b615974818561594e565b9350615984818560208601613ee4565b61598d81613f17565b840191505092915050565b60006080820190506159ad600083018761418c565b6159ba602083018661418c565b6159c76040830185613dcf565b81810360608301526159d9818461595f565b905095945050505050565b6000815190506159f381613e39565b92915050565b600060208284031215615a0f57615a0e613e03565b5b6000615a1d848285016159e4565b91505092915050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b6000615a82602f83613ed3565b9150615a8d82615a26565b604082019050919050565b60006020820190508181036000830152615ab181615a75565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b7f45434453413a20696e76616c6964207369676e61747572650000000000000000600082015250565b6000615b1d601883613ed3565b9150615b2882615ae7565b602082019050919050565b60006020820190508181036000830152615b4c81615b10565b9050919050565b7f45434453413a20696e76616c6964207369676e6174757265206c656e67746800600082015250565b6000615b89601f83613ed3565b9150615b9482615b53565b602082019050919050565b60006020820190508181036000830152615bb881615b7c565b9050919050565b7f45434453413a20696e76616c6964207369676e6174757265202773272076616c60008201527f7565000000000000000000000000000000000000000000000000000000000000602082015250565b6000615c1b602283613ed3565b9150615c2682615bbf565b604082019050919050565b60006020820190508181036000830152615c4a81615c0e565b9050919050565b7f45434453413a20696e76616c6964207369676e6174757265202776272076616c60008201527f7565000000000000000000000000000000000000000000000000000000000000602082015250565b6000615cad602283613ed3565b9150615cb882615c51565b604082019050919050565b60006020820190508181036000830152615cdc81615ca0565b9050919050565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b6000615d19602083613ed3565b9150615d2482615ce3565b602082019050919050565b60006020820190508181036000830152615d4881615d0c565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b6000615d85601c83613ed3565b9150615d9082615d4f565b602082019050919050565b60006020820190508181036000830152615db481615d78565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000615df582613dc5565b9150615e0083613dc5565b925082615e1057615e0f615dbb565b5b828204905092915050565b6000615e2682613dc5565b9150615e3183613dc5565b925082615e4157615e40615dbb565b5b828206905092915050565b615e55816158fd565b82525050565b600060ff82169050919050565b615e7181615e5b565b82525050565b6000608082019050615e8c6000830187615e4c565b615e996020830186615e68565b615ea66040830185615e4c565b615eb36060830184615e4c565b9594505050505056fea26469706673582212203e7910e93ca7571a0ba6e9171685ffbbd40a48643881364d84473a807666338b64736f6c63430008090033

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.