ETH Price: $3,107.20 (+1.27%)
Gas: 12 Gwei

Token

X-Ray Deebies (XRay_DEEBIES)
 

Overview

Max Total Supply

1,097 XRay_DEEBIES

Holders

467

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
olive47.eth
Balance
1 XRay_DEEBIES
0x93012c4e53a9ec003189a71b41505d76972b1a40
Loading...
Loading
Loading...
Loading
Loading...
Loading

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

Contract Source Code Verified (Exact Match)

Contract Name:
XRayDeebies

Compiler Version
v0.8.11+commit.d7f03943

Optimization Enabled:
No with 200 runs

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

import "@openzeppelin/contracts/token/ERC721/IERC721.sol";
import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol";
import "@openzeppelin/contracts/utils/Strings.sol";
import "@openzeppelin/contracts/access/AccessControl.sol";

contract XRayDeebies is AccessControl, ERC721Enumerable {
    using Strings for uint256;

	string private baseTokenURI;
	bool public paused;
    address private ownerAddress;
    address private constant deebiesContract = 0x400E2073B4Ac13D6f11c15697DF7Fc609dB93809;
    

    constructor(address owner_) ERC721("X-Ray Deebies", "XRay_DEEBIES")  {
        _setupRole(DEFAULT_ADMIN_ROLE, _msgSender());
        _setupRole(DEFAULT_ADMIN_ROLE, ownerAddress);
        setOwner(owner_);
        paused = false;
    }

    function claimed(uint256 tokenId) public view virtual returns (bool) {
        return _exists(tokenId);
    }

    function baseClaim(uint256 tokenId) private {
        require(IERC721(deebiesContract).ownerOf(tokenId) == _msgSender(), string(abi.encodePacked('Not owner of DB ', tokenId.toString())));
        require(!claimed(tokenId), 'Already claimed!');

        _safeMint(_msgSender(), tokenId);
    }

    function claimXRayDeebies(uint256[] memory tokenIds) public {
        require(!paused, "Pause");
        
        for (uint256 i = 0; i < tokenIds.length; i++) {
            baseClaim(tokenIds[i]);
        }
    }

    function owner() public view virtual returns (address) {
        return ownerAddress;
    }

    function setOwner(address owner_) public onlyRole(DEFAULT_ADMIN_ROLE) {
        ownerAddress = owner_;
    }

    function _baseURI() internal view virtual override returns (string memory) {
        return baseTokenURI;
    }

    function setBaseURI(string memory baseURI) public onlyRole(DEFAULT_ADMIN_ROLE) {
        baseTokenURI = baseURI;
    }

    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        require(_exists(tokenId), "Nonexistent token");

        string memory baseURI = _baseURI();
        return string(abi.encodePacked(baseURI, tokenId.toString()));
    }

    function tokensOfOwner(address _owner) external view returns(uint256[] memory) {
        uint tokenCount = balanceOf(_owner);

        uint256[] memory result = new uint256[](tokenCount);
        for(uint i = 0; i < tokenCount; i++){
            result[i] = tokenOfOwnerByIndex(_owner, i);
        }

        return result;
    }

    function pause(bool isPaused) public onlyRole(DEFAULT_ADMIN_ROLE) {
        paused = isPaused;
    }

    function supportsInterface(bytes4 interfaceId) public view virtual override(ERC721Enumerable, AccessControl) returns (bool) {
        return ERC721Enumerable.supportsInterface(interfaceId) || AccessControl.supportsInterface(interfaceId);
    }
}

File 2 of 13 : IERC165.sol
// SPDX-License-Identifier: MIT

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 3 of 13 : ERC165.sol
// SPDX-License-Identifier: MIT

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 4 of 13 : Strings.sol
// SPDX-License-Identifier: MIT

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 5 of 13 : Context.sol
// SPDX-License-Identifier: MIT

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 6 of 13 : Address.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    function _verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) private 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 7 of 13 : IERC721Metadata.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "../IERC721.sol";

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

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

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

File 8 of 13 : IERC721Enumerable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "../IERC721.sol";

/**
 * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Enumerable is IERC721 {
    /**
     * @dev Returns the total amount of tokens stored by the contract.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns a token ID owned by `owner` at a given `index` of its token list.
     * Use along with {balanceOf} to enumerate all of ``owner``'s tokens.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256 tokenId);

    /**
     * @dev Returns a token ID at a given `index` of all the tokens stored by the contract.
     * Use along with {totalSupply} to enumerate all tokens.
     */
    function tokenByIndex(uint256 index) external view returns (uint256);
}

File 9 of 13 : ERC721Enumerable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "../ERC721.sol";
import "./IERC721Enumerable.sol";

/**
 * @dev This implements an optional extension of {ERC721} defined in the EIP that adds
 * enumerability of all the token ids in the contract as well as all token ids owned by each
 * account.
 */
abstract contract ERC721Enumerable is ERC721, IERC721Enumerable {
    // Mapping from owner to list of owned token IDs
    mapping(address => mapping(uint256 => uint256)) private _ownedTokens;

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

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

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

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

    /**
     * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) {
        require(index < ERC721.balanceOf(owner), "ERC721Enumerable: owner index out of bounds");
        return _ownedTokens[owner][index];
    }

    /**
     * @dev See {IERC721Enumerable-totalSupply}.
     */
    function totalSupply() public view virtual override returns (uint256) {
        return _allTokens.length;
    }

    /**
     * @dev See {IERC721Enumerable-tokenByIndex}.
     */
    function tokenByIndex(uint256 index) public view virtual override returns (uint256) {
        require(index < ERC721Enumerable.totalSupply(), "ERC721Enumerable: global index out of bounds");
        return _allTokens[index];
    }

    /**
     * @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` cannot be the zero address.
     * - `to` cannot be the zero address.
     *
     * 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 override {
        super._beforeTokenTransfer(from, to, tokenId);

        if (from == address(0)) {
            _addTokenToAllTokensEnumeration(tokenId);
        } else if (from != to) {
            _removeTokenFromOwnerEnumeration(from, tokenId);
        }
        if (to == address(0)) {
            _removeTokenFromAllTokensEnumeration(tokenId);
        } else if (to != from) {
            _addTokenToOwnerEnumeration(to, tokenId);
        }
    }

    /**
     * @dev Private function to add a token to this extension's ownership-tracking data structures.
     * @param to address representing the new owner of the given token ID
     * @param tokenId uint256 ID of the token to be added to the tokens list of the given address
     */
    function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private {
        uint256 length = ERC721.balanceOf(to);
        _ownedTokens[to][length] = tokenId;
        _ownedTokensIndex[tokenId] = length;
    }

    /**
     * @dev Private function to add a token to this extension's token tracking data structures.
     * @param tokenId uint256 ID of the token to be added to the tokens list
     */
    function _addTokenToAllTokensEnumeration(uint256 tokenId) private {
        _allTokensIndex[tokenId] = _allTokens.length;
        _allTokens.push(tokenId);
    }

    /**
     * @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that
     * while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for
     * gas optimizations e.g. when performing a transfer operation (avoiding double writes).
     * This has O(1) time complexity, but alters the order of the _ownedTokens array.
     * @param from address representing the previous owner of the given token ID
     * @param tokenId uint256 ID of the token to be removed from the tokens list of the given address
     */
    function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private {
        // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = ERC721.balanceOf(from) - 1;
        uint256 tokenIndex = _ownedTokensIndex[tokenId];

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

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

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

    /**
     * @dev Private function to remove a token from this extension's token tracking data structures.
     * This has O(1) time complexity, but alters the order of the _allTokens array.
     * @param tokenId uint256 ID of the token to be removed from the tokens list
     */
    function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private {
        // To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

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

        // When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so
        // rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding
        // an 'if' statement (like in _removeTokenFromOwnerEnumeration)
        uint256 lastTokenId = _allTokens[lastTokenIndex];

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

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

File 10 of 13 : IERC721Receiver.sol
// SPDX-License-Identifier: MIT

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 11 of 13 : IERC721.sol
// SPDX-License-Identifier: MIT

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 12 of 13 : ERC721.sol
// SPDX-License-Identifier: MIT

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 {
        require(operator != _msgSender(), "ERC721: approve to caller");

        _operatorApprovals[_msgSender()][operator] = approved;
        emit ApprovalForAll(_msgSender(), operator, approved);
    }

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

    /**
     * @dev 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(to).onERC721Received.selector;
            } catch (bytes memory reason) {
                if (reason.length == 0) {
                    revert("ERC721: transfer to non ERC721Receiver implementer");
                } else {
                    assembly {
                        revert(add(32, reason), mload(reason))
                    }
                }
            }
        } else {
            return true;
        }
    }

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

File 13 of 13 : AccessControl.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "../utils/Context.sol";
import "../utils/Strings.sol";
import "../utils/introspection/ERC165.sol";

/**
 * @dev External interface of AccessControl declared to support ERC165 detection.
 */
interface IAccessControl {
    function hasRole(bytes32 role, address account) external view returns (bool);

    function getRoleAdmin(bytes32 role) external view returns (bytes32);

    function grantRole(bytes32 role, address account) external;

    function revokeRole(bytes32 role, address account) external;

    function renounceRole(bytes32 role, address account) external;
}

/**
 * @dev Contract module that allows children to implement role-based access
 * control mechanisms. This is a lightweight version that doesn't allow enumerating role
 * members except through off-chain means by accessing the contract event logs. Some
 * applications may benefit from on-chain enumerability, for those cases see
 * {AccessControlEnumerable}.
 *
 * Roles are referred to by their `bytes32` identifier. These should be exposed
 * in the external API and be unique. The best way to achieve this is by
 * using `public constant` hash digests:
 *
 * ```
 * bytes32 public constant MY_ROLE = keccak256("MY_ROLE");
 * ```
 *
 * Roles can be used to represent a set of permissions. To restrict access to a
 * function call, use {hasRole}:
 *
 * ```
 * function foo() public {
 *     require(hasRole(MY_ROLE, msg.sender));
 *     ...
 * }
 * ```
 *
 * Roles can be granted and revoked dynamically via the {grantRole} and
 * {revokeRole} functions. Each role has an associated admin role, and only
 * accounts that have a role's admin role can call {grantRole} and {revokeRole}.
 *
 * By default, the admin role for all roles is `DEFAULT_ADMIN_ROLE`, which means
 * that only accounts with this role will be able to grant or revoke other
 * roles. More complex role relationships can be created by using
 * {_setRoleAdmin}.
 *
 * WARNING: The `DEFAULT_ADMIN_ROLE` is also its own admin: it has permission to
 * grant and revoke this role. Extra precautions should be taken to secure
 * accounts that have been granted it.
 */
abstract contract AccessControl is Context, IAccessControl, ERC165 {
    struct RoleData {
        mapping(address => bool) members;
        bytes32 adminRole;
    }

    mapping(bytes32 => RoleData) private _roles;

    bytes32 public constant DEFAULT_ADMIN_ROLE = 0x00;

    /**
     * @dev Emitted when `newAdminRole` is set as ``role``'s admin role, replacing `previousAdminRole`
     *
     * `DEFAULT_ADMIN_ROLE` is the starting admin for all roles, despite
     * {RoleAdminChanged} not being emitted signaling this.
     *
     * _Available since v3.1._
     */
    event RoleAdminChanged(bytes32 indexed role, bytes32 indexed previousAdminRole, bytes32 indexed newAdminRole);

    /**
     * @dev Emitted when `account` is granted `role`.
     *
     * `sender` is the account that originated the contract call, an admin role
     * bearer except when using {_setupRole}.
     */
    event RoleGranted(bytes32 indexed role, address indexed account, address indexed sender);

    /**
     * @dev Emitted when `account` is revoked `role`.
     *
     * `sender` is the account that originated the contract call:
     *   - if using `revokeRole`, it is the admin role bearer
     *   - if using `renounceRole`, it is the role bearer (i.e. `account`)
     */
    event RoleRevoked(bytes32 indexed role, address indexed account, address indexed sender);

    /**
     * @dev Modifier that checks that an account has a specific role. Reverts
     * with a standardized message including the required role.
     *
     * The format of the revert reason is given by the following regular expression:
     *
     *  /^AccessControl: account (0x[0-9a-f]{20}) is missing role (0x[0-9a-f]{32})$/
     *
     * _Available since v4.1._
     */
    modifier onlyRole(bytes32 role) {
        _checkRole(role, _msgSender());
        _;
    }

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

    /**
     * @dev Returns `true` if `account` has been granted `role`.
     */
    function hasRole(bytes32 role, address account) public view override returns (bool) {
        return _roles[role].members[account];
    }

    /**
     * @dev Revert with a standard message if `account` is missing `role`.
     *
     * The format of the revert reason is given by the following regular expression:
     *
     *  /^AccessControl: account (0x[0-9a-f]{20}) is missing role (0x[0-9a-f]{32})$/
     */
    function _checkRole(bytes32 role, address account) internal view {
        if (!hasRole(role, account)) {
            revert(
                string(
                    abi.encodePacked(
                        "AccessControl: account ",
                        Strings.toHexString(uint160(account), 20),
                        " is missing role ",
                        Strings.toHexString(uint256(role), 32)
                    )
                )
            );
        }
    }

    /**
     * @dev Returns the admin role that controls `role`. See {grantRole} and
     * {revokeRole}.
     *
     * To change a role's admin, use {_setRoleAdmin}.
     */
    function getRoleAdmin(bytes32 role) public view override returns (bytes32) {
        return _roles[role].adminRole;
    }

    /**
     * @dev Grants `role` to `account`.
     *
     * If `account` had not been already granted `role`, emits a {RoleGranted}
     * event.
     *
     * Requirements:
     *
     * - the caller must have ``role``'s admin role.
     */
    function grantRole(bytes32 role, address account) public virtual override onlyRole(getRoleAdmin(role)) {
        _grantRole(role, account);
    }

    /**
     * @dev Revokes `role` from `account`.
     *
     * If `account` had been granted `role`, emits a {RoleRevoked} event.
     *
     * Requirements:
     *
     * - the caller must have ``role``'s admin role.
     */
    function revokeRole(bytes32 role, address account) public virtual override onlyRole(getRoleAdmin(role)) {
        _revokeRole(role, account);
    }

    /**
     * @dev Revokes `role` from the calling account.
     *
     * Roles are often managed via {grantRole} and {revokeRole}: this function's
     * purpose is to provide a mechanism for accounts to lose their privileges
     * if they are compromised (such as when a trusted device is misplaced).
     *
     * If the calling account had been granted `role`, emits a {RoleRevoked}
     * event.
     *
     * Requirements:
     *
     * - the caller must be `account`.
     */
    function renounceRole(bytes32 role, address account) public virtual override {
        require(account == _msgSender(), "AccessControl: can only renounce roles for self");

        _revokeRole(role, account);
    }

    /**
     * @dev Grants `role` to `account`.
     *
     * If `account` had not been already granted `role`, emits a {RoleGranted}
     * event. Note that unlike {grantRole}, this function doesn't perform any
     * checks on the calling account.
     *
     * [WARNING]
     * ====
     * This function should only be called from the constructor when setting
     * up the initial roles for the system.
     *
     * Using this function in any other way is effectively circumventing the admin
     * system imposed by {AccessControl}.
     * ====
     */
    function _setupRole(bytes32 role, address account) internal virtual {
        _grantRole(role, account);
    }

    /**
     * @dev Sets `adminRole` as ``role``'s admin role.
     *
     * Emits a {RoleAdminChanged} event.
     */
    function _setRoleAdmin(bytes32 role, bytes32 adminRole) internal virtual {
        emit RoleAdminChanged(role, getRoleAdmin(role), adminRole);
        _roles[role].adminRole = adminRole;
    }

    function _grantRole(bytes32 role, address account) private {
        if (!hasRole(role, account)) {
            _roles[role].members[account] = true;
            emit RoleGranted(role, account, _msgSender());
        }
    }

    function _revokeRole(bytes32 role, address account) private {
        if (hasRole(role, account)) {
            _roles[role].members[account] = false;
            emit RoleRevoked(role, account, _msgSender());
        }
    }
}

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":"address","name":"owner_","type":"address"}],"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":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"previousAdminRole","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"newAdminRole","type":"bytes32"}],"name":"RoleAdminChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleGranted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleRevoked","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":"DEFAULT_ADMIN_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"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":"uint256[]","name":"tokenIds","type":"uint256[]"}],"name":"claimXRayDeebies","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"claimed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"}],"name":"getRoleAdmin","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"grantRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"hasRole","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"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":[{"internalType":"bool","name":"isPaused","type":"bool"}],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"renounceRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"revokeRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner_","type":"address"}],"name":"setOwner","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"tokensOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040523480156200001157600080fd5b506040516200505638038062005056833981810160405281019062000037919062000781565b6040518060400160405280600d81526020017f582d5261792044656562696573000000000000000000000000000000000000008152506040518060400160405280600c81526020017f585261795f4445454249455300000000000000000000000000000000000000008152508160019080519060200190620000bb92919062000667565b508060029080519060200190620000d492919062000667565b505050620000fb6000801b620000ef6200016560201b60201c565b6200016d60201b60201c565b620001326000801b600c60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff166200016d60201b60201c565b62000143816200018360201b60201c565b6000600c60006101000a81548160ff0219169083151502179055505062000bfa565b600033905090565b6200017f8282620001ed60201b60201c565b5050565b6000801b620001a8816200019c6200016560201b60201c565b620002de60201b60201c565b81600c60016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505050565b620001ff8282620003a260201b60201c565b620002da57600160008084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506200027f6200016560201b60201c565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b620002f08282620003a260201b60201c565b6200039e57620003238173ffffffffffffffffffffffffffffffffffffffff1660146200040c60201b620012c71760201c565b6200033e8360001c60206200040c60201b620012c71760201c565b60405160200162000351929190620008d6565b6040516020818303038152906040526040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200039591906200097b565b60405180910390fd5b5050565b600080600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b606060006002836002620004219190620009d8565b6200042d919062000a39565b67ffffffffffffffff81111562000449576200044862000a96565b5b6040519080825280601f01601f1916602001820160405280156200047c5781602001600182028036833780820191505090505b5090507f300000000000000000000000000000000000000000000000000000000000000081600081518110620004b757620004b662000ac5565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053507f7800000000000000000000000000000000000000000000000000000000000000816001815181106200051e576200051d62000ac5565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a90535060006001846002620005609190620009d8565b6200056c919062000a39565b90505b600181111562000616577f3031323334353637383961626364656600000000000000000000000000000000600f861660108110620005b257620005b162000ac5565b5b1a60f81b828281518110620005cc57620005cb62000ac5565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600485901c9450806200060e9062000af4565b90506200056f565b50600084146200065d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620006549062000b73565b60405180910390fd5b8091505092915050565b828054620006759062000bc4565b90600052602060002090601f016020900481019282620006995760008555620006e5565b82601f10620006b457805160ff1916838001178555620006e5565b82800160010185558215620006e5579182015b82811115620006e4578251825591602001919060010190620006c7565b5b509050620006f49190620006f8565b5090565b5b8082111562000713576000816000905550600101620006f9565b5090565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000749826200071c565b9050919050565b6200075b816200073c565b81146200076757600080fd5b50565b6000815190506200077b8162000750565b92915050565b6000602082840312156200079a576200079962000717565b5b6000620007aa848285016200076a565b91505092915050565b600081905092915050565b7f416363657373436f6e74726f6c3a206163636f756e7420000000000000000000600082015250565b6000620007f6601783620007b3565b91506200080382620007be565b601782019050919050565b600081519050919050565b60005b83811015620008395780820151818401526020810190506200081c565b8381111562000849576000848401525b50505050565b60006200085c826200080e565b620008688185620007b3565b93506200087a81856020860162000819565b80840191505092915050565b7f206973206d697373696e6720726f6c6520000000000000000000000000000000600082015250565b6000620008be601183620007b3565b9150620008cb8262000886565b601182019050919050565b6000620008e382620007e7565b9150620008f182856200084f565b9150620008fe82620008af565b91506200090c82846200084f565b91508190509392505050565b600082825260208201905092915050565b6000601f19601f8301169050919050565b600062000947826200080e565b62000953818562000918565b93506200096581856020860162000819565b620009708162000929565b840191505092915050565b600060208201905081810360008301526200099781846200093a565b905092915050565b6000819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000620009e5826200099f565b9150620009f2836200099f565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161562000a2e5762000a2d620009a9565b5b828202905092915050565b600062000a46826200099f565b915062000a53836200099f565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111562000a8b5762000a8a620009a9565b5b828201905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600062000b01826200099f565b9150600082141562000b185762000b17620009a9565b5b600182039050919050565b7f537472696e67733a20686578206c656e67746820696e73756666696369656e74600082015250565b600062000b5b60208362000918565b915062000b688262000b23565b602082019050919050565b6000602082019050818103600083015262000b8e8162000b4c565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168062000bdd57607f821691505b6020821081141562000bf45762000bf362000b95565b5b50919050565b61444c8062000c0a6000396000f3fe608060405234801561001057600080fd5b50600436106101da5760003560e01c80635c975abb11610104578063a217fddf116100a2578063c87b56dd11610071578063c87b56dd14610577578063d547741f146105a7578063dbe7e3bd146105c3578063e985e9c5146105f3576101da565b8063a217fddf14610505578063a22cb46514610523578063b52b59541461053f578063b88d4fde1461055b576101da565b80638462151c116100de5780638462151c146104695780638da5cb5b1461049957806391d14854146104b757806395d89b41146104e7576101da565b80635c975abb146103eb5780636352211e1461040957806370a0823114610439576101da565b806323b872dd1161017c57806336568abe1161014b57806336568abe1461036757806342842e0e146103835780634f6ccce71461039f57806355f804b3146103cf576101da565b806323b872dd146102cf578063248a9ca3146102eb5780632f2ff15d1461031b5780632f745c5914610337576101da565b8063081812fc116101b8578063081812fc14610249578063095ea7b31461027957806313af40351461029557806318160ddd146102b1576101da565b806301ffc9a7146101df57806302329a291461020f57806306fdde031461022b575b600080fd5b6101f960048036038101906101f49190612af1565b610623565b6040516102069190612b39565b60405180910390f35b61022960048036038101906102249190612b80565b610645565b005b610233610678565b6040516102409190612c46565b60405180910390f35b610263600480360381019061025e9190612c9e565b61070a565b6040516102709190612d0c565b60405180910390f35b610293600480360381019061028e9190612d53565b61078f565b005b6102af60048036038101906102aa9190612d93565b6108a7565b005b6102b9610901565b6040516102c69190612dcf565b60405180910390f35b6102e960048036038101906102e49190612dea565b61090e565b005b61030560048036038101906103009190612e73565b61096e565b6040516103129190612eaf565b60405180910390f35b61033560048036038101906103309190612eca565b61098d565b005b610351600480360381019061034c9190612d53565b6109b6565b60405161035e9190612dcf565b60405180910390f35b610381600480360381019061037c9190612eca565b610a5b565b005b61039d60048036038101906103989190612dea565b610ade565b005b6103b960048036038101906103b49190612c9e565b610afe565b6040516103c69190612dcf565b60405180910390f35b6103e960048036038101906103e4919061303f565b610b6f565b005b6103f3610b9f565b6040516104009190612b39565b60405180910390f35b610423600480360381019061041e9190612c9e565b610bb2565b6040516104309190612d0c565b60405180910390f35b610453600480360381019061044e9190612d93565b610c64565b6040516104609190612dcf565b60405180910390f35b610483600480360381019061047e9190612d93565b610d1c565b6040516104909190613146565b60405180910390f35b6104a1610dca565b6040516104ae9190612d0c565b60405180910390f35b6104d160048036038101906104cc9190612eca565b610df4565b6040516104de9190612b39565b60405180910390f35b6104ef610e5e565b6040516104fc9190612c46565b60405180910390f35b61050d610ef0565b60405161051a9190612eaf565b60405180910390f35b61053d60048036038101906105389190613168565b610ef7565b005b61055960048036038101906105549190613270565b611078565b005b6105756004803603810190610570919061335a565b61110e565b005b610591600480360381019061058c9190612c9e565b611170565b60405161059e9190612c46565b60405180910390f35b6105c160048036038101906105bc9190612eca565b6111f8565b005b6105dd60048036038101906105d89190612c9e565b611221565b6040516105ea9190612b39565b60405180910390f35b61060d600480360381019061060891906133dd565b611233565b60405161061a9190612b39565b60405180910390f35b600061062e82611503565b8061063e575061063d8261157d565b5b9050919050565b6000801b61065a816106556115f7565b6115ff565b81600c60006101000a81548160ff0219169083151502179055505050565b6060600180546106879061344c565b80601f01602080910402602001604051908101604052809291908181526020018280546106b39061344c565b80156107005780601f106106d557610100808354040283529160200191610700565b820191906000526020600020905b8154815290600101906020018083116106e357829003601f168201915b5050505050905090565b60006107158261169c565b610754576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161074b906134f0565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061079a82610bb2565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561080b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161080290613582565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1661082a6115f7565b73ffffffffffffffffffffffffffffffffffffffff1614806108595750610858816108536115f7565b611233565b5b610898576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161088f90613614565b60405180910390fd5b6108a28383611708565b505050565b6000801b6108bc816108b76115f7565b6115ff565b81600c60016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505050565b6000600980549050905090565b61091f6109196115f7565b826117c1565b61095e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610955906136a6565b60405180910390fd5b61096983838361189f565b505050565b6000806000838152602001908152602001600020600101549050919050565b6109968261096e565b6109a7816109a26115f7565b6115ff565b6109b18383611afb565b505050565b60006109c183610c64565b8210610a02576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109f990613738565b60405180910390fd5b600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b610a636115f7565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610ad0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ac7906137ca565b60405180910390fd5b610ada8282611bdb565b5050565b610af98383836040518060200160405280600081525061110e565b505050565b6000610b08610901565b8210610b49576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b409061385c565b60405180910390fd5b60098281548110610b5d57610b5c61387c565b5b90600052602060002001549050919050565b6000801b610b8481610b7f6115f7565b6115ff565b81600b9080519060200190610b9a9291906129e2565b505050565b600c60009054906101000a900460ff1681565b6000806003600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610c5b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c529061391d565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610cd5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ccc906139af565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b60606000610d2983610c64565b905060008167ffffffffffffffff811115610d4757610d46612f14565b5b604051908082528060200260200182016040528015610d755781602001602082028036833780820191505090505b50905060005b82811015610dbf57610d8d85826109b6565b828281518110610da057610d9f61387c565b5b6020026020010181815250508080610db7906139fe565b915050610d7b565b508092505050919050565b6000600c60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600080600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b606060028054610e6d9061344c565b80601f0160208091040260200160405190810160405280929190818152602001828054610e999061344c565b8015610ee65780601f10610ebb57610100808354040283529160200191610ee6565b820191906000526020600020905b815481529060010190602001808311610ec957829003601f168201915b5050505050905090565b6000801b81565b610eff6115f7565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610f6d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f6490613a93565b60405180910390fd5b8060066000610f7a6115f7565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166110276115f7565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161106c9190612b39565b60405180910390a35050565b600c60009054906101000a900460ff16156110c8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110bf90613aff565b60405180910390fd5b60005b815181101561110a576110f78282815181106110ea576110e961387c565b5b6020026020010151611cbc565b8080611102906139fe565b9150506110cb565b5050565b61111f6111196115f7565b836117c1565b61115e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611155906136a6565b60405180910390fd5b61116a84848484611e46565b50505050565b606061117b8261169c565b6111ba576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111b190613b6b565b60405180910390fd5b60006111c4611ea2565b9050806111d084611f34565b6040516020016111e1929190613bc7565b604051602081830303815290604052915050919050565b6112018261096e565b6112128161120d6115f7565b6115ff565b61121c8383611bdb565b505050565b600061122c8261169c565b9050919050565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6060600060028360026112da9190613beb565b6112e49190613c45565b67ffffffffffffffff8111156112fd576112fc612f14565b5b6040519080825280601f01601f19166020018201604052801561132f5781602001600182028036833780820191505090505b5090507f3000000000000000000000000000000000000000000000000000000000000000816000815181106113675761136661387c565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053507f7800000000000000000000000000000000000000000000000000000000000000816001815181106113cb576113ca61387c565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053506000600184600261140b9190613beb565b6114159190613c45565b90505b60018111156114b5577f3031323334353637383961626364656600000000000000000000000000000000600f8616601081106114575761145661387c565b5b1a60f81b82828151811061146e5761146d61387c565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600485901c9450806114ae90613c9b565b9050611418565b50600084146114f9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114f090613d11565b60405180910390fd5b8091505092915050565b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611576575061157582612095565b5b9050919050565b60007f7965db0b000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806115f057506115ef82612177565b5b9050919050565b600033905090565b6116098282610df4565b6116985761162e8173ffffffffffffffffffffffffffffffffffffffff1660146112c7565b61163c8360001c60206112c7565b60405160200161164d929190613dc9565b6040516020818303038152906040526040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161168f9190612c46565b60405180910390fd5b5050565b60008073ffffffffffffffffffffffffffffffffffffffff166003600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b816005600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661177b83610bb2565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006117cc8261169c565b61180b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161180290613e75565b60405180910390fd5b600061181683610bb2565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061188557508373ffffffffffffffffffffffffffffffffffffffff1661186d8461070a565b73ffffffffffffffffffffffffffffffffffffffff16145b8061189657506118958185611233565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166118bf82610bb2565b73ffffffffffffffffffffffffffffffffffffffff1614611915576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161190c90613f07565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611985576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161197c90613f99565b60405180910390fd5b6119908383836121e1565b61199b600082611708565b6001600460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546119eb9190613fb9565b925050819055506001600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611a429190613c45565b92505081905550816003600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b611b058282610df4565b611bd757600160008084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550611b7c6115f7565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b611be58282610df4565b15611cb857600080600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550611c5d6115f7565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b60405160405180910390a45b5050565b611cc46115f7565b73ffffffffffffffffffffffffffffffffffffffff1673400e2073b4ac13d6f11c15697df7fc609db9380973ffffffffffffffffffffffffffffffffffffffff16636352211e836040518263ffffffff1660e01b8152600401611d279190612dcf565b602060405180830381865afa158015611d44573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611d689190614002565b73ffffffffffffffffffffffffffffffffffffffff1614611d8882611f34565b604051602001611d98919061407b565b60405160208183030381529060405290611de8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ddf9190612c46565b60405180910390fd5b50611df281611221565b15611e32576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e29906140e9565b60405180910390fd5b611e43611e3d6115f7565b826122f5565b50565b611e5184848461189f565b611e5d84848484612313565b611e9c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e939061417b565b60405180910390fd5b50505050565b6060600b8054611eb19061344c565b80601f0160208091040260200160405190810160405280929190818152602001828054611edd9061344c565b8015611f2a5780601f10611eff57610100808354040283529160200191611f2a565b820191906000526020600020905b815481529060010190602001808311611f0d57829003601f168201915b5050505050905090565b60606000821415611f7c576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612090565b600082905060005b60008214611fae578080611f97906139fe565b915050600a82611fa791906141ca565b9150611f84565b60008167ffffffffffffffff811115611fca57611fc9612f14565b5b6040519080825280601f01601f191660200182016040528015611ffc5781602001600182028036833780820191505090505b5090505b60008514612089576001826120159190613fb9565b9150600a8561202491906141fb565b60306120309190613c45565b60f81b8183815181106120465761204561387c565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561208291906141ca565b9450612000565b8093505050505b919050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061216057507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80612170575061216f8261157d565b5b9050919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6121ec83838361249b565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561222f5761222a816124a0565b61226e565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161461226d5761226c83826124e9565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156122b1576122ac81612656565b6122f0565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16146122ef576122ee8282612727565b5b5b505050565b61230f8282604051806020016040528060008152506127a6565b5050565b60006123348473ffffffffffffffffffffffffffffffffffffffff16612801565b1561248e578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261235d6115f7565b8786866040518563ffffffff1660e01b815260040161237f9493929190614281565b6020604051808303816000875af19250505080156123bb57506040513d601f19601f820116820180604052508101906123b891906142e2565b60015b61243e573d80600081146123eb576040519150601f19603f3d011682016040523d82523d6000602084013e6123f0565b606091505b50600081511415612436576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161242d9061417b565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612493565b600190505b949350505050565b505050565b600980549050600a600083815260200190815260200160002081905550600981908060018154018082558091505060019003906000526020600020016000909190919091505550565b600060016124f684610c64565b6125009190613fb9565b90506000600860008481526020019081526020016000205490508181146125e5576000600760008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600760008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816008600083815260200190815260200160002081905550505b6008600084815260200190815260200160002060009055600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b6000600160098054905061266a9190613fb9565b90506000600a600084815260200190815260200160002054905060006009838154811061269a5761269961387c565b5b9060005260206000200154905080600983815481106126bc576126bb61387c565b5b906000526020600020018190555081600a600083815260200190815260200160002081905550600a600085815260200190815260200160002060009055600980548061270b5761270a61430f565b5b6001900381819060005260206000200160009055905550505050565b600061273283610c64565b905081600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806008600084815260200190815260200160002081905550505050565b6127b08383612814565b6127bd6000848484612313565b6127fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127f39061417b565b60405180910390fd5b505050565b600080823b905060008111915050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612884576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161287b9061438a565b60405180910390fd5b61288d8161169c565b156128cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128c4906143f6565b60405180910390fd5b6128d9600083836121e1565b6001600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546129299190613c45565b92505081905550816003600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b8280546129ee9061344c565b90600052602060002090601f016020900481019282612a105760008555612a57565b82601f10612a2957805160ff1916838001178555612a57565b82800160010185558215612a57579182015b82811115612a56578251825591602001919060010190612a3b565b5b509050612a649190612a68565b5090565b5b80821115612a81576000816000905550600101612a69565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612ace81612a99565b8114612ad957600080fd5b50565b600081359050612aeb81612ac5565b92915050565b600060208284031215612b0757612b06612a8f565b5b6000612b1584828501612adc565b91505092915050565b60008115159050919050565b612b3381612b1e565b82525050565b6000602082019050612b4e6000830184612b2a565b92915050565b612b5d81612b1e565b8114612b6857600080fd5b50565b600081359050612b7a81612b54565b92915050565b600060208284031215612b9657612b95612a8f565b5b6000612ba484828501612b6b565b91505092915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612be7578082015181840152602081019050612bcc565b83811115612bf6576000848401525b50505050565b6000601f19601f8301169050919050565b6000612c1882612bad565b612c228185612bb8565b9350612c32818560208601612bc9565b612c3b81612bfc565b840191505092915050565b60006020820190508181036000830152612c608184612c0d565b905092915050565b6000819050919050565b612c7b81612c68565b8114612c8657600080fd5b50565b600081359050612c9881612c72565b92915050565b600060208284031215612cb457612cb3612a8f565b5b6000612cc284828501612c89565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612cf682612ccb565b9050919050565b612d0681612ceb565b82525050565b6000602082019050612d216000830184612cfd565b92915050565b612d3081612ceb565b8114612d3b57600080fd5b50565b600081359050612d4d81612d27565b92915050565b60008060408385031215612d6a57612d69612a8f565b5b6000612d7885828601612d3e565b9250506020612d8985828601612c89565b9150509250929050565b600060208284031215612da957612da8612a8f565b5b6000612db784828501612d3e565b91505092915050565b612dc981612c68565b82525050565b6000602082019050612de46000830184612dc0565b92915050565b600080600060608486031215612e0357612e02612a8f565b5b6000612e1186828701612d3e565b9350506020612e2286828701612d3e565b9250506040612e3386828701612c89565b9150509250925092565b6000819050919050565b612e5081612e3d565b8114612e5b57600080fd5b50565b600081359050612e6d81612e47565b92915050565b600060208284031215612e8957612e88612a8f565b5b6000612e9784828501612e5e565b91505092915050565b612ea981612e3d565b82525050565b6000602082019050612ec46000830184612ea0565b92915050565b60008060408385031215612ee157612ee0612a8f565b5b6000612eef85828601612e5e565b9250506020612f0085828601612d3e565b9150509250929050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612f4c82612bfc565b810181811067ffffffffffffffff82111715612f6b57612f6a612f14565b5b80604052505050565b6000612f7e612a85565b9050612f8a8282612f43565b919050565b600067ffffffffffffffff821115612faa57612fa9612f14565b5b612fb382612bfc565b9050602081019050919050565b82818337600083830152505050565b6000612fe2612fdd84612f8f565b612f74565b905082815260208101848484011115612ffe57612ffd612f0f565b5b613009848285612fc0565b509392505050565b600082601f83011261302657613025612f0a565b5b8135613036848260208601612fcf565b91505092915050565b60006020828403121561305557613054612a8f565b5b600082013567ffffffffffffffff81111561307357613072612a94565b5b61307f84828501613011565b91505092915050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b6130bd81612c68565b82525050565b60006130cf83836130b4565b60208301905092915050565b6000602082019050919050565b60006130f382613088565b6130fd8185613093565b9350613108836130a4565b8060005b8381101561313957815161312088826130c3565b975061312b836130db565b92505060018101905061310c565b5085935050505092915050565b6000602082019050818103600083015261316081846130e8565b905092915050565b6000806040838503121561317f5761317e612a8f565b5b600061318d85828601612d3e565b925050602061319e85828601612b6b565b9150509250929050565b600067ffffffffffffffff8211156131c3576131c2612f14565b5b602082029050602081019050919050565b600080fd5b60006131ec6131e7846131a8565b612f74565b9050808382526020820190506020840283018581111561320f5761320e6131d4565b5b835b8181101561323857806132248882612c89565b845260208401935050602081019050613211565b5050509392505050565b600082601f83011261325757613256612f0a565b5b81356132678482602086016131d9565b91505092915050565b60006020828403121561328657613285612a8f565b5b600082013567ffffffffffffffff8111156132a4576132a3612a94565b5b6132b084828501613242565b91505092915050565b600067ffffffffffffffff8211156132d4576132d3612f14565b5b6132dd82612bfc565b9050602081019050919050565b60006132fd6132f8846132b9565b612f74565b90508281526020810184848401111561331957613318612f0f565b5b613324848285612fc0565b509392505050565b600082601f83011261334157613340612f0a565b5b81356133518482602086016132ea565b91505092915050565b6000806000806080858703121561337457613373612a8f565b5b600061338287828801612d3e565b945050602061339387828801612d3e565b93505060406133a487828801612c89565b925050606085013567ffffffffffffffff8111156133c5576133c4612a94565b5b6133d18782880161332c565b91505092959194509250565b600080604083850312156133f4576133f3612a8f565b5b600061340285828601612d3e565b925050602061341385828601612d3e565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061346457607f821691505b602082108114156134785761347761341d565b5b50919050565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b60006134da602c83612bb8565b91506134e58261347e565b604082019050919050565b60006020820190508181036000830152613509816134cd565b9050919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b600061356c602183612bb8565b915061357782613510565b604082019050919050565b6000602082019050818103600083015261359b8161355f565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b60006135fe603883612bb8565b9150613609826135a2565b604082019050919050565b6000602082019050818103600083015261362d816135f1565b9050919050565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b6000613690603183612bb8565b915061369b82613634565b604082019050919050565b600060208201905081810360008301526136bf81613683565b9050919050565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b6000613722602b83612bb8565b915061372d826136c6565b604082019050919050565b6000602082019050818103600083015261375181613715565b9050919050565b7f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560008201527f20726f6c657320666f722073656c660000000000000000000000000000000000602082015250565b60006137b4602f83612bb8565b91506137bf82613758565b604082019050919050565b600060208201905081810360008301526137e3816137a7565b9050919050565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b6000613846602c83612bb8565b9150613851826137ea565b604082019050919050565b6000602082019050818103600083015261387581613839565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b6000613907602983612bb8565b9150613912826138ab565b604082019050919050565b60006020820190508181036000830152613936816138fa565b9050919050565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b6000613999602a83612bb8565b91506139a48261393d565b604082019050919050565b600060208201905081810360008301526139c88161398c565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000613a0982612c68565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613a3c57613a3b6139cf565b5b600182019050919050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b6000613a7d601983612bb8565b9150613a8882613a47565b602082019050919050565b60006020820190508181036000830152613aac81613a70565b9050919050565b7f5061757365000000000000000000000000000000000000000000000000000000600082015250565b6000613ae9600583612bb8565b9150613af482613ab3565b602082019050919050565b60006020820190508181036000830152613b1881613adc565b9050919050565b7f4e6f6e6578697374656e7420746f6b656e000000000000000000000000000000600082015250565b6000613b55601183612bb8565b9150613b6082613b1f565b602082019050919050565b60006020820190508181036000830152613b8481613b48565b9050919050565b600081905092915050565b6000613ba182612bad565b613bab8185613b8b565b9350613bbb818560208601612bc9565b80840191505092915050565b6000613bd38285613b96565b9150613bdf8284613b96565b91508190509392505050565b6000613bf682612c68565b9150613c0183612c68565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613c3a57613c396139cf565b5b828202905092915050565b6000613c5082612c68565b9150613c5b83612c68565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613c9057613c8f6139cf565b5b828201905092915050565b6000613ca682612c68565b91506000821415613cba57613cb96139cf565b5b600182039050919050565b7f537472696e67733a20686578206c656e67746820696e73756666696369656e74600082015250565b6000613cfb602083612bb8565b9150613d0682613cc5565b602082019050919050565b60006020820190508181036000830152613d2a81613cee565b9050919050565b7f416363657373436f6e74726f6c3a206163636f756e7420000000000000000000600082015250565b6000613d67601783613b8b565b9150613d7282613d31565b601782019050919050565b7f206973206d697373696e6720726f6c6520000000000000000000000000000000600082015250565b6000613db3601183613b8b565b9150613dbe82613d7d565b601182019050919050565b6000613dd482613d5a565b9150613de08285613b96565b9150613deb82613da6565b9150613df78284613b96565b91508190509392505050565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b6000613e5f602c83612bb8565b9150613e6a82613e03565b604082019050919050565b60006020820190508181036000830152613e8e81613e52565b9050919050565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b6000613ef1602983612bb8565b9150613efc82613e95565b604082019050919050565b60006020820190508181036000830152613f2081613ee4565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000613f83602483612bb8565b9150613f8e82613f27565b604082019050919050565b60006020820190508181036000830152613fb281613f76565b9050919050565b6000613fc482612c68565b9150613fcf83612c68565b925082821015613fe257613fe16139cf565b5b828203905092915050565b600081519050613ffc81612d27565b92915050565b60006020828403121561401857614017612a8f565b5b600061402684828501613fed565b91505092915050565b7f4e6f74206f776e6572206f662044422000000000000000000000000000000000600082015250565b6000614065601083613b8b565b91506140708261402f565b601082019050919050565b600061408682614058565b91506140928284613b96565b915081905092915050565b7f416c726561647920636c61696d65642100000000000000000000000000000000600082015250565b60006140d3601083612bb8565b91506140de8261409d565b602082019050919050565b60006020820190508181036000830152614102816140c6565b9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b6000614165603283612bb8565b915061417082614109565b604082019050919050565b6000602082019050818103600083015261419481614158565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006141d582612c68565b91506141e083612c68565b9250826141f0576141ef61419b565b5b828204905092915050565b600061420682612c68565b915061421183612c68565b9250826142215761422061419b565b5b828206905092915050565b600081519050919050565b600082825260208201905092915050565b60006142538261422c565b61425d8185614237565b935061426d818560208601612bc9565b61427681612bfc565b840191505092915050565b60006080820190506142966000830187612cfd565b6142a36020830186612cfd565b6142b06040830185612dc0565b81810360608301526142c28184614248565b905095945050505050565b6000815190506142dc81612ac5565b92915050565b6000602082840312156142f8576142f7612a8f565b5b6000614306848285016142cd565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b6000614374602083612bb8565b915061437f8261433e565b602082019050919050565b600060208201905081810360008301526143a381614367565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b60006143e0601c83612bb8565b91506143eb826143aa565b602082019050919050565b6000602082019050818103600083015261440f816143d3565b905091905056fea2646970667358221220d2b1fd365fff6aee96b52cfd5dfb4fee9ae05023085eb56bc98da79e857d40da64736f6c634300080b00330000000000000000000000004a84079639ecdb4d9653d2a8d70d1f11b4244a22

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101da5760003560e01c80635c975abb11610104578063a217fddf116100a2578063c87b56dd11610071578063c87b56dd14610577578063d547741f146105a7578063dbe7e3bd146105c3578063e985e9c5146105f3576101da565b8063a217fddf14610505578063a22cb46514610523578063b52b59541461053f578063b88d4fde1461055b576101da565b80638462151c116100de5780638462151c146104695780638da5cb5b1461049957806391d14854146104b757806395d89b41146104e7576101da565b80635c975abb146103eb5780636352211e1461040957806370a0823114610439576101da565b806323b872dd1161017c57806336568abe1161014b57806336568abe1461036757806342842e0e146103835780634f6ccce71461039f57806355f804b3146103cf576101da565b806323b872dd146102cf578063248a9ca3146102eb5780632f2ff15d1461031b5780632f745c5914610337576101da565b8063081812fc116101b8578063081812fc14610249578063095ea7b31461027957806313af40351461029557806318160ddd146102b1576101da565b806301ffc9a7146101df57806302329a291461020f57806306fdde031461022b575b600080fd5b6101f960048036038101906101f49190612af1565b610623565b6040516102069190612b39565b60405180910390f35b61022960048036038101906102249190612b80565b610645565b005b610233610678565b6040516102409190612c46565b60405180910390f35b610263600480360381019061025e9190612c9e565b61070a565b6040516102709190612d0c565b60405180910390f35b610293600480360381019061028e9190612d53565b61078f565b005b6102af60048036038101906102aa9190612d93565b6108a7565b005b6102b9610901565b6040516102c69190612dcf565b60405180910390f35b6102e960048036038101906102e49190612dea565b61090e565b005b61030560048036038101906103009190612e73565b61096e565b6040516103129190612eaf565b60405180910390f35b61033560048036038101906103309190612eca565b61098d565b005b610351600480360381019061034c9190612d53565b6109b6565b60405161035e9190612dcf565b60405180910390f35b610381600480360381019061037c9190612eca565b610a5b565b005b61039d60048036038101906103989190612dea565b610ade565b005b6103b960048036038101906103b49190612c9e565b610afe565b6040516103c69190612dcf565b60405180910390f35b6103e960048036038101906103e4919061303f565b610b6f565b005b6103f3610b9f565b6040516104009190612b39565b60405180910390f35b610423600480360381019061041e9190612c9e565b610bb2565b6040516104309190612d0c565b60405180910390f35b610453600480360381019061044e9190612d93565b610c64565b6040516104609190612dcf565b60405180910390f35b610483600480360381019061047e9190612d93565b610d1c565b6040516104909190613146565b60405180910390f35b6104a1610dca565b6040516104ae9190612d0c565b60405180910390f35b6104d160048036038101906104cc9190612eca565b610df4565b6040516104de9190612b39565b60405180910390f35b6104ef610e5e565b6040516104fc9190612c46565b60405180910390f35b61050d610ef0565b60405161051a9190612eaf565b60405180910390f35b61053d60048036038101906105389190613168565b610ef7565b005b61055960048036038101906105549190613270565b611078565b005b6105756004803603810190610570919061335a565b61110e565b005b610591600480360381019061058c9190612c9e565b611170565b60405161059e9190612c46565b60405180910390f35b6105c160048036038101906105bc9190612eca565b6111f8565b005b6105dd60048036038101906105d89190612c9e565b611221565b6040516105ea9190612b39565b60405180910390f35b61060d600480360381019061060891906133dd565b611233565b60405161061a9190612b39565b60405180910390f35b600061062e82611503565b8061063e575061063d8261157d565b5b9050919050565b6000801b61065a816106556115f7565b6115ff565b81600c60006101000a81548160ff0219169083151502179055505050565b6060600180546106879061344c565b80601f01602080910402602001604051908101604052809291908181526020018280546106b39061344c565b80156107005780601f106106d557610100808354040283529160200191610700565b820191906000526020600020905b8154815290600101906020018083116106e357829003601f168201915b5050505050905090565b60006107158261169c565b610754576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161074b906134f0565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061079a82610bb2565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561080b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161080290613582565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1661082a6115f7565b73ffffffffffffffffffffffffffffffffffffffff1614806108595750610858816108536115f7565b611233565b5b610898576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161088f90613614565b60405180910390fd5b6108a28383611708565b505050565b6000801b6108bc816108b76115f7565b6115ff565b81600c60016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505050565b6000600980549050905090565b61091f6109196115f7565b826117c1565b61095e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610955906136a6565b60405180910390fd5b61096983838361189f565b505050565b6000806000838152602001908152602001600020600101549050919050565b6109968261096e565b6109a7816109a26115f7565b6115ff565b6109b18383611afb565b505050565b60006109c183610c64565b8210610a02576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109f990613738565b60405180910390fd5b600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b610a636115f7565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610ad0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ac7906137ca565b60405180910390fd5b610ada8282611bdb565b5050565b610af98383836040518060200160405280600081525061110e565b505050565b6000610b08610901565b8210610b49576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b409061385c565b60405180910390fd5b60098281548110610b5d57610b5c61387c565b5b90600052602060002001549050919050565b6000801b610b8481610b7f6115f7565b6115ff565b81600b9080519060200190610b9a9291906129e2565b505050565b600c60009054906101000a900460ff1681565b6000806003600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610c5b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c529061391d565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610cd5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ccc906139af565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b60606000610d2983610c64565b905060008167ffffffffffffffff811115610d4757610d46612f14565b5b604051908082528060200260200182016040528015610d755781602001602082028036833780820191505090505b50905060005b82811015610dbf57610d8d85826109b6565b828281518110610da057610d9f61387c565b5b6020026020010181815250508080610db7906139fe565b915050610d7b565b508092505050919050565b6000600c60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600080600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b606060028054610e6d9061344c565b80601f0160208091040260200160405190810160405280929190818152602001828054610e999061344c565b8015610ee65780601f10610ebb57610100808354040283529160200191610ee6565b820191906000526020600020905b815481529060010190602001808311610ec957829003601f168201915b5050505050905090565b6000801b81565b610eff6115f7565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610f6d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f6490613a93565b60405180910390fd5b8060066000610f7a6115f7565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166110276115f7565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161106c9190612b39565b60405180910390a35050565b600c60009054906101000a900460ff16156110c8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110bf90613aff565b60405180910390fd5b60005b815181101561110a576110f78282815181106110ea576110e961387c565b5b6020026020010151611cbc565b8080611102906139fe565b9150506110cb565b5050565b61111f6111196115f7565b836117c1565b61115e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611155906136a6565b60405180910390fd5b61116a84848484611e46565b50505050565b606061117b8261169c565b6111ba576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111b190613b6b565b60405180910390fd5b60006111c4611ea2565b9050806111d084611f34565b6040516020016111e1929190613bc7565b604051602081830303815290604052915050919050565b6112018261096e565b6112128161120d6115f7565b6115ff565b61121c8383611bdb565b505050565b600061122c8261169c565b9050919050565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6060600060028360026112da9190613beb565b6112e49190613c45565b67ffffffffffffffff8111156112fd576112fc612f14565b5b6040519080825280601f01601f19166020018201604052801561132f5781602001600182028036833780820191505090505b5090507f3000000000000000000000000000000000000000000000000000000000000000816000815181106113675761136661387c565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053507f7800000000000000000000000000000000000000000000000000000000000000816001815181106113cb576113ca61387c565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053506000600184600261140b9190613beb565b6114159190613c45565b90505b60018111156114b5577f3031323334353637383961626364656600000000000000000000000000000000600f8616601081106114575761145661387c565b5b1a60f81b82828151811061146e5761146d61387c565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600485901c9450806114ae90613c9b565b9050611418565b50600084146114f9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114f090613d11565b60405180910390fd5b8091505092915050565b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611576575061157582612095565b5b9050919050565b60007f7965db0b000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806115f057506115ef82612177565b5b9050919050565b600033905090565b6116098282610df4565b6116985761162e8173ffffffffffffffffffffffffffffffffffffffff1660146112c7565b61163c8360001c60206112c7565b60405160200161164d929190613dc9565b6040516020818303038152906040526040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161168f9190612c46565b60405180910390fd5b5050565b60008073ffffffffffffffffffffffffffffffffffffffff166003600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b816005600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661177b83610bb2565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006117cc8261169c565b61180b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161180290613e75565b60405180910390fd5b600061181683610bb2565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061188557508373ffffffffffffffffffffffffffffffffffffffff1661186d8461070a565b73ffffffffffffffffffffffffffffffffffffffff16145b8061189657506118958185611233565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166118bf82610bb2565b73ffffffffffffffffffffffffffffffffffffffff1614611915576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161190c90613f07565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611985576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161197c90613f99565b60405180910390fd5b6119908383836121e1565b61199b600082611708565b6001600460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546119eb9190613fb9565b925050819055506001600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611a429190613c45565b92505081905550816003600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b611b058282610df4565b611bd757600160008084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550611b7c6115f7565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b611be58282610df4565b15611cb857600080600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550611c5d6115f7565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b60405160405180910390a45b5050565b611cc46115f7565b73ffffffffffffffffffffffffffffffffffffffff1673400e2073b4ac13d6f11c15697df7fc609db9380973ffffffffffffffffffffffffffffffffffffffff16636352211e836040518263ffffffff1660e01b8152600401611d279190612dcf565b602060405180830381865afa158015611d44573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611d689190614002565b73ffffffffffffffffffffffffffffffffffffffff1614611d8882611f34565b604051602001611d98919061407b565b60405160208183030381529060405290611de8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ddf9190612c46565b60405180910390fd5b50611df281611221565b15611e32576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e29906140e9565b60405180910390fd5b611e43611e3d6115f7565b826122f5565b50565b611e5184848461189f565b611e5d84848484612313565b611e9c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e939061417b565b60405180910390fd5b50505050565b6060600b8054611eb19061344c565b80601f0160208091040260200160405190810160405280929190818152602001828054611edd9061344c565b8015611f2a5780601f10611eff57610100808354040283529160200191611f2a565b820191906000526020600020905b815481529060010190602001808311611f0d57829003601f168201915b5050505050905090565b60606000821415611f7c576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612090565b600082905060005b60008214611fae578080611f97906139fe565b915050600a82611fa791906141ca565b9150611f84565b60008167ffffffffffffffff811115611fca57611fc9612f14565b5b6040519080825280601f01601f191660200182016040528015611ffc5781602001600182028036833780820191505090505b5090505b60008514612089576001826120159190613fb9565b9150600a8561202491906141fb565b60306120309190613c45565b60f81b8183815181106120465761204561387c565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561208291906141ca565b9450612000565b8093505050505b919050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061216057507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80612170575061216f8261157d565b5b9050919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6121ec83838361249b565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561222f5761222a816124a0565b61226e565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161461226d5761226c83826124e9565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156122b1576122ac81612656565b6122f0565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16146122ef576122ee8282612727565b5b5b505050565b61230f8282604051806020016040528060008152506127a6565b5050565b60006123348473ffffffffffffffffffffffffffffffffffffffff16612801565b1561248e578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261235d6115f7565b8786866040518563ffffffff1660e01b815260040161237f9493929190614281565b6020604051808303816000875af19250505080156123bb57506040513d601f19601f820116820180604052508101906123b891906142e2565b60015b61243e573d80600081146123eb576040519150601f19603f3d011682016040523d82523d6000602084013e6123f0565b606091505b50600081511415612436576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161242d9061417b565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612493565b600190505b949350505050565b505050565b600980549050600a600083815260200190815260200160002081905550600981908060018154018082558091505060019003906000526020600020016000909190919091505550565b600060016124f684610c64565b6125009190613fb9565b90506000600860008481526020019081526020016000205490508181146125e5576000600760008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600760008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816008600083815260200190815260200160002081905550505b6008600084815260200190815260200160002060009055600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b6000600160098054905061266a9190613fb9565b90506000600a600084815260200190815260200160002054905060006009838154811061269a5761269961387c565b5b9060005260206000200154905080600983815481106126bc576126bb61387c565b5b906000526020600020018190555081600a600083815260200190815260200160002081905550600a600085815260200190815260200160002060009055600980548061270b5761270a61430f565b5b6001900381819060005260206000200160009055905550505050565b600061273283610c64565b905081600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806008600084815260200190815260200160002081905550505050565b6127b08383612814565b6127bd6000848484612313565b6127fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127f39061417b565b60405180910390fd5b505050565b600080823b905060008111915050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612884576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161287b9061438a565b60405180910390fd5b61288d8161169c565b156128cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128c4906143f6565b60405180910390fd5b6128d9600083836121e1565b6001600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546129299190613c45565b92505081905550816003600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b8280546129ee9061344c565b90600052602060002090601f016020900481019282612a105760008555612a57565b82601f10612a2957805160ff1916838001178555612a57565b82800160010185558215612a57579182015b82811115612a56578251825591602001919060010190612a3b565b5b509050612a649190612a68565b5090565b5b80821115612a81576000816000905550600101612a69565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612ace81612a99565b8114612ad957600080fd5b50565b600081359050612aeb81612ac5565b92915050565b600060208284031215612b0757612b06612a8f565b5b6000612b1584828501612adc565b91505092915050565b60008115159050919050565b612b3381612b1e565b82525050565b6000602082019050612b4e6000830184612b2a565b92915050565b612b5d81612b1e565b8114612b6857600080fd5b50565b600081359050612b7a81612b54565b92915050565b600060208284031215612b9657612b95612a8f565b5b6000612ba484828501612b6b565b91505092915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612be7578082015181840152602081019050612bcc565b83811115612bf6576000848401525b50505050565b6000601f19601f8301169050919050565b6000612c1882612bad565b612c228185612bb8565b9350612c32818560208601612bc9565b612c3b81612bfc565b840191505092915050565b60006020820190508181036000830152612c608184612c0d565b905092915050565b6000819050919050565b612c7b81612c68565b8114612c8657600080fd5b50565b600081359050612c9881612c72565b92915050565b600060208284031215612cb457612cb3612a8f565b5b6000612cc284828501612c89565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612cf682612ccb565b9050919050565b612d0681612ceb565b82525050565b6000602082019050612d216000830184612cfd565b92915050565b612d3081612ceb565b8114612d3b57600080fd5b50565b600081359050612d4d81612d27565b92915050565b60008060408385031215612d6a57612d69612a8f565b5b6000612d7885828601612d3e565b9250506020612d8985828601612c89565b9150509250929050565b600060208284031215612da957612da8612a8f565b5b6000612db784828501612d3e565b91505092915050565b612dc981612c68565b82525050565b6000602082019050612de46000830184612dc0565b92915050565b600080600060608486031215612e0357612e02612a8f565b5b6000612e1186828701612d3e565b9350506020612e2286828701612d3e565b9250506040612e3386828701612c89565b9150509250925092565b6000819050919050565b612e5081612e3d565b8114612e5b57600080fd5b50565b600081359050612e6d81612e47565b92915050565b600060208284031215612e8957612e88612a8f565b5b6000612e9784828501612e5e565b91505092915050565b612ea981612e3d565b82525050565b6000602082019050612ec46000830184612ea0565b92915050565b60008060408385031215612ee157612ee0612a8f565b5b6000612eef85828601612e5e565b9250506020612f0085828601612d3e565b9150509250929050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612f4c82612bfc565b810181811067ffffffffffffffff82111715612f6b57612f6a612f14565b5b80604052505050565b6000612f7e612a85565b9050612f8a8282612f43565b919050565b600067ffffffffffffffff821115612faa57612fa9612f14565b5b612fb382612bfc565b9050602081019050919050565b82818337600083830152505050565b6000612fe2612fdd84612f8f565b612f74565b905082815260208101848484011115612ffe57612ffd612f0f565b5b613009848285612fc0565b509392505050565b600082601f83011261302657613025612f0a565b5b8135613036848260208601612fcf565b91505092915050565b60006020828403121561305557613054612a8f565b5b600082013567ffffffffffffffff81111561307357613072612a94565b5b61307f84828501613011565b91505092915050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b6130bd81612c68565b82525050565b60006130cf83836130b4565b60208301905092915050565b6000602082019050919050565b60006130f382613088565b6130fd8185613093565b9350613108836130a4565b8060005b8381101561313957815161312088826130c3565b975061312b836130db565b92505060018101905061310c565b5085935050505092915050565b6000602082019050818103600083015261316081846130e8565b905092915050565b6000806040838503121561317f5761317e612a8f565b5b600061318d85828601612d3e565b925050602061319e85828601612b6b565b9150509250929050565b600067ffffffffffffffff8211156131c3576131c2612f14565b5b602082029050602081019050919050565b600080fd5b60006131ec6131e7846131a8565b612f74565b9050808382526020820190506020840283018581111561320f5761320e6131d4565b5b835b8181101561323857806132248882612c89565b845260208401935050602081019050613211565b5050509392505050565b600082601f83011261325757613256612f0a565b5b81356132678482602086016131d9565b91505092915050565b60006020828403121561328657613285612a8f565b5b600082013567ffffffffffffffff8111156132a4576132a3612a94565b5b6132b084828501613242565b91505092915050565b600067ffffffffffffffff8211156132d4576132d3612f14565b5b6132dd82612bfc565b9050602081019050919050565b60006132fd6132f8846132b9565b612f74565b90508281526020810184848401111561331957613318612f0f565b5b613324848285612fc0565b509392505050565b600082601f83011261334157613340612f0a565b5b81356133518482602086016132ea565b91505092915050565b6000806000806080858703121561337457613373612a8f565b5b600061338287828801612d3e565b945050602061339387828801612d3e565b93505060406133a487828801612c89565b925050606085013567ffffffffffffffff8111156133c5576133c4612a94565b5b6133d18782880161332c565b91505092959194509250565b600080604083850312156133f4576133f3612a8f565b5b600061340285828601612d3e565b925050602061341385828601612d3e565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061346457607f821691505b602082108114156134785761347761341d565b5b50919050565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b60006134da602c83612bb8565b91506134e58261347e565b604082019050919050565b60006020820190508181036000830152613509816134cd565b9050919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b600061356c602183612bb8565b915061357782613510565b604082019050919050565b6000602082019050818103600083015261359b8161355f565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b60006135fe603883612bb8565b9150613609826135a2565b604082019050919050565b6000602082019050818103600083015261362d816135f1565b9050919050565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b6000613690603183612bb8565b915061369b82613634565b604082019050919050565b600060208201905081810360008301526136bf81613683565b9050919050565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b6000613722602b83612bb8565b915061372d826136c6565b604082019050919050565b6000602082019050818103600083015261375181613715565b9050919050565b7f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560008201527f20726f6c657320666f722073656c660000000000000000000000000000000000602082015250565b60006137b4602f83612bb8565b91506137bf82613758565b604082019050919050565b600060208201905081810360008301526137e3816137a7565b9050919050565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b6000613846602c83612bb8565b9150613851826137ea565b604082019050919050565b6000602082019050818103600083015261387581613839565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b6000613907602983612bb8565b9150613912826138ab565b604082019050919050565b60006020820190508181036000830152613936816138fa565b9050919050565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b6000613999602a83612bb8565b91506139a48261393d565b604082019050919050565b600060208201905081810360008301526139c88161398c565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000613a0982612c68565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613a3c57613a3b6139cf565b5b600182019050919050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b6000613a7d601983612bb8565b9150613a8882613a47565b602082019050919050565b60006020820190508181036000830152613aac81613a70565b9050919050565b7f5061757365000000000000000000000000000000000000000000000000000000600082015250565b6000613ae9600583612bb8565b9150613af482613ab3565b602082019050919050565b60006020820190508181036000830152613b1881613adc565b9050919050565b7f4e6f6e6578697374656e7420746f6b656e000000000000000000000000000000600082015250565b6000613b55601183612bb8565b9150613b6082613b1f565b602082019050919050565b60006020820190508181036000830152613b8481613b48565b9050919050565b600081905092915050565b6000613ba182612bad565b613bab8185613b8b565b9350613bbb818560208601612bc9565b80840191505092915050565b6000613bd38285613b96565b9150613bdf8284613b96565b91508190509392505050565b6000613bf682612c68565b9150613c0183612c68565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613c3a57613c396139cf565b5b828202905092915050565b6000613c5082612c68565b9150613c5b83612c68565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613c9057613c8f6139cf565b5b828201905092915050565b6000613ca682612c68565b91506000821415613cba57613cb96139cf565b5b600182039050919050565b7f537472696e67733a20686578206c656e67746820696e73756666696369656e74600082015250565b6000613cfb602083612bb8565b9150613d0682613cc5565b602082019050919050565b60006020820190508181036000830152613d2a81613cee565b9050919050565b7f416363657373436f6e74726f6c3a206163636f756e7420000000000000000000600082015250565b6000613d67601783613b8b565b9150613d7282613d31565b601782019050919050565b7f206973206d697373696e6720726f6c6520000000000000000000000000000000600082015250565b6000613db3601183613b8b565b9150613dbe82613d7d565b601182019050919050565b6000613dd482613d5a565b9150613de08285613b96565b9150613deb82613da6565b9150613df78284613b96565b91508190509392505050565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b6000613e5f602c83612bb8565b9150613e6a82613e03565b604082019050919050565b60006020820190508181036000830152613e8e81613e52565b9050919050565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b6000613ef1602983612bb8565b9150613efc82613e95565b604082019050919050565b60006020820190508181036000830152613f2081613ee4565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000613f83602483612bb8565b9150613f8e82613f27565b604082019050919050565b60006020820190508181036000830152613fb281613f76565b9050919050565b6000613fc482612c68565b9150613fcf83612c68565b925082821015613fe257613fe16139cf565b5b828203905092915050565b600081519050613ffc81612d27565b92915050565b60006020828403121561401857614017612a8f565b5b600061402684828501613fed565b91505092915050565b7f4e6f74206f776e6572206f662044422000000000000000000000000000000000600082015250565b6000614065601083613b8b565b91506140708261402f565b601082019050919050565b600061408682614058565b91506140928284613b96565b915081905092915050565b7f416c726561647920636c61696d65642100000000000000000000000000000000600082015250565b60006140d3601083612bb8565b91506140de8261409d565b602082019050919050565b60006020820190508181036000830152614102816140c6565b9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b6000614165603283612bb8565b915061417082614109565b604082019050919050565b6000602082019050818103600083015261419481614158565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006141d582612c68565b91506141e083612c68565b9250826141f0576141ef61419b565b5b828204905092915050565b600061420682612c68565b915061421183612c68565b9250826142215761422061419b565b5b828206905092915050565b600081519050919050565b600082825260208201905092915050565b60006142538261422c565b61425d8185614237565b935061426d818560208601612bc9565b61427681612bfc565b840191505092915050565b60006080820190506142966000830187612cfd565b6142a36020830186612cfd565b6142b06040830185612dc0565b81810360608301526142c28184614248565b905095945050505050565b6000815190506142dc81612ac5565b92915050565b6000602082840312156142f8576142f7612a8f565b5b6000614306848285016142cd565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b6000614374602083612bb8565b915061437f8261433e565b602082019050919050565b600060208201905081810360008301526143a381614367565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b60006143e0601c83612bb8565b91506143eb826143aa565b602082019050919050565b6000602082019050818103600083015261440f816143d3565b905091905056fea2646970667358221220d2b1fd365fff6aee96b52cfd5dfb4fee9ae05023085eb56bc98da79e857d40da64736f6c634300080b0033

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

0000000000000000000000004a84079639ecdb4d9653d2a8d70d1f11b4244a22

-----Decoded View---------------
Arg [0] : owner_ (address): 0x4A84079639ECDb4d9653D2a8d70D1f11B4244A22

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 0000000000000000000000004a84079639ecdb4d9653d2a8d70d1f11b4244a22


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.