ETH Price: $3,389.03 (-1.53%)
Gas: 2 Gwei

Token

(0xab49f8929f89a49227a565e92400972bc45b77af)
 

Overview

Max Total Supply

1,500 ERC-721 TOKEN*

Holders

461

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Balance
0 ERC-721 TOKEN*
0x05d7e7b644948deff6b4a26bc7c997c6f739a94a
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

Ego Fox is a 3D character project sculpted from scratch by Eigleer Nunes. All unique, only one of each, varying in style and personality; whether paying tribute to an item, icon, cultural motif or anything that creates a distinctive persona for each Fox.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
EgoFOX

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 13 : EgoFOX.sol
//                                   .-.                         
//                                  /    \                       
//      .--.     .--.     .--.      | .`. ;    .--.    ___  ___  
//     /    \   /    \   /    \     | |(___)  /    \  (   )(   ) 
//    |  .-. ; ;  ,-. ' |  .-. ;    | |_     |  .-. ;  | |  | |  
//    |  | | | | |  | | | |  | |   (   __)   | |  | |   \ `' /   
//    |  |/  | | |  | | | |  | |    | |      | |  | |   / ,. \   
//    |  ' _.' | |  | | | |  | |    | |      | |  | |  ' .  ; .  
//    |  .'.-. | '  | | | '  | |    | |      | '  | |  | |  | |  
//    '  `-' / '  `-' | '  `-' /    | |      '  `-' /  | |  | |  
//     `.__.'   `.__. |  `.__.'    (___)      `.__.'  (___)(___) 
//              ( `-' ;                                          
//               `.__.                                                                                                                                                         


// SPDX-License-Identifier: MIT
pragma solidity ^0.8.7;

import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol";
import "./ERC721A.sol";

interface IPE {
    function balanceOf(address owner) external view returns (uint256 balance);
}

contract EgoFOX is ERC721A, Ownable {

    using Strings for uint256;

    mapping (address => uint256) private mintedWL;

    uint256 public maxSupply = 2222;
    uint256 private pricePublic = 0.05 ether;
    uint256 private priceWL = 0.04 ether;    
    uint256 public maxPerTxPublic = 4;
    uint256 public maxPerWL = 10;
    
    bytes32 public merkleRoot = "";
    string private baseURI = "";
    string public provenance = "";
    string public uriNotRevealed = "";
    
    bool public paused = true;
    bool public isRevealed;
    bool private useWhitelist;

    address public pe = 0xd63DA0ce3D55f629317389c64ea8A71977420282;
    
    
    event Minted(address caller);

    constructor() ERC721A("Ego Fox", "FOX") {}
    
    function mintPublic(uint256 qty) external payable{
        require(!paused, "Minting is paused");
        require(useWhitelist == false, "Sorry, we are still on whitelist mode!");
        
        uint256 supply = totalSupply();
        require(supply + qty <= maxSupply, "Sorry, not enough left!");
        require(qty <= maxPerTxPublic, "Sorry, too many per transaction");
        require(msg.value >= pricePublic * qty, "Sorry, not enough amount sent!"); 
        
        _safeMint(msg.sender, qty);

        emit Minted(msg.sender);
    }

    // do airdrop
    function airdrop(address[] memory _addresses) external onlyOwner {
        for (uint i = 0; i < _addresses.length; i++) {
            // check balance of previous contract
            uint256 bal = IPE(pe).balanceOf(_addresses[i]);
            _safeMint(_addresses[i], bal);
        }
    }

    // revised
    function mintGiveaway(address _to, uint256 qty) external onlyOwner{
        uint256 supply = totalSupply();
        require(supply + qty <= maxSupply, "Sorry, not enough left!");
        _safeMint(_to, qty);
    }

    // whitelist mint, allows wallets on the whitelist to mint
    function mintWL(uint256 qty, bytes32[] memory proof) external payable {
        require(!paused, "Minting is paused");
        require(useWhitelist, "Whitelist sale must be active to mint.");
        
        uint256 supply = totalSupply();
        
        // check if the user was whitelisted
        bytes32 leaf = keccak256(abi.encodePacked(msg.sender));
        require(_verify(leaf, proof), "You are not whitelisted.");
        
        require(msg.value >= priceWL * qty, "Sorry, not enough amount sent!"); 
        require(mintedWL[msg.sender] + qty <= maxPerWL, "Sorry, you have reached the WL limit.");
        require(supply + qty <= maxSupply, "Sorry, not enough left!");
        require(qty <= maxPerWL, "Sorry, too many per transaction");
        
        mintedWL[msg.sender] += qty;
        _safeMint(msg.sender, qty);
        
        emit Minted(msg.sender);
    }
    
    
    function remaining() public view returns(uint256){
        uint256 left = maxSupply - totalSupply();
        return left;
    }

    function usingWhitelist() public view returns(bool) {
        return useWhitelist;
    }

    function getPriceWL() public view returns (uint256){
        return priceWL;
    }

    function getPricePublic() public view returns (uint256){
        return pricePublic;
    }
    
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token");
        if (isRevealed == false) {
            return uriNotRevealed;
        }
        string memory base = baseURI;
        return bytes(base).length > 0 ? string(abi.encodePacked(base, tokenId.toString(), ".json")) : "";
    }

    // verify merkle tree leaf
    function _verify(bytes32 leaf, bytes32[] memory proof) internal view returns (bool){
        return MerkleProof.verify(proof, merkleRoot, leaf);
    }


    // ADMIN FUNCTIONS
    

    function flipUseWhitelist() public onlyOwner {
        useWhitelist = !useWhitelist;
    }

    function flipPaused() public onlyOwner {
        paused = !paused;
    }

    // close minting forever!
    function closeMinting() public onlyOwner {
        uint256 supply = totalSupply();
        maxSupply = supply;
    }
    
    function flipRevealed(string memory _URI) public onlyOwner {
        baseURI = _URI;
        isRevealed = !isRevealed;
    }

    function setMaxPerWL(uint256 _max) public onlyOwner {
        maxPerWL = _max;
    }

    function setBaseURI(string memory _URI) public onlyOwner {
        baseURI = _URI;
    }

    function setUriNotRevealed(string memory _URI) public onlyOwner {
        uriNotRevealed = _URI;
    }

    function setPriceWL(uint256 _newPrice) public onlyOwner {
        priceWL = _newPrice;
    }

    function setPricePublic(uint256 _newPrice) public onlyOwner {
        pricePublic = _newPrice;
    }

    function setMaxPerTx(uint256 _newMax) public onlyOwner {
        maxPerTxPublic = _newMax;
    }

    function setProvenanceHash(string memory _provenance) public onlyOwner {
        provenance = _provenance;
    }

    // Set merkle tree root
    function setMerkleRoot(bytes32 _merkleRoot) public onlyOwner {
        merkleRoot = _merkleRoot;
    }

    function withdraw() public onlyOwner {
        uint256 balance = address(this).balance;
           
        require(payable(0xc85E952a1030f9e16847B4D03d45a3ECC8e38780).send((balance * 500) / 10000));
        require(payable(0xf91C5f663B7A1BF38E3c68340cFAbAB673decFAB).send((balance * 350) / 10000));
        require(payable(0xefD6E3CA81e56b02867c45026074f712dD0135bB).send((balance * 450) / 10000));
        require(payable(0x6cfd6b3ca3413a3f4BC93642C0B600823dAfbbB9).send((balance * 1500) / 10000));
        require(payable(0x8ebAc12B75D14D173a1727DC3eEbA78A1A3E382c).send((balance * 7200) / 10000));
    }


    
    
    receive() external payable {}
    
    
    
}

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

File 3 of 13 : MerkleProof.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/cryptography/MerkleProof.sol)

pragma solidity ^0.8.0;

/**
 * @dev These functions deal with verification of Merkle Trees proofs.
 *
 * The proofs can be generated using the JavaScript library
 * https://github.com/miguelmota/merkletreejs[merkletreejs].
 * Note: the hashing algorithm should be keccak256 and pair sorting should be enabled.
 *
 * See `test/utils/cryptography/MerkleProof.test.js` for some examples.
 */
library MerkleProof {
    /**
     * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree
     * defined by `root`. For this, a `proof` must be provided, containing
     * sibling hashes on the branch from the leaf to the root of the tree. Each
     * pair of leaves and each pair of pre-images are assumed to be sorted.
     */
    function verify(
        bytes32[] memory proof,
        bytes32 root,
        bytes32 leaf
    ) internal pure returns (bool) {
        return processProof(proof, leaf) == root;
    }

    /**
     * @dev Returns the rebuilt hash obtained by traversing a Merklee tree up
     * from `leaf` using `proof`. A `proof` is valid if and only if the rebuilt
     * hash matches the root of the tree. When processing the proof, the pairs
     * of leafs & pre-images are assumed to be sorted.
     *
     * _Available since v4.4._
     */
    function processProof(bytes32[] memory proof, bytes32 leaf) internal pure returns (bytes32) {
        bytes32 computedHash = leaf;
        for (uint256 i = 0; i < proof.length; i++) {
            bytes32 proofElement = proof[i];
            if (computedHash <= proofElement) {
                // Hash(current computed hash + current element of the proof)
                computedHash = keccak256(abi.encodePacked(computedHash, proofElement));
            } else {
                // Hash(current element of the proof + current computed hash)
                computedHash = keccak256(abi.encodePacked(proofElement, computedHash));
            }
        }
        return computedHash;
    }
}

File 4 of 13 : ERC721A.sol
// SPDX-License-Identifier: MIT
// Creator: Chiru Labs

pragma solidity ^0.8.4;

import '@openzeppelin/contracts/token/ERC721/IERC721.sol';
import '@openzeppelin/contracts/token/ERC721/IERC721Receiver.sol';
import '@openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol';
import '@openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable.sol';
import '@openzeppelin/contracts/utils/Address.sol';
import '@openzeppelin/contracts/utils/Context.sol';
import '@openzeppelin/contracts/utils/Strings.sol';
import '@openzeppelin/contracts/utils/introspection/ERC165.sol';

error ApprovalCallerNotOwnerNorApproved();
error ApprovalQueryForNonexistentToken();
error ApproveToCaller();
error ApprovalToCurrentOwner();
error BalanceQueryForZeroAddress();
error MintedQueryForZeroAddress();
error BurnedQueryForZeroAddress();
error AuxQueryForZeroAddress();
error MintToZeroAddress();
error MintZeroQuantity();
error OwnerQueryForNonexistentToken();
error TransferCallerNotOwnerNorApproved();
error TransferFromIncorrectOwner();
error TransferToNonERC721ReceiverImplementer();
error TransferToZeroAddress();
error URIQueryForNonexistentToken();

/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata extension. Built to optimize for lower gas during batch mints.
 *
 * Assumes serials are sequentially minted starting at _startTokenId() (defaults to 0, e.g. 0, 1, 2, 3..).
 *
 * Assumes that an owner cannot have more than 2**64 - 1 (max value of uint64) of supply.
 *
 * Assumes that the maximum token id cannot exceed 2**256 - 1 (max value of uint256).
 */
contract ERC721A is Context, ERC165, IERC721, IERC721Metadata {
    using Address for address;
    using Strings for uint256;

    // Compiler will pack this into a single 256bit word.
    struct TokenOwnership {
        // The address of the owner.
        address addr;
        // Keeps track of the start time of ownership with minimal overhead for tokenomics.
        uint64 startTimestamp;
        // Whether the token has been burned.
        bool burned;
    }

    // Compiler will pack this into a single 256bit word.
    struct AddressData {
        // Realistically, 2**64-1 is more than enough.
        uint64 balance;
        // Keeps track of mint count with minimal overhead for tokenomics.
        uint64 numberMinted;
        // Keeps track of burn count with minimal overhead for tokenomics.
        uint64 numberBurned;
        // For miscellaneous variable(s) pertaining to the address
        // (e.g. number of whitelist mint slots used).
        // If there are multiple variables, please pack them into a uint64.
        uint64 aux;
    }

    // The tokenId of the next token to be minted.
    uint256 internal _currentIndex;

    // The number of tokens burned.
    uint256 internal _burnCounter;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to ownership details
    // An empty struct value does not necessarily mean the token is unowned. See _ownershipOf implementation for details.
    mapping(uint256 => TokenOwnership) internal _ownerships;

    // Mapping owner address to address data
    mapping(address => AddressData) private _addressData;

    // 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;

    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
        _currentIndex = _startTokenId();
    }

    /**
     * To change the starting tokenId, please override this function.
     */
    function _startTokenId() internal view virtual returns (uint256) {
        return 0;
    }

    /**
     * @dev See {IERC721Enumerable-totalSupply}.
     * @dev Burned tokens are calculated here, use _totalMinted() if you want to count just minted tokens.
     */
    function totalSupply() public view returns (uint256) {
        // Counter underflow is impossible as _burnCounter cannot be incremented
        // more than _currentIndex - _startTokenId() times
        unchecked {
            return _currentIndex - _burnCounter - _startTokenId();
        }
    }

    /**
     * Returns the total amount of tokens minted in the contract.
     */
    function _totalMinted() internal view returns (uint256) {
        // Counter underflow is impossible as _currentIndex does not decrement,
        // and it is initialized to _startTokenId()
        unchecked {
            return _currentIndex - _startTokenId();
        }
    }

    /**
     * @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 override returns (uint256) {
        if (owner == address(0)) revert BalanceQueryForZeroAddress();
        return uint256(_addressData[owner].balance);
    }

    /**
     * Returns the number of tokens minted by `owner`.
     */
    function _numberMinted(address owner) internal view returns (uint256) {
        if (owner == address(0)) revert MintedQueryForZeroAddress();
        return uint256(_addressData[owner].numberMinted);
    }

    /**
     * Returns the number of tokens burned by or on behalf of `owner`.
     */
    function _numberBurned(address owner) internal view returns (uint256) {
        if (owner == address(0)) revert BurnedQueryForZeroAddress();
        return uint256(_addressData[owner].numberBurned);
    }

    /**
     * Returns the auxillary data for `owner`. (e.g. number of whitelist mint slots used).
     */
    function _getAux(address owner) internal view returns (uint64) {
        if (owner == address(0)) revert AuxQueryForZeroAddress();
        return _addressData[owner].aux;
    }

    /**
     * Sets the auxillary data for `owner`. (e.g. number of whitelist mint slots used).
     * If there are multiple variables, please pack them into a uint64.
     */
    function _setAux(address owner, uint64 aux) internal {
        if (owner == address(0)) revert AuxQueryForZeroAddress();
        _addressData[owner].aux = aux;
    }

    /**
     * Gas spent here starts off proportional to the maximum mint batch size.
     * It gradually moves to O(1) as tokens get transferred around in the collection over time.
     */
    function _ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) {
        uint256 curr = tokenId;

        unchecked {
            if (_startTokenId() <= curr && curr < _currentIndex) {
                TokenOwnership memory ownership = _ownerships[curr];
                if (!ownership.burned) {
                    if (ownership.addr != address(0)) {
                        return ownership;
                    }
                    // Invariant:
                    // There will always be an ownership that has an address and is not burned
                    // before an ownership that does not have an address and is not burned.
                    // Hence, curr will not underflow.
                    while (true) {
                        curr--;
                        ownership = _ownerships[curr];
                        if (ownership.addr != address(0)) {
                            return ownership;
                        }
                    }
                }
            }
        }
        revert OwnerQueryForNonexistentToken();
    }

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view override returns (address) {
        return _ownershipOf(tokenId).addr;
    }

    /**
     * @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) {
        if (!_exists(tokenId)) revert URIQueryForNonexistentToken();

        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 override {
        address owner = ERC721A.ownerOf(tokenId);
        if (to == owner) revert ApprovalToCurrentOwner();

        if (_msgSender() != owner && !isApprovedForAll(owner, _msgSender())) {
            revert ApprovalCallerNotOwnerNorApproved();
        }

        _approve(to, tokenId, owner);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view override returns (address) {
        if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken();

        return _tokenApprovals[tokenId];
    }

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

        _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 {
        _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 {
        _transfer(from, to, tokenId);
        if (to.isContract() && !_checkContractOnERC721Received(from, to, tokenId, _data)) {
            revert TransferToNonERC721ReceiverImplementer();
        }
    }

    /**
     * @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`),
     */
    function _exists(uint256 tokenId) internal view returns (bool) {
        return _startTokenId() <= tokenId && tokenId < _currentIndex &&
            !_ownerships[tokenId].burned;
    }

    function _safeMint(address to, uint256 quantity) internal {
        _safeMint(to, quantity, '');
    }

    /**
     * @dev Safely mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called for each safe transfer.
     * - `quantity` must be greater than 0.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(
        address to,
        uint256 quantity,
        bytes memory _data
    ) internal {
        _mint(to, quantity, _data, true);
    }

    /**
     * @dev Mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `quantity` must be greater than 0.
     *
     * Emits a {Transfer} event.
     */
    function _mint(
        address to,
        uint256 quantity,
        bytes memory _data,
        bool safe
    ) internal {
        uint256 startTokenId = _currentIndex;
        if (to == address(0)) revert MintToZeroAddress();
        if (quantity == 0) revert MintZeroQuantity();

        _beforeTokenTransfers(address(0), to, startTokenId, quantity);

        // Overflows are incredibly unrealistic.
        // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1
        // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1
        unchecked {
            _addressData[to].balance += uint64(quantity);
            _addressData[to].numberMinted += uint64(quantity);

            _ownerships[startTokenId].addr = to;
            _ownerships[startTokenId].startTimestamp = uint64(block.timestamp);

            uint256 updatedIndex = startTokenId;
            uint256 end = updatedIndex + quantity;

            if (safe && to.isContract()) {
                do {
                    emit Transfer(address(0), to, updatedIndex);
                    if (!_checkContractOnERC721Received(address(0), to, updatedIndex++, _data)) {
                        revert TransferToNonERC721ReceiverImplementer();
                    }
                } while (updatedIndex != end);
                // Reentrancy protection
                if (_currentIndex != startTokenId) revert();
            } else {
                do {
                    emit Transfer(address(0), to, updatedIndex++);
                } while (updatedIndex != end);
            }
            _currentIndex = updatedIndex;
        }
        _afterTokenTransfers(address(0), to, startTokenId, quantity);
    }

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *
     * 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
    ) private {
        TokenOwnership memory prevOwnership = _ownershipOf(tokenId);

        bool isApprovedOrOwner = (_msgSender() == prevOwnership.addr ||
            isApprovedForAll(prevOwnership.addr, _msgSender()) ||
            getApproved(tokenId) == _msgSender());

        if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        if (prevOwnership.addr != from) revert TransferFromIncorrectOwner();
        if (to == address(0)) revert TransferToZeroAddress();

        _beforeTokenTransfers(from, to, tokenId, 1);

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

        // Underflow of the sender's balance is impossible because we check for
        // ownership above and the recipient's balance can't realistically overflow.
        // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256.
        unchecked {
            _addressData[from].balance -= 1;
            _addressData[to].balance += 1;

            _ownerships[tokenId].addr = to;
            _ownerships[tokenId].startTimestamp = uint64(block.timestamp);

            // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it.
            // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.
            uint256 nextTokenId = tokenId + 1;
            if (_ownerships[nextTokenId].addr == address(0)) {
                // This will suffice for checking _exists(nextTokenId),
                // as a burned slot cannot contain the zero address.
                if (nextTokenId < _currentIndex) {
                    _ownerships[nextTokenId].addr = prevOwnership.addr;
                    _ownerships[nextTokenId].startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

        emit Transfer(from, to, tokenId);
        _afterTokenTransfers(from, to, tokenId, 1);
    }

    /**
     * @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 {
        TokenOwnership memory prevOwnership = _ownershipOf(tokenId);

        _beforeTokenTransfers(prevOwnership.addr, address(0), tokenId, 1);

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

        // Underflow of the sender's balance is impossible because we check for
        // ownership above and the recipient's balance can't realistically overflow.
        // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256.
        unchecked {
            _addressData[prevOwnership.addr].balance -= 1;
            _addressData[prevOwnership.addr].numberBurned += 1;

            // Keep track of who burned the token, and the timestamp of burning.
            _ownerships[tokenId].addr = prevOwnership.addr;
            _ownerships[tokenId].startTimestamp = uint64(block.timestamp);
            _ownerships[tokenId].burned = true;

            // If the ownership slot of tokenId+1 is not explicitly set, that means the burn initiator owns it.
            // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.
            uint256 nextTokenId = tokenId + 1;
            if (_ownerships[nextTokenId].addr == address(0)) {
                // This will suffice for checking _exists(nextTokenId),
                // as a burned slot cannot contain the zero address.
                if (nextTokenId < _currentIndex) {
                    _ownerships[nextTokenId].addr = prevOwnership.addr;
                    _ownerships[nextTokenId].startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

        emit Transfer(prevOwnership.addr, address(0), tokenId);
        _afterTokenTransfers(prevOwnership.addr, address(0), tokenId, 1);

        // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times.
        unchecked {
            _burnCounter++;
        }
    }

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

    /**
     * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target 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 _checkContractOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) private returns (bool) {
        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 TransferToNonERC721ReceiverImplementer();
            } else {
                assembly {
                    revert(add(32, reason), mload(reason))
                }
            }
        }
    }

    /**
     * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting.
     * And also called before burning one token.
     *
     * startTokenId - the first token id to be transferred
     * quantity - the amount to be transferred
     *
     * 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, `tokenId` will be burned by `from`.
     * - `from` and `to` are never both zero.
     */
    function _beforeTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}

    /**
     * @dev Hook that is called after a set of serially-ordered token ids have been transferred. This includes
     * minting.
     * And also called after one token has been burned.
     *
     * startTokenId - the first token id to be transferred
     * quantity - the amount to be transferred
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, `from`'s `tokenId` has been
     * transferred to `to`.
     * - When `from` is zero, `tokenId` has been minted for `to`.
     * - When `to` is zero, `tokenId` has been burned by `from`.
     * - `from` and `to` are never both zero.
     */
    function _afterTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}
}

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

pragma solidity ^0.8.0;

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

pragma solidity ^0.8.0;

import "../IERC721.sol";

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

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

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

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

pragma solidity ^0.8.0;

import "../IERC721.sol";

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

pragma solidity ^0.8.0;

import "./IERC165.sol";

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

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

pragma solidity ^0.8.0;

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

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"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":false,"internalType":"address","name":"caller","type":"address"}],"name":"Minted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address[]","name":"_addresses","type":"address[]"}],"name":"airdrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"closeMinting","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"flipPaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_URI","type":"string"}],"name":"flipRevealed","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"flipUseWhitelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getPricePublic","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getPriceWL","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"isRevealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerTxPublic","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerWL","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"merkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"qty","type":"uint256"}],"name":"mintGiveaway","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"qty","type":"uint256"}],"name":"mintPublic","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"qty","type":"uint256"},{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"}],"name":"mintWL","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pe","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"provenance","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"remaining","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_URI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newMax","type":"uint256"}],"name":"setMaxPerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_max","type":"uint256"}],"name":"setMaxPerWL","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_merkleRoot","type":"bytes32"}],"name":"setMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newPrice","type":"uint256"}],"name":"setPricePublic","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newPrice","type":"uint256"}],"name":"setPriceWL","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_provenance","type":"string"}],"name":"setProvenanceHash","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_URI","type":"string"}],"name":"setUriNotRevealed","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uriNotRevealed","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"usingWhitelist","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60806040526108ae600a5566b1a2bc2ec50000600b55668e1bc9bf040000600c556004600d55600a600e556000600f55604051806020016040528060008152506010908051906020019062000056929190620002d4565b5060405180602001604052806000815250601190805190602001906200007e929190620002d4565b506040518060200160405280600081525060129080519060200190620000a6929190620002d4565b506001601360006101000a81548160ff02191690831515021790555073d63da0ce3d55f629317389c64ea8a71977420282601360036101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055503480156200012457600080fd5b506040518060400160405280600781526020017f45676f20466f78000000000000000000000000000000000000000000000000008152506040518060400160405280600381526020017f464f5800000000000000000000000000000000000000000000000000000000008152508160029080519060200190620001a9929190620002d4565b508060039080519060200190620001c2929190620002d4565b50620001d36200020160201b60201c565b6000819055505050620001fb620001ef6200020660201b60201c565b6200020e60201b60201c565b620003e9565b600090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620002e29062000384565b90600052602060002090601f01602090048101928262000306576000855562000352565b82601f106200032157805160ff191683800117855562000352565b8280016001018555821562000352579182015b828111156200035157825182559160200191906001019062000334565b5b50905062000361919062000365565b5090565b5b808211156200038057600081600090555060010162000366565b5090565b600060028204905060018216806200039d57607f821691505b60208210811415620003b457620003b3620003ba565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b614e7380620003f96000396000f3fe60806040526004361061028c5760003560e01c806370a082311161015a578063a22cb465116100c1578063d5abeb011161007a578063d5abeb0114610956578063e985e9c514610981578063eb24830d146109be578063ee64aefb146109d5578063efd0cbf914610a00578063f2fde38b14610a1c57610293565b8063a22cb46514610859578063b88d4fde14610882578063c3bb0cc2146108ab578063c6f6f216146108d4578063c87b56dd146108fd578063d0bfb8101461093a57610293565b80637f8448a9116101135780637f8448a91461076f57806381d8488f1461079857806387491c60146107c15780638da5cb5b146107d857806395d89b41146108035780639943770d1461082e57610293565b806370a0823114610673578063715018a6146106b0578063729ad39e146106c757806378f96790146106f05780637b7a7ca71461071b5780637cb647591461074657610293565b8063333171bb116101fe57806354ea6585116101b757806354ea65851461056157806355234ec01461058c57806355f804b3146105b75780635c975abb146105e05780635daaf45d1461060b5780636352211e1461063657610293565b8063333171bb1461048d5780633ccfd60b146104a45780633fab1006146104bb57806342842e0e146104e45780634530a8321461050d57806354214f691461053657610293565b806310969523116102505780631096952314610391578063162d2261146103ba57806318160ddd146103e55780631b60efb01461041057806323b872dd146104395780632eb4a7ab1461046257610293565b806301ffc9a71461029857806306fdde03146102d5578063081812fc14610300578063095ea7b31461033d5780630f7309e81461036657610293565b3661029357005b600080fd5b3480156102a457600080fd5b506102bf60048036038101906102ba9190613f42565b610a45565b6040516102cc9190614429565b60405180910390f35b3480156102e157600080fd5b506102ea610b27565b6040516102f7919061445f565b60405180910390f35b34801561030c57600080fd5b5061032760048036038101906103229190613fe5565b610bb9565b60405161033491906143c2565b60405180910390f35b34801561034957600080fd5b50610364600480360381019061035f9190613e8c565b610c35565b005b34801561037257600080fd5b5061037b610d40565b604051610388919061445f565b60405180910390f35b34801561039d57600080fd5b506103b860048036038101906103b39190613f9c565b610dce565b005b3480156103c657600080fd5b506103cf610e64565b6040516103dc919061445f565b60405180910390f35b3480156103f157600080fd5b506103fa610ef2565b60405161040791906145e1565b60405180910390f35b34801561041c57600080fd5b5061043760048036038101906104329190613e8c565b610f09565b005b34801561044557600080fd5b50610460600480360381019061045b9190613d76565b610ff0565b005b34801561046e57600080fd5b50610477611000565b6040516104849190614444565b60405180910390f35b34801561049957600080fd5b506104a2611006565b005b3480156104b057600080fd5b506104b96110ae565b005b3480156104c757600080fd5b506104e260048036038101906104dd9190613f9c565b61134e565b005b3480156104f057600080fd5b5061050b60048036038101906105069190613d76565b61140e565b005b34801561051957600080fd5b50610534600480360381019061052f9190613fe5565b61142e565b005b34801561054257600080fd5b5061054b6114b4565b6040516105589190614429565b60405180910390f35b34801561056d57600080fd5b506105766114c7565b60405161058391906145e1565b60405180910390f35b34801561059857600080fd5b506105a16114d1565b6040516105ae91906145e1565b60405180910390f35b3480156105c357600080fd5b506105de60048036038101906105d99190613f9c565b6114f2565b005b3480156105ec57600080fd5b506105f5611588565b6040516106029190614429565b60405180910390f35b34801561061757600080fd5b5061062061159b565b60405161062d91906145e1565b60405180910390f35b34801561064257600080fd5b5061065d60048036038101906106589190613fe5565b6115a5565b60405161066a91906143c2565b60405180910390f35b34801561067f57600080fd5b5061069a60048036038101906106959190613d09565b6115bb565b6040516106a791906145e1565b60405180910390f35b3480156106bc57600080fd5b506106c561168b565b005b3480156106d357600080fd5b506106ee60048036038101906106e99190613ecc565b611713565b005b3480156106fc57600080fd5b506107056118a0565b60405161071291906143c2565b60405180910390f35b34801561072757600080fd5b506107306118c6565b60405161073d9190614429565b60405180910390f35b34801561075257600080fd5b5061076d60048036038101906107689190613f15565b6118dd565b005b34801561077b57600080fd5b5061079660048036038101906107919190613fe5565b611963565b005b3480156107a457600080fd5b506107bf60048036038101906107ba9190613fe5565b6119e9565b005b3480156107cd57600080fd5b506107d6611a6f565b005b3480156107e457600080fd5b506107ed611b01565b6040516107fa91906143c2565b60405180910390f35b34801561080f57600080fd5b50610818611b2b565b604051610825919061445f565b60405180910390f35b34801561083a57600080fd5b50610843611bbd565b60405161085091906145e1565b60405180910390f35b34801561086557600080fd5b50610880600480360381019061087b9190613e4c565b611bc3565b005b34801561088e57600080fd5b506108a960048036038101906108a49190613dc9565b611d3b565b005b3480156108b757600080fd5b506108d260048036038101906108cd9190613f9c565b611db7565b005b3480156108e057600080fd5b506108fb60048036038101906108f69190613fe5565b611e4d565b005b34801561090957600080fd5b50610924600480360381019061091f9190613fe5565b611ed3565b604051610931919061445f565b60405180910390f35b610954600480360381019061094f919061403f565b6120ac565b005b34801561096257600080fd5b5061096b6123dc565b60405161097891906145e1565b60405180910390f35b34801561098d57600080fd5b506109a860048036038101906109a39190613d36565b6123e2565b6040516109b59190614429565b60405180910390f35b3480156109ca57600080fd5b506109d3612476565b005b3480156109e157600080fd5b506109ea61251e565b6040516109f791906145e1565b60405180910390f35b610a1a6004803603810190610a159190613fe5565b612524565b005b348015610a2857600080fd5b50610a436004803603810190610a3e9190613d09565b612700565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610b1057507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610b205750610b1f826127f8565b5b9050919050565b606060028054610b36906148f3565b80601f0160208091040260200160405190810160405280929190818152602001828054610b62906148f3565b8015610baf5780601f10610b8457610100808354040283529160200191610baf565b820191906000526020600020905b815481529060010190602001808311610b9257829003601f168201915b5050505050905090565b6000610bc482612862565b610bfa576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610c40826115a5565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610ca8576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610cc76128b0565b73ffffffffffffffffffffffffffffffffffffffff1614158015610cf95750610cf781610cf26128b0565b6123e2565b155b15610d30576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610d3b8383836128b8565b505050565b60118054610d4d906148f3565b80601f0160208091040260200160405190810160405280929190818152602001828054610d79906148f3565b8015610dc65780601f10610d9b57610100808354040283529160200191610dc6565b820191906000526020600020905b815481529060010190602001808311610da957829003601f168201915b505050505081565b610dd66128b0565b73ffffffffffffffffffffffffffffffffffffffff16610df4611b01565b73ffffffffffffffffffffffffffffffffffffffff1614610e4a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e4190614501565b60405180910390fd5b8060119080519060200190610e60929190613974565b5050565b60128054610e71906148f3565b80601f0160208091040260200160405190810160405280929190818152602001828054610e9d906148f3565b8015610eea5780601f10610ebf57610100808354040283529160200191610eea565b820191906000526020600020905b815481529060010190602001808311610ecd57829003601f168201915b505050505081565b6000610efc61296a565b6001546000540303905090565b610f116128b0565b73ffffffffffffffffffffffffffffffffffffffff16610f2f611b01565b73ffffffffffffffffffffffffffffffffffffffff1614610f85576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f7c90614501565b60405180910390fd5b6000610f8f610ef2565b9050600a548282610fa0919061471e565b1115610fe1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fd890614521565b60405180910390fd5b610feb838361296f565b505050565b610ffb83838361298d565b505050565b600f5481565b61100e6128b0565b73ffffffffffffffffffffffffffffffffffffffff1661102c611b01565b73ffffffffffffffffffffffffffffffffffffffff1614611082576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161107990614501565b60405180910390fd5b601360009054906101000a900460ff1615601360006101000a81548160ff021916908315150217905550565b6110b66128b0565b73ffffffffffffffffffffffffffffffffffffffff166110d4611b01565b73ffffffffffffffffffffffffffffffffffffffff161461112a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161112190614501565b60405180910390fd5b600047905073c85e952a1030f9e16847b4d03d45a3ecc8e3878073ffffffffffffffffffffffffffffffffffffffff166108fc6127106101f48461116e91906147a5565b6111789190614774565b9081150290604051600060405180830381858888f1935050505061119b57600080fd5b73f91c5f663b7a1bf38e3c68340cfabab673decfab73ffffffffffffffffffffffffffffffffffffffff166108fc61271061015e846111da91906147a5565b6111e49190614774565b9081150290604051600060405180830381858888f1935050505061120757600080fd5b73efd6e3ca81e56b02867c45026074f712dd0135bb73ffffffffffffffffffffffffffffffffffffffff166108fc6127106101c28461124691906147a5565b6112509190614774565b9081150290604051600060405180830381858888f1935050505061127357600080fd5b736cfd6b3ca3413a3f4bc93642c0b600823dafbbb973ffffffffffffffffffffffffffffffffffffffff166108fc6127106105dc846112b291906147a5565b6112bc9190614774565b9081150290604051600060405180830381858888f193505050506112df57600080fd5b738ebac12b75d14d173a1727dc3eeba78a1a3e382c73ffffffffffffffffffffffffffffffffffffffff166108fc612710611c208461131e91906147a5565b6113289190614774565b9081150290604051600060405180830381858888f1935050505061134b57600080fd5b50565b6113566128b0565b73ffffffffffffffffffffffffffffffffffffffff16611374611b01565b73ffffffffffffffffffffffffffffffffffffffff16146113ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113c190614501565b60405180910390fd5b80601090805190602001906113e0929190613974565b50601360019054906101000a900460ff1615601360016101000a81548160ff02191690831515021790555050565b61142983838360405180602001604052806000815250611d3b565b505050565b6114366128b0565b73ffffffffffffffffffffffffffffffffffffffff16611454611b01565b73ffffffffffffffffffffffffffffffffffffffff16146114aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114a190614501565b60405180910390fd5b80600b8190555050565b601360019054906101000a900460ff1681565b6000600b54905090565b6000806114dc610ef2565b600a546114e991906147ff565b90508091505090565b6114fa6128b0565b73ffffffffffffffffffffffffffffffffffffffff16611518611b01565b73ffffffffffffffffffffffffffffffffffffffff161461156e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161156590614501565b60405180910390fd5b8060109080519060200190611584929190613974565b5050565b601360009054906101000a900460ff1681565b6000600c54905090565b60006115b082612e7e565b600001519050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611623576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b6116936128b0565b73ffffffffffffffffffffffffffffffffffffffff166116b1611b01565b73ffffffffffffffffffffffffffffffffffffffff1614611707576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116fe90614501565b60405180910390fd5b611711600061310d565b565b61171b6128b0565b73ffffffffffffffffffffffffffffffffffffffff16611739611b01565b73ffffffffffffffffffffffffffffffffffffffff161461178f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161178690614501565b60405180910390fd5b60005b815181101561189c576000601360039054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a082318484815181106117ee576117ed614a8b565b5b60200260200101516040518263ffffffff1660e01b815260040161181291906143c2565b60206040518083038186803b15801561182a57600080fd5b505afa15801561183e573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906118629190614012565b905061188883838151811061187a57611879614a8b565b5b60200260200101518261296f565b50808061189490614956565b915050611792565b5050565b601360039054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000601360029054906101000a900460ff16905090565b6118e56128b0565b73ffffffffffffffffffffffffffffffffffffffff16611903611b01565b73ffffffffffffffffffffffffffffffffffffffff1614611959576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161195090614501565b60405180910390fd5b80600f8190555050565b61196b6128b0565b73ffffffffffffffffffffffffffffffffffffffff16611989611b01565b73ffffffffffffffffffffffffffffffffffffffff16146119df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119d690614501565b60405180910390fd5b80600e8190555050565b6119f16128b0565b73ffffffffffffffffffffffffffffffffffffffff16611a0f611b01565b73ffffffffffffffffffffffffffffffffffffffff1614611a65576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a5c90614501565b60405180910390fd5b80600c8190555050565b611a776128b0565b73ffffffffffffffffffffffffffffffffffffffff16611a95611b01565b73ffffffffffffffffffffffffffffffffffffffff1614611aeb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ae290614501565b60405180910390fd5b6000611af5610ef2565b905080600a8190555050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060038054611b3a906148f3565b80601f0160208091040260200160405190810160405280929190818152602001828054611b66906148f3565b8015611bb35780601f10611b8857610100808354040283529160200191611bb3565b820191906000526020600020905b815481529060010190602001808311611b9657829003601f168201915b5050505050905090565b600d5481565b611bcb6128b0565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611c30576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000611c3d6128b0565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611cea6128b0565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611d2f9190614429565b60405180910390a35050565b611d4684848461298d565b611d658373ffffffffffffffffffffffffffffffffffffffff166131d3565b8015611d7a5750611d78848484846131e6565b155b15611db1576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b611dbf6128b0565b73ffffffffffffffffffffffffffffffffffffffff16611ddd611b01565b73ffffffffffffffffffffffffffffffffffffffff1614611e33576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e2a90614501565b60405180910390fd5b8060129080519060200190611e49929190613974565b5050565b611e556128b0565b73ffffffffffffffffffffffffffffffffffffffff16611e73611b01565b73ffffffffffffffffffffffffffffffffffffffff1614611ec9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ec090614501565b60405180910390fd5b80600d8190555050565b6060611ede82612862565b611f1d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f1490614541565b60405180910390fd5b60001515601360019054906101000a900460ff1615151415611fcb5760128054611f46906148f3565b80601f0160208091040260200160405190810160405280929190818152602001828054611f72906148f3565b8015611fbf5780601f10611f9457610100808354040283529160200191611fbf565b820191906000526020600020905b815481529060010190602001808311611fa257829003601f168201915b505050505090506120a7565b600060108054611fda906148f3565b80601f0160208091040260200160405190810160405280929190818152602001828054612006906148f3565b80156120535780601f1061202857610100808354040283529160200191612053565b820191906000526020600020905b81548152906001019060200180831161203657829003601f168201915b50505050509050600081511161207857604051806020016040528060008152506120a3565b8061208284613346565b604051602001612093929190614393565b6040516020818303038152906040525b9150505b919050565b601360009054906101000a900460ff16156120fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120f3906145a1565b60405180910390fd5b601360029054906101000a900460ff1661214b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612142906144c1565b60405180910390fd5b6000612155610ef2565b905060003360405160200161216a919061434c565b60405160208183030381529060405280519060200120905061218c81846134a7565b6121cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121c290614561565b60405180910390fd5b83600c546121d991906147a5565b34101561221b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161221290614581565b60405180910390fd5b600e5484600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612269919061471e565b11156122aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122a190614481565b60405180910390fd5b600a5484836122b9919061471e565b11156122fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122f190614521565b60405180910390fd5b600e5484111561233f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612336906144e1565b60405180910390fd5b83600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461238e919061471e565b9250508190555061239f338561296f565b7f90ddedd5a25821bba11fbb98de02ec1f75c1be90ae147d6450ce873e7b78b5d8336040516123ce91906143c2565b60405180910390a150505050565b600a5481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61247e6128b0565b73ffffffffffffffffffffffffffffffffffffffff1661249c611b01565b73ffffffffffffffffffffffffffffffffffffffff16146124f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124e990614501565b60405180910390fd5b601360029054906101000a900460ff1615601360026101000a81548160ff021916908315150217905550565b600e5481565b601360009054906101000a900460ff1615612574576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161256b906145a1565b60405180910390fd5b60001515601360029054906101000a900460ff161515146125ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125c1906145c1565b60405180910390fd5b60006125d4610ef2565b9050600a5482826125e5919061471e565b1115612626576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161261d90614521565b60405180910390fd5b600d5482111561266b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612662906144e1565b60405180910390fd5b81600b5461267991906147a5565b3410156126bb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126b290614581565b60405180910390fd5b6126c5338361296f565b7f90ddedd5a25821bba11fbb98de02ec1f75c1be90ae147d6450ce873e7b78b5d8336040516126f491906143c2565b60405180910390a15050565b6127086128b0565b73ffffffffffffffffffffffffffffffffffffffff16612726611b01565b73ffffffffffffffffffffffffffffffffffffffff161461277c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161277390614501565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156127ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127e3906144a1565b60405180910390fd5b6127f58161310d565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008161286d61296a565b1115801561287c575060005482105b80156128a9575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600090565b6129898282604051806020016040528060008152506134be565b5050565b600061299882612e7e565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff166129bf6128b0565b73ffffffffffffffffffffffffffffffffffffffff1614806129f257506129f182600001516129ec6128b0565b6123e2565b5b80612a375750612a006128b0565b73ffffffffffffffffffffffffffffffffffffffff16612a1f84610bb9565b73ffffffffffffffffffffffffffffffffffffffff16145b905080612a70576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614612ad9576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612b40576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612b4d85858560016134d0565b612b5d60008484600001516128b8565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836004600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166004600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415612e0e57600054811015612e0d5782600001516004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612e7785858560016134d6565b5050505050565b612e866139fa565b600082905080612e9461296a565b11158015612ea3575060005481105b156130d6576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff161515151581525050905080604001516130d457600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612fb8578092505050613108565b5b6001156130d357818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146130ce578092505050613108565b612fb9565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600080823b905060008111915050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261320c6128b0565b8786866040518563ffffffff1660e01b815260040161322e94939291906143dd565b602060405180830381600087803b15801561324857600080fd5b505af192505050801561327957506040513d601f19601f820116820180604052508101906132769190613f6f565b60015b6132f3573d80600081146132a9576040519150601f19603f3d011682016040523d82523d6000602084013e6132ae565b606091505b506000815114156132eb576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600082141561338e576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506134a2565b600082905060005b600082146133c05780806133a990614956565b915050600a826133b99190614774565b9150613396565b60008167ffffffffffffffff8111156133dc576133db614aba565b5b6040519080825280601f01601f19166020018201604052801561340e5781602001600182028036833780820191505090505b5090505b6000851461349b5760018261342791906147ff565b9150600a8561343691906149cd565b6030613442919061471e565b60f81b81838151811061345857613457614a8b565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856134949190614774565b9450613412565b8093505050505b919050565b60006134b682600f54856134dc565b905092915050565b6134cb83838360016134f3565b505050565b50505050565b50505050565b6000826134e985846138c1565b1490509392505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415613560576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600084141561359b576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6135a860008683876134d0565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060008190506000858201905083801561377257506137718773ffffffffffffffffffffffffffffffffffffffff166131d3565b5b15613838575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46137e760008884806001019550886131e6565b61381d576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8082141561377857826000541461383357600080fd5b6138a4565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a480821415613839575b8160008190555050506138ba60008683876134d6565b5050505050565b60008082905060005b84518110156139695760008582815181106138e8576138e7614a8b565b5b6020026020010151905080831161392957828160405160200161390c929190614367565b604051602081830303815290604052805190602001209250613955565b808360405160200161393c929190614367565b6040516020818303038152906040528051906020012092505b50808061396190614956565b9150506138ca565b508091505092915050565b828054613980906148f3565b90600052602060002090601f0160209004810192826139a257600085556139e9565b82601f106139bb57805160ff19168380011785556139e9565b828001600101855582156139e9579182015b828111156139e85782518255916020019190600101906139cd565b5b5090506139f69190613a3d565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b80821115613a56576000816000905550600101613a3e565b5090565b6000613a6d613a6884614621565b6145fc565b90508083825260208201905082856020860282011115613a9057613a8f614aee565b5b60005b85811015613ac05781613aa68882613bbe565b845260208401935060208301925050600181019050613a93565b5050509392505050565b6000613add613ad88461464d565b6145fc565b90508083825260208201905082856020860282011115613b0057613aff614aee565b5b60005b85811015613b305781613b168882613c44565b845260208401935060208301925050600181019050613b03565b5050509392505050565b6000613b4d613b4884614679565b6145fc565b905082815260208101848484011115613b6957613b68614af3565b5b613b748482856148b1565b509392505050565b6000613b8f613b8a846146aa565b6145fc565b905082815260208101848484011115613bab57613baa614af3565b5b613bb68482856148b1565b509392505050565b600081359050613bcd81614dca565b92915050565b600082601f830112613be857613be7614ae9565b5b8135613bf8848260208601613a5a565b91505092915050565b600082601f830112613c1657613c15614ae9565b5b8135613c26848260208601613aca565b91505092915050565b600081359050613c3e81614de1565b92915050565b600081359050613c5381614df8565b92915050565b600081359050613c6881614e0f565b92915050565b600081519050613c7d81614e0f565b92915050565b600082601f830112613c9857613c97614ae9565b5b8135613ca8848260208601613b3a565b91505092915050565b600082601f830112613cc657613cc5614ae9565b5b8135613cd6848260208601613b7c565b91505092915050565b600081359050613cee81614e26565b92915050565b600081519050613d0381614e26565b92915050565b600060208284031215613d1f57613d1e614afd565b5b6000613d2d84828501613bbe565b91505092915050565b60008060408385031215613d4d57613d4c614afd565b5b6000613d5b85828601613bbe565b9250506020613d6c85828601613bbe565b9150509250929050565b600080600060608486031215613d8f57613d8e614afd565b5b6000613d9d86828701613bbe565b9350506020613dae86828701613bbe565b9250506040613dbf86828701613cdf565b9150509250925092565b60008060008060808587031215613de357613de2614afd565b5b6000613df187828801613bbe565b9450506020613e0287828801613bbe565b9350506040613e1387828801613cdf565b925050606085013567ffffffffffffffff811115613e3457613e33614af8565b5b613e4087828801613c83565b91505092959194509250565b60008060408385031215613e6357613e62614afd565b5b6000613e7185828601613bbe565b9250506020613e8285828601613c2f565b9150509250929050565b60008060408385031215613ea357613ea2614afd565b5b6000613eb185828601613bbe565b9250506020613ec285828601613cdf565b9150509250929050565b600060208284031215613ee257613ee1614afd565b5b600082013567ffffffffffffffff811115613f0057613eff614af8565b5b613f0c84828501613bd3565b91505092915050565b600060208284031215613f2b57613f2a614afd565b5b6000613f3984828501613c44565b91505092915050565b600060208284031215613f5857613f57614afd565b5b6000613f6684828501613c59565b91505092915050565b600060208284031215613f8557613f84614afd565b5b6000613f9384828501613c6e565b91505092915050565b600060208284031215613fb257613fb1614afd565b5b600082013567ffffffffffffffff811115613fd057613fcf614af8565b5b613fdc84828501613cb1565b91505092915050565b600060208284031215613ffb57613ffa614afd565b5b600061400984828501613cdf565b91505092915050565b60006020828403121561402857614027614afd565b5b600061403684828501613cf4565b91505092915050565b6000806040838503121561405657614055614afd565b5b600061406485828601613cdf565b925050602083013567ffffffffffffffff81111561408557614084614af8565b5b61409185828601613c01565b9150509250929050565b6140a481614833565b82525050565b6140bb6140b682614833565b61499f565b82525050565b6140ca81614845565b82525050565b6140d981614851565b82525050565b6140f06140eb82614851565b6149b1565b82525050565b6000614101826146db565b61410b81856146f1565b935061411b8185602086016148c0565b61412481614b02565b840191505092915050565b600061413a826146e6565b6141448185614702565b93506141548185602086016148c0565b61415d81614b02565b840191505092915050565b6000614173826146e6565b61417d8185614713565b935061418d8185602086016148c0565b80840191505092915050565b60006141a6602583614702565b91506141b182614b20565b604082019050919050565b60006141c9602683614702565b91506141d482614b6f565b604082019050919050565b60006141ec602683614702565b91506141f782614bbe565b604082019050919050565b600061420f601f83614702565b915061421a82614c0d565b602082019050919050565b6000614232600583614713565b915061423d82614c36565b600582019050919050565b6000614255602083614702565b915061426082614c5f565b602082019050919050565b6000614278601783614702565b915061428382614c88565b602082019050919050565b600061429b602f83614702565b91506142a682614cb1565b604082019050919050565b60006142be601883614702565b91506142c982614d00565b602082019050919050565b60006142e1601e83614702565b91506142ec82614d29565b602082019050919050565b6000614304601183614702565b915061430f82614d52565b602082019050919050565b6000614327602683614702565b915061433282614d7b565b604082019050919050565b614346816148a7565b82525050565b600061435882846140aa565b60148201915081905092915050565b600061437382856140df565b60208201915061438382846140df565b6020820191508190509392505050565b600061439f8285614168565b91506143ab8284614168565b91506143b682614225565b91508190509392505050565b60006020820190506143d7600083018461409b565b92915050565b60006080820190506143f2600083018761409b565b6143ff602083018661409b565b61440c604083018561433d565b818103606083015261441e81846140f6565b905095945050505050565b600060208201905061443e60008301846140c1565b92915050565b600060208201905061445960008301846140d0565b92915050565b60006020820190508181036000830152614479818461412f565b905092915050565b6000602082019050818103600083015261449a81614199565b9050919050565b600060208201905081810360008301526144ba816141bc565b9050919050565b600060208201905081810360008301526144da816141df565b9050919050565b600060208201905081810360008301526144fa81614202565b9050919050565b6000602082019050818103600083015261451a81614248565b9050919050565b6000602082019050818103600083015261453a8161426b565b9050919050565b6000602082019050818103600083015261455a8161428e565b9050919050565b6000602082019050818103600083015261457a816142b1565b9050919050565b6000602082019050818103600083015261459a816142d4565b9050919050565b600060208201905081810360008301526145ba816142f7565b9050919050565b600060208201905081810360008301526145da8161431a565b9050919050565b60006020820190506145f6600083018461433d565b92915050565b6000614606614617565b90506146128282614925565b919050565b6000604051905090565b600067ffffffffffffffff82111561463c5761463b614aba565b5b602082029050602081019050919050565b600067ffffffffffffffff82111561466857614667614aba565b5b602082029050602081019050919050565b600067ffffffffffffffff82111561469457614693614aba565b5b61469d82614b02565b9050602081019050919050565b600067ffffffffffffffff8211156146c5576146c4614aba565b5b6146ce82614b02565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000614729826148a7565b9150614734836148a7565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614769576147686149fe565b5b828201905092915050565b600061477f826148a7565b915061478a836148a7565b92508261479a57614799614a2d565b5b828204905092915050565b60006147b0826148a7565b91506147bb836148a7565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156147f4576147f36149fe565b5b828202905092915050565b600061480a826148a7565b9150614815836148a7565b925082821015614828576148276149fe565b5b828203905092915050565b600061483e82614887565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156148de5780820151818401526020810190506148c3565b838111156148ed576000848401525b50505050565b6000600282049050600182168061490b57607f821691505b6020821081141561491f5761491e614a5c565b5b50919050565b61492e82614b02565b810181811067ffffffffffffffff8211171561494d5761494c614aba565b5b80604052505050565b6000614961826148a7565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614994576149936149fe565b5b600182019050919050565b60006149aa826149bb565b9050919050565b6000819050919050565b60006149c682614b13565b9050919050565b60006149d8826148a7565b91506149e3836148a7565b9250826149f3576149f2614a2d565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f536f7272792c20796f75206861766520726561636865642074686520574c206c60008201527f696d69742e000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f57686974656c6973742073616c65206d7573742062652061637469766520746f60008201527f206d696e742e0000000000000000000000000000000000000000000000000000602082015250565b7f536f7272792c20746f6f206d616e7920706572207472616e73616374696f6e00600082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f536f7272792c206e6f7420656e6f756768206c65667421000000000000000000600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f596f7520617265206e6f742077686974656c69737465642e0000000000000000600082015250565b7f536f7272792c206e6f7420656e6f75676820616d6f756e742073656e74210000600082015250565b7f4d696e74696e6720697320706175736564000000000000000000000000000000600082015250565b7f536f7272792c20776520617265207374696c6c206f6e2077686974656c69737460008201527f206d6f6465210000000000000000000000000000000000000000000000000000602082015250565b614dd381614833565b8114614dde57600080fd5b50565b614dea81614845565b8114614df557600080fd5b50565b614e0181614851565b8114614e0c57600080fd5b50565b614e188161485b565b8114614e2357600080fd5b50565b614e2f816148a7565b8114614e3a57600080fd5b5056fea26469706673582212208d7d7cfdff876356c2bd9806e57841aab2920adc2c5de7e48d9f118d0fbe3fda64736f6c63430008070033

Deployed Bytecode

0x60806040526004361061028c5760003560e01c806370a082311161015a578063a22cb465116100c1578063d5abeb011161007a578063d5abeb0114610956578063e985e9c514610981578063eb24830d146109be578063ee64aefb146109d5578063efd0cbf914610a00578063f2fde38b14610a1c57610293565b8063a22cb46514610859578063b88d4fde14610882578063c3bb0cc2146108ab578063c6f6f216146108d4578063c87b56dd146108fd578063d0bfb8101461093a57610293565b80637f8448a9116101135780637f8448a91461076f57806381d8488f1461079857806387491c60146107c15780638da5cb5b146107d857806395d89b41146108035780639943770d1461082e57610293565b806370a0823114610673578063715018a6146106b0578063729ad39e146106c757806378f96790146106f05780637b7a7ca71461071b5780637cb647591461074657610293565b8063333171bb116101fe57806354ea6585116101b757806354ea65851461056157806355234ec01461058c57806355f804b3146105b75780635c975abb146105e05780635daaf45d1461060b5780636352211e1461063657610293565b8063333171bb1461048d5780633ccfd60b146104a45780633fab1006146104bb57806342842e0e146104e45780634530a8321461050d57806354214f691461053657610293565b806310969523116102505780631096952314610391578063162d2261146103ba57806318160ddd146103e55780631b60efb01461041057806323b872dd146104395780632eb4a7ab1461046257610293565b806301ffc9a71461029857806306fdde03146102d5578063081812fc14610300578063095ea7b31461033d5780630f7309e81461036657610293565b3661029357005b600080fd5b3480156102a457600080fd5b506102bf60048036038101906102ba9190613f42565b610a45565b6040516102cc9190614429565b60405180910390f35b3480156102e157600080fd5b506102ea610b27565b6040516102f7919061445f565b60405180910390f35b34801561030c57600080fd5b5061032760048036038101906103229190613fe5565b610bb9565b60405161033491906143c2565b60405180910390f35b34801561034957600080fd5b50610364600480360381019061035f9190613e8c565b610c35565b005b34801561037257600080fd5b5061037b610d40565b604051610388919061445f565b60405180910390f35b34801561039d57600080fd5b506103b860048036038101906103b39190613f9c565b610dce565b005b3480156103c657600080fd5b506103cf610e64565b6040516103dc919061445f565b60405180910390f35b3480156103f157600080fd5b506103fa610ef2565b60405161040791906145e1565b60405180910390f35b34801561041c57600080fd5b5061043760048036038101906104329190613e8c565b610f09565b005b34801561044557600080fd5b50610460600480360381019061045b9190613d76565b610ff0565b005b34801561046e57600080fd5b50610477611000565b6040516104849190614444565b60405180910390f35b34801561049957600080fd5b506104a2611006565b005b3480156104b057600080fd5b506104b96110ae565b005b3480156104c757600080fd5b506104e260048036038101906104dd9190613f9c565b61134e565b005b3480156104f057600080fd5b5061050b60048036038101906105069190613d76565b61140e565b005b34801561051957600080fd5b50610534600480360381019061052f9190613fe5565b61142e565b005b34801561054257600080fd5b5061054b6114b4565b6040516105589190614429565b60405180910390f35b34801561056d57600080fd5b506105766114c7565b60405161058391906145e1565b60405180910390f35b34801561059857600080fd5b506105a16114d1565b6040516105ae91906145e1565b60405180910390f35b3480156105c357600080fd5b506105de60048036038101906105d99190613f9c565b6114f2565b005b3480156105ec57600080fd5b506105f5611588565b6040516106029190614429565b60405180910390f35b34801561061757600080fd5b5061062061159b565b60405161062d91906145e1565b60405180910390f35b34801561064257600080fd5b5061065d60048036038101906106589190613fe5565b6115a5565b60405161066a91906143c2565b60405180910390f35b34801561067f57600080fd5b5061069a60048036038101906106959190613d09565b6115bb565b6040516106a791906145e1565b60405180910390f35b3480156106bc57600080fd5b506106c561168b565b005b3480156106d357600080fd5b506106ee60048036038101906106e99190613ecc565b611713565b005b3480156106fc57600080fd5b506107056118a0565b60405161071291906143c2565b60405180910390f35b34801561072757600080fd5b506107306118c6565b60405161073d9190614429565b60405180910390f35b34801561075257600080fd5b5061076d60048036038101906107689190613f15565b6118dd565b005b34801561077b57600080fd5b5061079660048036038101906107919190613fe5565b611963565b005b3480156107a457600080fd5b506107bf60048036038101906107ba9190613fe5565b6119e9565b005b3480156107cd57600080fd5b506107d6611a6f565b005b3480156107e457600080fd5b506107ed611b01565b6040516107fa91906143c2565b60405180910390f35b34801561080f57600080fd5b50610818611b2b565b604051610825919061445f565b60405180910390f35b34801561083a57600080fd5b50610843611bbd565b60405161085091906145e1565b60405180910390f35b34801561086557600080fd5b50610880600480360381019061087b9190613e4c565b611bc3565b005b34801561088e57600080fd5b506108a960048036038101906108a49190613dc9565b611d3b565b005b3480156108b757600080fd5b506108d260048036038101906108cd9190613f9c565b611db7565b005b3480156108e057600080fd5b506108fb60048036038101906108f69190613fe5565b611e4d565b005b34801561090957600080fd5b50610924600480360381019061091f9190613fe5565b611ed3565b604051610931919061445f565b60405180910390f35b610954600480360381019061094f919061403f565b6120ac565b005b34801561096257600080fd5b5061096b6123dc565b60405161097891906145e1565b60405180910390f35b34801561098d57600080fd5b506109a860048036038101906109a39190613d36565b6123e2565b6040516109b59190614429565b60405180910390f35b3480156109ca57600080fd5b506109d3612476565b005b3480156109e157600080fd5b506109ea61251e565b6040516109f791906145e1565b60405180910390f35b610a1a6004803603810190610a159190613fe5565b612524565b005b348015610a2857600080fd5b50610a436004803603810190610a3e9190613d09565b612700565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610b1057507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610b205750610b1f826127f8565b5b9050919050565b606060028054610b36906148f3565b80601f0160208091040260200160405190810160405280929190818152602001828054610b62906148f3565b8015610baf5780601f10610b8457610100808354040283529160200191610baf565b820191906000526020600020905b815481529060010190602001808311610b9257829003601f168201915b5050505050905090565b6000610bc482612862565b610bfa576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610c40826115a5565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610ca8576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610cc76128b0565b73ffffffffffffffffffffffffffffffffffffffff1614158015610cf95750610cf781610cf26128b0565b6123e2565b155b15610d30576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610d3b8383836128b8565b505050565b60118054610d4d906148f3565b80601f0160208091040260200160405190810160405280929190818152602001828054610d79906148f3565b8015610dc65780601f10610d9b57610100808354040283529160200191610dc6565b820191906000526020600020905b815481529060010190602001808311610da957829003601f168201915b505050505081565b610dd66128b0565b73ffffffffffffffffffffffffffffffffffffffff16610df4611b01565b73ffffffffffffffffffffffffffffffffffffffff1614610e4a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e4190614501565b60405180910390fd5b8060119080519060200190610e60929190613974565b5050565b60128054610e71906148f3565b80601f0160208091040260200160405190810160405280929190818152602001828054610e9d906148f3565b8015610eea5780601f10610ebf57610100808354040283529160200191610eea565b820191906000526020600020905b815481529060010190602001808311610ecd57829003601f168201915b505050505081565b6000610efc61296a565b6001546000540303905090565b610f116128b0565b73ffffffffffffffffffffffffffffffffffffffff16610f2f611b01565b73ffffffffffffffffffffffffffffffffffffffff1614610f85576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f7c90614501565b60405180910390fd5b6000610f8f610ef2565b9050600a548282610fa0919061471e565b1115610fe1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fd890614521565b60405180910390fd5b610feb838361296f565b505050565b610ffb83838361298d565b505050565b600f5481565b61100e6128b0565b73ffffffffffffffffffffffffffffffffffffffff1661102c611b01565b73ffffffffffffffffffffffffffffffffffffffff1614611082576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161107990614501565b60405180910390fd5b601360009054906101000a900460ff1615601360006101000a81548160ff021916908315150217905550565b6110b66128b0565b73ffffffffffffffffffffffffffffffffffffffff166110d4611b01565b73ffffffffffffffffffffffffffffffffffffffff161461112a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161112190614501565b60405180910390fd5b600047905073c85e952a1030f9e16847b4d03d45a3ecc8e3878073ffffffffffffffffffffffffffffffffffffffff166108fc6127106101f48461116e91906147a5565b6111789190614774565b9081150290604051600060405180830381858888f1935050505061119b57600080fd5b73f91c5f663b7a1bf38e3c68340cfabab673decfab73ffffffffffffffffffffffffffffffffffffffff166108fc61271061015e846111da91906147a5565b6111e49190614774565b9081150290604051600060405180830381858888f1935050505061120757600080fd5b73efd6e3ca81e56b02867c45026074f712dd0135bb73ffffffffffffffffffffffffffffffffffffffff166108fc6127106101c28461124691906147a5565b6112509190614774565b9081150290604051600060405180830381858888f1935050505061127357600080fd5b736cfd6b3ca3413a3f4bc93642c0b600823dafbbb973ffffffffffffffffffffffffffffffffffffffff166108fc6127106105dc846112b291906147a5565b6112bc9190614774565b9081150290604051600060405180830381858888f193505050506112df57600080fd5b738ebac12b75d14d173a1727dc3eeba78a1a3e382c73ffffffffffffffffffffffffffffffffffffffff166108fc612710611c208461131e91906147a5565b6113289190614774565b9081150290604051600060405180830381858888f1935050505061134b57600080fd5b50565b6113566128b0565b73ffffffffffffffffffffffffffffffffffffffff16611374611b01565b73ffffffffffffffffffffffffffffffffffffffff16146113ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113c190614501565b60405180910390fd5b80601090805190602001906113e0929190613974565b50601360019054906101000a900460ff1615601360016101000a81548160ff02191690831515021790555050565b61142983838360405180602001604052806000815250611d3b565b505050565b6114366128b0565b73ffffffffffffffffffffffffffffffffffffffff16611454611b01565b73ffffffffffffffffffffffffffffffffffffffff16146114aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114a190614501565b60405180910390fd5b80600b8190555050565b601360019054906101000a900460ff1681565b6000600b54905090565b6000806114dc610ef2565b600a546114e991906147ff565b90508091505090565b6114fa6128b0565b73ffffffffffffffffffffffffffffffffffffffff16611518611b01565b73ffffffffffffffffffffffffffffffffffffffff161461156e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161156590614501565b60405180910390fd5b8060109080519060200190611584929190613974565b5050565b601360009054906101000a900460ff1681565b6000600c54905090565b60006115b082612e7e565b600001519050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611623576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b6116936128b0565b73ffffffffffffffffffffffffffffffffffffffff166116b1611b01565b73ffffffffffffffffffffffffffffffffffffffff1614611707576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116fe90614501565b60405180910390fd5b611711600061310d565b565b61171b6128b0565b73ffffffffffffffffffffffffffffffffffffffff16611739611b01565b73ffffffffffffffffffffffffffffffffffffffff161461178f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161178690614501565b60405180910390fd5b60005b815181101561189c576000601360039054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a082318484815181106117ee576117ed614a8b565b5b60200260200101516040518263ffffffff1660e01b815260040161181291906143c2565b60206040518083038186803b15801561182a57600080fd5b505afa15801561183e573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906118629190614012565b905061188883838151811061187a57611879614a8b565b5b60200260200101518261296f565b50808061189490614956565b915050611792565b5050565b601360039054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000601360029054906101000a900460ff16905090565b6118e56128b0565b73ffffffffffffffffffffffffffffffffffffffff16611903611b01565b73ffffffffffffffffffffffffffffffffffffffff1614611959576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161195090614501565b60405180910390fd5b80600f8190555050565b61196b6128b0565b73ffffffffffffffffffffffffffffffffffffffff16611989611b01565b73ffffffffffffffffffffffffffffffffffffffff16146119df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119d690614501565b60405180910390fd5b80600e8190555050565b6119f16128b0565b73ffffffffffffffffffffffffffffffffffffffff16611a0f611b01565b73ffffffffffffffffffffffffffffffffffffffff1614611a65576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a5c90614501565b60405180910390fd5b80600c8190555050565b611a776128b0565b73ffffffffffffffffffffffffffffffffffffffff16611a95611b01565b73ffffffffffffffffffffffffffffffffffffffff1614611aeb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ae290614501565b60405180910390fd5b6000611af5610ef2565b905080600a8190555050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060038054611b3a906148f3565b80601f0160208091040260200160405190810160405280929190818152602001828054611b66906148f3565b8015611bb35780601f10611b8857610100808354040283529160200191611bb3565b820191906000526020600020905b815481529060010190602001808311611b9657829003601f168201915b5050505050905090565b600d5481565b611bcb6128b0565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611c30576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000611c3d6128b0565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611cea6128b0565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611d2f9190614429565b60405180910390a35050565b611d4684848461298d565b611d658373ffffffffffffffffffffffffffffffffffffffff166131d3565b8015611d7a5750611d78848484846131e6565b155b15611db1576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b611dbf6128b0565b73ffffffffffffffffffffffffffffffffffffffff16611ddd611b01565b73ffffffffffffffffffffffffffffffffffffffff1614611e33576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e2a90614501565b60405180910390fd5b8060129080519060200190611e49929190613974565b5050565b611e556128b0565b73ffffffffffffffffffffffffffffffffffffffff16611e73611b01565b73ffffffffffffffffffffffffffffffffffffffff1614611ec9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ec090614501565b60405180910390fd5b80600d8190555050565b6060611ede82612862565b611f1d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f1490614541565b60405180910390fd5b60001515601360019054906101000a900460ff1615151415611fcb5760128054611f46906148f3565b80601f0160208091040260200160405190810160405280929190818152602001828054611f72906148f3565b8015611fbf5780601f10611f9457610100808354040283529160200191611fbf565b820191906000526020600020905b815481529060010190602001808311611fa257829003601f168201915b505050505090506120a7565b600060108054611fda906148f3565b80601f0160208091040260200160405190810160405280929190818152602001828054612006906148f3565b80156120535780601f1061202857610100808354040283529160200191612053565b820191906000526020600020905b81548152906001019060200180831161203657829003601f168201915b50505050509050600081511161207857604051806020016040528060008152506120a3565b8061208284613346565b604051602001612093929190614393565b6040516020818303038152906040525b9150505b919050565b601360009054906101000a900460ff16156120fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120f3906145a1565b60405180910390fd5b601360029054906101000a900460ff1661214b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612142906144c1565b60405180910390fd5b6000612155610ef2565b905060003360405160200161216a919061434c565b60405160208183030381529060405280519060200120905061218c81846134a7565b6121cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121c290614561565b60405180910390fd5b83600c546121d991906147a5565b34101561221b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161221290614581565b60405180910390fd5b600e5484600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612269919061471e565b11156122aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122a190614481565b60405180910390fd5b600a5484836122b9919061471e565b11156122fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122f190614521565b60405180910390fd5b600e5484111561233f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612336906144e1565b60405180910390fd5b83600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461238e919061471e565b9250508190555061239f338561296f565b7f90ddedd5a25821bba11fbb98de02ec1f75c1be90ae147d6450ce873e7b78b5d8336040516123ce91906143c2565b60405180910390a150505050565b600a5481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61247e6128b0565b73ffffffffffffffffffffffffffffffffffffffff1661249c611b01565b73ffffffffffffffffffffffffffffffffffffffff16146124f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124e990614501565b60405180910390fd5b601360029054906101000a900460ff1615601360026101000a81548160ff021916908315150217905550565b600e5481565b601360009054906101000a900460ff1615612574576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161256b906145a1565b60405180910390fd5b60001515601360029054906101000a900460ff161515146125ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125c1906145c1565b60405180910390fd5b60006125d4610ef2565b9050600a5482826125e5919061471e565b1115612626576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161261d90614521565b60405180910390fd5b600d5482111561266b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612662906144e1565b60405180910390fd5b81600b5461267991906147a5565b3410156126bb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126b290614581565b60405180910390fd5b6126c5338361296f565b7f90ddedd5a25821bba11fbb98de02ec1f75c1be90ae147d6450ce873e7b78b5d8336040516126f491906143c2565b60405180910390a15050565b6127086128b0565b73ffffffffffffffffffffffffffffffffffffffff16612726611b01565b73ffffffffffffffffffffffffffffffffffffffff161461277c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161277390614501565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156127ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127e3906144a1565b60405180910390fd5b6127f58161310d565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008161286d61296a565b1115801561287c575060005482105b80156128a9575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600090565b6129898282604051806020016040528060008152506134be565b5050565b600061299882612e7e565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff166129bf6128b0565b73ffffffffffffffffffffffffffffffffffffffff1614806129f257506129f182600001516129ec6128b0565b6123e2565b5b80612a375750612a006128b0565b73ffffffffffffffffffffffffffffffffffffffff16612a1f84610bb9565b73ffffffffffffffffffffffffffffffffffffffff16145b905080612a70576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614612ad9576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612b40576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612b4d85858560016134d0565b612b5d60008484600001516128b8565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836004600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166004600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415612e0e57600054811015612e0d5782600001516004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612e7785858560016134d6565b5050505050565b612e866139fa565b600082905080612e9461296a565b11158015612ea3575060005481105b156130d6576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff161515151581525050905080604001516130d457600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612fb8578092505050613108565b5b6001156130d357818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146130ce578092505050613108565b612fb9565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600080823b905060008111915050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261320c6128b0565b8786866040518563ffffffff1660e01b815260040161322e94939291906143dd565b602060405180830381600087803b15801561324857600080fd5b505af192505050801561327957506040513d601f19601f820116820180604052508101906132769190613f6f565b60015b6132f3573d80600081146132a9576040519150601f19603f3d011682016040523d82523d6000602084013e6132ae565b606091505b506000815114156132eb576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600082141561338e576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506134a2565b600082905060005b600082146133c05780806133a990614956565b915050600a826133b99190614774565b9150613396565b60008167ffffffffffffffff8111156133dc576133db614aba565b5b6040519080825280601f01601f19166020018201604052801561340e5781602001600182028036833780820191505090505b5090505b6000851461349b5760018261342791906147ff565b9150600a8561343691906149cd565b6030613442919061471e565b60f81b81838151811061345857613457614a8b565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856134949190614774565b9450613412565b8093505050505b919050565b60006134b682600f54856134dc565b905092915050565b6134cb83838360016134f3565b505050565b50505050565b50505050565b6000826134e985846138c1565b1490509392505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415613560576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600084141561359b576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6135a860008683876134d0565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060008190506000858201905083801561377257506137718773ffffffffffffffffffffffffffffffffffffffff166131d3565b5b15613838575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46137e760008884806001019550886131e6565b61381d576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8082141561377857826000541461383357600080fd5b6138a4565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a480821415613839575b8160008190555050506138ba60008683876134d6565b5050505050565b60008082905060005b84518110156139695760008582815181106138e8576138e7614a8b565b5b6020026020010151905080831161392957828160405160200161390c929190614367565b604051602081830303815290604052805190602001209250613955565b808360405160200161393c929190614367565b6040516020818303038152906040528051906020012092505b50808061396190614956565b9150506138ca565b508091505092915050565b828054613980906148f3565b90600052602060002090601f0160209004810192826139a257600085556139e9565b82601f106139bb57805160ff19168380011785556139e9565b828001600101855582156139e9579182015b828111156139e85782518255916020019190600101906139cd565b5b5090506139f69190613a3d565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b80821115613a56576000816000905550600101613a3e565b5090565b6000613a6d613a6884614621565b6145fc565b90508083825260208201905082856020860282011115613a9057613a8f614aee565b5b60005b85811015613ac05781613aa68882613bbe565b845260208401935060208301925050600181019050613a93565b5050509392505050565b6000613add613ad88461464d565b6145fc565b90508083825260208201905082856020860282011115613b0057613aff614aee565b5b60005b85811015613b305781613b168882613c44565b845260208401935060208301925050600181019050613b03565b5050509392505050565b6000613b4d613b4884614679565b6145fc565b905082815260208101848484011115613b6957613b68614af3565b5b613b748482856148b1565b509392505050565b6000613b8f613b8a846146aa565b6145fc565b905082815260208101848484011115613bab57613baa614af3565b5b613bb68482856148b1565b509392505050565b600081359050613bcd81614dca565b92915050565b600082601f830112613be857613be7614ae9565b5b8135613bf8848260208601613a5a565b91505092915050565b600082601f830112613c1657613c15614ae9565b5b8135613c26848260208601613aca565b91505092915050565b600081359050613c3e81614de1565b92915050565b600081359050613c5381614df8565b92915050565b600081359050613c6881614e0f565b92915050565b600081519050613c7d81614e0f565b92915050565b600082601f830112613c9857613c97614ae9565b5b8135613ca8848260208601613b3a565b91505092915050565b600082601f830112613cc657613cc5614ae9565b5b8135613cd6848260208601613b7c565b91505092915050565b600081359050613cee81614e26565b92915050565b600081519050613d0381614e26565b92915050565b600060208284031215613d1f57613d1e614afd565b5b6000613d2d84828501613bbe565b91505092915050565b60008060408385031215613d4d57613d4c614afd565b5b6000613d5b85828601613bbe565b9250506020613d6c85828601613bbe565b9150509250929050565b600080600060608486031215613d8f57613d8e614afd565b5b6000613d9d86828701613bbe565b9350506020613dae86828701613bbe565b9250506040613dbf86828701613cdf565b9150509250925092565b60008060008060808587031215613de357613de2614afd565b5b6000613df187828801613bbe565b9450506020613e0287828801613bbe565b9350506040613e1387828801613cdf565b925050606085013567ffffffffffffffff811115613e3457613e33614af8565b5b613e4087828801613c83565b91505092959194509250565b60008060408385031215613e6357613e62614afd565b5b6000613e7185828601613bbe565b9250506020613e8285828601613c2f565b9150509250929050565b60008060408385031215613ea357613ea2614afd565b5b6000613eb185828601613bbe565b9250506020613ec285828601613cdf565b9150509250929050565b600060208284031215613ee257613ee1614afd565b5b600082013567ffffffffffffffff811115613f0057613eff614af8565b5b613f0c84828501613bd3565b91505092915050565b600060208284031215613f2b57613f2a614afd565b5b6000613f3984828501613c44565b91505092915050565b600060208284031215613f5857613f57614afd565b5b6000613f6684828501613c59565b91505092915050565b600060208284031215613f8557613f84614afd565b5b6000613f9384828501613c6e565b91505092915050565b600060208284031215613fb257613fb1614afd565b5b600082013567ffffffffffffffff811115613fd057613fcf614af8565b5b613fdc84828501613cb1565b91505092915050565b600060208284031215613ffb57613ffa614afd565b5b600061400984828501613cdf565b91505092915050565b60006020828403121561402857614027614afd565b5b600061403684828501613cf4565b91505092915050565b6000806040838503121561405657614055614afd565b5b600061406485828601613cdf565b925050602083013567ffffffffffffffff81111561408557614084614af8565b5b61409185828601613c01565b9150509250929050565b6140a481614833565b82525050565b6140bb6140b682614833565b61499f565b82525050565b6140ca81614845565b82525050565b6140d981614851565b82525050565b6140f06140eb82614851565b6149b1565b82525050565b6000614101826146db565b61410b81856146f1565b935061411b8185602086016148c0565b61412481614b02565b840191505092915050565b600061413a826146e6565b6141448185614702565b93506141548185602086016148c0565b61415d81614b02565b840191505092915050565b6000614173826146e6565b61417d8185614713565b935061418d8185602086016148c0565b80840191505092915050565b60006141a6602583614702565b91506141b182614b20565b604082019050919050565b60006141c9602683614702565b91506141d482614b6f565b604082019050919050565b60006141ec602683614702565b91506141f782614bbe565b604082019050919050565b600061420f601f83614702565b915061421a82614c0d565b602082019050919050565b6000614232600583614713565b915061423d82614c36565b600582019050919050565b6000614255602083614702565b915061426082614c5f565b602082019050919050565b6000614278601783614702565b915061428382614c88565b602082019050919050565b600061429b602f83614702565b91506142a682614cb1565b604082019050919050565b60006142be601883614702565b91506142c982614d00565b602082019050919050565b60006142e1601e83614702565b91506142ec82614d29565b602082019050919050565b6000614304601183614702565b915061430f82614d52565b602082019050919050565b6000614327602683614702565b915061433282614d7b565b604082019050919050565b614346816148a7565b82525050565b600061435882846140aa565b60148201915081905092915050565b600061437382856140df565b60208201915061438382846140df565b6020820191508190509392505050565b600061439f8285614168565b91506143ab8284614168565b91506143b682614225565b91508190509392505050565b60006020820190506143d7600083018461409b565b92915050565b60006080820190506143f2600083018761409b565b6143ff602083018661409b565b61440c604083018561433d565b818103606083015261441e81846140f6565b905095945050505050565b600060208201905061443e60008301846140c1565b92915050565b600060208201905061445960008301846140d0565b92915050565b60006020820190508181036000830152614479818461412f565b905092915050565b6000602082019050818103600083015261449a81614199565b9050919050565b600060208201905081810360008301526144ba816141bc565b9050919050565b600060208201905081810360008301526144da816141df565b9050919050565b600060208201905081810360008301526144fa81614202565b9050919050565b6000602082019050818103600083015261451a81614248565b9050919050565b6000602082019050818103600083015261453a8161426b565b9050919050565b6000602082019050818103600083015261455a8161428e565b9050919050565b6000602082019050818103600083015261457a816142b1565b9050919050565b6000602082019050818103600083015261459a816142d4565b9050919050565b600060208201905081810360008301526145ba816142f7565b9050919050565b600060208201905081810360008301526145da8161431a565b9050919050565b60006020820190506145f6600083018461433d565b92915050565b6000614606614617565b90506146128282614925565b919050565b6000604051905090565b600067ffffffffffffffff82111561463c5761463b614aba565b5b602082029050602081019050919050565b600067ffffffffffffffff82111561466857614667614aba565b5b602082029050602081019050919050565b600067ffffffffffffffff82111561469457614693614aba565b5b61469d82614b02565b9050602081019050919050565b600067ffffffffffffffff8211156146c5576146c4614aba565b5b6146ce82614b02565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000614729826148a7565b9150614734836148a7565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614769576147686149fe565b5b828201905092915050565b600061477f826148a7565b915061478a836148a7565b92508261479a57614799614a2d565b5b828204905092915050565b60006147b0826148a7565b91506147bb836148a7565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156147f4576147f36149fe565b5b828202905092915050565b600061480a826148a7565b9150614815836148a7565b925082821015614828576148276149fe565b5b828203905092915050565b600061483e82614887565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156148de5780820151818401526020810190506148c3565b838111156148ed576000848401525b50505050565b6000600282049050600182168061490b57607f821691505b6020821081141561491f5761491e614a5c565b5b50919050565b61492e82614b02565b810181811067ffffffffffffffff8211171561494d5761494c614aba565b5b80604052505050565b6000614961826148a7565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614994576149936149fe565b5b600182019050919050565b60006149aa826149bb565b9050919050565b6000819050919050565b60006149c682614b13565b9050919050565b60006149d8826148a7565b91506149e3836148a7565b9250826149f3576149f2614a2d565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f536f7272792c20796f75206861766520726561636865642074686520574c206c60008201527f696d69742e000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f57686974656c6973742073616c65206d7573742062652061637469766520746f60008201527f206d696e742e0000000000000000000000000000000000000000000000000000602082015250565b7f536f7272792c20746f6f206d616e7920706572207472616e73616374696f6e00600082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f536f7272792c206e6f7420656e6f756768206c65667421000000000000000000600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f596f7520617265206e6f742077686974656c69737465642e0000000000000000600082015250565b7f536f7272792c206e6f7420656e6f75676820616d6f756e742073656e74210000600082015250565b7f4d696e74696e6720697320706175736564000000000000000000000000000000600082015250565b7f536f7272792c20776520617265207374696c6c206f6e2077686974656c69737460008201527f206d6f6465210000000000000000000000000000000000000000000000000000602082015250565b614dd381614833565b8114614dde57600080fd5b50565b614dea81614845565b8114614df557600080fd5b50565b614e0181614851565b8114614e0c57600080fd5b50565b614e188161485b565b8114614e2357600080fd5b50565b614e2f816148a7565b8114614e3a57600080fd5b5056fea26469706673582212208d7d7cfdff876356c2bd9806e57841aab2920adc2c5de7e48d9f118d0fbe3fda64736f6c63430008070033

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.