ETH Price: $2,947.23 (-3.84%)
Gas: 2 Gwei

Token

DGFamily (DGFAM)
 

Overview

Max Total Supply

3,908 DGFAM

Holders

1,574

Market

Volume (24H)

0.04 ETH

Min Price (24H)

$117.89 @ 0.040000 ETH

Max Price (24H)

$117.89 @ 0.040000 ETH
Balance
1 DGFAM
0x06dE4D1EB14c737d270CE8Aab4295411ba51f29E
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

DGFamily Boxes are digital collectibles (NFTs) that also serve as tiered membership to the exclusive Dolce&Gabbana universe.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
DGFamilyCollection

Compiler Version
v0.8.9+commit.e5eed63a

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 15 : DGFamilyCollection.sol
//SPDX-License-Identifier: UNLICENSED
pragma solidity 0.8.9;

import "openzeppelin-solidity/contracts/utils/math/SafeMath.sol";
import "openzeppelin-solidity/contracts/access/Ownable.sol";
import "openzeppelin-solidity/contracts/token/ERC721/extensions/ERC721URIStorage.sol";
import "openzeppelin-solidity/contracts/utils/Strings.sol";
import "../biconomy/EIP712MetaTransaction.sol";

/**
 * DGFamily Collection
 * https://drops.unxd.com/dgfamily
 */
contract DGFamilyCollection is
    ERC721URIStorage,
    Ownable,
    EIP712MetaTransaction
{
    using Strings for uint256;
    using SafeMath for uint256;

    string private baseURI;
    uint256 public constant MAX_PUBLIC_SUPPLY = 5000;
    uint256 public totalSupply;
    uint256 public royaltyPercentage;
    address public glassBoxContract;
    address public privateSaleContract;
    mapping(uint256 => bool) public privateSaleTokenIds;

    /*********************************
     *  EVENTS
     *********************************/
    event RoyaltyPercentageChanged(uint256 indexed newPercentage);
    event BaseUriUpdated(string indexed uri);

    /** @notice Initiator
     * @param tokenName The name of the NFT token
     * @param tokenSymbol The symbol of the NFT tokens
     * @param _baseUri The tokenURI base string
     * @param _royaltyPercentage Percentage of royalty to be taken per sale
     * @param _privateSaleTokenIds List of tokensIds to used in private sale
     */

    constructor(
        string memory tokenName,
        string memory tokenSymbol,
        string memory _baseUri,
        uint256 _royaltyPercentage,
        uint256[] memory _privateSaleTokenIds
    )
        ERC721(tokenName, tokenSymbol)
        EIP712MetaTransaction("NftCollectionBatch", "1")
    {
        baseURI = _baseUri;
        royaltyPercentage = _royaltyPercentage;
        for (uint256 i = 0; i < _privateSaleTokenIds.length; i = i.add(1)) {
            privateSaleTokenIds[_privateSaleTokenIds[i]] = true;
        }
    }

    modifier onlyGlassBoxOrOwnerOrPrivateSale() {
        require(
            glassBoxContract == msgSender() || owner() == msgSender() || privateSaleContract == msgSender(),
            "UNAUTHORIZED_ACCESS"
        );
        _;
    }

    /** @notice Set baseURI for metafile root path
     *  @dev Emits "BaseUriUpdates"
     * @param uri The new uri for tokenURI bsae
     */
    function setBaseURI(string memory uri) external onlyOwner {
        baseURI = uri;
        emit BaseUriUpdated(baseURI);
    }

    /** @notice Sets royalty percentage for secondary sale
     * @dev Emits "RoyaltyPercentageChanged"
     * @param _percentage The percentage of royalty to be deducted
     */
    function setRoyaltyPercentage(uint256 _percentage) external onlyOwner {
        royaltyPercentage = _percentage;

        emit RoyaltyPercentageChanged(royaltyPercentage);
    }

    /**
     * Mint the NFT.
     * @param destination wallet address
     * @return tokenId of newly minted nft.
     */
    function generate(address destination, uint256 tokenIndex)
        external
        onlyGlassBoxOrOwnerOrPrivateSale
        returns (uint256)
    {
        require(destination != address(0), "ADDRESS_CAN_NOT_BE_ZERO");
        require(
            totalSupply < MAX_PUBLIC_SUPPLY,
            "MAX_PUBLIC_SUPPLY_REACHED"
        );
        if ((privateSaleContract == msgSender()) || (owner() == msgSender())) {
            require(
                privateSaleTokenIds[tokenIndex],
                "PRIVATE_SALE_PERMISSION_DENIED"
            );
        }
        totalSupply = totalSupply.add(1);
        _safeMint(destination, tokenIndex);
        return tokenIndex;
    }

    /**
     * Get royalty amount at any specific price.
     * @param _price: price for sale.
     */
    function getRoyaltyInfo(uint256 _price)
        external
        view
        returns (uint256 royaltyAmount, address royaltyReceiver)
    {
        require(_price > 0, "PRICE_CAN_NOT_BE_ZERO");
        uint256 royalty = (_price.mul(royaltyPercentage)).div(100);

        return (royalty, owner());
    }

    /**
     * Set the glass box contract address which will be calling the generate NFT method.
     * @param _address: glass box contract address.
     */
    function setGlassBoxContract(address _address) external onlyOwner {
        glassBoxContract = _address;
    }

    /**
     * Set the private sale contract address which will be calling the generate NFT method.
     * @param _address: contract address.
     */
    function setPrivateSaleContract(address _address) external onlyOwner {
        privateSaleContract = _address;
    }

    /** @notice Provides token URI of the NFT
     * @param _tokenId The id of the specific NFT
     * @return The URI string for the token's metadata file
     */
    function tokenURI(uint256 _tokenId)
        public
        view
        override(ERC721URIStorage)
        returns (string memory)
    {
        if (totalSupply == 0) {
            return _baseURI();
        }
        require(_exists(_tokenId), "TOKEN_DOES_NOT_EXIST");

        /// @dev Convert string to bytes so we can check if it's empty or not.
        return string(abi.encodePacked(_baseURI(), _tokenId.toString()));
    }

    /**
     * @dev See {IERC721-transferFrom}.
     * @notice Only Trusted Marketplace contract can use
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        require(
            _isApprovedOrOwner(msgSender(), tokenId),
            "CALLER_NOT_APPROVED"
        );

        _transfer(from, to, tokenId);
    }

    /**
     * @dev See {IERC721-safeTransferFrom}.
     * @notice Only Trusted Marketplace contract can use
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public virtual override {
        require(
            _isApprovedOrOwner(msgSender(), tokenId),
            "CALLER_NOT_APPROVED"
        );
        _safeTransfer(from, to, tokenId, _data);
    }

    /// @dev Overridden function to prevent Owner from relinquishing Ownership by accident
    function renounceOwnership() public view override onlyOwner {
        revert("CAN_NOT_RENOUNCE_OWNERSHIP");
    }

    /**@dev Returns baseURI
     */

    function approve(address to, uint256 tokenId) public virtual override {
        address tokenOwner = ERC721.ownerOf(tokenId);
        require(to != tokenOwner, "ERC721:APPROVAL_TO_CURRENT_OWNER");

        require(
            msgSender() == tokenOwner ||
                isApprovedForAll(tokenOwner, msgSender()),
            "ERC721:APPROVE_CALLER_NOT_OWNER_OR_APPROVED_FOR_ALL"
        );

        _approve(to, tokenId);
    }

    /**
     * Get base URI for collection.
     */
    function _baseURI() internal view virtual override returns (string memory) {
        return baseURI;
    }
}

File 2 of 15 : EIP712MetaTransaction.sol
//SPDX-License-Identifier: MIT
pragma solidity 0.8.9;

import "./EIP712Base.sol";
import "openzeppelin-solidity/contracts/utils/math/SafeMath.sol";

contract EIP712MetaTransaction is EIP712Base {
    using SafeMath for uint256;
    bytes32 private constant META_TRANSACTION_TYPEHASH =
        keccak256(
            bytes(
                "MetaTransaction(uint256 nonce,address from,bytes functionSignature)"
            )
        );

    event MetaTransactionExecuted(
        address userAddress,
        address payable relayerAddress,
        bytes functionSignature
    );
    mapping(address => uint256) private nonces;

    /*
     * Meta transaction structure.
     * No point of including value field here as if user is doing value transfer then he has the funds to pay for gas
     * He should call the desired function directly in that case.
     */
    struct MetaTransaction {
        uint256 nonce;
        address from;
        bytes functionSignature;
    }

    constructor(string memory name, string memory version)
        EIP712Base(name, version)
    {}

    function convertBytesToBytes4(bytes memory inBytes)
        internal
        pure
        returns (bytes4 outBytes4)
    {
        if (inBytes.length == 0) {
            return 0x0;
        }

        assembly {
            outBytes4 := mload(add(inBytes, 32))
        }
    }

    function executeMetaTransaction(
        address userAddress,
        bytes memory functionSignature,
        bytes32 sigR,
        bytes32 sigS,
        uint8 sigV
    ) public payable returns (bytes memory) {
        bytes4 destinationFunctionSig = convertBytesToBytes4(functionSignature);
        require(
            destinationFunctionSig != msg.sig,
            "functionSignature can not be of executeMetaTransaction method"
        );
        MetaTransaction memory metaTx = MetaTransaction({
            nonce: nonces[userAddress],
            from: userAddress,
            functionSignature: functionSignature
        });
        require(
            verify(userAddress, metaTx, sigR, sigS, sigV),
            "Signer and signature do not match"
        );
        nonces[userAddress] = nonces[userAddress].add(1);
        // Append userAddress at the end to extract it from calling context
        (bool success, bytes memory returnData) = address(this).call(
            abi.encodePacked(functionSignature, userAddress)
        );

        require(success, string(returnData));
        emit MetaTransactionExecuted(
            userAddress,
            payable(msg.sender),
            functionSignature
        );
        return returnData;
    }

    function hashMetaTransaction(MetaTransaction memory metaTx)
        internal
        pure
        returns (bytes32)
    {
        return
            keccak256(
                abi.encode(
                    META_TRANSACTION_TYPEHASH,
                    metaTx.nonce,
                    metaTx.from,
                    keccak256(metaTx.functionSignature)
                )
            );
    }

    function getNonce(address user) external view returns (uint256 nonce) {
        nonce = nonces[user];
    }

    function verify(
        address user,
        MetaTransaction memory metaTx,
        bytes32 sigR,
        bytes32 sigS,
        uint8 sigV
    ) internal view returns (bool) {
        address signer = ecrecover(
            toTypedMessageHash(hashMetaTransaction(metaTx)),
            sigV,
            sigR,
            sigS
        );
        require(signer != address(0), "Invalid signature");
        return signer == user;
    }

    function msgSender() internal view returns (address sender) {
        if (msg.sender == address(this)) {
            bytes memory array = msg.data;
            uint256 index = msg.data.length;
            assembly {
                // Load the 32 bytes word from memory with the address on the lower 20 bytes, and mask those.
                sender := and(
                    mload(add(array, index)),
                    0xffffffffffffffffffffffffffffffffffffffff
                )
            }
        } else {
            sender = msg.sender;
        }
        return sender;
    }
}

File 3 of 15 : EIP712Base.sol
//SPDX-License-Identifier: MIT
pragma solidity 0.8.9;

contract EIP712Base {
    struct EIP712Domain {
        string name;
        string version;
        address verifyingContract;
        bytes32 salt;
    }

    bytes32 internal constant EIP712_DOMAIN_TYPEHASH =
        keccak256(
            bytes(
                "EIP712Domain(string name,string version,address verifyingContract,bytes32 salt)"
            )
        );

    bytes32 internal domainSeparator;

    constructor(string memory name, string memory version) {
        domainSeparator = keccak256(
            abi.encode(
                EIP712_DOMAIN_TYPEHASH,
                keccak256(bytes(name)),
                keccak256(bytes(version)),
                address(this),
                bytes32(getChainID())
            )
        );
    }

    function getChainID() internal view returns (uint256 id) {
        assembly {
            id := chainid()
        }
    }

    function getDomainSeparator() private view returns (bytes32) {
        return domainSeparator;
    }

    /**
     * Accept message hash and returns hash message in EIP712 compatible form
     * So that it can be used to recover signer from signature signed using EIP712 formatted data
     * https://eips.ethereum.org/EIPS/eip-712
     * "\\x19" makes the encoding deterministic
     * "\\x01" is the version byte to make it compatible to EIP-191
     */
    function toTypedMessageHash(bytes32 messageHash)
        internal
        view
        returns (bytes32)
    {
        return
            keccak256(
                abi.encodePacked("\x19\x01", getDomainSeparator(), messageHash)
            );
    }
}

File 4 of 15 : SafeMath.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/math/SafeMath.sol)

pragma solidity ^0.8.0;

// CAUTION
// This version of SafeMath should only be used with Solidity 0.8 or later,
// because it relies on the compiler's built in overflow checks.

/**
 * @dev Wrappers over Solidity's arithmetic operations.
 *
 * NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler
 * now has built in overflow checking.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            uint256 c = a + b;
            if (c < a) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the substraction of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b > a) return (false, 0);
            return (true, a - b);
        }
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
            // benefit is lost if 'b' is also tested.
            // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
            if (a == 0) return (true, 0);
            uint256 c = a * b;
            if (c / a != b) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the division of two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a / b);
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a % b);
        }
    }

    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     *
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        return a + b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return a - b;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        return a * b;
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator.
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return a / b;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        return a % b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {trySub}.
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b <= a, errorMessage);
            return a - b;
        }
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a / b;
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting with custom message when dividing by zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryMod}.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a % b;
        }
    }
}

File 5 of 15 : 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);
}

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

import "../ERC721.sol";

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

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

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

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

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

        return super.tokenURI(tokenId);
    }

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

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

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

File 12 of 15 : 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 13 of 15 : 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 14 of 15 : ERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/ERC721.sol)

pragma solidity ^0.8.0;

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

        _afterTokenTransfer(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);

        _afterTokenTransfer(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 from incorrect owner");
        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);

        _afterTokenTransfer(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 {}

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

File 15 of 15 : 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);
    }
}

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"tokenName","type":"string"},{"internalType":"string","name":"tokenSymbol","type":"string"},{"internalType":"string","name":"_baseUri","type":"string"},{"internalType":"uint256","name":"_royaltyPercentage","type":"uint256"},{"internalType":"uint256[]","name":"_privateSaleTokenIds","type":"uint256[]"}],"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":"string","name":"uri","type":"string"}],"name":"BaseUriUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"userAddress","type":"address"},{"indexed":false,"internalType":"address payable","name":"relayerAddress","type":"address"},{"indexed":false,"internalType":"bytes","name":"functionSignature","type":"bytes"}],"name":"MetaTransactionExecuted","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":"uint256","name":"newPercentage","type":"uint256"}],"name":"RoyaltyPercentageChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_PUBLIC_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"userAddress","type":"address"},{"internalType":"bytes","name":"functionSignature","type":"bytes"},{"internalType":"bytes32","name":"sigR","type":"bytes32"},{"internalType":"bytes32","name":"sigS","type":"bytes32"},{"internalType":"uint8","name":"sigV","type":"uint8"}],"name":"executeMetaTransaction","outputs":[{"internalType":"bytes","name":"","type":"bytes"}],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"destination","type":"address"},{"internalType":"uint256","name":"tokenIndex","type":"uint256"}],"name":"generate","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","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":"user","type":"address"}],"name":"getNonce","outputs":[{"internalType":"uint256","name":"nonce","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"getRoyaltyInfo","outputs":[{"internalType":"uint256","name":"royaltyAmount","type":"uint256"},{"internalType":"address","name":"royaltyReceiver","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"glassBoxContract","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"privateSaleContract","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"privateSaleTokenIds","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"view","type":"function"},{"inputs":[],"name":"royaltyPercentage","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":"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":"uri","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"setGlassBoxContract","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"setPrivateSaleContract","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_percentage","type":"uint256"}],"name":"setRoyaltyPercentage","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"}]

60806040523480156200001157600080fd5b50604051620051353803806200513583398181016040528101906200003791906200066c565b6040518060400160405280601281526020017f4e6674436f6c6c656374696f6e426174636800000000000000000000000000008152506040518060400160405280600181526020017f3100000000000000000000000000000000000000000000000000000000000000815250818188888160009080519060200190620000bf92919062000309565b508060019080519060200190620000d892919062000309565b505050620000fb620000ef6200021b60201b60201c565b6200022360201b60201c565b6040518060800160405280604f8152602001620050e6604f91398051906020012082805190602001208280519060200120306200013d620002e960201b60201c565b60001b60405160200162000156959493929190620007d0565b604051602081830303815290604052805190602001206008819055505050505082600a90805190602001906200018e92919062000309565b5081600c8190555060005b81518110156200020f576001600f6000848481518110620001bf57620001be6200082d565b5b6020026020010151815260200190815260200160002060006101000a81548160ff02191690831515021790555062000207600182620002f160201b62001b221790919060201c565b905062000199565b5050505050506200094d565b600033905090565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600046905090565b600081836200030191906200088b565b905092915050565b828054620003179062000917565b90600052602060002090601f0160209004810192826200033b576000855562000387565b82601f106200035657805160ff191683800117855562000387565b8280016001018555821562000387579182015b828111156200038657825182559160200191906001019062000369565b5b5090506200039691906200039a565b5090565b5b80821115620003b55760008160009055506001016200039b565b5090565b6000604051905090565b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6200042282620003d7565b810181811067ffffffffffffffff82111715620004445762000443620003e8565b5b80604052505050565b600062000459620003b9565b905062000467828262000417565b919050565b600067ffffffffffffffff8211156200048a5762000489620003e8565b5b6200049582620003d7565b9050602081019050919050565b60005b83811015620004c2578082015181840152602081019050620004a5565b83811115620004d2576000848401525b50505050565b6000620004ef620004e9846200046c565b6200044d565b9050828152602081018484840111156200050e576200050d620003d2565b5b6200051b848285620004a2565b509392505050565b600082601f8301126200053b576200053a620003cd565b5b81516200054d848260208601620004d8565b91505092915050565b6000819050919050565b6200056b8162000556565b81146200057757600080fd5b50565b6000815190506200058b8162000560565b92915050565b600067ffffffffffffffff821115620005af57620005ae620003e8565b5b602082029050602081019050919050565b600080fd5b6000620005dc620005d68462000591565b6200044d565b90508083825260208201905060208402830185811115620006025762000601620005c0565b5b835b818110156200062f57806200061a88826200057a565b84526020840193505060208101905062000604565b5050509392505050565b600082601f830112620006515762000650620003cd565b5b815162000663848260208601620005c5565b91505092915050565b600080600080600060a086880312156200068b576200068a620003c3565b5b600086015167ffffffffffffffff811115620006ac57620006ab620003c8565b5b620006ba8882890162000523565b955050602086015167ffffffffffffffff811115620006de57620006dd620003c8565b5b620006ec8882890162000523565b945050604086015167ffffffffffffffff81111562000710576200070f620003c8565b5b6200071e8882890162000523565b935050606062000731888289016200057a565b925050608086015167ffffffffffffffff811115620007555762000754620003c8565b5b620007638882890162000639565b9150509295509295909350565b6000819050919050565b620007858162000770565b82525050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000620007b8826200078b565b9050919050565b620007ca81620007ab565b82525050565b600060a082019050620007e760008301886200077a565b620007f660208301876200077a565b6200080560408301866200077a565b620008146060830185620007bf565b6200082360808301846200077a565b9695505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000620008988262000556565b9150620008a58362000556565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115620008dd57620008dc6200085c565b5b828201905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200093057607f821691505b60208210811415620009475762000946620008e8565b5b50919050565b614789806200095d6000396000f3fe6080604052600436106101cd5760003560e01c806361ba27da116100f757806395d89b4111610095578063c87b56dd11610064578063c87b56dd146106a2578063daee08bb146106df578063e985e9c514610708578063f2fde38b14610745576101cd565b806395d89b41146105e7578063a22cb46514610612578063b76c632b1461063b578063b88d4fde14610679576101cd565b8063715018a6116100d1578063715018a61461054f57806372d3f684146105665780638a71bb2d146105915780638da5cb5b146105bc576101cd565b806361ba27da146104ac5780636352211e146104d557806370a0823114610512576101cd565b80632a47f7991161016f5780634f05c2831161013e5780634f05c283146103f257806355f804b31461041d57806358023468146104465780635911a2981461046f576101cd565b80632a47f799146103245780632d0335ab1461034f5780633807aabd1461038c57806342842e0e146103c9576101cd565b8063095ea7b3116101ab578063095ea7b3146102775780630c53c51c146102a057806318160ddd146102d057806323b872dd146102fb576101cd565b806301ffc9a7146101d257806306fdde031461020f578063081812fc1461023a575b600080fd5b3480156101de57600080fd5b506101f960048036038101906101f49190612c77565b61076e565b6040516102069190612cbf565b60405180910390f35b34801561021b57600080fd5b50610224610850565b6040516102319190612d73565b60405180910390f35b34801561024657600080fd5b50610261600480360381019061025c9190612dcb565b6108e2565b60405161026e9190612e39565b60405180910390f35b34801561028357600080fd5b5061029e60048036038101906102999190612e80565b610967565b005b6102ba60048036038101906102b59190613064565b610a7f565b6040516102c79190613150565b60405180910390f35b3480156102dc57600080fd5b506102e5610da8565b6040516102f29190613181565b60405180910390f35b34801561030757600080fd5b50610322600480360381019061031d919061319c565b610dae565b005b34801561033057600080fd5b50610339610e0e565b6040516103469190613181565b60405180910390f35b34801561035b57600080fd5b50610376600480360381019061037191906131ef565b610e14565b6040516103839190613181565b60405180910390f35b34801561039857600080fd5b506103b360048036038101906103ae9190612e80565b610e5d565b6040516103c09190613181565b60405180910390f35b3480156103d557600080fd5b506103f060048036038101906103eb919061319c565b611180565b005b3480156103fe57600080fd5b506104076111a0565b6040516104149190612e39565b60405180910390f35b34801561042957600080fd5b50610444600480360381019061043f91906132bd565b6111c6565b005b34801561045257600080fd5b5061046d600480360381019061046891906131ef565b61129f565b005b34801561047b57600080fd5b5061049660048036038101906104919190612dcb565b61135f565b6040516104a39190612cbf565b60405180910390f35b3480156104b857600080fd5b506104d360048036038101906104ce9190612dcb565b61137f565b005b3480156104e157600080fd5b506104fc60048036038101906104f79190612dcb565b611433565b6040516105099190612e39565b60405180910390f35b34801561051e57600080fd5b50610539600480360381019061053491906131ef565b6114e5565b6040516105469190613181565b60405180910390f35b34801561055b57600080fd5b5061056461159d565b005b34801561057257600080fd5b5061057b611654565b6040516105889190612e39565b60405180910390f35b34801561059d57600080fd5b506105a661167a565b6040516105b39190613181565b60405180910390f35b3480156105c857600080fd5b506105d1611680565b6040516105de9190612e39565b60405180910390f35b3480156105f357600080fd5b506105fc6116aa565b6040516106099190612d73565b60405180910390f35b34801561061e57600080fd5b5061063960048036038101906106349190613332565b61173c565b005b34801561064757600080fd5b50610662600480360381019061065d9190612dcb565b611752565b604051610670929190613372565b60405180910390f35b34801561068557600080fd5b506106a0600480360381019061069b919061339b565b6117d7565b005b3480156106ae57600080fd5b506106c960048036038101906106c49190612dcb565b611839565b6040516106d69190612d73565b60405180910390f35b3480156106eb57600080fd5b50610706600480360381019061070191906131ef565b6118d6565b005b34801561071457600080fd5b5061072f600480360381019061072a919061341e565b611996565b60405161073c9190612cbf565b60405180910390f35b34801561075157600080fd5b5061076c600480360381019061076791906131ef565b611a2a565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061083957507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610849575061084882611b38565b5b9050919050565b60606000805461085f9061348d565b80601f016020809104026020016040519081016040528092919081815260200182805461088b9061348d565b80156108d85780601f106108ad576101008083540402835291602001916108d8565b820191906000526020600020905b8154815290600101906020018083116108bb57829003601f168201915b5050505050905090565b60006108ed82611ba2565b61092c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161092390613531565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061097282611433565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156109e3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109da9061359d565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610a02611c0e565b73ffffffffffffffffffffffffffffffffffffffff161480610a315750610a3081610a2b611c0e565b611996565b5b610a70576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a679061362f565b60405180910390fd5b610a7a8383611cbf565b505050565b60606000610a8c86611d78565b90506000357fffffffff00000000000000000000000000000000000000000000000000000000167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161415610b33576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b2a906136c1565b60405180910390fd5b60006040518060600160405280600960008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205481526020018973ffffffffffffffffffffffffffffffffffffffff168152602001888152509050610bb48882888888611d9c565b610bf3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bea90613753565b60405180910390fd5b610c466001600960008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611b2290919063ffffffff16565b600960008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506000803073ffffffffffffffffffffffffffffffffffffffff16898b604051602001610cb69291906137f7565b604051602081830303815290604052604051610cd2919061381f565b6000604051808303816000865af19150503d8060008114610d0f576040519150601f19603f3d011682016040523d82523d6000602084013e610d14565b606091505b5091509150818190610d5c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d539190612d73565b60405180910390fd5b507f5845892132946850460bff5a0083f71031bc5bf9aadcd40f1de79423eac9b10b8a338b604051610d9093929190613857565b60405180910390a18094505050505095945050505050565b600b5481565b610dbf610db9611c0e565b82611eab565b610dfe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610df5906138e1565b60405180910390fd5b610e09838383611f89565b505050565b61138881565b6000600960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6000610e67611c0e565b73ffffffffffffffffffffffffffffffffffffffff16600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161480610efb5750610ec5611c0e565b73ffffffffffffffffffffffffffffffffffffffff16610ee3611680565b73ffffffffffffffffffffffffffffffffffffffff16145b80610f5a5750610f09611c0e565b73ffffffffffffffffffffffffffffffffffffffff16600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b610f99576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f909061394d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611009576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611000906139b9565b60405180910390fd5b611388600b541061104f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161104690613a25565b60405180910390fd5b611057611c0e565b73ffffffffffffffffffffffffffffffffffffffff16600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614806110eb57506110b5611c0e565b73ffffffffffffffffffffffffffffffffffffffff166110d3611680565b73ffffffffffffffffffffffffffffffffffffffff16145b1561115157600f600083815260200190815260200160002060009054906101000a900460ff16611150576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161114790613a91565b60405180910390fd5b5b6111676001600b54611b2290919063ffffffff16565b600b8190555061117783836121f0565b81905092915050565b61119b838383604051806020016040528060008152506117d7565b505050565b600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6111ce61220e565b73ffffffffffffffffffffffffffffffffffffffff166111ec611680565b73ffffffffffffffffffffffffffffffffffffffff1614611242576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161123990613afd565b60405180910390fd5b80600a9080519060200190611258929190612b68565b50600a6040516112689190613bbc565b60405180910390207f24a9152dc695ecc801ad580886331ee12d7aac0fa2ae341a5ae3c2ccae36cb4f60405160405180910390a250565b6112a761220e565b73ffffffffffffffffffffffffffffffffffffffff166112c5611680565b73ffffffffffffffffffffffffffffffffffffffff161461131b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161131290613afd565b60405180910390fd5b80600e60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600f6020528060005260406000206000915054906101000a900460ff1681565b61138761220e565b73ffffffffffffffffffffffffffffffffffffffff166113a5611680565b73ffffffffffffffffffffffffffffffffffffffff16146113fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113f290613afd565b60405180910390fd5b80600c81905550600c547ec89f607338c43f69cf5b28786c5f2b43b2be84f09f4ad3bc93e97447de142760405160405180910390a250565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156114dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114d390613c45565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611556576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161154d90613cd7565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6115a561220e565b73ffffffffffffffffffffffffffffffffffffffff166115c3611680565b73ffffffffffffffffffffffffffffffffffffffff1614611619576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161161090613afd565b60405180910390fd5b6040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161164b90613d43565b60405180910390fd5b600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600c5481565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600180546116b99061348d565b80601f01602080910402602001604051908101604052809291908181526020018280546116e59061348d565b80156117325780601f1061170757610100808354040283529160200191611732565b820191906000526020600020905b81548152906001019060200180831161171557829003601f168201915b5050505050905090565b61174e61174761220e565b8383612216565b5050565b60008060008311611798576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161178f90613daf565b60405180910390fd5b60006117c260646117b4600c548761238390919063ffffffff16565b61239990919063ffffffff16565b9050806117cd611680565b9250925050915091565b6117e86117e2611c0e565b83611eab565b611827576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161181e906138e1565b60405180910390fd5b611833848484846123af565b50505050565b60606000600b5414156118555761184e61240b565b90506118d1565b61185e82611ba2565b61189d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161189490613e1b565b60405180910390fd5b6118a561240b565b6118ae8361249d565b6040516020016118bf929190613e6c565b60405160208183030381529060405290505b919050565b6118de61220e565b73ffffffffffffffffffffffffffffffffffffffff166118fc611680565b73ffffffffffffffffffffffffffffffffffffffff1614611952576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161194990613afd565b60405180910390fd5b80600d60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611a3261220e565b73ffffffffffffffffffffffffffffffffffffffff16611a50611680565b73ffffffffffffffffffffffffffffffffffffffff1614611aa6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a9d90613afd565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611b16576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b0d90613f02565b60405180910390fd5b611b1f816125fe565b50565b60008183611b309190613f51565b905092915050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b60003073ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161415611cb857600080368080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f820116905080830192505050505050509050600080369050905073ffffffffffffffffffffffffffffffffffffffff818301511692505050611cbc565b3390505b90565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611d3283611433565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60008082511415611d8f57600060e01b9050611d97565b602082015190505b919050565b6000806001611db2611dad886126c4565b61272c565b84878760405160008152602001604052604051611dd29493929190613fc5565b6020604051602081039080840390855afa158015611df4573d6000803e3d6000fd5b505050602060405103519050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611e70576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e6790614056565b60405180910390fd5b8673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161491505095945050505050565b6000611eb682611ba2565b611ef5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611eec906140e8565b60405180910390fd5b6000611f0083611433565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611f6f57508373ffffffffffffffffffffffffffffffffffffffff16611f57846108e2565b73ffffffffffffffffffffffffffffffffffffffff16145b80611f805750611f7f8185611996565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611fa982611433565b73ffffffffffffffffffffffffffffffffffffffff1614611fff576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ff69061417a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561206f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120669061420c565b60405180910390fd5b61207a838383612765565b612085600082611cbf565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546120d5919061422c565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461212c9190613f51565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46121eb83838361276a565b505050565b61220a82826040518060200160405280600081525061276f565b5050565b600033905090565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612285576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161227c906142ac565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516123769190612cbf565b60405180910390a3505050565b6000818361239191906142cc565b905092915050565b600081836123a79190614355565b905092915050565b6123ba848484611f89565b6123c6848484846127ca565b612405576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123fc906143f8565b60405180910390fd5b50505050565b6060600a805461241a9061348d565b80601f01602080910402602001604051908101604052809291908181526020018280546124469061348d565b80156124935780601f1061246857610100808354040283529160200191612493565b820191906000526020600020905b81548152906001019060200180831161247657829003601f168201915b5050505050905090565b606060008214156124e5576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506125f9565b600082905060005b6000821461251757808061250090614418565b915050600a826125109190614355565b91506124ed565b60008167ffffffffffffffff81111561253357612532612eca565b5b6040519080825280601f01601f1916602001820160405280156125655781602001600182028036833780820191505090505b5090505b600085146125f25760018261257e919061422c565b9150600a8561258d9190614461565b60306125999190613f51565b60f81b8183815181106125af576125ae614492565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856125eb9190614355565b9450612569565b8093505050505b919050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600060405180608001604052806043815260200161471160439139805190602001208260000151836020015184604001518051906020012060405160200161270f94939291906144c1565b604051602081830303815290604052805190602001209050919050565b6000612736612961565b82604051602001612748929190614573565b604051602081830303815290604052805190602001209050919050565b505050565b505050565b612779838361296b565b61278660008484846127ca565b6127c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127bc906143f8565b60405180910390fd5b505050565b60006127eb8473ffffffffffffffffffffffffffffffffffffffff16612b45565b15612954578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261281461220e565b8786866040518563ffffffff1660e01b815260040161283694939291906145aa565b602060405180830381600087803b15801561285057600080fd5b505af192505050801561288157506040513d601f19601f8201168201806040525081019061287e919061460b565b60015b612904573d80600081146128b1576040519150601f19603f3d011682016040523d82523d6000602084013e6128b6565b606091505b506000815114156128fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128f3906143f8565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612959565b600190505b949350505050565b6000600854905090565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156129db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129d290614684565b60405180910390fd5b6129e481611ba2565b15612a24576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a1b906146f0565b60405180910390fd5b612a3060008383612765565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612a809190613f51565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612b416000838361276a565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b828054612b749061348d565b90600052602060002090601f016020900481019282612b965760008555612bdd565b82601f10612baf57805160ff1916838001178555612bdd565b82800160010185558215612bdd579182015b82811115612bdc578251825591602001919060010190612bc1565b5b509050612bea9190612bee565b5090565b5b80821115612c07576000816000905550600101612bef565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612c5481612c1f565b8114612c5f57600080fd5b50565b600081359050612c7181612c4b565b92915050565b600060208284031215612c8d57612c8c612c15565b5b6000612c9b84828501612c62565b91505092915050565b60008115159050919050565b612cb981612ca4565b82525050565b6000602082019050612cd46000830184612cb0565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612d14578082015181840152602081019050612cf9565b83811115612d23576000848401525b50505050565b6000601f19601f8301169050919050565b6000612d4582612cda565b612d4f8185612ce5565b9350612d5f818560208601612cf6565b612d6881612d29565b840191505092915050565b60006020820190508181036000830152612d8d8184612d3a565b905092915050565b6000819050919050565b612da881612d95565b8114612db357600080fd5b50565b600081359050612dc581612d9f565b92915050565b600060208284031215612de157612de0612c15565b5b6000612def84828501612db6565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612e2382612df8565b9050919050565b612e3381612e18565b82525050565b6000602082019050612e4e6000830184612e2a565b92915050565b612e5d81612e18565b8114612e6857600080fd5b50565b600081359050612e7a81612e54565b92915050565b60008060408385031215612e9757612e96612c15565b5b6000612ea585828601612e6b565b9250506020612eb685828601612db6565b9150509250929050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612f0282612d29565b810181811067ffffffffffffffff82111715612f2157612f20612eca565b5b80604052505050565b6000612f34612c0b565b9050612f408282612ef9565b919050565b600067ffffffffffffffff821115612f6057612f5f612eca565b5b612f6982612d29565b9050602081019050919050565b82818337600083830152505050565b6000612f98612f9384612f45565b612f2a565b905082815260208101848484011115612fb457612fb3612ec5565b5b612fbf848285612f76565b509392505050565b600082601f830112612fdc57612fdb612ec0565b5b8135612fec848260208601612f85565b91505092915050565b6000819050919050565b61300881612ff5565b811461301357600080fd5b50565b60008135905061302581612fff565b92915050565b600060ff82169050919050565b6130418161302b565b811461304c57600080fd5b50565b60008135905061305e81613038565b92915050565b600080600080600060a086880312156130805761307f612c15565b5b600061308e88828901612e6b565b955050602086013567ffffffffffffffff8111156130af576130ae612c1a565b5b6130bb88828901612fc7565b94505060406130cc88828901613016565b93505060606130dd88828901613016565b92505060806130ee8882890161304f565b9150509295509295909350565b600081519050919050565b600082825260208201905092915050565b6000613122826130fb565b61312c8185613106565b935061313c818560208601612cf6565b61314581612d29565b840191505092915050565b6000602082019050818103600083015261316a8184613117565b905092915050565b61317b81612d95565b82525050565b60006020820190506131966000830184613172565b92915050565b6000806000606084860312156131b5576131b4612c15565b5b60006131c386828701612e6b565b93505060206131d486828701612e6b565b92505060406131e586828701612db6565b9150509250925092565b60006020828403121561320557613204612c15565b5b600061321384828501612e6b565b91505092915050565b600067ffffffffffffffff82111561323757613236612eca565b5b61324082612d29565b9050602081019050919050565b600061326061325b8461321c565b612f2a565b90508281526020810184848401111561327c5761327b612ec5565b5b613287848285612f76565b509392505050565b600082601f8301126132a4576132a3612ec0565b5b81356132b484826020860161324d565b91505092915050565b6000602082840312156132d3576132d2612c15565b5b600082013567ffffffffffffffff8111156132f1576132f0612c1a565b5b6132fd8482850161328f565b91505092915050565b61330f81612ca4565b811461331a57600080fd5b50565b60008135905061332c81613306565b92915050565b6000806040838503121561334957613348612c15565b5b600061335785828601612e6b565b92505060206133688582860161331d565b9150509250929050565b60006040820190506133876000830185613172565b6133946020830184612e2a565b9392505050565b600080600080608085870312156133b5576133b4612c15565b5b60006133c387828801612e6b565b94505060206133d487828801612e6b565b93505060406133e587828801612db6565b925050606085013567ffffffffffffffff81111561340657613405612c1a565b5b61341287828801612fc7565b91505092959194509250565b6000806040838503121561343557613434612c15565b5b600061344385828601612e6b565b925050602061345485828601612e6b565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806134a557607f821691505b602082108114156134b9576134b861345e565b5b50919050565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b600061351b602c83612ce5565b9150613526826134bf565b604082019050919050565b6000602082019050818103600083015261354a8161350e565b9050919050565b7f4552433732313a415050524f56414c5f544f5f43555252454e545f4f574e4552600082015250565b6000613587602083612ce5565b915061359282613551565b602082019050919050565b600060208201905081810360008301526135b68161357a565b9050919050565b7f4552433732313a415050524f56455f43414c4c45525f4e4f545f4f574e45525f60008201527f4f525f415050524f5645445f464f525f414c4c00000000000000000000000000602082015250565b6000613619603383612ce5565b9150613624826135bd565b604082019050919050565b600060208201905081810360008301526136488161360c565b9050919050565b7f66756e6374696f6e5369676e61747572652063616e206e6f74206265206f662060008201527f657865637574654d6574615472616e73616374696f6e206d6574686f64000000602082015250565b60006136ab603d83612ce5565b91506136b68261364f565b604082019050919050565b600060208201905081810360008301526136da8161369e565b9050919050565b7f5369676e657220616e64207369676e617475726520646f206e6f74206d61746360008201527f6800000000000000000000000000000000000000000000000000000000000000602082015250565b600061373d602183612ce5565b9150613748826136e1565b604082019050919050565b6000602082019050818103600083015261376c81613730565b9050919050565b600081905092915050565b6000613789826130fb565b6137938185613773565b93506137a3818560208601612cf6565b80840191505092915050565b60008160601b9050919050565b60006137c7826137af565b9050919050565b60006137d9826137bc565b9050919050565b6137f16137ec82612e18565b6137ce565b82525050565b6000613803828561377e565b915061380f82846137e0565b6014820191508190509392505050565b600061382b828461377e565b915081905092915050565b600061384182612df8565b9050919050565b61385181613836565b82525050565b600060608201905061386c6000830186612e2a565b6138796020830185613848565b818103604083015261388b8184613117565b9050949350505050565b7f43414c4c45525f4e4f545f415050524f56454400000000000000000000000000600082015250565b60006138cb601383612ce5565b91506138d682613895565b602082019050919050565b600060208201905081810360008301526138fa816138be565b9050919050565b7f554e415554484f52495a45445f41434345535300000000000000000000000000600082015250565b6000613937601383612ce5565b915061394282613901565b602082019050919050565b600060208201905081810360008301526139668161392a565b9050919050565b7f414444524553535f43414e5f4e4f545f42455f5a45524f000000000000000000600082015250565b60006139a3601783612ce5565b91506139ae8261396d565b602082019050919050565b600060208201905081810360008301526139d281613996565b9050919050565b7f4d41585f5055424c49435f535550504c595f5245414348454400000000000000600082015250565b6000613a0f601983612ce5565b9150613a1a826139d9565b602082019050919050565b60006020820190508181036000830152613a3e81613a02565b9050919050565b7f505249564154455f53414c455f5045524d495353494f4e5f44454e4945440000600082015250565b6000613a7b601e83612ce5565b9150613a8682613a45565b602082019050919050565b60006020820190508181036000830152613aaa81613a6e565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613ae7602083612ce5565b9150613af282613ab1565b602082019050919050565b60006020820190508181036000830152613b1681613ada565b9050919050565b600081905092915050565b60008190508160005260206000209050919050565b60008154613b4a8161348d565b613b548186613b1d565b94506001821660008114613b6f5760018114613b8057613bb3565b60ff19831686528186019350613bb3565b613b8985613b28565b60005b83811015613bab57815481890152600182019150602081019050613b8c565b838801955050505b50505092915050565b6000613bc88284613b3d565b915081905092915050565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b6000613c2f602983612ce5565b9150613c3a82613bd3565b604082019050919050565b60006020820190508181036000830152613c5e81613c22565b9050919050565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b6000613cc1602a83612ce5565b9150613ccc82613c65565b604082019050919050565b60006020820190508181036000830152613cf081613cb4565b9050919050565b7f43414e5f4e4f545f52454e4f554e43455f4f574e455253484950000000000000600082015250565b6000613d2d601a83612ce5565b9150613d3882613cf7565b602082019050919050565b60006020820190508181036000830152613d5c81613d20565b9050919050565b7f50524943455f43414e5f4e4f545f42455f5a45524f0000000000000000000000600082015250565b6000613d99601583612ce5565b9150613da482613d63565b602082019050919050565b60006020820190508181036000830152613dc881613d8c565b9050919050565b7f544f4b454e5f444f45535f4e4f545f4558495354000000000000000000000000600082015250565b6000613e05601483612ce5565b9150613e1082613dcf565b602082019050919050565b60006020820190508181036000830152613e3481613df8565b9050919050565b6000613e4682612cda565b613e508185613b1d565b9350613e60818560208601612cf6565b80840191505092915050565b6000613e788285613e3b565b9150613e848284613e3b565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613eec602683612ce5565b9150613ef782613e90565b604082019050919050565b60006020820190508181036000830152613f1b81613edf565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000613f5c82612d95565b9150613f6783612d95565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613f9c57613f9b613f22565b5b828201905092915050565b613fb081612ff5565b82525050565b613fbf8161302b565b82525050565b6000608082019050613fda6000830187613fa7565b613fe76020830186613fb6565b613ff46040830185613fa7565b6140016060830184613fa7565b95945050505050565b7f496e76616c6964207369676e6174757265000000000000000000000000000000600082015250565b6000614040601183612ce5565b915061404b8261400a565b602082019050919050565b6000602082019050818103600083015261406f81614033565b9050919050565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b60006140d2602c83612ce5565b91506140dd82614076565b604082019050919050565b60006020820190508181036000830152614101816140c5565b9050919050565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b6000614164602583612ce5565b915061416f82614108565b604082019050919050565b6000602082019050818103600083015261419381614157565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006141f6602483612ce5565b91506142018261419a565b604082019050919050565b60006020820190508181036000830152614225816141e9565b9050919050565b600061423782612d95565b915061424283612d95565b92508282101561425557614254613f22565b5b828203905092915050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b6000614296601983612ce5565b91506142a182614260565b602082019050919050565b600060208201905081810360008301526142c581614289565b9050919050565b60006142d782612d95565b91506142e283612d95565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561431b5761431a613f22565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061436082612d95565b915061436b83612d95565b92508261437b5761437a614326565b5b828204905092915050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b60006143e2603283612ce5565b91506143ed82614386565b604082019050919050565b60006020820190508181036000830152614411816143d5565b9050919050565b600061442382612d95565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561445657614455613f22565b5b600182019050919050565b600061446c82612d95565b915061447783612d95565b92508261448757614486614326565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60006080820190506144d66000830187613fa7565b6144e36020830186613172565b6144f06040830185612e2a565b6144fd6060830184613fa7565b95945050505050565b7f1901000000000000000000000000000000000000000000000000000000000000600082015250565b600061453c600283613b1d565b915061454782614506565b600282019050919050565b6000819050919050565b61456d61456882612ff5565b614552565b82525050565b600061457e8261452f565b915061458a828561455c565b60208201915061459a828461455c565b6020820191508190509392505050565b60006080820190506145bf6000830187612e2a565b6145cc6020830186612e2a565b6145d96040830185613172565b81810360608301526145eb8184613117565b905095945050505050565b60008151905061460581612c4b565b92915050565b60006020828403121561462157614620612c15565b5b600061462f848285016145f6565b91505092915050565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b600061466e602083612ce5565b915061467982614638565b602082019050919050565b6000602082019050818103600083015261469d81614661565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b60006146da601c83612ce5565b91506146e5826146a4565b602082019050919050565b60006020820190508181036000830152614709816146cd565b905091905056fe4d6574615472616e73616374696f6e2875696e74323536206e6f6e63652c616464726573732066726f6d2c62797465732066756e6374696f6e5369676e617475726529a26469706673582212206779844678de1e54cc09c8b5df79d94c5c14233b6c18d7b10e4f2bb08d67323464736f6c63430008090033454950373132446f6d61696e28737472696e67206e616d652c737472696e672076657273696f6e2c6164647265737320766572696679696e67436f6e74726163742c627974657333322073616c742900000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e00000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000001800000000000000000000000000000000000000000000000000000000000000008444746616d696c790000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005444746414d000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002468747470733a2f2f6e6674732e756e78642e636f6d2f6e6674732f646766616d696c792f000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000041000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000003000000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000050000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000700000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000009000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000b000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000000d000000000000000000000000000000000000000000000000000000000000000e000000000000000000000000000000000000000000000000000000000000000f0000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000001100000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000000000000000013000000000000000000000000000000000000000000000000000000000000001400000000000000000000000000000000000000000000000000000000000000150000000000000000000000000000000000000000000000000000000000000016000000000000000000000000000000000000000000000000000000000000001700000000000000000000000000000000000000000000000000000000000000180000000000000000000000000000000000000000000000000000000000000019000000000000000000000000000000000000000000000000000000000000001a000000000000000000000000000000000000000000000000000000000000001b000000000000000000000000000000000000000000000000000000000000001c000000000000000000000000000000000000000000000000000000000000001d000000000000000000000000000000000000000000000000000000000000001e000000000000000000000000000000000000000000000000000000000000001f0000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000002100000000000000000000000000000000000000000000000000000000000000220000000000000000000000000000000000000000000000000000000000000023000000000000000000000000000000000000000000000000000000000000002400000000000000000000000000000000000000000000000000000000000000250000000000000000000000000000000000000000000000000000000000000026000000000000000000000000000000000000000000000000000000000000002700000000000000000000000000000000000000000000000000000000000000280000000000000000000000000000000000000000000000000000000000000029000000000000000000000000000000000000000000000000000000000000002a000000000000000000000000000000000000000000000000000000000000002b000000000000000000000000000000000000000000000000000000000000002c000000000000000000000000000000000000000000000000000000000000002d000000000000000000000000000000000000000000000000000000000000002e000000000000000000000000000000000000000000000000000000000000002f0000000000000000000000000000000000000000000000000000000000000031000000000000000000000000000000000000000000000000000000000000003200000000000000000000000000000000000000000000000000000000000000330000000000000000000000000000000000000000000000000000000000000034000000000000000000000000000000000000000000000000000000000000003500000000000000000000000000000000000000000000000000000000000000360000000000000000000000000000000000000000000000000000000000000037000000000000000000000000000000000000000000000000000000000000003a000000000000000000000000000000000000000000000000000000000000003c000000000000000000000000000000000000000000000000000000000000004200000000000000000000000000000000000000000000000000000000000000430000000000000000000000000000000000000000000000000000000000000045000000000000000000000000000000000000000000000000000000000000004b00000000000000000000000000000000000000000000000000000000000002ea00000000000000000000000000000000000000000000000000000000000002eb00000000000000000000000000000000000000000000000000000000000002ec00000000000000000000000000000000000000000000000000000000000002ed00000000000000000000000000000000000000000000000000000000000002ee

Deployed Bytecode

0x6080604052600436106101cd5760003560e01c806361ba27da116100f757806395d89b4111610095578063c87b56dd11610064578063c87b56dd146106a2578063daee08bb146106df578063e985e9c514610708578063f2fde38b14610745576101cd565b806395d89b41146105e7578063a22cb46514610612578063b76c632b1461063b578063b88d4fde14610679576101cd565b8063715018a6116100d1578063715018a61461054f57806372d3f684146105665780638a71bb2d146105915780638da5cb5b146105bc576101cd565b806361ba27da146104ac5780636352211e146104d557806370a0823114610512576101cd565b80632a47f7991161016f5780634f05c2831161013e5780634f05c283146103f257806355f804b31461041d57806358023468146104465780635911a2981461046f576101cd565b80632a47f799146103245780632d0335ab1461034f5780633807aabd1461038c57806342842e0e146103c9576101cd565b8063095ea7b3116101ab578063095ea7b3146102775780630c53c51c146102a057806318160ddd146102d057806323b872dd146102fb576101cd565b806301ffc9a7146101d257806306fdde031461020f578063081812fc1461023a575b600080fd5b3480156101de57600080fd5b506101f960048036038101906101f49190612c77565b61076e565b6040516102069190612cbf565b60405180910390f35b34801561021b57600080fd5b50610224610850565b6040516102319190612d73565b60405180910390f35b34801561024657600080fd5b50610261600480360381019061025c9190612dcb565b6108e2565b60405161026e9190612e39565b60405180910390f35b34801561028357600080fd5b5061029e60048036038101906102999190612e80565b610967565b005b6102ba60048036038101906102b59190613064565b610a7f565b6040516102c79190613150565b60405180910390f35b3480156102dc57600080fd5b506102e5610da8565b6040516102f29190613181565b60405180910390f35b34801561030757600080fd5b50610322600480360381019061031d919061319c565b610dae565b005b34801561033057600080fd5b50610339610e0e565b6040516103469190613181565b60405180910390f35b34801561035b57600080fd5b50610376600480360381019061037191906131ef565b610e14565b6040516103839190613181565b60405180910390f35b34801561039857600080fd5b506103b360048036038101906103ae9190612e80565b610e5d565b6040516103c09190613181565b60405180910390f35b3480156103d557600080fd5b506103f060048036038101906103eb919061319c565b611180565b005b3480156103fe57600080fd5b506104076111a0565b6040516104149190612e39565b60405180910390f35b34801561042957600080fd5b50610444600480360381019061043f91906132bd565b6111c6565b005b34801561045257600080fd5b5061046d600480360381019061046891906131ef565b61129f565b005b34801561047b57600080fd5b5061049660048036038101906104919190612dcb565b61135f565b6040516104a39190612cbf565b60405180910390f35b3480156104b857600080fd5b506104d360048036038101906104ce9190612dcb565b61137f565b005b3480156104e157600080fd5b506104fc60048036038101906104f79190612dcb565b611433565b6040516105099190612e39565b60405180910390f35b34801561051e57600080fd5b50610539600480360381019061053491906131ef565b6114e5565b6040516105469190613181565b60405180910390f35b34801561055b57600080fd5b5061056461159d565b005b34801561057257600080fd5b5061057b611654565b6040516105889190612e39565b60405180910390f35b34801561059d57600080fd5b506105a661167a565b6040516105b39190613181565b60405180910390f35b3480156105c857600080fd5b506105d1611680565b6040516105de9190612e39565b60405180910390f35b3480156105f357600080fd5b506105fc6116aa565b6040516106099190612d73565b60405180910390f35b34801561061e57600080fd5b5061063960048036038101906106349190613332565b61173c565b005b34801561064757600080fd5b50610662600480360381019061065d9190612dcb565b611752565b604051610670929190613372565b60405180910390f35b34801561068557600080fd5b506106a0600480360381019061069b919061339b565b6117d7565b005b3480156106ae57600080fd5b506106c960048036038101906106c49190612dcb565b611839565b6040516106d69190612d73565b60405180910390f35b3480156106eb57600080fd5b50610706600480360381019061070191906131ef565b6118d6565b005b34801561071457600080fd5b5061072f600480360381019061072a919061341e565b611996565b60405161073c9190612cbf565b60405180910390f35b34801561075157600080fd5b5061076c600480360381019061076791906131ef565b611a2a565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061083957507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610849575061084882611b38565b5b9050919050565b60606000805461085f9061348d565b80601f016020809104026020016040519081016040528092919081815260200182805461088b9061348d565b80156108d85780601f106108ad576101008083540402835291602001916108d8565b820191906000526020600020905b8154815290600101906020018083116108bb57829003601f168201915b5050505050905090565b60006108ed82611ba2565b61092c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161092390613531565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061097282611433565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156109e3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109da9061359d565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610a02611c0e565b73ffffffffffffffffffffffffffffffffffffffff161480610a315750610a3081610a2b611c0e565b611996565b5b610a70576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a679061362f565b60405180910390fd5b610a7a8383611cbf565b505050565b60606000610a8c86611d78565b90506000357fffffffff00000000000000000000000000000000000000000000000000000000167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161415610b33576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b2a906136c1565b60405180910390fd5b60006040518060600160405280600960008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205481526020018973ffffffffffffffffffffffffffffffffffffffff168152602001888152509050610bb48882888888611d9c565b610bf3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bea90613753565b60405180910390fd5b610c466001600960008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611b2290919063ffffffff16565b600960008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506000803073ffffffffffffffffffffffffffffffffffffffff16898b604051602001610cb69291906137f7565b604051602081830303815290604052604051610cd2919061381f565b6000604051808303816000865af19150503d8060008114610d0f576040519150601f19603f3d011682016040523d82523d6000602084013e610d14565b606091505b5091509150818190610d5c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d539190612d73565b60405180910390fd5b507f5845892132946850460bff5a0083f71031bc5bf9aadcd40f1de79423eac9b10b8a338b604051610d9093929190613857565b60405180910390a18094505050505095945050505050565b600b5481565b610dbf610db9611c0e565b82611eab565b610dfe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610df5906138e1565b60405180910390fd5b610e09838383611f89565b505050565b61138881565b6000600960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6000610e67611c0e565b73ffffffffffffffffffffffffffffffffffffffff16600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161480610efb5750610ec5611c0e565b73ffffffffffffffffffffffffffffffffffffffff16610ee3611680565b73ffffffffffffffffffffffffffffffffffffffff16145b80610f5a5750610f09611c0e565b73ffffffffffffffffffffffffffffffffffffffff16600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b610f99576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f909061394d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611009576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611000906139b9565b60405180910390fd5b611388600b541061104f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161104690613a25565b60405180910390fd5b611057611c0e565b73ffffffffffffffffffffffffffffffffffffffff16600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614806110eb57506110b5611c0e565b73ffffffffffffffffffffffffffffffffffffffff166110d3611680565b73ffffffffffffffffffffffffffffffffffffffff16145b1561115157600f600083815260200190815260200160002060009054906101000a900460ff16611150576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161114790613a91565b60405180910390fd5b5b6111676001600b54611b2290919063ffffffff16565b600b8190555061117783836121f0565b81905092915050565b61119b838383604051806020016040528060008152506117d7565b505050565b600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6111ce61220e565b73ffffffffffffffffffffffffffffffffffffffff166111ec611680565b73ffffffffffffffffffffffffffffffffffffffff1614611242576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161123990613afd565b60405180910390fd5b80600a9080519060200190611258929190612b68565b50600a6040516112689190613bbc565b60405180910390207f24a9152dc695ecc801ad580886331ee12d7aac0fa2ae341a5ae3c2ccae36cb4f60405160405180910390a250565b6112a761220e565b73ffffffffffffffffffffffffffffffffffffffff166112c5611680565b73ffffffffffffffffffffffffffffffffffffffff161461131b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161131290613afd565b60405180910390fd5b80600e60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600f6020528060005260406000206000915054906101000a900460ff1681565b61138761220e565b73ffffffffffffffffffffffffffffffffffffffff166113a5611680565b73ffffffffffffffffffffffffffffffffffffffff16146113fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113f290613afd565b60405180910390fd5b80600c81905550600c547ec89f607338c43f69cf5b28786c5f2b43b2be84f09f4ad3bc93e97447de142760405160405180910390a250565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156114dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114d390613c45565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611556576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161154d90613cd7565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6115a561220e565b73ffffffffffffffffffffffffffffffffffffffff166115c3611680565b73ffffffffffffffffffffffffffffffffffffffff1614611619576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161161090613afd565b60405180910390fd5b6040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161164b90613d43565b60405180910390fd5b600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600c5481565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600180546116b99061348d565b80601f01602080910402602001604051908101604052809291908181526020018280546116e59061348d565b80156117325780601f1061170757610100808354040283529160200191611732565b820191906000526020600020905b81548152906001019060200180831161171557829003601f168201915b5050505050905090565b61174e61174761220e565b8383612216565b5050565b60008060008311611798576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161178f90613daf565b60405180910390fd5b60006117c260646117b4600c548761238390919063ffffffff16565b61239990919063ffffffff16565b9050806117cd611680565b9250925050915091565b6117e86117e2611c0e565b83611eab565b611827576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161181e906138e1565b60405180910390fd5b611833848484846123af565b50505050565b60606000600b5414156118555761184e61240b565b90506118d1565b61185e82611ba2565b61189d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161189490613e1b565b60405180910390fd5b6118a561240b565b6118ae8361249d565b6040516020016118bf929190613e6c565b60405160208183030381529060405290505b919050565b6118de61220e565b73ffffffffffffffffffffffffffffffffffffffff166118fc611680565b73ffffffffffffffffffffffffffffffffffffffff1614611952576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161194990613afd565b60405180910390fd5b80600d60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611a3261220e565b73ffffffffffffffffffffffffffffffffffffffff16611a50611680565b73ffffffffffffffffffffffffffffffffffffffff1614611aa6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a9d90613afd565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611b16576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b0d90613f02565b60405180910390fd5b611b1f816125fe565b50565b60008183611b309190613f51565b905092915050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b60003073ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161415611cb857600080368080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f820116905080830192505050505050509050600080369050905073ffffffffffffffffffffffffffffffffffffffff818301511692505050611cbc565b3390505b90565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611d3283611433565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60008082511415611d8f57600060e01b9050611d97565b602082015190505b919050565b6000806001611db2611dad886126c4565b61272c565b84878760405160008152602001604052604051611dd29493929190613fc5565b6020604051602081039080840390855afa158015611df4573d6000803e3d6000fd5b505050602060405103519050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611e70576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e6790614056565b60405180910390fd5b8673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161491505095945050505050565b6000611eb682611ba2565b611ef5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611eec906140e8565b60405180910390fd5b6000611f0083611433565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611f6f57508373ffffffffffffffffffffffffffffffffffffffff16611f57846108e2565b73ffffffffffffffffffffffffffffffffffffffff16145b80611f805750611f7f8185611996565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611fa982611433565b73ffffffffffffffffffffffffffffffffffffffff1614611fff576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ff69061417a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561206f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120669061420c565b60405180910390fd5b61207a838383612765565b612085600082611cbf565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546120d5919061422c565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461212c9190613f51565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46121eb83838361276a565b505050565b61220a82826040518060200160405280600081525061276f565b5050565b600033905090565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612285576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161227c906142ac565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516123769190612cbf565b60405180910390a3505050565b6000818361239191906142cc565b905092915050565b600081836123a79190614355565b905092915050565b6123ba848484611f89565b6123c6848484846127ca565b612405576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123fc906143f8565b60405180910390fd5b50505050565b6060600a805461241a9061348d565b80601f01602080910402602001604051908101604052809291908181526020018280546124469061348d565b80156124935780601f1061246857610100808354040283529160200191612493565b820191906000526020600020905b81548152906001019060200180831161247657829003601f168201915b5050505050905090565b606060008214156124e5576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506125f9565b600082905060005b6000821461251757808061250090614418565b915050600a826125109190614355565b91506124ed565b60008167ffffffffffffffff81111561253357612532612eca565b5b6040519080825280601f01601f1916602001820160405280156125655781602001600182028036833780820191505090505b5090505b600085146125f25760018261257e919061422c565b9150600a8561258d9190614461565b60306125999190613f51565b60f81b8183815181106125af576125ae614492565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856125eb9190614355565b9450612569565b8093505050505b919050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600060405180608001604052806043815260200161471160439139805190602001208260000151836020015184604001518051906020012060405160200161270f94939291906144c1565b604051602081830303815290604052805190602001209050919050565b6000612736612961565b82604051602001612748929190614573565b604051602081830303815290604052805190602001209050919050565b505050565b505050565b612779838361296b565b61278660008484846127ca565b6127c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127bc906143f8565b60405180910390fd5b505050565b60006127eb8473ffffffffffffffffffffffffffffffffffffffff16612b45565b15612954578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261281461220e565b8786866040518563ffffffff1660e01b815260040161283694939291906145aa565b602060405180830381600087803b15801561285057600080fd5b505af192505050801561288157506040513d601f19601f8201168201806040525081019061287e919061460b565b60015b612904573d80600081146128b1576040519150601f19603f3d011682016040523d82523d6000602084013e6128b6565b606091505b506000815114156128fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128f3906143f8565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612959565b600190505b949350505050565b6000600854905090565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156129db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129d290614684565b60405180910390fd5b6129e481611ba2565b15612a24576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a1b906146f0565b60405180910390fd5b612a3060008383612765565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612a809190613f51565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612b416000838361276a565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b828054612b749061348d565b90600052602060002090601f016020900481019282612b965760008555612bdd565b82601f10612baf57805160ff1916838001178555612bdd565b82800160010185558215612bdd579182015b82811115612bdc578251825591602001919060010190612bc1565b5b509050612bea9190612bee565b5090565b5b80821115612c07576000816000905550600101612bef565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612c5481612c1f565b8114612c5f57600080fd5b50565b600081359050612c7181612c4b565b92915050565b600060208284031215612c8d57612c8c612c15565b5b6000612c9b84828501612c62565b91505092915050565b60008115159050919050565b612cb981612ca4565b82525050565b6000602082019050612cd46000830184612cb0565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612d14578082015181840152602081019050612cf9565b83811115612d23576000848401525b50505050565b6000601f19601f8301169050919050565b6000612d4582612cda565b612d4f8185612ce5565b9350612d5f818560208601612cf6565b612d6881612d29565b840191505092915050565b60006020820190508181036000830152612d8d8184612d3a565b905092915050565b6000819050919050565b612da881612d95565b8114612db357600080fd5b50565b600081359050612dc581612d9f565b92915050565b600060208284031215612de157612de0612c15565b5b6000612def84828501612db6565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612e2382612df8565b9050919050565b612e3381612e18565b82525050565b6000602082019050612e4e6000830184612e2a565b92915050565b612e5d81612e18565b8114612e6857600080fd5b50565b600081359050612e7a81612e54565b92915050565b60008060408385031215612e9757612e96612c15565b5b6000612ea585828601612e6b565b9250506020612eb685828601612db6565b9150509250929050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612f0282612d29565b810181811067ffffffffffffffff82111715612f2157612f20612eca565b5b80604052505050565b6000612f34612c0b565b9050612f408282612ef9565b919050565b600067ffffffffffffffff821115612f6057612f5f612eca565b5b612f6982612d29565b9050602081019050919050565b82818337600083830152505050565b6000612f98612f9384612f45565b612f2a565b905082815260208101848484011115612fb457612fb3612ec5565b5b612fbf848285612f76565b509392505050565b600082601f830112612fdc57612fdb612ec0565b5b8135612fec848260208601612f85565b91505092915050565b6000819050919050565b61300881612ff5565b811461301357600080fd5b50565b60008135905061302581612fff565b92915050565b600060ff82169050919050565b6130418161302b565b811461304c57600080fd5b50565b60008135905061305e81613038565b92915050565b600080600080600060a086880312156130805761307f612c15565b5b600061308e88828901612e6b565b955050602086013567ffffffffffffffff8111156130af576130ae612c1a565b5b6130bb88828901612fc7565b94505060406130cc88828901613016565b93505060606130dd88828901613016565b92505060806130ee8882890161304f565b9150509295509295909350565b600081519050919050565b600082825260208201905092915050565b6000613122826130fb565b61312c8185613106565b935061313c818560208601612cf6565b61314581612d29565b840191505092915050565b6000602082019050818103600083015261316a8184613117565b905092915050565b61317b81612d95565b82525050565b60006020820190506131966000830184613172565b92915050565b6000806000606084860312156131b5576131b4612c15565b5b60006131c386828701612e6b565b93505060206131d486828701612e6b565b92505060406131e586828701612db6565b9150509250925092565b60006020828403121561320557613204612c15565b5b600061321384828501612e6b565b91505092915050565b600067ffffffffffffffff82111561323757613236612eca565b5b61324082612d29565b9050602081019050919050565b600061326061325b8461321c565b612f2a565b90508281526020810184848401111561327c5761327b612ec5565b5b613287848285612f76565b509392505050565b600082601f8301126132a4576132a3612ec0565b5b81356132b484826020860161324d565b91505092915050565b6000602082840312156132d3576132d2612c15565b5b600082013567ffffffffffffffff8111156132f1576132f0612c1a565b5b6132fd8482850161328f565b91505092915050565b61330f81612ca4565b811461331a57600080fd5b50565b60008135905061332c81613306565b92915050565b6000806040838503121561334957613348612c15565b5b600061335785828601612e6b565b92505060206133688582860161331d565b9150509250929050565b60006040820190506133876000830185613172565b6133946020830184612e2a565b9392505050565b600080600080608085870312156133b5576133b4612c15565b5b60006133c387828801612e6b565b94505060206133d487828801612e6b565b93505060406133e587828801612db6565b925050606085013567ffffffffffffffff81111561340657613405612c1a565b5b61341287828801612fc7565b91505092959194509250565b6000806040838503121561343557613434612c15565b5b600061344385828601612e6b565b925050602061345485828601612e6b565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806134a557607f821691505b602082108114156134b9576134b861345e565b5b50919050565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b600061351b602c83612ce5565b9150613526826134bf565b604082019050919050565b6000602082019050818103600083015261354a8161350e565b9050919050565b7f4552433732313a415050524f56414c5f544f5f43555252454e545f4f574e4552600082015250565b6000613587602083612ce5565b915061359282613551565b602082019050919050565b600060208201905081810360008301526135b68161357a565b9050919050565b7f4552433732313a415050524f56455f43414c4c45525f4e4f545f4f574e45525f60008201527f4f525f415050524f5645445f464f525f414c4c00000000000000000000000000602082015250565b6000613619603383612ce5565b9150613624826135bd565b604082019050919050565b600060208201905081810360008301526136488161360c565b9050919050565b7f66756e6374696f6e5369676e61747572652063616e206e6f74206265206f662060008201527f657865637574654d6574615472616e73616374696f6e206d6574686f64000000602082015250565b60006136ab603d83612ce5565b91506136b68261364f565b604082019050919050565b600060208201905081810360008301526136da8161369e565b9050919050565b7f5369676e657220616e64207369676e617475726520646f206e6f74206d61746360008201527f6800000000000000000000000000000000000000000000000000000000000000602082015250565b600061373d602183612ce5565b9150613748826136e1565b604082019050919050565b6000602082019050818103600083015261376c81613730565b9050919050565b600081905092915050565b6000613789826130fb565b6137938185613773565b93506137a3818560208601612cf6565b80840191505092915050565b60008160601b9050919050565b60006137c7826137af565b9050919050565b60006137d9826137bc565b9050919050565b6137f16137ec82612e18565b6137ce565b82525050565b6000613803828561377e565b915061380f82846137e0565b6014820191508190509392505050565b600061382b828461377e565b915081905092915050565b600061384182612df8565b9050919050565b61385181613836565b82525050565b600060608201905061386c6000830186612e2a565b6138796020830185613848565b818103604083015261388b8184613117565b9050949350505050565b7f43414c4c45525f4e4f545f415050524f56454400000000000000000000000000600082015250565b60006138cb601383612ce5565b91506138d682613895565b602082019050919050565b600060208201905081810360008301526138fa816138be565b9050919050565b7f554e415554484f52495a45445f41434345535300000000000000000000000000600082015250565b6000613937601383612ce5565b915061394282613901565b602082019050919050565b600060208201905081810360008301526139668161392a565b9050919050565b7f414444524553535f43414e5f4e4f545f42455f5a45524f000000000000000000600082015250565b60006139a3601783612ce5565b91506139ae8261396d565b602082019050919050565b600060208201905081810360008301526139d281613996565b9050919050565b7f4d41585f5055424c49435f535550504c595f5245414348454400000000000000600082015250565b6000613a0f601983612ce5565b9150613a1a826139d9565b602082019050919050565b60006020820190508181036000830152613a3e81613a02565b9050919050565b7f505249564154455f53414c455f5045524d495353494f4e5f44454e4945440000600082015250565b6000613a7b601e83612ce5565b9150613a8682613a45565b602082019050919050565b60006020820190508181036000830152613aaa81613a6e565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613ae7602083612ce5565b9150613af282613ab1565b602082019050919050565b60006020820190508181036000830152613b1681613ada565b9050919050565b600081905092915050565b60008190508160005260206000209050919050565b60008154613b4a8161348d565b613b548186613b1d565b94506001821660008114613b6f5760018114613b8057613bb3565b60ff19831686528186019350613bb3565b613b8985613b28565b60005b83811015613bab57815481890152600182019150602081019050613b8c565b838801955050505b50505092915050565b6000613bc88284613b3d565b915081905092915050565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b6000613c2f602983612ce5565b9150613c3a82613bd3565b604082019050919050565b60006020820190508181036000830152613c5e81613c22565b9050919050565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b6000613cc1602a83612ce5565b9150613ccc82613c65565b604082019050919050565b60006020820190508181036000830152613cf081613cb4565b9050919050565b7f43414e5f4e4f545f52454e4f554e43455f4f574e455253484950000000000000600082015250565b6000613d2d601a83612ce5565b9150613d3882613cf7565b602082019050919050565b60006020820190508181036000830152613d5c81613d20565b9050919050565b7f50524943455f43414e5f4e4f545f42455f5a45524f0000000000000000000000600082015250565b6000613d99601583612ce5565b9150613da482613d63565b602082019050919050565b60006020820190508181036000830152613dc881613d8c565b9050919050565b7f544f4b454e5f444f45535f4e4f545f4558495354000000000000000000000000600082015250565b6000613e05601483612ce5565b9150613e1082613dcf565b602082019050919050565b60006020820190508181036000830152613e3481613df8565b9050919050565b6000613e4682612cda565b613e508185613b1d565b9350613e60818560208601612cf6565b80840191505092915050565b6000613e788285613e3b565b9150613e848284613e3b565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613eec602683612ce5565b9150613ef782613e90565b604082019050919050565b60006020820190508181036000830152613f1b81613edf565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000613f5c82612d95565b9150613f6783612d95565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613f9c57613f9b613f22565b5b828201905092915050565b613fb081612ff5565b82525050565b613fbf8161302b565b82525050565b6000608082019050613fda6000830187613fa7565b613fe76020830186613fb6565b613ff46040830185613fa7565b6140016060830184613fa7565b95945050505050565b7f496e76616c6964207369676e6174757265000000000000000000000000000000600082015250565b6000614040601183612ce5565b915061404b8261400a565b602082019050919050565b6000602082019050818103600083015261406f81614033565b9050919050565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b60006140d2602c83612ce5565b91506140dd82614076565b604082019050919050565b60006020820190508181036000830152614101816140c5565b9050919050565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b6000614164602583612ce5565b915061416f82614108565b604082019050919050565b6000602082019050818103600083015261419381614157565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006141f6602483612ce5565b91506142018261419a565b604082019050919050565b60006020820190508181036000830152614225816141e9565b9050919050565b600061423782612d95565b915061424283612d95565b92508282101561425557614254613f22565b5b828203905092915050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b6000614296601983612ce5565b91506142a182614260565b602082019050919050565b600060208201905081810360008301526142c581614289565b9050919050565b60006142d782612d95565b91506142e283612d95565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561431b5761431a613f22565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061436082612d95565b915061436b83612d95565b92508261437b5761437a614326565b5b828204905092915050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b60006143e2603283612ce5565b91506143ed82614386565b604082019050919050565b60006020820190508181036000830152614411816143d5565b9050919050565b600061442382612d95565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561445657614455613f22565b5b600182019050919050565b600061446c82612d95565b915061447783612d95565b92508261448757614486614326565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60006080820190506144d66000830187613fa7565b6144e36020830186613172565b6144f06040830185612e2a565b6144fd6060830184613fa7565b95945050505050565b7f1901000000000000000000000000000000000000000000000000000000000000600082015250565b600061453c600283613b1d565b915061454782614506565b600282019050919050565b6000819050919050565b61456d61456882612ff5565b614552565b82525050565b600061457e8261452f565b915061458a828561455c565b60208201915061459a828461455c565b6020820191508190509392505050565b60006080820190506145bf6000830187612e2a565b6145cc6020830186612e2a565b6145d96040830185613172565b81810360608301526145eb8184613117565b905095945050505050565b60008151905061460581612c4b565b92915050565b60006020828403121561462157614620612c15565b5b600061462f848285016145f6565b91505092915050565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b600061466e602083612ce5565b915061467982614638565b602082019050919050565b6000602082019050818103600083015261469d81614661565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b60006146da601c83612ce5565b91506146e5826146a4565b602082019050919050565b60006020820190508181036000830152614709816146cd565b905091905056fe4d6574615472616e73616374696f6e2875696e74323536206e6f6e63652c616464726573732066726f6d2c62797465732066756e6374696f6e5369676e617475726529a26469706673582212206779844678de1e54cc09c8b5df79d94c5c14233b6c18d7b10e4f2bb08d67323464736f6c63430008090033

Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)

00000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e00000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000001800000000000000000000000000000000000000000000000000000000000000008444746616d696c790000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005444746414d000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002468747470733a2f2f6e6674732e756e78642e636f6d2f6e6674732f646766616d696c792f000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000041000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000003000000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000050000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000700000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000009000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000b000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000000d000000000000000000000000000000000000000000000000000000000000000e000000000000000000000000000000000000000000000000000000000000000f0000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000001100000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000000000000000013000000000000000000000000000000000000000000000000000000000000001400000000000000000000000000000000000000000000000000000000000000150000000000000000000000000000000000000000000000000000000000000016000000000000000000000000000000000000000000000000000000000000001700000000000000000000000000000000000000000000000000000000000000180000000000000000000000000000000000000000000000000000000000000019000000000000000000000000000000000000000000000000000000000000001a000000000000000000000000000000000000000000000000000000000000001b000000000000000000000000000000000000000000000000000000000000001c000000000000000000000000000000000000000000000000000000000000001d000000000000000000000000000000000000000000000000000000000000001e000000000000000000000000000000000000000000000000000000000000001f0000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000002100000000000000000000000000000000000000000000000000000000000000220000000000000000000000000000000000000000000000000000000000000023000000000000000000000000000000000000000000000000000000000000002400000000000000000000000000000000000000000000000000000000000000250000000000000000000000000000000000000000000000000000000000000026000000000000000000000000000000000000000000000000000000000000002700000000000000000000000000000000000000000000000000000000000000280000000000000000000000000000000000000000000000000000000000000029000000000000000000000000000000000000000000000000000000000000002a000000000000000000000000000000000000000000000000000000000000002b000000000000000000000000000000000000000000000000000000000000002c000000000000000000000000000000000000000000000000000000000000002d000000000000000000000000000000000000000000000000000000000000002e000000000000000000000000000000000000000000000000000000000000002f0000000000000000000000000000000000000000000000000000000000000031000000000000000000000000000000000000000000000000000000000000003200000000000000000000000000000000000000000000000000000000000000330000000000000000000000000000000000000000000000000000000000000034000000000000000000000000000000000000000000000000000000000000003500000000000000000000000000000000000000000000000000000000000000360000000000000000000000000000000000000000000000000000000000000037000000000000000000000000000000000000000000000000000000000000003a000000000000000000000000000000000000000000000000000000000000003c000000000000000000000000000000000000000000000000000000000000004200000000000000000000000000000000000000000000000000000000000000430000000000000000000000000000000000000000000000000000000000000045000000000000000000000000000000000000000000000000000000000000004b00000000000000000000000000000000000000000000000000000000000002ea00000000000000000000000000000000000000000000000000000000000002eb00000000000000000000000000000000000000000000000000000000000002ec00000000000000000000000000000000000000000000000000000000000002ed00000000000000000000000000000000000000000000000000000000000002ee

-----Decoded View---------------
Arg [0] : tokenName (string): DGFamily
Arg [1] : tokenSymbol (string): DGFAM
Arg [2] : _baseUri (string): https://nfts.unxd.com/nfts/dgfamily/
Arg [3] : _royaltyPercentage (uint256): 10
Arg [4] : _privateSaleTokenIds (uint256[]): 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,49,50,51,52,53,54,55,58,60,66,67,69,75,746,747,748,749,750

-----Encoded View---------------
78 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000120
Arg [3] : 000000000000000000000000000000000000000000000000000000000000000a
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000180
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000008
Arg [6] : 444746616d696c79000000000000000000000000000000000000000000000000
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000005
Arg [8] : 444746414d000000000000000000000000000000000000000000000000000000
Arg [9] : 0000000000000000000000000000000000000000000000000000000000000024
Arg [10] : 68747470733a2f2f6e6674732e756e78642e636f6d2f6e6674732f646766616d
Arg [11] : 696c792f00000000000000000000000000000000000000000000000000000000
Arg [12] : 0000000000000000000000000000000000000000000000000000000000000041
Arg [13] : 0000000000000000000000000000000000000000000000000000000000000001
Arg [14] : 0000000000000000000000000000000000000000000000000000000000000002
Arg [15] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [16] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [17] : 0000000000000000000000000000000000000000000000000000000000000005
Arg [18] : 0000000000000000000000000000000000000000000000000000000000000006
Arg [19] : 0000000000000000000000000000000000000000000000000000000000000007
Arg [20] : 0000000000000000000000000000000000000000000000000000000000000008
Arg [21] : 0000000000000000000000000000000000000000000000000000000000000009
Arg [22] : 000000000000000000000000000000000000000000000000000000000000000a
Arg [23] : 000000000000000000000000000000000000000000000000000000000000000b
Arg [24] : 000000000000000000000000000000000000000000000000000000000000000c
Arg [25] : 000000000000000000000000000000000000000000000000000000000000000d
Arg [26] : 000000000000000000000000000000000000000000000000000000000000000e
Arg [27] : 000000000000000000000000000000000000000000000000000000000000000f
Arg [28] : 0000000000000000000000000000000000000000000000000000000000000010
Arg [29] : 0000000000000000000000000000000000000000000000000000000000000011
Arg [30] : 0000000000000000000000000000000000000000000000000000000000000012
Arg [31] : 0000000000000000000000000000000000000000000000000000000000000013
Arg [32] : 0000000000000000000000000000000000000000000000000000000000000014
Arg [33] : 0000000000000000000000000000000000000000000000000000000000000015
Arg [34] : 0000000000000000000000000000000000000000000000000000000000000016
Arg [35] : 0000000000000000000000000000000000000000000000000000000000000017
Arg [36] : 0000000000000000000000000000000000000000000000000000000000000018
Arg [37] : 0000000000000000000000000000000000000000000000000000000000000019
Arg [38] : 000000000000000000000000000000000000000000000000000000000000001a
Arg [39] : 000000000000000000000000000000000000000000000000000000000000001b
Arg [40] : 000000000000000000000000000000000000000000000000000000000000001c
Arg [41] : 000000000000000000000000000000000000000000000000000000000000001d
Arg [42] : 000000000000000000000000000000000000000000000000000000000000001e
Arg [43] : 000000000000000000000000000000000000000000000000000000000000001f
Arg [44] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [45] : 0000000000000000000000000000000000000000000000000000000000000021
Arg [46] : 0000000000000000000000000000000000000000000000000000000000000022
Arg [47] : 0000000000000000000000000000000000000000000000000000000000000023
Arg [48] : 0000000000000000000000000000000000000000000000000000000000000024
Arg [49] : 0000000000000000000000000000000000000000000000000000000000000025
Arg [50] : 0000000000000000000000000000000000000000000000000000000000000026
Arg [51] : 0000000000000000000000000000000000000000000000000000000000000027
Arg [52] : 0000000000000000000000000000000000000000000000000000000000000028
Arg [53] : 0000000000000000000000000000000000000000000000000000000000000029
Arg [54] : 000000000000000000000000000000000000000000000000000000000000002a
Arg [55] : 000000000000000000000000000000000000000000000000000000000000002b
Arg [56] : 000000000000000000000000000000000000000000000000000000000000002c
Arg [57] : 000000000000000000000000000000000000000000000000000000000000002d
Arg [58] : 000000000000000000000000000000000000000000000000000000000000002e
Arg [59] : 000000000000000000000000000000000000000000000000000000000000002f
Arg [60] : 0000000000000000000000000000000000000000000000000000000000000031
Arg [61] : 0000000000000000000000000000000000000000000000000000000000000032
Arg [62] : 0000000000000000000000000000000000000000000000000000000000000033
Arg [63] : 0000000000000000000000000000000000000000000000000000000000000034
Arg [64] : 0000000000000000000000000000000000000000000000000000000000000035
Arg [65] : 0000000000000000000000000000000000000000000000000000000000000036
Arg [66] : 0000000000000000000000000000000000000000000000000000000000000037
Arg [67] : 000000000000000000000000000000000000000000000000000000000000003a
Arg [68] : 000000000000000000000000000000000000000000000000000000000000003c
Arg [69] : 0000000000000000000000000000000000000000000000000000000000000042
Arg [70] : 0000000000000000000000000000000000000000000000000000000000000043
Arg [71] : 0000000000000000000000000000000000000000000000000000000000000045
Arg [72] : 000000000000000000000000000000000000000000000000000000000000004b
Arg [73] : 00000000000000000000000000000000000000000000000000000000000002ea
Arg [74] : 00000000000000000000000000000000000000000000000000000000000002eb
Arg [75] : 00000000000000000000000000000000000000000000000000000000000002ec
Arg [76] : 00000000000000000000000000000000000000000000000000000000000002ed
Arg [77] : 00000000000000000000000000000000000000000000000000000000000002ee


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.