ETH Price: $3,450.03 (+0.02%)
Gas: 6 Gwei

Token

OnePixel (OP)
 

Overview

Max Total Supply

1,024 OP

Holders

303

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
memoblastingman.eth
Balance
1 OP
0x32130a7128E5E59430b26CFF4dE82EBB45B43852
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

Each pixel represents the individual citizen.. sovereign, important, unique. Alone to itself, yet connected to a vast array of other pixels, each its own sovereign. Collectively forming the great canvas of society.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
OnePixel

Compiler Version
v0.8.0+commit.c7dfd78e

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 16 : OnePixel.sol
pragma solidity ^0.8.0;

import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol";
import "@openzeppelin/contracts/utils/Counters.sol";
import "@openzeppelin/contracts/utils/math/SafeMath.sol";
import "@openzeppelin/contracts/security/ReentrancyGuard.sol";
import "./ColorGenerator.sol";

contract OnePixel is ERC721Enumerable, ReentrancyGuard {
    using ColorGenerator for ColorGenerator.Color;
    using SafeMath for uint256;
    using Counters for Counters.Counter;
    
    ColorGenerator.Color internal colorGenerator;

    Counters.Counter private _tokenIdTracker;
    uint256 public pixelPrice = 50000000000000000;
    uint256 public maxSupply = 1024;
    uint256 public bulkBuyLimit = 10;
    address public deployerAddress;
    string private baseTokenURI;
    uint256 public windowOpen; 
    
    event TokenMinted(uint256 indexed tokenId, uint256 newColor);
    event ColorChanged(uint256 indexed tokenId, uint256 oldColor, uint256 newColor);

    mapping (uint256 => uint256) internal _colors;

      constructor() ERC721("OnePixel", "OP") public {
        baseTokenURI = "https://gentle-forest-91210.herokuapp.com/metadata/";
        deployerAddress = msg.sender;
        windowOpen = 1628362800;
    }

    function mint() public payable nonReentrant {
        require(block.timestamp >= windowOpen);
        require(_tokenIdTracker.current() < maxSupply, "Total supply reached");
        _tokenIdTracker.increment();
        uint256 tokenId = _tokenIdTracker.current();
        _colors[tokenId] = colorGenerator.random();

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

        uint256 excessAmount = msg.value.sub(pixelPrice);
        if (excessAmount > 0) {
            (bool returnExcessStatus, ) = _msgSender().call{value: excessAmount}("");
            require(returnExcessStatus, "Failed to return excess.");
        }
        
        _mint(_msgSender(), tokenId);

        emit TokenMinted(tokenId, _colors[tokenId]);
        emit ColorChanged(tokenId, 0, _colors[tokenId]); 
    }

    function bulkBuy(uint256 amount) public payable nonReentrant {
        require(block.timestamp >= windowOpen);
        require(amount <= bulkBuyLimit, "Cannot bulk buy more than the preset limit");
        require(_tokenIdTracker.current().add(amount) <= maxSupply, "Total supply reached");
        
        (bool transferStatus, ) = deployerAddress.call{value:pixelPrice.mul(amount)}("");
        require(transferStatus, "Address: unable to send value, recipient may have reverted");

        uint256 excessAmount = msg.value.sub(pixelPrice.mul(amount));
        if (excessAmount > 0) {
            (bool returnExcessStatus, ) = _msgSender().call{value: excessAmount}("");
            require(returnExcessStatus, "Failed to return excess.");
        }

        for (uint256 i = 0; i < amount; i++) {
            _tokenIdTracker.increment();
            
            uint256 tokenId = _tokenIdTracker.current();
            _colors[tokenId] = colorGenerator.random();
            _mint(_msgSender(), tokenId);   
            
            emit TokenMinted(tokenId, _colors[tokenId]);
            emit ColorChanged(tokenId, 0, _colors[tokenId]); 
         
        }
        
    }

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

    function colorOf(uint256 tokenId) public view virtual returns (uint256 color) {
        return _colors[tokenId];
    }

    function changeColor(uint256 tokenId, uint256 color) public {
        require(ownerOf(tokenId) == _msgSender());
        require((color >= 0) && (color <= 7));
        
        uint256 oldColor = _colors[tokenId];
        _colors[tokenId] = color;

        emit ColorChanged(tokenId, oldColor, _colors[tokenId]); 
    }
}

File 2 of 16 : ERC721Enumerable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

File 3 of 16 : Counters.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

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

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

File 4 of 16 : SafeMath.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

File 5 of 16 : ReentrancyGuard.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

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

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

        _;

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

File 6 of 16 : ColorGenerator.sol
// SPDX-License-Identifier: UNLICENSED
pragma solidity ^0.8.0;

library ColorGenerator {

    struct Color {
		uint256 id;
    }

    function random(Color storage g) internal returns (uint256) {
		g.id = uint256(keccak256(abi.encodePacked(g.id, gasleft(), block.timestamp))) % 8;
		return g.id;
    }

}

File 7 of 16 : ERC721.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        require(operator != _msgSender(), "ERC721: approve to caller");

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

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

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

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

pragma solidity ^0.8.0;

import "../IERC721.sol";

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

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

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

File 9 of 16 : IERC721.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

File 11 of 16 : IERC721Metadata.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "../IERC721.sol";

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

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

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

File 12 of 16 : Address.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    function _verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) private pure returns (bytes memory) {
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly

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

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

pragma solidity ^0.8.0;

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

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

File 14 of 16 : Strings.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

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

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

File 15 of 16 : ERC165.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./IERC165.sol";

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

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

pragma solidity ^0.8.0;

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

Settings
{
  "optimizer": {
    "enabled": false,
    "runs": 200
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "abi"
      ]
    }
  },
  "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":"uint256","name":"tokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"oldColor","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"newColor","type":"uint256"}],"name":"ColorChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"newColor","type":"uint256"}],"name":"TokenMinted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"bulkBuy","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"bulkBuyLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"uint256","name":"color","type":"uint256"}],"name":"changeColor","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"colorOf","outputs":[{"internalType":"uint256","name":"color","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"deployerAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"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":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pixelPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"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":[],"name":"windowOpen","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"}]

608060405266b1a2bc2ec50000600d55610400600e55600a600f553480156200002757600080fd5b506040518060400160405280600881526020017f4f6e65506978656c0000000000000000000000000000000000000000000000008152506040518060400160405280600281526020017f4f500000000000000000000000000000000000000000000000000000000000008152508160009080519060200190620000ac92919062000154565b508060019080519060200190620000c592919062000154565b5050506001600a8190555060405180606001604052806033815260200162003ff860339139601190805190602001906200010192919062000154565b5033601060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555063610ed83060128190555062000269565b828054620001629062000204565b90600052602060002090601f016020900481019282620001865760008555620001d2565b82601f10620001a157805160ff1916838001178555620001d2565b82800160010185558215620001d2579182015b82811115620001d1578251825591602001919060010190620001b4565b5b509050620001e19190620001e5565b5090565b5b8082111562000200576000816000905550600101620001e6565b5090565b600060028204905060018216806200021d57607f821691505b602082108114156200023457620002336200023a565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b613d7f80620002796000396000f3fe6080604052600436106101665760003560e01c806370a08231116100d1578063d5a83d3e1161008a578063e985e9c511610064578063e985e9c514610546578063efdee94f14610583578063fa61dff4146105ae578063ffb87173146105d957610166565b8063d5a83d3e146104d6578063d5abeb01146104f2578063e45ad2001461051d57610166565b806370a08231146103b457806395d89b41146103f1578063a22cb4651461041c578063a49bccca14610445578063b88d4fde14610470578063c87b56dd1461049957610166565b80632399472911610123578063239947291461026e57806323b872dd146102ab5780632f745c59146102d457806342842e0e146103115780634f6ccce71461033a5780636352211e1461037757610166565b806301ffc9a71461016b57806306fdde03146101a8578063081812fc146101d3578063095ea7b3146102105780631249c58b1461023957806318160ddd14610243575b600080fd5b34801561017757600080fd5b50610192600480360381019061018d9190612b76565b610604565b60405161019f9190613594565b60405180910390f35b3480156101b457600080fd5b506101bd61067e565b6040516101ca91906135d8565b60405180910390f35b3480156101df57600080fd5b506101fa60048036038101906101f59190612bc8565b610710565b604051610207919061352d565b60405180910390f35b34801561021c57600080fd5b5061023760048036038101906102329190612b3a565b610795565b005b6102416108ad565b005b34801561024f57600080fd5b50610258610bee565b604051610265919061389a565b60405180910390f35b34801561027a57600080fd5b5061029560048036038101906102909190612bc8565b610bfb565b6040516102a2919061389a565b60405180910390f35b3480156102b757600080fd5b506102d260048036038101906102cd9190612a34565b610c18565b005b3480156102e057600080fd5b506102fb60048036038101906102f69190612b3a565b610c78565b604051610308919061389a565b60405180910390f35b34801561031d57600080fd5b5061033860048036038101906103339190612a34565b610d1d565b005b34801561034657600080fd5b50610361600480360381019061035c9190612bc8565b610d3d565b60405161036e919061389a565b60405180910390f35b34801561038357600080fd5b5061039e60048036038101906103999190612bc8565b610dd4565b6040516103ab919061352d565b60405180910390f35b3480156103c057600080fd5b506103db60048036038101906103d691906129cf565b610e86565b6040516103e8919061389a565b60405180910390f35b3480156103fd57600080fd5b50610406610f3e565b60405161041391906135d8565b60405180910390f35b34801561042857600080fd5b50610443600480360381019061043e9190612afe565b610fd0565b005b34801561045157600080fd5b5061045a611151565b604051610467919061389a565b60405180910390f35b34801561047c57600080fd5b5061049760048036038101906104929190612a83565b611157565b005b3480156104a557600080fd5b506104c060048036038101906104bb9190612bc8565b6111b9565b6040516104cd91906135d8565b60405180910390f35b6104f060048036038101906104eb9190612bc8565b611260565b005b3480156104fe57600080fd5b5061050761163d565b604051610514919061389a565b60405180910390f35b34801561052957600080fd5b50610544600480360381019061053f9190612bf1565b611643565b005b34801561055257600080fd5b5061056d600480360381019061056891906129f8565b611727565b60405161057a9190613594565b60405180910390f35b34801561058f57600080fd5b506105986117bb565b6040516105a5919061352d565b60405180910390f35b3480156105ba57600080fd5b506105c36117e1565b6040516105d0919061389a565b60405180910390f35b3480156105e557600080fd5b506105ee6117e7565b6040516105fb919061389a565b60405180910390f35b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806106775750610676826117ed565b5b9050919050565b60606000805461068d90613b6a565b80601f01602080910402602001604051908101604052809291908181526020018280546106b990613b6a565b80156107065780601f106106db57610100808354040283529160200191610706565b820191906000526020600020905b8154815290600101906020018083116106e957829003601f168201915b5050505050905090565b600061071b826118cf565b61075a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610751906137ba565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006107a082610dd4565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610811576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108089061381a565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1661083061193b565b73ffffffffffffffffffffffffffffffffffffffff16148061085f575061085e8161085961193b565b611727565b5b61089e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108959061373a565b60405180910390fd5b6108a88383611943565b505050565b6002600a5414156108f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108ea9061387a565b60405180910390fd5b6002600a8190555060125442101561090a57600080fd5b600e54610917600c6119fc565b10610957576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161094e9061367a565b60405180910390fd5b610961600c611a0a565b600061096d600c6119fc565b9050610979600b611a20565b60136000838152602001908152602001600020819055506000601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16600d546040516109da906134db565b60006040518083038185875af1925050503d8060008114610a17576040519150601f19603f3d011682016040523d82523d6000602084013e610a1c565b606091505b5050905080610a60576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a57906136fa565b60405180910390fd5b6000610a77600d5434611a7490919063ffffffff16565b90506000811115610b37576000610a8c61193b565b73ffffffffffffffffffffffffffffffffffffffff1682604051610aaf906134db565b60006040518083038185875af1925050503d8060008114610aec576040519150601f19603f3d011682016040523d82523d6000602084013e610af1565b606091505b5050905080610b35576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b2c906135fa565b60405180910390fd5b505b610b48610b4261193b565b84611a8a565b827f5f7666687319b40936f33c188908d86aea154abd3f4127b4fa0a3f04f303c7da6013600086815260200190815260200160002054604051610b8b919061389a565b60405180910390a2827fe4384a54d93bde17f0f7edd5f7fe637b041a848a60262f9a1bf36c4747e36c1960006013600087815260200190815260200160002054604051610bd99291906135af565b60405180910390a25050506001600a81905550565b6000600880549050905090565b600060136000838152602001908152602001600020549050919050565b610c29610c2361193b565b82611c58565b610c68576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c5f9061383a565b60405180910390fd5b610c73838383611d36565b505050565b6000610c8383610e86565b8210610cc4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cbb9061361a565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b610d3883838360405180602001604052806000815250611157565b505050565b6000610d47610bee565b8210610d88576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d7f9061385a565b60405180910390fd5b60088281548110610dc2577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001549050919050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610e7d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e749061377a565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610ef7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eee9061375a565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b606060018054610f4d90613b6a565b80601f0160208091040260200160405190810160405280929190818152602001828054610f7990613b6a565b8015610fc65780601f10610f9b57610100808354040283529160200191610fc6565b820191906000526020600020905b815481529060010190602001808311610fa957829003601f168201915b5050505050905090565b610fd861193b565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611046576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161103d906136ba565b60405180910390fd5b806005600061105361193b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661110061193b565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516111459190613594565b60405180910390a35050565b600f5481565b61116861116261193b565b83611c58565b6111a7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161119e9061383a565b60405180910390fd5b6111b384848484611f92565b50505050565b60606111c4826118cf565b611203576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111fa906137fa565b60405180910390fd5b600061120d611fee565b9050600081511161122d5760405180602001604052806000815250611258565b8061123784612080565b6040516020016112489291906134b7565b6040516020818303038152906040525b915050919050565b6002600a5414156112a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161129d9061387a565b60405180910390fd5b6002600a819055506012544210156112bd57600080fd5b600f54811115611302576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112f9906136da565b60405180910390fd5b600e5461132182611313600c6119fc565b61222d90919063ffffffff16565b1115611362576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113599061367a565b60405180910390fd5b6000601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166113b283600d5461224390919063ffffffff16565b6040516113be906134db565b60006040518083038185875af1925050503d80600081146113fb576040519150601f19603f3d011682016040523d82523d6000602084013e611400565b606091505b5050905080611444576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161143b906136fa565b60405180910390fd5b600061146d61145e84600d5461224390919063ffffffff16565b34611a7490919063ffffffff16565b9050600081111561152d57600061148261193b565b73ffffffffffffffffffffffffffffffffffffffff16826040516114a5906134db565b60006040518083038185875af1925050503d80600081146114e2576040519150601f19603f3d011682016040523d82523d6000602084013e6114e7565b606091505b505090508061152b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611522906135fa565b60405180910390fd5b505b60005b8381101561162f57611542600c611a0a565b600061154e600c6119fc565b905061155a600b611a20565b601360008381526020019081526020016000208190555061158261157c61193b565b82611a8a565b807f5f7666687319b40936f33c188908d86aea154abd3f4127b4fa0a3f04f303c7da60136000848152602001908152602001600020546040516115c5919061389a565b60405180910390a2807fe4384a54d93bde17f0f7edd5f7fe637b041a848a60262f9a1bf36c4747e36c19600060136000858152602001908152602001600020546040516116139291906135af565b60405180910390a250808061162790613b9c565b915050611530565b5050506001600a8190555050565b600e5481565b61164b61193b565b73ffffffffffffffffffffffffffffffffffffffff1661166a83610dd4565b73ffffffffffffffffffffffffffffffffffffffff161461168a57600080fd5b6000811015801561169c575060078111155b6116a557600080fd5b600060136000848152602001908152602001600020549050816013600085815260200190815260200160002081905550827fe4384a54d93bde17f0f7edd5f7fe637b041a848a60262f9a1bf36c4747e36c1982601360008781526020019081526020016000205460405161171a9291906138b5565b60405180910390a2505050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60125481565b600d5481565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806118b857507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806118c857506118c782612259565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166119b683610dd4565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600081600001549050919050565b6001816000016000828254019250508190555050565b6000600882600001545a42604051602001611a3d939291906134f0565b6040516020818303038152906040528051906020012060001c611a609190613bef565b826000018190555081600001549050919050565b60008183611a829190613a6e565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611afa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611af19061379a565b60405180910390fd5b611b03816118cf565b15611b43576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b3a9061365a565b60405180910390fd5b611b4f600083836122c3565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611b9f919061398d565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b6000611c63826118cf565b611ca2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c999061371a565b60405180910390fd5b6000611cad83610dd4565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611d1c57508373ffffffffffffffffffffffffffffffffffffffff16611d0484610710565b73ffffffffffffffffffffffffffffffffffffffff16145b80611d2d5750611d2c8185611727565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611d5682610dd4565b73ffffffffffffffffffffffffffffffffffffffff1614611dac576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611da3906137da565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611e1c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e139061369a565b60405180910390fd5b611e278383836122c3565b611e32600082611943565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611e829190613a6e565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611ed9919061398d565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b611f9d848484611d36565b611fa9848484846123d7565b611fe8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fdf9061363a565b60405180910390fd5b50505050565b606060118054611ffd90613b6a565b80601f016020809104026020016040519081016040528092919081815260200182805461202990613b6a565b80156120765780601f1061204b57610100808354040283529160200191612076565b820191906000526020600020905b81548152906001019060200180831161205957829003601f168201915b5050505050905090565b606060008214156120c8576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612228565b600082905060005b600082146120fa5780806120e390613b9c565b915050600a826120f391906139e3565b91506120d0565b60008167ffffffffffffffff81111561213c577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f19166020018201604052801561216e5781602001600182028036833780820191505090505b5090505b60008514612221576001826121879190613a6e565b9150600a856121969190613bef565b60306121a2919061398d565b60f81b8183815181106121de577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561221a91906139e3565b9450612172565b8093505050505b919050565b6000818361223b919061398d565b905092915050565b600081836122519190613a14565b905092915050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6122ce83838361256e565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156123115761230c81612573565b612350565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161461234f5761234e83826125bc565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156123935761238e81612729565b6123d2565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16146123d1576123d0828261286c565b5b5b505050565b60006123f88473ffffffffffffffffffffffffffffffffffffffff166128eb565b15612561578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261242161193b565b8786866040518563ffffffff1660e01b81526004016124439493929190613548565b602060405180830381600087803b15801561245d57600080fd5b505af192505050801561248e57506040513d601f19601f8201168201806040525081019061248b9190612b9f565b60015b612511573d80600081146124be576040519150601f19603f3d011682016040523d82523d6000602084013e6124c3565b606091505b50600081511415612509576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125009061363a565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612566565b600190505b949350505050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b600060016125c984610e86565b6125d39190613a6e565b90506000600760008481526020019081526020016000205490508181146126b8576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b6000600160088054905061273d9190613a6e565b9050600060096000848152602001908152602001600020549050600060088381548110612793577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200154905080600883815481106127db577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020018190555081600960008381526020019081526020016000208190555060096000858152602001908152602001600020600090556008805480612850577f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b600061287783610e86565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600080823b905060008111915050919050565b600061291161290c8461390f565b6138de565b90508281526020810184848401111561292957600080fd5b612934848285613b28565b509392505050565b60008135905061294b81613ced565b92915050565b60008135905061296081613d04565b92915050565b60008135905061297581613d1b565b92915050565b60008151905061298a81613d1b565b92915050565b600082601f8301126129a157600080fd5b81356129b18482602086016128fe565b91505092915050565b6000813590506129c981613d32565b92915050565b6000602082840312156129e157600080fd5b60006129ef8482850161293c565b91505092915050565b60008060408385031215612a0b57600080fd5b6000612a198582860161293c565b9250506020612a2a8582860161293c565b9150509250929050565b600080600060608486031215612a4957600080fd5b6000612a578682870161293c565b9350506020612a688682870161293c565b9250506040612a79868287016129ba565b9150509250925092565b60008060008060808587031215612a9957600080fd5b6000612aa78782880161293c565b9450506020612ab88782880161293c565b9350506040612ac9878288016129ba565b925050606085013567ffffffffffffffff811115612ae657600080fd5b612af287828801612990565b91505092959194509250565b60008060408385031215612b1157600080fd5b6000612b1f8582860161293c565b9250506020612b3085828601612951565b9150509250929050565b60008060408385031215612b4d57600080fd5b6000612b5b8582860161293c565b9250506020612b6c858286016129ba565b9150509250929050565b600060208284031215612b8857600080fd5b6000612b9684828501612966565b91505092915050565b600060208284031215612bb157600080fd5b6000612bbf8482850161297b565b91505092915050565b600060208284031215612bda57600080fd5b6000612be8848285016129ba565b91505092915050565b60008060408385031215612c0457600080fd5b6000612c12858286016129ba565b9250506020612c23858286016129ba565b9150509250929050565b612c3681613aa2565b82525050565b612c4581613ab4565b82525050565b6000612c568261393f565b612c608185613955565b9350612c70818560208601613b37565b612c7981613cdc565b840191505092915050565b612c8d81613b16565b82525050565b6000612c9e8261394a565b612ca88185613971565b9350612cb8818560208601613b37565b612cc181613cdc565b840191505092915050565b6000612cd78261394a565b612ce18185613982565b9350612cf1818560208601613b37565b80840191505092915050565b6000612d0a601883613971565b91507f4661696c656420746f2072657475726e206578636573732e00000000000000006000830152602082019050919050565b6000612d4a602b83613971565b91507f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008301527f74206f6620626f756e64730000000000000000000000000000000000000000006020830152604082019050919050565b6000612db0603283613971565b91507f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008301527f63656976657220696d706c656d656e74657200000000000000000000000000006020830152604082019050919050565b6000612e16601c83613971565b91507f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006000830152602082019050919050565b6000612e56601483613971565b91507f546f74616c20737570706c7920726561636865640000000000000000000000006000830152602082019050919050565b6000612e96602483613971565b91507f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000612efc601983613971565b91507f4552433732313a20617070726f766520746f2063616c6c6572000000000000006000830152602082019050919050565b6000612f3c602a83613971565b91507f43616e6e6f742062756c6b20627579206d6f7265207468616e2074686520707260008301527f65736574206c696d6974000000000000000000000000000000000000000000006020830152604082019050919050565b6000612fa2603a83613971565b91507f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260008301527f6563697069656e74206d617920686176652072657665727465640000000000006020830152604082019050919050565b6000613008602c83613971565b91507f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b600061306e603883613971565b91507f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008301527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006020830152604082019050919050565b60006130d4602a83613971565b91507f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008301527f726f2061646472657373000000000000000000000000000000000000000000006020830152604082019050919050565b600061313a602983613971565b91507f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008301527f656e7420746f6b656e00000000000000000000000000000000000000000000006020830152604082019050919050565b60006131a0602083613971565b91507f4552433732313a206d696e7420746f20746865207a65726f20616464726573736000830152602082019050919050565b60006131e0602c83613971565b91507f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b6000613246602983613971565b91507f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008301527f73206e6f74206f776e00000000000000000000000000000000000000000000006020830152604082019050919050565b60006132ac602f83613971565b91507f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008301527f6e6578697374656e7420746f6b656e00000000000000000000000000000000006020830152604082019050919050565b6000613312602183613971565b91507f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008301527f72000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613378600083613966565b9150600082019050919050565b6000613392603183613971565b91507f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008301527f776e6572206e6f7220617070726f7665640000000000000000000000000000006020830152604082019050919050565b60006133f8602c83613971565b91507f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008301527f7574206f6620626f756e647300000000000000000000000000000000000000006020830152604082019050919050565b600061345e601f83613971565b91507f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006000830152602082019050919050565b61349a81613b0c565b82525050565b6134b16134ac82613b0c565b613be5565b82525050565b60006134c38285612ccc565b91506134cf8284612ccc565b91508190509392505050565b60006134e68261336b565b9150819050919050565b60006134fc82866134a0565b60208201915061350c82856134a0565b60208201915061351c82846134a0565b602082019150819050949350505050565b60006020820190506135426000830184612c2d565b92915050565b600060808201905061355d6000830187612c2d565b61356a6020830186612c2d565b6135776040830185613491565b81810360608301526135898184612c4b565b905095945050505050565b60006020820190506135a96000830184612c3c565b92915050565b60006040820190506135c46000830185612c84565b6135d16020830184613491565b9392505050565b600060208201905081810360008301526135f28184612c93565b905092915050565b6000602082019050818103600083015261361381612cfd565b9050919050565b6000602082019050818103600083015261363381612d3d565b9050919050565b6000602082019050818103600083015261365381612da3565b9050919050565b6000602082019050818103600083015261367381612e09565b9050919050565b6000602082019050818103600083015261369381612e49565b9050919050565b600060208201905081810360008301526136b381612e89565b9050919050565b600060208201905081810360008301526136d381612eef565b9050919050565b600060208201905081810360008301526136f381612f2f565b9050919050565b6000602082019050818103600083015261371381612f95565b9050919050565b6000602082019050818103600083015261373381612ffb565b9050919050565b6000602082019050818103600083015261375381613061565b9050919050565b60006020820190508181036000830152613773816130c7565b9050919050565b600060208201905081810360008301526137938161312d565b9050919050565b600060208201905081810360008301526137b381613193565b9050919050565b600060208201905081810360008301526137d3816131d3565b9050919050565b600060208201905081810360008301526137f381613239565b9050919050565b600060208201905081810360008301526138138161329f565b9050919050565b6000602082019050818103600083015261383381613305565b9050919050565b6000602082019050818103600083015261385381613385565b9050919050565b60006020820190508181036000830152613873816133eb565b9050919050565b6000602082019050818103600083015261389381613451565b9050919050565b60006020820190506138af6000830184613491565b92915050565b60006040820190506138ca6000830185613491565b6138d76020830184613491565b9392505050565b6000604051905081810181811067ffffffffffffffff8211171561390557613904613cad565b5b8060405250919050565b600067ffffffffffffffff82111561392a57613929613cad565b5b601f19601f8301169050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b600061399882613b0c565b91506139a383613b0c565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156139d8576139d7613c20565b5b828201905092915050565b60006139ee82613b0c565b91506139f983613b0c565b925082613a0957613a08613c4f565b5b828204905092915050565b6000613a1f82613b0c565b9150613a2a83613b0c565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613a6357613a62613c20565b5b828202905092915050565b6000613a7982613b0c565b9150613a8483613b0c565b925082821015613a9757613a96613c20565b5b828203905092915050565b6000613aad82613aec565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b6000613b2182613b0c565b9050919050565b82818337600083830152505050565b60005b83811015613b55578082015181840152602081019050613b3a565b83811115613b64576000848401525b50505050565b60006002820490506001821680613b8257607f821691505b60208210811415613b9657613b95613c7e565b5b50919050565b6000613ba782613b0c565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613bda57613bd9613c20565b5b600182019050919050565b6000819050919050565b6000613bfa82613b0c565b9150613c0583613b0c565b925082613c1557613c14613c4f565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b613cf681613aa2565b8114613d0157600080fd5b50565b613d0d81613ab4565b8114613d1857600080fd5b50565b613d2481613ac0565b8114613d2f57600080fd5b50565b613d3b81613b0c565b8114613d4657600080fd5b5056fea2646970667358221220fdf71c77439406b158237747df606cd7fdd8a5d20f70b6c0eb8857829413346864736f6c6343000800003368747470733a2f2f67656e746c652d666f726573742d39313231302e6865726f6b756170702e636f6d2f6d657461646174612f

Deployed Bytecode

0x6080604052600436106101665760003560e01c806370a08231116100d1578063d5a83d3e1161008a578063e985e9c511610064578063e985e9c514610546578063efdee94f14610583578063fa61dff4146105ae578063ffb87173146105d957610166565b8063d5a83d3e146104d6578063d5abeb01146104f2578063e45ad2001461051d57610166565b806370a08231146103b457806395d89b41146103f1578063a22cb4651461041c578063a49bccca14610445578063b88d4fde14610470578063c87b56dd1461049957610166565b80632399472911610123578063239947291461026e57806323b872dd146102ab5780632f745c59146102d457806342842e0e146103115780634f6ccce71461033a5780636352211e1461037757610166565b806301ffc9a71461016b57806306fdde03146101a8578063081812fc146101d3578063095ea7b3146102105780631249c58b1461023957806318160ddd14610243575b600080fd5b34801561017757600080fd5b50610192600480360381019061018d9190612b76565b610604565b60405161019f9190613594565b60405180910390f35b3480156101b457600080fd5b506101bd61067e565b6040516101ca91906135d8565b60405180910390f35b3480156101df57600080fd5b506101fa60048036038101906101f59190612bc8565b610710565b604051610207919061352d565b60405180910390f35b34801561021c57600080fd5b5061023760048036038101906102329190612b3a565b610795565b005b6102416108ad565b005b34801561024f57600080fd5b50610258610bee565b604051610265919061389a565b60405180910390f35b34801561027a57600080fd5b5061029560048036038101906102909190612bc8565b610bfb565b6040516102a2919061389a565b60405180910390f35b3480156102b757600080fd5b506102d260048036038101906102cd9190612a34565b610c18565b005b3480156102e057600080fd5b506102fb60048036038101906102f69190612b3a565b610c78565b604051610308919061389a565b60405180910390f35b34801561031d57600080fd5b5061033860048036038101906103339190612a34565b610d1d565b005b34801561034657600080fd5b50610361600480360381019061035c9190612bc8565b610d3d565b60405161036e919061389a565b60405180910390f35b34801561038357600080fd5b5061039e60048036038101906103999190612bc8565b610dd4565b6040516103ab919061352d565b60405180910390f35b3480156103c057600080fd5b506103db60048036038101906103d691906129cf565b610e86565b6040516103e8919061389a565b60405180910390f35b3480156103fd57600080fd5b50610406610f3e565b60405161041391906135d8565b60405180910390f35b34801561042857600080fd5b50610443600480360381019061043e9190612afe565b610fd0565b005b34801561045157600080fd5b5061045a611151565b604051610467919061389a565b60405180910390f35b34801561047c57600080fd5b5061049760048036038101906104929190612a83565b611157565b005b3480156104a557600080fd5b506104c060048036038101906104bb9190612bc8565b6111b9565b6040516104cd91906135d8565b60405180910390f35b6104f060048036038101906104eb9190612bc8565b611260565b005b3480156104fe57600080fd5b5061050761163d565b604051610514919061389a565b60405180910390f35b34801561052957600080fd5b50610544600480360381019061053f9190612bf1565b611643565b005b34801561055257600080fd5b5061056d600480360381019061056891906129f8565b611727565b60405161057a9190613594565b60405180910390f35b34801561058f57600080fd5b506105986117bb565b6040516105a5919061352d565b60405180910390f35b3480156105ba57600080fd5b506105c36117e1565b6040516105d0919061389a565b60405180910390f35b3480156105e557600080fd5b506105ee6117e7565b6040516105fb919061389a565b60405180910390f35b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806106775750610676826117ed565b5b9050919050565b60606000805461068d90613b6a565b80601f01602080910402602001604051908101604052809291908181526020018280546106b990613b6a565b80156107065780601f106106db57610100808354040283529160200191610706565b820191906000526020600020905b8154815290600101906020018083116106e957829003601f168201915b5050505050905090565b600061071b826118cf565b61075a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610751906137ba565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006107a082610dd4565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610811576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108089061381a565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1661083061193b565b73ffffffffffffffffffffffffffffffffffffffff16148061085f575061085e8161085961193b565b611727565b5b61089e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108959061373a565b60405180910390fd5b6108a88383611943565b505050565b6002600a5414156108f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108ea9061387a565b60405180910390fd5b6002600a8190555060125442101561090a57600080fd5b600e54610917600c6119fc565b10610957576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161094e9061367a565b60405180910390fd5b610961600c611a0a565b600061096d600c6119fc565b9050610979600b611a20565b60136000838152602001908152602001600020819055506000601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16600d546040516109da906134db565b60006040518083038185875af1925050503d8060008114610a17576040519150601f19603f3d011682016040523d82523d6000602084013e610a1c565b606091505b5050905080610a60576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a57906136fa565b60405180910390fd5b6000610a77600d5434611a7490919063ffffffff16565b90506000811115610b37576000610a8c61193b565b73ffffffffffffffffffffffffffffffffffffffff1682604051610aaf906134db565b60006040518083038185875af1925050503d8060008114610aec576040519150601f19603f3d011682016040523d82523d6000602084013e610af1565b606091505b5050905080610b35576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b2c906135fa565b60405180910390fd5b505b610b48610b4261193b565b84611a8a565b827f5f7666687319b40936f33c188908d86aea154abd3f4127b4fa0a3f04f303c7da6013600086815260200190815260200160002054604051610b8b919061389a565b60405180910390a2827fe4384a54d93bde17f0f7edd5f7fe637b041a848a60262f9a1bf36c4747e36c1960006013600087815260200190815260200160002054604051610bd99291906135af565b60405180910390a25050506001600a81905550565b6000600880549050905090565b600060136000838152602001908152602001600020549050919050565b610c29610c2361193b565b82611c58565b610c68576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c5f9061383a565b60405180910390fd5b610c73838383611d36565b505050565b6000610c8383610e86565b8210610cc4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cbb9061361a565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b610d3883838360405180602001604052806000815250611157565b505050565b6000610d47610bee565b8210610d88576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d7f9061385a565b60405180910390fd5b60088281548110610dc2577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001549050919050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610e7d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e749061377a565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610ef7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eee9061375a565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b606060018054610f4d90613b6a565b80601f0160208091040260200160405190810160405280929190818152602001828054610f7990613b6a565b8015610fc65780601f10610f9b57610100808354040283529160200191610fc6565b820191906000526020600020905b815481529060010190602001808311610fa957829003601f168201915b5050505050905090565b610fd861193b565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611046576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161103d906136ba565b60405180910390fd5b806005600061105361193b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661110061193b565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516111459190613594565b60405180910390a35050565b600f5481565b61116861116261193b565b83611c58565b6111a7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161119e9061383a565b60405180910390fd5b6111b384848484611f92565b50505050565b60606111c4826118cf565b611203576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111fa906137fa565b60405180910390fd5b600061120d611fee565b9050600081511161122d5760405180602001604052806000815250611258565b8061123784612080565b6040516020016112489291906134b7565b6040516020818303038152906040525b915050919050565b6002600a5414156112a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161129d9061387a565b60405180910390fd5b6002600a819055506012544210156112bd57600080fd5b600f54811115611302576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112f9906136da565b60405180910390fd5b600e5461132182611313600c6119fc565b61222d90919063ffffffff16565b1115611362576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113599061367a565b60405180910390fd5b6000601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166113b283600d5461224390919063ffffffff16565b6040516113be906134db565b60006040518083038185875af1925050503d80600081146113fb576040519150601f19603f3d011682016040523d82523d6000602084013e611400565b606091505b5050905080611444576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161143b906136fa565b60405180910390fd5b600061146d61145e84600d5461224390919063ffffffff16565b34611a7490919063ffffffff16565b9050600081111561152d57600061148261193b565b73ffffffffffffffffffffffffffffffffffffffff16826040516114a5906134db565b60006040518083038185875af1925050503d80600081146114e2576040519150601f19603f3d011682016040523d82523d6000602084013e6114e7565b606091505b505090508061152b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611522906135fa565b60405180910390fd5b505b60005b8381101561162f57611542600c611a0a565b600061154e600c6119fc565b905061155a600b611a20565b601360008381526020019081526020016000208190555061158261157c61193b565b82611a8a565b807f5f7666687319b40936f33c188908d86aea154abd3f4127b4fa0a3f04f303c7da60136000848152602001908152602001600020546040516115c5919061389a565b60405180910390a2807fe4384a54d93bde17f0f7edd5f7fe637b041a848a60262f9a1bf36c4747e36c19600060136000858152602001908152602001600020546040516116139291906135af565b60405180910390a250808061162790613b9c565b915050611530565b5050506001600a8190555050565b600e5481565b61164b61193b565b73ffffffffffffffffffffffffffffffffffffffff1661166a83610dd4565b73ffffffffffffffffffffffffffffffffffffffff161461168a57600080fd5b6000811015801561169c575060078111155b6116a557600080fd5b600060136000848152602001908152602001600020549050816013600085815260200190815260200160002081905550827fe4384a54d93bde17f0f7edd5f7fe637b041a848a60262f9a1bf36c4747e36c1982601360008781526020019081526020016000205460405161171a9291906138b5565b60405180910390a2505050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60125481565b600d5481565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806118b857507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806118c857506118c782612259565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166119b683610dd4565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600081600001549050919050565b6001816000016000828254019250508190555050565b6000600882600001545a42604051602001611a3d939291906134f0565b6040516020818303038152906040528051906020012060001c611a609190613bef565b826000018190555081600001549050919050565b60008183611a829190613a6e565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611afa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611af19061379a565b60405180910390fd5b611b03816118cf565b15611b43576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b3a9061365a565b60405180910390fd5b611b4f600083836122c3565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611b9f919061398d565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b6000611c63826118cf565b611ca2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c999061371a565b60405180910390fd5b6000611cad83610dd4565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611d1c57508373ffffffffffffffffffffffffffffffffffffffff16611d0484610710565b73ffffffffffffffffffffffffffffffffffffffff16145b80611d2d5750611d2c8185611727565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611d5682610dd4565b73ffffffffffffffffffffffffffffffffffffffff1614611dac576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611da3906137da565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611e1c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e139061369a565b60405180910390fd5b611e278383836122c3565b611e32600082611943565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611e829190613a6e565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611ed9919061398d565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b611f9d848484611d36565b611fa9848484846123d7565b611fe8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fdf9061363a565b60405180910390fd5b50505050565b606060118054611ffd90613b6a565b80601f016020809104026020016040519081016040528092919081815260200182805461202990613b6a565b80156120765780601f1061204b57610100808354040283529160200191612076565b820191906000526020600020905b81548152906001019060200180831161205957829003601f168201915b5050505050905090565b606060008214156120c8576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612228565b600082905060005b600082146120fa5780806120e390613b9c565b915050600a826120f391906139e3565b91506120d0565b60008167ffffffffffffffff81111561213c577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f19166020018201604052801561216e5781602001600182028036833780820191505090505b5090505b60008514612221576001826121879190613a6e565b9150600a856121969190613bef565b60306121a2919061398d565b60f81b8183815181106121de577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561221a91906139e3565b9450612172565b8093505050505b919050565b6000818361223b919061398d565b905092915050565b600081836122519190613a14565b905092915050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6122ce83838361256e565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156123115761230c81612573565b612350565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161461234f5761234e83826125bc565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156123935761238e81612729565b6123d2565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16146123d1576123d0828261286c565b5b5b505050565b60006123f88473ffffffffffffffffffffffffffffffffffffffff166128eb565b15612561578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261242161193b565b8786866040518563ffffffff1660e01b81526004016124439493929190613548565b602060405180830381600087803b15801561245d57600080fd5b505af192505050801561248e57506040513d601f19601f8201168201806040525081019061248b9190612b9f565b60015b612511573d80600081146124be576040519150601f19603f3d011682016040523d82523d6000602084013e6124c3565b606091505b50600081511415612509576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125009061363a565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612566565b600190505b949350505050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b600060016125c984610e86565b6125d39190613a6e565b90506000600760008481526020019081526020016000205490508181146126b8576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b6000600160088054905061273d9190613a6e565b9050600060096000848152602001908152602001600020549050600060088381548110612793577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200154905080600883815481106127db577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020018190555081600960008381526020019081526020016000208190555060096000858152602001908152602001600020600090556008805480612850577f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b600061287783610e86565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600080823b905060008111915050919050565b600061291161290c8461390f565b6138de565b90508281526020810184848401111561292957600080fd5b612934848285613b28565b509392505050565b60008135905061294b81613ced565b92915050565b60008135905061296081613d04565b92915050565b60008135905061297581613d1b565b92915050565b60008151905061298a81613d1b565b92915050565b600082601f8301126129a157600080fd5b81356129b18482602086016128fe565b91505092915050565b6000813590506129c981613d32565b92915050565b6000602082840312156129e157600080fd5b60006129ef8482850161293c565b91505092915050565b60008060408385031215612a0b57600080fd5b6000612a198582860161293c565b9250506020612a2a8582860161293c565b9150509250929050565b600080600060608486031215612a4957600080fd5b6000612a578682870161293c565b9350506020612a688682870161293c565b9250506040612a79868287016129ba565b9150509250925092565b60008060008060808587031215612a9957600080fd5b6000612aa78782880161293c565b9450506020612ab88782880161293c565b9350506040612ac9878288016129ba565b925050606085013567ffffffffffffffff811115612ae657600080fd5b612af287828801612990565b91505092959194509250565b60008060408385031215612b1157600080fd5b6000612b1f8582860161293c565b9250506020612b3085828601612951565b9150509250929050565b60008060408385031215612b4d57600080fd5b6000612b5b8582860161293c565b9250506020612b6c858286016129ba565b9150509250929050565b600060208284031215612b8857600080fd5b6000612b9684828501612966565b91505092915050565b600060208284031215612bb157600080fd5b6000612bbf8482850161297b565b91505092915050565b600060208284031215612bda57600080fd5b6000612be8848285016129ba565b91505092915050565b60008060408385031215612c0457600080fd5b6000612c12858286016129ba565b9250506020612c23858286016129ba565b9150509250929050565b612c3681613aa2565b82525050565b612c4581613ab4565b82525050565b6000612c568261393f565b612c608185613955565b9350612c70818560208601613b37565b612c7981613cdc565b840191505092915050565b612c8d81613b16565b82525050565b6000612c9e8261394a565b612ca88185613971565b9350612cb8818560208601613b37565b612cc181613cdc565b840191505092915050565b6000612cd78261394a565b612ce18185613982565b9350612cf1818560208601613b37565b80840191505092915050565b6000612d0a601883613971565b91507f4661696c656420746f2072657475726e206578636573732e00000000000000006000830152602082019050919050565b6000612d4a602b83613971565b91507f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008301527f74206f6620626f756e64730000000000000000000000000000000000000000006020830152604082019050919050565b6000612db0603283613971565b91507f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008301527f63656976657220696d706c656d656e74657200000000000000000000000000006020830152604082019050919050565b6000612e16601c83613971565b91507f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006000830152602082019050919050565b6000612e56601483613971565b91507f546f74616c20737570706c7920726561636865640000000000000000000000006000830152602082019050919050565b6000612e96602483613971565b91507f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000612efc601983613971565b91507f4552433732313a20617070726f766520746f2063616c6c6572000000000000006000830152602082019050919050565b6000612f3c602a83613971565b91507f43616e6e6f742062756c6b20627579206d6f7265207468616e2074686520707260008301527f65736574206c696d6974000000000000000000000000000000000000000000006020830152604082019050919050565b6000612fa2603a83613971565b91507f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260008301527f6563697069656e74206d617920686176652072657665727465640000000000006020830152604082019050919050565b6000613008602c83613971565b91507f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b600061306e603883613971565b91507f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008301527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006020830152604082019050919050565b60006130d4602a83613971565b91507f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008301527f726f2061646472657373000000000000000000000000000000000000000000006020830152604082019050919050565b600061313a602983613971565b91507f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008301527f656e7420746f6b656e00000000000000000000000000000000000000000000006020830152604082019050919050565b60006131a0602083613971565b91507f4552433732313a206d696e7420746f20746865207a65726f20616464726573736000830152602082019050919050565b60006131e0602c83613971565b91507f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b6000613246602983613971565b91507f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008301527f73206e6f74206f776e00000000000000000000000000000000000000000000006020830152604082019050919050565b60006132ac602f83613971565b91507f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008301527f6e6578697374656e7420746f6b656e00000000000000000000000000000000006020830152604082019050919050565b6000613312602183613971565b91507f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008301527f72000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613378600083613966565b9150600082019050919050565b6000613392603183613971565b91507f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008301527f776e6572206e6f7220617070726f7665640000000000000000000000000000006020830152604082019050919050565b60006133f8602c83613971565b91507f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008301527f7574206f6620626f756e647300000000000000000000000000000000000000006020830152604082019050919050565b600061345e601f83613971565b91507f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006000830152602082019050919050565b61349a81613b0c565b82525050565b6134b16134ac82613b0c565b613be5565b82525050565b60006134c38285612ccc565b91506134cf8284612ccc565b91508190509392505050565b60006134e68261336b565b9150819050919050565b60006134fc82866134a0565b60208201915061350c82856134a0565b60208201915061351c82846134a0565b602082019150819050949350505050565b60006020820190506135426000830184612c2d565b92915050565b600060808201905061355d6000830187612c2d565b61356a6020830186612c2d565b6135776040830185613491565b81810360608301526135898184612c4b565b905095945050505050565b60006020820190506135a96000830184612c3c565b92915050565b60006040820190506135c46000830185612c84565b6135d16020830184613491565b9392505050565b600060208201905081810360008301526135f28184612c93565b905092915050565b6000602082019050818103600083015261361381612cfd565b9050919050565b6000602082019050818103600083015261363381612d3d565b9050919050565b6000602082019050818103600083015261365381612da3565b9050919050565b6000602082019050818103600083015261367381612e09565b9050919050565b6000602082019050818103600083015261369381612e49565b9050919050565b600060208201905081810360008301526136b381612e89565b9050919050565b600060208201905081810360008301526136d381612eef565b9050919050565b600060208201905081810360008301526136f381612f2f565b9050919050565b6000602082019050818103600083015261371381612f95565b9050919050565b6000602082019050818103600083015261373381612ffb565b9050919050565b6000602082019050818103600083015261375381613061565b9050919050565b60006020820190508181036000830152613773816130c7565b9050919050565b600060208201905081810360008301526137938161312d565b9050919050565b600060208201905081810360008301526137b381613193565b9050919050565b600060208201905081810360008301526137d3816131d3565b9050919050565b600060208201905081810360008301526137f381613239565b9050919050565b600060208201905081810360008301526138138161329f565b9050919050565b6000602082019050818103600083015261383381613305565b9050919050565b6000602082019050818103600083015261385381613385565b9050919050565b60006020820190508181036000830152613873816133eb565b9050919050565b6000602082019050818103600083015261389381613451565b9050919050565b60006020820190506138af6000830184613491565b92915050565b60006040820190506138ca6000830185613491565b6138d76020830184613491565b9392505050565b6000604051905081810181811067ffffffffffffffff8211171561390557613904613cad565b5b8060405250919050565b600067ffffffffffffffff82111561392a57613929613cad565b5b601f19601f8301169050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b600061399882613b0c565b91506139a383613b0c565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156139d8576139d7613c20565b5b828201905092915050565b60006139ee82613b0c565b91506139f983613b0c565b925082613a0957613a08613c4f565b5b828204905092915050565b6000613a1f82613b0c565b9150613a2a83613b0c565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613a6357613a62613c20565b5b828202905092915050565b6000613a7982613b0c565b9150613a8483613b0c565b925082821015613a9757613a96613c20565b5b828203905092915050565b6000613aad82613aec565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b6000613b2182613b0c565b9050919050565b82818337600083830152505050565b60005b83811015613b55578082015181840152602081019050613b3a565b83811115613b64576000848401525b50505050565b60006002820490506001821680613b8257607f821691505b60208210811415613b9657613b95613c7e565b5b50919050565b6000613ba782613b0c565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613bda57613bd9613c20565b5b600182019050919050565b6000819050919050565b6000613bfa82613b0c565b9150613c0583613b0c565b925082613c1557613c14613c4f565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b613cf681613aa2565b8114613d0157600080fd5b50565b613d0d81613ab4565b8114613d1857600080fd5b50565b613d2481613ac0565b8114613d2f57600080fd5b50565b613d3b81613b0c565b8114613d4657600080fd5b5056fea2646970667358221220fdf71c77439406b158237747df606cd7fdd8a5d20f70b6c0eb8857829413346864736f6c63430008000033

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.