ETH Price: $2,871.35 (-9.30%)
Gas: 15 Gwei

Token

Valfrelandia (VALFRE)
 

Overview

Max Total Supply

600 VALFRE

Holders

331

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
sprot.eth
Balance
1 VALFRE
0x3ba0d1f75c465921231d36a3e6879faf310c46ea
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:
Valfrelandia

Compiler Version
v0.8.3+commit.8d00100c

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 15 : Valfrelandia.sol
// SPDX-License-Identifier: MIT

/***
 __          __      _______          _____  _       _ _        _
 \ \        / /     |__   __|        |  __ \(_)     (_) |      | |
  \ \  /\  / /_ _ _   _| | ___   ___ | |  | |_  __ _ _| |_ __ _| |
   \ \/  \/ / _` | | | | |/ _ \ / _ \| |  | | |/ _` | | __/ _` | |
    \  /\  / (_| | |_| | | (_) | (_) | |__| | | (_| | | || (_| | |
     \/  \/ \__,_|\__, |_|\___/ \___/|_____/|_|\__, |_|\__\__,_|_|
                   __/ |                        __/ |
                  |___/                        |___/
***/
pragma solidity ^0.8.3;

import "@openzeppelin/contracts/utils/Strings.sol";
import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "./IPaymentSplitter.sol";
import {MerkleProof} from "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol";

contract Valfrelandia is ERC721Enumerable, Ownable {
    using MerkleProof for bytes32[];
    using Strings for uint256;

    mapping(address => uint8) public alreadyMinted;
    uint8 public constant maxPerWallet = 3;
    uint8 public constant maxPerTransaction = 3;

    uint16 public reservedNFTsId;
    uint16 public nftId;

    bytes32 public merkleRoot;

    bool public preReveal = true;

    string private baseURI;
    string private preRevealBaseURI;

    bool public saleStarted = false;
    bool public publicSaleStarted = false;

    uint16 public constant totalNFTs = 10000;

    uint256 public nftPrice = 123000000000000000;

    address public paymentSplitter;

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

    constructor(string memory name, string memory symbol) ERC721(name, symbol) {
        nftId = 1; // item 1-9500
        reservedNFTsId = 9500; // item 9501-10000
    }

    function setPreRevealBaseURI(string memory _preRevealBaseUri) public onlyOwner {
        preRevealBaseURI = _preRevealBaseUri;
    }

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

    function mint(
        bytes32[] memory proof,
        bytes32 leaf,
        uint8 amount
    ) public payable returns (uint256) {
        require(
            amount <= maxPerTransaction,
            string(
                abi.encodePacked(
                    "Cannot mint more than ",
                    Strings.toString(maxPerTransaction),
                    " in a single transaction"
                )
            )
        );
        require(msg.value == (nftPrice * amount), "The price is invalid");
        require(saleStarted == true, "The sale is paused");
        require(nftId + amount <= 9500, "Mint limit reached");
        require(alreadyMinted[msg.sender] <= maxPerWallet, "Address minted max amount");
        require(alreadyMinted[msg.sender] + amount <= maxPerWallet, "Amount requested is over max amount per wallet");

        if (publicSaleStarted == false) {
            require(keccak256(abi.encodePacked(msg.sender)) == leaf, "This leaf does not belong to the sender");
            require(proof.verify(merkleRoot, leaf), "You are not in the list");
        }

        alreadyMinted[msg.sender] += amount;

        for (uint8 i = 0; i < amount; i++) _safeMint(msg.sender, nftId++);

        return nftId;
    }

    function reserveNFT(address to, uint16 amount) public onlyOwner {
        require(reservedNFTsId + amount <= totalNFTs, "Out of stock");

        for (uint16 i = 0; i < amount; i++) {
            _safeMint(to, reservedNFTsId++);
        }
    }

    function startSale() public onlyOwner {
        saleStarted = true;
    }

    function pauseSale() public onlyOwner {
        saleStarted = false;
    }

    function togglePublicSale() public onlyOwner {
        publicSaleStarted = !publicSaleStarted;
    }

    function setMerkleRoot(bytes32 _root) public onlyOwner {
        merkleRoot = _root;
    }

    function setNFTPrice(uint256 price) public onlyOwner {
        nftPrice = price;
    }

    function setPaymentSplitterAddress(address _address) public onlyOwner {
        paymentSplitter = _address;
    }

    function reveal() public onlyOwner {
        preReveal = false;
    }

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

    function withdrawToSplitter(string memory agreementName) public onlyOwner {
        IPaymentSplitter(paymentSplitter).deposit{value: address(this).balance}(agreementName);
    }

    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        require(_exists(tokenId), "URI query for nonexistent token");

        if (preReveal == true) return string(abi.encodePacked(preRevealBaseURI, tokenId.toString()));
        else return string(abi.encodePacked(baseURI, tokenId.toString()));
    }
}

File 2 of 15 : Strings.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

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

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

File 3 of 15 : ERC721Enumerable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

File 4 of 15 : Ownable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

File 5 of 15 : IPaymentSplitter.sol
// SPDX-License-Identifier: MIT OR Apache-2.0
pragma solidity ^0.8.3;

interface IPaymentSplitter {
    event AgreementCreated(string name);
    event Withdraw(address to, uint256 amount);
    event Deposit(string name, uint256 amount);

    struct Beneficiary {
        address payee;
        uint256 basisPoints;
    }

    function createAgreement(string memory name, Beneficiary[] memory beneficiaries) external;

    function deleteAgreement(string memory name) external;

    function deposit(string memory agreementName) external payable;

    function withdraw(address to, uint256 amount) external;

    function emergencyWithdrawal() external;
}

File 6 of 15 : MerkleProof.sol
// SPDX-License-Identifier: MIT

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) {
        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));
            }
        }

        // Check if the computed hash (root) is equal to the provided root
        return computedHash == root;
    }
}

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

pragma solidity ^0.8.0;

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

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

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

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

pragma solidity ^0.8.0;

import "../IERC721.sol";

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

pragma solidity ^0.8.0;

import "../IERC721.sol";

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

pragma solidity ^0.8.0;

import "./IERC165.sol";

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

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

pragma solidity ^0.8.0;

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

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"symbol","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"alreadyMinted","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"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":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerTransaction","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerWallet","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"merkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"},{"internalType":"bytes32","name":"leaf","type":"bytes32"},{"internalType":"uint8","name":"amount","type":"uint8"}],"name":"mint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nftId","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nftPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"pauseSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paymentSplitter","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"preReveal","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicSaleStarted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint16","name":"amount","type":"uint16"}],"name":"reserveNFT","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reservedNFTsId","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"reveal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"saleStarted","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":"bytes32","name":"_root","type":"bytes32"}],"name":"setMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"price","type":"uint256"}],"name":"setNFTPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"setPaymentSplitterAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_preRevealBaseUri","type":"string"}],"name":"setPreRevealBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"startSale","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":[],"name":"togglePublicSale","outputs":[],"stateMutability":"nonpayable","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":"totalNFTs","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"agreementName","type":"string"}],"name":"withdrawToSplitter","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526001600e60006101000a81548160ff0219169083151502179055506000601160006101000a81548160ff0219169083151502179055506000601160016101000a81548160ff0219169083151502179055506701b4fbd92b5f80006012553480156200006e57600080fd5b50604051620057973803806200579783398181016040528101906200009491906200031f565b81818160009080519060200190620000ae929190620001fd565b508060019080519060200190620000c7929190620001fd565b505050620000ea620000de6200012f60201b60201c565b6200013760201b60201c565b6001600c60026101000a81548161ffff021916908361ffff16021790555061251c600c60006101000a81548161ffff021916908361ffff160217905550505062000502565b600033905090565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200020b9062000427565b90600052602060002090601f0160209004810192826200022f57600085556200027b565b82601f106200024a57805160ff19168380011785556200027b565b828001600101855582156200027b579182015b828111156200027a5782518255916020019190600101906200025d565b5b5090506200028a91906200028e565b5090565b5b80821115620002a95760008160009055506001016200028f565b5090565b6000620002c4620002be84620003bb565b62000392565b905082815260208101848484011115620002dd57600080fd5b620002ea848285620003f1565b509392505050565b600082601f8301126200030457600080fd5b815162000316848260208601620002ad565b91505092915050565b600080604083850312156200033357600080fd5b600083015167ffffffffffffffff8111156200034e57600080fd5b6200035c85828601620002f2565b925050602083015167ffffffffffffffff8111156200037a57600080fd5b6200038885828601620002f2565b9150509250929050565b60006200039e620003b1565b9050620003ac82826200045d565b919050565b6000604051905090565b600067ffffffffffffffff821115620003d957620003d8620004c2565b5b620003e482620004f1565b9050602081019050919050565b60005b8381101562000411578082015181840152602081019050620003f4565b8381111562000421576000848401525b50505050565b600060028204905060018216806200044057607f821691505b6020821081141562000457576200045662000493565b5b50919050565b6200046882620004f1565b810181811067ffffffffffffffff821117156200048a5762000489620004c2565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b61528580620005126000396000f3fe6080604052600436106102675760003560e01c806370a0823111610144578063b66a0e5d116100b6578063e222c7f91161007a578063e222c7f9146108e9578063e985e9c514610900578063ed4a6b0c1461093d578063f2fde38b14610968578063f38ade9b14610991578063f70890a3146109ba57610267565b8063b66a0e5d14610818578063b74e94cf1461082f578063b88d4fde14610858578063c6bc518214610881578063c87b56dd146108ac57610267565b806395d89b411161010857806395d89b4114610727578063a22cb46514610752578063a2e914771461077b578063a475b5dd146107a6578063aa4e891a146107bd578063b499c0f0146107e857610267565b806370a0823114610656578063715018a6146106935780637cb64759146106aa57806381530b68146106d35780638da5cb5b146106fc57610267565b80633ccfd60b116101dd57806355367ba9116101a157806355367ba91461055c57806355f804b3146105735780635c474f9e1461059c57806362e00fcc146105c75780636352211e146105f05780636c4f06981461062d57610267565b80633ccfd60b1461048957806342842e0e146104a0578063453c2310146104c95780634b980d67146104f45780634f6ccce71461051f57610267565b80630d0e96da1161022f5780630d0e96da146103775780630d39fc81146103a257806318160ddd146103cd57806323b872dd146103f85780632eb4a7ab146104215780632f745c591461044c57610267565b806301ffc9a71461026c57806306fdde03146102a9578063081812fc146102d4578063095ea7b3146103115780630a398b881461033a575b600080fd5b34801561027857600080fd5b50610293600480360381019061028e9190613a32565b6109e5565b6040516102a0919061416b565b60405180910390f35b3480156102b557600080fd5b506102be610a5f565b6040516102cb91906141a1565b60405180910390f35b3480156102e057600080fd5b506102fb60048036038101906102f69190613ac5565b610af1565b6040516103089190614104565b60405180910390f35b34801561031d57600080fd5b5061033860048036038101906103339190613966565b610b76565b005b34801561034657600080fd5b50610361600480360381019061035c91906137bf565b610c8e565b60405161036e9190614539565b60405180910390f35b34801561038357600080fd5b5061038c610cae565b6040516103999190614503565b60405180910390f35b3480156103ae57600080fd5b506103b7610cb4565b6040516103c4919061451e565b60405180910390f35b3480156103d957600080fd5b506103e2610cba565b6040516103ef919061451e565b60405180910390f35b34801561040457600080fd5b5061041f600480360381019061041a9190613824565b610cc7565b005b34801561042d57600080fd5b50610436610d27565b6040516104439190614186565b60405180910390f35b34801561045857600080fd5b50610473600480360381019061046e9190613966565b610d2d565b604051610480919061451e565b60405180910390f35b34801561049557600080fd5b5061049e610dd2565b005b3480156104ac57600080fd5b506104c760048036038101906104c29190613824565b610e97565b005b3480156104d557600080fd5b506104de610eb7565b6040516104eb9190614539565b60405180910390f35b34801561050057600080fd5b50610509610ebc565b6040516105169190614539565b60405180910390f35b34801561052b57600080fd5b5061054660048036038101906105419190613ac5565b610ec1565b604051610553919061451e565b60405180910390f35b34801561056857600080fd5b50610571610f58565b005b34801561057f57600080fd5b5061059a60048036038101906105959190613a84565b610ff1565b005b3480156105a857600080fd5b506105b1611087565b6040516105be919061416b565b60405180910390f35b3480156105d357600080fd5b506105ee60048036038101906105e99190613a84565b61109a565b005b3480156105fc57600080fd5b5061061760048036038101906106129190613ac5565b6111a7565b6040516106249190614104565b60405180910390f35b34801561063957600080fd5b50610654600480360381019061064f91906137bf565b611259565b005b34801561066257600080fd5b5061067d600480360381019061067891906137bf565b611319565b60405161068a919061451e565b60405180910390f35b34801561069f57600080fd5b506106a86113d1565b005b3480156106b657600080fd5b506106d160048036038101906106cc9190613a09565b611459565b005b3480156106df57600080fd5b506106fa60048036038101906106f59190613ac5565b6114df565b005b34801561070857600080fd5b50610711611565565b60405161071e9190614104565b60405180910390f35b34801561073357600080fd5b5061073c61158f565b60405161074991906141a1565b60405180910390f35b34801561075e57600080fd5b50610779600480360381019061077491906138ee565b611621565b005b34801561078757600080fd5b506107906117a2565b60405161079d919061416b565b60405180910390f35b3480156107b257600080fd5b506107bb6117b5565b005b3480156107c957600080fd5b506107d261184e565b6040516107df919061416b565b60405180910390f35b61080260048036038101906107fd91906139a2565b611861565b60405161080f919061451e565b60405180910390f35b34801561082457600080fd5b5061082d611cfa565b005b34801561083b57600080fd5b506108566004803603810190610851919061392a565b611d93565b005b34801561086457600080fd5b5061087f600480360381019061087a9190613873565b611ee9565b005b34801561088d57600080fd5b50610896611f4b565b6040516108a39190614503565b60405180910390f35b3480156108b857600080fd5b506108d360048036038101906108ce9190613ac5565b611f5f565b6040516108e091906141a1565b60405180910390f35b3480156108f557600080fd5b506108fe61202a565b005b34801561090c57600080fd5b50610927600480360381019061092291906137e8565b6120d2565b604051610934919061416b565b60405180910390f35b34801561094957600080fd5b50610952612166565b60405161095f9190614104565b60405180910390f35b34801561097457600080fd5b5061098f600480360381019061098a91906137bf565b61218c565b005b34801561099d57600080fd5b506109b860048036038101906109b39190613a84565b612284565b005b3480156109c657600080fd5b506109cf61231a565b6040516109dc9190614503565b60405180910390f35b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610a585750610a578261232e565b5b9050919050565b606060008054610a6e906148be565b80601f0160208091040260200160405190810160405280929190818152602001828054610a9a906148be565b8015610ae75780601f10610abc57610100808354040283529160200191610ae7565b820191906000526020600020905b815481529060010190602001808311610aca57829003601f168201915b5050505050905090565b6000610afc82612410565b610b3b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b3290614403565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610b81826111a7565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610bf2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610be990614483565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610c1161247c565b73ffffffffffffffffffffffffffffffffffffffff161480610c405750610c3f81610c3a61247c565b6120d2565b5b610c7f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c7690614343565b60405180910390fd5b610c898383612484565b505050565b600b6020528060005260406000206000915054906101000a900460ff1681565b61271081565b60125481565b6000600880549050905090565b610cd8610cd261247c565b8261253d565b610d17576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d0e906144c3565b60405180910390fd5b610d2283838361261b565b505050565b600d5481565b6000610d3883611319565b8210610d79576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d7090614203565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b610dda61247c565b73ffffffffffffffffffffffffffffffffffffffff16610df8611565565b73ffffffffffffffffffffffffffffffffffffffff1614610e4e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e4590614423565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015610e94573d6000803e3d6000fd5b50565b610eb283838360405180602001604052806000815250611ee9565b505050565b600381565b600381565b6000610ecb610cba565b8210610f0c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f03906144e3565b60405180910390fd5b60088281548110610f46577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001549050919050565b610f6061247c565b73ffffffffffffffffffffffffffffffffffffffff16610f7e611565565b73ffffffffffffffffffffffffffffffffffffffff1614610fd4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fcb90614423565b60405180910390fd5b6000601160006101000a81548160ff021916908315150217905550565b610ff961247c565b73ffffffffffffffffffffffffffffffffffffffff16611017611565565b73ffffffffffffffffffffffffffffffffffffffff161461106d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161106490614423565b60405180910390fd5b80600f908051906020019061108392919061350e565b5050565b601160009054906101000a900460ff1681565b6110a261247c565b73ffffffffffffffffffffffffffffffffffffffff166110c0611565565b73ffffffffffffffffffffffffffffffffffffffff1614611116576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161110d90614423565b60405180910390fd5b601360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a26e118647836040518363ffffffff1660e01b815260040161117291906141a1565b6000604051808303818588803b15801561118b57600080fd5b505af115801561119f573d6000803e3d6000fd5b505050505050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611250576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161124790614383565b60405180910390fd5b80915050919050565b61126161247c565b73ffffffffffffffffffffffffffffffffffffffff1661127f611565565b73ffffffffffffffffffffffffffffffffffffffff16146112d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112cc90614423565b60405180910390fd5b80601360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561138a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161138190614363565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6113d961247c565b73ffffffffffffffffffffffffffffffffffffffff166113f7611565565b73ffffffffffffffffffffffffffffffffffffffff161461144d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161144490614423565b60405180910390fd5b6114576000612877565b565b61146161247c565b73ffffffffffffffffffffffffffffffffffffffff1661147f611565565b73ffffffffffffffffffffffffffffffffffffffff16146114d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114cc90614423565b60405180910390fd5b80600d8190555050565b6114e761247c565b73ffffffffffffffffffffffffffffffffffffffff16611505611565565b73ffffffffffffffffffffffffffffffffffffffff161461155b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161155290614423565b60405180910390fd5b8060128190555050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606001805461159e906148be565b80601f01602080910402602001604051908101604052809291908181526020018280546115ca906148be565b80156116175780601f106115ec57610100808354040283529160200191611617565b820191906000526020600020905b8154815290600101906020018083116115fa57829003601f168201915b5050505050905090565b61162961247c565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611697576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161168e906142c3565b60405180910390fd5b80600560006116a461247c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661175161247c565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611796919061416b565b60405180910390a35050565b601160019054906101000a900460ff1681565b6117bd61247c565b73ffffffffffffffffffffffffffffffffffffffff166117db611565565b73ffffffffffffffffffffffffffffffffffffffff1614611831576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161182890614423565b60405180910390fd5b6000600e60006101000a81548160ff021916908315150217905550565b600e60009054906101000a900460ff1681565b6000600360ff168260ff16111561187b600360ff1661293d565b60405160200161188b91906140d7565b604051602081830303815290604052906118db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118d291906141a1565b60405180910390fd5b508160ff166012546118ed9190614755565b341461192e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161192590614463565b60405180910390fd5b60011515601160009054906101000a900460ff16151514611984576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161197b906143a3565b60405180910390fd5b61251c8260ff16600c60029054906101000a900461ffff166119a6919061465f565b61ffff1611156119eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119e2906141c3565b60405180910390fd5b600360ff16600b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1660ff161115611a81576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a78906143e3565b60405180910390fd5b600360ff1682600b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16611ade91906146ed565b60ff161115611b22576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b1990614263565b60405180910390fd5b60001515601160019054906101000a900460ff1615151415611bfd578233604051602001611b50919061406c565b6040516020818303038152906040528051906020012014611ba6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b9d906144a3565b60405180910390fd5b611bbd600d548486612aea9092919063ffffffff16565b611bfc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bf390614323565b60405180910390fd5b5b81600b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282829054906101000a900460ff16611c5891906146ed565b92506101000a81548160ff021916908360ff16021790555060005b8260ff168160ff161015611cdb57611cc833600c600281819054906101000a900461ffff1680929190611ca590614921565b91906101000a81548161ffff021916908361ffff16021790555061ffff16612bc6565b8080611cd390614995565b915050611c73565b50600c60029054906101000a900461ffff1661ffff1690509392505050565b611d0261247c565b73ffffffffffffffffffffffffffffffffffffffff16611d20611565565b73ffffffffffffffffffffffffffffffffffffffff1614611d76576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d6d90614423565b60405180910390fd5b6001601160006101000a81548160ff021916908315150217905550565b611d9b61247c565b73ffffffffffffffffffffffffffffffffffffffff16611db9611565565b73ffffffffffffffffffffffffffffffffffffffff1614611e0f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e0690614423565b60405180910390fd5b61271061ffff1681600c60009054906101000a900461ffff16611e32919061465f565b61ffff161115611e77576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e6e90614303565b60405180910390fd5b60005b8161ffff168161ffff161015611ee457611ed183600c600081819054906101000a900461ffff1680929190611eae90614921565b91906101000a81548161ffff021916908361ffff16021790555061ffff16612bc6565b8080611edc90614921565b915050611e7a565b505050565b611efa611ef461247c565b8361253d565b611f39576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f30906144c3565b60405180910390fd5b611f4584848484612be4565b50505050565b600c60029054906101000a900461ffff1681565b6060611f6a82612410565b611fa9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fa0906141e3565b60405180910390fd5b60011515600e60009054906101000a900460ff1615151415611ff7576010611fd08361293d565b604051602001611fe19291906140b3565b6040516020818303038152906040529050612025565b600f6120028361293d565b6040516020016120139291906140b3565b60405160208183030381529060405290505b919050565b61203261247c565b73ffffffffffffffffffffffffffffffffffffffff16612050611565565b73ffffffffffffffffffffffffffffffffffffffff16146120a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161209d90614423565b60405180910390fd5b601160019054906101000a900460ff1615601160016101000a81548160ff021916908315150217905550565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b601360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b61219461247c565b73ffffffffffffffffffffffffffffffffffffffff166121b2611565565b73ffffffffffffffffffffffffffffffffffffffff1614612208576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121ff90614423565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612278576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161226f90614243565b60405180910390fd5b61228181612877565b50565b61228c61247c565b73ffffffffffffffffffffffffffffffffffffffff166122aa611565565b73ffffffffffffffffffffffffffffffffffffffff1614612300576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122f790614423565b60405180910390fd5b806010908051906020019061231692919061350e565b5050565b600c60009054906101000a900461ffff1681565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806123f957507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80612409575061240882612c40565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166124f7836111a7565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600061254882612410565b612587576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161257e906142e3565b60405180910390fd5b6000612592836111a7565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061260157508373ffffffffffffffffffffffffffffffffffffffff166125e984610af1565b73ffffffffffffffffffffffffffffffffffffffff16145b80612612575061261181856120d2565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661263b826111a7565b73ffffffffffffffffffffffffffffffffffffffff1614612691576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161268890614443565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612701576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126f8906142a3565b60405180910390fd5b61270c838383612caa565b612717600082612484565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461276791906147af565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546127be9190614697565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60606000821415612985576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612ae5565b600082905060005b600082146129b75780806129a09061494c565b915050600a826129b09190614724565b915061298d565b60008167ffffffffffffffff8111156129f9577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015612a2b5781602001600182028036833780820191505090505b5090505b60008514612ade57600182612a4491906147af565b9150600a85612a5391906149ed565b6030612a5f9190614697565b60f81b818381518110612a9b577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612ad79190614724565b9450612a2f565b8093505050505b919050565b60008082905060005b8551811015612bb8576000868281518110612b37577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101519050808311612b78578281604051602001612b5b929190614087565b604051602081830303815290604052805190602001209250612ba4565b8083604051602001612b8b929190614087565b6040516020818303038152906040528051906020012092505b508080612bb09061494c565b915050612af3565b508381149150509392505050565b612be0828260405180602001604052806000815250612dbe565b5050565b612bef84848461261b565b612bfb84848484612e19565b612c3a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c3190614223565b60405180910390fd5b50505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b612cb5838383612fb0565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612cf857612cf381612fb5565b612d37565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614612d3657612d358382612ffe565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612d7a57612d758161316b565b612db9565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614612db857612db782826132ae565b5b5b505050565b612dc8838361332d565b612dd56000848484612e19565b612e14576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e0b90614223565b60405180910390fd5b505050565b6000612e3a8473ffffffffffffffffffffffffffffffffffffffff166134fb565b15612fa3578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612e6361247c565b8786866040518563ffffffff1660e01b8152600401612e85949392919061411f565b602060405180830381600087803b158015612e9f57600080fd5b505af1925050508015612ed057506040513d601f19601f82011682018060405250810190612ecd9190613a5b565b60015b612f53573d8060008114612f00576040519150601f19603f3d011682016040523d82523d6000602084013e612f05565b606091505b50600081511415612f4b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f4290614223565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612fa8565b600190505b949350505050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b6000600161300b84611319565b61301591906147af565b90506000600760008481526020019081526020016000205490508181146130fa576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b6000600160088054905061317f91906147af565b90506000600960008481526020019081526020016000205490506000600883815481106131d5577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001549050806008838154811061321d577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020018190555081600960008381526020019081526020016000208190555060096000858152602001908152602001600020600090556008805480613292577f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b60006132b983611319565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561339d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613394906143c3565b60405180910390fd5b6133a681612410565b156133e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016133dd90614283565b60405180910390fd5b6133f260008383612caa565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546134429190614697565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b82805461351a906148be565b90600052602060002090601f01602090048101928261353c5760008555613583565b82601f1061355557805160ff1916838001178555613583565b82800160010185558215613583579182015b82811115613582578251825591602001919060010190613567565b5b5090506135909190613594565b5090565b5b808211156135ad576000816000905550600101613595565b5090565b60006135c46135bf84614579565b614554565b905080838252602082019050828560208602820111156135e357600080fd5b60005b8581101561361357816135f988826136ed565b8452602084019350602083019250506001810190506135e6565b5050509392505050565b600061363061362b846145a5565b614554565b90508281526020810184848401111561364857600080fd5b61365384828561487c565b509392505050565b600061366e613669846145d6565b614554565b90508281526020810184848401111561368657600080fd5b61369184828561487c565b509392505050565b6000813590506136a8816151ae565b92915050565b600082601f8301126136bf57600080fd5b81356136cf8482602086016135b1565b91505092915050565b6000813590506136e7816151c5565b92915050565b6000813590506136fc816151dc565b92915050565b600081359050613711816151f3565b92915050565b600081519050613726816151f3565b92915050565b600082601f83011261373d57600080fd5b813561374d84826020860161361d565b91505092915050565b600082601f83011261376757600080fd5b813561377784826020860161365b565b91505092915050565b60008135905061378f8161520a565b92915050565b6000813590506137a481615221565b92915050565b6000813590506137b981615238565b92915050565b6000602082840312156137d157600080fd5b60006137df84828501613699565b91505092915050565b600080604083850312156137fb57600080fd5b600061380985828601613699565b925050602061381a85828601613699565b9150509250929050565b60008060006060848603121561383957600080fd5b600061384786828701613699565b935050602061385886828701613699565b925050604061386986828701613795565b9150509250925092565b6000806000806080858703121561388957600080fd5b600061389787828801613699565b94505060206138a887828801613699565b93505060406138b987828801613795565b925050606085013567ffffffffffffffff8111156138d657600080fd5b6138e28782880161372c565b91505092959194509250565b6000806040838503121561390157600080fd5b600061390f85828601613699565b9250506020613920858286016136d8565b9150509250929050565b6000806040838503121561393d57600080fd5b600061394b85828601613699565b925050602061395c85828601613780565b9150509250929050565b6000806040838503121561397957600080fd5b600061398785828601613699565b925050602061399885828601613795565b9150509250929050565b6000806000606084860312156139b757600080fd5b600084013567ffffffffffffffff8111156139d157600080fd5b6139dd868287016136ae565b93505060206139ee868287016136ed565b92505060406139ff868287016137aa565b9150509250925092565b600060208284031215613a1b57600080fd5b6000613a29848285016136ed565b91505092915050565b600060208284031215613a4457600080fd5b6000613a5284828501613702565b91505092915050565b600060208284031215613a6d57600080fd5b6000613a7b84828501613717565b91505092915050565b600060208284031215613a9657600080fd5b600082013567ffffffffffffffff811115613ab057600080fd5b613abc84828501613756565b91505092915050565b600060208284031215613ad757600080fd5b6000613ae584828501613795565b91505092915050565b613af7816147e3565b82525050565b613b0e613b09826147e3565b6149bf565b82525050565b613b1d816147f5565b82525050565b613b2c81614801565b82525050565b613b43613b3e82614801565b6149d1565b82525050565b6000613b548261461c565b613b5e8185614632565b9350613b6e81856020860161488b565b613b7781614ada565b840191505092915050565b6000613b8d82614627565b613b978185614643565b9350613ba781856020860161488b565b613bb081614ada565b840191505092915050565b6000613bc682614627565b613bd08185614654565b9350613be081856020860161488b565b80840191505092915050565b60008154613bf9816148be565b613c038186614654565b94506001821660008114613c1e5760018114613c2f57613c62565b60ff19831686528186019350613c62565b613c3885614607565b60005b83811015613c5a57815481890152600182019150602081019050613c3b565b838801955050505b50505092915050565b6000613c78601283614643565b9150613c8382614af8565b602082019050919050565b6000613c9b601f83614643565b9150613ca682614b21565b602082019050919050565b6000613cbe602b83614643565b9150613cc982614b4a565b604082019050919050565b6000613ce1603283614643565b9150613cec82614b99565b604082019050919050565b6000613d04602683614643565b9150613d0f82614be8565b604082019050919050565b6000613d27602e83614643565b9150613d3282614c37565b604082019050919050565b6000613d4a601c83614643565b9150613d5582614c86565b602082019050919050565b6000613d6d602483614643565b9150613d7882614caf565b604082019050919050565b6000613d90601983614643565b9150613d9b82614cfe565b602082019050919050565b6000613db3602c83614643565b9150613dbe82614d27565b604082019050919050565b6000613dd6600c83614643565b9150613de182614d76565b602082019050919050565b6000613df9601883614654565b9150613e0482614d9f565b601882019050919050565b6000613e1c601783614643565b9150613e2782614dc8565b602082019050919050565b6000613e3f603883614643565b9150613e4a82614df1565b604082019050919050565b6000613e62602a83614643565b9150613e6d82614e40565b604082019050919050565b6000613e85602983614643565b9150613e9082614e8f565b604082019050919050565b6000613ea8601283614643565b9150613eb382614ede565b602082019050919050565b6000613ecb602083614643565b9150613ed682614f07565b602082019050919050565b6000613eee601983614643565b9150613ef982614f30565b602082019050919050565b6000613f11602c83614643565b9150613f1c82614f59565b604082019050919050565b6000613f34601683614654565b9150613f3f82614fa8565b601682019050919050565b6000613f57602083614643565b9150613f6282614fd1565b602082019050919050565b6000613f7a602983614643565b9150613f8582614ffa565b604082019050919050565b6000613f9d601483614643565b9150613fa882615049565b602082019050919050565b6000613fc0602183614643565b9150613fcb82615072565b604082019050919050565b6000613fe3602783614643565b9150613fee826150c1565b604082019050919050565b6000614006603183614643565b915061401182615110565b604082019050919050565b6000614029602c83614643565b91506140348261515f565b604082019050919050565b61404881614837565b82525050565b61405781614865565b82525050565b6140668161486f565b82525050565b60006140788284613afd565b60148201915081905092915050565b60006140938285613b32565b6020820191506140a38284613b32565b6020820191508190509392505050565b60006140bf8285613bec565b91506140cb8284613bbb565b91508190509392505050565b60006140e282613f27565b91506140ee8284613bbb565b91506140f982613dec565b915081905092915050565b60006020820190506141196000830184613aee565b92915050565b60006080820190506141346000830187613aee565b6141416020830186613aee565b61414e604083018561404e565b81810360608301526141608184613b49565b905095945050505050565b60006020820190506141806000830184613b14565b92915050565b600060208201905061419b6000830184613b23565b92915050565b600060208201905081810360008301526141bb8184613b82565b905092915050565b600060208201905081810360008301526141dc81613c6b565b9050919050565b600060208201905081810360008301526141fc81613c8e565b9050919050565b6000602082019050818103600083015261421c81613cb1565b9050919050565b6000602082019050818103600083015261423c81613cd4565b9050919050565b6000602082019050818103600083015261425c81613cf7565b9050919050565b6000602082019050818103600083015261427c81613d1a565b9050919050565b6000602082019050818103600083015261429c81613d3d565b9050919050565b600060208201905081810360008301526142bc81613d60565b9050919050565b600060208201905081810360008301526142dc81613d83565b9050919050565b600060208201905081810360008301526142fc81613da6565b9050919050565b6000602082019050818103600083015261431c81613dc9565b9050919050565b6000602082019050818103600083015261433c81613e0f565b9050919050565b6000602082019050818103600083015261435c81613e32565b9050919050565b6000602082019050818103600083015261437c81613e55565b9050919050565b6000602082019050818103600083015261439c81613e78565b9050919050565b600060208201905081810360008301526143bc81613e9b565b9050919050565b600060208201905081810360008301526143dc81613ebe565b9050919050565b600060208201905081810360008301526143fc81613ee1565b9050919050565b6000602082019050818103600083015261441c81613f04565b9050919050565b6000602082019050818103600083015261443c81613f4a565b9050919050565b6000602082019050818103600083015261445c81613f6d565b9050919050565b6000602082019050818103600083015261447c81613f90565b9050919050565b6000602082019050818103600083015261449c81613fb3565b9050919050565b600060208201905081810360008301526144bc81613fd6565b9050919050565b600060208201905081810360008301526144dc81613ff9565b9050919050565b600060208201905081810360008301526144fc8161401c565b9050919050565b6000602082019050614518600083018461403f565b92915050565b6000602082019050614533600083018461404e565b92915050565b600060208201905061454e600083018461405d565b92915050565b600061455e61456f565b905061456a82826148f0565b919050565b6000604051905090565b600067ffffffffffffffff82111561459457614593614aab565b5b602082029050602081019050919050565b600067ffffffffffffffff8211156145c0576145bf614aab565b5b6145c982614ada565b9050602081019050919050565b600067ffffffffffffffff8211156145f1576145f0614aab565b5b6145fa82614ada565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600061466a82614837565b915061467583614837565b92508261ffff0382111561468c5761468b614a1e565b5b828201905092915050565b60006146a282614865565b91506146ad83614865565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156146e2576146e1614a1e565b5b828201905092915050565b60006146f88261486f565b91506147038361486f565b92508260ff0382111561471957614718614a1e565b5b828201905092915050565b600061472f82614865565b915061473a83614865565b92508261474a57614749614a4d565b5b828204905092915050565b600061476082614865565b915061476b83614865565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156147a4576147a3614a1e565b5b828202905092915050565b60006147ba82614865565b91506147c583614865565b9250828210156147d8576147d7614a1e565b5b828203905092915050565b60006147ee82614845565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600061ffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b82818337600083830152505050565b60005b838110156148a957808201518184015260208101905061488e565b838111156148b8576000848401525b50505050565b600060028204905060018216806148d657607f821691505b602082108114156148ea576148e9614a7c565b5b50919050565b6148f982614ada565b810181811067ffffffffffffffff8211171561491857614917614aab565b5b80604052505050565b600061492c82614837565b915061ffff82141561494157614940614a1e565b5b600182019050919050565b600061495782614865565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561498a57614989614a1e565b5b600182019050919050565b60006149a08261486f565b915060ff8214156149b4576149b3614a1e565b5b600182019050919050565b60006149ca826149db565b9050919050565b6000819050919050565b60006149e682614aeb565b9050919050565b60006149f882614865565b9150614a0383614865565b925082614a1357614a12614a4d565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f4d696e74206c696d697420726561636865640000000000000000000000000000600082015250565b7f55524920717565727920666f72206e6f6e6578697374656e7420746f6b656e00600082015250565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f416d6f756e7420726571756573746564206973206f766572206d617820616d6f60008201527f756e74207065722077616c6c6574000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f7574206f662073746f636b0000000000000000000000000000000000000000600082015250565b7f20696e20612073696e676c65207472616e73616374696f6e0000000000000000600082015250565b7f596f7520617265206e6f7420696e20746865206c697374000000000000000000600082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f5468652073616c65206973207061757365640000000000000000000000000000600082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f41646472657373206d696e746564206d617820616d6f756e7400000000000000600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f43616e6e6f74206d696e74206d6f7265207468616e2000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f54686520707269636520697320696e76616c6964000000000000000000000000600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f54686973206c65616620646f6573206e6f742062656c6f6e6720746f2074686560008201527f2073656e64657200000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b6151b7816147e3565b81146151c257600080fd5b50565b6151ce816147f5565b81146151d957600080fd5b50565b6151e581614801565b81146151f057600080fd5b50565b6151fc8161480b565b811461520757600080fd5b50565b61521381614837565b811461521e57600080fd5b50565b61522a81614865565b811461523557600080fd5b50565b6152418161486f565b811461524c57600080fd5b5056fea2646970667358221220360ad8e77264b4691073fa0f392da510c75cf4338149820ac1c055fe415b5f6b64736f6c6343000803003300000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000000c56616c6672656c616e6469610000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000656414c4652450000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106102675760003560e01c806370a0823111610144578063b66a0e5d116100b6578063e222c7f91161007a578063e222c7f9146108e9578063e985e9c514610900578063ed4a6b0c1461093d578063f2fde38b14610968578063f38ade9b14610991578063f70890a3146109ba57610267565b8063b66a0e5d14610818578063b74e94cf1461082f578063b88d4fde14610858578063c6bc518214610881578063c87b56dd146108ac57610267565b806395d89b411161010857806395d89b4114610727578063a22cb46514610752578063a2e914771461077b578063a475b5dd146107a6578063aa4e891a146107bd578063b499c0f0146107e857610267565b806370a0823114610656578063715018a6146106935780637cb64759146106aa57806381530b68146106d35780638da5cb5b146106fc57610267565b80633ccfd60b116101dd57806355367ba9116101a157806355367ba91461055c57806355f804b3146105735780635c474f9e1461059c57806362e00fcc146105c75780636352211e146105f05780636c4f06981461062d57610267565b80633ccfd60b1461048957806342842e0e146104a0578063453c2310146104c95780634b980d67146104f45780634f6ccce71461051f57610267565b80630d0e96da1161022f5780630d0e96da146103775780630d39fc81146103a257806318160ddd146103cd57806323b872dd146103f85780632eb4a7ab146104215780632f745c591461044c57610267565b806301ffc9a71461026c57806306fdde03146102a9578063081812fc146102d4578063095ea7b3146103115780630a398b881461033a575b600080fd5b34801561027857600080fd5b50610293600480360381019061028e9190613a32565b6109e5565b6040516102a0919061416b565b60405180910390f35b3480156102b557600080fd5b506102be610a5f565b6040516102cb91906141a1565b60405180910390f35b3480156102e057600080fd5b506102fb60048036038101906102f69190613ac5565b610af1565b6040516103089190614104565b60405180910390f35b34801561031d57600080fd5b5061033860048036038101906103339190613966565b610b76565b005b34801561034657600080fd5b50610361600480360381019061035c91906137bf565b610c8e565b60405161036e9190614539565b60405180910390f35b34801561038357600080fd5b5061038c610cae565b6040516103999190614503565b60405180910390f35b3480156103ae57600080fd5b506103b7610cb4565b6040516103c4919061451e565b60405180910390f35b3480156103d957600080fd5b506103e2610cba565b6040516103ef919061451e565b60405180910390f35b34801561040457600080fd5b5061041f600480360381019061041a9190613824565b610cc7565b005b34801561042d57600080fd5b50610436610d27565b6040516104439190614186565b60405180910390f35b34801561045857600080fd5b50610473600480360381019061046e9190613966565b610d2d565b604051610480919061451e565b60405180910390f35b34801561049557600080fd5b5061049e610dd2565b005b3480156104ac57600080fd5b506104c760048036038101906104c29190613824565b610e97565b005b3480156104d557600080fd5b506104de610eb7565b6040516104eb9190614539565b60405180910390f35b34801561050057600080fd5b50610509610ebc565b6040516105169190614539565b60405180910390f35b34801561052b57600080fd5b5061054660048036038101906105419190613ac5565b610ec1565b604051610553919061451e565b60405180910390f35b34801561056857600080fd5b50610571610f58565b005b34801561057f57600080fd5b5061059a60048036038101906105959190613a84565b610ff1565b005b3480156105a857600080fd5b506105b1611087565b6040516105be919061416b565b60405180910390f35b3480156105d357600080fd5b506105ee60048036038101906105e99190613a84565b61109a565b005b3480156105fc57600080fd5b5061061760048036038101906106129190613ac5565b6111a7565b6040516106249190614104565b60405180910390f35b34801561063957600080fd5b50610654600480360381019061064f91906137bf565b611259565b005b34801561066257600080fd5b5061067d600480360381019061067891906137bf565b611319565b60405161068a919061451e565b60405180910390f35b34801561069f57600080fd5b506106a86113d1565b005b3480156106b657600080fd5b506106d160048036038101906106cc9190613a09565b611459565b005b3480156106df57600080fd5b506106fa60048036038101906106f59190613ac5565b6114df565b005b34801561070857600080fd5b50610711611565565b60405161071e9190614104565b60405180910390f35b34801561073357600080fd5b5061073c61158f565b60405161074991906141a1565b60405180910390f35b34801561075e57600080fd5b50610779600480360381019061077491906138ee565b611621565b005b34801561078757600080fd5b506107906117a2565b60405161079d919061416b565b60405180910390f35b3480156107b257600080fd5b506107bb6117b5565b005b3480156107c957600080fd5b506107d261184e565b6040516107df919061416b565b60405180910390f35b61080260048036038101906107fd91906139a2565b611861565b60405161080f919061451e565b60405180910390f35b34801561082457600080fd5b5061082d611cfa565b005b34801561083b57600080fd5b506108566004803603810190610851919061392a565b611d93565b005b34801561086457600080fd5b5061087f600480360381019061087a9190613873565b611ee9565b005b34801561088d57600080fd5b50610896611f4b565b6040516108a39190614503565b60405180910390f35b3480156108b857600080fd5b506108d360048036038101906108ce9190613ac5565b611f5f565b6040516108e091906141a1565b60405180910390f35b3480156108f557600080fd5b506108fe61202a565b005b34801561090c57600080fd5b50610927600480360381019061092291906137e8565b6120d2565b604051610934919061416b565b60405180910390f35b34801561094957600080fd5b50610952612166565b60405161095f9190614104565b60405180910390f35b34801561097457600080fd5b5061098f600480360381019061098a91906137bf565b61218c565b005b34801561099d57600080fd5b506109b860048036038101906109b39190613a84565b612284565b005b3480156109c657600080fd5b506109cf61231a565b6040516109dc9190614503565b60405180910390f35b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610a585750610a578261232e565b5b9050919050565b606060008054610a6e906148be565b80601f0160208091040260200160405190810160405280929190818152602001828054610a9a906148be565b8015610ae75780601f10610abc57610100808354040283529160200191610ae7565b820191906000526020600020905b815481529060010190602001808311610aca57829003601f168201915b5050505050905090565b6000610afc82612410565b610b3b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b3290614403565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610b81826111a7565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610bf2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610be990614483565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610c1161247c565b73ffffffffffffffffffffffffffffffffffffffff161480610c405750610c3f81610c3a61247c565b6120d2565b5b610c7f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c7690614343565b60405180910390fd5b610c898383612484565b505050565b600b6020528060005260406000206000915054906101000a900460ff1681565b61271081565b60125481565b6000600880549050905090565b610cd8610cd261247c565b8261253d565b610d17576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d0e906144c3565b60405180910390fd5b610d2283838361261b565b505050565b600d5481565b6000610d3883611319565b8210610d79576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d7090614203565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b610dda61247c565b73ffffffffffffffffffffffffffffffffffffffff16610df8611565565b73ffffffffffffffffffffffffffffffffffffffff1614610e4e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e4590614423565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015610e94573d6000803e3d6000fd5b50565b610eb283838360405180602001604052806000815250611ee9565b505050565b600381565b600381565b6000610ecb610cba565b8210610f0c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f03906144e3565b60405180910390fd5b60088281548110610f46577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001549050919050565b610f6061247c565b73ffffffffffffffffffffffffffffffffffffffff16610f7e611565565b73ffffffffffffffffffffffffffffffffffffffff1614610fd4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fcb90614423565b60405180910390fd5b6000601160006101000a81548160ff021916908315150217905550565b610ff961247c565b73ffffffffffffffffffffffffffffffffffffffff16611017611565565b73ffffffffffffffffffffffffffffffffffffffff161461106d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161106490614423565b60405180910390fd5b80600f908051906020019061108392919061350e565b5050565b601160009054906101000a900460ff1681565b6110a261247c565b73ffffffffffffffffffffffffffffffffffffffff166110c0611565565b73ffffffffffffffffffffffffffffffffffffffff1614611116576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161110d90614423565b60405180910390fd5b601360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a26e118647836040518363ffffffff1660e01b815260040161117291906141a1565b6000604051808303818588803b15801561118b57600080fd5b505af115801561119f573d6000803e3d6000fd5b505050505050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611250576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161124790614383565b60405180910390fd5b80915050919050565b61126161247c565b73ffffffffffffffffffffffffffffffffffffffff1661127f611565565b73ffffffffffffffffffffffffffffffffffffffff16146112d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112cc90614423565b60405180910390fd5b80601360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561138a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161138190614363565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6113d961247c565b73ffffffffffffffffffffffffffffffffffffffff166113f7611565565b73ffffffffffffffffffffffffffffffffffffffff161461144d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161144490614423565b60405180910390fd5b6114576000612877565b565b61146161247c565b73ffffffffffffffffffffffffffffffffffffffff1661147f611565565b73ffffffffffffffffffffffffffffffffffffffff16146114d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114cc90614423565b60405180910390fd5b80600d8190555050565b6114e761247c565b73ffffffffffffffffffffffffffffffffffffffff16611505611565565b73ffffffffffffffffffffffffffffffffffffffff161461155b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161155290614423565b60405180910390fd5b8060128190555050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606001805461159e906148be565b80601f01602080910402602001604051908101604052809291908181526020018280546115ca906148be565b80156116175780601f106115ec57610100808354040283529160200191611617565b820191906000526020600020905b8154815290600101906020018083116115fa57829003601f168201915b5050505050905090565b61162961247c565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611697576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161168e906142c3565b60405180910390fd5b80600560006116a461247c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661175161247c565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611796919061416b565b60405180910390a35050565b601160019054906101000a900460ff1681565b6117bd61247c565b73ffffffffffffffffffffffffffffffffffffffff166117db611565565b73ffffffffffffffffffffffffffffffffffffffff1614611831576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161182890614423565b60405180910390fd5b6000600e60006101000a81548160ff021916908315150217905550565b600e60009054906101000a900460ff1681565b6000600360ff168260ff16111561187b600360ff1661293d565b60405160200161188b91906140d7565b604051602081830303815290604052906118db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118d291906141a1565b60405180910390fd5b508160ff166012546118ed9190614755565b341461192e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161192590614463565b60405180910390fd5b60011515601160009054906101000a900460ff16151514611984576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161197b906143a3565b60405180910390fd5b61251c8260ff16600c60029054906101000a900461ffff166119a6919061465f565b61ffff1611156119eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119e2906141c3565b60405180910390fd5b600360ff16600b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1660ff161115611a81576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a78906143e3565b60405180910390fd5b600360ff1682600b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16611ade91906146ed565b60ff161115611b22576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b1990614263565b60405180910390fd5b60001515601160019054906101000a900460ff1615151415611bfd578233604051602001611b50919061406c565b6040516020818303038152906040528051906020012014611ba6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b9d906144a3565b60405180910390fd5b611bbd600d548486612aea9092919063ffffffff16565b611bfc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bf390614323565b60405180910390fd5b5b81600b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282829054906101000a900460ff16611c5891906146ed565b92506101000a81548160ff021916908360ff16021790555060005b8260ff168160ff161015611cdb57611cc833600c600281819054906101000a900461ffff1680929190611ca590614921565b91906101000a81548161ffff021916908361ffff16021790555061ffff16612bc6565b8080611cd390614995565b915050611c73565b50600c60029054906101000a900461ffff1661ffff1690509392505050565b611d0261247c565b73ffffffffffffffffffffffffffffffffffffffff16611d20611565565b73ffffffffffffffffffffffffffffffffffffffff1614611d76576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d6d90614423565b60405180910390fd5b6001601160006101000a81548160ff021916908315150217905550565b611d9b61247c565b73ffffffffffffffffffffffffffffffffffffffff16611db9611565565b73ffffffffffffffffffffffffffffffffffffffff1614611e0f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e0690614423565b60405180910390fd5b61271061ffff1681600c60009054906101000a900461ffff16611e32919061465f565b61ffff161115611e77576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e6e90614303565b60405180910390fd5b60005b8161ffff168161ffff161015611ee457611ed183600c600081819054906101000a900461ffff1680929190611eae90614921565b91906101000a81548161ffff021916908361ffff16021790555061ffff16612bc6565b8080611edc90614921565b915050611e7a565b505050565b611efa611ef461247c565b8361253d565b611f39576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f30906144c3565b60405180910390fd5b611f4584848484612be4565b50505050565b600c60029054906101000a900461ffff1681565b6060611f6a82612410565b611fa9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fa0906141e3565b60405180910390fd5b60011515600e60009054906101000a900460ff1615151415611ff7576010611fd08361293d565b604051602001611fe19291906140b3565b6040516020818303038152906040529050612025565b600f6120028361293d565b6040516020016120139291906140b3565b60405160208183030381529060405290505b919050565b61203261247c565b73ffffffffffffffffffffffffffffffffffffffff16612050611565565b73ffffffffffffffffffffffffffffffffffffffff16146120a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161209d90614423565b60405180910390fd5b601160019054906101000a900460ff1615601160016101000a81548160ff021916908315150217905550565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b601360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b61219461247c565b73ffffffffffffffffffffffffffffffffffffffff166121b2611565565b73ffffffffffffffffffffffffffffffffffffffff1614612208576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121ff90614423565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612278576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161226f90614243565b60405180910390fd5b61228181612877565b50565b61228c61247c565b73ffffffffffffffffffffffffffffffffffffffff166122aa611565565b73ffffffffffffffffffffffffffffffffffffffff1614612300576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122f790614423565b60405180910390fd5b806010908051906020019061231692919061350e565b5050565b600c60009054906101000a900461ffff1681565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806123f957507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80612409575061240882612c40565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166124f7836111a7565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600061254882612410565b612587576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161257e906142e3565b60405180910390fd5b6000612592836111a7565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061260157508373ffffffffffffffffffffffffffffffffffffffff166125e984610af1565b73ffffffffffffffffffffffffffffffffffffffff16145b80612612575061261181856120d2565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661263b826111a7565b73ffffffffffffffffffffffffffffffffffffffff1614612691576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161268890614443565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612701576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126f8906142a3565b60405180910390fd5b61270c838383612caa565b612717600082612484565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461276791906147af565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546127be9190614697565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60606000821415612985576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612ae5565b600082905060005b600082146129b75780806129a09061494c565b915050600a826129b09190614724565b915061298d565b60008167ffffffffffffffff8111156129f9577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015612a2b5781602001600182028036833780820191505090505b5090505b60008514612ade57600182612a4491906147af565b9150600a85612a5391906149ed565b6030612a5f9190614697565b60f81b818381518110612a9b577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612ad79190614724565b9450612a2f565b8093505050505b919050565b60008082905060005b8551811015612bb8576000868281518110612b37577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101519050808311612b78578281604051602001612b5b929190614087565b604051602081830303815290604052805190602001209250612ba4565b8083604051602001612b8b929190614087565b6040516020818303038152906040528051906020012092505b508080612bb09061494c565b915050612af3565b508381149150509392505050565b612be0828260405180602001604052806000815250612dbe565b5050565b612bef84848461261b565b612bfb84848484612e19565b612c3a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c3190614223565b60405180910390fd5b50505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b612cb5838383612fb0565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612cf857612cf381612fb5565b612d37565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614612d3657612d358382612ffe565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612d7a57612d758161316b565b612db9565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614612db857612db782826132ae565b5b5b505050565b612dc8838361332d565b612dd56000848484612e19565b612e14576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e0b90614223565b60405180910390fd5b505050565b6000612e3a8473ffffffffffffffffffffffffffffffffffffffff166134fb565b15612fa3578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612e6361247c565b8786866040518563ffffffff1660e01b8152600401612e85949392919061411f565b602060405180830381600087803b158015612e9f57600080fd5b505af1925050508015612ed057506040513d601f19601f82011682018060405250810190612ecd9190613a5b565b60015b612f53573d8060008114612f00576040519150601f19603f3d011682016040523d82523d6000602084013e612f05565b606091505b50600081511415612f4b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f4290614223565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612fa8565b600190505b949350505050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b6000600161300b84611319565b61301591906147af565b90506000600760008481526020019081526020016000205490508181146130fa576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b6000600160088054905061317f91906147af565b90506000600960008481526020019081526020016000205490506000600883815481106131d5577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001549050806008838154811061321d577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020018190555081600960008381526020019081526020016000208190555060096000858152602001908152602001600020600090556008805480613292577f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b60006132b983611319565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561339d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613394906143c3565b60405180910390fd5b6133a681612410565b156133e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016133dd90614283565b60405180910390fd5b6133f260008383612caa565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546134429190614697565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b82805461351a906148be565b90600052602060002090601f01602090048101928261353c5760008555613583565b82601f1061355557805160ff1916838001178555613583565b82800160010185558215613583579182015b82811115613582578251825591602001919060010190613567565b5b5090506135909190613594565b5090565b5b808211156135ad576000816000905550600101613595565b5090565b60006135c46135bf84614579565b614554565b905080838252602082019050828560208602820111156135e357600080fd5b60005b8581101561361357816135f988826136ed565b8452602084019350602083019250506001810190506135e6565b5050509392505050565b600061363061362b846145a5565b614554565b90508281526020810184848401111561364857600080fd5b61365384828561487c565b509392505050565b600061366e613669846145d6565b614554565b90508281526020810184848401111561368657600080fd5b61369184828561487c565b509392505050565b6000813590506136a8816151ae565b92915050565b600082601f8301126136bf57600080fd5b81356136cf8482602086016135b1565b91505092915050565b6000813590506136e7816151c5565b92915050565b6000813590506136fc816151dc565b92915050565b600081359050613711816151f3565b92915050565b600081519050613726816151f3565b92915050565b600082601f83011261373d57600080fd5b813561374d84826020860161361d565b91505092915050565b600082601f83011261376757600080fd5b813561377784826020860161365b565b91505092915050565b60008135905061378f8161520a565b92915050565b6000813590506137a481615221565b92915050565b6000813590506137b981615238565b92915050565b6000602082840312156137d157600080fd5b60006137df84828501613699565b91505092915050565b600080604083850312156137fb57600080fd5b600061380985828601613699565b925050602061381a85828601613699565b9150509250929050565b60008060006060848603121561383957600080fd5b600061384786828701613699565b935050602061385886828701613699565b925050604061386986828701613795565b9150509250925092565b6000806000806080858703121561388957600080fd5b600061389787828801613699565b94505060206138a887828801613699565b93505060406138b987828801613795565b925050606085013567ffffffffffffffff8111156138d657600080fd5b6138e28782880161372c565b91505092959194509250565b6000806040838503121561390157600080fd5b600061390f85828601613699565b9250506020613920858286016136d8565b9150509250929050565b6000806040838503121561393d57600080fd5b600061394b85828601613699565b925050602061395c85828601613780565b9150509250929050565b6000806040838503121561397957600080fd5b600061398785828601613699565b925050602061399885828601613795565b9150509250929050565b6000806000606084860312156139b757600080fd5b600084013567ffffffffffffffff8111156139d157600080fd5b6139dd868287016136ae565b93505060206139ee868287016136ed565b92505060406139ff868287016137aa565b9150509250925092565b600060208284031215613a1b57600080fd5b6000613a29848285016136ed565b91505092915050565b600060208284031215613a4457600080fd5b6000613a5284828501613702565b91505092915050565b600060208284031215613a6d57600080fd5b6000613a7b84828501613717565b91505092915050565b600060208284031215613a9657600080fd5b600082013567ffffffffffffffff811115613ab057600080fd5b613abc84828501613756565b91505092915050565b600060208284031215613ad757600080fd5b6000613ae584828501613795565b91505092915050565b613af7816147e3565b82525050565b613b0e613b09826147e3565b6149bf565b82525050565b613b1d816147f5565b82525050565b613b2c81614801565b82525050565b613b43613b3e82614801565b6149d1565b82525050565b6000613b548261461c565b613b5e8185614632565b9350613b6e81856020860161488b565b613b7781614ada565b840191505092915050565b6000613b8d82614627565b613b978185614643565b9350613ba781856020860161488b565b613bb081614ada565b840191505092915050565b6000613bc682614627565b613bd08185614654565b9350613be081856020860161488b565b80840191505092915050565b60008154613bf9816148be565b613c038186614654565b94506001821660008114613c1e5760018114613c2f57613c62565b60ff19831686528186019350613c62565b613c3885614607565b60005b83811015613c5a57815481890152600182019150602081019050613c3b565b838801955050505b50505092915050565b6000613c78601283614643565b9150613c8382614af8565b602082019050919050565b6000613c9b601f83614643565b9150613ca682614b21565b602082019050919050565b6000613cbe602b83614643565b9150613cc982614b4a565b604082019050919050565b6000613ce1603283614643565b9150613cec82614b99565b604082019050919050565b6000613d04602683614643565b9150613d0f82614be8565b604082019050919050565b6000613d27602e83614643565b9150613d3282614c37565b604082019050919050565b6000613d4a601c83614643565b9150613d5582614c86565b602082019050919050565b6000613d6d602483614643565b9150613d7882614caf565b604082019050919050565b6000613d90601983614643565b9150613d9b82614cfe565b602082019050919050565b6000613db3602c83614643565b9150613dbe82614d27565b604082019050919050565b6000613dd6600c83614643565b9150613de182614d76565b602082019050919050565b6000613df9601883614654565b9150613e0482614d9f565b601882019050919050565b6000613e1c601783614643565b9150613e2782614dc8565b602082019050919050565b6000613e3f603883614643565b9150613e4a82614df1565b604082019050919050565b6000613e62602a83614643565b9150613e6d82614e40565b604082019050919050565b6000613e85602983614643565b9150613e9082614e8f565b604082019050919050565b6000613ea8601283614643565b9150613eb382614ede565b602082019050919050565b6000613ecb602083614643565b9150613ed682614f07565b602082019050919050565b6000613eee601983614643565b9150613ef982614f30565b602082019050919050565b6000613f11602c83614643565b9150613f1c82614f59565b604082019050919050565b6000613f34601683614654565b9150613f3f82614fa8565b601682019050919050565b6000613f57602083614643565b9150613f6282614fd1565b602082019050919050565b6000613f7a602983614643565b9150613f8582614ffa565b604082019050919050565b6000613f9d601483614643565b9150613fa882615049565b602082019050919050565b6000613fc0602183614643565b9150613fcb82615072565b604082019050919050565b6000613fe3602783614643565b9150613fee826150c1565b604082019050919050565b6000614006603183614643565b915061401182615110565b604082019050919050565b6000614029602c83614643565b91506140348261515f565b604082019050919050565b61404881614837565b82525050565b61405781614865565b82525050565b6140668161486f565b82525050565b60006140788284613afd565b60148201915081905092915050565b60006140938285613b32565b6020820191506140a38284613b32565b6020820191508190509392505050565b60006140bf8285613bec565b91506140cb8284613bbb565b91508190509392505050565b60006140e282613f27565b91506140ee8284613bbb565b91506140f982613dec565b915081905092915050565b60006020820190506141196000830184613aee565b92915050565b60006080820190506141346000830187613aee565b6141416020830186613aee565b61414e604083018561404e565b81810360608301526141608184613b49565b905095945050505050565b60006020820190506141806000830184613b14565b92915050565b600060208201905061419b6000830184613b23565b92915050565b600060208201905081810360008301526141bb8184613b82565b905092915050565b600060208201905081810360008301526141dc81613c6b565b9050919050565b600060208201905081810360008301526141fc81613c8e565b9050919050565b6000602082019050818103600083015261421c81613cb1565b9050919050565b6000602082019050818103600083015261423c81613cd4565b9050919050565b6000602082019050818103600083015261425c81613cf7565b9050919050565b6000602082019050818103600083015261427c81613d1a565b9050919050565b6000602082019050818103600083015261429c81613d3d565b9050919050565b600060208201905081810360008301526142bc81613d60565b9050919050565b600060208201905081810360008301526142dc81613d83565b9050919050565b600060208201905081810360008301526142fc81613da6565b9050919050565b6000602082019050818103600083015261431c81613dc9565b9050919050565b6000602082019050818103600083015261433c81613e0f565b9050919050565b6000602082019050818103600083015261435c81613e32565b9050919050565b6000602082019050818103600083015261437c81613e55565b9050919050565b6000602082019050818103600083015261439c81613e78565b9050919050565b600060208201905081810360008301526143bc81613e9b565b9050919050565b600060208201905081810360008301526143dc81613ebe565b9050919050565b600060208201905081810360008301526143fc81613ee1565b9050919050565b6000602082019050818103600083015261441c81613f04565b9050919050565b6000602082019050818103600083015261443c81613f4a565b9050919050565b6000602082019050818103600083015261445c81613f6d565b9050919050565b6000602082019050818103600083015261447c81613f90565b9050919050565b6000602082019050818103600083015261449c81613fb3565b9050919050565b600060208201905081810360008301526144bc81613fd6565b9050919050565b600060208201905081810360008301526144dc81613ff9565b9050919050565b600060208201905081810360008301526144fc8161401c565b9050919050565b6000602082019050614518600083018461403f565b92915050565b6000602082019050614533600083018461404e565b92915050565b600060208201905061454e600083018461405d565b92915050565b600061455e61456f565b905061456a82826148f0565b919050565b6000604051905090565b600067ffffffffffffffff82111561459457614593614aab565b5b602082029050602081019050919050565b600067ffffffffffffffff8211156145c0576145bf614aab565b5b6145c982614ada565b9050602081019050919050565b600067ffffffffffffffff8211156145f1576145f0614aab565b5b6145fa82614ada565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600061466a82614837565b915061467583614837565b92508261ffff0382111561468c5761468b614a1e565b5b828201905092915050565b60006146a282614865565b91506146ad83614865565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156146e2576146e1614a1e565b5b828201905092915050565b60006146f88261486f565b91506147038361486f565b92508260ff0382111561471957614718614a1e565b5b828201905092915050565b600061472f82614865565b915061473a83614865565b92508261474a57614749614a4d565b5b828204905092915050565b600061476082614865565b915061476b83614865565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156147a4576147a3614a1e565b5b828202905092915050565b60006147ba82614865565b91506147c583614865565b9250828210156147d8576147d7614a1e565b5b828203905092915050565b60006147ee82614845565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600061ffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b82818337600083830152505050565b60005b838110156148a957808201518184015260208101905061488e565b838111156148b8576000848401525b50505050565b600060028204905060018216806148d657607f821691505b602082108114156148ea576148e9614a7c565b5b50919050565b6148f982614ada565b810181811067ffffffffffffffff8211171561491857614917614aab565b5b80604052505050565b600061492c82614837565b915061ffff82141561494157614940614a1e565b5b600182019050919050565b600061495782614865565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561498a57614989614a1e565b5b600182019050919050565b60006149a08261486f565b915060ff8214156149b4576149b3614a1e565b5b600182019050919050565b60006149ca826149db565b9050919050565b6000819050919050565b60006149e682614aeb565b9050919050565b60006149f882614865565b9150614a0383614865565b925082614a1357614a12614a4d565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f4d696e74206c696d697420726561636865640000000000000000000000000000600082015250565b7f55524920717565727920666f72206e6f6e6578697374656e7420746f6b656e00600082015250565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f416d6f756e7420726571756573746564206973206f766572206d617820616d6f60008201527f756e74207065722077616c6c6574000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f7574206f662073746f636b0000000000000000000000000000000000000000600082015250565b7f20696e20612073696e676c65207472616e73616374696f6e0000000000000000600082015250565b7f596f7520617265206e6f7420696e20746865206c697374000000000000000000600082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f5468652073616c65206973207061757365640000000000000000000000000000600082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f41646472657373206d696e746564206d617820616d6f756e7400000000000000600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f43616e6e6f74206d696e74206d6f7265207468616e2000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f54686520707269636520697320696e76616c6964000000000000000000000000600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f54686973206c65616620646f6573206e6f742062656c6f6e6720746f2074686560008201527f2073656e64657200000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b6151b7816147e3565b81146151c257600080fd5b50565b6151ce816147f5565b81146151d957600080fd5b50565b6151e581614801565b81146151f057600080fd5b50565b6151fc8161480b565b811461520757600080fd5b50565b61521381614837565b811461521e57600080fd5b50565b61522a81614865565b811461523557600080fd5b50565b6152418161486f565b811461524c57600080fd5b5056fea2646970667358221220360ad8e77264b4691073fa0f392da510c75cf4338149820ac1c055fe415b5f6b64736f6c63430008030033

Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)

00000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000000c56616c6672656c616e6469610000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000656414c4652450000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : name (string): Valfrelandia
Arg [1] : symbol (string): VALFRE

-----Encoded View---------------
6 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [2] : 000000000000000000000000000000000000000000000000000000000000000c
Arg [3] : 56616c6672656c616e6469610000000000000000000000000000000000000000
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000006
Arg [5] : 56414c4652450000000000000000000000000000000000000000000000000000


Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.