ETH Price: $2,666.87 (+2.32%)

Token

Streetsof (STREETSOF)
 

Overview

Max Total Supply

420 STREETSOF

Holders

396

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 STREETSOF
0x72411619a06651792c506aa9286b26eab15e3af3
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:
Streetsof

Compiler Version
v0.8.14+commit.80d49f37

Optimization Enabled:
No with 200 runs

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

import '@openzeppelin/contracts/token/ERC20/IERC20.sol';
import '@openzeppelin/contracts/access/Ownable.sol';
import '@openzeppelin/contracts/utils/cryptography/ECDSA.sol';
import './ERC721X.sol';

contract Streetsof is ERC721X, Ownable {
    using ECDSA for bytes32;
    using Strings for uint256;

    event SaleStateUpdate(bool active);

    string public baseURI = "ipfs://none";
    string public unrevealedURI = 'ipfs://QmNzkKAghuoi9ydUEPvrU5brHevpc98pkjX5g3kGM2oaMi/Streetsof.json';

    bool public publicSaleActive;

    uint256 public totalSupply;
    uint256 public MAX_SUPPLY = 420;
    uint256 public constant PREMINT_AMOUNT = 1;
    uint256 public RESERVED_AMOUNT = 0;

    uint256 public price = 0 ether;
    uint256 public purchaseLimit = 1;

    mapping(address => uint256) public _publicMinted;

    address private _signerAddress = 0x90BCD83a41425Cf0DFbcaa3Eb9b21627568dd6E2;

    bool public revealed = false;

    constructor() ERC721X('Streetsof', 'STREETSOF') {
        _mintBatch(msg.sender, PREMINT_AMOUNT);
    }

    // ------------- External -------------

    function mint(uint256 amount) external payable whenPublicSaleActive noContract {
        require(_publicMinted[msg.sender] + amount <= purchaseLimit, 'EXCEEDS_LIMIT');
        require(msg.value == price * amount, 'INCORRECT_VALUE');
       
        _publicMinted[msg.sender] = _publicMinted[msg.sender] + amount;
        _mintBatch(msg.sender, amount);
    }

    function ownMint(uint256 amount) external onlyOwner {
        _mintBatch(msg.sender, amount);
    } 

    function reduceSupply(uint256 newMaxSupply) external onlyOwner {
            MAX_SUPPLY = newMaxSupply;
        }
    // ------------- Private -------------

    function _mintBatch(address to, uint256 amount) private {
        uint256 tokenId = totalSupply;
        require(tokenId + amount <= MAX_SUPPLY - RESERVED_AMOUNT, 'MAX_SUPPLY_REACHED');
        require(amount > 0, 'MUST_BE_GREATER_0');

        for(uint256 i=1; i <= amount; i++)_mint(to, tokenId + i);
        totalSupply += amount;
    }

    function _validSignature(bytes memory signature, bytes32 data) private view returns (bool) {
        bytes32 msgHash = keccak256(abi.encode(address(this), data, msg.sender));
        return msgHash.toEthSignedMessageHash().recover(signature) == _signerAddress;
    }

    // ------------- View -------------

    function tokenURI(uint256 tokenId) public view override returns (string memory) {
        require(_exists(tokenId), 'ERC721Metadata: URI query for nonexistent token');

        if (!revealed) return unrevealedURI;
        return string(abi.encodePacked(baseURI, tokenId.toString(), '.json'));
    }

    // ------------- Admin -------------
    
        
    function setReserve(uint256 value) external onlyOwner {
        RESERVED_AMOUNT = value;
    }

    function reveal(bool value) external onlyOwner {
        revealed = value;
    }

    function setPrice(uint256 price_) external onlyOwner {
        price = price_;
    }

    function setPurchaseLimit(uint256 limit) external onlyOwner {
        purchaseLimit = limit;
    }

    function setSignerAddress(address address_) external onlyOwner {
        _signerAddress = address_;
    }

    function setPublicSaleActive(bool active) external onlyOwner {
        publicSaleActive = active;
        emit SaleStateUpdate(active);
    }

    function setBaseURI(string memory _baseURI) external onlyOwner {
        baseURI = _baseURI;
    }

    function setUnrevealedURI(string memory _uri) external onlyOwner {
        unrevealedURI = _uri;
    }

    function withdraw() public payable onlyOwner {
        (bool os, ) = payable(owner()).call{value: address(this).balance}("");
        require(os);
    }

    function recoverToken(IERC20 token) external onlyOwner {
        uint256 balance = token.balanceOf(address(this));
        token.transfer(owner(), balance);
    }

    modifier whenPublicSaleActive() {
        require(publicSaleActive, 'PUBLIC_SALE_NOT_ACTIVE');
        _;
    }

    modifier noContract() {
        require(tx.origin == msg.sender, 'CONTRACT_CALL');
        _;
    }

    function tokenIdsOf(address owner) external view returns (uint256[] memory) {
        uint256[] memory ids = new uint256[](balanceOf(owner));
        uint256 count;
        for (uint256 i; i < balanceOf(owner); ++i) ids[count++] = tokenOfOwnerByIndex(owner, i);
        return ids;
    }
}

File 2 of 13 : IERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

    /**
     * @dev Emitted when the allowance of a `spender` for an `owner` is set by
     * a call to {approve}. `value` is the new allowance.
     */
    event Approval(address indexed owner, address indexed spender, uint256 value);

    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns the amount of tokens owned by `account`.
     */
    function balanceOf(address account) external view returns (uint256);

    /**
     * @dev Moves `amount` tokens from the caller's account to `to`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address to, uint256 amount) external returns (bool);

    /**
     * @dev Returns the remaining number of tokens that `spender` will be
     * allowed to spend on behalf of `owner` through {transferFrom}. This is
     * zero by default.
     *
     * This value changes when {approve} or {transferFrom} are called.
     */
    function allowance(address owner, address spender) external view returns (uint256);

    /**
     * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * IMPORTANT: Beware that changing an allowance with this method brings the risk
     * that someone may use both the old and the new allowance by unfortunate
     * transaction ordering. One possible solution to mitigate this race
     * condition is to first reduce the spender's allowance to 0 and set the
     * desired value afterwards:
     * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
     *
     * Emits an {Approval} event.
     */
    function approve(address spender, uint256 amount) external returns (bool);

    /**
     * @dev Moves `amount` tokens from `from` to `to` using the
     * allowance mechanism. `amount` is then deducted from the caller's
     * allowance.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address from,
        address to,
        uint256 amount
    ) external returns (bool);
}

File 3 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 4 of 13 : ECDSA.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (utils/cryptography/ECDSA.sol)

pragma solidity ^0.8.0;

import "../Strings.sol";

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

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

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

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

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

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

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

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

        return (signer, RecoverError.NoError);
    }

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

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

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

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

File 5 of 13 : ERC721X.sol
// SPDX-License-Identifier: BSD-3-Clause
pragma solidity ^0.8.10;

//   _____     _____       ____  _            _         ▗█▘ ▟▛
//  |_   _|__ |  ___|   _ | __ )| | ___   ___| | __    ▗▛▘ ▟▛
//    | |/ _ \| |_ | | | ||  _ \| |/ _ \ / __| |/ /   ▗▛  ▟▀
//    | | (_) |  _|| |_| || |_) | | (_) | (__|   <   ▗▛  ▟▘
//    |_|\___/|_|   \__,_||____/|_|\___/ \___|_|\_\
//                                  ▄▄▄▄▄▄
//                             ▟▀▀▀▀     ▝▀▀▀▀▀▀▀▀█▖
//                           ▗▛                  ▟▘▌
//                          ▄▛ ▗▄▄▄▄▄▄▄▄▄▄▄▄▄▄ ▗▛  ▌
//                         ▐▛▀▀▀            ▝▀▜   ▌
//                         ▐      ▗     ▗      ▐   ▌
//                         ▐                   ▐   ▛▀▀▀▀█
//                        ▗█                   ▐  ▗▌   ▟▘
//                       ▟▀▐                   ▐  ▟   ▐▘
//                      ▟▘ ▐▖                  ▛▗▞   ▗▌
//                     ▟▘   ▙▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▟▀▀▀▀   ▗▛
//                    ▟▘                           ▗▛
//                   ▟▙▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▛
//
// Lighter modification of ERC721, with some adjustments
// Warning: Does not implement IERC721.

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

/**
 * @notice This implementation has some modifications compared to the standard ERC721.
 * This should not be used unless the changes are understood.
 * @dev Changes made to this contract:
 * - `_balances` are not being tracked in order to save on gas.
 * - `_owners` is internal, allowing for the super class to implement functions such as `balanceOf` and `tokenIdsOf`.
 * - `balanceOf` is removed, meaning this contract doesn't follow the IERC721 standard. This could be implemented by
 *  an inefficient loop until the maximum index, however this implementation is left to the super contract.
 *
 * @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}.
 */
abstract contract ERC721X is Context, ERC165, IERC721, IERC721Metadata {
    using Address for address;
    using Strings for uint256;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    uint256 private totalSupply;

    // Mapping from token ID to owner address
    mapping(uint256 => address) internal _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;

    // Enumerable
    
    // Mapping from owner to list of owned token IDs
    mapping(address => mapping(uint256 => uint256)) private _ownedTokens;

    // Mapping from token ID to index of the owner tokens list
    mapping(uint256 => uint256) private _ownedTokensIndex;

    // Array with all token ids, used for enumeration
    uint256[] private _allTokens;

    // Mapping from token id to position in the allTokens array
    mapping(uint256 => uint256) private _allTokensIndex;

    /**
     * @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');
    //     // uint256 count;
    //     // for (uint256 i; i < totalSupply; ++i) if (owner == _owners[i]) count++;
    //     // return count;
    // }

    // function balanceOf(address owner) public view virtual override returns (uint256) {}

    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 = ERC721X.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 = ERC721X.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;
        totalSupply++;

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

    // function _mintUnchecked(address to, uint256 tokenId) internal virtual {
    //     _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 = ERC721X.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(ERC721X.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(ERC721X.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;
        }
    }

    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {
        if (from == address(0)) {
            _addTokenToAllTokensEnumeration(tokenId);
        } else if (from != to) {
            _removeTokenFromOwnerEnumeration(from, tokenId);
        }
        if (to == address(0)) {
            _removeTokenFromAllTokensEnumeration(tokenId);
        } else if (to != from) {
            _addTokenToOwnerEnumeration(to, tokenId);
        }
    }


    function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual returns (uint256) {
        require(index < balanceOf(owner), "ERC721Enumerable: owner index out of bounds");
        return _ownedTokens[owner][index];
    }

    function tokenByIndex(uint256 index) public view virtual returns (uint256) {
        require(index < totalSupply, "ERC721Enumerable: global index out of bounds");
        return _allTokens[index];
    }

    function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private {
        uint256 length = balanceOf(to);
        _ownedTokens[to][length] = tokenId;
        _ownedTokensIndex[tokenId] = length;
    }

    function _addTokenToAllTokensEnumeration(uint256 tokenId) private {
        _allTokensIndex[tokenId] = _allTokens.length;
        _allTokens.push(tokenId);
    }

    function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private {
        uint256 lastTokenIndex = balanceOf(from) - 1;
        uint256 tokenIndex = _ownedTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary
        if (tokenIndex != lastTokenIndex) {
            uint256 lastTokenId = _ownedTokens[from][lastTokenIndex];

            _ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
            _ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index
        }

        // This also deletes the contents at the last position of the array
        delete _ownedTokensIndex[tokenId];
        delete _ownedTokens[from][lastTokenIndex];
    }

    function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private {

        uint256 lastTokenIndex = _allTokens.length - 1;
        uint256 tokenIndex = _allTokensIndex[tokenId];

        uint256 lastTokenId = _allTokens[lastTokenIndex];

        _allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
        _allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index

        // This also deletes the contents at the last position of the array
        delete _allTokensIndex[tokenId];
        _allTokens.pop();
    }

}

File 6 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 7 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 8 of 13 : IERC721Receiver.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721Receiver.sol)

pragma solidity ^0.8.0;

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

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

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
     * are aware of the ERC721 protocol to prevent tokens from being forever locked.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must 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 Approve or remove `operator` as an operator for the caller.
     * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller.
     *
     * Requirements:
     *
     * - The `operator` cannot be the caller.
     *
     * Emits an {ApprovalForAll} event.
     */
    function setApprovalForAll(address operator, bool _approved) external;

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

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

File 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":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bool","name":"active","type":"bool"}],"name":"SaleStateUpdate","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PREMINT_AMOUNT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"RESERVED_AMOUNT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_publicMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"ownMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicSaleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"purchaseLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"contract IERC20","name":"token","type":"address"}],"name":"recoverToken","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newMaxSupply","type":"uint256"}],"name":"reduceSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"value","type":"bool"}],"name":"reveal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"price_","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"active","type":"bool"}],"name":"setPublicSaleActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"limit","type":"uint256"}],"name":"setPurchaseLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"value","type":"uint256"}],"name":"setReserve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"address_","type":"address"}],"name":"setSignerAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uri","type":"string"}],"name":"setUnrevealedURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"tokenIdsOf","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unrevealedURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]

60806040526040518060400160405280600b81526020017f697066733a2f2f6e6f6e65000000000000000000000000000000000000000000815250600c90805190602001906200005192919062000b4a565b5060405180608001604052806044815260200162005dee60449139600d90805190602001906200008392919062000b4a565b506101a46010556000601155600060125560016013557390bcd83a41425cf0dfbcaa3eb9b21627568dd6e2601560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506000601560146101000a81548160ff0219169083151502179055503480156200011657600080fd5b506040518060400160405280600981526020017f537472656574736f6600000000000000000000000000000000000000000000008152506040518060400160405280600981526020017f535452454554534f46000000000000000000000000000000000000000000000081525081600090805190602001906200019b92919062000b4a565b508060019080519060200190620001b492919062000b4a565b505050620001d7620001cb620001f060201b60201c565b620001f860201b60201c565b620001ea336001620002be60201b60201c565b6200104b565b600033905090565b6000600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000600f549050601154601054620002d7919062000c33565b8282620002e5919062000c6e565b111562000329576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620003209062000d2c565b60405180910390fd5b600082116200036f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620003669062000d9e565b60405180910390fd5b6000600190505b828111620003b3576200039d84828462000391919062000c6e565b620003d460201b60201c565b8080620003aa9062000dc0565b91505062000376565b5081600f6000828254620003c8919062000c6e565b92505081905550505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000446576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200043d9062000e5d565b60405180910390fd5b6200045781620005d360201b60201c565b156200049a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620004919062000ecf565b60405180910390fd5b620004ae600083836200063f60201b60201c565b6001600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825462000500919062000c6e565b92505081905550816003600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600260008154809291906200056e9062000dc0565b9190505550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b60008073ffffffffffffffffffffffffffffffffffffffff166003600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036200068b5762000685816200076c60201b60201c565b620006d3565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614620006d257620006d18382620007b560201b60201c565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036200071f5762000719816200092d60201b60201c565b62000767565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614620007665762000765828262000a0960201b60201c565b5b5b505050565b600980549050600a600083815260200190815260200160002081905550600981908060018154018082558091505060019003906000526020600020016000909190919091505550565b60006001620007ca8462000a9060201b60201c565b620007d6919062000c33565b9050600060086000848152602001908152602001600020549050818114620008bc576000600760008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600760008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816008600083815260200190815260200160002081905550505b6008600084815260200190815260200160002060009055600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b6000600160098054905062000943919062000c33565b90506000600a600084815260200190815260200160002054905060006009838154811062000976576200097562000ef1565b5b9060005260206000200154905080600983815481106200099b576200099a62000ef1565b5b906000526020600020018190555081600a600083815260200190815260200160002081905550600a6000858152602001908152602001600020600090556009805480620009ed57620009ec62000f20565b5b6001900381819060005260206000200160009055905550505050565b600062000a1c8362000a9060201b60201c565b905081600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806008600084815260200190815260200160002081905550505050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000b03576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000afa9062000fc5565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b82805462000b589062001016565b90600052602060002090601f01602090048101928262000b7c576000855562000bc8565b82601f1062000b9757805160ff191683800117855562000bc8565b8280016001018555821562000bc8579182015b8281111562000bc757825182559160200191906001019062000baa565b5b50905062000bd7919062000bdb565b5090565b5b8082111562000bf657600081600090555060010162000bdc565b5090565b6000819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600062000c408262000bfa565b915062000c4d8362000bfa565b92508282101562000c635762000c6262000c04565b5b828203905092915050565b600062000c7b8262000bfa565b915062000c888362000bfa565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111562000cc05762000cbf62000c04565b5b828201905092915050565b600082825260208201905092915050565b7f4d41585f535550504c595f524541434845440000000000000000000000000000600082015250565b600062000d1460128362000ccb565b915062000d218262000cdc565b602082019050919050565b6000602082019050818103600083015262000d478162000d05565b9050919050565b7f4d5553545f42455f475245415445525f30000000000000000000000000000000600082015250565b600062000d8660118362000ccb565b915062000d938262000d4e565b602082019050919050565b6000602082019050818103600083015262000db98162000d77565b9050919050565b600062000dcd8262000bfa565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff820362000e025762000e0162000c04565b5b600182019050919050565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b600062000e4560208362000ccb565b915062000e528262000e0d565b602082019050919050565b6000602082019050818103600083015262000e788162000e36565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b600062000eb7601c8362000ccb565b915062000ec48262000e7f565b602082019050919050565b6000602082019050818103600083015262000eea8162000ea8565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b600062000fad602a8362000ccb565b915062000fba8262000f4f565b604082019050919050565b6000602082019050818103600083015262000fe08162000f9e565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200102f57607f821691505b60208210810362001045576200104462000fe7565b5b50919050565b614d93806200105b6000396000f3fe60806040526004361061025c5760003560e01c80637035bf1811610144578063a22cb465116100b6578063d85f27401161007a578063d85f2740146108da578063e15c173014610905578063e2e06fa314610930578063e985e9c514610959578063f2fde38b14610996578063fe2c7fee146109bf5761025c565b8063a22cb465146107e3578063a3b261f21461080c578063b88d4fde14610849578063bc8893b414610872578063c87b56dd1461089d5761025c565b806391b7f5ed1161010857806391b7f5ed146106f6578063940cd05b1461071f57806395d89b41146107485780639be65a6014610773578063a035b1fe1461079c578063a0712d68146107c75761025c565b80637035bf181461062357806370a082311461064e578063715018a61461068b57806380623444146106a25780638da5cb5b146106cb5761025c565b806332cb6b0c116101dd57806351830227116101a1578063518302271461050157806355f804b31461052c578063581ea136146105555780636352211e146105925780636c0360eb146105cf5780636edc4388146105fa5761025c565b806332cb6b0c1461043d5780633ccfd60b146104685780634256dbe31461047257806342842e0e1461049b5780634f6ccce7146104c45761025c565b806318160ddd1161022457806318160ddd1461035857806318886657146103835780632062121d146103ae57806323b872dd146103d75780632f745c59146104005761025c565b806301ffc9a714610261578063046dc1661461029e57806306fdde03146102c7578063081812fc146102f2578063095ea7b31461032f575b600080fd5b34801561026d57600080fd5b50610288600480360381019061028391906133a5565b6109e8565b60405161029591906133ed565b60405180910390f35b3480156102aa57600080fd5b506102c560048036038101906102c09190613466565b610aca565b005b3480156102d357600080fd5b506102dc610b8a565b6040516102e9919061352c565b60405180910390f35b3480156102fe57600080fd5b5061031960048036038101906103149190613584565b610c1c565b60405161032691906135c0565b60405180910390f35b34801561033b57600080fd5b50610356600480360381019061035191906135db565b610ca1565b005b34801561036457600080fd5b5061036d610db8565b60405161037a919061362a565b60405180910390f35b34801561038f57600080fd5b50610398610dbe565b6040516103a5919061362a565b60405180910390f35b3480156103ba57600080fd5b506103d560048036038101906103d09190613584565b610dc4565b005b3480156103e357600080fd5b506103fe60048036038101906103f99190613645565b610e4d565b005b34801561040c57600080fd5b50610427600480360381019061042291906135db565b610ead565b604051610434919061362a565b60405180910390f35b34801561044957600080fd5b50610452610f52565b60405161045f919061362a565b60405180910390f35b610470610f58565b005b34801561047e57600080fd5b5061049960048036038101906104949190613584565b611054565b005b3480156104a757600080fd5b506104c260048036038101906104bd9190613645565b6110da565b005b3480156104d057600080fd5b506104eb60048036038101906104e69190613584565b6110fa565b6040516104f8919061362a565b60405180910390f35b34801561050d57600080fd5b50610516611166565b60405161052391906133ed565b60405180910390f35b34801561053857600080fd5b50610553600480360381019061054e91906137cd565b611179565b005b34801561056157600080fd5b5061057c60048036038101906105779190613466565b61120f565b604051610589919061362a565b60405180910390f35b34801561059e57600080fd5b506105b960048036038101906105b49190613584565b611227565b6040516105c691906135c0565b60405180910390f35b3480156105db57600080fd5b506105e46112d8565b6040516105f1919061352c565b60405180910390f35b34801561060657600080fd5b50610621600480360381019061061c9190613584565b611366565b005b34801561062f57600080fd5b506106386113ec565b604051610645919061352c565b60405180910390f35b34801561065a57600080fd5b5061067560048036038101906106709190613466565b61147a565b604051610682919061362a565b60405180910390f35b34801561069757600080fd5b506106a0611531565b005b3480156106ae57600080fd5b506106c960048036038101906106c49190613584565b6115b9565b005b3480156106d757600080fd5b506106e061163f565b6040516106ed91906135c0565b60405180910390f35b34801561070257600080fd5b5061071d60048036038101906107189190613584565b611669565b005b34801561072b57600080fd5b5061074660048036038101906107419190613842565b6116ef565b005b34801561075457600080fd5b5061075d611788565b60405161076a919061352c565b60405180910390f35b34801561077f57600080fd5b5061079a600480360381019061079591906138ad565b61181a565b005b3480156107a857600080fd5b506107b161199e565b6040516107be919061362a565b60405180910390f35b6107e160048036038101906107dc9190613584565b6119a4565b005b3480156107ef57600080fd5b5061080a600480360381019061080591906138da565b611bda565b005b34801561081857600080fd5b50610833600480360381019061082e9190613466565b611bf0565b60405161084091906139d8565b60405180910390f35b34801561085557600080fd5b50610870600480360381019061086b9190613a9b565b611cac565b005b34801561087e57600080fd5b50610887611d0e565b60405161089491906133ed565b60405180910390f35b3480156108a957600080fd5b506108c460048036038101906108bf9190613584565b611d21565b6040516108d1919061352c565b60405180910390f35b3480156108e657600080fd5b506108ef611e44565b6040516108fc919061362a565b60405180910390f35b34801561091157600080fd5b5061091a611e4a565b604051610927919061362a565b60405180910390f35b34801561093c57600080fd5b5061095760048036038101906109529190613842565b611e4f565b005b34801561096557600080fd5b50610980600480360381019061097b9190613b1e565b611f1f565b60405161098d91906133ed565b60405180910390f35b3480156109a257600080fd5b506109bd60048036038101906109b89190613466565b611fb3565b005b3480156109cb57600080fd5b506109e660048036038101906109e191906137cd565b6120aa565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610ab357507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610ac35750610ac282612140565b5b9050919050565b610ad26121aa565b73ffffffffffffffffffffffffffffffffffffffff16610af061163f565b73ffffffffffffffffffffffffffffffffffffffff1614610b46576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b3d90613baa565b60405180910390fd5b80601560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b606060008054610b9990613bf9565b80601f0160208091040260200160405190810160405280929190818152602001828054610bc590613bf9565b8015610c125780601f10610be757610100808354040283529160200191610c12565b820191906000526020600020905b815481529060010190602001808311610bf557829003601f168201915b5050505050905090565b6000610c27826121b2565b610c66576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c5d90613c9c565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610cac82611227565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610d1c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d1390613d2e565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610d3b6121aa565b73ffffffffffffffffffffffffffffffffffffffff161480610d6a5750610d6981610d646121aa565b611f1f565b5b610da9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610da090613dc0565b60405180910390fd5b610db3838361221e565b505050565b600f5481565b60135481565b610dcc6121aa565b73ffffffffffffffffffffffffffffffffffffffff16610dea61163f565b73ffffffffffffffffffffffffffffffffffffffff1614610e40576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e3790613baa565b60405180910390fd5b610e4a33826122d7565b50565b610e5e610e586121aa565b826123d3565b610e9d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e9490613e52565b60405180910390fd5b610ea88383836124b1565b505050565b6000610eb88361147a565b8210610ef9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ef090613ee4565b60405180910390fd5b600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b60105481565b610f606121aa565b73ffffffffffffffffffffffffffffffffffffffff16610f7e61163f565b73ffffffffffffffffffffffffffffffffffffffff1614610fd4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fcb90613baa565b60405180910390fd5b6000610fde61163f565b73ffffffffffffffffffffffffffffffffffffffff164760405161100190613f35565b60006040518083038185875af1925050503d806000811461103e576040519150601f19603f3d011682016040523d82523d6000602084013e611043565b606091505b505090508061105157600080fd5b50565b61105c6121aa565b73ffffffffffffffffffffffffffffffffffffffff1661107a61163f565b73ffffffffffffffffffffffffffffffffffffffff16146110d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110c790613baa565b60405180910390fd5b8060118190555050565b6110f583838360405180602001604052806000815250611cac565b505050565b60006002548210611140576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161113790613fbc565b60405180910390fd5b6009828154811061115457611153613fdc565b5b90600052602060002001549050919050565b601560149054906101000a900460ff1681565b6111816121aa565b73ffffffffffffffffffffffffffffffffffffffff1661119f61163f565b73ffffffffffffffffffffffffffffffffffffffff16146111f5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111ec90613baa565b60405180910390fd5b80600c908051906020019061120b929190613296565b5050565b60146020528060005260406000206000915090505481565b6000806003600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036112cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112c69061407d565b60405180910390fd5b80915050919050565b600c80546112e590613bf9565b80601f016020809104026020016040519081016040528092919081815260200182805461131190613bf9565b801561135e5780601f106113335761010080835404028352916020019161135e565b820191906000526020600020905b81548152906001019060200180831161134157829003601f168201915b505050505081565b61136e6121aa565b73ffffffffffffffffffffffffffffffffffffffff1661138c61163f565b73ffffffffffffffffffffffffffffffffffffffff16146113e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113d990613baa565b60405180910390fd5b8060138190555050565b600d80546113f990613bf9565b80601f016020809104026020016040519081016040528092919081815260200182805461142590613bf9565b80156114725780601f1061144757610100808354040283529160200191611472565b820191906000526020600020905b81548152906001019060200180831161145557829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036114ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114e19061410f565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6115396121aa565b73ffffffffffffffffffffffffffffffffffffffff1661155761163f565b73ffffffffffffffffffffffffffffffffffffffff16146115ad576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115a490613baa565b60405180910390fd5b6115b7600061270c565b565b6115c16121aa565b73ffffffffffffffffffffffffffffffffffffffff166115df61163f565b73ffffffffffffffffffffffffffffffffffffffff1614611635576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161162c90613baa565b60405180910390fd5b8060108190555050565b6000600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6116716121aa565b73ffffffffffffffffffffffffffffffffffffffff1661168f61163f565b73ffffffffffffffffffffffffffffffffffffffff16146116e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116dc90613baa565b60405180910390fd5b8060128190555050565b6116f76121aa565b73ffffffffffffffffffffffffffffffffffffffff1661171561163f565b73ffffffffffffffffffffffffffffffffffffffff161461176b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161176290613baa565b60405180910390fd5b80601560146101000a81548160ff02191690831515021790555050565b60606001805461179790613bf9565b80601f01602080910402602001604051908101604052809291908181526020018280546117c390613bf9565b80156118105780601f106117e557610100808354040283529160200191611810565b820191906000526020600020905b8154815290600101906020018083116117f357829003601f168201915b5050505050905090565b6118226121aa565b73ffffffffffffffffffffffffffffffffffffffff1661184061163f565b73ffffffffffffffffffffffffffffffffffffffff1614611896576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161188d90613baa565b60405180910390fd5b60008173ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b81526004016118d191906135c0565b602060405180830381865afa1580156118ee573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906119129190614144565b90508173ffffffffffffffffffffffffffffffffffffffff1663a9059cbb61193861163f565b836040518363ffffffff1660e01b8152600401611956929190614171565b6020604051808303816000875af1158015611975573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061199991906141af565b505050565b60125481565b600e60009054906101000a900460ff166119f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119ea90614228565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614611a61576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a5890614294565b60405180910390fd5b60135481601460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611aaf91906142e3565b1115611af0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ae790614385565b60405180910390fd5b80601254611afe91906143a5565b3414611b3f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b369061444b565b60405180910390fd5b80601460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611b8a91906142e3565b601460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550611bd733826122d7565b50565b611bec611be56121aa565b83836127d2565b5050565b60606000611bfd8361147a565b67ffffffffffffffff811115611c1657611c156136a2565b5b604051908082528060200260200182016040528015611c445781602001602082028036833780820191505090505b5090506000805b611c548561147a565b811015611ca157611c658582610ead565b838380611c719061446b565b945081518110611c8457611c83613fdc565b5b60200260200101818152505080611c9a9061446b565b9050611c4b565b508192505050919050565b611cbd611cb76121aa565b836123d3565b611cfc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cf390613e52565b60405180910390fd5b611d088484848461293e565b50505050565b600e60009054906101000a900460ff1681565b6060611d2c826121b2565b611d6b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d6290614525565b60405180910390fd5b601560149054906101000a900460ff16611e1157600d8054611d8c90613bf9565b80601f0160208091040260200160405190810160405280929190818152602001828054611db890613bf9565b8015611e055780601f10611dda57610100808354040283529160200191611e05565b820191906000526020600020905b815481529060010190602001808311611de857829003601f168201915b50505050509050611e3f565b600c611e1c8361299a565b604051602001611e2d929190614661565b60405160208183030381529060405290505b919050565b60115481565b600181565b611e576121aa565b73ffffffffffffffffffffffffffffffffffffffff16611e7561163f565b73ffffffffffffffffffffffffffffffffffffffff1614611ecb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ec290613baa565b60405180910390fd5b80600e60006101000a81548160ff0219169083151502179055507f97f29479c7c44b7656bf427eb93a9dadcd6b4a3d900a3ac5df9de43a867de5d081604051611f1491906133ed565b60405180910390a150565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611fbb6121aa565b73ffffffffffffffffffffffffffffffffffffffff16611fd961163f565b73ffffffffffffffffffffffffffffffffffffffff161461202f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161202690613baa565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361209e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161209590614702565b60405180910390fd5b6120a78161270c565b50565b6120b26121aa565b73ffffffffffffffffffffffffffffffffffffffff166120d061163f565b73ffffffffffffffffffffffffffffffffffffffff1614612126576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161211d90613baa565b60405180910390fd5b80600d908051906020019061213c929190613296565b5050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b60008073ffffffffffffffffffffffffffffffffffffffff166003600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b816005600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661229183611227565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000600f5490506011546010546122ee9190614722565b82826122fa91906142e3565b111561233b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612332906147a2565b60405180910390fd5b6000821161237e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123759061480e565b60405180910390fd5b6000600190505b8281116123b4576123a184828461239c91906142e3565b612afa565b80806123ac9061446b565b915050612385565b5081600f60008282546123c791906142e3565b92505081905550505050565b60006123de826121b2565b61241d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612414906148a0565b60405180910390fd5b600061242883611227565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061249757508373ffffffffffffffffffffffffffffffffffffffff1661247f84610c1c565b73ffffffffffffffffffffffffffffffffffffffff16145b806124a857506124a78185611f1f565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166124d182611227565b73ffffffffffffffffffffffffffffffffffffffff1614612527576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161251e90614932565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612596576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161258d906149c4565b60405180910390fd5b6125a1838383612cdf565b6125ac60008261221e565b6001600460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546125fc9190614722565b925050819055506001600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461265391906142e3565b92505081905550816003600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612840576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161283790614a30565b60405180910390fd5b80600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161293191906133ed565b60405180910390a3505050565b6129498484846124b1565b61295584848484612de6565b612994576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161298b90614ac2565b60405180910390fd5b50505050565b6060600082036129e1576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612af5565b600082905060005b60008214612a135780806129fc9061446b565b915050600a82612a0c9190614b11565b91506129e9565b60008167ffffffffffffffff811115612a2f57612a2e6136a2565b5b6040519080825280601f01601f191660200182016040528015612a615781602001600182028036833780820191505090505b5090505b60008514612aee57600182612a7a9190614722565b9150600a85612a899190614b42565b6030612a9591906142e3565b60f81b818381518110612aab57612aaa613fdc565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612ae79190614b11565b9450612a65565b8093505050505b919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612b69576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b6090614bbf565b60405180910390fd5b612b72816121b2565b15612bb2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ba990614c2b565b60405180910390fd5b612bbe60008383612cdf565b6001600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612c0e91906142e3565b92505081905550816003600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060026000815480929190612c7a9061446b565b9190505550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612d2157612d1c81612f6d565b612d60565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614612d5f57612d5e8382612fb6565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612da257612d9d81613123565b612de1565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614612de057612ddf82826131f4565b5b5b505050565b6000612e078473ffffffffffffffffffffffffffffffffffffffff16613273565b15612f60578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612e306121aa565b8786866040518563ffffffff1660e01b8152600401612e529493929190614ca0565b6020604051808303816000875af1925050508015612e8e57506040513d601f19601f82011682018060405250810190612e8b9190614d01565b60015b612f10573d8060008114612ebe576040519150601f19603f3d011682016040523d82523d6000602084013e612ec3565b606091505b506000815103612f08576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612eff90614ac2565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612f65565b600190505b949350505050565b600980549050600a600083815260200190815260200160002081905550600981908060018154018082558091505060019003906000526020600020016000909190919091505550565b60006001612fc38461147a565b612fcd9190614722565b90506000600860008481526020019081526020016000205490508181146130b2576000600760008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600760008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816008600083815260200190815260200160002081905550505b6008600084815260200190815260200160002060009055600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b600060016009805490506131379190614722565b90506000600a600084815260200190815260200160002054905060006009838154811061316757613166613fdc565b5b90600052602060002001549050806009838154811061318957613188613fdc565b5b906000526020600020018190555081600a600083815260200190815260200160002081905550600a60008581526020019081526020016000206000905560098054806131d8576131d7614d2e565b5b6001900381819060005260206000200160009055905550505050565b60006131ff8361147a565b905081600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806008600084815260200190815260200160002081905550505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b8280546132a290613bf9565b90600052602060002090601f0160209004810192826132c4576000855561330b565b82601f106132dd57805160ff191683800117855561330b565b8280016001018555821561330b579182015b8281111561330a5782518255916020019190600101906132ef565b5b509050613318919061331c565b5090565b5b8082111561333557600081600090555060010161331d565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6133828161334d565b811461338d57600080fd5b50565b60008135905061339f81613379565b92915050565b6000602082840312156133bb576133ba613343565b5b60006133c984828501613390565b91505092915050565b60008115159050919050565b6133e7816133d2565b82525050565b600060208201905061340260008301846133de565b92915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061343382613408565b9050919050565b61344381613428565b811461344e57600080fd5b50565b6000813590506134608161343a565b92915050565b60006020828403121561347c5761347b613343565b5b600061348a84828501613451565b91505092915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156134cd5780820151818401526020810190506134b2565b838111156134dc576000848401525b50505050565b6000601f19601f8301169050919050565b60006134fe82613493565b613508818561349e565b93506135188185602086016134af565b613521816134e2565b840191505092915050565b6000602082019050818103600083015261354681846134f3565b905092915050565b6000819050919050565b6135618161354e565b811461356c57600080fd5b50565b60008135905061357e81613558565b92915050565b60006020828403121561359a57613599613343565b5b60006135a88482850161356f565b91505092915050565b6135ba81613428565b82525050565b60006020820190506135d560008301846135b1565b92915050565b600080604083850312156135f2576135f1613343565b5b600061360085828601613451565b92505060206136118582860161356f565b9150509250929050565b6136248161354e565b82525050565b600060208201905061363f600083018461361b565b92915050565b60008060006060848603121561365e5761365d613343565b5b600061366c86828701613451565b935050602061367d86828701613451565b925050604061368e8682870161356f565b9150509250925092565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6136da826134e2565b810181811067ffffffffffffffff821117156136f9576136f86136a2565b5b80604052505050565b600061370c613339565b905061371882826136d1565b919050565b600067ffffffffffffffff821115613738576137376136a2565b5b613741826134e2565b9050602081019050919050565b82818337600083830152505050565b600061377061376b8461371d565b613702565b90508281526020810184848401111561378c5761378b61369d565b5b61379784828561374e565b509392505050565b600082601f8301126137b4576137b3613698565b5b81356137c484826020860161375d565b91505092915050565b6000602082840312156137e3576137e2613343565b5b600082013567ffffffffffffffff81111561380157613800613348565b5b61380d8482850161379f565b91505092915050565b61381f816133d2565b811461382a57600080fd5b50565b60008135905061383c81613816565b92915050565b60006020828403121561385857613857613343565b5b60006138668482850161382d565b91505092915050565b600061387a82613428565b9050919050565b61388a8161386f565b811461389557600080fd5b50565b6000813590506138a781613881565b92915050565b6000602082840312156138c3576138c2613343565b5b60006138d184828501613898565b91505092915050565b600080604083850312156138f1576138f0613343565b5b60006138ff85828601613451565b92505060206139108582860161382d565b9150509250929050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b61394f8161354e565b82525050565b60006139618383613946565b60208301905092915050565b6000602082019050919050565b60006139858261391a565b61398f8185613925565b935061399a83613936565b8060005b838110156139cb5781516139b28882613955565b97506139bd8361396d565b92505060018101905061399e565b5085935050505092915050565b600060208201905081810360008301526139f2818461397a565b905092915050565b600067ffffffffffffffff821115613a1557613a146136a2565b5b613a1e826134e2565b9050602081019050919050565b6000613a3e613a39846139fa565b613702565b905082815260208101848484011115613a5a57613a5961369d565b5b613a6584828561374e565b509392505050565b600082601f830112613a8257613a81613698565b5b8135613a92848260208601613a2b565b91505092915050565b60008060008060808587031215613ab557613ab4613343565b5b6000613ac387828801613451565b9450506020613ad487828801613451565b9350506040613ae58782880161356f565b925050606085013567ffffffffffffffff811115613b0657613b05613348565b5b613b1287828801613a6d565b91505092959194509250565b60008060408385031215613b3557613b34613343565b5b6000613b4385828601613451565b9250506020613b5485828601613451565b9150509250929050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613b9460208361349e565b9150613b9f82613b5e565b602082019050919050565b60006020820190508181036000830152613bc381613b87565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680613c1157607f821691505b602082108103613c2457613c23613bca565b5b50919050565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b6000613c86602c8361349e565b9150613c9182613c2a565b604082019050919050565b60006020820190508181036000830152613cb581613c79565b9050919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b6000613d1860218361349e565b9150613d2382613cbc565b604082019050919050565b60006020820190508181036000830152613d4781613d0b565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b6000613daa60388361349e565b9150613db582613d4e565b604082019050919050565b60006020820190508181036000830152613dd981613d9d565b9050919050565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b6000613e3c60318361349e565b9150613e4782613de0565b604082019050919050565b60006020820190508181036000830152613e6b81613e2f565b9050919050565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b6000613ece602b8361349e565b9150613ed982613e72565b604082019050919050565b60006020820190508181036000830152613efd81613ec1565b9050919050565b600081905092915050565b50565b6000613f1f600083613f04565b9150613f2a82613f0f565b600082019050919050565b6000613f4082613f12565b9150819050919050565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b6000613fa6602c8361349e565b9150613fb182613f4a565b604082019050919050565b60006020820190508181036000830152613fd581613f99565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b600061406760298361349e565b91506140728261400b565b604082019050919050565b600060208201905081810360008301526140968161405a565b9050919050565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b60006140f9602a8361349e565b91506141048261409d565b604082019050919050565b60006020820190508181036000830152614128816140ec565b9050919050565b60008151905061413e81613558565b92915050565b60006020828403121561415a57614159613343565b5b60006141688482850161412f565b91505092915050565b600060408201905061418660008301856135b1565b614193602083018461361b565b9392505050565b6000815190506141a981613816565b92915050565b6000602082840312156141c5576141c4613343565b5b60006141d38482850161419a565b91505092915050565b7f5055424c49435f53414c455f4e4f545f41435449564500000000000000000000600082015250565b600061421260168361349e565b915061421d826141dc565b602082019050919050565b6000602082019050818103600083015261424181614205565b9050919050565b7f434f4e54524143545f43414c4c00000000000000000000000000000000000000600082015250565b600061427e600d8361349e565b915061428982614248565b602082019050919050565b600060208201905081810360008301526142ad81614271565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006142ee8261354e565b91506142f98361354e565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561432e5761432d6142b4565b5b828201905092915050565b7f455843454544535f4c494d495400000000000000000000000000000000000000600082015250565b600061436f600d8361349e565b915061437a82614339565b602082019050919050565b6000602082019050818103600083015261439e81614362565b9050919050565b60006143b08261354e565b91506143bb8361354e565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156143f4576143f36142b4565b5b828202905092915050565b7f494e434f52524543545f56414c55450000000000000000000000000000000000600082015250565b6000614435600f8361349e565b9150614440826143ff565b602082019050919050565b6000602082019050818103600083015261446481614428565b9050919050565b60006144768261354e565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036144a8576144a76142b4565b5b600182019050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b600061450f602f8361349e565b915061451a826144b3565b604082019050919050565b6000602082019050818103600083015261453e81614502565b9050919050565b600081905092915050565b60008190508160005260206000209050919050565b6000815461457281613bf9565b61457c8186614545565b9450600182166000811461459757600181146145a8576145db565b60ff198316865281860193506145db565b6145b185614550565b60005b838110156145d3578154818901526001820191506020810190506145b4565b838801955050505b50505092915050565b60006145ef82613493565b6145f98185614545565b93506146098185602086016134af565b80840191505092915050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b600061464b600583614545565b915061465682614615565b600582019050919050565b600061466d8285614565565b915061467982846145e4565b91506146848261463e565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006146ec60268361349e565b91506146f782614690565b604082019050919050565b6000602082019050818103600083015261471b816146df565b9050919050565b600061472d8261354e565b91506147388361354e565b92508282101561474b5761474a6142b4565b5b828203905092915050565b7f4d41585f535550504c595f524541434845440000000000000000000000000000600082015250565b600061478c60128361349e565b915061479782614756565b602082019050919050565b600060208201905081810360008301526147bb8161477f565b9050919050565b7f4d5553545f42455f475245415445525f30000000000000000000000000000000600082015250565b60006147f860118361349e565b9150614803826147c2565b602082019050919050565b60006020820190508181036000830152614827816147eb565b9050919050565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b600061488a602c8361349e565b91506148958261482e565b604082019050919050565b600060208201905081810360008301526148b98161487d565b9050919050565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b600061491c60298361349e565b9150614927826148c0565b604082019050919050565b6000602082019050818103600083015261494b8161490f565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006149ae60248361349e565b91506149b982614952565b604082019050919050565b600060208201905081810360008301526149dd816149a1565b9050919050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b6000614a1a60198361349e565b9150614a25826149e4565b602082019050919050565b60006020820190508181036000830152614a4981614a0d565b9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b6000614aac60328361349e565b9150614ab782614a50565b604082019050919050565b60006020820190508181036000830152614adb81614a9f565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000614b1c8261354e565b9150614b278361354e565b925082614b3757614b36614ae2565b5b828204905092915050565b6000614b4d8261354e565b9150614b588361354e565b925082614b6857614b67614ae2565b5b828206905092915050565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b6000614ba960208361349e565b9150614bb482614b73565b602082019050919050565b60006020820190508181036000830152614bd881614b9c565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b6000614c15601c8361349e565b9150614c2082614bdf565b602082019050919050565b60006020820190508181036000830152614c4481614c08565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000614c7282614c4b565b614c7c8185614c56565b9350614c8c8185602086016134af565b614c95816134e2565b840191505092915050565b6000608082019050614cb560008301876135b1565b614cc260208301866135b1565b614ccf604083018561361b565b8181036060830152614ce18184614c67565b905095945050505050565b600081519050614cfb81613379565b92915050565b600060208284031215614d1757614d16613343565b5b6000614d2584828501614cec565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fdfea26469706673582212203c03de565f0f904d010cb58bc457af4aa76c0bbd681e03f0083128ec9d0b406564736f6c634300080e0033697066733a2f2f516d4e7a6b4b416768756f6939796455455076725535627248657670633938706b6a583567336b474d326f614d692f537472656574736f662e6a736f6e

Deployed Bytecode

0x60806040526004361061025c5760003560e01c80637035bf1811610144578063a22cb465116100b6578063d85f27401161007a578063d85f2740146108da578063e15c173014610905578063e2e06fa314610930578063e985e9c514610959578063f2fde38b14610996578063fe2c7fee146109bf5761025c565b8063a22cb465146107e3578063a3b261f21461080c578063b88d4fde14610849578063bc8893b414610872578063c87b56dd1461089d5761025c565b806391b7f5ed1161010857806391b7f5ed146106f6578063940cd05b1461071f57806395d89b41146107485780639be65a6014610773578063a035b1fe1461079c578063a0712d68146107c75761025c565b80637035bf181461062357806370a082311461064e578063715018a61461068b57806380623444146106a25780638da5cb5b146106cb5761025c565b806332cb6b0c116101dd57806351830227116101a1578063518302271461050157806355f804b31461052c578063581ea136146105555780636352211e146105925780636c0360eb146105cf5780636edc4388146105fa5761025c565b806332cb6b0c1461043d5780633ccfd60b146104685780634256dbe31461047257806342842e0e1461049b5780634f6ccce7146104c45761025c565b806318160ddd1161022457806318160ddd1461035857806318886657146103835780632062121d146103ae57806323b872dd146103d75780632f745c59146104005761025c565b806301ffc9a714610261578063046dc1661461029e57806306fdde03146102c7578063081812fc146102f2578063095ea7b31461032f575b600080fd5b34801561026d57600080fd5b50610288600480360381019061028391906133a5565b6109e8565b60405161029591906133ed565b60405180910390f35b3480156102aa57600080fd5b506102c560048036038101906102c09190613466565b610aca565b005b3480156102d357600080fd5b506102dc610b8a565b6040516102e9919061352c565b60405180910390f35b3480156102fe57600080fd5b5061031960048036038101906103149190613584565b610c1c565b60405161032691906135c0565b60405180910390f35b34801561033b57600080fd5b50610356600480360381019061035191906135db565b610ca1565b005b34801561036457600080fd5b5061036d610db8565b60405161037a919061362a565b60405180910390f35b34801561038f57600080fd5b50610398610dbe565b6040516103a5919061362a565b60405180910390f35b3480156103ba57600080fd5b506103d560048036038101906103d09190613584565b610dc4565b005b3480156103e357600080fd5b506103fe60048036038101906103f99190613645565b610e4d565b005b34801561040c57600080fd5b50610427600480360381019061042291906135db565b610ead565b604051610434919061362a565b60405180910390f35b34801561044957600080fd5b50610452610f52565b60405161045f919061362a565b60405180910390f35b610470610f58565b005b34801561047e57600080fd5b5061049960048036038101906104949190613584565b611054565b005b3480156104a757600080fd5b506104c260048036038101906104bd9190613645565b6110da565b005b3480156104d057600080fd5b506104eb60048036038101906104e69190613584565b6110fa565b6040516104f8919061362a565b60405180910390f35b34801561050d57600080fd5b50610516611166565b60405161052391906133ed565b60405180910390f35b34801561053857600080fd5b50610553600480360381019061054e91906137cd565b611179565b005b34801561056157600080fd5b5061057c60048036038101906105779190613466565b61120f565b604051610589919061362a565b60405180910390f35b34801561059e57600080fd5b506105b960048036038101906105b49190613584565b611227565b6040516105c691906135c0565b60405180910390f35b3480156105db57600080fd5b506105e46112d8565b6040516105f1919061352c565b60405180910390f35b34801561060657600080fd5b50610621600480360381019061061c9190613584565b611366565b005b34801561062f57600080fd5b506106386113ec565b604051610645919061352c565b60405180910390f35b34801561065a57600080fd5b5061067560048036038101906106709190613466565b61147a565b604051610682919061362a565b60405180910390f35b34801561069757600080fd5b506106a0611531565b005b3480156106ae57600080fd5b506106c960048036038101906106c49190613584565b6115b9565b005b3480156106d757600080fd5b506106e061163f565b6040516106ed91906135c0565b60405180910390f35b34801561070257600080fd5b5061071d60048036038101906107189190613584565b611669565b005b34801561072b57600080fd5b5061074660048036038101906107419190613842565b6116ef565b005b34801561075457600080fd5b5061075d611788565b60405161076a919061352c565b60405180910390f35b34801561077f57600080fd5b5061079a600480360381019061079591906138ad565b61181a565b005b3480156107a857600080fd5b506107b161199e565b6040516107be919061362a565b60405180910390f35b6107e160048036038101906107dc9190613584565b6119a4565b005b3480156107ef57600080fd5b5061080a600480360381019061080591906138da565b611bda565b005b34801561081857600080fd5b50610833600480360381019061082e9190613466565b611bf0565b60405161084091906139d8565b60405180910390f35b34801561085557600080fd5b50610870600480360381019061086b9190613a9b565b611cac565b005b34801561087e57600080fd5b50610887611d0e565b60405161089491906133ed565b60405180910390f35b3480156108a957600080fd5b506108c460048036038101906108bf9190613584565b611d21565b6040516108d1919061352c565b60405180910390f35b3480156108e657600080fd5b506108ef611e44565b6040516108fc919061362a565b60405180910390f35b34801561091157600080fd5b5061091a611e4a565b604051610927919061362a565b60405180910390f35b34801561093c57600080fd5b5061095760048036038101906109529190613842565b611e4f565b005b34801561096557600080fd5b50610980600480360381019061097b9190613b1e565b611f1f565b60405161098d91906133ed565b60405180910390f35b3480156109a257600080fd5b506109bd60048036038101906109b89190613466565b611fb3565b005b3480156109cb57600080fd5b506109e660048036038101906109e191906137cd565b6120aa565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610ab357507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610ac35750610ac282612140565b5b9050919050565b610ad26121aa565b73ffffffffffffffffffffffffffffffffffffffff16610af061163f565b73ffffffffffffffffffffffffffffffffffffffff1614610b46576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b3d90613baa565b60405180910390fd5b80601560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b606060008054610b9990613bf9565b80601f0160208091040260200160405190810160405280929190818152602001828054610bc590613bf9565b8015610c125780601f10610be757610100808354040283529160200191610c12565b820191906000526020600020905b815481529060010190602001808311610bf557829003601f168201915b5050505050905090565b6000610c27826121b2565b610c66576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c5d90613c9c565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610cac82611227565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610d1c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d1390613d2e565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610d3b6121aa565b73ffffffffffffffffffffffffffffffffffffffff161480610d6a5750610d6981610d646121aa565b611f1f565b5b610da9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610da090613dc0565b60405180910390fd5b610db3838361221e565b505050565b600f5481565b60135481565b610dcc6121aa565b73ffffffffffffffffffffffffffffffffffffffff16610dea61163f565b73ffffffffffffffffffffffffffffffffffffffff1614610e40576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e3790613baa565b60405180910390fd5b610e4a33826122d7565b50565b610e5e610e586121aa565b826123d3565b610e9d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e9490613e52565b60405180910390fd5b610ea88383836124b1565b505050565b6000610eb88361147a565b8210610ef9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ef090613ee4565b60405180910390fd5b600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b60105481565b610f606121aa565b73ffffffffffffffffffffffffffffffffffffffff16610f7e61163f565b73ffffffffffffffffffffffffffffffffffffffff1614610fd4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fcb90613baa565b60405180910390fd5b6000610fde61163f565b73ffffffffffffffffffffffffffffffffffffffff164760405161100190613f35565b60006040518083038185875af1925050503d806000811461103e576040519150601f19603f3d011682016040523d82523d6000602084013e611043565b606091505b505090508061105157600080fd5b50565b61105c6121aa565b73ffffffffffffffffffffffffffffffffffffffff1661107a61163f565b73ffffffffffffffffffffffffffffffffffffffff16146110d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110c790613baa565b60405180910390fd5b8060118190555050565b6110f583838360405180602001604052806000815250611cac565b505050565b60006002548210611140576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161113790613fbc565b60405180910390fd5b6009828154811061115457611153613fdc565b5b90600052602060002001549050919050565b601560149054906101000a900460ff1681565b6111816121aa565b73ffffffffffffffffffffffffffffffffffffffff1661119f61163f565b73ffffffffffffffffffffffffffffffffffffffff16146111f5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111ec90613baa565b60405180910390fd5b80600c908051906020019061120b929190613296565b5050565b60146020528060005260406000206000915090505481565b6000806003600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036112cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112c69061407d565b60405180910390fd5b80915050919050565b600c80546112e590613bf9565b80601f016020809104026020016040519081016040528092919081815260200182805461131190613bf9565b801561135e5780601f106113335761010080835404028352916020019161135e565b820191906000526020600020905b81548152906001019060200180831161134157829003601f168201915b505050505081565b61136e6121aa565b73ffffffffffffffffffffffffffffffffffffffff1661138c61163f565b73ffffffffffffffffffffffffffffffffffffffff16146113e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113d990613baa565b60405180910390fd5b8060138190555050565b600d80546113f990613bf9565b80601f016020809104026020016040519081016040528092919081815260200182805461142590613bf9565b80156114725780601f1061144757610100808354040283529160200191611472565b820191906000526020600020905b81548152906001019060200180831161145557829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036114ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114e19061410f565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6115396121aa565b73ffffffffffffffffffffffffffffffffffffffff1661155761163f565b73ffffffffffffffffffffffffffffffffffffffff16146115ad576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115a490613baa565b60405180910390fd5b6115b7600061270c565b565b6115c16121aa565b73ffffffffffffffffffffffffffffffffffffffff166115df61163f565b73ffffffffffffffffffffffffffffffffffffffff1614611635576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161162c90613baa565b60405180910390fd5b8060108190555050565b6000600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6116716121aa565b73ffffffffffffffffffffffffffffffffffffffff1661168f61163f565b73ffffffffffffffffffffffffffffffffffffffff16146116e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116dc90613baa565b60405180910390fd5b8060128190555050565b6116f76121aa565b73ffffffffffffffffffffffffffffffffffffffff1661171561163f565b73ffffffffffffffffffffffffffffffffffffffff161461176b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161176290613baa565b60405180910390fd5b80601560146101000a81548160ff02191690831515021790555050565b60606001805461179790613bf9565b80601f01602080910402602001604051908101604052809291908181526020018280546117c390613bf9565b80156118105780601f106117e557610100808354040283529160200191611810565b820191906000526020600020905b8154815290600101906020018083116117f357829003601f168201915b5050505050905090565b6118226121aa565b73ffffffffffffffffffffffffffffffffffffffff1661184061163f565b73ffffffffffffffffffffffffffffffffffffffff1614611896576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161188d90613baa565b60405180910390fd5b60008173ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b81526004016118d191906135c0565b602060405180830381865afa1580156118ee573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906119129190614144565b90508173ffffffffffffffffffffffffffffffffffffffff1663a9059cbb61193861163f565b836040518363ffffffff1660e01b8152600401611956929190614171565b6020604051808303816000875af1158015611975573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061199991906141af565b505050565b60125481565b600e60009054906101000a900460ff166119f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119ea90614228565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614611a61576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a5890614294565b60405180910390fd5b60135481601460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611aaf91906142e3565b1115611af0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ae790614385565b60405180910390fd5b80601254611afe91906143a5565b3414611b3f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b369061444b565b60405180910390fd5b80601460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611b8a91906142e3565b601460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550611bd733826122d7565b50565b611bec611be56121aa565b83836127d2565b5050565b60606000611bfd8361147a565b67ffffffffffffffff811115611c1657611c156136a2565b5b604051908082528060200260200182016040528015611c445781602001602082028036833780820191505090505b5090506000805b611c548561147a565b811015611ca157611c658582610ead565b838380611c719061446b565b945081518110611c8457611c83613fdc565b5b60200260200101818152505080611c9a9061446b565b9050611c4b565b508192505050919050565b611cbd611cb76121aa565b836123d3565b611cfc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cf390613e52565b60405180910390fd5b611d088484848461293e565b50505050565b600e60009054906101000a900460ff1681565b6060611d2c826121b2565b611d6b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d6290614525565b60405180910390fd5b601560149054906101000a900460ff16611e1157600d8054611d8c90613bf9565b80601f0160208091040260200160405190810160405280929190818152602001828054611db890613bf9565b8015611e055780601f10611dda57610100808354040283529160200191611e05565b820191906000526020600020905b815481529060010190602001808311611de857829003601f168201915b50505050509050611e3f565b600c611e1c8361299a565b604051602001611e2d929190614661565b60405160208183030381529060405290505b919050565b60115481565b600181565b611e576121aa565b73ffffffffffffffffffffffffffffffffffffffff16611e7561163f565b73ffffffffffffffffffffffffffffffffffffffff1614611ecb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ec290613baa565b60405180910390fd5b80600e60006101000a81548160ff0219169083151502179055507f97f29479c7c44b7656bf427eb93a9dadcd6b4a3d900a3ac5df9de43a867de5d081604051611f1491906133ed565b60405180910390a150565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611fbb6121aa565b73ffffffffffffffffffffffffffffffffffffffff16611fd961163f565b73ffffffffffffffffffffffffffffffffffffffff161461202f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161202690613baa565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361209e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161209590614702565b60405180910390fd5b6120a78161270c565b50565b6120b26121aa565b73ffffffffffffffffffffffffffffffffffffffff166120d061163f565b73ffffffffffffffffffffffffffffffffffffffff1614612126576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161211d90613baa565b60405180910390fd5b80600d908051906020019061213c929190613296565b5050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b60008073ffffffffffffffffffffffffffffffffffffffff166003600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b816005600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661229183611227565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000600f5490506011546010546122ee9190614722565b82826122fa91906142e3565b111561233b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612332906147a2565b60405180910390fd5b6000821161237e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123759061480e565b60405180910390fd5b6000600190505b8281116123b4576123a184828461239c91906142e3565b612afa565b80806123ac9061446b565b915050612385565b5081600f60008282546123c791906142e3565b92505081905550505050565b60006123de826121b2565b61241d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612414906148a0565b60405180910390fd5b600061242883611227565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061249757508373ffffffffffffffffffffffffffffffffffffffff1661247f84610c1c565b73ffffffffffffffffffffffffffffffffffffffff16145b806124a857506124a78185611f1f565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166124d182611227565b73ffffffffffffffffffffffffffffffffffffffff1614612527576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161251e90614932565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612596576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161258d906149c4565b60405180910390fd5b6125a1838383612cdf565b6125ac60008261221e565b6001600460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546125fc9190614722565b925050819055506001600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461265391906142e3565b92505081905550816003600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612840576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161283790614a30565b60405180910390fd5b80600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161293191906133ed565b60405180910390a3505050565b6129498484846124b1565b61295584848484612de6565b612994576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161298b90614ac2565b60405180910390fd5b50505050565b6060600082036129e1576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612af5565b600082905060005b60008214612a135780806129fc9061446b565b915050600a82612a0c9190614b11565b91506129e9565b60008167ffffffffffffffff811115612a2f57612a2e6136a2565b5b6040519080825280601f01601f191660200182016040528015612a615781602001600182028036833780820191505090505b5090505b60008514612aee57600182612a7a9190614722565b9150600a85612a899190614b42565b6030612a9591906142e3565b60f81b818381518110612aab57612aaa613fdc565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612ae79190614b11565b9450612a65565b8093505050505b919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612b69576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b6090614bbf565b60405180910390fd5b612b72816121b2565b15612bb2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ba990614c2b565b60405180910390fd5b612bbe60008383612cdf565b6001600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612c0e91906142e3565b92505081905550816003600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060026000815480929190612c7a9061446b565b9190505550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612d2157612d1c81612f6d565b612d60565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614612d5f57612d5e8382612fb6565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612da257612d9d81613123565b612de1565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614612de057612ddf82826131f4565b5b5b505050565b6000612e078473ffffffffffffffffffffffffffffffffffffffff16613273565b15612f60578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612e306121aa565b8786866040518563ffffffff1660e01b8152600401612e529493929190614ca0565b6020604051808303816000875af1925050508015612e8e57506040513d601f19601f82011682018060405250810190612e8b9190614d01565b60015b612f10573d8060008114612ebe576040519150601f19603f3d011682016040523d82523d6000602084013e612ec3565b606091505b506000815103612f08576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612eff90614ac2565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612f65565b600190505b949350505050565b600980549050600a600083815260200190815260200160002081905550600981908060018154018082558091505060019003906000526020600020016000909190919091505550565b60006001612fc38461147a565b612fcd9190614722565b90506000600860008481526020019081526020016000205490508181146130b2576000600760008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600760008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816008600083815260200190815260200160002081905550505b6008600084815260200190815260200160002060009055600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b600060016009805490506131379190614722565b90506000600a600084815260200190815260200160002054905060006009838154811061316757613166613fdc565b5b90600052602060002001549050806009838154811061318957613188613fdc565b5b906000526020600020018190555081600a600083815260200190815260200160002081905550600a60008581526020019081526020016000206000905560098054806131d8576131d7614d2e565b5b6001900381819060005260206000200160009055905550505050565b60006131ff8361147a565b905081600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806008600084815260200190815260200160002081905550505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b8280546132a290613bf9565b90600052602060002090601f0160209004810192826132c4576000855561330b565b82601f106132dd57805160ff191683800117855561330b565b8280016001018555821561330b579182015b8281111561330a5782518255916020019190600101906132ef565b5b509050613318919061331c565b5090565b5b8082111561333557600081600090555060010161331d565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6133828161334d565b811461338d57600080fd5b50565b60008135905061339f81613379565b92915050565b6000602082840312156133bb576133ba613343565b5b60006133c984828501613390565b91505092915050565b60008115159050919050565b6133e7816133d2565b82525050565b600060208201905061340260008301846133de565b92915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061343382613408565b9050919050565b61344381613428565b811461344e57600080fd5b50565b6000813590506134608161343a565b92915050565b60006020828403121561347c5761347b613343565b5b600061348a84828501613451565b91505092915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156134cd5780820151818401526020810190506134b2565b838111156134dc576000848401525b50505050565b6000601f19601f8301169050919050565b60006134fe82613493565b613508818561349e565b93506135188185602086016134af565b613521816134e2565b840191505092915050565b6000602082019050818103600083015261354681846134f3565b905092915050565b6000819050919050565b6135618161354e565b811461356c57600080fd5b50565b60008135905061357e81613558565b92915050565b60006020828403121561359a57613599613343565b5b60006135a88482850161356f565b91505092915050565b6135ba81613428565b82525050565b60006020820190506135d560008301846135b1565b92915050565b600080604083850312156135f2576135f1613343565b5b600061360085828601613451565b92505060206136118582860161356f565b9150509250929050565b6136248161354e565b82525050565b600060208201905061363f600083018461361b565b92915050565b60008060006060848603121561365e5761365d613343565b5b600061366c86828701613451565b935050602061367d86828701613451565b925050604061368e8682870161356f565b9150509250925092565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6136da826134e2565b810181811067ffffffffffffffff821117156136f9576136f86136a2565b5b80604052505050565b600061370c613339565b905061371882826136d1565b919050565b600067ffffffffffffffff821115613738576137376136a2565b5b613741826134e2565b9050602081019050919050565b82818337600083830152505050565b600061377061376b8461371d565b613702565b90508281526020810184848401111561378c5761378b61369d565b5b61379784828561374e565b509392505050565b600082601f8301126137b4576137b3613698565b5b81356137c484826020860161375d565b91505092915050565b6000602082840312156137e3576137e2613343565b5b600082013567ffffffffffffffff81111561380157613800613348565b5b61380d8482850161379f565b91505092915050565b61381f816133d2565b811461382a57600080fd5b50565b60008135905061383c81613816565b92915050565b60006020828403121561385857613857613343565b5b60006138668482850161382d565b91505092915050565b600061387a82613428565b9050919050565b61388a8161386f565b811461389557600080fd5b50565b6000813590506138a781613881565b92915050565b6000602082840312156138c3576138c2613343565b5b60006138d184828501613898565b91505092915050565b600080604083850312156138f1576138f0613343565b5b60006138ff85828601613451565b92505060206139108582860161382d565b9150509250929050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b61394f8161354e565b82525050565b60006139618383613946565b60208301905092915050565b6000602082019050919050565b60006139858261391a565b61398f8185613925565b935061399a83613936565b8060005b838110156139cb5781516139b28882613955565b97506139bd8361396d565b92505060018101905061399e565b5085935050505092915050565b600060208201905081810360008301526139f2818461397a565b905092915050565b600067ffffffffffffffff821115613a1557613a146136a2565b5b613a1e826134e2565b9050602081019050919050565b6000613a3e613a39846139fa565b613702565b905082815260208101848484011115613a5a57613a5961369d565b5b613a6584828561374e565b509392505050565b600082601f830112613a8257613a81613698565b5b8135613a92848260208601613a2b565b91505092915050565b60008060008060808587031215613ab557613ab4613343565b5b6000613ac387828801613451565b9450506020613ad487828801613451565b9350506040613ae58782880161356f565b925050606085013567ffffffffffffffff811115613b0657613b05613348565b5b613b1287828801613a6d565b91505092959194509250565b60008060408385031215613b3557613b34613343565b5b6000613b4385828601613451565b9250506020613b5485828601613451565b9150509250929050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613b9460208361349e565b9150613b9f82613b5e565b602082019050919050565b60006020820190508181036000830152613bc381613b87565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680613c1157607f821691505b602082108103613c2457613c23613bca565b5b50919050565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b6000613c86602c8361349e565b9150613c9182613c2a565b604082019050919050565b60006020820190508181036000830152613cb581613c79565b9050919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b6000613d1860218361349e565b9150613d2382613cbc565b604082019050919050565b60006020820190508181036000830152613d4781613d0b565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b6000613daa60388361349e565b9150613db582613d4e565b604082019050919050565b60006020820190508181036000830152613dd981613d9d565b9050919050565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b6000613e3c60318361349e565b9150613e4782613de0565b604082019050919050565b60006020820190508181036000830152613e6b81613e2f565b9050919050565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b6000613ece602b8361349e565b9150613ed982613e72565b604082019050919050565b60006020820190508181036000830152613efd81613ec1565b9050919050565b600081905092915050565b50565b6000613f1f600083613f04565b9150613f2a82613f0f565b600082019050919050565b6000613f4082613f12565b9150819050919050565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b6000613fa6602c8361349e565b9150613fb182613f4a565b604082019050919050565b60006020820190508181036000830152613fd581613f99565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b600061406760298361349e565b91506140728261400b565b604082019050919050565b600060208201905081810360008301526140968161405a565b9050919050565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b60006140f9602a8361349e565b91506141048261409d565b604082019050919050565b60006020820190508181036000830152614128816140ec565b9050919050565b60008151905061413e81613558565b92915050565b60006020828403121561415a57614159613343565b5b60006141688482850161412f565b91505092915050565b600060408201905061418660008301856135b1565b614193602083018461361b565b9392505050565b6000815190506141a981613816565b92915050565b6000602082840312156141c5576141c4613343565b5b60006141d38482850161419a565b91505092915050565b7f5055424c49435f53414c455f4e4f545f41435449564500000000000000000000600082015250565b600061421260168361349e565b915061421d826141dc565b602082019050919050565b6000602082019050818103600083015261424181614205565b9050919050565b7f434f4e54524143545f43414c4c00000000000000000000000000000000000000600082015250565b600061427e600d8361349e565b915061428982614248565b602082019050919050565b600060208201905081810360008301526142ad81614271565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006142ee8261354e565b91506142f98361354e565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561432e5761432d6142b4565b5b828201905092915050565b7f455843454544535f4c494d495400000000000000000000000000000000000000600082015250565b600061436f600d8361349e565b915061437a82614339565b602082019050919050565b6000602082019050818103600083015261439e81614362565b9050919050565b60006143b08261354e565b91506143bb8361354e565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156143f4576143f36142b4565b5b828202905092915050565b7f494e434f52524543545f56414c55450000000000000000000000000000000000600082015250565b6000614435600f8361349e565b9150614440826143ff565b602082019050919050565b6000602082019050818103600083015261446481614428565b9050919050565b60006144768261354e565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036144a8576144a76142b4565b5b600182019050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b600061450f602f8361349e565b915061451a826144b3565b604082019050919050565b6000602082019050818103600083015261453e81614502565b9050919050565b600081905092915050565b60008190508160005260206000209050919050565b6000815461457281613bf9565b61457c8186614545565b9450600182166000811461459757600181146145a8576145db565b60ff198316865281860193506145db565b6145b185614550565b60005b838110156145d3578154818901526001820191506020810190506145b4565b838801955050505b50505092915050565b60006145ef82613493565b6145f98185614545565b93506146098185602086016134af565b80840191505092915050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b600061464b600583614545565b915061465682614615565b600582019050919050565b600061466d8285614565565b915061467982846145e4565b91506146848261463e565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006146ec60268361349e565b91506146f782614690565b604082019050919050565b6000602082019050818103600083015261471b816146df565b9050919050565b600061472d8261354e565b91506147388361354e565b92508282101561474b5761474a6142b4565b5b828203905092915050565b7f4d41585f535550504c595f524541434845440000000000000000000000000000600082015250565b600061478c60128361349e565b915061479782614756565b602082019050919050565b600060208201905081810360008301526147bb8161477f565b9050919050565b7f4d5553545f42455f475245415445525f30000000000000000000000000000000600082015250565b60006147f860118361349e565b9150614803826147c2565b602082019050919050565b60006020820190508181036000830152614827816147eb565b9050919050565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b600061488a602c8361349e565b91506148958261482e565b604082019050919050565b600060208201905081810360008301526148b98161487d565b9050919050565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b600061491c60298361349e565b9150614927826148c0565b604082019050919050565b6000602082019050818103600083015261494b8161490f565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006149ae60248361349e565b91506149b982614952565b604082019050919050565b600060208201905081810360008301526149dd816149a1565b9050919050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b6000614a1a60198361349e565b9150614a25826149e4565b602082019050919050565b60006020820190508181036000830152614a4981614a0d565b9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b6000614aac60328361349e565b9150614ab782614a50565b604082019050919050565b60006020820190508181036000830152614adb81614a9f565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000614b1c8261354e565b9150614b278361354e565b925082614b3757614b36614ae2565b5b828204905092915050565b6000614b4d8261354e565b9150614b588361354e565b925082614b6857614b67614ae2565b5b828206905092915050565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b6000614ba960208361349e565b9150614bb482614b73565b602082019050919050565b60006020820190508181036000830152614bd881614b9c565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b6000614c15601c8361349e565b9150614c2082614bdf565b602082019050919050565b60006020820190508181036000830152614c4481614c08565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000614c7282614c4b565b614c7c8185614c56565b9350614c8c8185602086016134af565b614c95816134e2565b840191505092915050565b6000608082019050614cb560008301876135b1565b614cc260208301866135b1565b614ccf604083018561361b565b8181036060830152614ce18184614c67565b905095945050505050565b600081519050614cfb81613379565b92915050565b600060208284031215614d1757614d16613343565b5b6000614d2584828501614cec565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fdfea26469706673582212203c03de565f0f904d010cb58bc457af4aa76c0bbd681e03f0083128ec9d0b406564736f6c634300080e0033

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.