ETH Price: $3,308.49 (-3.25%)
Gas: 14 Gwei

MetaLizards (MetaLizard)
 

Overview

TokenID

857

Total Transfers

-

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-
Loading...
Loading
Loading...
Loading
Loading...
Loading

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

Contract Source Code Verified (Exact Match)

Contract Name:
MetaLizards

Compiler Version
v0.8.11+commit.d7f03943

Optimization Enabled:
No with 200 runs

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

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

contract MetaLizards is ERC721Enumerable, Ownable 
{
    using Strings for string;

    uint public constant MAX_TOKENS = 4444;
    uint public PRESALE_LIMIT = 4444;
    uint public presaleTokensSold = 0;
    uint public constant NUMBER_RESERVED_TOKENS = 100;
    uint256 public PRICE = 80000000000000000; //0.08 eth
    uint public perAddressLimit = 2;
    
    bool public saleIsActive = false;
    bool public preSaleIsActive = false;
    bool public whitelist = true;
    bool public revealed = false;

    uint public reservedTokensMinted = 0;
    string private _baseTokenURI;
    string public notRevealedUri;
    bytes32 root;
    mapping(address => uint) public addressMintedBalance;

    address payable private devguy = payable(0x0F7961EE81B7cB2B859157E9c0D7b1A1D9D35A5D);

    address deadZone = address(0x000000000000000000000000000000000000dEaD); //burn adress
    
    constructor() ERC721("MetaLizards", "MetaLizard") {}

    function mintToken(uint256 amount, bytes32[] memory proof) external payable
    {
        require(!whitelist || verify(proof), "Address not whitelisted");
        require(msg.sender == tx.origin, "No transaction from smart contracts!");
        require(preSaleIsActive || saleIsActive, "Sale must be active to mint");
        require(amount > 0 && amount <= 10, "Max 10 NFTs per transaction");
        require(!preSaleIsActive || presaleTokensSold + amount <= PRESALE_LIMIT, "Purchase would exceed max supply");
        require(totalSupply() + amount <= MAX_TOKENS - (NUMBER_RESERVED_TOKENS - reservedTokensMinted), "Purchase would exceed max supply");
        require(msg.value >= PRICE * amount, "Not enough ETH for transaction");
        require(addressMintedBalance[msg.sender] + amount <= perAddressLimit, "Max NFT per address exceeded");
        
        for (uint i = 0; i < amount; i++) 
        {
            addressMintedBalance[msg.sender]++;
            _safeMint(msg.sender, totalSupply() + 1);
        }

        if (preSaleIsActive) presaleTokensSold++;
    }

    function burnMetalizards(address payable _to, uint _nfyTokenId) public payable {
        require(balanceOf(msg.sender) >= 1, "You don't own Lizards");
        require(address(this).balance >= PRICE, "Not enought funds on the contract");
        safeTransferFrom(msg.sender, deadZone, _nfyTokenId);
        _to.transfer(PRICE);
    
    }

    //case ethereum does something crazy
    function setPrice(uint256 newPrice) external onlyOwner 
    {
        PRICE = newPrice;
    }

    function setPresaleLimit(uint newLimit) external onlyOwner 
    {
        PRESALE_LIMIT = newLimit;
    }

    function setPerAddressLimit(uint newLimit) external onlyOwner 
    {
        perAddressLimit = newLimit;
    }

    function reveal() public onlyOwner {
        revealed = true;
    }

    function setNotRevealedURI(string memory _notRevealedURI) public onlyOwner {
        notRevealedUri = _notRevealedURI;
    }

    function flipSaleState() external onlyOwner 
    {
        saleIsActive = !saleIsActive;
    }

    function flipPreSaleState() external onlyOwner 
    {
        preSaleIsActive = !preSaleIsActive;
    }

    function flipWhitelistingState() external onlyOwner 
    {
        whitelist = !whitelist;
    }

    function walletOfOwner(address _owner) public view returns (uint256[] memory)
    {
        uint256 ownerTokenCount = balanceOf(_owner);
        uint256[] memory tokenIds = new uint256[](ownerTokenCount);
        
        for (uint256 i; i < ownerTokenCount; i++) {
            tokenIds[i] = tokenOfOwnerByIndex(_owner, i);
        }

        return tokenIds;
    }

    function mintReservedTokens(address to, uint256 amount) external onlyOwner 
    {
        require(reservedTokensMinted + amount <= NUMBER_RESERVED_TOKENS, "This amount is more than max allowed");

        for (uint i = 0; i < amount; i++) 
        {
            _safeMint(to, totalSupply() + 1);
            reservedTokensMinted++;
        }
    }
    
    function withdraw10() external onlyOwner
    {
        uint part = address(this).balance / 100 * 10;
        uint devpart = part / 100 * 7;
        devguy.transfer(devpart);
        payable(owner()).transfer(part - devpart);
    }

    function withdraw70() external onlyOwner
    {
        uint part = address(this).balance / 100 * 70;
        uint devpart = part / 100 * 7;
        devguy.transfer(devpart);
        payable(owner()).transfer(part - devpart);
    }

    function withdrawTotal() external onlyOwner
    {
        uint part = address(this).balance / 100 * 5;
        devguy.transfer(part);
        payable(owner()).transfer(address(this).balance);
    }

    function setRoot(bytes32 _root) external onlyOwner
    {
        root = _root;
    }

    function verify(bytes32[] memory proof) internal view returns (bool) 
    {
        bytes32 leaf = keccak256(abi.encodePacked(msg.sender));
        return MerkleProof.verify(proof, root, leaf);
    }
    
    function _beforeTokenTransfer(address from, address to, uint256 tokenId)
        internal
        override(ERC721Enumerable)
    {
        super._beforeTokenTransfer(from, to, tokenId);
    }
    
    function supportsInterface(bytes4 interfaceId) public view
        override(ERC721Enumerable) returns (bool)
    {
        return super.supportsInterface(interfaceId);
    }
    
    ////
    //URI management part
    ////
    
    function _setBaseURI(string memory baseURI) internal virtual {
        _baseTokenURI = baseURI;
    }

    function _baseURI() internal view override returns (string memory) {
        return _baseTokenURI;
    }
    
    function setBaseURI(string memory baseURI) external onlyOwner {
        _setBaseURI(baseURI);
    }
  
  function tokenURI(uint256 tokenId)
    public
    view
    virtual
    override
    returns (string memory)
  {
    require(
      _exists(tokenId),
      "ERC721Metadata: URI query for nonexistent token"
    );
    
    if(revealed == false) {
        return notRevealedUri;
    }

    string memory _tokenURI = super.tokenURI(tokenId);
    return bytes(_tokenURI).length > 0 ? string(abi.encodePacked(_tokenURI, ".json")) : "";
  }
}

File 2 of 14 : 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 3 of 14 : 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 4 of 14 : ERC721Enumerable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/ERC721Enumerable.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

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

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

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

File 7 of 14 : 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 8 of 14 : 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 9 of 14 : 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 10 of 14 : 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 11 of 14 : 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 12 of 14 : 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 13 of 14 : 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 14 of 14 : 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"
      ]
    }
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_TOKENS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"NUMBER_RESERVED_TOKENS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PRESALE_LIMIT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"addressMintedBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address payable","name":"_to","type":"address"},{"internalType":"uint256","name":"_nfyTokenId","type":"uint256"}],"name":"burnMetalizards","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"flipPreSaleState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"flipSaleState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"flipWhitelistingState","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":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mintReservedTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"}],"name":"mintToken","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"notRevealedUri","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":"perAddressLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"preSaleIsActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"presaleTokensSold","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reservedTokensMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"reveal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"saleIsActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_notRevealedURI","type":"string"}],"name":"setNotRevealedURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newLimit","type":"uint256"}],"name":"setPerAddressLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newLimit","type":"uint256"}],"name":"setPresaleLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newPrice","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_root","type":"bytes32"}],"name":"setRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"whitelist","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw10","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw70","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawTotal","outputs":[],"stateMutability":"nonpayable","type":"function"}]

608060405261115c600b556000600c5567011c37937e080000600d556002600e556000600f60006101000a81548160ff0219169083151502179055506000600f60016101000a81548160ff0219169083151502179055506001600f60026101000a81548160ff0219169083151502179055506000600f60036101000a81548160ff0219169083151502179055506000601055730f7961ee81b7cb2b859157e9c0d7b1a1d9d35a5d601560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555061dead601660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055503480156200013657600080fd5b506040518060400160405280600b81526020017f4d6574614c697a617264730000000000000000000000000000000000000000008152506040518060400160405280600a81526020017f4d6574614c697a617264000000000000000000000000000000000000000000008152508160009080519060200190620001bb929190620002cb565b508060019080519060200190620001d4929190620002cb565b505050620001f7620001eb620001fd60201b60201c565b6200020560201b60201c565b620003e0565b600033905090565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620002d990620003aa565b90600052602060002090601f016020900481019282620002fd576000855562000349565b82601f106200031857805160ff191683800117855562000349565b8280016001018555821562000349579182015b82811115620003485782518255916020019190600101906200032b565b5b5090506200035891906200035c565b5090565b5b80821115620003775760008160009055506001016200035d565b5090565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620003c357607f821691505b60208210811415620003da57620003d96200037b565b5b50919050565b61591280620003f06000396000f3fe6080604052600436106102ae5760003560e01c806370a0823111610175578063a475b5dd116100dc578063e985e9c511610095578063f2c4ce1e1161006f578063f2c4ce1e14610a22578063f2fde38b14610a4b578063f3e3882114610a74578063f47c84c514610a9f576102ae565b8063e985e9c5146109a3578063eb8d2444146109e0578063f032554914610a0b576102ae565b8063a475b5dd146108b6578063ae7c122e146108cd578063b22edfbc146108e9578063b88d4fde14610914578063c87b56dd1461093d578063dab5f3401461097a576102ae565b80638da5cb5b1161012e5780638da5cb5b146107cc57806391b7f5ed146107f757806393e59dc11461082057806395d89b411461084b578063969a55ec14610876578063a22cb4651461088d576102ae565b806370a08231146106f1578063715018a61461072e578063739fa22f146107455780637fd255f11461075c57806387e9e4e9146107855780638d859f3e146107a1576102ae565b806329f767e8116102195780634f6ccce7116101d25780634f6ccce7146105cf578063518302271461060c57806355f804b31461063757806357535c43146106605780636007eeed146106895780636352211e146106b4576102ae565b806329f767e8146104c15780632f745c59146104ea578063341c33041461052757806334918dfd1461055257806342842e0e14610569578063438b630014610592576102ae565b806318160ddd1161026b57806318160ddd146103c357806318cae269146103ee57806318e06e821461042b5780631aee3f91146104425780631f0234d81461046d57806323b872dd14610498576102ae565b8063016d4bfd146102b357806301ffc9a7146102ca57806306fdde0314610307578063081812fc14610332578063081c8c441461036f578063095ea7b31461039a575b600080fd5b3480156102bf57600080fd5b506102c8610aca565b005b3480156102d657600080fd5b506102f160048036038101906102ec9190613c53565b610c46565b6040516102fe9190613c9b565b60405180910390f35b34801561031357600080fd5b5061031c610c58565b6040516103299190613d4f565b60405180910390f35b34801561033e57600080fd5b5061035960048036038101906103549190613da7565b610cea565b6040516103669190613e15565b60405180910390f35b34801561037b57600080fd5b50610384610d6f565b6040516103919190613d4f565b60405180910390f35b3480156103a657600080fd5b506103c160048036038101906103bc9190613e5c565b610dfd565b005b3480156103cf57600080fd5b506103d8610f15565b6040516103e59190613eab565b60405180910390f35b3480156103fa57600080fd5b5061041560048036038101906104109190613ec6565b610f22565b6040516104229190613eab565b60405180910390f35b34801561043757600080fd5b50610440610f3a565b005b34801561044e57600080fd5b5061045761108d565b6040516104649190613eab565b60405180910390f35b34801561047957600080fd5b50610482611093565b60405161048f9190613c9b565b60405180910390f35b3480156104a457600080fd5b506104bf60048036038101906104ba9190613ef3565b6110a6565b005b3480156104cd57600080fd5b506104e860048036038101906104e39190613da7565b611106565b005b3480156104f657600080fd5b50610511600480360381019061050c9190613e5c565b61118c565b60405161051e9190613eab565b60405180910390f35b34801561053357600080fd5b5061053c611231565b6040516105499190613eab565b60405180910390f35b34801561055e57600080fd5b50610567611237565b005b34801561057557600080fd5b50610590600480360381019061058b9190613ef3565b6112df565b005b34801561059e57600080fd5b506105b960048036038101906105b49190613ec6565b6112ff565b6040516105c69190614004565b60405180910390f35b3480156105db57600080fd5b506105f660048036038101906105f19190613da7565b6113ad565b6040516106039190613eab565b60405180910390f35b34801561061857600080fd5b5061062161141e565b60405161062e9190613c9b565b60405180910390f35b34801561064357600080fd5b5061065e6004803603810190610659919061415b565b611431565b005b34801561066c57600080fd5b5061068760048036038101906106829190613e5c565b6114b9565b005b34801561069557600080fd5b5061069e6115de565b6040516106ab9190613eab565b60405180910390f35b3480156106c057600080fd5b506106db60048036038101906106d69190613da7565b6115e4565b6040516106e89190613e15565b60405180910390f35b3480156106fd57600080fd5b5061071860048036038101906107139190613ec6565b611696565b6040516107259190613eab565b60405180910390f35b34801561073a57600080fd5b5061074361174e565b005b34801561075157600080fd5b5061075a6117d6565b005b34801561076857600080fd5b50610783600480360381019061077e9190613da7565b611952565b005b61079f600480360381019061079a91906141e2565b6119d8565b005b3480156107ad57600080fd5b506107b6611ae3565b6040516107c39190613eab565b60405180910390f35b3480156107d857600080fd5b506107e1611ae9565b6040516107ee9190613e15565b60405180910390f35b34801561080357600080fd5b5061081e60048036038101906108199190613da7565b611b13565b005b34801561082c57600080fd5b50610835611b99565b6040516108429190613c9b565b60405180910390f35b34801561085757600080fd5b50610860611bac565b60405161086d9190613d4f565b60405180910390f35b34801561088257600080fd5b5061088b611c3e565b005b34801561089957600080fd5b506108b460048036038101906108af919061424e565b611ce6565b005b3480156108c257600080fd5b506108cb611cfc565b005b6108e760048036038101906108e2919061438c565b611d95565b005b3480156108f557600080fd5b506108fe612195565b60405161090b9190613eab565b60405180910390f35b34801561092057600080fd5b5061093b60048036038101906109369190614489565b61219a565b005b34801561094957600080fd5b50610964600480360381019061095f9190613da7565b6121fc565b6040516109719190613d4f565b60405180910390f35b34801561098657600080fd5b506109a1600480360381019061099c919061450c565b612349565b005b3480156109af57600080fd5b506109ca60048036038101906109c59190614539565b6123cf565b6040516109d79190613c9b565b60405180910390f35b3480156109ec57600080fd5b506109f5612463565b604051610a029190613c9b565b60405180910390f35b348015610a1757600080fd5b50610a20612476565b005b348015610a2e57600080fd5b50610a496004803603810190610a44919061415b565b61251e565b005b348015610a5757600080fd5b50610a726004803603810190610a6d9190613ec6565b6125b4565b005b348015610a8057600080fd5b50610a896126ac565b604051610a969190613eab565b60405180910390f35b348015610aab57600080fd5b50610ab46126b2565b604051610ac19190613eab565b60405180910390f35b610ad26126b8565b73ffffffffffffffffffffffffffffffffffffffff16610af0611ae9565b73ffffffffffffffffffffffffffffffffffffffff1614610b46576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b3d906145c5565b60405180910390fd5b6000600a606447610b579190614643565b610b619190614674565b905060006007606483610b749190614643565b610b7e9190614674565b9050601560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610be8573d6000803e3d6000fd5b50610bf1611ae9565b73ffffffffffffffffffffffffffffffffffffffff166108fc8284610c1691906146ce565b9081150290604051600060405180830381858888f19350505050158015610c41573d6000803e3d6000fd5b505050565b6000610c51826126c0565b9050919050565b606060008054610c6790614731565b80601f0160208091040260200160405190810160405280929190818152602001828054610c9390614731565b8015610ce05780601f10610cb557610100808354040283529160200191610ce0565b820191906000526020600020905b815481529060010190602001808311610cc357829003601f168201915b5050505050905090565b6000610cf58261273a565b610d34576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d2b906147d5565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60128054610d7c90614731565b80601f0160208091040260200160405190810160405280929190818152602001828054610da890614731565b8015610df55780601f10610dca57610100808354040283529160200191610df5565b820191906000526020600020905b815481529060010190602001808311610dd857829003601f168201915b505050505081565b6000610e08826115e4565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610e79576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e7090614867565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610e986126b8565b73ffffffffffffffffffffffffffffffffffffffff161480610ec75750610ec681610ec16126b8565b6123cf565b5b610f06576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610efd906148f9565b60405180910390fd5b610f1083836127a6565b505050565b6000600880549050905090565b60146020528060005260406000206000915090505481565b610f426126b8565b73ffffffffffffffffffffffffffffffffffffffff16610f60611ae9565b73ffffffffffffffffffffffffffffffffffffffff1614610fb6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fad906145c5565b60405180910390fd5b60006005606447610fc79190614643565b610fd19190614674565b9050601560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f1935050505015801561103b573d6000803e3d6000fd5b50611044611ae9565b73ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015611089573d6000803e3d6000fd5b5050565b600b5481565b600f60019054906101000a900460ff1681565b6110b76110b16126b8565b8261285f565b6110f6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110ed9061498b565b60405180910390fd5b61110183838361293d565b505050565b61110e6126b8565b73ffffffffffffffffffffffffffffffffffffffff1661112c611ae9565b73ffffffffffffffffffffffffffffffffffffffff1614611182576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611179906145c5565b60405180910390fd5b80600e8190555050565b600061119783611696565b82106111d8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111cf90614a1d565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b600c5481565b61123f6126b8565b73ffffffffffffffffffffffffffffffffffffffff1661125d611ae9565b73ffffffffffffffffffffffffffffffffffffffff16146112b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112aa906145c5565b60405180910390fd5b600f60009054906101000a900460ff1615600f60006101000a81548160ff021916908315150217905550565b6112fa8383836040518060200160405280600081525061219a565b505050565b6060600061130c83611696565b905060008167ffffffffffffffff81111561132a57611329614030565b5b6040519080825280602002602001820160405280156113585781602001602082028036833780820191505090505b50905060005b828110156113a257611370858261118c565b82828151811061138357611382614a3d565b5b602002602001018181525050808061139a90614a6c565b91505061135e565b508092505050919050565b60006113b7610f15565b82106113f8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113ef90614b27565b60405180910390fd5b6008828154811061140c5761140b614a3d565b5b90600052602060002001549050919050565b600f60039054906101000a900460ff1681565b6114396126b8565b73ffffffffffffffffffffffffffffffffffffffff16611457611ae9565b73ffffffffffffffffffffffffffffffffffffffff16146114ad576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114a4906145c5565b60405180910390fd5b6114b681612b99565b50565b6114c16126b8565b73ffffffffffffffffffffffffffffffffffffffff166114df611ae9565b73ffffffffffffffffffffffffffffffffffffffff1614611535576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161152c906145c5565b60405180910390fd5b6064816010546115459190614b47565b1115611586576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161157d90614c0f565b60405180910390fd5b60005b818110156115d9576115ae83600161159f610f15565b6115a99190614b47565b612bb3565b601060008154809291906115c190614a6c565b919050555080806115d190614a6c565b915050611589565b505050565b600e5481565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561168d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161168490614ca1565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611707576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116fe90614d33565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6117566126b8565b73ffffffffffffffffffffffffffffffffffffffff16611774611ae9565b73ffffffffffffffffffffffffffffffffffffffff16146117ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117c1906145c5565b60405180910390fd5b6117d46000612bd1565b565b6117de6126b8565b73ffffffffffffffffffffffffffffffffffffffff166117fc611ae9565b73ffffffffffffffffffffffffffffffffffffffff1614611852576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611849906145c5565b60405180910390fd5b600060466064476118639190614643565b61186d9190614674565b9050600060076064836118809190614643565b61188a9190614674565b9050601560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f193505050501580156118f4573d6000803e3d6000fd5b506118fd611ae9565b73ffffffffffffffffffffffffffffffffffffffff166108fc828461192291906146ce565b9081150290604051600060405180830381858888f1935050505015801561194d573d6000803e3d6000fd5b505050565b61195a6126b8565b73ffffffffffffffffffffffffffffffffffffffff16611978611ae9565b73ffffffffffffffffffffffffffffffffffffffff16146119ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119c5906145c5565b60405180910390fd5b80600b8190555050565b60016119e333611696565b1015611a24576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a1b90614d9f565b60405180910390fd5b600d54471015611a69576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a6090614e31565b60405180910390fd5b611a9633601660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16836112df565b8173ffffffffffffffffffffffffffffffffffffffff166108fc600d549081150290604051600060405180830381858888f19350505050158015611ade573d6000803e3d6000fd5b505050565b600d5481565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611b1b6126b8565b73ffffffffffffffffffffffffffffffffffffffff16611b39611ae9565b73ffffffffffffffffffffffffffffffffffffffff1614611b8f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b86906145c5565b60405180910390fd5b80600d8190555050565b600f60029054906101000a900460ff1681565b606060018054611bbb90614731565b80601f0160208091040260200160405190810160405280929190818152602001828054611be790614731565b8015611c345780601f10611c0957610100808354040283529160200191611c34565b820191906000526020600020905b815481529060010190602001808311611c1757829003601f168201915b5050505050905090565b611c466126b8565b73ffffffffffffffffffffffffffffffffffffffff16611c64611ae9565b73ffffffffffffffffffffffffffffffffffffffff1614611cba576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cb1906145c5565b60405180910390fd5b600f60029054906101000a900460ff1615600f60026101000a81548160ff021916908315150217905550565b611cf8611cf16126b8565b8383612c97565b5050565b611d046126b8565b73ffffffffffffffffffffffffffffffffffffffff16611d22611ae9565b73ffffffffffffffffffffffffffffffffffffffff1614611d78576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d6f906145c5565b60405180910390fd5b6001600f60036101000a81548160ff021916908315150217905550565b600f60029054906101000a900460ff161580611db65750611db581612e04565b5b611df5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dec90614e9d565b60405180910390fd5b3273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611e63576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e5a90614f2f565b60405180910390fd5b600f60019054906101000a900460ff1680611e8a5750600f60009054906101000a900460ff165b611ec9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ec090614f9b565b60405180910390fd5b600082118015611eda5750600a8211155b611f19576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f1090615007565b60405180910390fd5b600f60019054906101000a900460ff161580611f445750600b5482600c54611f419190614b47565b11155b611f83576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f7a90615073565b60405180910390fd5b6010546064611f9291906146ce565b61115c611f9f91906146ce565b82611fa8610f15565b611fb29190614b47565b1115611ff3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fea90615073565b60405180910390fd5b81600d546120019190614674565b341015612043576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161203a906150df565b60405180910390fd5b600e5482601460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546120919190614b47565b11156120d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120c99061514b565b60405180910390fd5b60005b8281101561216257601460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081548092919061212d90614a6c565b919050555061214f336001612140610f15565b61214a9190614b47565b612bb3565b808061215a90614a6c565b9150506120d5565b50600f60019054906101000a900460ff161561219157600c600081548092919061218b90614a6c565b91905055505b5050565b606481565b6121ab6121a56126b8565b8361285f565b6121ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121e19061498b565b60405180910390fd5b6121f684848484612e45565b50505050565b60606122078261273a565b612246576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161223d906151dd565b60405180910390fd5b60001515600f60039054906101000a900460ff16151514156122f4576012805461226f90614731565b80601f016020809104026020016040519081016040528092919081815260200182805461229b90614731565b80156122e85780601f106122bd576101008083540402835291602001916122e8565b820191906000526020600020905b8154815290600101906020018083116122cb57829003601f168201915b50505050509050612344565b60006122ff83612ea1565b9050600081511161231f5760405180602001604052806000815250612340565b806040516020016123309190615285565b6040516020818303038152906040525b9150505b919050565b6123516126b8565b73ffffffffffffffffffffffffffffffffffffffff1661236f611ae9565b73ffffffffffffffffffffffffffffffffffffffff16146123c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123bc906145c5565b60405180910390fd5b8060138190555050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600f60009054906101000a900460ff1681565b61247e6126b8565b73ffffffffffffffffffffffffffffffffffffffff1661249c611ae9565b73ffffffffffffffffffffffffffffffffffffffff16146124f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124e9906145c5565b60405180910390fd5b600f60019054906101000a900460ff1615600f60016101000a81548160ff021916908315150217905550565b6125266126b8565b73ffffffffffffffffffffffffffffffffffffffff16612544611ae9565b73ffffffffffffffffffffffffffffffffffffffff161461259a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612591906145c5565b60405180910390fd5b80601290805190602001906125b0929190613b44565b5050565b6125bc6126b8565b73ffffffffffffffffffffffffffffffffffffffff166125da611ae9565b73ffffffffffffffffffffffffffffffffffffffff1614612630576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612627906145c5565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156126a0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161269790615319565b60405180910390fd5b6126a981612bd1565b50565b60105481565b61115c81565b600033905090565b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480612733575061273282612f48565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16612819836115e4565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600061286a8261273a565b6128a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128a0906153ab565b60405180910390fd5b60006128b4836115e4565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061292357508373ffffffffffffffffffffffffffffffffffffffff1661290b84610cea565b73ffffffffffffffffffffffffffffffffffffffff16145b80612934575061293381856123cf565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661295d826115e4565b73ffffffffffffffffffffffffffffffffffffffff16146129b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129aa9061543d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612a23576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a1a906154cf565b60405180910390fd5b612a2e83838361302a565b612a396000826127a6565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612a8991906146ce565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612ae09190614b47565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b8060119080519060200190612baf929190613b44565b5050565b612bcd82826040518060200160405280600081525061303a565b5050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612d06576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612cfd9061553b565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051612df79190613c9b565b60405180910390a3505050565b60008033604051602001612e1891906155a3565b604051602081830303815290604052805190602001209050612e3d8360135483613095565b915050919050565b612e5084848461293d565b612e5c848484846130ac565b612e9b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e9290615630565b60405180910390fd5b50505050565b6060612eac8261273a565b612eeb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ee2906151dd565b60405180910390fd5b6000612ef5613234565b90506000815111612f155760405180602001604052806000815250612f40565b80612f1f846132c6565b604051602001612f30929190615650565b6040516020818303038152906040525b915050919050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061301357507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80613023575061302282613427565b5b9050919050565b613035838383613491565b505050565b61304483836135a5565b61305160008484846130ac565b613090576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161308790615630565b60405180910390fd5b505050565b6000826130a28584613773565b1490509392505050565b60006130cd8473ffffffffffffffffffffffffffffffffffffffff16613826565b15613227578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026130f66126b8565b8786866040518563ffffffff1660e01b815260040161311894939291906156c9565b6020604051808303816000875af192505050801561315457506040513d601f19601f82011682018060405250810190613151919061572a565b60015b6131d7573d8060008114613184576040519150601f19603f3d011682016040523d82523d6000602084013e613189565b606091505b506000815114156131cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131c690615630565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161491505061322c565b600190505b949350505050565b60606011805461324390614731565b80601f016020809104026020016040519081016040528092919081815260200182805461326f90614731565b80156132bc5780601f10613291576101008083540402835291602001916132bc565b820191906000526020600020905b81548152906001019060200180831161329f57829003601f168201915b5050505050905090565b6060600082141561330e576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050613422565b600082905060005b6000821461334057808061332990614a6c565b915050600a826133399190614643565b9150613316565b60008167ffffffffffffffff81111561335c5761335b614030565b5b6040519080825280601f01601f19166020018201604052801561338e5781602001600182028036833780820191505090505b5090505b6000851461341b576001826133a791906146ce565b9150600a856133b69190615757565b60306133c29190614b47565b60f81b8183815181106133d8576133d7614a3d565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856134149190614643565b9450613392565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b61349c838383613839565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156134df576134da8161383e565b61351e565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161461351d5761351c8382613887565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156135615761355c816139f4565b6135a0565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161461359f5761359e8282613ac5565b5b5b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613615576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161360c906157d4565b60405180910390fd5b61361e8161273a565b1561365e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161365590615840565b60405180910390fd5b61366a6000838361302a565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546136ba9190614b47565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b60008082905060005b845181101561381b57600085828151811061379a57613799614a3d565b5b602002602001015190508083116137db5782816040516020016137be929190615881565b604051602081830303815290604052805190602001209250613807565b80836040516020016137ee929190615881565b6040516020818303038152906040528051906020012092505b50808061381390614a6c565b91505061377c565b508091505092915050565b600080823b905060008111915050919050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b6000600161389484611696565b61389e91906146ce565b9050600060076000848152602001908152602001600020549050818114613983576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b60006001600880549050613a0891906146ce565b9050600060096000848152602001908152602001600020549050600060088381548110613a3857613a37614a3d565b5b906000526020600020015490508060088381548110613a5a57613a59614a3d565b5b906000526020600020018190555081600960008381526020019081526020016000208190555060096000858152602001908152602001600020600090556008805480613aa957613aa86158ad565b5b6001900381819060005260206000200160009055905550505050565b6000613ad083611696565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b828054613b5090614731565b90600052602060002090601f016020900481019282613b725760008555613bb9565b82601f10613b8b57805160ff1916838001178555613bb9565b82800160010185558215613bb9579182015b82811115613bb8578251825591602001919060010190613b9d565b5b509050613bc69190613bca565b5090565b5b80821115613be3576000816000905550600101613bcb565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b613c3081613bfb565b8114613c3b57600080fd5b50565b600081359050613c4d81613c27565b92915050565b600060208284031215613c6957613c68613bf1565b5b6000613c7784828501613c3e565b91505092915050565b60008115159050919050565b613c9581613c80565b82525050565b6000602082019050613cb06000830184613c8c565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015613cf0578082015181840152602081019050613cd5565b83811115613cff576000848401525b50505050565b6000601f19601f8301169050919050565b6000613d2182613cb6565b613d2b8185613cc1565b9350613d3b818560208601613cd2565b613d4481613d05565b840191505092915050565b60006020820190508181036000830152613d698184613d16565b905092915050565b6000819050919050565b613d8481613d71565b8114613d8f57600080fd5b50565b600081359050613da181613d7b565b92915050565b600060208284031215613dbd57613dbc613bf1565b5b6000613dcb84828501613d92565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000613dff82613dd4565b9050919050565b613e0f81613df4565b82525050565b6000602082019050613e2a6000830184613e06565b92915050565b613e3981613df4565b8114613e4457600080fd5b50565b600081359050613e5681613e30565b92915050565b60008060408385031215613e7357613e72613bf1565b5b6000613e8185828601613e47565b9250506020613e9285828601613d92565b9150509250929050565b613ea581613d71565b82525050565b6000602082019050613ec06000830184613e9c565b92915050565b600060208284031215613edc57613edb613bf1565b5b6000613eea84828501613e47565b91505092915050565b600080600060608486031215613f0c57613f0b613bf1565b5b6000613f1a86828701613e47565b9350506020613f2b86828701613e47565b9250506040613f3c86828701613d92565b9150509250925092565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b613f7b81613d71565b82525050565b6000613f8d8383613f72565b60208301905092915050565b6000602082019050919050565b6000613fb182613f46565b613fbb8185613f51565b9350613fc683613f62565b8060005b83811015613ff7578151613fde8882613f81565b9750613fe983613f99565b925050600181019050613fca565b5085935050505092915050565b6000602082019050818103600083015261401e8184613fa6565b905092915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61406882613d05565b810181811067ffffffffffffffff8211171561408757614086614030565b5b80604052505050565b600061409a613be7565b90506140a6828261405f565b919050565b600067ffffffffffffffff8211156140c6576140c5614030565b5b6140cf82613d05565b9050602081019050919050565b82818337600083830152505050565b60006140fe6140f9846140ab565b614090565b90508281526020810184848401111561411a5761411961402b565b5b6141258482856140dc565b509392505050565b600082601f83011261414257614141614026565b5b81356141528482602086016140eb565b91505092915050565b60006020828403121561417157614170613bf1565b5b600082013567ffffffffffffffff81111561418f5761418e613bf6565b5b61419b8482850161412d565b91505092915050565b60006141af82613dd4565b9050919050565b6141bf816141a4565b81146141ca57600080fd5b50565b6000813590506141dc816141b6565b92915050565b600080604083850312156141f9576141f8613bf1565b5b6000614207858286016141cd565b925050602061421885828601613d92565b9150509250929050565b61422b81613c80565b811461423657600080fd5b50565b60008135905061424881614222565b92915050565b6000806040838503121561426557614264613bf1565b5b600061427385828601613e47565b925050602061428485828601614239565b9150509250929050565b600067ffffffffffffffff8211156142a9576142a8614030565b5b602082029050602081019050919050565b600080fd5b6000819050919050565b6142d2816142bf565b81146142dd57600080fd5b50565b6000813590506142ef816142c9565b92915050565b60006143086143038461428e565b614090565b9050808382526020820190506020840283018581111561432b5761432a6142ba565b5b835b81811015614354578061434088826142e0565b84526020840193505060208101905061432d565b5050509392505050565b600082601f83011261437357614372614026565b5b81356143838482602086016142f5565b91505092915050565b600080604083850312156143a3576143a2613bf1565b5b60006143b185828601613d92565b925050602083013567ffffffffffffffff8111156143d2576143d1613bf6565b5b6143de8582860161435e565b9150509250929050565b600067ffffffffffffffff82111561440357614402614030565b5b61440c82613d05565b9050602081019050919050565b600061442c614427846143e8565b614090565b9050828152602081018484840111156144485761444761402b565b5b6144538482856140dc565b509392505050565b600082601f8301126144705761446f614026565b5b8135614480848260208601614419565b91505092915050565b600080600080608085870312156144a3576144a2613bf1565b5b60006144b187828801613e47565b94505060206144c287828801613e47565b93505060406144d387828801613d92565b925050606085013567ffffffffffffffff8111156144f4576144f3613bf6565b5b6145008782880161445b565b91505092959194509250565b60006020828403121561452257614521613bf1565b5b6000614530848285016142e0565b91505092915050565b600080604083850312156145505761454f613bf1565b5b600061455e85828601613e47565b925050602061456f85828601613e47565b9150509250929050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006145af602083613cc1565b91506145ba82614579565b602082019050919050565b600060208201905081810360008301526145de816145a2565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061464e82613d71565b915061465983613d71565b925082614669576146686145e5565b5b828204905092915050565b600061467f82613d71565b915061468a83613d71565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156146c3576146c2614614565b5b828202905092915050565b60006146d982613d71565b91506146e483613d71565b9250828210156146f7576146f6614614565b5b828203905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061474957607f821691505b6020821081141561475d5761475c614702565b5b50919050565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b60006147bf602c83613cc1565b91506147ca82614763565b604082019050919050565b600060208201905081810360008301526147ee816147b2565b9050919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b6000614851602183613cc1565b915061485c826147f5565b604082019050919050565b6000602082019050818103600083015261488081614844565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b60006148e3603883613cc1565b91506148ee82614887565b604082019050919050565b60006020820190508181036000830152614912816148d6565b9050919050565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b6000614975603183613cc1565b915061498082614919565b604082019050919050565b600060208201905081810360008301526149a481614968565b9050919050565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b6000614a07602b83613cc1565b9150614a12826149ab565b604082019050919050565b60006020820190508181036000830152614a36816149fa565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000614a7782613d71565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614aaa57614aa9614614565b5b600182019050919050565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b6000614b11602c83613cc1565b9150614b1c82614ab5565b604082019050919050565b60006020820190508181036000830152614b4081614b04565b9050919050565b6000614b5282613d71565b9150614b5d83613d71565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614b9257614b91614614565b5b828201905092915050565b7f5468697320616d6f756e74206973206d6f7265207468616e206d617820616c6c60008201527f6f77656400000000000000000000000000000000000000000000000000000000602082015250565b6000614bf9602483613cc1565b9150614c0482614b9d565b604082019050919050565b60006020820190508181036000830152614c2881614bec565b9050919050565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b6000614c8b602983613cc1565b9150614c9682614c2f565b604082019050919050565b60006020820190508181036000830152614cba81614c7e565b9050919050565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b6000614d1d602a83613cc1565b9150614d2882614cc1565b604082019050919050565b60006020820190508181036000830152614d4c81614d10565b9050919050565b7f596f7520646f6e2774206f776e204c697a617264730000000000000000000000600082015250565b6000614d89601583613cc1565b9150614d9482614d53565b602082019050919050565b60006020820190508181036000830152614db881614d7c565b9050919050565b7f4e6f7420656e6f756768742066756e6473206f6e2074686520636f6e7472616360008201527f7400000000000000000000000000000000000000000000000000000000000000602082015250565b6000614e1b602183613cc1565b9150614e2682614dbf565b604082019050919050565b60006020820190508181036000830152614e4a81614e0e565b9050919050565b7f41646472657373206e6f742077686974656c6973746564000000000000000000600082015250565b6000614e87601783613cc1565b9150614e9282614e51565b602082019050919050565b60006020820190508181036000830152614eb681614e7a565b9050919050565b7f4e6f207472616e73616374696f6e2066726f6d20736d61727420636f6e74726160008201527f6374732100000000000000000000000000000000000000000000000000000000602082015250565b6000614f19602483613cc1565b9150614f2482614ebd565b604082019050919050565b60006020820190508181036000830152614f4881614f0c565b9050919050565b7f53616c65206d7573742062652061637469766520746f206d696e740000000000600082015250565b6000614f85601b83613cc1565b9150614f9082614f4f565b602082019050919050565b60006020820190508181036000830152614fb481614f78565b9050919050565b7f4d6178203130204e46547320706572207472616e73616374696f6e0000000000600082015250565b6000614ff1601b83613cc1565b9150614ffc82614fbb565b602082019050919050565b6000602082019050818103600083015261502081614fe4565b9050919050565b7f507572636861736520776f756c6420657863656564206d617820737570706c79600082015250565b600061505d602083613cc1565b915061506882615027565b602082019050919050565b6000602082019050818103600083015261508c81615050565b9050919050565b7f4e6f7420656e6f7567682045544820666f72207472616e73616374696f6e0000600082015250565b60006150c9601e83613cc1565b91506150d482615093565b602082019050919050565b600060208201905081810360008301526150f8816150bc565b9050919050565b7f4d6178204e465420706572206164647265737320657863656564656400000000600082015250565b6000615135601c83613cc1565b9150615140826150ff565b602082019050919050565b6000602082019050818103600083015261516481615128565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b60006151c7602f83613cc1565b91506151d28261516b565b604082019050919050565b600060208201905081810360008301526151f6816151ba565b9050919050565b600081905092915050565b600061521382613cb6565b61521d81856151fd565b935061522d818560208601613cd2565b80840191505092915050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b600061526f6005836151fd565b915061527a82615239565b600582019050919050565b60006152918284615208565b915061529c82615262565b915081905092915050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000615303602683613cc1565b915061530e826152a7565b604082019050919050565b60006020820190508181036000830152615332816152f6565b9050919050565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b6000615395602c83613cc1565b91506153a082615339565b604082019050919050565b600060208201905081810360008301526153c481615388565b9050919050565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b6000615427602983613cc1565b9150615432826153cb565b604082019050919050565b600060208201905081810360008301526154568161541a565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006154b9602483613cc1565b91506154c48261545d565b604082019050919050565b600060208201905081810360008301526154e8816154ac565b9050919050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b6000615525601983613cc1565b9150615530826154ef565b602082019050919050565b6000602082019050818103600083015261555481615518565b9050919050565b60008160601b9050919050565b60006155738261555b565b9050919050565b600061558582615568565b9050919050565b61559d61559882613df4565b61557a565b82525050565b60006155af828461558c565b60148201915081905092915050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b600061561a603283613cc1565b9150615625826155be565b604082019050919050565b600060208201905081810360008301526156498161560d565b9050919050565b600061565c8285615208565b91506156688284615208565b91508190509392505050565b600081519050919050565b600082825260208201905092915050565b600061569b82615674565b6156a5818561567f565b93506156b5818560208601613cd2565b6156be81613d05565b840191505092915050565b60006080820190506156de6000830187613e06565b6156eb6020830186613e06565b6156f86040830185613e9c565b818103606083015261570a8184615690565b905095945050505050565b60008151905061572481613c27565b92915050565b6000602082840312156157405761573f613bf1565b5b600061574e84828501615715565b91505092915050565b600061576282613d71565b915061576d83613d71565b92508261577d5761577c6145e5565b5b828206905092915050565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b60006157be602083613cc1565b91506157c982615788565b602082019050919050565b600060208201905081810360008301526157ed816157b1565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b600061582a601c83613cc1565b9150615835826157f4565b602082019050919050565b600060208201905081810360008301526158598161581d565b9050919050565b6000819050919050565b61587b615876826142bf565b615860565b82525050565b600061588d828561586a565b60208201915061589d828461586a565b6020820191508190509392505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fdfea2646970667358221220887237e1f62136fc4943fd42f686cc882ed4613cfbf475c1790e2510e77dd8be64736f6c634300080b0033

Deployed Bytecode

0x6080604052600436106102ae5760003560e01c806370a0823111610175578063a475b5dd116100dc578063e985e9c511610095578063f2c4ce1e1161006f578063f2c4ce1e14610a22578063f2fde38b14610a4b578063f3e3882114610a74578063f47c84c514610a9f576102ae565b8063e985e9c5146109a3578063eb8d2444146109e0578063f032554914610a0b576102ae565b8063a475b5dd146108b6578063ae7c122e146108cd578063b22edfbc146108e9578063b88d4fde14610914578063c87b56dd1461093d578063dab5f3401461097a576102ae565b80638da5cb5b1161012e5780638da5cb5b146107cc57806391b7f5ed146107f757806393e59dc11461082057806395d89b411461084b578063969a55ec14610876578063a22cb4651461088d576102ae565b806370a08231146106f1578063715018a61461072e578063739fa22f146107455780637fd255f11461075c57806387e9e4e9146107855780638d859f3e146107a1576102ae565b806329f767e8116102195780634f6ccce7116101d25780634f6ccce7146105cf578063518302271461060c57806355f804b31461063757806357535c43146106605780636007eeed146106895780636352211e146106b4576102ae565b806329f767e8146104c15780632f745c59146104ea578063341c33041461052757806334918dfd1461055257806342842e0e14610569578063438b630014610592576102ae565b806318160ddd1161026b57806318160ddd146103c357806318cae269146103ee57806318e06e821461042b5780631aee3f91146104425780631f0234d81461046d57806323b872dd14610498576102ae565b8063016d4bfd146102b357806301ffc9a7146102ca57806306fdde0314610307578063081812fc14610332578063081c8c441461036f578063095ea7b31461039a575b600080fd5b3480156102bf57600080fd5b506102c8610aca565b005b3480156102d657600080fd5b506102f160048036038101906102ec9190613c53565b610c46565b6040516102fe9190613c9b565b60405180910390f35b34801561031357600080fd5b5061031c610c58565b6040516103299190613d4f565b60405180910390f35b34801561033e57600080fd5b5061035960048036038101906103549190613da7565b610cea565b6040516103669190613e15565b60405180910390f35b34801561037b57600080fd5b50610384610d6f565b6040516103919190613d4f565b60405180910390f35b3480156103a657600080fd5b506103c160048036038101906103bc9190613e5c565b610dfd565b005b3480156103cf57600080fd5b506103d8610f15565b6040516103e59190613eab565b60405180910390f35b3480156103fa57600080fd5b5061041560048036038101906104109190613ec6565b610f22565b6040516104229190613eab565b60405180910390f35b34801561043757600080fd5b50610440610f3a565b005b34801561044e57600080fd5b5061045761108d565b6040516104649190613eab565b60405180910390f35b34801561047957600080fd5b50610482611093565b60405161048f9190613c9b565b60405180910390f35b3480156104a457600080fd5b506104bf60048036038101906104ba9190613ef3565b6110a6565b005b3480156104cd57600080fd5b506104e860048036038101906104e39190613da7565b611106565b005b3480156104f657600080fd5b50610511600480360381019061050c9190613e5c565b61118c565b60405161051e9190613eab565b60405180910390f35b34801561053357600080fd5b5061053c611231565b6040516105499190613eab565b60405180910390f35b34801561055e57600080fd5b50610567611237565b005b34801561057557600080fd5b50610590600480360381019061058b9190613ef3565b6112df565b005b34801561059e57600080fd5b506105b960048036038101906105b49190613ec6565b6112ff565b6040516105c69190614004565b60405180910390f35b3480156105db57600080fd5b506105f660048036038101906105f19190613da7565b6113ad565b6040516106039190613eab565b60405180910390f35b34801561061857600080fd5b5061062161141e565b60405161062e9190613c9b565b60405180910390f35b34801561064357600080fd5b5061065e6004803603810190610659919061415b565b611431565b005b34801561066c57600080fd5b5061068760048036038101906106829190613e5c565b6114b9565b005b34801561069557600080fd5b5061069e6115de565b6040516106ab9190613eab565b60405180910390f35b3480156106c057600080fd5b506106db60048036038101906106d69190613da7565b6115e4565b6040516106e89190613e15565b60405180910390f35b3480156106fd57600080fd5b5061071860048036038101906107139190613ec6565b611696565b6040516107259190613eab565b60405180910390f35b34801561073a57600080fd5b5061074361174e565b005b34801561075157600080fd5b5061075a6117d6565b005b34801561076857600080fd5b50610783600480360381019061077e9190613da7565b611952565b005b61079f600480360381019061079a91906141e2565b6119d8565b005b3480156107ad57600080fd5b506107b6611ae3565b6040516107c39190613eab565b60405180910390f35b3480156107d857600080fd5b506107e1611ae9565b6040516107ee9190613e15565b60405180910390f35b34801561080357600080fd5b5061081e60048036038101906108199190613da7565b611b13565b005b34801561082c57600080fd5b50610835611b99565b6040516108429190613c9b565b60405180910390f35b34801561085757600080fd5b50610860611bac565b60405161086d9190613d4f565b60405180910390f35b34801561088257600080fd5b5061088b611c3e565b005b34801561089957600080fd5b506108b460048036038101906108af919061424e565b611ce6565b005b3480156108c257600080fd5b506108cb611cfc565b005b6108e760048036038101906108e2919061438c565b611d95565b005b3480156108f557600080fd5b506108fe612195565b60405161090b9190613eab565b60405180910390f35b34801561092057600080fd5b5061093b60048036038101906109369190614489565b61219a565b005b34801561094957600080fd5b50610964600480360381019061095f9190613da7565b6121fc565b6040516109719190613d4f565b60405180910390f35b34801561098657600080fd5b506109a1600480360381019061099c919061450c565b612349565b005b3480156109af57600080fd5b506109ca60048036038101906109c59190614539565b6123cf565b6040516109d79190613c9b565b60405180910390f35b3480156109ec57600080fd5b506109f5612463565b604051610a029190613c9b565b60405180910390f35b348015610a1757600080fd5b50610a20612476565b005b348015610a2e57600080fd5b50610a496004803603810190610a44919061415b565b61251e565b005b348015610a5757600080fd5b50610a726004803603810190610a6d9190613ec6565b6125b4565b005b348015610a8057600080fd5b50610a896126ac565b604051610a969190613eab565b60405180910390f35b348015610aab57600080fd5b50610ab46126b2565b604051610ac19190613eab565b60405180910390f35b610ad26126b8565b73ffffffffffffffffffffffffffffffffffffffff16610af0611ae9565b73ffffffffffffffffffffffffffffffffffffffff1614610b46576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b3d906145c5565b60405180910390fd5b6000600a606447610b579190614643565b610b619190614674565b905060006007606483610b749190614643565b610b7e9190614674565b9050601560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610be8573d6000803e3d6000fd5b50610bf1611ae9565b73ffffffffffffffffffffffffffffffffffffffff166108fc8284610c1691906146ce565b9081150290604051600060405180830381858888f19350505050158015610c41573d6000803e3d6000fd5b505050565b6000610c51826126c0565b9050919050565b606060008054610c6790614731565b80601f0160208091040260200160405190810160405280929190818152602001828054610c9390614731565b8015610ce05780601f10610cb557610100808354040283529160200191610ce0565b820191906000526020600020905b815481529060010190602001808311610cc357829003601f168201915b5050505050905090565b6000610cf58261273a565b610d34576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d2b906147d5565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60128054610d7c90614731565b80601f0160208091040260200160405190810160405280929190818152602001828054610da890614731565b8015610df55780601f10610dca57610100808354040283529160200191610df5565b820191906000526020600020905b815481529060010190602001808311610dd857829003601f168201915b505050505081565b6000610e08826115e4565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610e79576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e7090614867565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610e986126b8565b73ffffffffffffffffffffffffffffffffffffffff161480610ec75750610ec681610ec16126b8565b6123cf565b5b610f06576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610efd906148f9565b60405180910390fd5b610f1083836127a6565b505050565b6000600880549050905090565b60146020528060005260406000206000915090505481565b610f426126b8565b73ffffffffffffffffffffffffffffffffffffffff16610f60611ae9565b73ffffffffffffffffffffffffffffffffffffffff1614610fb6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fad906145c5565b60405180910390fd5b60006005606447610fc79190614643565b610fd19190614674565b9050601560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f1935050505015801561103b573d6000803e3d6000fd5b50611044611ae9565b73ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015611089573d6000803e3d6000fd5b5050565b600b5481565b600f60019054906101000a900460ff1681565b6110b76110b16126b8565b8261285f565b6110f6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110ed9061498b565b60405180910390fd5b61110183838361293d565b505050565b61110e6126b8565b73ffffffffffffffffffffffffffffffffffffffff1661112c611ae9565b73ffffffffffffffffffffffffffffffffffffffff1614611182576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611179906145c5565b60405180910390fd5b80600e8190555050565b600061119783611696565b82106111d8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111cf90614a1d565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b600c5481565b61123f6126b8565b73ffffffffffffffffffffffffffffffffffffffff1661125d611ae9565b73ffffffffffffffffffffffffffffffffffffffff16146112b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112aa906145c5565b60405180910390fd5b600f60009054906101000a900460ff1615600f60006101000a81548160ff021916908315150217905550565b6112fa8383836040518060200160405280600081525061219a565b505050565b6060600061130c83611696565b905060008167ffffffffffffffff81111561132a57611329614030565b5b6040519080825280602002602001820160405280156113585781602001602082028036833780820191505090505b50905060005b828110156113a257611370858261118c565b82828151811061138357611382614a3d565b5b602002602001018181525050808061139a90614a6c565b91505061135e565b508092505050919050565b60006113b7610f15565b82106113f8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113ef90614b27565b60405180910390fd5b6008828154811061140c5761140b614a3d565b5b90600052602060002001549050919050565b600f60039054906101000a900460ff1681565b6114396126b8565b73ffffffffffffffffffffffffffffffffffffffff16611457611ae9565b73ffffffffffffffffffffffffffffffffffffffff16146114ad576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114a4906145c5565b60405180910390fd5b6114b681612b99565b50565b6114c16126b8565b73ffffffffffffffffffffffffffffffffffffffff166114df611ae9565b73ffffffffffffffffffffffffffffffffffffffff1614611535576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161152c906145c5565b60405180910390fd5b6064816010546115459190614b47565b1115611586576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161157d90614c0f565b60405180910390fd5b60005b818110156115d9576115ae83600161159f610f15565b6115a99190614b47565b612bb3565b601060008154809291906115c190614a6c565b919050555080806115d190614a6c565b915050611589565b505050565b600e5481565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561168d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161168490614ca1565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611707576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116fe90614d33565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6117566126b8565b73ffffffffffffffffffffffffffffffffffffffff16611774611ae9565b73ffffffffffffffffffffffffffffffffffffffff16146117ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117c1906145c5565b60405180910390fd5b6117d46000612bd1565b565b6117de6126b8565b73ffffffffffffffffffffffffffffffffffffffff166117fc611ae9565b73ffffffffffffffffffffffffffffffffffffffff1614611852576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611849906145c5565b60405180910390fd5b600060466064476118639190614643565b61186d9190614674565b9050600060076064836118809190614643565b61188a9190614674565b9050601560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f193505050501580156118f4573d6000803e3d6000fd5b506118fd611ae9565b73ffffffffffffffffffffffffffffffffffffffff166108fc828461192291906146ce565b9081150290604051600060405180830381858888f1935050505015801561194d573d6000803e3d6000fd5b505050565b61195a6126b8565b73ffffffffffffffffffffffffffffffffffffffff16611978611ae9565b73ffffffffffffffffffffffffffffffffffffffff16146119ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119c5906145c5565b60405180910390fd5b80600b8190555050565b60016119e333611696565b1015611a24576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a1b90614d9f565b60405180910390fd5b600d54471015611a69576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a6090614e31565b60405180910390fd5b611a9633601660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16836112df565b8173ffffffffffffffffffffffffffffffffffffffff166108fc600d549081150290604051600060405180830381858888f19350505050158015611ade573d6000803e3d6000fd5b505050565b600d5481565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611b1b6126b8565b73ffffffffffffffffffffffffffffffffffffffff16611b39611ae9565b73ffffffffffffffffffffffffffffffffffffffff1614611b8f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b86906145c5565b60405180910390fd5b80600d8190555050565b600f60029054906101000a900460ff1681565b606060018054611bbb90614731565b80601f0160208091040260200160405190810160405280929190818152602001828054611be790614731565b8015611c345780601f10611c0957610100808354040283529160200191611c34565b820191906000526020600020905b815481529060010190602001808311611c1757829003601f168201915b5050505050905090565b611c466126b8565b73ffffffffffffffffffffffffffffffffffffffff16611c64611ae9565b73ffffffffffffffffffffffffffffffffffffffff1614611cba576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cb1906145c5565b60405180910390fd5b600f60029054906101000a900460ff1615600f60026101000a81548160ff021916908315150217905550565b611cf8611cf16126b8565b8383612c97565b5050565b611d046126b8565b73ffffffffffffffffffffffffffffffffffffffff16611d22611ae9565b73ffffffffffffffffffffffffffffffffffffffff1614611d78576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d6f906145c5565b60405180910390fd5b6001600f60036101000a81548160ff021916908315150217905550565b600f60029054906101000a900460ff161580611db65750611db581612e04565b5b611df5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dec90614e9d565b60405180910390fd5b3273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611e63576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e5a90614f2f565b60405180910390fd5b600f60019054906101000a900460ff1680611e8a5750600f60009054906101000a900460ff165b611ec9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ec090614f9b565b60405180910390fd5b600082118015611eda5750600a8211155b611f19576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f1090615007565b60405180910390fd5b600f60019054906101000a900460ff161580611f445750600b5482600c54611f419190614b47565b11155b611f83576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f7a90615073565b60405180910390fd5b6010546064611f9291906146ce565b61115c611f9f91906146ce565b82611fa8610f15565b611fb29190614b47565b1115611ff3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fea90615073565b60405180910390fd5b81600d546120019190614674565b341015612043576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161203a906150df565b60405180910390fd5b600e5482601460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546120919190614b47565b11156120d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120c99061514b565b60405180910390fd5b60005b8281101561216257601460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081548092919061212d90614a6c565b919050555061214f336001612140610f15565b61214a9190614b47565b612bb3565b808061215a90614a6c565b9150506120d5565b50600f60019054906101000a900460ff161561219157600c600081548092919061218b90614a6c565b91905055505b5050565b606481565b6121ab6121a56126b8565b8361285f565b6121ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121e19061498b565b60405180910390fd5b6121f684848484612e45565b50505050565b60606122078261273a565b612246576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161223d906151dd565b60405180910390fd5b60001515600f60039054906101000a900460ff16151514156122f4576012805461226f90614731565b80601f016020809104026020016040519081016040528092919081815260200182805461229b90614731565b80156122e85780601f106122bd576101008083540402835291602001916122e8565b820191906000526020600020905b8154815290600101906020018083116122cb57829003601f168201915b50505050509050612344565b60006122ff83612ea1565b9050600081511161231f5760405180602001604052806000815250612340565b806040516020016123309190615285565b6040516020818303038152906040525b9150505b919050565b6123516126b8565b73ffffffffffffffffffffffffffffffffffffffff1661236f611ae9565b73ffffffffffffffffffffffffffffffffffffffff16146123c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123bc906145c5565b60405180910390fd5b8060138190555050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600f60009054906101000a900460ff1681565b61247e6126b8565b73ffffffffffffffffffffffffffffffffffffffff1661249c611ae9565b73ffffffffffffffffffffffffffffffffffffffff16146124f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124e9906145c5565b60405180910390fd5b600f60019054906101000a900460ff1615600f60016101000a81548160ff021916908315150217905550565b6125266126b8565b73ffffffffffffffffffffffffffffffffffffffff16612544611ae9565b73ffffffffffffffffffffffffffffffffffffffff161461259a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612591906145c5565b60405180910390fd5b80601290805190602001906125b0929190613b44565b5050565b6125bc6126b8565b73ffffffffffffffffffffffffffffffffffffffff166125da611ae9565b73ffffffffffffffffffffffffffffffffffffffff1614612630576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612627906145c5565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156126a0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161269790615319565b60405180910390fd5b6126a981612bd1565b50565b60105481565b61115c81565b600033905090565b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480612733575061273282612f48565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16612819836115e4565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600061286a8261273a565b6128a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128a0906153ab565b60405180910390fd5b60006128b4836115e4565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061292357508373ffffffffffffffffffffffffffffffffffffffff1661290b84610cea565b73ffffffffffffffffffffffffffffffffffffffff16145b80612934575061293381856123cf565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661295d826115e4565b73ffffffffffffffffffffffffffffffffffffffff16146129b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129aa9061543d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612a23576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a1a906154cf565b60405180910390fd5b612a2e83838361302a565b612a396000826127a6565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612a8991906146ce565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612ae09190614b47565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b8060119080519060200190612baf929190613b44565b5050565b612bcd82826040518060200160405280600081525061303a565b5050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612d06576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612cfd9061553b565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051612df79190613c9b565b60405180910390a3505050565b60008033604051602001612e1891906155a3565b604051602081830303815290604052805190602001209050612e3d8360135483613095565b915050919050565b612e5084848461293d565b612e5c848484846130ac565b612e9b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e9290615630565b60405180910390fd5b50505050565b6060612eac8261273a565b612eeb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ee2906151dd565b60405180910390fd5b6000612ef5613234565b90506000815111612f155760405180602001604052806000815250612f40565b80612f1f846132c6565b604051602001612f30929190615650565b6040516020818303038152906040525b915050919050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061301357507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80613023575061302282613427565b5b9050919050565b613035838383613491565b505050565b61304483836135a5565b61305160008484846130ac565b613090576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161308790615630565b60405180910390fd5b505050565b6000826130a28584613773565b1490509392505050565b60006130cd8473ffffffffffffffffffffffffffffffffffffffff16613826565b15613227578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026130f66126b8565b8786866040518563ffffffff1660e01b815260040161311894939291906156c9565b6020604051808303816000875af192505050801561315457506040513d601f19601f82011682018060405250810190613151919061572a565b60015b6131d7573d8060008114613184576040519150601f19603f3d011682016040523d82523d6000602084013e613189565b606091505b506000815114156131cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131c690615630565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161491505061322c565b600190505b949350505050565b60606011805461324390614731565b80601f016020809104026020016040519081016040528092919081815260200182805461326f90614731565b80156132bc5780601f10613291576101008083540402835291602001916132bc565b820191906000526020600020905b81548152906001019060200180831161329f57829003601f168201915b5050505050905090565b6060600082141561330e576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050613422565b600082905060005b6000821461334057808061332990614a6c565b915050600a826133399190614643565b9150613316565b60008167ffffffffffffffff81111561335c5761335b614030565b5b6040519080825280601f01601f19166020018201604052801561338e5781602001600182028036833780820191505090505b5090505b6000851461341b576001826133a791906146ce565b9150600a856133b69190615757565b60306133c29190614b47565b60f81b8183815181106133d8576133d7614a3d565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856134149190614643565b9450613392565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b61349c838383613839565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156134df576134da8161383e565b61351e565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161461351d5761351c8382613887565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156135615761355c816139f4565b6135a0565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161461359f5761359e8282613ac5565b5b5b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613615576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161360c906157d4565b60405180910390fd5b61361e8161273a565b1561365e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161365590615840565b60405180910390fd5b61366a6000838361302a565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546136ba9190614b47565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b60008082905060005b845181101561381b57600085828151811061379a57613799614a3d565b5b602002602001015190508083116137db5782816040516020016137be929190615881565b604051602081830303815290604052805190602001209250613807565b80836040516020016137ee929190615881565b6040516020818303038152906040528051906020012092505b50808061381390614a6c565b91505061377c565b508091505092915050565b600080823b905060008111915050919050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b6000600161389484611696565b61389e91906146ce565b9050600060076000848152602001908152602001600020549050818114613983576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b60006001600880549050613a0891906146ce565b9050600060096000848152602001908152602001600020549050600060088381548110613a3857613a37614a3d565b5b906000526020600020015490508060088381548110613a5a57613a59614a3d565b5b906000526020600020018190555081600960008381526020019081526020016000208190555060096000858152602001908152602001600020600090556008805480613aa957613aa86158ad565b5b6001900381819060005260206000200160009055905550505050565b6000613ad083611696565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b828054613b5090614731565b90600052602060002090601f016020900481019282613b725760008555613bb9565b82601f10613b8b57805160ff1916838001178555613bb9565b82800160010185558215613bb9579182015b82811115613bb8578251825591602001919060010190613b9d565b5b509050613bc69190613bca565b5090565b5b80821115613be3576000816000905550600101613bcb565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b613c3081613bfb565b8114613c3b57600080fd5b50565b600081359050613c4d81613c27565b92915050565b600060208284031215613c6957613c68613bf1565b5b6000613c7784828501613c3e565b91505092915050565b60008115159050919050565b613c9581613c80565b82525050565b6000602082019050613cb06000830184613c8c565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015613cf0578082015181840152602081019050613cd5565b83811115613cff576000848401525b50505050565b6000601f19601f8301169050919050565b6000613d2182613cb6565b613d2b8185613cc1565b9350613d3b818560208601613cd2565b613d4481613d05565b840191505092915050565b60006020820190508181036000830152613d698184613d16565b905092915050565b6000819050919050565b613d8481613d71565b8114613d8f57600080fd5b50565b600081359050613da181613d7b565b92915050565b600060208284031215613dbd57613dbc613bf1565b5b6000613dcb84828501613d92565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000613dff82613dd4565b9050919050565b613e0f81613df4565b82525050565b6000602082019050613e2a6000830184613e06565b92915050565b613e3981613df4565b8114613e4457600080fd5b50565b600081359050613e5681613e30565b92915050565b60008060408385031215613e7357613e72613bf1565b5b6000613e8185828601613e47565b9250506020613e9285828601613d92565b9150509250929050565b613ea581613d71565b82525050565b6000602082019050613ec06000830184613e9c565b92915050565b600060208284031215613edc57613edb613bf1565b5b6000613eea84828501613e47565b91505092915050565b600080600060608486031215613f0c57613f0b613bf1565b5b6000613f1a86828701613e47565b9350506020613f2b86828701613e47565b9250506040613f3c86828701613d92565b9150509250925092565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b613f7b81613d71565b82525050565b6000613f8d8383613f72565b60208301905092915050565b6000602082019050919050565b6000613fb182613f46565b613fbb8185613f51565b9350613fc683613f62565b8060005b83811015613ff7578151613fde8882613f81565b9750613fe983613f99565b925050600181019050613fca565b5085935050505092915050565b6000602082019050818103600083015261401e8184613fa6565b905092915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61406882613d05565b810181811067ffffffffffffffff8211171561408757614086614030565b5b80604052505050565b600061409a613be7565b90506140a6828261405f565b919050565b600067ffffffffffffffff8211156140c6576140c5614030565b5b6140cf82613d05565b9050602081019050919050565b82818337600083830152505050565b60006140fe6140f9846140ab565b614090565b90508281526020810184848401111561411a5761411961402b565b5b6141258482856140dc565b509392505050565b600082601f83011261414257614141614026565b5b81356141528482602086016140eb565b91505092915050565b60006020828403121561417157614170613bf1565b5b600082013567ffffffffffffffff81111561418f5761418e613bf6565b5b61419b8482850161412d565b91505092915050565b60006141af82613dd4565b9050919050565b6141bf816141a4565b81146141ca57600080fd5b50565b6000813590506141dc816141b6565b92915050565b600080604083850312156141f9576141f8613bf1565b5b6000614207858286016141cd565b925050602061421885828601613d92565b9150509250929050565b61422b81613c80565b811461423657600080fd5b50565b60008135905061424881614222565b92915050565b6000806040838503121561426557614264613bf1565b5b600061427385828601613e47565b925050602061428485828601614239565b9150509250929050565b600067ffffffffffffffff8211156142a9576142a8614030565b5b602082029050602081019050919050565b600080fd5b6000819050919050565b6142d2816142bf565b81146142dd57600080fd5b50565b6000813590506142ef816142c9565b92915050565b60006143086143038461428e565b614090565b9050808382526020820190506020840283018581111561432b5761432a6142ba565b5b835b81811015614354578061434088826142e0565b84526020840193505060208101905061432d565b5050509392505050565b600082601f83011261437357614372614026565b5b81356143838482602086016142f5565b91505092915050565b600080604083850312156143a3576143a2613bf1565b5b60006143b185828601613d92565b925050602083013567ffffffffffffffff8111156143d2576143d1613bf6565b5b6143de8582860161435e565b9150509250929050565b600067ffffffffffffffff82111561440357614402614030565b5b61440c82613d05565b9050602081019050919050565b600061442c614427846143e8565b614090565b9050828152602081018484840111156144485761444761402b565b5b6144538482856140dc565b509392505050565b600082601f8301126144705761446f614026565b5b8135614480848260208601614419565b91505092915050565b600080600080608085870312156144a3576144a2613bf1565b5b60006144b187828801613e47565b94505060206144c287828801613e47565b93505060406144d387828801613d92565b925050606085013567ffffffffffffffff8111156144f4576144f3613bf6565b5b6145008782880161445b565b91505092959194509250565b60006020828403121561452257614521613bf1565b5b6000614530848285016142e0565b91505092915050565b600080604083850312156145505761454f613bf1565b5b600061455e85828601613e47565b925050602061456f85828601613e47565b9150509250929050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006145af602083613cc1565b91506145ba82614579565b602082019050919050565b600060208201905081810360008301526145de816145a2565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061464e82613d71565b915061465983613d71565b925082614669576146686145e5565b5b828204905092915050565b600061467f82613d71565b915061468a83613d71565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156146c3576146c2614614565b5b828202905092915050565b60006146d982613d71565b91506146e483613d71565b9250828210156146f7576146f6614614565b5b828203905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061474957607f821691505b6020821081141561475d5761475c614702565b5b50919050565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b60006147bf602c83613cc1565b91506147ca82614763565b604082019050919050565b600060208201905081810360008301526147ee816147b2565b9050919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b6000614851602183613cc1565b915061485c826147f5565b604082019050919050565b6000602082019050818103600083015261488081614844565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b60006148e3603883613cc1565b91506148ee82614887565b604082019050919050565b60006020820190508181036000830152614912816148d6565b9050919050565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b6000614975603183613cc1565b915061498082614919565b604082019050919050565b600060208201905081810360008301526149a481614968565b9050919050565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b6000614a07602b83613cc1565b9150614a12826149ab565b604082019050919050565b60006020820190508181036000830152614a36816149fa565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000614a7782613d71565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614aaa57614aa9614614565b5b600182019050919050565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b6000614b11602c83613cc1565b9150614b1c82614ab5565b604082019050919050565b60006020820190508181036000830152614b4081614b04565b9050919050565b6000614b5282613d71565b9150614b5d83613d71565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614b9257614b91614614565b5b828201905092915050565b7f5468697320616d6f756e74206973206d6f7265207468616e206d617820616c6c60008201527f6f77656400000000000000000000000000000000000000000000000000000000602082015250565b6000614bf9602483613cc1565b9150614c0482614b9d565b604082019050919050565b60006020820190508181036000830152614c2881614bec565b9050919050565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b6000614c8b602983613cc1565b9150614c9682614c2f565b604082019050919050565b60006020820190508181036000830152614cba81614c7e565b9050919050565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b6000614d1d602a83613cc1565b9150614d2882614cc1565b604082019050919050565b60006020820190508181036000830152614d4c81614d10565b9050919050565b7f596f7520646f6e2774206f776e204c697a617264730000000000000000000000600082015250565b6000614d89601583613cc1565b9150614d9482614d53565b602082019050919050565b60006020820190508181036000830152614db881614d7c565b9050919050565b7f4e6f7420656e6f756768742066756e6473206f6e2074686520636f6e7472616360008201527f7400000000000000000000000000000000000000000000000000000000000000602082015250565b6000614e1b602183613cc1565b9150614e2682614dbf565b604082019050919050565b60006020820190508181036000830152614e4a81614e0e565b9050919050565b7f41646472657373206e6f742077686974656c6973746564000000000000000000600082015250565b6000614e87601783613cc1565b9150614e9282614e51565b602082019050919050565b60006020820190508181036000830152614eb681614e7a565b9050919050565b7f4e6f207472616e73616374696f6e2066726f6d20736d61727420636f6e74726160008201527f6374732100000000000000000000000000000000000000000000000000000000602082015250565b6000614f19602483613cc1565b9150614f2482614ebd565b604082019050919050565b60006020820190508181036000830152614f4881614f0c565b9050919050565b7f53616c65206d7573742062652061637469766520746f206d696e740000000000600082015250565b6000614f85601b83613cc1565b9150614f9082614f4f565b602082019050919050565b60006020820190508181036000830152614fb481614f78565b9050919050565b7f4d6178203130204e46547320706572207472616e73616374696f6e0000000000600082015250565b6000614ff1601b83613cc1565b9150614ffc82614fbb565b602082019050919050565b6000602082019050818103600083015261502081614fe4565b9050919050565b7f507572636861736520776f756c6420657863656564206d617820737570706c79600082015250565b600061505d602083613cc1565b915061506882615027565b602082019050919050565b6000602082019050818103600083015261508c81615050565b9050919050565b7f4e6f7420656e6f7567682045544820666f72207472616e73616374696f6e0000600082015250565b60006150c9601e83613cc1565b91506150d482615093565b602082019050919050565b600060208201905081810360008301526150f8816150bc565b9050919050565b7f4d6178204e465420706572206164647265737320657863656564656400000000600082015250565b6000615135601c83613cc1565b9150615140826150ff565b602082019050919050565b6000602082019050818103600083015261516481615128565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b60006151c7602f83613cc1565b91506151d28261516b565b604082019050919050565b600060208201905081810360008301526151f6816151ba565b9050919050565b600081905092915050565b600061521382613cb6565b61521d81856151fd565b935061522d818560208601613cd2565b80840191505092915050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b600061526f6005836151fd565b915061527a82615239565b600582019050919050565b60006152918284615208565b915061529c82615262565b915081905092915050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000615303602683613cc1565b915061530e826152a7565b604082019050919050565b60006020820190508181036000830152615332816152f6565b9050919050565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b6000615395602c83613cc1565b91506153a082615339565b604082019050919050565b600060208201905081810360008301526153c481615388565b9050919050565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b6000615427602983613cc1565b9150615432826153cb565b604082019050919050565b600060208201905081810360008301526154568161541a565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006154b9602483613cc1565b91506154c48261545d565b604082019050919050565b600060208201905081810360008301526154e8816154ac565b9050919050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b6000615525601983613cc1565b9150615530826154ef565b602082019050919050565b6000602082019050818103600083015261555481615518565b9050919050565b60008160601b9050919050565b60006155738261555b565b9050919050565b600061558582615568565b9050919050565b61559d61559882613df4565b61557a565b82525050565b60006155af828461558c565b60148201915081905092915050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b600061561a603283613cc1565b9150615625826155be565b604082019050919050565b600060208201905081810360008301526156498161560d565b9050919050565b600061565c8285615208565b91506156688284615208565b91508190509392505050565b600081519050919050565b600082825260208201905092915050565b600061569b82615674565b6156a5818561567f565b93506156b5818560208601613cd2565b6156be81613d05565b840191505092915050565b60006080820190506156de6000830187613e06565b6156eb6020830186613e06565b6156f86040830185613e9c565b818103606083015261570a8184615690565b905095945050505050565b60008151905061572481613c27565b92915050565b6000602082840312156157405761573f613bf1565b5b600061574e84828501615715565b91505092915050565b600061576282613d71565b915061576d83613d71565b92508261577d5761577c6145e5565b5b828206905092915050565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b60006157be602083613cc1565b91506157c982615788565b602082019050919050565b600060208201905081810360008301526157ed816157b1565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b600061582a601c83613cc1565b9150615835826157f4565b602082019050919050565b600060208201905081810360008301526158598161581d565b9050919050565b6000819050919050565b61587b615876826142bf565b615860565b82525050565b600061588d828561586a565b60208201915061589d828461586a565b6020820191508190509392505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fdfea2646970667358221220887237e1f62136fc4943fd42f686cc882ed4613cfbf475c1790e2510e77dd8be64736f6c634300080b0033

Loading...
Loading
Loading...
Loading
[ 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.