ETH Price: $3,318.64 (-4.72%)
Gas: 3 Gwei

Token

Molly Dragon (MollyDragon)
 

Overview

Max Total Supply

222 MollyDragon

Holders

123

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 MollyDragon
0x2359cbc0d2fb0767dc97c8c92f428de8827d6a29
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:
MollyDragon

Compiler Version
v0.8.0+commit.c7dfd78e

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 13 : MollyDragon.sol
//SPDX-License-Identifier: UNLICENSED

pragma solidity ^0.8.0;

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

contract MollyDragon is ERC721, Ownable {
    using Strings for uint256;
    using ECDSA for bytes32;

    uint256 public maxSupply = 222;
    uint256 public currentSupply = 0;

    uint256 public freeMinted;

    //Placeholders
    address private freeAddress = address(0x61ffbC142ABBE0262f0A4871Af01a16F044f712f);
    address private wallet = address(0x17Ed15ea125055E0234a0022F05a1d942D489877);

    string private baseURI;
    string private notRevealedUri = "ipfs://QmY3x55nPRJk79c1jgWzATfmoGR2FS3ceEezGNgNcvzo42";

    bool public revealed = false;
    bool public baseLocked = false;
    bool public marketOpened = false;
    bool public freeMintOpened = false;

    mapping(address => uint256) public freeMintAccess;
    mapping(address => uint256) public freeMintLog;

    constructor()
        ERC721("Molly Dragon", "MollyDragon")
    {
        transferOwnership(msg.sender);
        initFree();
    }

    function setApprovalForAll(address operator, bool approved) public virtual override {
        require(marketOpened, 'The sale of NFTs on the marketplaces has not been opened yet.');
        _setApprovalForAll(_msgSender(), operator, approved);
    }

    function approve(address to, uint256 tokenId) public virtual override {
        require(marketOpened, 'The sale of NFTs on the marketplaces has not been opened yet.');
        address owner = ERC721.ownerOf(tokenId);
        require(to != owner, "ERC721: approval to current owner");

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

        _approve(to, tokenId);
    }

    function withdraw() public onlyOwner {
        uint256 _balance = address( this ).balance;
        payable( wallet ).transfer( _balance );
    }

    function setWallet(address _newWallet) public onlyOwner {
        wallet = _newWallet;
    }

    function totalSupply() public view returns (uint256) {
        return currentSupply;
    }

    function getFreeMintAmount( address _acc ) public view returns (uint256) {
        return freeMintAccess[ _acc ];
    }

    function getFreeMintLog( address _acc ) public view returns (uint256) {
        return freeMintLog[ _acc ];
    }

    function validateSignature( address _addr, bytes memory _s ) internal view returns (bool){
        bytes32 messageHash = keccak256(
            abi.encodePacked( address(this), msg.sender)
        );

        address signer = messageHash.toEthSignedMessageHash().recover(_s);

        if( _addr == signer ) {
            return true;
        } else {
            return false;
        }
    }

    //Batch minting
    function mintBatch(
        address to,
        uint256 baseId,
        uint256 number
    ) internal {

        for (uint256 i = 0; i < number; i++) {
            _safeMint(to, baseId + i);
        }

    }

    /**
        Claims tokens for free paying only gas fees
     */
    function freeMint(uint256 _amount, bytes calldata signature) external {
        //Free mint check
        require( 
            freeMintOpened, 
            "Free mint is not opened yet." 
        );

        //Check free mint signature
        require(
            validateSignature(
                freeAddress,
                signature
            ),
            "SIGNATURE_VALIDATION_FAILED"
        );

        uint256 supply = currentSupply;
        uint256 allowedAmount = 1;

        if( freeMintAccess[ msg.sender ] > 0 ) {
            allowedAmount = freeMintAccess[ msg.sender ];
        } 

        require( 
            freeMintLog[ msg.sender ] + _amount <= allowedAmount, 
            "You dont have permision to free mint that amount." 
        );

        require(
            supply + _amount <= maxSupply,
            "MollyDragon: Mint too large, exceeding the collection supply"
        );


        freeMintLog[ msg.sender ] += _amount;
        freeMinted += _amount;
        currentSupply += _amount;

        mintBatch(msg.sender, supply, _amount);
    }

    function forceMint(uint256 number, address receiver) external onlyOwner {
        uint256 supply = currentSupply;

        require(
            supply + number <= maxSupply,
            "MollyDragon: You can't mint more than max supply"
        );

        currentSupply += number;

        mintBatch( receiver, supply, number);
    }

    function ownerMint(uint256 number) external onlyOwner {
        uint256 supply = currentSupply;

        require(
            supply + number <= maxSupply,
            "MollyDragon: You can't mint more than max supply"
        );

        currentSupply += number;

        mintBatch(msg.sender, supply, number);
    }

    function openFreeMint() public onlyOwner {
        freeMintOpened = true;
    }
    
    function stopFreeMint() public onlyOwner {
        freeMintOpened = false;
    }

    function reveal() public onlyOwner {
        revealed = true;
    }

    function setNotRevealedURI(string memory _notRevealedURI) public onlyOwner {
        notRevealedUri = _notRevealedURI;
    }

    function setBaseURI(string memory _newBaseURI) public onlyOwner {
        require( baseLocked == false, "Base URI change has been disabled permanently");

        baseURI = _newBaseURI;
    }
    
    function setFreeMintAccess(address _acc, uint256 _am ) public onlyOwner {
        freeMintAccess[ _acc ] = _am;
    }

    //Lock base security - your nfts can never be changed.
    function lockBase() public onlyOwner {
        baseLocked = true;
    }

    //Once opened, it can not be closed again
    function openMarket() public onlyOwner {
        marketOpened = true;
    }

    // FACTORY
    function tokenURI(uint256 tokenId)
        public
        view
        override(ERC721)
        returns (string memory)
    {
        if (revealed == false) {
            return notRevealedUri;
        }

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

    function initFree() internal {
        freeMintAccess[ address(0x9723cC792c32dcA2744690f99103d095eA149E82) ] = 13;
        freeMintAccess[ address(0x08528a318b20e6213d1b848Baef381B3819c139b) ] =  8;
        freeMintAccess[ address(0xC15A3291144981E0Ae8b5444a299c201A0B08e87) ] =  6;
        freeMintAccess[ address(0xb36336BEB87613ffE60B28a6f94D8ab18973C10E) ] =  5;
        freeMintAccess[ address(0xC6Ac567b250b986acAE49A842Dad7865dA4be3a0) ] =  4;
        freeMintAccess[ address(0x4a9b4cea73531Ebbe64922639683574104e72E4E) ] =  4;
        freeMintAccess[ address(0xE718419c7DFF14Fc34AAbed3fcF4533BcF816960) ] =  4;
        freeMintAccess[ address(0xEa0bC5d9E7e7209Db6d154589EcB5A9eC834789B) ] =  3;
        freeMintAccess[ address(0x17Ed15ea125055E0234a0022F05a1d942D489877) ] =  3;
        freeMintAccess[ address(0x13d45928E955cCa32f4061E4D88b3D293FAB0256) ] =  3;
        freeMintAccess[ address(0x3C99046aA00B6e42a0Ec5858Bb2c9825cFf40A72) ] =  3;
        freeMintAccess[ address(0x919D316475DD4B894E2926Fe2c24B329d8Ade524) ] =  3;
        freeMintAccess[ address(0xb3CEd66d05495fdDD35e65CAa5Da7805755E51EF) ] =  2;
        freeMintAccess[ address(0xE0F6Bb10e17Ae2fEcD114d43603482fcEa5A9654) ] =  2;
        freeMintAccess[ address(0x0D57D42C7c784DA53325dA4d4287d39fcd9529de) ] =  2;
        freeMintAccess[ address(0x2132F5a587163540E0858c3258A6813d31fde053) ] =  2;
        freeMintAccess[ address(0x2388693c321842e2DcFdE252999E49f1d3EED79E) ] =  2;
        freeMintAccess[ address(0x5d0A692c1b83caE90a74bcD362d626A09b44FA98) ] =  2;
        freeMintAccess[ address(0xeE4B71C36d17b1c70E438F8204907C5e068229cc) ] =  2;
        freeMintAccess[ address(0x6B6065a8903906299552d6ED6358700AAe1c3a5C) ] =  2;
        freeMintAccess[ address(0xB91B6C1ccB75F93F06F3B5f41fECE1D691508146) ] =  2;
        freeMintAccess[ address(0x12C97D5933f2cFCAA64FdfcC45c89705c89Ca8f1) ] =  2;
        freeMintAccess[ address(0xE3506A409Fc03eD50D12143E98A8aDA2B8a40a5f) ] =  2;
        freeMintAccess[ address(0x562389B4B2b4c2123589800393D9c1c0051949C1) ] =  2;
        freeMintAccess[ address(0x481242c2d21289f5B7F92049a67979cb332571F0) ] =  2;
        freeMintAccess[ address(0x301daE850Cc3955275C878847C83FaC47F41a9Bd) ] =  2;
        freeMintAccess[ address(0x065735841E157d74Cd2D69A95d3E4C4003A76E28) ] =  2;
        freeMintAccess[ address(0x26b7e7a30E75A468cCcC8940D4C5829910aF5073) ] =  2;
        freeMintAccess[ address(0xaCff0c9930700e8aF89b4DA0360753941180C601) ] =  2;
        freeMintAccess[ address(0xacCB1e0eAa4d6bB3AB8268cFa8fB08d77F082655) ] =  2;
        freeMintAccess[ address(0x56E48cad4419A8a27DE6444f5839d85bCdBAfA27) ] =  2;
        freeMintAccess[ address(0x95bC2c07928A4AfC814c7A1b6036a3C684d5F7aF) ] =  2;
        freeMintAccess[ address(0x053e8f0723770206064b8B97A7746285fc175c71) ] =  2;
        freeMintAccess[ address(0xFC3eF7A7A6EedB8052F6CD9a61c798d794DE5C2C) ] =  2;
    }
 
}

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

pragma solidity ^0.8.0;

/**
 * @title Counters
 * @author Matt Condon (@shrugs)
 * @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number
 * of elements in a mapping, issuing ERC721 ids, or counting request ids.
 *
 * Include with `using Counters for Counters.Counter;`
 */
library Counters {
    struct Counter {
        // This variable should never be directly accessed by users of the library: interactions must be restricted to
        // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add
        // this feature: see https://github.com/ethereum/solidity/issues/4637
        uint256 _value; // default: 0
    }

    function current(Counter storage counter) internal view returns (uint256) {
        return counter._value;
    }

    function increment(Counter storage counter) internal {
        unchecked {
            counter._value += 1;
        }
    }

    function decrement(Counter storage counter) internal {
        uint256 value = counter._value;
        require(value > 0, "Counter: decrement overflow");
        unchecked {
            counter._value = value - 1;
        }
    }

    function reset(Counter storage counter) internal {
        counter._value = 0;
    }
}

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

pragma solidity ^0.8.0;

import "../Strings.sol";

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

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

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

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

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

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

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

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

        return (signer, RecoverError.NoError);
    }

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

File 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"
      ]
    }
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"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":"baseLocked","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"currentSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"number","type":"uint256"},{"internalType":"address","name":"receiver","type":"address"}],"name":"forceMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"},{"internalType":"bytes","name":"signature","type":"bytes"}],"name":"freeMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"freeMintAccess","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"freeMintLog","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"freeMintOpened","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"freeMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_acc","type":"address"}],"name":"getFreeMintAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_acc","type":"address"}],"name":"getFreeMintLog","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lockBase","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"marketOpened","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"openFreeMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"openMarket","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"number","type":"uint256"}],"name":"ownerMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"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":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_acc","type":"address"},{"internalType":"uint256","name":"_am","type":"uint256"}],"name":"setFreeMintAccess","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_notRevealedURI","type":"string"}],"name":"setNotRevealedURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_newWallet","type":"address"}],"name":"setWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"stopFreeMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

608060405260de60075560006008557361ffbc142abbe0262f0a4871af01a16f044f712f600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055507317ed15ea125055e0234a0022f05a1d942d489877600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060405180606001604052806035815260200162005dbc60359139600d9080519060200190620000e99291906200102d565b506000600e60006101000a81548160ff0219169083151502179055506000600e60016101000a81548160ff0219169083151502179055506000600e60026101000a81548160ff0219169083151502179055506000600e60036101000a81548160ff0219169083151502179055503480156200016357600080fd5b506040518060400160405280600c81526020017f4d6f6c6c7920447261676f6e00000000000000000000000000000000000000008152506040518060400160405280600b81526020017f4d6f6c6c79447261676f6e0000000000000000000000000000000000000000008152508160009080519060200190620001e89291906200102d565b508060019080519060200190620002019291906200102d565b50505062000224620002186200024b60201b60201c565b6200025360201b60201c565b62000235336200031960201b60201c565b620002456200042f60201b60201c565b62001241565b600033905090565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620003296200024b60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff166200034f6200100360201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1614620003a8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200039f90620011a9565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156200041b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620004129062001187565b60405180910390fd5b6200042c816200025360201b60201c565b50565b600d600f6000739723cc792c32dca2744690f99103d095ea149e8273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506008600f60007308528a318b20e6213d1b848baef381b3819c139b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506006600f600073c15a3291144981e0ae8b5444a299c201a0b08e8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506005600f600073b36336beb87613ffe60b28a6f94d8ab18973c10e73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506004600f600073c6ac567b250b986acae49a842dad7865da4be3a073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506004600f6000734a9b4cea73531ebbe64922639683574104e72e4e73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506004600f600073e718419c7dff14fc34aabed3fcf4533bcf81696073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506003600f600073ea0bc5d9e7e7209db6d154589ecb5a9ec834789b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506003600f60007317ed15ea125055e0234a0022f05a1d942d48987773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506003600f60007313d45928e955cca32f4061e4d88b3d293fab025673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506003600f6000733c99046aa00b6e42a0ec5858bb2c9825cff40a7273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506003600f600073919d316475dd4b894e2926fe2c24b329d8ade52473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506002600f600073b3ced66d05495fddd35e65caa5da7805755e51ef73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506002600f600073e0f6bb10e17ae2fecd114d43603482fcea5a965473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506002600f6000730d57d42c7c784da53325da4d4287d39fcd9529de73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506002600f6000732132f5a587163540e0858c3258a6813d31fde05373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506002600f6000732388693c321842e2dcfde252999e49f1d3eed79e73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506002600f6000735d0a692c1b83cae90a74bcd362d626a09b44fa9873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506002600f600073ee4b71c36d17b1c70e438f8204907c5e068229cc73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506002600f6000736b6065a8903906299552d6ed6358700aae1c3a5c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506002600f600073b91b6c1ccb75f93f06f3b5f41fece1d69150814673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506002600f60007312c97d5933f2cfcaa64fdfcc45c89705c89ca8f173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506002600f600073e3506a409fc03ed50d12143e98a8ada2b8a40a5f73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506002600f600073562389b4b2b4c2123589800393d9c1c0051949c173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506002600f600073481242c2d21289f5b7f92049a67979cb332571f073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506002600f600073301dae850cc3955275c878847c83fac47f41a9bd73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506002600f600073065735841e157d74cd2d69a95d3e4c4003a76e2873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506002600f60007326b7e7a30e75a468cccc8940d4c5829910af507373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506002600f600073acff0c9930700e8af89b4da0360753941180c60173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506002600f600073accb1e0eaa4d6bb3ab8268cfa8fb08d77f08265573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506002600f60007356e48cad4419a8a27de6444f5839d85bcdbafa2773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506002600f60007395bc2c07928a4afc814c7a1b6036a3c684d5f7af73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506002600f600073053e8f0723770206064b8b97a7746285fc175c7173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506002600f600073fc3ef7a7a6eedb8052f6cd9a61c798d794de5c2c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b8280546200103b90620011dc565b90600052602060002090601f0160209004810192826200105f5760008555620010ab565b82601f106200107a57805160ff1916838001178555620010ab565b82800160010185558215620010ab579182015b82811115620010aa5782518255916020019190600101906200108d565b5b509050620010ba9190620010be565b5090565b5b80821115620010d9576000816000905550600101620010bf565b5090565b6000620010ec602683620011cb565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b600062001154602083620011cb565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b60006020820190508181036000830152620011a281620010dd565b9050919050565b60006020820190508181036000830152620011c48162001145565b9050919050565b600082825260208201905092915050565b60006002820490506001821680620011f557607f821691505b602082108114156200120c576200120b62001212565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b614b6b80620012516000396000f3fe608060405234801561001057600080fd5b50600436106102535760003560e01c80638074be9811610146578063b88d4fde116100c3578063deaa59df11610087578063deaa59df14610664578063e985e9c514610680578063f19e75d4146106b0578063f2c4ce1e146106cc578063f2fde38b146106e8578063fb7ddd041461070457610253565b8063b88d4fde146105d2578063c87b56dd146105ee578063d10a1a2b1461061e578063d5abeb011461063c578063d8a4169e1461065a57610253565b806395d89b411161010a57806395d89b411461054057806397b9bd081461055e5780639cbb5b4a1461058e578063a22cb465146105ac578063a475b5dd146105c857610253565b80638074be981461049c578063817415c4146104b8578063882567ca146104d45780638da5cb5b146104f2578063916d31ff1461051057610253565b80633ccfd60b116101d45780636352211e116101985780636352211e146103f657806370a0823114610426578063715018a614610456578063771282f6146104605780637b0826101461047e57610253565b80633ccfd60b1461036657806342842e0e146103705780634c7091631461038c57806351830227146103bc57806355f804b3146103da57610253565b806318160ddd1161021b57806318160ddd1461030e5780631c03ceb51461032c578063215a41631461033657806323b872dd146103405780633606f5b91461035c57610253565b806301ffc9a71461025857806306fdde0314610288578063081812fc146102a6578063095ea7b3146102d65780630b2af42e146102f2575b600080fd5b610272600480360381019061026d91906135ec565b610734565b60405161027f91906142ec565b60405180910390f35b610290610816565b60405161029d919061434c565b60405180910390f35b6102c060048036038101906102bb919061367f565b6108a8565b6040516102cd9190614285565b60405180910390f35b6102f060048036038101906102eb91906135b0565b61092d565b005b61030c600480360381019061030791906135b0565b610a94565b005b610316610b58565b60405161032391906146ae565b60405180910390f35b610334610b62565b005b61033e610bfb565b005b61035a600480360381019061035591906134aa565b610c94565b005b610364610cf4565b005b61036e610d8d565b005b61038a600480360381019061038591906134aa565b610e7a565b005b6103a660048036038101906103a19190613445565b610e9a565b6040516103b391906146ae565b60405180910390f35b6103c4610eb2565b6040516103d191906142ec565b60405180910390f35b6103f460048036038101906103ef919061363e565b610ec5565b005b610410600480360381019061040b919061367f565b610fb1565b60405161041d9190614285565b60405180910390f35b610440600480360381019061043b9190613445565b611063565b60405161044d91906146ae565b60405180910390f35b61045e61111b565b005b6104686111a3565b60405161047591906146ae565b60405180910390f35b6104866111a9565b60405161049391906142ec565b60405180910390f35b6104b660048036038101906104b191906136a8565b6111bc565b005b6104d260048036038101906104cd91906136e4565b6112b8565b005b6104dc6115c5565b6040516104e991906142ec565b60405180910390f35b6104fa6115d8565b6040516105079190614285565b60405180910390f35b61052a60048036038101906105259190613445565b611602565b60405161053791906146ae565b60405180910390f35b61054861161a565b604051610555919061434c565b60405180910390f35b61057860048036038101906105739190613445565b6116ac565b60405161058591906146ae565b60405180910390f35b6105966116f5565b6040516105a391906142ec565b60405180910390f35b6105c660048036038101906105c19190613574565b611708565b005b6105d061176d565b005b6105ec60048036038101906105e791906134f9565b611806565b005b6106086004803603810190610603919061367f565b611868565b604051610615919061434c565b60405180910390f35b6106266119f9565b60405161063391906146ae565b60405180910390f35b6106446119ff565b60405161065191906146ae565b60405180910390f35b610662611a05565b005b61067e60048036038101906106799190613445565b611a9e565b005b61069a6004803603810190610695919061346e565b611b5e565b6040516106a791906142ec565b60405180910390f35b6106ca60048036038101906106c5919061367f565b611bf2565b005b6106e660048036038101906106e1919061363e565b611ced565b005b61070260048036038101906106fd9190613445565b611d83565b005b61071e60048036038101906107199190613445565b611e7b565b60405161072b91906146ae565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806107ff57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061080f575061080e82611ec4565b5b9050919050565b60606000805461082590614925565b80601f016020809104026020016040519081016040528092919081815260200182805461085190614925565b801561089e5780601f106108735761010080835404028352916020019161089e565b820191906000526020600020905b81548152906001019060200180831161088157829003601f168201915b5050505050905090565b60006108b382611f2e565b6108f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108e99061460e565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600e60029054906101000a900460ff1661097c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109739061452e565b60405180910390fd5b600061098782610fb1565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156109f8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109ef9061466e565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610a17611f9a565b73ffffffffffffffffffffffffffffffffffffffff161480610a465750610a4581610a40611f9a565b611b5e565b5b610a85576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a7c9061454e565b60405180910390fd5b610a8f8383611fa2565b505050565b610a9c611f9a565b73ffffffffffffffffffffffffffffffffffffffff16610aba6115d8565b73ffffffffffffffffffffffffffffffffffffffff1614610b10576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b079061462e565b60405180910390fd5b80600f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505050565b6000600854905090565b610b6a611f9a565b73ffffffffffffffffffffffffffffffffffffffff16610b886115d8565b73ffffffffffffffffffffffffffffffffffffffff1614610bde576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bd59061462e565b60405180910390fd5b6001600e60016101000a81548160ff021916908315150217905550565b610c03611f9a565b73ffffffffffffffffffffffffffffffffffffffff16610c216115d8565b73ffffffffffffffffffffffffffffffffffffffff1614610c77576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c6e9061462e565b60405180910390fd5b6001600e60036101000a81548160ff021916908315150217905550565b610ca5610c9f611f9a565b8261205b565b610ce4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cdb9061468e565b60405180910390fd5b610cef838383612139565b505050565b610cfc611f9a565b73ffffffffffffffffffffffffffffffffffffffff16610d1a6115d8565b73ffffffffffffffffffffffffffffffffffffffff1614610d70576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d679061462e565b60405180910390fd5b6001600e60026101000a81548160ff021916908315150217905550565b610d95611f9a565b73ffffffffffffffffffffffffffffffffffffffff16610db36115d8565b73ffffffffffffffffffffffffffffffffffffffff1614610e09576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e009061462e565b60405180910390fd5b6000479050600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610e76573d6000803e3d6000fd5b5050565b610e9583838360405180602001604052806000815250611806565b505050565b60106020528060005260406000206000915090505481565b600e60009054906101000a900460ff1681565b610ecd611f9a565b73ffffffffffffffffffffffffffffffffffffffff16610eeb6115d8565b73ffffffffffffffffffffffffffffffffffffffff1614610f41576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f389061462e565b60405180910390fd5b60001515600e60019054906101000a900460ff16151514610f97576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f8e9061438e565b60405180910390fd5b80600c9080519060200190610fad92919061321f565b5050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561105a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110519061458e565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156110d4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110cb9061456e565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611123611f9a565b73ffffffffffffffffffffffffffffffffffffffff166111416115d8565b73ffffffffffffffffffffffffffffffffffffffff1614611197576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161118e9061462e565b60405180910390fd5b6111a16000612395565b565b60085481565b600e60019054906101000a900460ff1681565b6111c4611f9a565b73ffffffffffffffffffffffffffffffffffffffff166111e26115d8565b73ffffffffffffffffffffffffffffffffffffffff1614611238576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161122f9061462e565b60405180910390fd5b60006008549050600754838261124e919061479d565b111561128f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112869061444e565b60405180910390fd5b82600860008282546112a1919061479d565b925050819055506112b382828561245b565b505050565b600e60039054906101000a900460ff16611307576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112fe906145ce565b60405180910390fd5b611377600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1683838080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f82011690508083019250505050505050612494565b6113b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113ad9061450e565b60405180910390fd5b600060085490506000600190506000600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054111561144e57600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490505b8085601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461149a919061479d565b11156114db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114d29061440e565b60405180910390fd5b60075485836114ea919061479d565b111561152b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115229061446e565b60405180910390fd5b84601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461157a919061479d565b925050819055508460096000828254611593919061479d565b9250508190555084600860008282546115ac919061479d565b925050819055506115be33838761245b565b5050505050565b600e60029054906101000a900460ff1681565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600f6020528060005260406000206000915090505481565b60606001805461162990614925565b80601f016020809104026020016040519081016040528092919081815260200182805461165590614925565b80156116a25780601f10611677576101008083540402835291602001916116a2565b820191906000526020600020905b81548152906001019060200180831161168557829003601f168201915b5050505050905090565b6000601060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b600e60039054906101000a900460ff1681565b600e60029054906101000a900460ff16611757576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161174e9061452e565b60405180910390fd5b611769611762611f9a565b838361252d565b5050565b611775611f9a565b73ffffffffffffffffffffffffffffffffffffffff166117936115d8565b73ffffffffffffffffffffffffffffffffffffffff16146117e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117e09061462e565b60405180910390fd5b6001600e60006101000a81548160ff021916908315150217905550565b611817611811611f9a565b8361205b565b611856576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161184d9061468e565b60405180910390fd5b6118628484848461269a565b50505050565b606060001515600e60009054906101000a900460ff161515141561191857600d805461189390614925565b80601f01602080910402602001604051908101604052809291908181526020018280546118bf90614925565b801561190c5780601f106118e15761010080835404028352916020019161190c565b820191906000526020600020905b8154815290600101906020018083116118ef57829003601f168201915b505050505090506119f4565b6000600c805461192790614925565b80601f016020809104026020016040519081016040528092919081815260200182805461195390614925565b80156119a05780601f10611975576101008083540402835291602001916119a0565b820191906000526020600020905b81548152906001019060200180831161198357829003601f168201915b5050505050905060008151116119c557604051806020016040528060008152506119f0565b806119cf846126f6565b6040516020016119e0929190614230565b6040516020818303038152906040525b9150505b919050565b60095481565b60075481565b611a0d611f9a565b73ffffffffffffffffffffffffffffffffffffffff16611a2b6115d8565b73ffffffffffffffffffffffffffffffffffffffff1614611a81576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a789061462e565b60405180910390fd5b6000600e60036101000a81548160ff021916908315150217905550565b611aa6611f9a565b73ffffffffffffffffffffffffffffffffffffffff16611ac46115d8565b73ffffffffffffffffffffffffffffffffffffffff1614611b1a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b119061462e565b60405180910390fd5b80600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611bfa611f9a565b73ffffffffffffffffffffffffffffffffffffffff16611c186115d8565b73ffffffffffffffffffffffffffffffffffffffff1614611c6e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c659061462e565b60405180910390fd5b600060085490506007548282611c84919061479d565b1115611cc5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cbc9061444e565b60405180910390fd5b8160086000828254611cd7919061479d565b92505081905550611ce933828461245b565b5050565b611cf5611f9a565b73ffffffffffffffffffffffffffffffffffffffff16611d136115d8565b73ffffffffffffffffffffffffffffffffffffffff1614611d69576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d609061462e565b60405180910390fd5b80600d9080519060200190611d7f92919061321f565b5050565b611d8b611f9a565b73ffffffffffffffffffffffffffffffffffffffff16611da96115d8565b73ffffffffffffffffffffffffffffffffffffffff1614611dff576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611df69061462e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611e6f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e66906143ee565b60405180910390fd5b611e7881612395565b50565b6000600f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661201583610fb1565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600061206682611f2e565b6120a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161209c906144ee565b60405180910390fd5b60006120b083610fb1565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061211f57508373ffffffffffffffffffffffffffffffffffffffff16612107846108a8565b73ffffffffffffffffffffffffffffffffffffffff16145b80612130575061212f8185611b5e565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661215982610fb1565b73ffffffffffffffffffffffffffffffffffffffff16146121af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121a69061464e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561221f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122169061448e565b60405180910390fd5b61222a8383836128a3565b612235600082611fa2565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546122859190614824565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546122dc919061479d565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60005b8181101561248e5761247b848285612476919061479d565b6128a8565b808061248690614957565b91505061245e565b50505050565b60008030336040516020016124aa929190614204565b60405160208183030381529060405280519060200120905060006124df846124d1846128c6565b6128f690919063ffffffff16565b90508073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16141561252057600192505050612527565b6000925050505b92915050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561259c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612593906144ae565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161268d91906142ec565b60405180910390a3505050565b6126a5848484612139565b6126b18484848461291d565b6126f0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126e7906143ce565b60405180910390fd5b50505050565b6060600082141561273e576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061289e565b600082905060005b6000821461277057808061275990614957565b915050600a8261276991906147f3565b9150612746565b60008167ffffffffffffffff8111156127b2577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156127e45781602001600182028036833780820191505090505b5090505b60008514612897576001826127fd9190614824565b9150600a8561280c91906149ce565b6030612818919061479d565b60f81b818381518110612854577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561289091906147f3565b94506127e8565b8093505050505b919050565b505050565b6128c2828260405180602001604052806000815250612ab4565b5050565b6000816040516020016128d9919061425f565b604051602081830303815290604052805190602001209050919050565b60008060006129058585612b0f565b9150915061291281612b92565b819250505092915050565b600061293e8473ffffffffffffffffffffffffffffffffffffffff16612ee3565b15612aa7578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612967611f9a565b8786866040518563ffffffff1660e01b815260040161298994939291906142a0565b602060405180830381600087803b1580156129a357600080fd5b505af19250505080156129d457506040513d601f19601f820116820180604052508101906129d19190613615565b60015b612a57573d8060008114612a04576040519150601f19603f3d011682016040523d82523d6000602084013e612a09565b606091505b50600081511415612a4f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a46906143ce565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612aac565b600190505b949350505050565b612abe8383612ef6565b612acb600084848461291d565b612b0a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b01906143ce565b60405180910390fd5b505050565b600080604183511415612b515760008060006020860151925060408601519150606086015160001a9050612b45878285856130c4565b94509450505050612b8b565b604083511415612b82576000806020850151915060408501519050612b778683836131d1565b935093505050612b8b565b60006002915091505b9250929050565b60006004811115612bcc577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b816004811115612c05577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b1415612c1057612ee0565b60016004811115612c4a577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b816004811115612c83577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b1415612cc4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612cbb9061436e565b60405180910390fd5b60026004811115612cfe577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b816004811115612d37577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b1415612d78576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d6f906143ae565b60405180910390fd5b60036004811115612db2577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b816004811115612deb577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b1415612e2c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e23906144ce565b60405180910390fd5b600480811115612e65577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b816004811115612e9e577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b1415612edf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ed6906145ae565b60405180910390fd5b5b50565b600080823b905060008111915050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612f66576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f5d906145ee565b60405180910390fd5b612f6f81611f2e565b15612faf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612fa69061442e565b60405180910390fd5b612fbb600083836128a3565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461300b919061479d565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a08360001c11156130ff5760006003915091506131c8565b601b8560ff16141580156131175750601c8560ff1614155b156131295760006004915091506131c8565b60006001878787876040516000815260200160405260405161314e9493929190614307565b6020604051602081039080840390855afa158015613170573d6000803e3d6000fd5b505050602060405103519050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156131bf576000600192509250506131c8565b80600092509250505b94509492505050565b6000806000807f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff85169150601b8560ff1c019050613211878288856130c4565b935093505050935093915050565b82805461322b90614925565b90600052602060002090601f01602090048101928261324d5760008555613294565b82601f1061326657805160ff1916838001178555613294565b82800160010185558215613294579182015b82811115613293578251825591602001919060010190613278565b5b5090506132a191906132a5565b5090565b5b808211156132be5760008160009055506001016132a6565b5090565b60006132d56132d0846146fa565b6146c9565b9050828152602081018484840111156132ed57600080fd5b6132f88482856148e3565b509392505050565b600061331361330e8461472a565b6146c9565b90508281526020810184848401111561332b57600080fd5b6133368482856148e3565b509392505050565b60008135905061334d81614ad9565b92915050565b60008135905061336281614af0565b92915050565b60008135905061337781614b07565b92915050565b60008151905061338c81614b07565b92915050565b60008083601f8401126133a457600080fd5b8235905067ffffffffffffffff8111156133bd57600080fd5b6020830191508360018202830111156133d557600080fd5b9250929050565b600082601f8301126133ed57600080fd5b81356133fd8482602086016132c2565b91505092915050565b600082601f83011261341757600080fd5b8135613427848260208601613300565b91505092915050565b60008135905061343f81614b1e565b92915050565b60006020828403121561345757600080fd5b60006134658482850161333e565b91505092915050565b6000806040838503121561348157600080fd5b600061348f8582860161333e565b92505060206134a08582860161333e565b9150509250929050565b6000806000606084860312156134bf57600080fd5b60006134cd8682870161333e565b93505060206134de8682870161333e565b92505060406134ef86828701613430565b9150509250925092565b6000806000806080858703121561350f57600080fd5b600061351d8782880161333e565b945050602061352e8782880161333e565b935050604061353f87828801613430565b925050606085013567ffffffffffffffff81111561355c57600080fd5b613568878288016133dc565b91505092959194509250565b6000806040838503121561358757600080fd5b60006135958582860161333e565b92505060206135a685828601613353565b9150509250929050565b600080604083850312156135c357600080fd5b60006135d18582860161333e565b92505060206135e285828601613430565b9150509250929050565b6000602082840312156135fe57600080fd5b600061360c84828501613368565b91505092915050565b60006020828403121561362757600080fd5b60006136358482850161337d565b91505092915050565b60006020828403121561365057600080fd5b600082013567ffffffffffffffff81111561366a57600080fd5b61367684828501613406565b91505092915050565b60006020828403121561369157600080fd5b600061369f84828501613430565b91505092915050565b600080604083850312156136bb57600080fd5b60006136c985828601613430565b92505060206136da8582860161333e565b9150509250929050565b6000806000604084860312156136f957600080fd5b600061370786828701613430565b935050602084013567ffffffffffffffff81111561372457600080fd5b61373086828701613392565b92509250509250925092565b61374581614858565b82525050565b61375c61375782614858565b6149a0565b82525050565b61376b8161486a565b82525050565b61377a81614876565b82525050565b61379161378c82614876565b6149b2565b82525050565b60006137a28261475a565b6137ac8185614770565b93506137bc8185602086016148f2565b6137c581614abb565b840191505092915050565b60006137db82614765565b6137e58185614781565b93506137f58185602086016148f2565b6137fe81614abb565b840191505092915050565b600061381482614765565b61381e8185614792565b935061382e8185602086016148f2565b80840191505092915050565b6000613847601883614781565b91507f45434453413a20696e76616c6964207369676e617475726500000000000000006000830152602082019050919050565b6000613887602d83614781565b91507f4261736520555249206368616e676520686173206265656e2064697361626c6560008301527f64207065726d616e656e746c79000000000000000000000000000000000000006020830152604082019050919050565b60006138ed601f83614781565b91507f45434453413a20696e76616c6964207369676e6174757265206c656e677468006000830152602082019050919050565b600061392d601c83614792565b91507f19457468657265756d205369676e6564204d6573736167653a0a3332000000006000830152601c82019050919050565b600061396d603283614781565b91507f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008301527f63656976657220696d706c656d656e74657200000000000000000000000000006020830152604082019050919050565b60006139d3602683614781565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613a39603183614781565b91507f596f7520646f6e742068617665207065726d6973696f6e20746f20667265652060008301527f6d696e74207468617420616d6f756e742e0000000000000000000000000000006020830152604082019050919050565b6000613a9f601c83614781565b91507f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006000830152602082019050919050565b6000613adf603083614781565b91507f4d6f6c6c79447261676f6e3a20596f752063616e2774206d696e74206d6f726560008301527f207468616e206d617820737570706c79000000000000000000000000000000006020830152604082019050919050565b6000613b45603c83614781565b91507f4d6f6c6c79447261676f6e3a204d696e7420746f6f206c617267652c2065786360008301527f656564696e672074686520636f6c6c656374696f6e20737570706c79000000006020830152604082019050919050565b6000613bab602483614781565b91507f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613c11601983614781565b91507f4552433732313a20617070726f766520746f2063616c6c6572000000000000006000830152602082019050919050565b6000613c51602283614781565b91507f45434453413a20696e76616c6964207369676e6174757265202773272076616c60008301527f75650000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613cb7602c83614781565b91507f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b6000613d1d601b83614781565b91507f5349474e41545552455f56414c49444154494f4e5f4641494c454400000000006000830152602082019050919050565b6000613d5d603d83614781565b91507f5468652073616c65206f66204e465473206f6e20746865206d61726b6574706c60008301527f6163657320686173206e6f74206265656e206f70656e6564207965742e0000006020830152604082019050919050565b6000613dc3603883614781565b91507f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008301527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006020830152604082019050919050565b6000613e29602a83614781565b91507f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008301527f726f2061646472657373000000000000000000000000000000000000000000006020830152604082019050919050565b6000613e8f602983614781565b91507f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008301527f656e7420746f6b656e00000000000000000000000000000000000000000000006020830152604082019050919050565b6000613ef5602283614781565b91507f45434453413a20696e76616c6964207369676e6174757265202776272076616c60008301527f75650000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613f5b601c83614781565b91507f46726565206d696e74206973206e6f74206f70656e6564207965742e000000006000830152602082019050919050565b6000613f9b602083614781565b91507f4552433732313a206d696e7420746f20746865207a65726f20616464726573736000830152602082019050919050565b6000613fdb602c83614781565b91507f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b6000614041600583614792565b91507f2e6a736f6e0000000000000000000000000000000000000000000000000000006000830152600582019050919050565b6000614081602083614781565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b60006140c1602983614781565b91507f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008301527f73206e6f74206f776e00000000000000000000000000000000000000000000006020830152604082019050919050565b6000614127602183614781565b91507f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008301527f72000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061418d603183614781565b91507f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008301527f776e6572206e6f7220617070726f7665640000000000000000000000000000006020830152604082019050919050565b6141ef816148cc565b82525050565b6141fe816148d6565b82525050565b6000614210828561374b565b601482019150614220828461374b565b6014820191508190509392505050565b600061423c8285613809565b91506142488284613809565b915061425382614034565b91508190509392505050565b600061426a82613920565b91506142768284613780565b60208201915081905092915050565b600060208201905061429a600083018461373c565b92915050565b60006080820190506142b5600083018761373c565b6142c2602083018661373c565b6142cf60408301856141e6565b81810360608301526142e18184613797565b905095945050505050565b60006020820190506143016000830184613762565b92915050565b600060808201905061431c6000830187613771565b61432960208301866141f5565b6143366040830185613771565b6143436060830184613771565b95945050505050565b6000602082019050818103600083015261436681846137d0565b905092915050565b600060208201905081810360008301526143878161383a565b9050919050565b600060208201905081810360008301526143a78161387a565b9050919050565b600060208201905081810360008301526143c7816138e0565b9050919050565b600060208201905081810360008301526143e781613960565b9050919050565b60006020820190508181036000830152614407816139c6565b9050919050565b6000602082019050818103600083015261442781613a2c565b9050919050565b6000602082019050818103600083015261444781613a92565b9050919050565b6000602082019050818103600083015261446781613ad2565b9050919050565b6000602082019050818103600083015261448781613b38565b9050919050565b600060208201905081810360008301526144a781613b9e565b9050919050565b600060208201905081810360008301526144c781613c04565b9050919050565b600060208201905081810360008301526144e781613c44565b9050919050565b6000602082019050818103600083015261450781613caa565b9050919050565b6000602082019050818103600083015261452781613d10565b9050919050565b6000602082019050818103600083015261454781613d50565b9050919050565b6000602082019050818103600083015261456781613db6565b9050919050565b6000602082019050818103600083015261458781613e1c565b9050919050565b600060208201905081810360008301526145a781613e82565b9050919050565b600060208201905081810360008301526145c781613ee8565b9050919050565b600060208201905081810360008301526145e781613f4e565b9050919050565b6000602082019050818103600083015261460781613f8e565b9050919050565b6000602082019050818103600083015261462781613fce565b9050919050565b6000602082019050818103600083015261464781614074565b9050919050565b60006020820190508181036000830152614667816140b4565b9050919050565b600060208201905081810360008301526146878161411a565b9050919050565b600060208201905081810360008301526146a781614180565b9050919050565b60006020820190506146c360008301846141e6565b92915050565b6000604051905081810181811067ffffffffffffffff821117156146f0576146ef614a8c565b5b8060405250919050565b600067ffffffffffffffff82111561471557614714614a8c565b5b601f19601f8301169050602081019050919050565b600067ffffffffffffffff82111561474557614744614a8c565b5b601f19601f8301169050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b60006147a8826148cc565b91506147b3836148cc565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156147e8576147e76149ff565b5b828201905092915050565b60006147fe826148cc565b9150614809836148cc565b92508261481957614818614a2e565b5b828204905092915050565b600061482f826148cc565b915061483a836148cc565b92508282101561484d5761484c6149ff565b5b828203905092915050565b6000614863826148ac565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b82818337600083830152505050565b60005b838110156149105780820151818401526020810190506148f5565b8381111561491f576000848401525b50505050565b6000600282049050600182168061493d57607f821691505b6020821081141561495157614950614a5d565b5b50919050565b6000614962826148cc565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614995576149946149ff565b5b600182019050919050565b60006149ab826149bc565b9050919050565b6000819050919050565b60006149c782614acc565b9050919050565b60006149d9826148cc565b91506149e4836148cc565b9250826149f4576149f3614a2e565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b614ae281614858565b8114614aed57600080fd5b50565b614af98161486a565b8114614b0457600080fd5b50565b614b1081614880565b8114614b1b57600080fd5b50565b614b27816148cc565b8114614b3257600080fd5b5056fea2646970667358221220b516ce257c12761a6c4461227c3c910f3c29070ad57b55b823aebfef22ceb3fd64736f6c63430008000033697066733a2f2f516d59337835356e50524a6b373963316a67577a4154666d6f475232465333636545657a474e674e63767a6f3432

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106102535760003560e01c80638074be9811610146578063b88d4fde116100c3578063deaa59df11610087578063deaa59df14610664578063e985e9c514610680578063f19e75d4146106b0578063f2c4ce1e146106cc578063f2fde38b146106e8578063fb7ddd041461070457610253565b8063b88d4fde146105d2578063c87b56dd146105ee578063d10a1a2b1461061e578063d5abeb011461063c578063d8a4169e1461065a57610253565b806395d89b411161010a57806395d89b411461054057806397b9bd081461055e5780639cbb5b4a1461058e578063a22cb465146105ac578063a475b5dd146105c857610253565b80638074be981461049c578063817415c4146104b8578063882567ca146104d45780638da5cb5b146104f2578063916d31ff1461051057610253565b80633ccfd60b116101d45780636352211e116101985780636352211e146103f657806370a0823114610426578063715018a614610456578063771282f6146104605780637b0826101461047e57610253565b80633ccfd60b1461036657806342842e0e146103705780634c7091631461038c57806351830227146103bc57806355f804b3146103da57610253565b806318160ddd1161021b57806318160ddd1461030e5780631c03ceb51461032c578063215a41631461033657806323b872dd146103405780633606f5b91461035c57610253565b806301ffc9a71461025857806306fdde0314610288578063081812fc146102a6578063095ea7b3146102d65780630b2af42e146102f2575b600080fd5b610272600480360381019061026d91906135ec565b610734565b60405161027f91906142ec565b60405180910390f35b610290610816565b60405161029d919061434c565b60405180910390f35b6102c060048036038101906102bb919061367f565b6108a8565b6040516102cd9190614285565b60405180910390f35b6102f060048036038101906102eb91906135b0565b61092d565b005b61030c600480360381019061030791906135b0565b610a94565b005b610316610b58565b60405161032391906146ae565b60405180910390f35b610334610b62565b005b61033e610bfb565b005b61035a600480360381019061035591906134aa565b610c94565b005b610364610cf4565b005b61036e610d8d565b005b61038a600480360381019061038591906134aa565b610e7a565b005b6103a660048036038101906103a19190613445565b610e9a565b6040516103b391906146ae565b60405180910390f35b6103c4610eb2565b6040516103d191906142ec565b60405180910390f35b6103f460048036038101906103ef919061363e565b610ec5565b005b610410600480360381019061040b919061367f565b610fb1565b60405161041d9190614285565b60405180910390f35b610440600480360381019061043b9190613445565b611063565b60405161044d91906146ae565b60405180910390f35b61045e61111b565b005b6104686111a3565b60405161047591906146ae565b60405180910390f35b6104866111a9565b60405161049391906142ec565b60405180910390f35b6104b660048036038101906104b191906136a8565b6111bc565b005b6104d260048036038101906104cd91906136e4565b6112b8565b005b6104dc6115c5565b6040516104e991906142ec565b60405180910390f35b6104fa6115d8565b6040516105079190614285565b60405180910390f35b61052a60048036038101906105259190613445565b611602565b60405161053791906146ae565b60405180910390f35b61054861161a565b604051610555919061434c565b60405180910390f35b61057860048036038101906105739190613445565b6116ac565b60405161058591906146ae565b60405180910390f35b6105966116f5565b6040516105a391906142ec565b60405180910390f35b6105c660048036038101906105c19190613574565b611708565b005b6105d061176d565b005b6105ec60048036038101906105e791906134f9565b611806565b005b6106086004803603810190610603919061367f565b611868565b604051610615919061434c565b60405180910390f35b6106266119f9565b60405161063391906146ae565b60405180910390f35b6106446119ff565b60405161065191906146ae565b60405180910390f35b610662611a05565b005b61067e60048036038101906106799190613445565b611a9e565b005b61069a6004803603810190610695919061346e565b611b5e565b6040516106a791906142ec565b60405180910390f35b6106ca60048036038101906106c5919061367f565b611bf2565b005b6106e660048036038101906106e1919061363e565b611ced565b005b61070260048036038101906106fd9190613445565b611d83565b005b61071e60048036038101906107199190613445565b611e7b565b60405161072b91906146ae565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806107ff57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061080f575061080e82611ec4565b5b9050919050565b60606000805461082590614925565b80601f016020809104026020016040519081016040528092919081815260200182805461085190614925565b801561089e5780601f106108735761010080835404028352916020019161089e565b820191906000526020600020905b81548152906001019060200180831161088157829003601f168201915b5050505050905090565b60006108b382611f2e565b6108f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108e99061460e565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600e60029054906101000a900460ff1661097c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109739061452e565b60405180910390fd5b600061098782610fb1565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156109f8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109ef9061466e565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610a17611f9a565b73ffffffffffffffffffffffffffffffffffffffff161480610a465750610a4581610a40611f9a565b611b5e565b5b610a85576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a7c9061454e565b60405180910390fd5b610a8f8383611fa2565b505050565b610a9c611f9a565b73ffffffffffffffffffffffffffffffffffffffff16610aba6115d8565b73ffffffffffffffffffffffffffffffffffffffff1614610b10576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b079061462e565b60405180910390fd5b80600f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505050565b6000600854905090565b610b6a611f9a565b73ffffffffffffffffffffffffffffffffffffffff16610b886115d8565b73ffffffffffffffffffffffffffffffffffffffff1614610bde576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bd59061462e565b60405180910390fd5b6001600e60016101000a81548160ff021916908315150217905550565b610c03611f9a565b73ffffffffffffffffffffffffffffffffffffffff16610c216115d8565b73ffffffffffffffffffffffffffffffffffffffff1614610c77576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c6e9061462e565b60405180910390fd5b6001600e60036101000a81548160ff021916908315150217905550565b610ca5610c9f611f9a565b8261205b565b610ce4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cdb9061468e565b60405180910390fd5b610cef838383612139565b505050565b610cfc611f9a565b73ffffffffffffffffffffffffffffffffffffffff16610d1a6115d8565b73ffffffffffffffffffffffffffffffffffffffff1614610d70576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d679061462e565b60405180910390fd5b6001600e60026101000a81548160ff021916908315150217905550565b610d95611f9a565b73ffffffffffffffffffffffffffffffffffffffff16610db36115d8565b73ffffffffffffffffffffffffffffffffffffffff1614610e09576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e009061462e565b60405180910390fd5b6000479050600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610e76573d6000803e3d6000fd5b5050565b610e9583838360405180602001604052806000815250611806565b505050565b60106020528060005260406000206000915090505481565b600e60009054906101000a900460ff1681565b610ecd611f9a565b73ffffffffffffffffffffffffffffffffffffffff16610eeb6115d8565b73ffffffffffffffffffffffffffffffffffffffff1614610f41576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f389061462e565b60405180910390fd5b60001515600e60019054906101000a900460ff16151514610f97576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f8e9061438e565b60405180910390fd5b80600c9080519060200190610fad92919061321f565b5050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561105a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110519061458e565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156110d4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110cb9061456e565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611123611f9a565b73ffffffffffffffffffffffffffffffffffffffff166111416115d8565b73ffffffffffffffffffffffffffffffffffffffff1614611197576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161118e9061462e565b60405180910390fd5b6111a16000612395565b565b60085481565b600e60019054906101000a900460ff1681565b6111c4611f9a565b73ffffffffffffffffffffffffffffffffffffffff166111e26115d8565b73ffffffffffffffffffffffffffffffffffffffff1614611238576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161122f9061462e565b60405180910390fd5b60006008549050600754838261124e919061479d565b111561128f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112869061444e565b60405180910390fd5b82600860008282546112a1919061479d565b925050819055506112b382828561245b565b505050565b600e60039054906101000a900460ff16611307576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112fe906145ce565b60405180910390fd5b611377600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1683838080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f82011690508083019250505050505050612494565b6113b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113ad9061450e565b60405180910390fd5b600060085490506000600190506000600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054111561144e57600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490505b8085601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461149a919061479d565b11156114db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114d29061440e565b60405180910390fd5b60075485836114ea919061479d565b111561152b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115229061446e565b60405180910390fd5b84601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461157a919061479d565b925050819055508460096000828254611593919061479d565b9250508190555084600860008282546115ac919061479d565b925050819055506115be33838761245b565b5050505050565b600e60029054906101000a900460ff1681565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600f6020528060005260406000206000915090505481565b60606001805461162990614925565b80601f016020809104026020016040519081016040528092919081815260200182805461165590614925565b80156116a25780601f10611677576101008083540402835291602001916116a2565b820191906000526020600020905b81548152906001019060200180831161168557829003601f168201915b5050505050905090565b6000601060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b600e60039054906101000a900460ff1681565b600e60029054906101000a900460ff16611757576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161174e9061452e565b60405180910390fd5b611769611762611f9a565b838361252d565b5050565b611775611f9a565b73ffffffffffffffffffffffffffffffffffffffff166117936115d8565b73ffffffffffffffffffffffffffffffffffffffff16146117e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117e09061462e565b60405180910390fd5b6001600e60006101000a81548160ff021916908315150217905550565b611817611811611f9a565b8361205b565b611856576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161184d9061468e565b60405180910390fd5b6118628484848461269a565b50505050565b606060001515600e60009054906101000a900460ff161515141561191857600d805461189390614925565b80601f01602080910402602001604051908101604052809291908181526020018280546118bf90614925565b801561190c5780601f106118e15761010080835404028352916020019161190c565b820191906000526020600020905b8154815290600101906020018083116118ef57829003601f168201915b505050505090506119f4565b6000600c805461192790614925565b80601f016020809104026020016040519081016040528092919081815260200182805461195390614925565b80156119a05780601f10611975576101008083540402835291602001916119a0565b820191906000526020600020905b81548152906001019060200180831161198357829003601f168201915b5050505050905060008151116119c557604051806020016040528060008152506119f0565b806119cf846126f6565b6040516020016119e0929190614230565b6040516020818303038152906040525b9150505b919050565b60095481565b60075481565b611a0d611f9a565b73ffffffffffffffffffffffffffffffffffffffff16611a2b6115d8565b73ffffffffffffffffffffffffffffffffffffffff1614611a81576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a789061462e565b60405180910390fd5b6000600e60036101000a81548160ff021916908315150217905550565b611aa6611f9a565b73ffffffffffffffffffffffffffffffffffffffff16611ac46115d8565b73ffffffffffffffffffffffffffffffffffffffff1614611b1a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b119061462e565b60405180910390fd5b80600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611bfa611f9a565b73ffffffffffffffffffffffffffffffffffffffff16611c186115d8565b73ffffffffffffffffffffffffffffffffffffffff1614611c6e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c659061462e565b60405180910390fd5b600060085490506007548282611c84919061479d565b1115611cc5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cbc9061444e565b60405180910390fd5b8160086000828254611cd7919061479d565b92505081905550611ce933828461245b565b5050565b611cf5611f9a565b73ffffffffffffffffffffffffffffffffffffffff16611d136115d8565b73ffffffffffffffffffffffffffffffffffffffff1614611d69576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d609061462e565b60405180910390fd5b80600d9080519060200190611d7f92919061321f565b5050565b611d8b611f9a565b73ffffffffffffffffffffffffffffffffffffffff16611da96115d8565b73ffffffffffffffffffffffffffffffffffffffff1614611dff576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611df69061462e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611e6f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e66906143ee565b60405180910390fd5b611e7881612395565b50565b6000600f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661201583610fb1565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600061206682611f2e565b6120a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161209c906144ee565b60405180910390fd5b60006120b083610fb1565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061211f57508373ffffffffffffffffffffffffffffffffffffffff16612107846108a8565b73ffffffffffffffffffffffffffffffffffffffff16145b80612130575061212f8185611b5e565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661215982610fb1565b73ffffffffffffffffffffffffffffffffffffffff16146121af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121a69061464e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561221f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122169061448e565b60405180910390fd5b61222a8383836128a3565b612235600082611fa2565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546122859190614824565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546122dc919061479d565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60005b8181101561248e5761247b848285612476919061479d565b6128a8565b808061248690614957565b91505061245e565b50505050565b60008030336040516020016124aa929190614204565b60405160208183030381529060405280519060200120905060006124df846124d1846128c6565b6128f690919063ffffffff16565b90508073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16141561252057600192505050612527565b6000925050505b92915050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561259c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612593906144ae565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161268d91906142ec565b60405180910390a3505050565b6126a5848484612139565b6126b18484848461291d565b6126f0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126e7906143ce565b60405180910390fd5b50505050565b6060600082141561273e576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061289e565b600082905060005b6000821461277057808061275990614957565b915050600a8261276991906147f3565b9150612746565b60008167ffffffffffffffff8111156127b2577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156127e45781602001600182028036833780820191505090505b5090505b60008514612897576001826127fd9190614824565b9150600a8561280c91906149ce565b6030612818919061479d565b60f81b818381518110612854577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561289091906147f3565b94506127e8565b8093505050505b919050565b505050565b6128c2828260405180602001604052806000815250612ab4565b5050565b6000816040516020016128d9919061425f565b604051602081830303815290604052805190602001209050919050565b60008060006129058585612b0f565b9150915061291281612b92565b819250505092915050565b600061293e8473ffffffffffffffffffffffffffffffffffffffff16612ee3565b15612aa7578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612967611f9a565b8786866040518563ffffffff1660e01b815260040161298994939291906142a0565b602060405180830381600087803b1580156129a357600080fd5b505af19250505080156129d457506040513d601f19601f820116820180604052508101906129d19190613615565b60015b612a57573d8060008114612a04576040519150601f19603f3d011682016040523d82523d6000602084013e612a09565b606091505b50600081511415612a4f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a46906143ce565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612aac565b600190505b949350505050565b612abe8383612ef6565b612acb600084848461291d565b612b0a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b01906143ce565b60405180910390fd5b505050565b600080604183511415612b515760008060006020860151925060408601519150606086015160001a9050612b45878285856130c4565b94509450505050612b8b565b604083511415612b82576000806020850151915060408501519050612b778683836131d1565b935093505050612b8b565b60006002915091505b9250929050565b60006004811115612bcc577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b816004811115612c05577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b1415612c1057612ee0565b60016004811115612c4a577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b816004811115612c83577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b1415612cc4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612cbb9061436e565b60405180910390fd5b60026004811115612cfe577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b816004811115612d37577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b1415612d78576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d6f906143ae565b60405180910390fd5b60036004811115612db2577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b816004811115612deb577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b1415612e2c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e23906144ce565b60405180910390fd5b600480811115612e65577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b816004811115612e9e577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b1415612edf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ed6906145ae565b60405180910390fd5b5b50565b600080823b905060008111915050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612f66576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f5d906145ee565b60405180910390fd5b612f6f81611f2e565b15612faf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612fa69061442e565b60405180910390fd5b612fbb600083836128a3565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461300b919061479d565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a08360001c11156130ff5760006003915091506131c8565b601b8560ff16141580156131175750601c8560ff1614155b156131295760006004915091506131c8565b60006001878787876040516000815260200160405260405161314e9493929190614307565b6020604051602081039080840390855afa158015613170573d6000803e3d6000fd5b505050602060405103519050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156131bf576000600192509250506131c8565b80600092509250505b94509492505050565b6000806000807f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff85169150601b8560ff1c019050613211878288856130c4565b935093505050935093915050565b82805461322b90614925565b90600052602060002090601f01602090048101928261324d5760008555613294565b82601f1061326657805160ff1916838001178555613294565b82800160010185558215613294579182015b82811115613293578251825591602001919060010190613278565b5b5090506132a191906132a5565b5090565b5b808211156132be5760008160009055506001016132a6565b5090565b60006132d56132d0846146fa565b6146c9565b9050828152602081018484840111156132ed57600080fd5b6132f88482856148e3565b509392505050565b600061331361330e8461472a565b6146c9565b90508281526020810184848401111561332b57600080fd5b6133368482856148e3565b509392505050565b60008135905061334d81614ad9565b92915050565b60008135905061336281614af0565b92915050565b60008135905061337781614b07565b92915050565b60008151905061338c81614b07565b92915050565b60008083601f8401126133a457600080fd5b8235905067ffffffffffffffff8111156133bd57600080fd5b6020830191508360018202830111156133d557600080fd5b9250929050565b600082601f8301126133ed57600080fd5b81356133fd8482602086016132c2565b91505092915050565b600082601f83011261341757600080fd5b8135613427848260208601613300565b91505092915050565b60008135905061343f81614b1e565b92915050565b60006020828403121561345757600080fd5b60006134658482850161333e565b91505092915050565b6000806040838503121561348157600080fd5b600061348f8582860161333e565b92505060206134a08582860161333e565b9150509250929050565b6000806000606084860312156134bf57600080fd5b60006134cd8682870161333e565b93505060206134de8682870161333e565b92505060406134ef86828701613430565b9150509250925092565b6000806000806080858703121561350f57600080fd5b600061351d8782880161333e565b945050602061352e8782880161333e565b935050604061353f87828801613430565b925050606085013567ffffffffffffffff81111561355c57600080fd5b613568878288016133dc565b91505092959194509250565b6000806040838503121561358757600080fd5b60006135958582860161333e565b92505060206135a685828601613353565b9150509250929050565b600080604083850312156135c357600080fd5b60006135d18582860161333e565b92505060206135e285828601613430565b9150509250929050565b6000602082840312156135fe57600080fd5b600061360c84828501613368565b91505092915050565b60006020828403121561362757600080fd5b60006136358482850161337d565b91505092915050565b60006020828403121561365057600080fd5b600082013567ffffffffffffffff81111561366a57600080fd5b61367684828501613406565b91505092915050565b60006020828403121561369157600080fd5b600061369f84828501613430565b91505092915050565b600080604083850312156136bb57600080fd5b60006136c985828601613430565b92505060206136da8582860161333e565b9150509250929050565b6000806000604084860312156136f957600080fd5b600061370786828701613430565b935050602084013567ffffffffffffffff81111561372457600080fd5b61373086828701613392565b92509250509250925092565b61374581614858565b82525050565b61375c61375782614858565b6149a0565b82525050565b61376b8161486a565b82525050565b61377a81614876565b82525050565b61379161378c82614876565b6149b2565b82525050565b60006137a28261475a565b6137ac8185614770565b93506137bc8185602086016148f2565b6137c581614abb565b840191505092915050565b60006137db82614765565b6137e58185614781565b93506137f58185602086016148f2565b6137fe81614abb565b840191505092915050565b600061381482614765565b61381e8185614792565b935061382e8185602086016148f2565b80840191505092915050565b6000613847601883614781565b91507f45434453413a20696e76616c6964207369676e617475726500000000000000006000830152602082019050919050565b6000613887602d83614781565b91507f4261736520555249206368616e676520686173206265656e2064697361626c6560008301527f64207065726d616e656e746c79000000000000000000000000000000000000006020830152604082019050919050565b60006138ed601f83614781565b91507f45434453413a20696e76616c6964207369676e6174757265206c656e677468006000830152602082019050919050565b600061392d601c83614792565b91507f19457468657265756d205369676e6564204d6573736167653a0a3332000000006000830152601c82019050919050565b600061396d603283614781565b91507f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008301527f63656976657220696d706c656d656e74657200000000000000000000000000006020830152604082019050919050565b60006139d3602683614781565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613a39603183614781565b91507f596f7520646f6e742068617665207065726d6973696f6e20746f20667265652060008301527f6d696e74207468617420616d6f756e742e0000000000000000000000000000006020830152604082019050919050565b6000613a9f601c83614781565b91507f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006000830152602082019050919050565b6000613adf603083614781565b91507f4d6f6c6c79447261676f6e3a20596f752063616e2774206d696e74206d6f726560008301527f207468616e206d617820737570706c79000000000000000000000000000000006020830152604082019050919050565b6000613b45603c83614781565b91507f4d6f6c6c79447261676f6e3a204d696e7420746f6f206c617267652c2065786360008301527f656564696e672074686520636f6c6c656374696f6e20737570706c79000000006020830152604082019050919050565b6000613bab602483614781565b91507f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613c11601983614781565b91507f4552433732313a20617070726f766520746f2063616c6c6572000000000000006000830152602082019050919050565b6000613c51602283614781565b91507f45434453413a20696e76616c6964207369676e6174757265202773272076616c60008301527f75650000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613cb7602c83614781565b91507f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b6000613d1d601b83614781565b91507f5349474e41545552455f56414c49444154494f4e5f4641494c454400000000006000830152602082019050919050565b6000613d5d603d83614781565b91507f5468652073616c65206f66204e465473206f6e20746865206d61726b6574706c60008301527f6163657320686173206e6f74206265656e206f70656e6564207965742e0000006020830152604082019050919050565b6000613dc3603883614781565b91507f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008301527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006020830152604082019050919050565b6000613e29602a83614781565b91507f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008301527f726f2061646472657373000000000000000000000000000000000000000000006020830152604082019050919050565b6000613e8f602983614781565b91507f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008301527f656e7420746f6b656e00000000000000000000000000000000000000000000006020830152604082019050919050565b6000613ef5602283614781565b91507f45434453413a20696e76616c6964207369676e6174757265202776272076616c60008301527f75650000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613f5b601c83614781565b91507f46726565206d696e74206973206e6f74206f70656e6564207965742e000000006000830152602082019050919050565b6000613f9b602083614781565b91507f4552433732313a206d696e7420746f20746865207a65726f20616464726573736000830152602082019050919050565b6000613fdb602c83614781565b91507f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b6000614041600583614792565b91507f2e6a736f6e0000000000000000000000000000000000000000000000000000006000830152600582019050919050565b6000614081602083614781565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b60006140c1602983614781565b91507f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008301527f73206e6f74206f776e00000000000000000000000000000000000000000000006020830152604082019050919050565b6000614127602183614781565b91507f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008301527f72000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061418d603183614781565b91507f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008301527f776e6572206e6f7220617070726f7665640000000000000000000000000000006020830152604082019050919050565b6141ef816148cc565b82525050565b6141fe816148d6565b82525050565b6000614210828561374b565b601482019150614220828461374b565b6014820191508190509392505050565b600061423c8285613809565b91506142488284613809565b915061425382614034565b91508190509392505050565b600061426a82613920565b91506142768284613780565b60208201915081905092915050565b600060208201905061429a600083018461373c565b92915050565b60006080820190506142b5600083018761373c565b6142c2602083018661373c565b6142cf60408301856141e6565b81810360608301526142e18184613797565b905095945050505050565b60006020820190506143016000830184613762565b92915050565b600060808201905061431c6000830187613771565b61432960208301866141f5565b6143366040830185613771565b6143436060830184613771565b95945050505050565b6000602082019050818103600083015261436681846137d0565b905092915050565b600060208201905081810360008301526143878161383a565b9050919050565b600060208201905081810360008301526143a78161387a565b9050919050565b600060208201905081810360008301526143c7816138e0565b9050919050565b600060208201905081810360008301526143e781613960565b9050919050565b60006020820190508181036000830152614407816139c6565b9050919050565b6000602082019050818103600083015261442781613a2c565b9050919050565b6000602082019050818103600083015261444781613a92565b9050919050565b6000602082019050818103600083015261446781613ad2565b9050919050565b6000602082019050818103600083015261448781613b38565b9050919050565b600060208201905081810360008301526144a781613b9e565b9050919050565b600060208201905081810360008301526144c781613c04565b9050919050565b600060208201905081810360008301526144e781613c44565b9050919050565b6000602082019050818103600083015261450781613caa565b9050919050565b6000602082019050818103600083015261452781613d10565b9050919050565b6000602082019050818103600083015261454781613d50565b9050919050565b6000602082019050818103600083015261456781613db6565b9050919050565b6000602082019050818103600083015261458781613e1c565b9050919050565b600060208201905081810360008301526145a781613e82565b9050919050565b600060208201905081810360008301526145c781613ee8565b9050919050565b600060208201905081810360008301526145e781613f4e565b9050919050565b6000602082019050818103600083015261460781613f8e565b9050919050565b6000602082019050818103600083015261462781613fce565b9050919050565b6000602082019050818103600083015261464781614074565b9050919050565b60006020820190508181036000830152614667816140b4565b9050919050565b600060208201905081810360008301526146878161411a565b9050919050565b600060208201905081810360008301526146a781614180565b9050919050565b60006020820190506146c360008301846141e6565b92915050565b6000604051905081810181811067ffffffffffffffff821117156146f0576146ef614a8c565b5b8060405250919050565b600067ffffffffffffffff82111561471557614714614a8c565b5b601f19601f8301169050602081019050919050565b600067ffffffffffffffff82111561474557614744614a8c565b5b601f19601f8301169050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b60006147a8826148cc565b91506147b3836148cc565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156147e8576147e76149ff565b5b828201905092915050565b60006147fe826148cc565b9150614809836148cc565b92508261481957614818614a2e565b5b828204905092915050565b600061482f826148cc565b915061483a836148cc565b92508282101561484d5761484c6149ff565b5b828203905092915050565b6000614863826148ac565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b82818337600083830152505050565b60005b838110156149105780820151818401526020810190506148f5565b8381111561491f576000848401525b50505050565b6000600282049050600182168061493d57607f821691505b6020821081141561495157614950614a5d565b5b50919050565b6000614962826148cc565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614995576149946149ff565b5b600182019050919050565b60006149ab826149bc565b9050919050565b6000819050919050565b60006149c782614acc565b9050919050565b60006149d9826148cc565b91506149e4836148cc565b9250826149f4576149f3614a2e565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b614ae281614858565b8114614aed57600080fd5b50565b614af98161486a565b8114614b0457600080fd5b50565b614b1081614880565b8114614b1b57600080fd5b50565b614b27816148cc565b8114614b3257600080fd5b5056fea2646970667358221220b516ce257c12761a6c4461227c3c910f3c29070ad57b55b823aebfef22ceb3fd64736f6c63430008000033

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.