ETH Price: $3,408.31 (-1.06%)
Gas: 3 Gwei

Token

InteractiveFlow (INTERACTIVEFLOW)
 

Overview

Max Total Supply

203 INTERACTIVEFLOW

Holders

149

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 INTERACTIVEFLOW
0xbf8115178498500781a21161c90307e158f6722f
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:
InteractiveFlow

Compiler Version
v0.8.9+commit.e5eed63a

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 13 : InteractiveFlow.sol
pragma solidity ^0.8.0;

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

//   THIS IS A                                        
//   ██████╗  █████╗ ███████╗███████╗ ██████╗ ██╗  ██╗
//   ██╔══██╗██╔══██╗██╔════╝██╔════╝██╔════╝ ██║  ██║
//   ██████╔╝███████║███████╗█████╗  ███████╗ ███████║
//   ██╔══██╗██╔══██║╚════██║██╔══╝  ██╔═══██╗╚════██║
//   ██████╔╝██║  ██║███████║███████╗╚██████╔╝     ██║
//   ╚═════╝ ╚═╝  ╚═╝╚══════╝╚══════╝ ╚═════╝      ╚═╝
//                                          PRODUCTION 
//                                  http://base64.tech
contract InteractiveFlow is ERC721Enumerable, Ownable {
   
    uint256 constant public MAX_SUPPLY = 1000;
    uint256 constant public FREE_MINT_MAX_SUPPLY = 100;
    uint256 constant public TOKEN_PRICE = 0.05 ether;
    uint256 constant public MAX_TOKENS_PURCHASE = 3;
    uint256 constant public MAX_FREE_MINTS_PER_WALLET = 1;
    uint256 constant public c3VwZXJTcGVjaWFs_MINT_MAX_SUPPLY = 4;

    address constant DOTDOTDOT_CONTRACT = 0xcE25E60A89F200B1fA40f6c313047FFe386992c3;
    address constant BRUSHSTROKES_CONTRACT = 0xc789858e3b777aa6b7B209921d9368C4E898167e;
    address constant DOJI_CONTRACT = 0x5e9dC633830Af18AA43dDB7B042646AADEDCCe81;

    bool public mintIsActive = false;
    uint256 public freeMintCount = 0;
    uint256 public c3VwZXJTcGVjaWFsMintCount = 0;
    string public animationSourceCode; 

    IERC721 public dotdotdotContract;
    IERC721 public brushstrokesContract;
    IERC721 public dojiContract;
    IERC721 public c3VwZXJTcGVjaWFsMintKeyContract;
    
    mapping(uint256 => bytes32) public mintIndexToHash;
    mapping(address => uint256) public walletToFreeMintCount;

    event tokenIndexHash(uint256 indexed mintIndex, bytes32 indexed tokenHash);    
    event c3VwZXJTcGVjaWFsIndex(uint256 indexed mintIndex); 

    string private _tokenBaseURI;


    constructor() ERC721("InteractiveFlow", "INTERACTIVEFLOW") {
        dotdotdotContract = IERC721(DOTDOTDOT_CONTRACT);
        brushstrokesContract = IERC721(BRUSHSTROKES_CONTRACT);
        dojiContract = IERC721(DOJI_CONTRACT);
    }
    
    function setAnimationSourceCode(string memory sourceCode) public onlyOwner {
        animationSourceCode = sourceCode;
    }

    function flipMintState() public onlyOwner {
        mintIsActive = !mintIsActive;
    }

    function ownerMint(uint256 numberOfTokens) public onlyOwner {
        require(totalSupply() + numberOfTokens <= MAX_SUPPLY, "Not enough tokens left to mint this many");
        
        for (uint256 i = 0; i < numberOfTokens; i++) {
            uint256 mintIndex = totalSupply();
            setMintIndexToHash(mintIndex);
            _safeMint(msg.sender, mintIndex);
        }
    }

    function setMintIndexToHash(uint256 mintIndex) internal {
        bytes32 hash = keccak256(abi.encodePacked(block.number, block.timestamp, msg.sender, mintIndex));
        mintIndexToHash[mintIndex]=hash;
        emit tokenIndexHash(mintIndex, hash);
    }

    function withdraw() public onlyOwner {
        uint balance = address(this).balance;
        payable(msg.sender).transfer(balance);
    }

    function mint(uint256 numberOfTokens) public payable {
        require(mintIsActive, "Mint is not active.");
        require(totalSupply() + numberOfTokens <= MAX_SUPPLY-4+c3VwZXJTcGVjaWFsMintCount, "Not enough tokens left to mint this many");
        require(numberOfTokens <= MAX_TOKENS_PURCHASE, "You went over max tokens per transaction.");
        require(TOKEN_PRICE * numberOfTokens <= msg.value, "You sent the incorrect amount of ETH.");

        for (uint256 i = 0; i < numberOfTokens; i++) {
            uint256 mintIndex = totalSupply();
            setMintIndexToHash(mintIndex);
            _safeMint(msg.sender, mintIndex);
        }
    }

    function freeMint() public {
        require(mintIsActive, "Mint is not active.");
        require(totalSupply() + 1 <= MAX_SUPPLY-4+c3VwZXJTcGVjaWFsMintCount, "No tokens left to mint");
        require(freeMintCount < FREE_MINT_MAX_SUPPLY, "No more free mints available");
        require(walletToFreeMintCount[msg.sender] < MAX_FREE_MINTS_PER_WALLET, "You have already minted max number of free mints");
        require(dotdotdotContract.balanceOf(msg.sender) > 0 || brushstrokesContract.balanceOf(msg.sender) > 0 || dojiContract.balanceOf(msg.sender) > 0, "Your wallet does not hold DotDotDots, 0xCulture Brushtrokes, or DojiCrew NFTs");

        uint256 mintIndex = totalSupply();
        setMintIndexToHash(totalSupply());
        walletToFreeMintCount[msg.sender] = walletToFreeMintCount[msg.sender] + 1;
        freeMintCount++;
        _safeMint(msg.sender, mintIndex);
    }

    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token");
      
        string memory base = _tokenBaseURI;
        return string(abi.encodePacked(base,Strings.toString(tokenId)));
    }
    
    function setBaseURI(string memory baseURI) external onlyOwner {
        _tokenBaseURI = baseURI;
    }

    //Rm9yIG1vcmUgaW5mb3JtYXRpb24gYWJvdXQgd2hhdCB0aGlzIGZ1bmN0aW9uIGlzIGZvciwgam9pbiB0aGUgI2ludGVyYWN0aXZlZmxvdyBjaGFubmVsIGluIG91ciBkaXNjb3JkLiBMaW5rIGZvciBkaXNjb3JkIGNhbiBiZSBmb3VuZCBoZXJlIGh0dHA6Ly9pbnRlcmFjdGl2ZWZsb3cuYmFzZTY0LnRlY2g=
    function c3VwZXJTcGVjaWFsMint() public {
        require(totalSupply() >= 250, "c3VwZXJTcGVjaWFs mint not available yet");
        require(totalSupply() + 1 <= MAX_SUPPLY, "Not enough tokens left to mint this many");
        require(c3VwZXJTcGVjaWFsMintCount < c3VwZXJTcGVjaWFs_MINT_MAX_SUPPLY, "No more c3VwZXJTcGVjaWFs mints available");
        require(c3VwZXJTcGVjaWFsMintKeyContract.ownerOf(c3VwZXJTcGVjaWFsMintCount) == msg.sender,  "Your wallet does not hold the key to performing a c3VwZXJTcGVjaWFsMint");
 
        uint256 mintIndex = totalSupply();
        c3VwZXJTcGVjaWFsMintCount++;
        _safeMint(msg.sender, mintIndex);
        emit c3VwZXJTcGVjaWFsIndex(mintIndex);
    }

    function setc3VwZXJTcGVjaWFsKeyNFTContract(address contractAddress) public onlyOwner {
        c3VwZXJTcGVjaWFsMintKeyContract = IERC721(contractAddress);
    }
}

File 2 of 13 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (access/Ownable.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Internal function without access restriction.
     */
    function _transferOwnership(address newOwner) internal virtual {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

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

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

pragma solidity ^0.8.0;

/**
 * @dev Provides information about the current execution context, including the
 * sender of the transaction and its data. While these are generally available
 * via msg.sender and msg.data, they should not be accessed in such a direct
 * manner, since when dealing with meta-transactions the account sending and
 * paying for execution may not be the actual sender (as far as an application
 * is concerned).
 *
 * This contract is only required for intermediate, library-like contracts.
 */
abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

    function _msgData() internal view virtual returns (bytes calldata) {
        return msg.data;
    }
}

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

pragma solidity ^0.8.0;

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

pragma solidity ^0.8.0;

import "../IERC721.sol";

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

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

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

File 10 of 13 : Address.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Address.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

File 11 of 13 : Strings.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Strings.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

File 12 of 13 : ERC165.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol)

pragma solidity ^0.8.0;

import "./IERC165.sol";

/**
 * @dev Implementation of the {IERC165} interface.
 *
 * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check
 * for the additional interface id that will be supported. For example:
 *
 * ```solidity
 * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
 *     return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId);
 * }
 * ```
 *
 * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation.
 */
abstract contract ERC165 is IERC165 {
    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        return interfaceId == type(IERC165).interfaceId;
    }
}

File 13 of 13 : IERC165.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC165 standard, as defined in the
 * https://eips.ethereum.org/EIPS/eip-165[EIP].
 *
 * Implementers can declare support of contract interfaces, which can then be
 * queried by others ({ERC165Checker}).
 *
 * For an implementation, see {ERC165}.
 */
interface IERC165 {
    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section]
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30 000 gas.
     */
    function supportsInterface(bytes4 interfaceId) external view returns (bool);
}

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":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"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"mintIndex","type":"uint256"}],"name":"c3VwZXJTcGVjaWFsIndex","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"mintIndex","type":"uint256"},{"indexed":true,"internalType":"bytes32","name":"tokenHash","type":"bytes32"}],"name":"tokenIndexHash","type":"event"},{"inputs":[],"name":"FREE_MINT_MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_FREE_MINTS_PER_WALLET","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_TOKENS_PURCHASE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"TOKEN_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"animationSourceCode","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"brushstrokesContract","outputs":[{"internalType":"contract IERC721","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"c3VwZXJTcGVjaWFsMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"c3VwZXJTcGVjaWFsMintCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"c3VwZXJTcGVjaWFsMintKeyContract","outputs":[{"internalType":"contract IERC721","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"c3VwZXJTcGVjaWFs_MINT_MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"dojiContract","outputs":[{"internalType":"contract IERC721","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"dotdotdotContract","outputs":[{"internalType":"contract IERC721","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"flipMintState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"freeMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"freeMintCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfTokens","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"mintIndexToHash","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mintIsActive","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":"numberOfTokens","type":"uint256"}],"name":"ownerMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"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":"string","name":"sourceCode","type":"string"}],"name":"setAnimationSourceCode","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"contractAddress","type":"address"}],"name":"setc3VwZXJTcGVjaWFsKeyNFTContract","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"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"walletToFreeMintCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526000600a60146101000a81548160ff0219169083151502179055506000600b556000600c553480156200003657600080fd5b506040518060400160405280600f81526020017f496e746572616374697665466c6f7700000000000000000000000000000000008152506040518060400160405280600f81526020017f494e544552414354495645464c4f5700000000000000000000000000000000008152508160009080519060200190620000bb929190620002ca565b508060019080519060200190620000d4929190620002ca565b505050620000f7620000eb620001fc60201b60201c565b6200020460201b60201c565b73ce25e60a89f200b1fa40f6c313047ffe386992c3600e60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555073c789858e3b777aa6b7b209921d9368c4e898167e600f60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550735e9dc633830af18aa43ddb7b042646aadedcce81601060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550620003df565b600033905090565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620002d890620003a9565b90600052602060002090601f016020900481019282620002fc576000855562000348565b82601f106200031757805160ff191683800117855562000348565b8280016001018555821562000348579182015b82811115620003475782518255916020019190600101906200032a565b5b5090506200035791906200035b565b5090565b5b80821115620003765760008160009055506001016200035c565b5090565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620003c257607f821691505b60208210811415620003d957620003d86200037a565b5b50919050565b61521480620003ef6000396000f3fe6080604052600436106102675760003560e01c806355f804b311610144578063a22cb465116100b6578063d2d8cb671161007a578063d2d8cb67146108ed578063de2e5ebf14610918578063e55f58bb14610943578063e985e9c51461096e578063f19e75d4146109ab578063f2fde38b146109d457610267565b8063a22cb465146107f6578063a3f067ff1461081f578063af712c071461085c578063b88d4fde14610887578063c87b56dd146108b057610267565b806370a082311161010857806370a0823114610719578063715018a61461075657806385f0ea221461076d5780638da5cb5b1461078457806395d89b41146107af578063a0712d68146107da57610267565b806355f804b31461065a57806359c74f29146106835780635b70ea9f1461069a5780636352211e146106b15780636db8704c146106ee57610267565b8063293ae5cf116101dd5780633ccfd60b116101a15780633ccfd60b1461055e5780633e8fc9041461057557806342842e0e1461059e578063471a4294146105c75780634f6ccce7146105f2578063500eec251461062f57610267565b8063293ae5cf146104755780632f745c59146104a05780633129170c146104dd57806332cb6b0c14610508578063349e1e9b1461053357610267565b806318160ddd1161022f57806318160ddd146103655780631a4ae65d146103905780631ad57645146103bb57806323b872dd146103e457806323eb00321461040d5780632521b6da1461043857610267565b806301ffc9a71461026c57806306fdde03146102a95780630764e0eb146102d4578063081812fc146102ff578063095ea7b31461033c575b600080fd5b34801561027857600080fd5b50610293600480360381019061028e91906135f9565b6109fd565b6040516102a09190613641565b60405180910390f35b3480156102b557600080fd5b506102be610a77565b6040516102cb91906136f5565b60405180910390f35b3480156102e057600080fd5b506102e9610b09565b6040516102f69190613796565b60405180910390f35b34801561030b57600080fd5b50610326600480360381019061032191906137e7565b610b2f565b6040516103339190613835565b60405180910390f35b34801561034857600080fd5b50610363600480360381019061035e919061387c565b610bb4565b005b34801561037157600080fd5b5061037a610ccc565b60405161038791906138cb565b60405180910390f35b34801561039c57600080fd5b506103a5610cd9565b6040516103b29190613796565b60405180910390f35b3480156103c757600080fd5b506103e260048036038101906103dd91906138e6565b610cff565b005b3480156103f057600080fd5b5061040b60048036038101906104069190613913565b610dbf565b005b34801561041957600080fd5b50610422610e1f565b60405161042f91906138cb565b60405180910390f35b34801561044457600080fd5b5061045f600480360381019061045a91906138e6565b610e24565b60405161046c91906138cb565b60405180910390f35b34801561048157600080fd5b5061048a610e3c565b60405161049791906138cb565b60405180910390f35b3480156104ac57600080fd5b506104c760048036038101906104c2919061387c565b610e41565b6040516104d491906138cb565b60405180910390f35b3480156104e957600080fd5b506104f2610ee6565b6040516104ff91906138cb565b60405180910390f35b34801561051457600080fd5b5061051d610eec565b60405161052a91906138cb565b60405180910390f35b34801561053f57600080fd5b50610548610ef2565b6040516105559190613796565b60405180910390f35b34801561056a57600080fd5b50610573610f18565b005b34801561058157600080fd5b5061059c60048036038101906105979190613a9b565b610fe3565b005b3480156105aa57600080fd5b506105c560048036038101906105c09190613913565b611079565b005b3480156105d357600080fd5b506105dc611099565b6040516105e99190613641565b60405180910390f35b3480156105fe57600080fd5b50610619600480360381019061061491906137e7565b6110ac565b60405161062691906138cb565b60405180910390f35b34801561063b57600080fd5b5061064461111d565b6040516106519190613796565b60405180910390f35b34801561066657600080fd5b50610681600480360381019061067c9190613a9b565b611143565b005b34801561068f57600080fd5b506106986111d9565b005b3480156106a657600080fd5b506106af611281565b005b3480156106bd57600080fd5b506106d860048036038101906106d391906137e7565b61172f565b6040516106e59190613835565b60405180910390f35b3480156106fa57600080fd5b506107036117e1565b60405161071091906138cb565b60405180910390f35b34801561072557600080fd5b50610740600480360381019061073b91906138e6565b6117e6565b60405161074d91906138cb565b60405180910390f35b34801561076257600080fd5b5061076b61189e565b005b34801561077957600080fd5b50610782611926565b005b34801561079057600080fd5b50610799611b86565b6040516107a69190613835565b60405180910390f35b3480156107bb57600080fd5b506107c4611bb0565b6040516107d191906136f5565b60405180910390f35b6107f460048036038101906107ef91906137e7565b611c42565b005b34801561080257600080fd5b5061081d60048036038101906108189190613b10565b611ddc565b005b34801561082b57600080fd5b50610846600480360381019061084191906137e7565b611df2565b6040516108539190613b69565b60405180910390f35b34801561086857600080fd5b50610871611e0a565b60405161087e91906138cb565b60405180910390f35b34801561089357600080fd5b506108ae60048036038101906108a99190613c25565b611e0f565b005b3480156108bc57600080fd5b506108d760048036038101906108d291906137e7565b611e71565b6040516108e491906136f5565b60405180910390f35b3480156108f957600080fd5b50610902611f7c565b60405161090f91906138cb565b60405180910390f35b34801561092457600080fd5b5061092d611f87565b60405161093a91906136f5565b60405180910390f35b34801561094f57600080fd5b50610958612015565b60405161096591906138cb565b60405180910390f35b34801561097a57600080fd5b5061099560048036038101906109909190613ca8565b61201b565b6040516109a29190613641565b60405180910390f35b3480156109b757600080fd5b506109d260048036038101906109cd91906137e7565b6120af565b005b3480156109e057600080fd5b506109fb60048036038101906109f691906138e6565b6121c4565b005b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610a705750610a6f826122bc565b5b9050919050565b606060008054610a8690613d17565b80601f0160208091040260200160405190810160405280929190818152602001828054610ab290613d17565b8015610aff5780601f10610ad457610100808354040283529160200191610aff565b820191906000526020600020905b815481529060010190602001808311610ae257829003601f168201915b5050505050905090565b600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000610b3a8261239e565b610b79576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b7090613dbb565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610bbf8261172f565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610c30576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c2790613e4d565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610c4f61240a565b73ffffffffffffffffffffffffffffffffffffffff161480610c7e5750610c7d81610c7861240a565b61201b565b5b610cbd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cb490613edf565b60405180910390fd5b610cc78383612412565b505050565b6000600880549050905090565b601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b610d0761240a565b73ffffffffffffffffffffffffffffffffffffffff16610d25611b86565b73ffffffffffffffffffffffffffffffffffffffff1614610d7b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d7290613f4b565b60405180910390fd5b80601160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b610dd0610dca61240a565b826124cb565b610e0f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e0690613fdd565b60405180910390fd5b610e1a8383836125a9565b505050565b600381565b60136020528060005260406000206000915090505481565b600181565b6000610e4c836117e6565b8210610e8d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e849061406f565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b600c5481565b6103e881565b601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b610f2061240a565b73ffffffffffffffffffffffffffffffffffffffff16610f3e611b86565b73ffffffffffffffffffffffffffffffffffffffff1614610f94576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f8b90613f4b565b60405180910390fd5b60004790503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610fdf573d6000803e3d6000fd5b5050565b610feb61240a565b73ffffffffffffffffffffffffffffffffffffffff16611009611b86565b73ffffffffffffffffffffffffffffffffffffffff161461105f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161105690613f4b565b60405180910390fd5b80600d90805190602001906110759291906134ea565b5050565b61109483838360405180602001604052806000815250611e0f565b505050565b600a60149054906101000a900460ff1681565b60006110b6610ccc565b82106110f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110ee90614101565b60405180910390fd5b6008828154811061110b5761110a614121565b5b90600052602060002001549050919050565b600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b61114b61240a565b73ffffffffffffffffffffffffffffffffffffffff16611169611b86565b73ffffffffffffffffffffffffffffffffffffffff16146111bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111b690613f4b565b60405180910390fd5b80601490805190602001906111d59291906134ea565b5050565b6111e161240a565b73ffffffffffffffffffffffffffffffffffffffff166111ff611b86565b73ffffffffffffffffffffffffffffffffffffffff1614611255576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161124c90613f4b565b60405180910390fd5b600a60149054906101000a900460ff1615600a60146101000a81548160ff021916908315150217905550565b600a60149054906101000a900460ff166112d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112c79061419c565b60405180910390fd5b600c5460046103e86112e291906141eb565b6112ec919061421f565b60016112f6610ccc565b611300919061421f565b1115611341576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611338906142c1565b60405180910390fd5b6064600b5410611386576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161137d9061432d565b60405180910390fd5b6001601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205410611408576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113ff906143bf565b60405180910390fd5b6000600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231336040518263ffffffff1660e01b81526004016114659190613835565b60206040518083038186803b15801561147d57600080fd5b505afa158015611491573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906114b591906143f4565b118061156b57506000600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231336040518263ffffffff1660e01b81526004016115199190613835565b60206040518083038186803b15801561153157600080fd5b505afa158015611545573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061156991906143f4565b115b8061162057506000601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231336040518263ffffffff1660e01b81526004016115ce9190613835565b60206040518083038186803b1580156115e657600080fd5b505afa1580156115fa573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061161e91906143f4565b115b61165f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611656906144b9565b60405180910390fd5b6000611669610ccc565b905061167b611676610ccc565b612805565b6001601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546116c7919061421f565b601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600b600081548092919061171d906144d9565b919050555061172c3382612880565b50565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156117d8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117cf90614594565b60405180910390fd5b80915050919050565b606481565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611857576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161184e90614626565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6118a661240a565b73ffffffffffffffffffffffffffffffffffffffff166118c4611b86565b73ffffffffffffffffffffffffffffffffffffffff161461191a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161191190613f4b565b60405180910390fd5b611924600061289e565b565b60fa611930610ccc565b1015611971576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611968906146b8565b60405180910390fd5b6103e8600161197e610ccc565b611988919061421f565b11156119c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119c09061474a565b60405180910390fd5b6004600c5410611a0e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a05906147dc565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff16601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16636352211e600c546040518263ffffffff1660e01b8152600401611a8291906138cb565b60206040518083038186803b158015611a9a57600080fd5b505afa158015611aae573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611ad29190614811565b73ffffffffffffffffffffffffffffffffffffffff1614611b28576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b1f906148d6565b60405180910390fd5b6000611b32610ccc565b9050600c6000815480929190611b47906144d9565b9190505550611b563382612880565b807fb2a18d1a678b6225b77235b70594a40993ed231cd9183ecdf29e5b34e88e8e2360405160405180910390a250565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060018054611bbf90613d17565b80601f0160208091040260200160405190810160405280929190818152602001828054611beb90613d17565b8015611c385780601f10611c0d57610100808354040283529160200191611c38565b820191906000526020600020905b815481529060010190602001808311611c1b57829003601f168201915b5050505050905090565b600a60149054906101000a900460ff16611c91576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c889061419c565b60405180910390fd5b600c5460046103e8611ca391906141eb565b611cad919061421f565b81611cb6610ccc565b611cc0919061421f565b1115611d01576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cf89061474a565b60405180910390fd5b6003811115611d45576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d3c90614968565b60405180910390fd5b348166b1a2bc2ec50000611d599190614988565b1115611d9a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d9190614a54565b60405180910390fd5b60005b81811015611dd8576000611daf610ccc565b9050611dba81612805565b611dc43382612880565b508080611dd0906144d9565b915050611d9d565b5050565b611dee611de761240a565b8383612964565b5050565b60126020528060005260406000206000915090505481565b600481565b611e20611e1a61240a565b836124cb565b611e5f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e5690613fdd565b60405180910390fd5b611e6b84848484612ad1565b50505050565b6060611e7c8261239e565b611ebb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611eb290614ae6565b60405180910390fd5b600060148054611eca90613d17565b80601f0160208091040260200160405190810160405280929190818152602001828054611ef690613d17565b8015611f435780601f10611f1857610100808354040283529160200191611f43565b820191906000526020600020905b815481529060010190602001808311611f2657829003601f168201915b5050505050905080611f5484612b2d565b604051602001611f65929190614b42565b604051602081830303815290604052915050919050565b66b1a2bc2ec5000081565b600d8054611f9490613d17565b80601f0160208091040260200160405190810160405280929190818152602001828054611fc090613d17565b801561200d5780601f10611fe25761010080835404028352916020019161200d565b820191906000526020600020905b815481529060010190602001808311611ff057829003601f168201915b505050505081565b600b5481565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6120b761240a565b73ffffffffffffffffffffffffffffffffffffffff166120d5611b86565b73ffffffffffffffffffffffffffffffffffffffff161461212b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161212290613f4b565b60405180910390fd5b6103e881612137610ccc565b612141919061421f565b1115612182576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121799061474a565b60405180910390fd5b60005b818110156121c0576000612197610ccc565b90506121a281612805565b6121ac3382612880565b5080806121b8906144d9565b915050612185565b5050565b6121cc61240a565b73ffffffffffffffffffffffffffffffffffffffff166121ea611b86565b73ffffffffffffffffffffffffffffffffffffffff1614612240576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161223790613f4b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156122b0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122a790614bd8565b60405180910390fd5b6122b98161289e565b50565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061238757507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80612397575061239682612c8e565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166124858361172f565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006124d68261239e565b612515576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161250c90614c6a565b60405180910390fd5b60006125208361172f565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061258f57508373ffffffffffffffffffffffffffffffffffffffff1661257784610b2f565b73ffffffffffffffffffffffffffffffffffffffff16145b806125a0575061259f818561201b565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166125c98261172f565b73ffffffffffffffffffffffffffffffffffffffff161461261f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161261690614cfc565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561268f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161268690614d8e565b60405180910390fd5b61269a838383612cf8565b6126a5600082612412565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546126f591906141eb565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461274c919061421f565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b60004342338460405160200161281e9493929190614e17565b60405160208183030381529060405280519060200120905080601260008481526020019081526020016000208190555080827f89f0a16420b0d5134502461a808c8ebe1fd426979f5156dbf3f0266325a76fa360405160405180910390a35050565b61289a828260405180602001604052806000815250612e0c565b5050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156129d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129ca90614eb1565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051612ac49190613641565b60405180910390a3505050565b612adc8484846125a9565b612ae884848484612e67565b612b27576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b1e90614f43565b60405180910390fd5b50505050565b60606000821415612b75576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612c89565b600082905060005b60008214612ba7578080612b90906144d9565b915050600a82612ba09190614f92565b9150612b7d565b60008167ffffffffffffffff811115612bc357612bc2613970565b5b6040519080825280601f01601f191660200182016040528015612bf55781602001600182028036833780820191505090505b5090505b60008514612c8257600182612c0e91906141eb565b9150600a85612c1d9190614fc3565b6030612c29919061421f565b60f81b818381518110612c3f57612c3e614121565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612c7b9190614f92565b9450612bf9565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b612d03838383612ffe565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612d4657612d4181613003565b612d85565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614612d8457612d83838261304c565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612dc857612dc3816131b9565b612e07565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614612e0657612e05828261328a565b5b5b505050565b612e168383613309565b612e236000848484612e67565b612e62576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e5990614f43565b60405180910390fd5b505050565b6000612e888473ffffffffffffffffffffffffffffffffffffffff166134d7565b15612ff1578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612eb161240a565b8786866040518563ffffffff1660e01b8152600401612ed39493929190615049565b602060405180830381600087803b158015612eed57600080fd5b505af1925050508015612f1e57506040513d601f19601f82011682018060405250810190612f1b91906150aa565b60015b612fa1573d8060008114612f4e576040519150601f19603f3d011682016040523d82523d6000602084013e612f53565b606091505b50600081511415612f99576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f9090614f43565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612ff6565b600190505b949350505050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b60006001613059846117e6565b61306391906141eb565b9050600060076000848152602001908152602001600020549050818114613148576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b600060016008805490506131cd91906141eb565b90506000600960008481526020019081526020016000205490506000600883815481106131fd576131fc614121565b5b90600052602060002001549050806008838154811061321f5761321e614121565b5b90600052602060002001819055508160096000838152602001908152602001600020819055506009600085815260200190815260200160002060009055600880548061326e5761326d6150d7565b5b6001900381819060005260206000200160009055905550505050565b6000613295836117e6565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613379576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161337090615152565b60405180910390fd5b6133828161239e565b156133c2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016133b9906151be565b60405180910390fd5b6133ce60008383612cf8565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461341e919061421f565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b8280546134f690613d17565b90600052602060002090601f016020900481019282613518576000855561355f565b82601f1061353157805160ff191683800117855561355f565b8280016001018555821561355f579182015b8281111561355e578251825591602001919060010190613543565b5b50905061356c9190613570565b5090565b5b80821115613589576000816000905550600101613571565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6135d6816135a1565b81146135e157600080fd5b50565b6000813590506135f3816135cd565b92915050565b60006020828403121561360f5761360e613597565b5b600061361d848285016135e4565b91505092915050565b60008115159050919050565b61363b81613626565b82525050565b60006020820190506136566000830184613632565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561369657808201518184015260208101905061367b565b838111156136a5576000848401525b50505050565b6000601f19601f8301169050919050565b60006136c78261365c565b6136d18185613667565b93506136e1818560208601613678565b6136ea816136ab565b840191505092915050565b6000602082019050818103600083015261370f81846136bc565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600061375c61375761375284613717565b613737565b613717565b9050919050565b600061376e82613741565b9050919050565b600061378082613763565b9050919050565b61379081613775565b82525050565b60006020820190506137ab6000830184613787565b92915050565b6000819050919050565b6137c4816137b1565b81146137cf57600080fd5b50565b6000813590506137e1816137bb565b92915050565b6000602082840312156137fd576137fc613597565b5b600061380b848285016137d2565b91505092915050565b600061381f82613717565b9050919050565b61382f81613814565b82525050565b600060208201905061384a6000830184613826565b92915050565b61385981613814565b811461386457600080fd5b50565b60008135905061387681613850565b92915050565b6000806040838503121561389357613892613597565b5b60006138a185828601613867565b92505060206138b2858286016137d2565b9150509250929050565b6138c5816137b1565b82525050565b60006020820190506138e060008301846138bc565b92915050565b6000602082840312156138fc576138fb613597565b5b600061390a84828501613867565b91505092915050565b60008060006060848603121561392c5761392b613597565b5b600061393a86828701613867565b935050602061394b86828701613867565b925050604061395c868287016137d2565b9150509250925092565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6139a8826136ab565b810181811067ffffffffffffffff821117156139c7576139c6613970565b5b80604052505050565b60006139da61358d565b90506139e6828261399f565b919050565b600067ffffffffffffffff821115613a0657613a05613970565b5b613a0f826136ab565b9050602081019050919050565b82818337600083830152505050565b6000613a3e613a39846139eb565b6139d0565b905082815260208101848484011115613a5a57613a5961396b565b5b613a65848285613a1c565b509392505050565b600082601f830112613a8257613a81613966565b5b8135613a92848260208601613a2b565b91505092915050565b600060208284031215613ab157613ab0613597565b5b600082013567ffffffffffffffff811115613acf57613ace61359c565b5b613adb84828501613a6d565b91505092915050565b613aed81613626565b8114613af857600080fd5b50565b600081359050613b0a81613ae4565b92915050565b60008060408385031215613b2757613b26613597565b5b6000613b3585828601613867565b9250506020613b4685828601613afb565b9150509250929050565b6000819050919050565b613b6381613b50565b82525050565b6000602082019050613b7e6000830184613b5a565b92915050565b600067ffffffffffffffff821115613b9f57613b9e613970565b5b613ba8826136ab565b9050602081019050919050565b6000613bc8613bc384613b84565b6139d0565b905082815260208101848484011115613be457613be361396b565b5b613bef848285613a1c565b509392505050565b600082601f830112613c0c57613c0b613966565b5b8135613c1c848260208601613bb5565b91505092915050565b60008060008060808587031215613c3f57613c3e613597565b5b6000613c4d87828801613867565b9450506020613c5e87828801613867565b9350506040613c6f878288016137d2565b925050606085013567ffffffffffffffff811115613c9057613c8f61359c565b5b613c9c87828801613bf7565b91505092959194509250565b60008060408385031215613cbf57613cbe613597565b5b6000613ccd85828601613867565b9250506020613cde85828601613867565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680613d2f57607f821691505b60208210811415613d4357613d42613ce8565b5b50919050565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b6000613da5602c83613667565b9150613db082613d49565b604082019050919050565b60006020820190508181036000830152613dd481613d98565b9050919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b6000613e37602183613667565b9150613e4282613ddb565b604082019050919050565b60006020820190508181036000830152613e6681613e2a565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b6000613ec9603883613667565b9150613ed482613e6d565b604082019050919050565b60006020820190508181036000830152613ef881613ebc565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613f35602083613667565b9150613f4082613eff565b602082019050919050565b60006020820190508181036000830152613f6481613f28565b9050919050565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b6000613fc7603183613667565b9150613fd282613f6b565b604082019050919050565b60006020820190508181036000830152613ff681613fba565b9050919050565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b6000614059602b83613667565b915061406482613ffd565b604082019050919050565b600060208201905081810360008301526140888161404c565b9050919050565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b60006140eb602c83613667565b91506140f68261408f565b604082019050919050565b6000602082019050818103600083015261411a816140de565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4d696e74206973206e6f74206163746976652e00000000000000000000000000600082015250565b6000614186601383613667565b915061419182614150565b602082019050919050565b600060208201905081810360008301526141b581614179565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006141f6826137b1565b9150614201836137b1565b925082821015614214576142136141bc565b5b828203905092915050565b600061422a826137b1565b9150614235836137b1565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561426a576142696141bc565b5b828201905092915050565b7f4e6f20746f6b656e73206c65667420746f206d696e7400000000000000000000600082015250565b60006142ab601683613667565b91506142b682614275565b602082019050919050565b600060208201905081810360008301526142da8161429e565b9050919050565b7f4e6f206d6f72652066726565206d696e747320617661696c61626c6500000000600082015250565b6000614317601c83613667565b9150614322826142e1565b602082019050919050565b600060208201905081810360008301526143468161430a565b9050919050565b7f596f75206861766520616c7265616479206d696e746564206d6178206e756d6260008201527f6572206f662066726565206d696e747300000000000000000000000000000000602082015250565b60006143a9603083613667565b91506143b48261434d565b604082019050919050565b600060208201905081810360008301526143d88161439c565b9050919050565b6000815190506143ee816137bb565b92915050565b60006020828403121561440a57614409613597565b5b6000614418848285016143df565b91505092915050565b7f596f75722077616c6c657420646f6573206e6f7420686f6c6420446f74446f7460008201527f446f74732c20307843756c7475726520427275736874726f6b65732c206f722060208201527f446f6a6943726577204e46547300000000000000000000000000000000000000604082015250565b60006144a3604d83613667565b91506144ae82614421565b606082019050919050565b600060208201905081810360008301526144d281614496565b9050919050565b60006144e4826137b1565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614517576145166141bc565b5b600182019050919050565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b600061457e602983613667565b915061458982614522565b604082019050919050565b600060208201905081810360008301526145ad81614571565b9050919050565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b6000614610602a83613667565b915061461b826145b4565b604082019050919050565b6000602082019050818103600083015261463f81614603565b9050919050565b7f633356775a584a546347566a61574673206d696e74206e6f7420617661696c6160008201527f626c652079657400000000000000000000000000000000000000000000000000602082015250565b60006146a2602783613667565b91506146ad82614646565b604082019050919050565b600060208201905081810360008301526146d181614695565b9050919050565b7f4e6f7420656e6f75676820746f6b656e73206c65667420746f206d696e74207460008201527f686973206d616e79000000000000000000000000000000000000000000000000602082015250565b6000614734602883613667565b915061473f826146d8565b604082019050919050565b6000602082019050818103600083015261476381614727565b9050919050565b7f4e6f206d6f726520633356775a584a546347566a61574673206d696e7473206160008201527f7661696c61626c65000000000000000000000000000000000000000000000000602082015250565b60006147c6602883613667565b91506147d18261476a565b604082019050919050565b600060208201905081810360008301526147f5816147b9565b9050919050565b60008151905061480b81613850565b92915050565b60006020828403121561482757614826613597565b5b6000614835848285016147fc565b91505092915050565b7f596f75722077616c6c657420646f6573206e6f7420686f6c6420746865206b6560008201527f7920746f20706572666f726d696e67206120633356775a584a546347566a615760208201527f46734d696e740000000000000000000000000000000000000000000000000000604082015250565b60006148c0604683613667565b91506148cb8261483e565b606082019050919050565b600060208201905081810360008301526148ef816148b3565b9050919050565b7f596f752077656e74206f766572206d617820746f6b656e73207065722074726160008201527f6e73616374696f6e2e0000000000000000000000000000000000000000000000602082015250565b6000614952602983613667565b915061495d826148f6565b604082019050919050565b6000602082019050818103600083015261498181614945565b9050919050565b6000614993826137b1565b915061499e836137b1565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156149d7576149d66141bc565b5b828202905092915050565b7f596f752073656e742074686520696e636f727265637420616d6f756e74206f6660008201527f204554482e000000000000000000000000000000000000000000000000000000602082015250565b6000614a3e602583613667565b9150614a49826149e2565b604082019050919050565b60006020820190508181036000830152614a6d81614a31565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b6000614ad0602f83613667565b9150614adb82614a74565b604082019050919050565b60006020820190508181036000830152614aff81614ac3565b9050919050565b600081905092915050565b6000614b1c8261365c565b614b268185614b06565b9350614b36818560208601613678565b80840191505092915050565b6000614b4e8285614b11565b9150614b5a8284614b11565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000614bc2602683613667565b9150614bcd82614b66565b604082019050919050565b60006020820190508181036000830152614bf181614bb5565b9050919050565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b6000614c54602c83613667565b9150614c5f82614bf8565b604082019050919050565b60006020820190508181036000830152614c8381614c47565b9050919050565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b6000614ce6602983613667565b9150614cf182614c8a565b604082019050919050565b60006020820190508181036000830152614d1581614cd9565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000614d78602483613667565b9150614d8382614d1c565b604082019050919050565b60006020820190508181036000830152614da781614d6b565b9050919050565b6000819050919050565b614dc9614dc4826137b1565b614dae565b82525050565b60008160601b9050919050565b6000614de782614dcf565b9050919050565b6000614df982614ddc565b9050919050565b614e11614e0c82613814565b614dee565b82525050565b6000614e238287614db8565b602082019150614e338286614db8565b602082019150614e438285614e00565b601482019150614e538284614db8565b60208201915081905095945050505050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b6000614e9b601983613667565b9150614ea682614e65565b602082019050919050565b60006020820190508181036000830152614eca81614e8e565b9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b6000614f2d603283613667565b9150614f3882614ed1565b604082019050919050565b60006020820190508181036000830152614f5c81614f20565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000614f9d826137b1565b9150614fa8836137b1565b925082614fb857614fb7614f63565b5b828204905092915050565b6000614fce826137b1565b9150614fd9836137b1565b925082614fe957614fe8614f63565b5b828206905092915050565b600081519050919050565b600082825260208201905092915050565b600061501b82614ff4565b6150258185614fff565b9350615035818560208601613678565b61503e816136ab565b840191505092915050565b600060808201905061505e6000830187613826565b61506b6020830186613826565b61507860408301856138bc565b818103606083015261508a8184615010565b905095945050505050565b6000815190506150a4816135cd565b92915050565b6000602082840312156150c0576150bf613597565b5b60006150ce84828501615095565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b600061513c602083613667565b915061514782615106565b602082019050919050565b6000602082019050818103600083015261516b8161512f565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b60006151a8601c83613667565b91506151b382615172565b602082019050919050565b600060208201905081810360008301526151d78161519b565b905091905056fea26469706673582212208cfd57efd03755f153e5a7b2c67cfd691182d08ac05c3367598db146962ad56c64736f6c63430008090033

Deployed Bytecode

0x6080604052600436106102675760003560e01c806355f804b311610144578063a22cb465116100b6578063d2d8cb671161007a578063d2d8cb67146108ed578063de2e5ebf14610918578063e55f58bb14610943578063e985e9c51461096e578063f19e75d4146109ab578063f2fde38b146109d457610267565b8063a22cb465146107f6578063a3f067ff1461081f578063af712c071461085c578063b88d4fde14610887578063c87b56dd146108b057610267565b806370a082311161010857806370a0823114610719578063715018a61461075657806385f0ea221461076d5780638da5cb5b1461078457806395d89b41146107af578063a0712d68146107da57610267565b806355f804b31461065a57806359c74f29146106835780635b70ea9f1461069a5780636352211e146106b15780636db8704c146106ee57610267565b8063293ae5cf116101dd5780633ccfd60b116101a15780633ccfd60b1461055e5780633e8fc9041461057557806342842e0e1461059e578063471a4294146105c75780634f6ccce7146105f2578063500eec251461062f57610267565b8063293ae5cf146104755780632f745c59146104a05780633129170c146104dd57806332cb6b0c14610508578063349e1e9b1461053357610267565b806318160ddd1161022f57806318160ddd146103655780631a4ae65d146103905780631ad57645146103bb57806323b872dd146103e457806323eb00321461040d5780632521b6da1461043857610267565b806301ffc9a71461026c57806306fdde03146102a95780630764e0eb146102d4578063081812fc146102ff578063095ea7b31461033c575b600080fd5b34801561027857600080fd5b50610293600480360381019061028e91906135f9565b6109fd565b6040516102a09190613641565b60405180910390f35b3480156102b557600080fd5b506102be610a77565b6040516102cb91906136f5565b60405180910390f35b3480156102e057600080fd5b506102e9610b09565b6040516102f69190613796565b60405180910390f35b34801561030b57600080fd5b50610326600480360381019061032191906137e7565b610b2f565b6040516103339190613835565b60405180910390f35b34801561034857600080fd5b50610363600480360381019061035e919061387c565b610bb4565b005b34801561037157600080fd5b5061037a610ccc565b60405161038791906138cb565b60405180910390f35b34801561039c57600080fd5b506103a5610cd9565b6040516103b29190613796565b60405180910390f35b3480156103c757600080fd5b506103e260048036038101906103dd91906138e6565b610cff565b005b3480156103f057600080fd5b5061040b60048036038101906104069190613913565b610dbf565b005b34801561041957600080fd5b50610422610e1f565b60405161042f91906138cb565b60405180910390f35b34801561044457600080fd5b5061045f600480360381019061045a91906138e6565b610e24565b60405161046c91906138cb565b60405180910390f35b34801561048157600080fd5b5061048a610e3c565b60405161049791906138cb565b60405180910390f35b3480156104ac57600080fd5b506104c760048036038101906104c2919061387c565b610e41565b6040516104d491906138cb565b60405180910390f35b3480156104e957600080fd5b506104f2610ee6565b6040516104ff91906138cb565b60405180910390f35b34801561051457600080fd5b5061051d610eec565b60405161052a91906138cb565b60405180910390f35b34801561053f57600080fd5b50610548610ef2565b6040516105559190613796565b60405180910390f35b34801561056a57600080fd5b50610573610f18565b005b34801561058157600080fd5b5061059c60048036038101906105979190613a9b565b610fe3565b005b3480156105aa57600080fd5b506105c560048036038101906105c09190613913565b611079565b005b3480156105d357600080fd5b506105dc611099565b6040516105e99190613641565b60405180910390f35b3480156105fe57600080fd5b50610619600480360381019061061491906137e7565b6110ac565b60405161062691906138cb565b60405180910390f35b34801561063b57600080fd5b5061064461111d565b6040516106519190613796565b60405180910390f35b34801561066657600080fd5b50610681600480360381019061067c9190613a9b565b611143565b005b34801561068f57600080fd5b506106986111d9565b005b3480156106a657600080fd5b506106af611281565b005b3480156106bd57600080fd5b506106d860048036038101906106d391906137e7565b61172f565b6040516106e59190613835565b60405180910390f35b3480156106fa57600080fd5b506107036117e1565b60405161071091906138cb565b60405180910390f35b34801561072557600080fd5b50610740600480360381019061073b91906138e6565b6117e6565b60405161074d91906138cb565b60405180910390f35b34801561076257600080fd5b5061076b61189e565b005b34801561077957600080fd5b50610782611926565b005b34801561079057600080fd5b50610799611b86565b6040516107a69190613835565b60405180910390f35b3480156107bb57600080fd5b506107c4611bb0565b6040516107d191906136f5565b60405180910390f35b6107f460048036038101906107ef91906137e7565b611c42565b005b34801561080257600080fd5b5061081d60048036038101906108189190613b10565b611ddc565b005b34801561082b57600080fd5b50610846600480360381019061084191906137e7565b611df2565b6040516108539190613b69565b60405180910390f35b34801561086857600080fd5b50610871611e0a565b60405161087e91906138cb565b60405180910390f35b34801561089357600080fd5b506108ae60048036038101906108a99190613c25565b611e0f565b005b3480156108bc57600080fd5b506108d760048036038101906108d291906137e7565b611e71565b6040516108e491906136f5565b60405180910390f35b3480156108f957600080fd5b50610902611f7c565b60405161090f91906138cb565b60405180910390f35b34801561092457600080fd5b5061092d611f87565b60405161093a91906136f5565b60405180910390f35b34801561094f57600080fd5b50610958612015565b60405161096591906138cb565b60405180910390f35b34801561097a57600080fd5b5061099560048036038101906109909190613ca8565b61201b565b6040516109a29190613641565b60405180910390f35b3480156109b757600080fd5b506109d260048036038101906109cd91906137e7565b6120af565b005b3480156109e057600080fd5b506109fb60048036038101906109f691906138e6565b6121c4565b005b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610a705750610a6f826122bc565b5b9050919050565b606060008054610a8690613d17565b80601f0160208091040260200160405190810160405280929190818152602001828054610ab290613d17565b8015610aff5780601f10610ad457610100808354040283529160200191610aff565b820191906000526020600020905b815481529060010190602001808311610ae257829003601f168201915b5050505050905090565b600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000610b3a8261239e565b610b79576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b7090613dbb565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610bbf8261172f565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610c30576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c2790613e4d565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610c4f61240a565b73ffffffffffffffffffffffffffffffffffffffff161480610c7e5750610c7d81610c7861240a565b61201b565b5b610cbd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cb490613edf565b60405180910390fd5b610cc78383612412565b505050565b6000600880549050905090565b601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b610d0761240a565b73ffffffffffffffffffffffffffffffffffffffff16610d25611b86565b73ffffffffffffffffffffffffffffffffffffffff1614610d7b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d7290613f4b565b60405180910390fd5b80601160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b610dd0610dca61240a565b826124cb565b610e0f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e0690613fdd565b60405180910390fd5b610e1a8383836125a9565b505050565b600381565b60136020528060005260406000206000915090505481565b600181565b6000610e4c836117e6565b8210610e8d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e849061406f565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b600c5481565b6103e881565b601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b610f2061240a565b73ffffffffffffffffffffffffffffffffffffffff16610f3e611b86565b73ffffffffffffffffffffffffffffffffffffffff1614610f94576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f8b90613f4b565b60405180910390fd5b60004790503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610fdf573d6000803e3d6000fd5b5050565b610feb61240a565b73ffffffffffffffffffffffffffffffffffffffff16611009611b86565b73ffffffffffffffffffffffffffffffffffffffff161461105f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161105690613f4b565b60405180910390fd5b80600d90805190602001906110759291906134ea565b5050565b61109483838360405180602001604052806000815250611e0f565b505050565b600a60149054906101000a900460ff1681565b60006110b6610ccc565b82106110f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110ee90614101565b60405180910390fd5b6008828154811061110b5761110a614121565b5b90600052602060002001549050919050565b600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b61114b61240a565b73ffffffffffffffffffffffffffffffffffffffff16611169611b86565b73ffffffffffffffffffffffffffffffffffffffff16146111bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111b690613f4b565b60405180910390fd5b80601490805190602001906111d59291906134ea565b5050565b6111e161240a565b73ffffffffffffffffffffffffffffffffffffffff166111ff611b86565b73ffffffffffffffffffffffffffffffffffffffff1614611255576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161124c90613f4b565b60405180910390fd5b600a60149054906101000a900460ff1615600a60146101000a81548160ff021916908315150217905550565b600a60149054906101000a900460ff166112d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112c79061419c565b60405180910390fd5b600c5460046103e86112e291906141eb565b6112ec919061421f565b60016112f6610ccc565b611300919061421f565b1115611341576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611338906142c1565b60405180910390fd5b6064600b5410611386576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161137d9061432d565b60405180910390fd5b6001601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205410611408576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113ff906143bf565b60405180910390fd5b6000600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231336040518263ffffffff1660e01b81526004016114659190613835565b60206040518083038186803b15801561147d57600080fd5b505afa158015611491573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906114b591906143f4565b118061156b57506000600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231336040518263ffffffff1660e01b81526004016115199190613835565b60206040518083038186803b15801561153157600080fd5b505afa158015611545573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061156991906143f4565b115b8061162057506000601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231336040518263ffffffff1660e01b81526004016115ce9190613835565b60206040518083038186803b1580156115e657600080fd5b505afa1580156115fa573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061161e91906143f4565b115b61165f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611656906144b9565b60405180910390fd5b6000611669610ccc565b905061167b611676610ccc565b612805565b6001601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546116c7919061421f565b601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600b600081548092919061171d906144d9565b919050555061172c3382612880565b50565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156117d8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117cf90614594565b60405180910390fd5b80915050919050565b606481565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611857576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161184e90614626565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6118a661240a565b73ffffffffffffffffffffffffffffffffffffffff166118c4611b86565b73ffffffffffffffffffffffffffffffffffffffff161461191a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161191190613f4b565b60405180910390fd5b611924600061289e565b565b60fa611930610ccc565b1015611971576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611968906146b8565b60405180910390fd5b6103e8600161197e610ccc565b611988919061421f565b11156119c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119c09061474a565b60405180910390fd5b6004600c5410611a0e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a05906147dc565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff16601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16636352211e600c546040518263ffffffff1660e01b8152600401611a8291906138cb565b60206040518083038186803b158015611a9a57600080fd5b505afa158015611aae573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611ad29190614811565b73ffffffffffffffffffffffffffffffffffffffff1614611b28576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b1f906148d6565b60405180910390fd5b6000611b32610ccc565b9050600c6000815480929190611b47906144d9565b9190505550611b563382612880565b807fb2a18d1a678b6225b77235b70594a40993ed231cd9183ecdf29e5b34e88e8e2360405160405180910390a250565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060018054611bbf90613d17565b80601f0160208091040260200160405190810160405280929190818152602001828054611beb90613d17565b8015611c385780601f10611c0d57610100808354040283529160200191611c38565b820191906000526020600020905b815481529060010190602001808311611c1b57829003601f168201915b5050505050905090565b600a60149054906101000a900460ff16611c91576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c889061419c565b60405180910390fd5b600c5460046103e8611ca391906141eb565b611cad919061421f565b81611cb6610ccc565b611cc0919061421f565b1115611d01576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cf89061474a565b60405180910390fd5b6003811115611d45576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d3c90614968565b60405180910390fd5b348166b1a2bc2ec50000611d599190614988565b1115611d9a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d9190614a54565b60405180910390fd5b60005b81811015611dd8576000611daf610ccc565b9050611dba81612805565b611dc43382612880565b508080611dd0906144d9565b915050611d9d565b5050565b611dee611de761240a565b8383612964565b5050565b60126020528060005260406000206000915090505481565b600481565b611e20611e1a61240a565b836124cb565b611e5f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e5690613fdd565b60405180910390fd5b611e6b84848484612ad1565b50505050565b6060611e7c8261239e565b611ebb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611eb290614ae6565b60405180910390fd5b600060148054611eca90613d17565b80601f0160208091040260200160405190810160405280929190818152602001828054611ef690613d17565b8015611f435780601f10611f1857610100808354040283529160200191611f43565b820191906000526020600020905b815481529060010190602001808311611f2657829003601f168201915b5050505050905080611f5484612b2d565b604051602001611f65929190614b42565b604051602081830303815290604052915050919050565b66b1a2bc2ec5000081565b600d8054611f9490613d17565b80601f0160208091040260200160405190810160405280929190818152602001828054611fc090613d17565b801561200d5780601f10611fe25761010080835404028352916020019161200d565b820191906000526020600020905b815481529060010190602001808311611ff057829003601f168201915b505050505081565b600b5481565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6120b761240a565b73ffffffffffffffffffffffffffffffffffffffff166120d5611b86565b73ffffffffffffffffffffffffffffffffffffffff161461212b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161212290613f4b565b60405180910390fd5b6103e881612137610ccc565b612141919061421f565b1115612182576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121799061474a565b60405180910390fd5b60005b818110156121c0576000612197610ccc565b90506121a281612805565b6121ac3382612880565b5080806121b8906144d9565b915050612185565b5050565b6121cc61240a565b73ffffffffffffffffffffffffffffffffffffffff166121ea611b86565b73ffffffffffffffffffffffffffffffffffffffff1614612240576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161223790613f4b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156122b0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122a790614bd8565b60405180910390fd5b6122b98161289e565b50565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061238757507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80612397575061239682612c8e565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166124858361172f565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006124d68261239e565b612515576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161250c90614c6a565b60405180910390fd5b60006125208361172f565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061258f57508373ffffffffffffffffffffffffffffffffffffffff1661257784610b2f565b73ffffffffffffffffffffffffffffffffffffffff16145b806125a0575061259f818561201b565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166125c98261172f565b73ffffffffffffffffffffffffffffffffffffffff161461261f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161261690614cfc565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561268f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161268690614d8e565b60405180910390fd5b61269a838383612cf8565b6126a5600082612412565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546126f591906141eb565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461274c919061421f565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b60004342338460405160200161281e9493929190614e17565b60405160208183030381529060405280519060200120905080601260008481526020019081526020016000208190555080827f89f0a16420b0d5134502461a808c8ebe1fd426979f5156dbf3f0266325a76fa360405160405180910390a35050565b61289a828260405180602001604052806000815250612e0c565b5050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156129d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129ca90614eb1565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051612ac49190613641565b60405180910390a3505050565b612adc8484846125a9565b612ae884848484612e67565b612b27576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b1e90614f43565b60405180910390fd5b50505050565b60606000821415612b75576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612c89565b600082905060005b60008214612ba7578080612b90906144d9565b915050600a82612ba09190614f92565b9150612b7d565b60008167ffffffffffffffff811115612bc357612bc2613970565b5b6040519080825280601f01601f191660200182016040528015612bf55781602001600182028036833780820191505090505b5090505b60008514612c8257600182612c0e91906141eb565b9150600a85612c1d9190614fc3565b6030612c29919061421f565b60f81b818381518110612c3f57612c3e614121565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612c7b9190614f92565b9450612bf9565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b612d03838383612ffe565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612d4657612d4181613003565b612d85565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614612d8457612d83838261304c565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612dc857612dc3816131b9565b612e07565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614612e0657612e05828261328a565b5b5b505050565b612e168383613309565b612e236000848484612e67565b612e62576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e5990614f43565b60405180910390fd5b505050565b6000612e888473ffffffffffffffffffffffffffffffffffffffff166134d7565b15612ff1578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612eb161240a565b8786866040518563ffffffff1660e01b8152600401612ed39493929190615049565b602060405180830381600087803b158015612eed57600080fd5b505af1925050508015612f1e57506040513d601f19601f82011682018060405250810190612f1b91906150aa565b60015b612fa1573d8060008114612f4e576040519150601f19603f3d011682016040523d82523d6000602084013e612f53565b606091505b50600081511415612f99576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f9090614f43565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612ff6565b600190505b949350505050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b60006001613059846117e6565b61306391906141eb565b9050600060076000848152602001908152602001600020549050818114613148576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b600060016008805490506131cd91906141eb565b90506000600960008481526020019081526020016000205490506000600883815481106131fd576131fc614121565b5b90600052602060002001549050806008838154811061321f5761321e614121565b5b90600052602060002001819055508160096000838152602001908152602001600020819055506009600085815260200190815260200160002060009055600880548061326e5761326d6150d7565b5b6001900381819060005260206000200160009055905550505050565b6000613295836117e6565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613379576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161337090615152565b60405180910390fd5b6133828161239e565b156133c2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016133b9906151be565b60405180910390fd5b6133ce60008383612cf8565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461341e919061421f565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b8280546134f690613d17565b90600052602060002090601f016020900481019282613518576000855561355f565b82601f1061353157805160ff191683800117855561355f565b8280016001018555821561355f579182015b8281111561355e578251825591602001919060010190613543565b5b50905061356c9190613570565b5090565b5b80821115613589576000816000905550600101613571565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6135d6816135a1565b81146135e157600080fd5b50565b6000813590506135f3816135cd565b92915050565b60006020828403121561360f5761360e613597565b5b600061361d848285016135e4565b91505092915050565b60008115159050919050565b61363b81613626565b82525050565b60006020820190506136566000830184613632565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561369657808201518184015260208101905061367b565b838111156136a5576000848401525b50505050565b6000601f19601f8301169050919050565b60006136c78261365c565b6136d18185613667565b93506136e1818560208601613678565b6136ea816136ab565b840191505092915050565b6000602082019050818103600083015261370f81846136bc565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600061375c61375761375284613717565b613737565b613717565b9050919050565b600061376e82613741565b9050919050565b600061378082613763565b9050919050565b61379081613775565b82525050565b60006020820190506137ab6000830184613787565b92915050565b6000819050919050565b6137c4816137b1565b81146137cf57600080fd5b50565b6000813590506137e1816137bb565b92915050565b6000602082840312156137fd576137fc613597565b5b600061380b848285016137d2565b91505092915050565b600061381f82613717565b9050919050565b61382f81613814565b82525050565b600060208201905061384a6000830184613826565b92915050565b61385981613814565b811461386457600080fd5b50565b60008135905061387681613850565b92915050565b6000806040838503121561389357613892613597565b5b60006138a185828601613867565b92505060206138b2858286016137d2565b9150509250929050565b6138c5816137b1565b82525050565b60006020820190506138e060008301846138bc565b92915050565b6000602082840312156138fc576138fb613597565b5b600061390a84828501613867565b91505092915050565b60008060006060848603121561392c5761392b613597565b5b600061393a86828701613867565b935050602061394b86828701613867565b925050604061395c868287016137d2565b9150509250925092565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6139a8826136ab565b810181811067ffffffffffffffff821117156139c7576139c6613970565b5b80604052505050565b60006139da61358d565b90506139e6828261399f565b919050565b600067ffffffffffffffff821115613a0657613a05613970565b5b613a0f826136ab565b9050602081019050919050565b82818337600083830152505050565b6000613a3e613a39846139eb565b6139d0565b905082815260208101848484011115613a5a57613a5961396b565b5b613a65848285613a1c565b509392505050565b600082601f830112613a8257613a81613966565b5b8135613a92848260208601613a2b565b91505092915050565b600060208284031215613ab157613ab0613597565b5b600082013567ffffffffffffffff811115613acf57613ace61359c565b5b613adb84828501613a6d565b91505092915050565b613aed81613626565b8114613af857600080fd5b50565b600081359050613b0a81613ae4565b92915050565b60008060408385031215613b2757613b26613597565b5b6000613b3585828601613867565b9250506020613b4685828601613afb565b9150509250929050565b6000819050919050565b613b6381613b50565b82525050565b6000602082019050613b7e6000830184613b5a565b92915050565b600067ffffffffffffffff821115613b9f57613b9e613970565b5b613ba8826136ab565b9050602081019050919050565b6000613bc8613bc384613b84565b6139d0565b905082815260208101848484011115613be457613be361396b565b5b613bef848285613a1c565b509392505050565b600082601f830112613c0c57613c0b613966565b5b8135613c1c848260208601613bb5565b91505092915050565b60008060008060808587031215613c3f57613c3e613597565b5b6000613c4d87828801613867565b9450506020613c5e87828801613867565b9350506040613c6f878288016137d2565b925050606085013567ffffffffffffffff811115613c9057613c8f61359c565b5b613c9c87828801613bf7565b91505092959194509250565b60008060408385031215613cbf57613cbe613597565b5b6000613ccd85828601613867565b9250506020613cde85828601613867565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680613d2f57607f821691505b60208210811415613d4357613d42613ce8565b5b50919050565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b6000613da5602c83613667565b9150613db082613d49565b604082019050919050565b60006020820190508181036000830152613dd481613d98565b9050919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b6000613e37602183613667565b9150613e4282613ddb565b604082019050919050565b60006020820190508181036000830152613e6681613e2a565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b6000613ec9603883613667565b9150613ed482613e6d565b604082019050919050565b60006020820190508181036000830152613ef881613ebc565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613f35602083613667565b9150613f4082613eff565b602082019050919050565b60006020820190508181036000830152613f6481613f28565b9050919050565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b6000613fc7603183613667565b9150613fd282613f6b565b604082019050919050565b60006020820190508181036000830152613ff681613fba565b9050919050565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b6000614059602b83613667565b915061406482613ffd565b604082019050919050565b600060208201905081810360008301526140888161404c565b9050919050565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b60006140eb602c83613667565b91506140f68261408f565b604082019050919050565b6000602082019050818103600083015261411a816140de565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4d696e74206973206e6f74206163746976652e00000000000000000000000000600082015250565b6000614186601383613667565b915061419182614150565b602082019050919050565b600060208201905081810360008301526141b581614179565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006141f6826137b1565b9150614201836137b1565b925082821015614214576142136141bc565b5b828203905092915050565b600061422a826137b1565b9150614235836137b1565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561426a576142696141bc565b5b828201905092915050565b7f4e6f20746f6b656e73206c65667420746f206d696e7400000000000000000000600082015250565b60006142ab601683613667565b91506142b682614275565b602082019050919050565b600060208201905081810360008301526142da8161429e565b9050919050565b7f4e6f206d6f72652066726565206d696e747320617661696c61626c6500000000600082015250565b6000614317601c83613667565b9150614322826142e1565b602082019050919050565b600060208201905081810360008301526143468161430a565b9050919050565b7f596f75206861766520616c7265616479206d696e746564206d6178206e756d6260008201527f6572206f662066726565206d696e747300000000000000000000000000000000602082015250565b60006143a9603083613667565b91506143b48261434d565b604082019050919050565b600060208201905081810360008301526143d88161439c565b9050919050565b6000815190506143ee816137bb565b92915050565b60006020828403121561440a57614409613597565b5b6000614418848285016143df565b91505092915050565b7f596f75722077616c6c657420646f6573206e6f7420686f6c6420446f74446f7460008201527f446f74732c20307843756c7475726520427275736874726f6b65732c206f722060208201527f446f6a6943726577204e46547300000000000000000000000000000000000000604082015250565b60006144a3604d83613667565b91506144ae82614421565b606082019050919050565b600060208201905081810360008301526144d281614496565b9050919050565b60006144e4826137b1565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614517576145166141bc565b5b600182019050919050565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b600061457e602983613667565b915061458982614522565b604082019050919050565b600060208201905081810360008301526145ad81614571565b9050919050565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b6000614610602a83613667565b915061461b826145b4565b604082019050919050565b6000602082019050818103600083015261463f81614603565b9050919050565b7f633356775a584a546347566a61574673206d696e74206e6f7420617661696c6160008201527f626c652079657400000000000000000000000000000000000000000000000000602082015250565b60006146a2602783613667565b91506146ad82614646565b604082019050919050565b600060208201905081810360008301526146d181614695565b9050919050565b7f4e6f7420656e6f75676820746f6b656e73206c65667420746f206d696e74207460008201527f686973206d616e79000000000000000000000000000000000000000000000000602082015250565b6000614734602883613667565b915061473f826146d8565b604082019050919050565b6000602082019050818103600083015261476381614727565b9050919050565b7f4e6f206d6f726520633356775a584a546347566a61574673206d696e7473206160008201527f7661696c61626c65000000000000000000000000000000000000000000000000602082015250565b60006147c6602883613667565b91506147d18261476a565b604082019050919050565b600060208201905081810360008301526147f5816147b9565b9050919050565b60008151905061480b81613850565b92915050565b60006020828403121561482757614826613597565b5b6000614835848285016147fc565b91505092915050565b7f596f75722077616c6c657420646f6573206e6f7420686f6c6420746865206b6560008201527f7920746f20706572666f726d696e67206120633356775a584a546347566a615760208201527f46734d696e740000000000000000000000000000000000000000000000000000604082015250565b60006148c0604683613667565b91506148cb8261483e565b606082019050919050565b600060208201905081810360008301526148ef816148b3565b9050919050565b7f596f752077656e74206f766572206d617820746f6b656e73207065722074726160008201527f6e73616374696f6e2e0000000000000000000000000000000000000000000000602082015250565b6000614952602983613667565b915061495d826148f6565b604082019050919050565b6000602082019050818103600083015261498181614945565b9050919050565b6000614993826137b1565b915061499e836137b1565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156149d7576149d66141bc565b5b828202905092915050565b7f596f752073656e742074686520696e636f727265637420616d6f756e74206f6660008201527f204554482e000000000000000000000000000000000000000000000000000000602082015250565b6000614a3e602583613667565b9150614a49826149e2565b604082019050919050565b60006020820190508181036000830152614a6d81614a31565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b6000614ad0602f83613667565b9150614adb82614a74565b604082019050919050565b60006020820190508181036000830152614aff81614ac3565b9050919050565b600081905092915050565b6000614b1c8261365c565b614b268185614b06565b9350614b36818560208601613678565b80840191505092915050565b6000614b4e8285614b11565b9150614b5a8284614b11565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000614bc2602683613667565b9150614bcd82614b66565b604082019050919050565b60006020820190508181036000830152614bf181614bb5565b9050919050565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b6000614c54602c83613667565b9150614c5f82614bf8565b604082019050919050565b60006020820190508181036000830152614c8381614c47565b9050919050565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b6000614ce6602983613667565b9150614cf182614c8a565b604082019050919050565b60006020820190508181036000830152614d1581614cd9565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000614d78602483613667565b9150614d8382614d1c565b604082019050919050565b60006020820190508181036000830152614da781614d6b565b9050919050565b6000819050919050565b614dc9614dc4826137b1565b614dae565b82525050565b60008160601b9050919050565b6000614de782614dcf565b9050919050565b6000614df982614ddc565b9050919050565b614e11614e0c82613814565b614dee565b82525050565b6000614e238287614db8565b602082019150614e338286614db8565b602082019150614e438285614e00565b601482019150614e538284614db8565b60208201915081905095945050505050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b6000614e9b601983613667565b9150614ea682614e65565b602082019050919050565b60006020820190508181036000830152614eca81614e8e565b9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b6000614f2d603283613667565b9150614f3882614ed1565b604082019050919050565b60006020820190508181036000830152614f5c81614f20565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000614f9d826137b1565b9150614fa8836137b1565b925082614fb857614fb7614f63565b5b828204905092915050565b6000614fce826137b1565b9150614fd9836137b1565b925082614fe957614fe8614f63565b5b828206905092915050565b600081519050919050565b600082825260208201905092915050565b600061501b82614ff4565b6150258185614fff565b9350615035818560208601613678565b61503e816136ab565b840191505092915050565b600060808201905061505e6000830187613826565b61506b6020830186613826565b61507860408301856138bc565b818103606083015261508a8184615010565b905095945050505050565b6000815190506150a4816135cd565b92915050565b6000602082840312156150c0576150bf613597565b5b60006150ce84828501615095565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b600061513c602083613667565b915061514782615106565b602082019050919050565b6000602082019050818103600083015261516b8161512f565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b60006151a8601c83613667565b91506151b382615172565b602082019050919050565b600060208201905081810360008301526151d78161519b565b905091905056fea26469706673582212208cfd57efd03755f153e5a7b2c67cfd691182d08ac05c3367598db146962ad56c64736f6c63430008090033

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.