ETH Price: $3,339.64 (-2.42%)
 

Overview

Max Total Supply

4 OBJECT

Holders

4

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 OBJECT
0x298016db488516e9fdb860e12424366f47e3df2a
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:
Object

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 14 : Object.sol
// SPDX-License-Identifier: MIT
pragma solidity 0.8.7;

import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol";
import "@openzeppelin/contracts/security/ReentrancyGuard.sol";
import "@openzeppelin/contracts/access/Ownable.sol";

contract Object is ERC721Enumerable, ReentrancyGuard, Ownable {

    string[] private power = [
        "10",
        "20",
        "30",
        "40",
        "50",
        "60",
        "70",
        "80",
        "90",
        "100"
    ];
    
    string[] private luck = [
        "10",
        "20",
        "30",
        "40",
        "50",
        "60",
        "70",
        "80",
        "90",
        "100"
    ];
    
    // Cooldown (weeks)
    string[] private cooldown = [
        "0",
        "1",
        "2",
        "3",
        "4",
        "5",
        "6",
        "7",
        "8",
        "9",
        "10",
        "11",
        "12"
    ];

    string[] private affinity = [
        "Red", 
        "Yellow", 
        "Green", 
        "Blue", 
        "Violet" 
    ];
    
    string[] private sigil = [
        "Wolf", 
        "Lion", 
        "Eagle", 
        "Stag", 
        "Bear"
    ];
    
    string[] private levels = [
        "1",
        "2",
        "3",
        "4",
        "5",
        "6",
        "7",
        "8",
        "9",
        "10"
    ];

    // Activation Time (days)
    string[] private activation = [
        "1",
        "2",
        "3",
        "4",
        "5"
    ];
    
    // Volume
    string[] private volume = [
        "10",
        "20",
        "30",
        "40",
        "50",
        "60",
        "70",
        "80",
        "90",
        "100"
    ];

    function random(string memory input) internal pure returns (uint256) {
        return uint256(keccak256(abi.encodePacked(input)));
    }
    
    function getPower(uint256 tokenId) public view returns (string memory) {
        return pluck(tokenId, "POWER", power);
    }
    
    function getLuck(uint256 tokenId) public view returns (string memory) {
        return pluck(tokenId, "LUCK", luck);
    }
    
    function getCooldown(uint256 tokenId) public view returns (string memory) {
        return pluck(tokenId, "COOLDOWN", cooldown);
    }
    
    function getAffinity(uint256 tokenId) public view returns (string memory) {
        return pluck(tokenId, "AFFINITY", affinity);
    }

    function getSigil(uint256 tokenId) public view returns (string memory) {
        return pluck(tokenId, "SIGIL", sigil);
    }
    
    function getLevels(uint256 tokenId) public view returns (string memory) {
        return pluck(tokenId, "LEVELS", levels);
    }
    
    function getActivation(uint256 tokenId) public view returns (string memory) {
        return pluck(tokenId, "ACTIVATION", activation);
    }
    
    function getVolume(uint256 tokenId) public view returns (string memory) {
        return pluck(tokenId, "VOLUME", volume);
    }
    
    function pluck(uint256 tokenId, string memory keyPrefix, string[] memory sourceArray) internal view returns (string memory) {
        uint256 rand = random(string(abi.encodePacked(keyPrefix, toString(tokenId), msg.sender, tx.gasprice)));
        string memory output = sourceArray[rand % sourceArray.length];
        return output;
    }   

    function tokenURI(uint256 tokenId) override public view returns (string memory) {
        string[17] memory parts;
        parts[0] = '<svg xmlns="http://www.w3.org/2000/svg" preserveAspectRatio="xMinYMin meet" viewBox="0 0 350 350"><style>.base { fill: white; font-family: "Helvetica"; font-size: 16px; }</style><defs><radialGradient id="RadialGradient2" cx="-0.1" cy="-0.1" r="0.85"><stop offset="50%" stop-color="purple"/><stop offset="100%" stop-color="black"/></radialGradient></defs>><rect width="100%" height="100%" fill="url(#RadialGradient2)"/><text x="20" y="30" class="base">Power - ';
    
        parts[1] = getPower(tokenId);

        parts[2] = '</text><text x="20" y="50" class="base">Luck - ';

        parts[3] = getLuck(tokenId);

        parts[4] = '</text><text x="20" y="70" class="base">Cooldown - ';

        parts[5] = getCooldown(tokenId);

        parts[6] = ' week(s)</text><text x="20" y="90" class="base">Affinity - ';

        parts[7] = getAffinity(tokenId);

        parts[8] = '</text><text x="20" y="110" class="base">Sigil - ';

        parts[9] = getSigil(tokenId);

        parts[10] = '</text><text x="20" y="130" class="base">Levels - ';

        parts[11] = getLevels(tokenId);

        parts[12] = '</text><text x="20" y="150" class="base">Activation - ';

        parts[13] = getActivation(tokenId);

        parts[14] = ' day(s)</text><text x="20" y="170" class="base">Volume - ';

        parts[15] = getVolume(tokenId);
        
        parts[16] = '</text><text x="132" y="275" class="base" style="font-size: 10px; letter-spacing: 1.5; fill: purple">The Alchemist\'s</text><text x="117" y="300" class="base" style="font-size: 20px; letter-spacing: 5;">GLIMMER</text></svg>';

        string memory output = string(abi.encodePacked(parts[0], parts[1], parts[2], parts[3], parts[4], parts[5], parts[6], parts[7], parts[8]));
        output = string(abi.encodePacked(output, parts[9], parts[10], parts[11], parts[12], parts[13], parts[14], parts[15], parts[16]));
        
        // attributes: [{"trait_type": "Power", "value": "', getWeapon(tokenId), '"}, {"trait_type": "Luck", "value": "', getChest(tokenId), '"}, {"trait_type": "Cooldown", "value": "', getHead(tokenId), '"}, {"trait_type": "Affinity", "value": "', getWaist(tokenId), '"}, {"trait_type": "Sign", "value": "', getFoot(tokenId), '"}, {"trait_type": "Levels", "value": "', getHand(tokenId), '"}, {"trait_type": "Activation", "value": "', getNeck(tokenId), '"}, {"trait_type": "Charge", "value": "', getRing(tokenId), '"}]
        string memory json = Base64.encode(bytes(string(abi.encodePacked('{"name": "Object #', toString(tokenId), '", "description": "Why hello there, Moon Boy. It seems that you have found my Glimmer.", "external_url": "https://www.ritualmill.com/", "image": "data:image/svg+xml;base64,', Base64.encode(bytes(output)), '"}'))));
        output = string(abi.encodePacked('data:application/json;base64,', json));

        return output;
    }

    function claim(uint256 tokenId) public nonReentrant {
        require(tokenId > 0 && tokenId < 5778, "Token ID invalid");
        _safeMint(_msgSender(), tokenId);
    }
    
    function ownerClaim(uint256 tokenId) public nonReentrant onlyOwner {
        require(tokenId > 5777 && tokenId < 6001, "Token ID invalid");
        _safeMint(owner(), tokenId);
    }
    
    function toString(uint256 value) internal pure returns (string memory) {
    // Inspired by OraclizeAPI's implementation - MIT license
    // 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);
    }
    
    constructor() ERC721("Digital Object", "OBJECT") Ownable() {}
}

/// [MIT License]
/// @title Base64
/// @notice Provides a function for encoding some bytes in base64
/// @author Brecht Devos <[email protected]>
library Base64 {
    bytes internal constant TABLE = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/";

    /// @notice Encodes some bytes to the base64 representation
    function encode(bytes memory data) internal pure returns (string memory) {
        uint256 len = data.length;
        if (len == 0) return "";

        // multiply by 4/3 rounded up
        uint256 encodedLen = 4 * ((len + 2) / 3);

        // Add some extra buffer at the end
        bytes memory result = new bytes(encodedLen + 32);

        bytes memory table = TABLE;

        assembly {
            let tablePtr := add(table, 1)
            let resultPtr := add(result, 32)

            for {
                let i := 0
            } lt(i, len) {

            } {
                i := add(i, 3)
                let input := and(mload(add(data, i)), 0xffffff)

                let out := mload(add(tablePtr, and(shr(18, input), 0x3F)))
                out := shl(8, out)
                out := add(out, and(mload(add(tablePtr, and(shr(12, input), 0x3F))), 0xFF))
                out := shl(8, out)
                out := add(out, and(mload(add(tablePtr, and(shr(6, input), 0x3F))), 0xFF))
                out := shl(8, out)
                out := add(out, and(mload(add(tablePtr, and(input, 0x3F))), 0xFF))
                out := shl(224, out)

                mstore(resultPtr, out)

                resultPtr := add(resultPtr, 4)
            }

            switch mod(len, 3)
            case 1 {
                mstore(sub(resultPtr, 2), shl(240, 0x3d3d))
            }
            case 2 {
                mstore(sub(resultPtr, 1), shl(248, 0x3d))
            }

            mstore(result, encodedLen)
        }

        return string(result);
    }
}

File 2 of 14 : Ownable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

    function _setOwner(address newOwner) private {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

File 3 of 14 : ReentrancyGuard.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

/**
 * @dev Contract module that helps prevent reentrant calls to a function.
 *
 * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier
 * available, which can be applied to functions to make sure there are no nested
 * (reentrant) calls to them.
 *
 * Note that because there is a single `nonReentrant` guard, functions marked as
 * `nonReentrant` may not call one another. This can be worked around by making
 * those functions `private`, and then adding `external` `nonReentrant` entry
 * points to them.
 *
 * TIP: If you would like to learn more about reentrancy and alternative ways
 * to protect against it, check out our blog post
 * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].
 */
abstract contract ReentrancyGuard {
    // Booleans are more expensive than uint256 or any type that takes up a full
    // word because each write operation emits an extra SLOAD to first read the
    // slot's contents, replace the bits taken up by the boolean, and then write
    // back. This is the compiler's defense against contract upgrades and
    // pointer aliasing, and it cannot be disabled.

    // The values being non-zero value makes deployment a bit more expensive,
    // but in exchange the refund on every call to nonReentrant will be lower in
    // amount. Since refunds are capped to a percentage of the total
    // transaction's gas, it is best to keep them low in cases like this one, to
    // increase the likelihood of the full refund coming into effect.
    uint256 private constant _NOT_ENTERED = 1;
    uint256 private constant _ENTERED = 2;

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

    /**
     * @dev Prevents a contract from calling itself, directly or indirectly.
     * Calling a `nonReentrant` function from another `nonReentrant`
     * function is not supported. It is possible to prevent this from happening
     * by making the `nonReentrant` function external, and make it call a
     * `private` function that does the actual work.
     */
    modifier nonReentrant() {
        // On the first call to nonReentrant, _notEntered will be true
        require(_status != _ENTERED, "ReentrancyGuard: reentrant call");

        // Any calls to nonReentrant after this point will fail
        _status = _ENTERED;

        _;

        // By storing the original value once again, a refund is triggered (see
        // https://eips.ethereum.org/EIPS/eip-2200)
        _status = _NOT_ENTERED;
    }
}

File 4 of 14 : 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.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 5 of 14 : 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 6 of 14 : 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 7 of 14 : 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 8 of 14 : 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 14 : 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 10 of 14 : 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);
    }

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

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

File 11 of 14 : 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 12 of 14 : 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 13 of 14 : 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 14 of 14 : 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);
}

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"claim","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getActivation","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getAffinity","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getCooldown","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getLevels","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getLuck","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getPower","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getSigil","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getVolume","outputs":[{"internalType":"string","name":"","type":"string"}],"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":"ownerClaim","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"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":"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":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526040518061014001604052806040518060400160405280600281526020017f313000000000000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600281526020017f323000000000000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600281526020017f333000000000000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600281526020017f343000000000000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600281526020017f353000000000000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600281526020017f363000000000000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600281526020017f373000000000000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600281526020017f383000000000000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600281526020017f393000000000000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600381526020017f3130300000000000000000000000000000000000000000000000000000000000815250815250600c90600a6200026e9291906200123f565b506040518061014001604052806040518060400160405280600281526020017f313000000000000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600281526020017f323000000000000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600281526020017f333000000000000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600281526020017f343000000000000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600281526020017f353000000000000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600281526020017f363000000000000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600281526020017f373000000000000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600281526020017f383000000000000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600281526020017f393000000000000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600381526020017f3130300000000000000000000000000000000000000000000000000000000000815250815250600d90600a620004d99291906200123f565b50604051806101a001604052806040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600181526020017f310000000000000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600181526020017f320000000000000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600181526020017f330000000000000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600181526020017f340000000000000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600181526020017f350000000000000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600181526020017f360000000000000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600181526020017f370000000000000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600181526020017f380000000000000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600181526020017f390000000000000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600281526020017f313000000000000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600281526020017f313100000000000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600281526020017f3132000000000000000000000000000000000000000000000000000000000000815250815250600e90600d620007f5929190620012a6565b506040518060a001604052806040518060400160405280600381526020017f526564000000000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600681526020017f59656c6c6f77000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600581526020017f477265656e00000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600481526020017f426c75650000000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600681526020017f56696f6c65740000000000000000000000000000000000000000000000000000815250815250600f906005620009389291906200130d565b506040518060a001604052806040518060400160405280600481526020017f576f6c660000000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600481526020017f4c696f6e0000000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600581526020017f4561676c6500000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600481526020017f537461670000000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600481526020017f4265617200000000000000000000000000000000000000000000000000000000815250815250601090600562000a7b9291906200130d565b506040518061014001604052806040518060400160405280600181526020017f310000000000000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600181526020017f320000000000000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600181526020017f330000000000000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600181526020017f340000000000000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600181526020017f350000000000000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600181526020017f360000000000000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600181526020017f370000000000000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600181526020017f380000000000000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600181526020017f390000000000000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600281526020017f3130000000000000000000000000000000000000000000000000000000000000815250815250601190600a62000ce69291906200123f565b506040518060a001604052806040518060400160405280600181526020017f310000000000000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600181526020017f320000000000000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600181526020017f330000000000000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600181526020017f340000000000000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600181526020017f3500000000000000000000000000000000000000000000000000000000000000815250815250601290600562000e299291906200130d565b506040518061014001604052806040518060400160405280600281526020017f313000000000000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600281526020017f323000000000000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600281526020017f333000000000000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600281526020017f343000000000000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600281526020017f353000000000000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600281526020017f363000000000000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600281526020017f373000000000000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600281526020017f383000000000000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600281526020017f393000000000000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600381526020017f3130300000000000000000000000000000000000000000000000000000000000815250815250601390600a620010949291906200123f565b50348015620010a257600080fd5b506040518060400160405280600e81526020017f4469676974616c204f626a6563740000000000000000000000000000000000008152506040518060400160405280600681526020017f4f424a454354000000000000000000000000000000000000000000000000000081525081600090805190602001906200112792919062001374565b5080600190805190602001906200114092919062001374565b5050506001600a819055506200116b6200115f6200117160201b60201c565b6200117960201b60201c565b620014f7565b600033905090565b6000600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b82805482825590600052602060002090810192821562001293579160200282015b82811115620012925782518290805190602001906200128192919062001374565b509160200191906001019062001260565b5b509050620012a2919062001405565b5090565b828054828255906000526020600020908101928215620012fa579160200282015b82811115620012f9578251829080519060200190620012e892919062001374565b5091602001919060010190620012c7565b5b50905062001309919062001405565b5090565b82805482825590600052602060002090810192821562001361579160200282015b82811115620013605782518290805190602001906200134f92919062001374565b50916020019190600101906200132e565b5b50905062001370919062001405565b5090565b828054620013829062001492565b90600052602060002090601f016020900481019282620013a65760008555620013f2565b82601f10620013c157805160ff1916838001178555620013f2565b82800160010185558215620013f2579182015b82811115620013f1578251825591602001919060010190620013d4565b5b5090506200140191906200142d565b5090565b5b808211156200142957600081816200141f91906200144c565b5060010162001406565b5090565b5b80821115620014485760008160009055506001016200142e565b5090565b5080546200145a9062001492565b6000825580601f106200146e57506200148f565b601f0160209004906000526020600020908101906200148e91906200142d565b5b50565b60006002820490506001821680620014ab57607f821691505b60208210811415620014c257620014c1620014c8565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b614f3080620015076000396000f3fe608060405234801561001057600080fd5b50600436106101cf5760003560e01c80636d03f21711610104578063b88d4fde116100a2578063d4245a9411610071578063d4245a941461058a578063e985e9c5146105ba578063f2fde38b146105ea578063f43785f914610606576101cf565b8063b88d4fde146104de578063c7511545146104fa578063c83481ee1461052a578063c87b56dd1461055a576101cf565b80638da5cb5b116100de5780638da5cb5b1461045657806390ad32d41461047457806395d89b41146104a4578063a22cb465146104c2576101cf565b80636d03f217146103ec57806370a082311461041c578063715018a61461044c576101cf565b806329e203ab1161017157806342842e0e1161014b57806342842e0e14610354578063434f48c4146103705780634f6ccce71461038c5780636352211e146103bc576101cf565b806329e203ab146102d85780632f745c5914610308578063379607f514610338576101cf565b8063081812fc116101ad578063081812fc14610252578063095ea7b31461028257806318160ddd1461029e57806323b872dd146102bc576101cf565b8063017fe809146101d457806301ffc9a71461020457806306fdde0314610234575b600080fd5b6101ee60048036038101906101e9919061367e565b610636565b6040516101fb9190613c93565b60405180910390f35b61021e60048036038101906102199190613624565b610750565b60405161022b9190613c78565b60405180910390f35b61023c6107ca565b6040516102499190613c93565b60405180910390f35b61026c6004803603810190610267919061367e565b61085c565b6040516102799190613c11565b60405180910390f35b61029c600480360381019061029791906135e4565b6108e1565b005b6102a66109f9565b6040516102b39190613f15565b60405180910390f35b6102d660048036038101906102d191906134ce565b610a06565b005b6102f260048036038101906102ed919061367e565b610a66565b6040516102ff9190613c93565b60405180910390f35b610322600480360381019061031d91906135e4565b610b80565b60405161032f9190613f15565b60405180910390f35b610352600480360381019061034d919061367e565b610c25565b005b61036e600480360381019061036991906134ce565b610cdf565b005b61038a6004803603810190610385919061367e565b610cff565b005b6103a660048036038101906103a1919061367e565b610e36565b6040516103b39190613f15565b60405180910390f35b6103d660048036038101906103d1919061367e565b610ea7565b6040516103e39190613c11565b60405180910390f35b6104066004803603810190610401919061367e565b610f59565b6040516104139190613c93565b60405180910390f35b61043660048036038101906104319190613461565b611073565b6040516104439190613f15565b60405180910390f35b61045461112b565b005b61045e6111b3565b60405161046b9190613c11565b60405180910390f35b61048e6004803603810190610489919061367e565b6111dd565b60405161049b9190613c93565b60405180910390f35b6104ac6112f7565b6040516104b99190613c93565b60405180910390f35b6104dc60048036038101906104d791906135a4565b611389565b005b6104f860048036038101906104f39190613521565b61150a565b005b610514600480360381019061050f919061367e565b61156c565b6040516105219190613c93565b60405180910390f35b610544600480360381019061053f919061367e565b611686565b6040516105519190613c93565b60405180910390f35b610574600480360381019061056f919061367e565b6117a0565b6040516105819190613c93565b60405180910390f35b6105a4600480360381019061059f919061367e565b611d1c565b6040516105b19190613c93565b60405180910390f35b6105d460048036038101906105cf919061348e565b611e36565b6040516105e19190613c78565b60405180910390f35b61060460048036038101906105ff9190613461565b611eca565b005b610620600480360381019061061b919061367e565b611fc2565b60405161062d9190613c93565b60405180910390f35b6060610749826040518060400160405280600581526020017f504f574552000000000000000000000000000000000000000000000000000000815250600c805480602002602001604051908101604052809291908181526020016000905b828210156107405783829060005260206000200180546106b390614194565b80601f01602080910402602001604051908101604052809291908181526020018280546106df90614194565b801561072c5780601f106107015761010080835404028352916020019161072c565b820191906000526020600020905b81548152906001019060200180831161070f57829003601f168201915b505050505081526020019060010190610694565b505050506120dc565b9050919050565b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806107c357506107c28261214f565b5b9050919050565b6060600080546107d990614194565b80601f016020809104026020016040519081016040528092919081815260200182805461080590614194565b80156108525780601f1061082757610100808354040283529160200191610852565b820191906000526020600020905b81548152906001019060200180831161083557829003601f168201915b5050505050905090565b600061086782612231565b6108a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161089d90613e15565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006108ec82610ea7565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561095d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161095490613e95565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1661097c61229d565b73ffffffffffffffffffffffffffffffffffffffff1614806109ab57506109aa816109a561229d565b611e36565b5b6109ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109e190613d95565b60405180910390fd5b6109f483836122a5565b505050565b6000600880549050905090565b610a17610a1161229d565b8261235e565b610a56576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a4d90613eb5565b60405180910390fd5b610a6183838361243c565b505050565b6060610b79826040518060400160405280600881526020017f434f4f4c444f574e000000000000000000000000000000000000000000000000815250600e805480602002602001604051908101604052809291908181526020016000905b82821015610b70578382906000526020600020018054610ae390614194565b80601f0160208091040260200160405190810160405280929190818152602001828054610b0f90614194565b8015610b5c5780601f10610b3157610100808354040283529160200191610b5c565b820191906000526020600020905b815481529060010190602001808311610b3f57829003601f168201915b505050505081526020019060010190610ac4565b505050506120dc565b9050919050565b6000610b8b83611073565b8210610bcc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bc390613cb5565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b6002600a541415610c6b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c6290613ef5565b60405180910390fd5b6002600a81905550600081118015610c84575061169281105b610cc3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cba90613e55565b60405180910390fd5b610cd4610cce61229d565b82612698565b6001600a8190555050565b610cfa8383836040518060200160405280600081525061150a565b505050565b6002600a541415610d45576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d3c90613ef5565b60405180910390fd5b6002600a81905550610d5561229d565b73ffffffffffffffffffffffffffffffffffffffff16610d736111b3565b73ffffffffffffffffffffffffffffffffffffffff1614610dc9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dc090613e35565b60405180910390fd5b61169181118015610ddb575061177181105b610e1a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e1190613e55565b60405180910390fd5b610e2b610e256111b3565b82612698565b6001600a8190555050565b6000610e406109f9565b8210610e81576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e7890613ed5565b60405180910390fd5b60088281548110610e9557610e9461435b565b5b90600052602060002001549050919050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610f50576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f4790613dd5565b60405180910390fd5b80915050919050565b606061106c826040518060400160405280600881526020017f414646494e495459000000000000000000000000000000000000000000000000815250600f805480602002602001604051908101604052809291908181526020016000905b82821015611063578382906000526020600020018054610fd690614194565b80601f016020809104026020016040519081016040528092919081815260200182805461100290614194565b801561104f5780601f106110245761010080835404028352916020019161104f565b820191906000526020600020905b81548152906001019060200180831161103257829003601f168201915b505050505081526020019060010190610fb7565b505050506120dc565b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156110e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110db90613db5565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61113361229d565b73ffffffffffffffffffffffffffffffffffffffff166111516111b3565b73ffffffffffffffffffffffffffffffffffffffff16146111a7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161119e90613e35565b60405180910390fd5b6111b160006126b6565b565b6000600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606112f0826040518060400160405280600581526020017f534947494c0000000000000000000000000000000000000000000000000000008152506010805480602002602001604051908101604052809291908181526020016000905b828210156112e757838290600052602060002001805461125a90614194565b80601f016020809104026020016040519081016040528092919081815260200182805461128690614194565b80156112d35780601f106112a8576101008083540402835291602001916112d3565b820191906000526020600020905b8154815290600101906020018083116112b657829003601f168201915b50505050508152602001906001019061123b565b505050506120dc565b9050919050565b60606001805461130690614194565b80601f016020809104026020016040519081016040528092919081815260200182805461133290614194565b801561137f5780601f106113545761010080835404028352916020019161137f565b820191906000526020600020905b81548152906001019060200180831161136257829003601f168201915b5050505050905090565b61139161229d565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156113ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113f690613d55565b60405180910390fd5b806005600061140c61229d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166114b961229d565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516114fe9190613c78565b60405180910390a35050565b61151b61151561229d565b8361235e565b61155a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161155190613eb5565b60405180910390fd5b6115668484848461277c565b50505050565b606061167f826040518060400160405280600481526020017f4c55434b00000000000000000000000000000000000000000000000000000000815250600d805480602002602001604051908101604052809291908181526020016000905b828210156116765783829060005260206000200180546115e990614194565b80601f016020809104026020016040519081016040528092919081815260200182805461161590614194565b80156116625780601f1061163757610100808354040283529160200191611662565b820191906000526020600020905b81548152906001019060200180831161164557829003601f168201915b5050505050815260200190600101906115ca565b505050506120dc565b9050919050565b6060611799826040518060400160405280600681526020017f564f4c554d4500000000000000000000000000000000000000000000000000008152506013805480602002602001604051908101604052809291908181526020016000905b8282101561179057838290600052602060002001805461170390614194565b80601f016020809104026020016040519081016040528092919081815260200182805461172f90614194565b801561177c5780601f106117515761010080835404028352916020019161177c565b820191906000526020600020905b81548152906001019060200180831161175f57829003601f168201915b5050505050815260200190600101906116e4565b505050506120dc565b9050919050565b60606117aa613360565b6040518061020001604052806101cb8152602001614d306101cb9139816000601181106117da576117d961435b565b5b60200201819052506117eb83610636565b816001601181106117ff576117fe61435b565b5b60200201819052506040518060600160405280602f8152602001614aa3602f9139816002601181106118345761183361435b565b5b60200201819052506118458361156c565b816003601181106118595761185861435b565b5b6020020181905250604051806060016040528060338152602001614c4e603391398160046011811061188e5761188d61435b565b5b602002018190525061189f83610a66565b816005601181106118b3576118b261435b565b5b60200201819052506040518060600160405280603b8152602001614b35603b9139816006601181106118e8576118e761435b565b5b60200201819052506118f983610f59565b8160076011811061190d5761190c61435b565b5b6020020181905250604051806060016040528060318152602001614b0460319139816008601181106119425761194161435b565b5b6020020181905250611953836111dd565b816009601181106119675761196661435b565b5b6020020181905250604051806060016040528060328152602001614ad26032913981600a6011811061199c5761199b61435b565b5b60200201819052506119ad83611fc2565b81600b601181106119c1576119c061435b565b5b6020020181905250604051806060016040528060368152602001614c816036913981600c601181106119f6576119f561435b565b5b6020020181905250611a0783611d1c565b81600d60118110611a1b57611a1a61435b565b5b6020020181905250604051806060016040528060398152602001614cf76039913981600e60118110611a5057611a4f61435b565b5b6020020181905250611a6183611686565b81600f60118110611a7557611a7461435b565b5b602002018190525060405180610100016040528060de8152602001614b7060de913981601060118110611aab57611aaa61435b565b5b6020020181905250600081600060118110611ac957611ac861435b565b5b602002015182600160118110611ae257611ae161435b565b5b602002015183600260118110611afb57611afa61435b565b5b602002015184600360118110611b1457611b1361435b565b5b602002015185600460118110611b2d57611b2c61435b565b5b602002015186600560118110611b4657611b4561435b565b5b602002015187600660118110611b5f57611b5e61435b565b5b602002015188600760118110611b7857611b7761435b565b5b602002015189600860118110611b9157611b9061435b565b5b6020020151604051602001611bae99989796959493929190613b2b565b60405160208183030381529060405290508082600960118110611bd457611bd361435b565b5b602002015183600a60118110611bed57611bec61435b565b5b602002015184600b60118110611c0657611c0561435b565b5b602002015185600c60118110611c1f57611c1e61435b565b5b602002015186600d60118110611c3857611c3761435b565b5b602002015187600e60118110611c5157611c5061435b565b5b602002015188600f60118110611c6a57611c6961435b565b5b602002015189601060118110611c8357611c8261435b565b5b6020020151604051602001611ca099989796959493929190613b2b565b60405160208183030381529060405290506000611ced611cbf866127d8565b611cc884612939565b604051602001611cd9929190613baa565b604051602081830303815290604052612939565b905080604051602001611d009190613bef565b6040516020818303038152906040529150819350505050919050565b6060611e2f826040518060400160405280600a81526020017f41435449564154494f4e000000000000000000000000000000000000000000008152506012805480602002602001604051908101604052809291908181526020016000905b82821015611e26578382906000526020600020018054611d9990614194565b80601f0160208091040260200160405190810160405280929190818152602001828054611dc590614194565b8015611e125780601f10611de757610100808354040283529160200191611e12565b820191906000526020600020905b815481529060010190602001808311611df557829003601f168201915b505050505081526020019060010190611d7a565b505050506120dc565b9050919050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611ed261229d565b73ffffffffffffffffffffffffffffffffffffffff16611ef06111b3565b73ffffffffffffffffffffffffffffffffffffffff1614611f46576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f3d90613e35565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611fb6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fad90613cf5565b60405180910390fd5b611fbf816126b6565b50565b60606120d5826040518060400160405280600681526020017f4c4556454c5300000000000000000000000000000000000000000000000000008152506011805480602002602001604051908101604052809291908181526020016000905b828210156120cc57838290600052602060002001805461203f90614194565b80601f016020809104026020016040519081016040528092919081815260200182805461206b90614194565b80156120b85780601f1061208d576101008083540402835291602001916120b8565b820191906000526020600020905b81548152906001019060200180831161209b57829003601f168201915b505050505081526020019060010190612020565b505050506120dc565b9050919050565b60606000612116846120ed876127d8565b333a6040516020016121029493929190613ae5565b604051602081830303815290604052612ad1565b9050600083845183612128919061426e565b815181106121395761213861435b565b5b6020026020010151905080925050509392505050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061221a57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061222a575061222982612b04565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661231883610ea7565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600061236982612231565b6123a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161239f90613d75565b60405180910390fd5b60006123b383610ea7565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061242257508373ffffffffffffffffffffffffffffffffffffffff1661240a8461085c565b73ffffffffffffffffffffffffffffffffffffffff16145b8061243357506124328185611e36565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661245c82610ea7565b73ffffffffffffffffffffffffffffffffffffffff16146124b2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124a990613e75565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612522576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161251990613d35565b60405180910390fd5b61252d838383612b6e565b6125386000826122a5565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461258891906140aa565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546125df9190613fc9565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6126b2828260405180602001604052806000815250612c82565b5050565b6000600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b61278784848461243c565b61279384848484612cdd565b6127d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127c990613cd5565b60405180910390fd5b50505050565b60606000821415612820576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612934565b600082905060005b6000821461285257808061283b906141f7565b915050600a8261284b919061401f565b9150612828565b60008167ffffffffffffffff81111561286e5761286d61438a565b5b6040519080825280601f01601f1916602001820160405280156128a05781602001600182028036833780820191505090505b5090505b6000851461292d576001826128b991906140aa565b9150600a856128c8919061426e565b60306128d49190613fc9565b60f81b8183815181106128ea576128e961435b565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612926919061401f565b94506128a4565b8093505050505b919050565b606060008251905060008114156129625760405180602001604052806000815250915050612acc565b600060036002836129739190613fc9565b61297d919061401f565b60046129899190614050565b9050600060208261299a9190613fc9565b67ffffffffffffffff8111156129b3576129b261438a565b5b6040519080825280601f01601f1916602001820160405280156129e55781602001600182028036833780820191505090505b5090506000604051806060016040528060408152602001614cb7604091399050600181016020830160005b86811015612a895760038101905062ffffff818a015116603f8160121c168401518060081b905060ff603f83600c1c1686015116810190508060081b905060ff603f8360061c1686015116810190508060081b905060ff603f831686015116810190508060e01b90508084526004840193505050612a10565b506003860660018114612aa35760028114612ab357612abe565b613d3d60f01b6002830352612abe565b603d60f81b60018303525b508484525050819450505050505b919050565b600081604051602001612ae49190613ace565b6040516020818303038152906040528051906020012060001c9050919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b612b79838383612e74565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612bbc57612bb781612e79565b612bfb565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614612bfa57612bf98382612ec2565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612c3e57612c398161302f565b612c7d565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614612c7c57612c7b8282613100565b5b5b505050565b612c8c838361317f565b612c996000848484612cdd565b612cd8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ccf90613cd5565b60405180910390fd5b505050565b6000612cfe8473ffffffffffffffffffffffffffffffffffffffff1661334d565b15612e67578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612d2761229d565b8786866040518563ffffffff1660e01b8152600401612d499493929190613c2c565b602060405180830381600087803b158015612d6357600080fd5b505af1925050508015612d9457506040513d601f19601f82011682018060405250810190612d919190613651565b60015b612e17573d8060008114612dc4576040519150601f19603f3d011682016040523d82523d6000602084013e612dc9565b606091505b50600081511415612e0f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e0690613cd5565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612e6c565b600190505b949350505050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b60006001612ecf84611073565b612ed991906140aa565b9050600060076000848152602001908152602001600020549050818114612fbe576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b6000600160088054905061304391906140aa565b90506000600960008481526020019081526020016000205490506000600883815481106130735761307261435b565b5b9060005260206000200154905080600883815481106130955761309461435b565b5b9060005260206000200181905550816009600083815260200190815260200160002081905550600960008581526020019081526020016000206000905560088054806130e4576130e361432c565b5b6001900381819060005260206000200160009055905550505050565b600061310b83611073565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156131ef576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131e690613df5565b60405180910390fd5b6131f881612231565b15613238576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161322f90613d15565b60405180910390fd5b61324460008383612b6e565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546132949190613fc9565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b6040518061022001604052806011905b60608152602001906001900390816133705790505090565b600061339b61339684613f55565b613f30565b9050828152602081018484840111156133b7576133b66143be565b5b6133c2848285614152565b509392505050565b6000813590506133d981614a46565b92915050565b6000813590506133ee81614a5d565b92915050565b60008135905061340381614a74565b92915050565b60008151905061341881614a74565b92915050565b600082601f830112613433576134326143b9565b5b8135613443848260208601613388565b91505092915050565b60008135905061345b81614a8b565b92915050565b600060208284031215613477576134766143c8565b5b6000613485848285016133ca565b91505092915050565b600080604083850312156134a5576134a46143c8565b5b60006134b3858286016133ca565b92505060206134c4858286016133ca565b9150509250929050565b6000806000606084860312156134e7576134e66143c8565b5b60006134f5868287016133ca565b9350506020613506868287016133ca565b92505060406135178682870161344c565b9150509250925092565b6000806000806080858703121561353b5761353a6143c8565b5b6000613549878288016133ca565b945050602061355a878288016133ca565b935050604061356b8782880161344c565b925050606085013567ffffffffffffffff81111561358c5761358b6143c3565b5b6135988782880161341e565b91505092959194509250565b600080604083850312156135bb576135ba6143c8565b5b60006135c9858286016133ca565b92505060206135da858286016133df565b9150509250929050565b600080604083850312156135fb576135fa6143c8565b5b6000613609858286016133ca565b925050602061361a8582860161344c565b9150509250929050565b60006020828403121561363a576136396143c8565b5b6000613648848285016133f4565b91505092915050565b600060208284031215613667576136666143c8565b5b600061367584828501613409565b91505092915050565b600060208284031215613694576136936143c8565b5b60006136a28482850161344c565b91505092915050565b6136b4816140de565b82525050565b6136cb6136c6826140de565b614240565b82525050565b6136da816140f0565b82525050565b60006136eb82613f86565b6136f58185613f9c565b9350613705818560208601614161565b61370e816143cd565b840191505092915050565b600061372482613f91565b61372e8185613fad565b935061373e818560208601614161565b613747816143cd565b840191505092915050565b600061375d82613f91565b6137678185613fbe565b9350613777818560208601614161565b80840191505092915050565b6000613790602b83613fad565b915061379b826143eb565b604082019050919050565b60006137b3603283613fad565b91506137be8261443a565b604082019050919050565b60006137d6602683613fad565b91506137e182614489565b604082019050919050565b60006137f9601c83613fad565b9150613804826144d8565b602082019050919050565b600061381c602483613fad565b915061382782614501565b604082019050919050565b600061383f601983613fad565b915061384a82614550565b602082019050919050565b6000613862602c83613fad565b915061386d82614579565b604082019050919050565b6000613885603883613fad565b9150613890826145c8565b604082019050919050565b60006138a8602a83613fad565b91506138b382614617565b604082019050919050565b60006138cb602983613fad565b91506138d682614666565b604082019050919050565b60006138ee600283613fbe565b91506138f9826146b5565b600282019050919050565b6000613911602083613fad565b915061391c826146de565b602082019050919050565b6000613934602c83613fad565b915061393f82614707565b604082019050919050565b6000613957602083613fad565b915061396282614756565b602082019050919050565b600061397a601083613fad565b91506139858261477f565b602082019050919050565b600061399d60ac83613fbe565b91506139a8826147a8565b60ac82019050919050565b60006139c0602983613fad565b91506139cb8261488f565b604082019050919050565b60006139e3601283613fbe565b91506139ee826148de565b601282019050919050565b6000613a06602183613fad565b9150613a1182614907565b604082019050919050565b6000613a29601d83613fbe565b9150613a3482614956565b601d82019050919050565b6000613a4c603183613fad565b9150613a578261497f565b604082019050919050565b6000613a6f602c83613fad565b9150613a7a826149ce565b604082019050919050565b6000613a92601f83613fad565b9150613a9d82614a1d565b602082019050919050565b613ab181614148565b82525050565b613ac8613ac382614148565b614264565b82525050565b6000613ada8284613752565b915081905092915050565b6000613af18287613752565b9150613afd8286613752565b9150613b0982856136ba565b601482019150613b198284613ab7565b60208201915081905095945050505050565b6000613b37828c613752565b9150613b43828b613752565b9150613b4f828a613752565b9150613b5b8289613752565b9150613b678288613752565b9150613b738287613752565b9150613b7f8286613752565b9150613b8b8285613752565b9150613b978284613752565b91508190509a9950505050505050505050565b6000613bb5826139d6565b9150613bc18285613752565b9150613bcc82613990565b9150613bd88284613752565b9150613be3826138e1565b91508190509392505050565b6000613bfa82613a1c565b9150613c068284613752565b915081905092915050565b6000602082019050613c2660008301846136ab565b92915050565b6000608082019050613c4160008301876136ab565b613c4e60208301866136ab565b613c5b6040830185613aa8565b8181036060830152613c6d81846136e0565b905095945050505050565b6000602082019050613c8d60008301846136d1565b92915050565b60006020820190508181036000830152613cad8184613719565b905092915050565b60006020820190508181036000830152613cce81613783565b9050919050565b60006020820190508181036000830152613cee816137a6565b9050919050565b60006020820190508181036000830152613d0e816137c9565b9050919050565b60006020820190508181036000830152613d2e816137ec565b9050919050565b60006020820190508181036000830152613d4e8161380f565b9050919050565b60006020820190508181036000830152613d6e81613832565b9050919050565b60006020820190508181036000830152613d8e81613855565b9050919050565b60006020820190508181036000830152613dae81613878565b9050919050565b60006020820190508181036000830152613dce8161389b565b9050919050565b60006020820190508181036000830152613dee816138be565b9050919050565b60006020820190508181036000830152613e0e81613904565b9050919050565b60006020820190508181036000830152613e2e81613927565b9050919050565b60006020820190508181036000830152613e4e8161394a565b9050919050565b60006020820190508181036000830152613e6e8161396d565b9050919050565b60006020820190508181036000830152613e8e816139b3565b9050919050565b60006020820190508181036000830152613eae816139f9565b9050919050565b60006020820190508181036000830152613ece81613a3f565b9050919050565b60006020820190508181036000830152613eee81613a62565b9050919050565b60006020820190508181036000830152613f0e81613a85565b9050919050565b6000602082019050613f2a6000830184613aa8565b92915050565b6000613f3a613f4b565b9050613f4682826141c6565b919050565b6000604051905090565b600067ffffffffffffffff821115613f7057613f6f61438a565b5b613f79826143cd565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000613fd482614148565b9150613fdf83614148565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156140145761401361429f565b5b828201905092915050565b600061402a82614148565b915061403583614148565b925082614045576140446142ce565b5b828204905092915050565b600061405b82614148565b915061406683614148565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561409f5761409e61429f565b5b828202905092915050565b60006140b582614148565b91506140c083614148565b9250828210156140d3576140d261429f565b5b828203905092915050565b60006140e982614128565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561417f578082015181840152602081019050614164565b8381111561418e576000848401525b50505050565b600060028204905060018216806141ac57607f821691505b602082108114156141c0576141bf6142fd565b5b50919050565b6141cf826143cd565b810181811067ffffffffffffffff821117156141ee576141ed61438a565b5b80604052505050565b600061420282614148565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156142355761423461429f565b5b600182019050919050565b600061424b82614252565b9050919050565b600061425d826143de565b9050919050565b6000819050919050565b600061427982614148565b915061428483614148565b925082614294576142936142ce565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f227d000000000000000000000000000000000000000000000000000000000000600082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f546f6b656e20494420696e76616c696400000000000000000000000000000000600082015250565b7f222c20226465736372697074696f6e223a20225768792068656c6c6f2074686560008201527f72652c204d6f6f6e20426f792e204974207365656d73207468617420796f752060208201527f6861766520666f756e64206d7920476c696d6d65722e222c202265787465726e60408201527f616c5f75726c223a202268747470733a2f2f7777772e72697475616c6d696c6c60608201527f2e636f6d2f222c2022696d616765223a2022646174613a696d6167652f73766760808201527f2b786d6c3b6261736536342c000000000000000000000000000000000000000060a082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f7b226e616d65223a20224f626a65637420230000000000000000000000000000600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f646174613a6170706c69636174696f6e2f6a736f6e3b6261736536342c000000600082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b614a4f816140de565b8114614a5a57600080fd5b50565b614a66816140f0565b8114614a7157600080fd5b50565b614a7d816140fc565b8114614a8857600080fd5b50565b614a9481614148565b8114614a9f57600080fd5b5056fe3c2f746578743e3c7465787420783d2232302220793d2235302220636c6173733d2262617365223e4c75636b202d203c2f746578743e3c7465787420783d2232302220793d223133302220636c6173733d2262617365223e4c6576656c73202d203c2f746578743e3c7465787420783d2232302220793d223131302220636c6173733d2262617365223e536967696c202d20207765656b2873293c2f746578743e3c7465787420783d2232302220793d2239302220636c6173733d2262617365223e416666696e697479202d203c2f746578743e3c7465787420783d223133322220793d223237352220636c6173733d226261736522207374796c653d22666f6e742d73697a653a20313070783b206c65747465722d73706163696e673a20312e353b2066696c6c3a20707572706c65223e54686520416c6368656d69737427733c2f746578743e3c7465787420783d223131372220793d223330302220636c6173733d226261736522207374796c653d22666f6e742d73697a653a20323070783b206c65747465722d73706163696e673a20353b223e474c494d4d45523c2f746578743e3c2f7376673e3c2f746578743e3c7465787420783d2232302220793d2237302220636c6173733d2262617365223e436f6f6c646f776e202d203c2f746578743e3c7465787420783d2232302220793d223135302220636c6173733d2262617365223e41637469766174696f6e202d204142434445464748494a4b4c4d4e4f505152535455565758595a6162636465666768696a6b6c6d6e6f707172737475767778797a303132333435363738392b2f206461792873293c2f746578743e3c7465787420783d2232302220793d223137302220636c6173733d2262617365223e566f6c756d65202d203c73766720786d6c6e733d22687474703a2f2f7777772e77332e6f72672f323030302f73766722207072657365727665417370656374526174696f3d22784d696e594d696e206d656574222076696577426f783d223020302033353020333530223e3c7374796c653e2e62617365207b2066696c6c3a2077686974653b20666f6e742d66616d696c793a202248656c766574696361223b20666f6e742d73697a653a20313670783b207d3c2f7374796c653e3c646566733e3c72616469616c4772616469656e742069643d2252616469616c4772616469656e7432222063783d222d302e31222063793d222d302e312220723d22302e3835223e3c73746f70206f66667365743d22353025222073746f702d636f6c6f723d22707572706c65222f3e3c73746f70206f66667365743d2231303025222073746f702d636f6c6f723d22626c61636b222f3e3c2f72616469616c4772616469656e743e3c2f646566733e3e3c726563742077696474683d223130302522206865696768743d2231303025222066696c6c3d2275726c282352616469616c4772616469656e743229222f3e3c7465787420783d2232302220793d2233302220636c6173733d2262617365223e506f776572202d20a2646970667358221220f6c84c7a214ebeb9d719818a1726069abf27d369e038d5489bd495231842747364736f6c63430008070033

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101cf5760003560e01c80636d03f21711610104578063b88d4fde116100a2578063d4245a9411610071578063d4245a941461058a578063e985e9c5146105ba578063f2fde38b146105ea578063f43785f914610606576101cf565b8063b88d4fde146104de578063c7511545146104fa578063c83481ee1461052a578063c87b56dd1461055a576101cf565b80638da5cb5b116100de5780638da5cb5b1461045657806390ad32d41461047457806395d89b41146104a4578063a22cb465146104c2576101cf565b80636d03f217146103ec57806370a082311461041c578063715018a61461044c576101cf565b806329e203ab1161017157806342842e0e1161014b57806342842e0e14610354578063434f48c4146103705780634f6ccce71461038c5780636352211e146103bc576101cf565b806329e203ab146102d85780632f745c5914610308578063379607f514610338576101cf565b8063081812fc116101ad578063081812fc14610252578063095ea7b31461028257806318160ddd1461029e57806323b872dd146102bc576101cf565b8063017fe809146101d457806301ffc9a71461020457806306fdde0314610234575b600080fd5b6101ee60048036038101906101e9919061367e565b610636565b6040516101fb9190613c93565b60405180910390f35b61021e60048036038101906102199190613624565b610750565b60405161022b9190613c78565b60405180910390f35b61023c6107ca565b6040516102499190613c93565b60405180910390f35b61026c6004803603810190610267919061367e565b61085c565b6040516102799190613c11565b60405180910390f35b61029c600480360381019061029791906135e4565b6108e1565b005b6102a66109f9565b6040516102b39190613f15565b60405180910390f35b6102d660048036038101906102d191906134ce565b610a06565b005b6102f260048036038101906102ed919061367e565b610a66565b6040516102ff9190613c93565b60405180910390f35b610322600480360381019061031d91906135e4565b610b80565b60405161032f9190613f15565b60405180910390f35b610352600480360381019061034d919061367e565b610c25565b005b61036e600480360381019061036991906134ce565b610cdf565b005b61038a6004803603810190610385919061367e565b610cff565b005b6103a660048036038101906103a1919061367e565b610e36565b6040516103b39190613f15565b60405180910390f35b6103d660048036038101906103d1919061367e565b610ea7565b6040516103e39190613c11565b60405180910390f35b6104066004803603810190610401919061367e565b610f59565b6040516104139190613c93565b60405180910390f35b61043660048036038101906104319190613461565b611073565b6040516104439190613f15565b60405180910390f35b61045461112b565b005b61045e6111b3565b60405161046b9190613c11565b60405180910390f35b61048e6004803603810190610489919061367e565b6111dd565b60405161049b9190613c93565b60405180910390f35b6104ac6112f7565b6040516104b99190613c93565b60405180910390f35b6104dc60048036038101906104d791906135a4565b611389565b005b6104f860048036038101906104f39190613521565b61150a565b005b610514600480360381019061050f919061367e565b61156c565b6040516105219190613c93565b60405180910390f35b610544600480360381019061053f919061367e565b611686565b6040516105519190613c93565b60405180910390f35b610574600480360381019061056f919061367e565b6117a0565b6040516105819190613c93565b60405180910390f35b6105a4600480360381019061059f919061367e565b611d1c565b6040516105b19190613c93565b60405180910390f35b6105d460048036038101906105cf919061348e565b611e36565b6040516105e19190613c78565b60405180910390f35b61060460048036038101906105ff9190613461565b611eca565b005b610620600480360381019061061b919061367e565b611fc2565b60405161062d9190613c93565b60405180910390f35b6060610749826040518060400160405280600581526020017f504f574552000000000000000000000000000000000000000000000000000000815250600c805480602002602001604051908101604052809291908181526020016000905b828210156107405783829060005260206000200180546106b390614194565b80601f01602080910402602001604051908101604052809291908181526020018280546106df90614194565b801561072c5780601f106107015761010080835404028352916020019161072c565b820191906000526020600020905b81548152906001019060200180831161070f57829003601f168201915b505050505081526020019060010190610694565b505050506120dc565b9050919050565b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806107c357506107c28261214f565b5b9050919050565b6060600080546107d990614194565b80601f016020809104026020016040519081016040528092919081815260200182805461080590614194565b80156108525780601f1061082757610100808354040283529160200191610852565b820191906000526020600020905b81548152906001019060200180831161083557829003601f168201915b5050505050905090565b600061086782612231565b6108a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161089d90613e15565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006108ec82610ea7565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561095d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161095490613e95565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1661097c61229d565b73ffffffffffffffffffffffffffffffffffffffff1614806109ab57506109aa816109a561229d565b611e36565b5b6109ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109e190613d95565b60405180910390fd5b6109f483836122a5565b505050565b6000600880549050905090565b610a17610a1161229d565b8261235e565b610a56576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a4d90613eb5565b60405180910390fd5b610a6183838361243c565b505050565b6060610b79826040518060400160405280600881526020017f434f4f4c444f574e000000000000000000000000000000000000000000000000815250600e805480602002602001604051908101604052809291908181526020016000905b82821015610b70578382906000526020600020018054610ae390614194565b80601f0160208091040260200160405190810160405280929190818152602001828054610b0f90614194565b8015610b5c5780601f10610b3157610100808354040283529160200191610b5c565b820191906000526020600020905b815481529060010190602001808311610b3f57829003601f168201915b505050505081526020019060010190610ac4565b505050506120dc565b9050919050565b6000610b8b83611073565b8210610bcc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bc390613cb5565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b6002600a541415610c6b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c6290613ef5565b60405180910390fd5b6002600a81905550600081118015610c84575061169281105b610cc3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cba90613e55565b60405180910390fd5b610cd4610cce61229d565b82612698565b6001600a8190555050565b610cfa8383836040518060200160405280600081525061150a565b505050565b6002600a541415610d45576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d3c90613ef5565b60405180910390fd5b6002600a81905550610d5561229d565b73ffffffffffffffffffffffffffffffffffffffff16610d736111b3565b73ffffffffffffffffffffffffffffffffffffffff1614610dc9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dc090613e35565b60405180910390fd5b61169181118015610ddb575061177181105b610e1a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e1190613e55565b60405180910390fd5b610e2b610e256111b3565b82612698565b6001600a8190555050565b6000610e406109f9565b8210610e81576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e7890613ed5565b60405180910390fd5b60088281548110610e9557610e9461435b565b5b90600052602060002001549050919050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610f50576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f4790613dd5565b60405180910390fd5b80915050919050565b606061106c826040518060400160405280600881526020017f414646494e495459000000000000000000000000000000000000000000000000815250600f805480602002602001604051908101604052809291908181526020016000905b82821015611063578382906000526020600020018054610fd690614194565b80601f016020809104026020016040519081016040528092919081815260200182805461100290614194565b801561104f5780601f106110245761010080835404028352916020019161104f565b820191906000526020600020905b81548152906001019060200180831161103257829003601f168201915b505050505081526020019060010190610fb7565b505050506120dc565b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156110e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110db90613db5565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61113361229d565b73ffffffffffffffffffffffffffffffffffffffff166111516111b3565b73ffffffffffffffffffffffffffffffffffffffff16146111a7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161119e90613e35565b60405180910390fd5b6111b160006126b6565b565b6000600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606112f0826040518060400160405280600581526020017f534947494c0000000000000000000000000000000000000000000000000000008152506010805480602002602001604051908101604052809291908181526020016000905b828210156112e757838290600052602060002001805461125a90614194565b80601f016020809104026020016040519081016040528092919081815260200182805461128690614194565b80156112d35780601f106112a8576101008083540402835291602001916112d3565b820191906000526020600020905b8154815290600101906020018083116112b657829003601f168201915b50505050508152602001906001019061123b565b505050506120dc565b9050919050565b60606001805461130690614194565b80601f016020809104026020016040519081016040528092919081815260200182805461133290614194565b801561137f5780601f106113545761010080835404028352916020019161137f565b820191906000526020600020905b81548152906001019060200180831161136257829003601f168201915b5050505050905090565b61139161229d565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156113ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113f690613d55565b60405180910390fd5b806005600061140c61229d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166114b961229d565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516114fe9190613c78565b60405180910390a35050565b61151b61151561229d565b8361235e565b61155a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161155190613eb5565b60405180910390fd5b6115668484848461277c565b50505050565b606061167f826040518060400160405280600481526020017f4c55434b00000000000000000000000000000000000000000000000000000000815250600d805480602002602001604051908101604052809291908181526020016000905b828210156116765783829060005260206000200180546115e990614194565b80601f016020809104026020016040519081016040528092919081815260200182805461161590614194565b80156116625780601f1061163757610100808354040283529160200191611662565b820191906000526020600020905b81548152906001019060200180831161164557829003601f168201915b5050505050815260200190600101906115ca565b505050506120dc565b9050919050565b6060611799826040518060400160405280600681526020017f564f4c554d4500000000000000000000000000000000000000000000000000008152506013805480602002602001604051908101604052809291908181526020016000905b8282101561179057838290600052602060002001805461170390614194565b80601f016020809104026020016040519081016040528092919081815260200182805461172f90614194565b801561177c5780601f106117515761010080835404028352916020019161177c565b820191906000526020600020905b81548152906001019060200180831161175f57829003601f168201915b5050505050815260200190600101906116e4565b505050506120dc565b9050919050565b60606117aa613360565b6040518061020001604052806101cb8152602001614d306101cb9139816000601181106117da576117d961435b565b5b60200201819052506117eb83610636565b816001601181106117ff576117fe61435b565b5b60200201819052506040518060600160405280602f8152602001614aa3602f9139816002601181106118345761183361435b565b5b60200201819052506118458361156c565b816003601181106118595761185861435b565b5b6020020181905250604051806060016040528060338152602001614c4e603391398160046011811061188e5761188d61435b565b5b602002018190525061189f83610a66565b816005601181106118b3576118b261435b565b5b60200201819052506040518060600160405280603b8152602001614b35603b9139816006601181106118e8576118e761435b565b5b60200201819052506118f983610f59565b8160076011811061190d5761190c61435b565b5b6020020181905250604051806060016040528060318152602001614b0460319139816008601181106119425761194161435b565b5b6020020181905250611953836111dd565b816009601181106119675761196661435b565b5b6020020181905250604051806060016040528060328152602001614ad26032913981600a6011811061199c5761199b61435b565b5b60200201819052506119ad83611fc2565b81600b601181106119c1576119c061435b565b5b6020020181905250604051806060016040528060368152602001614c816036913981600c601181106119f6576119f561435b565b5b6020020181905250611a0783611d1c565b81600d60118110611a1b57611a1a61435b565b5b6020020181905250604051806060016040528060398152602001614cf76039913981600e60118110611a5057611a4f61435b565b5b6020020181905250611a6183611686565b81600f60118110611a7557611a7461435b565b5b602002018190525060405180610100016040528060de8152602001614b7060de913981601060118110611aab57611aaa61435b565b5b6020020181905250600081600060118110611ac957611ac861435b565b5b602002015182600160118110611ae257611ae161435b565b5b602002015183600260118110611afb57611afa61435b565b5b602002015184600360118110611b1457611b1361435b565b5b602002015185600460118110611b2d57611b2c61435b565b5b602002015186600560118110611b4657611b4561435b565b5b602002015187600660118110611b5f57611b5e61435b565b5b602002015188600760118110611b7857611b7761435b565b5b602002015189600860118110611b9157611b9061435b565b5b6020020151604051602001611bae99989796959493929190613b2b565b60405160208183030381529060405290508082600960118110611bd457611bd361435b565b5b602002015183600a60118110611bed57611bec61435b565b5b602002015184600b60118110611c0657611c0561435b565b5b602002015185600c60118110611c1f57611c1e61435b565b5b602002015186600d60118110611c3857611c3761435b565b5b602002015187600e60118110611c5157611c5061435b565b5b602002015188600f60118110611c6a57611c6961435b565b5b602002015189601060118110611c8357611c8261435b565b5b6020020151604051602001611ca099989796959493929190613b2b565b60405160208183030381529060405290506000611ced611cbf866127d8565b611cc884612939565b604051602001611cd9929190613baa565b604051602081830303815290604052612939565b905080604051602001611d009190613bef565b6040516020818303038152906040529150819350505050919050565b6060611e2f826040518060400160405280600a81526020017f41435449564154494f4e000000000000000000000000000000000000000000008152506012805480602002602001604051908101604052809291908181526020016000905b82821015611e26578382906000526020600020018054611d9990614194565b80601f0160208091040260200160405190810160405280929190818152602001828054611dc590614194565b8015611e125780601f10611de757610100808354040283529160200191611e12565b820191906000526020600020905b815481529060010190602001808311611df557829003601f168201915b505050505081526020019060010190611d7a565b505050506120dc565b9050919050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611ed261229d565b73ffffffffffffffffffffffffffffffffffffffff16611ef06111b3565b73ffffffffffffffffffffffffffffffffffffffff1614611f46576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f3d90613e35565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611fb6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fad90613cf5565b60405180910390fd5b611fbf816126b6565b50565b60606120d5826040518060400160405280600681526020017f4c4556454c5300000000000000000000000000000000000000000000000000008152506011805480602002602001604051908101604052809291908181526020016000905b828210156120cc57838290600052602060002001805461203f90614194565b80601f016020809104026020016040519081016040528092919081815260200182805461206b90614194565b80156120b85780601f1061208d576101008083540402835291602001916120b8565b820191906000526020600020905b81548152906001019060200180831161209b57829003601f168201915b505050505081526020019060010190612020565b505050506120dc565b9050919050565b60606000612116846120ed876127d8565b333a6040516020016121029493929190613ae5565b604051602081830303815290604052612ad1565b9050600083845183612128919061426e565b815181106121395761213861435b565b5b6020026020010151905080925050509392505050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061221a57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061222a575061222982612b04565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661231883610ea7565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600061236982612231565b6123a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161239f90613d75565b60405180910390fd5b60006123b383610ea7565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061242257508373ffffffffffffffffffffffffffffffffffffffff1661240a8461085c565b73ffffffffffffffffffffffffffffffffffffffff16145b8061243357506124328185611e36565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661245c82610ea7565b73ffffffffffffffffffffffffffffffffffffffff16146124b2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124a990613e75565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612522576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161251990613d35565b60405180910390fd5b61252d838383612b6e565b6125386000826122a5565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461258891906140aa565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546125df9190613fc9565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6126b2828260405180602001604052806000815250612c82565b5050565b6000600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b61278784848461243c565b61279384848484612cdd565b6127d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127c990613cd5565b60405180910390fd5b50505050565b60606000821415612820576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612934565b600082905060005b6000821461285257808061283b906141f7565b915050600a8261284b919061401f565b9150612828565b60008167ffffffffffffffff81111561286e5761286d61438a565b5b6040519080825280601f01601f1916602001820160405280156128a05781602001600182028036833780820191505090505b5090505b6000851461292d576001826128b991906140aa565b9150600a856128c8919061426e565b60306128d49190613fc9565b60f81b8183815181106128ea576128e961435b565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612926919061401f565b94506128a4565b8093505050505b919050565b606060008251905060008114156129625760405180602001604052806000815250915050612acc565b600060036002836129739190613fc9565b61297d919061401f565b60046129899190614050565b9050600060208261299a9190613fc9565b67ffffffffffffffff8111156129b3576129b261438a565b5b6040519080825280601f01601f1916602001820160405280156129e55781602001600182028036833780820191505090505b5090506000604051806060016040528060408152602001614cb7604091399050600181016020830160005b86811015612a895760038101905062ffffff818a015116603f8160121c168401518060081b905060ff603f83600c1c1686015116810190508060081b905060ff603f8360061c1686015116810190508060081b905060ff603f831686015116810190508060e01b90508084526004840193505050612a10565b506003860660018114612aa35760028114612ab357612abe565b613d3d60f01b6002830352612abe565b603d60f81b60018303525b508484525050819450505050505b919050565b600081604051602001612ae49190613ace565b6040516020818303038152906040528051906020012060001c9050919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b612b79838383612e74565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612bbc57612bb781612e79565b612bfb565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614612bfa57612bf98382612ec2565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612c3e57612c398161302f565b612c7d565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614612c7c57612c7b8282613100565b5b5b505050565b612c8c838361317f565b612c996000848484612cdd565b612cd8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ccf90613cd5565b60405180910390fd5b505050565b6000612cfe8473ffffffffffffffffffffffffffffffffffffffff1661334d565b15612e67578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612d2761229d565b8786866040518563ffffffff1660e01b8152600401612d499493929190613c2c565b602060405180830381600087803b158015612d6357600080fd5b505af1925050508015612d9457506040513d601f19601f82011682018060405250810190612d919190613651565b60015b612e17573d8060008114612dc4576040519150601f19603f3d011682016040523d82523d6000602084013e612dc9565b606091505b50600081511415612e0f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e0690613cd5565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612e6c565b600190505b949350505050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b60006001612ecf84611073565b612ed991906140aa565b9050600060076000848152602001908152602001600020549050818114612fbe576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b6000600160088054905061304391906140aa565b90506000600960008481526020019081526020016000205490506000600883815481106130735761307261435b565b5b9060005260206000200154905080600883815481106130955761309461435b565b5b9060005260206000200181905550816009600083815260200190815260200160002081905550600960008581526020019081526020016000206000905560088054806130e4576130e361432c565b5b6001900381819060005260206000200160009055905550505050565b600061310b83611073565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156131ef576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131e690613df5565b60405180910390fd5b6131f881612231565b15613238576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161322f90613d15565b60405180910390fd5b61324460008383612b6e565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546132949190613fc9565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b6040518061022001604052806011905b60608152602001906001900390816133705790505090565b600061339b61339684613f55565b613f30565b9050828152602081018484840111156133b7576133b66143be565b5b6133c2848285614152565b509392505050565b6000813590506133d981614a46565b92915050565b6000813590506133ee81614a5d565b92915050565b60008135905061340381614a74565b92915050565b60008151905061341881614a74565b92915050565b600082601f830112613433576134326143b9565b5b8135613443848260208601613388565b91505092915050565b60008135905061345b81614a8b565b92915050565b600060208284031215613477576134766143c8565b5b6000613485848285016133ca565b91505092915050565b600080604083850312156134a5576134a46143c8565b5b60006134b3858286016133ca565b92505060206134c4858286016133ca565b9150509250929050565b6000806000606084860312156134e7576134e66143c8565b5b60006134f5868287016133ca565b9350506020613506868287016133ca565b92505060406135178682870161344c565b9150509250925092565b6000806000806080858703121561353b5761353a6143c8565b5b6000613549878288016133ca565b945050602061355a878288016133ca565b935050604061356b8782880161344c565b925050606085013567ffffffffffffffff81111561358c5761358b6143c3565b5b6135988782880161341e565b91505092959194509250565b600080604083850312156135bb576135ba6143c8565b5b60006135c9858286016133ca565b92505060206135da858286016133df565b9150509250929050565b600080604083850312156135fb576135fa6143c8565b5b6000613609858286016133ca565b925050602061361a8582860161344c565b9150509250929050565b60006020828403121561363a576136396143c8565b5b6000613648848285016133f4565b91505092915050565b600060208284031215613667576136666143c8565b5b600061367584828501613409565b91505092915050565b600060208284031215613694576136936143c8565b5b60006136a28482850161344c565b91505092915050565b6136b4816140de565b82525050565b6136cb6136c6826140de565b614240565b82525050565b6136da816140f0565b82525050565b60006136eb82613f86565b6136f58185613f9c565b9350613705818560208601614161565b61370e816143cd565b840191505092915050565b600061372482613f91565b61372e8185613fad565b935061373e818560208601614161565b613747816143cd565b840191505092915050565b600061375d82613f91565b6137678185613fbe565b9350613777818560208601614161565b80840191505092915050565b6000613790602b83613fad565b915061379b826143eb565b604082019050919050565b60006137b3603283613fad565b91506137be8261443a565b604082019050919050565b60006137d6602683613fad565b91506137e182614489565b604082019050919050565b60006137f9601c83613fad565b9150613804826144d8565b602082019050919050565b600061381c602483613fad565b915061382782614501565b604082019050919050565b600061383f601983613fad565b915061384a82614550565b602082019050919050565b6000613862602c83613fad565b915061386d82614579565b604082019050919050565b6000613885603883613fad565b9150613890826145c8565b604082019050919050565b60006138a8602a83613fad565b91506138b382614617565b604082019050919050565b60006138cb602983613fad565b91506138d682614666565b604082019050919050565b60006138ee600283613fbe565b91506138f9826146b5565b600282019050919050565b6000613911602083613fad565b915061391c826146de565b602082019050919050565b6000613934602c83613fad565b915061393f82614707565b604082019050919050565b6000613957602083613fad565b915061396282614756565b602082019050919050565b600061397a601083613fad565b91506139858261477f565b602082019050919050565b600061399d60ac83613fbe565b91506139a8826147a8565b60ac82019050919050565b60006139c0602983613fad565b91506139cb8261488f565b604082019050919050565b60006139e3601283613fbe565b91506139ee826148de565b601282019050919050565b6000613a06602183613fad565b9150613a1182614907565b604082019050919050565b6000613a29601d83613fbe565b9150613a3482614956565b601d82019050919050565b6000613a4c603183613fad565b9150613a578261497f565b604082019050919050565b6000613a6f602c83613fad565b9150613a7a826149ce565b604082019050919050565b6000613a92601f83613fad565b9150613a9d82614a1d565b602082019050919050565b613ab181614148565b82525050565b613ac8613ac382614148565b614264565b82525050565b6000613ada8284613752565b915081905092915050565b6000613af18287613752565b9150613afd8286613752565b9150613b0982856136ba565b601482019150613b198284613ab7565b60208201915081905095945050505050565b6000613b37828c613752565b9150613b43828b613752565b9150613b4f828a613752565b9150613b5b8289613752565b9150613b678288613752565b9150613b738287613752565b9150613b7f8286613752565b9150613b8b8285613752565b9150613b978284613752565b91508190509a9950505050505050505050565b6000613bb5826139d6565b9150613bc18285613752565b9150613bcc82613990565b9150613bd88284613752565b9150613be3826138e1565b91508190509392505050565b6000613bfa82613a1c565b9150613c068284613752565b915081905092915050565b6000602082019050613c2660008301846136ab565b92915050565b6000608082019050613c4160008301876136ab565b613c4e60208301866136ab565b613c5b6040830185613aa8565b8181036060830152613c6d81846136e0565b905095945050505050565b6000602082019050613c8d60008301846136d1565b92915050565b60006020820190508181036000830152613cad8184613719565b905092915050565b60006020820190508181036000830152613cce81613783565b9050919050565b60006020820190508181036000830152613cee816137a6565b9050919050565b60006020820190508181036000830152613d0e816137c9565b9050919050565b60006020820190508181036000830152613d2e816137ec565b9050919050565b60006020820190508181036000830152613d4e8161380f565b9050919050565b60006020820190508181036000830152613d6e81613832565b9050919050565b60006020820190508181036000830152613d8e81613855565b9050919050565b60006020820190508181036000830152613dae81613878565b9050919050565b60006020820190508181036000830152613dce8161389b565b9050919050565b60006020820190508181036000830152613dee816138be565b9050919050565b60006020820190508181036000830152613e0e81613904565b9050919050565b60006020820190508181036000830152613e2e81613927565b9050919050565b60006020820190508181036000830152613e4e8161394a565b9050919050565b60006020820190508181036000830152613e6e8161396d565b9050919050565b60006020820190508181036000830152613e8e816139b3565b9050919050565b60006020820190508181036000830152613eae816139f9565b9050919050565b60006020820190508181036000830152613ece81613a3f565b9050919050565b60006020820190508181036000830152613eee81613a62565b9050919050565b60006020820190508181036000830152613f0e81613a85565b9050919050565b6000602082019050613f2a6000830184613aa8565b92915050565b6000613f3a613f4b565b9050613f4682826141c6565b919050565b6000604051905090565b600067ffffffffffffffff821115613f7057613f6f61438a565b5b613f79826143cd565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000613fd482614148565b9150613fdf83614148565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156140145761401361429f565b5b828201905092915050565b600061402a82614148565b915061403583614148565b925082614045576140446142ce565b5b828204905092915050565b600061405b82614148565b915061406683614148565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561409f5761409e61429f565b5b828202905092915050565b60006140b582614148565b91506140c083614148565b9250828210156140d3576140d261429f565b5b828203905092915050565b60006140e982614128565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561417f578082015181840152602081019050614164565b8381111561418e576000848401525b50505050565b600060028204905060018216806141ac57607f821691505b602082108114156141c0576141bf6142fd565b5b50919050565b6141cf826143cd565b810181811067ffffffffffffffff821117156141ee576141ed61438a565b5b80604052505050565b600061420282614148565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156142355761423461429f565b5b600182019050919050565b600061424b82614252565b9050919050565b600061425d826143de565b9050919050565b6000819050919050565b600061427982614148565b915061428483614148565b925082614294576142936142ce565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f227d000000000000000000000000000000000000000000000000000000000000600082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f546f6b656e20494420696e76616c696400000000000000000000000000000000600082015250565b7f222c20226465736372697074696f6e223a20225768792068656c6c6f2074686560008201527f72652c204d6f6f6e20426f792e204974207365656d73207468617420796f752060208201527f6861766520666f756e64206d7920476c696d6d65722e222c202265787465726e60408201527f616c5f75726c223a202268747470733a2f2f7777772e72697475616c6d696c6c60608201527f2e636f6d2f222c2022696d616765223a2022646174613a696d6167652f73766760808201527f2b786d6c3b6261736536342c000000000000000000000000000000000000000060a082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f7b226e616d65223a20224f626a65637420230000000000000000000000000000600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f646174613a6170706c69636174696f6e2f6a736f6e3b6261736536342c000000600082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b614a4f816140de565b8114614a5a57600080fd5b50565b614a66816140f0565b8114614a7157600080fd5b50565b614a7d816140fc565b8114614a8857600080fd5b50565b614a9481614148565b8114614a9f57600080fd5b5056fe3c2f746578743e3c7465787420783d2232302220793d2235302220636c6173733d2262617365223e4c75636b202d203c2f746578743e3c7465787420783d2232302220793d223133302220636c6173733d2262617365223e4c6576656c73202d203c2f746578743e3c7465787420783d2232302220793d223131302220636c6173733d2262617365223e536967696c202d20207765656b2873293c2f746578743e3c7465787420783d2232302220793d2239302220636c6173733d2262617365223e416666696e697479202d203c2f746578743e3c7465787420783d223133322220793d223237352220636c6173733d226261736522207374796c653d22666f6e742d73697a653a20313070783b206c65747465722d73706163696e673a20312e353b2066696c6c3a20707572706c65223e54686520416c6368656d69737427733c2f746578743e3c7465787420783d223131372220793d223330302220636c6173733d226261736522207374796c653d22666f6e742d73697a653a20323070783b206c65747465722d73706163696e673a20353b223e474c494d4d45523c2f746578743e3c2f7376673e3c2f746578743e3c7465787420783d2232302220793d2237302220636c6173733d2262617365223e436f6f6c646f776e202d203c2f746578743e3c7465787420783d2232302220793d223135302220636c6173733d2262617365223e41637469766174696f6e202d204142434445464748494a4b4c4d4e4f505152535455565758595a6162636465666768696a6b6c6d6e6f707172737475767778797a303132333435363738392b2f206461792873293c2f746578743e3c7465787420783d2232302220793d223137302220636c6173733d2262617365223e566f6c756d65202d203c73766720786d6c6e733d22687474703a2f2f7777772e77332e6f72672f323030302f73766722207072657365727665417370656374526174696f3d22784d696e594d696e206d656574222076696577426f783d223020302033353020333530223e3c7374796c653e2e62617365207b2066696c6c3a2077686974653b20666f6e742d66616d696c793a202248656c766574696361223b20666f6e742d73697a653a20313670783b207d3c2f7374796c653e3c646566733e3c72616469616c4772616469656e742069643d2252616469616c4772616469656e7432222063783d222d302e31222063793d222d302e312220723d22302e3835223e3c73746f70206f66667365743d22353025222073746f702d636f6c6f723d22707572706c65222f3e3c73746f70206f66667365743d2231303025222073746f702d636f6c6f723d22626c61636b222f3e3c2f72616469616c4772616469656e743e3c2f646566733e3e3c726563742077696474683d223130302522206865696768743d2231303025222066696c6c3d2275726c282352616469616c4772616469656e743229222f3e3c7465787420783d2232302220793d2233302220636c6173733d2262617365223e506f776572202d20a2646970667358221220f6c84c7a214ebeb9d719818a1726069abf27d369e038d5489bd495231842747364736f6c63430008070033

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.