ETH Price: $3,180.38 (+2.05%)
Gas: 1 Gwei

Token

Voltz Genesis NFT (VOLTZUNI)
 

Overview

Max Total Supply

1,845 VOLTZUNI

Holders

1,620

Total Transfers

-

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
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:
ERC721MerkleDrop

Compiler Version
v0.8.4+commit.c7e474f2

Optimization Enabled:
No with 200 runs

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

import "@openzeppelin/contracts/token/ERC721/ERC721.sol";
import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol";
import "@openzeppelin/contracts/utils/Counters.sol";
import "@openzeppelin/contracts/interfaces/IERC2981.sol";


contract ERC721MerkleDrop is ERC721, IERC2981 {

    using Counters for Counters.Counter;
    Counters.Counter private _tokenSupply;

    // Defaults to 0x0 (merkle root)
    bytes32 immutable public root;

    address payable immutable public creatorFund;
    address payable immutable public creator;

    uint256 public immutable royaltyAsProportionOfSalePrice; // this value is scaled by the SCALING_FACTOR
    uint256 public immutable airdropDurationInSeconds;
    uint256 public immutable airdropStartBlockTimestamp;
    uint256 public constant SCALING_FACTOR = 10000;


    modifier checkIfAirdropExpired() {
        uint256 currentTimestamp = block.timestamp;
        uint256 expiryTimestamp = airdropDurationInSeconds + airdropStartBlockTimestamp;

        require(expiryTimestamp > currentTimestamp, "airdrop expired");

        _;
    }

    
    constructor(string memory name, string memory symbol, bytes32 merkleroot, address payable _creatorFund, address payable _creator, uint256 _royaltyAsProportionOfSalePrice, uint256 _airdropDurationInSeconds)
    ERC721(name, symbol)
    {
        root = merkleroot;
        creatorFund = _creatorFund;
        creator = _creator;
        royaltyAsProportionOfSalePrice = _royaltyAsProportionOfSalePrice;
        airdropDurationInSeconds = _airdropDurationInSeconds;
        airdropStartBlockTimestamp = block.timestamp;
    }

    fallback() external payable {
    }

    receive() external payable {
    }

    /**
     * @dev Returns how much royalty is owed and to whom, based on a sale price that may be denominated in any unit of
     * exchange. The royalty amount is denominated and should be payed in that same unit of exchange.
     */
    function royaltyInfo(uint256 tokenId, uint256 salePrice)
        external
        override
        view
        returns (address receiver, uint256 royaltyAmount) {

            // tokenId is not used in the calcualtion of the royalty amount but it is still an input to adhere to the eip-2981 standard
            // royalties are only accepted in ether
            // the receiver is the NFT contract (address of this contract)

            receiver = address(this);
            royaltyAmount = (salePrice * royaltyAsProportionOfSalePrice) / SCALING_FACTOR;
    }


    function totalSupply() public view returns (uint256) { 
        return _tokenSupply.current();
    }


    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        require(_exists(tokenId), "ERC721Metadata: Nonexistent token"); 

        // all successfully minted (airdropped) tokens have the same metadata
        return "ipfs://QmWBRf5pocNMMxtMu4UN5SeVjKw9WseWkEWbbd2LTeyLAq";
    }

    function withdraw() public {
        uint256 balance = address(this).balance;
        require(balance > 0, "balance is zero");

        uint256 amountToCreatorFund = balance / 2;
        uint256 amountToCreator = balance - amountToCreatorFund;

        // check if the transactions are successfully executed
        (bool successCreatorFund, ) = (creatorFund).call{value: amountToCreatorFund}("");
        (bool successCreator, ) = (creator).call{value: amountToCreator}("");

        require(successCreatorFund, "CFWF");
        require(successCreator, "CWF");
    }


    
    event RedeemVoltzUNI(bytes32[] proof, uint256 tokenId);


    function redeem(address account, string memory metadataURI, bytes32[] calldata proof)
    external checkIfAirdropExpired returns (uint256)
    {
        require(_verify(_leaf(account, metadataURI), proof), "Invalid merkle proof");

        uint256 tokenId = uint256(uint160(account));

        _tokenSupply.increment();
        _safeMint(account, tokenId);

        emit RedeemVoltzUNI(proof, tokenId);

        return tokenId;
    }

    function _leaf(address account, string memory metadataURI)
    internal pure returns (bytes32)
    {
        return keccak256(abi.encodePacked(metadataURI, account));
    }


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


}

File 2 of 14 : ERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/ERC721.sol)

pragma solidity ^0.8.0;

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

        _afterTokenTransfer(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);

        _afterTokenTransfer(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 from incorrect owner");
        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);

        _afterTokenTransfer(from, to, tokenId);
    }

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

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

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

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

    /**
     * @dev Hook that is called after any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _afterTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {}
}

File 3 of 14 : MerkleProof.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (utils/cryptography/MerkleProof.sol)

pragma solidity ^0.8.0;

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

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

    function _efficientHash(bytes32 a, bytes32 b) private pure returns (bytes32 value) {
        assembly {
            mstore(0x00, a)
            mstore(0x20, b)
            value := keccak256(0x00, 0x40)
        }
    }
}

File 4 of 14 : Counters.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Counters.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

File 5 of 14 : IERC2981.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (interfaces/IERC2981.sol)

pragma solidity ^0.8.0;

import "./IERC165.sol";

/**
 * @dev Interface for the NFT Royalty Standard.
 *
 * A standardized way to retrieve royalty payment information for non-fungible tokens (NFTs) to enable universal
 * support for royalty payments across all NFT marketplaces and ecosystem participants.
 *
 * _Available since v4.5._
 */
interface IERC2981 is IERC165 {
    /**
     * @dev Returns how much royalty is owed and to whom, based on a sale price that may be denominated in any unit of
     * exchange. The royalty amount is denominated and should be payed in that same unit of exchange.
     */
    function royaltyInfo(uint256 tokenId, uint256 salePrice)
        external
        view
        returns (address receiver, uint256 royaltyAmount);
}

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

pragma solidity ^0.8.0;

import "../IERC721.sol";

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

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

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

File 9 of 14 : Address.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol)

pragma solidity ^0.8.1;

/**
 * @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
     * ====
     *
     * [IMPORTANT]
     * ====
     * You shouldn't rely on `isContract` to protect against flash loan attacks!
     *
     * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
     * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
     * constructor.
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize/address.code.length, which returns 0
        // for contracts in construction, since the code is only stored at the end
        // of the constructor execution.

        return account.code.length > 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 10 of 14 : Context.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

pragma solidity ^0.8.0;

import "./IERC165.sol";

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

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

pragma solidity ^0.8.0;

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

File 14 of 14 : IERC165.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (interfaces/IERC165.sol)

pragma solidity ^0.8.0;

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

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"symbol","type":"string"},{"internalType":"bytes32","name":"merkleroot","type":"bytes32"},{"internalType":"address payable","name":"_creatorFund","type":"address"},{"internalType":"address payable","name":"_creator","type":"address"},{"internalType":"uint256","name":"_royaltyAsProportionOfSalePrice","type":"uint256"},{"internalType":"uint256","name":"_airdropDurationInSeconds","type":"uint256"}],"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":false,"internalType":"bytes32[]","name":"proof","type":"bytes32[]"},{"indexed":false,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"RedeemVoltzUNI","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"},{"stateMutability":"payable","type":"fallback"},{"inputs":[],"name":"SCALING_FACTOR","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"airdropDurationInSeconds","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"airdropStartBlockTimestamp","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"creator","outputs":[{"internalType":"address payable","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"creatorFund","outputs":[{"internalType":"address payable","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"string","name":"metadataURI","type":"string"},{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"}],"name":"redeem","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"root","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"royaltyAsProportionOfSalePrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"uint256","name":"salePrice","type":"uint256"}],"name":"royaltyInfo","outputs":[{"internalType":"address","name":"receiver","type":"address"},{"internalType":"uint256","name":"royaltyAmount","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

6101406040523480156200001257600080fd5b50604051620039f9380380620039f9833981810160405281019062000038919062000272565b86868160009080519060200190620000529291906200010b565b5080600190805190602001906200006b9291906200010b565b50505084608081815250508373ffffffffffffffffffffffffffffffffffffffff1660a08173ffffffffffffffffffffffffffffffffffffffff1660601b815250508273ffffffffffffffffffffffffffffffffffffffff1660c08173ffffffffffffffffffffffffffffffffffffffff1660601b815250508160e081815250508061010081815250504261012081815250505050505050505062000557565b82805462000119906200042e565b90600052602060002090601f0160209004810192826200013d576000855562000189565b82601f106200015857805160ff191683800117855562000189565b8280016001018555821562000189579182015b82811115620001885782518255916020019190600101906200016b565b5b5090506200019891906200019c565b5090565b5b80821115620001b75760008160009055506001016200019d565b5090565b6000620001d2620001cc846200037a565b62000351565b905082815260208101848484011115620001eb57600080fd5b620001f8848285620003f8565b509392505050565b600081519050620002118162000509565b92915050565b600081519050620002288162000523565b92915050565b600082601f8301126200024057600080fd5b815162000252848260208601620001bb565b91505092915050565b6000815190506200026c816200053d565b92915050565b600080600080600080600060e0888a0312156200028e57600080fd5b600088015167ffffffffffffffff811115620002a957600080fd5b620002b78a828b016200022e565b975050602088015167ffffffffffffffff811115620002d557600080fd5b620002e38a828b016200022e565b9650506040620002f68a828b0162000217565b9550506060620003098a828b0162000200565b94505060806200031c8a828b0162000200565b93505060a06200032f8a828b016200025b565b92505060c0620003428a828b016200025b565b91505092959891949750929550565b60006200035d62000370565b90506200036b828262000464565b919050565b6000604051905090565b600067ffffffffffffffff821115620003985762000397620004c9565b5b620003a382620004f8565b9050602081019050919050565b6000620003bd82620003ce565b9050919050565b6000819050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b60005b8381101562000418578082015181840152602081019050620003fb565b8381111562000428576000848401525b50505050565b600060028204905060018216806200044757607f821691505b602082108114156200045e576200045d6200049a565b5b50919050565b6200046f82620004f8565b810181811067ffffffffffffffff82111715620004915762000490620004c9565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b6200051481620003b0565b81146200052057600080fd5b50565b6200052e81620003c4565b81146200053a57600080fd5b50565b6200054881620003ee565b81146200055457600080fd5b50565b60805160a05160601c60c05160601c60e0516101005161012051613422620005d760003960008181610ced01526110b4015260008181610d0e01526111960152600081816109840152610c0f0152600081816106b70152610aba015260008181610a2e0152610beb01526000818161116c01526116dd01526134226000f3fe60806040526004361061014f5760003560e01c80636352211e116100b6578063c87b56dd1161006f578063c87b56dd146104ad578063df2a921b146104ea578063e985e9c514610515578063ebf0c71714610552578063ef4cadc51461057d578063f036f807146105a857610156565b80636352211e146103795780636cf4b550146103b657806370a08231146103f357806395d89b4114610430578063a22cb4651461045b578063b88d4fde1461048457610156565b806323b872dd1161010857806323b872dd1461027c5780632a55205a146102a55780633ccfd60b146102e357806342842e0e146102fa578063508177b1146103235780635d9ee1d31461034e57610156565b806301ffc9a71461015857806302d05d3f1461019557806306fdde03146101c0578063081812fc146101eb578063095ea7b31461022857806318160ddd1461025157610156565b3661015657005b005b34801561016457600080fd5b5061017f600480360381019061017a9190612177565b6105d3565b60405161018c9190612761565b60405180910390f35b3480156101a157600080fd5b506101aa6106b5565b6040516101b7919061269f565b60405180910390f35b3480156101cc57600080fd5b506101d56106d9565b6040516101e29190612797565b60405180910390f35b3480156101f757600080fd5b50610212600480360381019061020d91906121c9565b61076b565b60405161021f9190612684565b60405180910390f35b34801561023457600080fd5b5061024f600480360381019061024a919061213b565b6107f0565b005b34801561025d57600080fd5b50610266610908565b6040516102739190612a19565b60405180910390f35b34801561028857600080fd5b506102a3600480360381019061029e9190611fb1565b610919565b005b3480156102b157600080fd5b506102cc60048036038101906102c791906121f2565b610979565b6040516102da929190612706565b60405180910390f35b3480156102ef57600080fd5b506102f86109c1565b005b34801561030657600080fd5b50610321600480360381019061031c9190611fb1565b610bc9565b005b34801561032f57600080fd5b50610338610be9565b604051610345919061269f565b60405180910390f35b34801561035a57600080fd5b50610363610c0d565b6040516103709190612a19565b60405180910390f35b34801561038557600080fd5b506103a0600480360381019061039b91906121c9565b610c31565b6040516103ad9190612684565b60405180910390f35b3480156103c257600080fd5b506103dd60048036038101906103d891906120b7565b610ce3565b6040516103ea9190612a19565b60405180910390f35b3480156103ff57600080fd5b5061041a60048036038101906104159190611f4c565b610e86565b6040516104279190612a19565b60405180910390f35b34801561043c57600080fd5b50610445610f3e565b6040516104529190612797565b60405180910390f35b34801561046757600080fd5b50610482600480360381019061047d919061207b565b610fd0565b005b34801561049057600080fd5b506104ab60048036038101906104a69190612000565b610fe6565b005b3480156104b957600080fd5b506104d460048036038101906104cf91906121c9565b611048565b6040516104e19190612797565b60405180910390f35b3480156104f657600080fd5b506104ff6110b2565b60405161050c9190612a19565b60405180910390f35b34801561052157600080fd5b5061053c60048036038101906105379190611f75565b6110d6565b6040516105499190612761565b60405180910390f35b34801561055e57600080fd5b5061056761116a565b604051610574919061277c565b60405180910390f35b34801561058957600080fd5b5061059261118e565b60405161059f9190612a19565b60405180910390f35b3480156105b457600080fd5b506105bd611194565b6040516105ca9190612a19565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061069e57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806106ae57506106ad826111b8565b5b9050919050565b7f000000000000000000000000000000000000000000000000000000000000000081565b6060600080546106e890612d01565b80601f016020809104026020016040519081016040528092919081815260200182805461071490612d01565b80156107615780601f1061073657610100808354040283529160200191610761565b820191906000526020600020905b81548152906001019060200180831161074457829003601f168201915b5050505050905090565b600061077682611222565b6107b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107ac90612979565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006107fb82610c31565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561086c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610863906129b9565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1661088b61128e565b73ffffffffffffffffffffffffffffffffffffffff1614806108ba57506108b9816108b461128e565b6110d6565b5b6108f9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108f0906128d9565b60405180910390fd5b6109038383611296565b505050565b6000610914600661134f565b905090565b61092a61092461128e565b8261135d565b610969576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610960906129d9565b60405180910390fd5b61097483838361143b565b505050565b6000803091506127107f0000000000000000000000000000000000000000000000000000000000000000846109ae9190612ba1565b6109b89190612b70565b90509250929050565b600047905060008111610a09576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a00906127f9565b60405180910390fd5b6000600282610a189190612b70565b905060008183610a289190612bfb565b905060007f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1683604051610a709061266f565b60006040518083038185875af1925050503d8060008114610aad576040519150601f19603f3d011682016040523d82523d6000602084013e610ab2565b606091505b5050905060007f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1683604051610afc9061266f565b60006040518083038185875af1925050503d8060008114610b39576040519150601f19603f3d011682016040523d82523d6000602084013e610b3e565b606091505b5050905081610b82576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b79906129f9565b60405180910390fd5b80610bc2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bb990612899565b60405180910390fd5b5050505050565b610be483838360405180602001604052806000815250610fe6565b505050565b7f000000000000000000000000000000000000000000000000000000000000000081565b7f000000000000000000000000000000000000000000000000000000000000000081565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610cda576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cd190612939565b60405180910390fd5b80915050919050565b60008042905060007f00000000000000000000000000000000000000000000000000000000000000007f0000000000000000000000000000000000000000000000000000000000000000610d379190612b1a565b9050818111610d7b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d72906128f9565b60405180910390fd5b610dcf610d8888886116a2565b868680806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f820116905080830192505050505050506116d5565b610e0e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e0590612999565b60405180910390fd5b60008773ffffffffffffffffffffffffffffffffffffffff169050610e33600661170a565b610e3d8882611720565b7f19a8106db5ba74828818532bfa7cfbe8603bdb4cc124bd2e69dae02ae8d5b25b868683604051610e709392919061272f565b60405180910390a1809350505050949350505050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610ef7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eee90612919565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b606060018054610f4d90612d01565b80601f0160208091040260200160405190810160405280929190818152602001828054610f7990612d01565b8015610fc65780601f10610f9b57610100808354040283529160200191610fc6565b820191906000526020600020905b815481529060010190602001808311610fa957829003601f168201915b5050505050905090565b610fe2610fdb61128e565b838361173e565b5050565b610ff7610ff161128e565b8361135d565b611036576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161102d906129d9565b60405180910390fd5b611042848484846118ab565b50505050565b606061105382611222565b611092576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611089906127b9565b60405180910390fd5b6040518060600160405280603581526020016133b8603591399050919050565b7f000000000000000000000000000000000000000000000000000000000000000081565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b7f000000000000000000000000000000000000000000000000000000000000000081565b61271081565b7f000000000000000000000000000000000000000000000000000000000000000081565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661130983610c31565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600081600001549050919050565b600061136882611222565b6113a7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161139e906128b9565b60405180910390fd5b60006113b283610c31565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061142157508373ffffffffffffffffffffffffffffffffffffffff166114098461076b565b73ffffffffffffffffffffffffffffffffffffffff16145b80611432575061143181856110d6565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661145b82610c31565b73ffffffffffffffffffffffffffffffffffffffff16146114b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114a890612819565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611521576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161151890612859565b60405180910390fd5b61152c838383611907565b611537600082611296565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546115879190612bfb565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546115de9190612b1a565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461169d83838361190c565b505050565b600081836040516020016116b7929190612647565b60405160208183030381529060405280519060200120905092915050565b6000611702827f000000000000000000000000000000000000000000000000000000000000000085611911565b905092915050565b6001816000016000828254019250508190555050565b61173a828260405180602001604052806000815250611928565b5050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156117ad576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117a490612879565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161189e9190612761565b60405180910390a3505050565b6118b684848461143b565b6118c284848484611983565b611901576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118f8906127d9565b60405180910390fd5b50505050565b505050565b505050565b60008261191e8584611b1a565b1490509392505050565b6119328383611bb5565b61193f6000848484611983565b61197e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611975906127d9565b60405180910390fd5b505050565b60006119a48473ffffffffffffffffffffffffffffffffffffffff16611d8f565b15611b0d578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026119cd61128e565b8786866040518563ffffffff1660e01b81526004016119ef94939291906126ba565b602060405180830381600087803b158015611a0957600080fd5b505af1925050508015611a3a57506040513d601f19601f82011682018060405250810190611a3791906121a0565b60015b611abd573d8060008114611a6a576040519150601f19603f3d011682016040523d82523d6000602084013e611a6f565b606091505b50600081511415611ab5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aac906127d9565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050611b12565b600190505b949350505050565b60008082905060005b8451811015611baa576000858281518110611b67577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101519050808311611b8957611b828382611db2565b9250611b96565b611b938184611db2565b92505b508080611ba290612d64565b915050611b23565b508091505092915050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611c25576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c1c90612959565b60405180910390fd5b611c2e81611222565b15611c6e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c6590612839565b60405180910390fd5b611c7a60008383611907565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611cca9190612b1a565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611d8b6000838361190c565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b600082600052816020526040600020905092915050565b6000611ddc611dd784612a59565b612a34565b905082815260208101848484011115611df457600080fd5b611dff848285612cbf565b509392505050565b6000611e1a611e1584612a8a565b612a34565b905082815260208101848484011115611e3257600080fd5b611e3d848285612cbf565b509392505050565b600081359050611e548161335b565b92915050565b60008083601f840112611e6c57600080fd5b8235905067ffffffffffffffff811115611e8557600080fd5b602083019150836020820283011115611e9d57600080fd5b9250929050565b600081359050611eb381613372565b92915050565b600081359050611ec881613389565b92915050565b600081519050611edd81613389565b92915050565b600082601f830112611ef457600080fd5b8135611f04848260208601611dc9565b91505092915050565b600082601f830112611f1e57600080fd5b8135611f2e848260208601611e07565b91505092915050565b600081359050611f46816133a0565b92915050565b600060208284031215611f5e57600080fd5b6000611f6c84828501611e45565b91505092915050565b60008060408385031215611f8857600080fd5b6000611f9685828601611e45565b9250506020611fa785828601611e45565b9150509250929050565b600080600060608486031215611fc657600080fd5b6000611fd486828701611e45565b9350506020611fe586828701611e45565b9250506040611ff686828701611f37565b9150509250925092565b6000806000806080858703121561201657600080fd5b600061202487828801611e45565b945050602061203587828801611e45565b935050604061204687828801611f37565b925050606085013567ffffffffffffffff81111561206357600080fd5b61206f87828801611ee3565b91505092959194509250565b6000806040838503121561208e57600080fd5b600061209c85828601611e45565b92505060206120ad85828601611ea4565b9150509250929050565b600080600080606085870312156120cd57600080fd5b60006120db87828801611e45565b945050602085013567ffffffffffffffff8111156120f857600080fd5b61210487828801611f0d565b935050604085013567ffffffffffffffff81111561212157600080fd5b61212d87828801611e5a565b925092505092959194509250565b6000806040838503121561214e57600080fd5b600061215c85828601611e45565b925050602061216d85828601611f37565b9150509250929050565b60006020828403121561218957600080fd5b600061219784828501611eb9565b91505092915050565b6000602082840312156121b257600080fd5b60006121c084828501611ece565b91505092915050565b6000602082840312156121db57600080fd5b60006121e984828501611f37565b91505092915050565b6000806040838503121561220557600080fd5b600061221385828601611f37565b925050602061222485828601611f37565b9150509250929050565b61223781612c41565b82525050565b61224681612c2f565b82525050565b61225d61225882612c2f565b612dad565b82525050565b600061226f8385612ad1565b93507f07ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff83111561229e57600080fd5b6020830292506122af838584612cbf565b82840190509392505050565b6122c481612c53565b82525050565b6122d381612c5f565b82525050565b60006122e482612abb565b6122ee8185612ae2565b93506122fe818560208601612cce565b61230781612e8d565b840191505092915050565b600061231d82612ac6565b6123278185612afe565b9350612337818560208601612cce565b61234081612e8d565b840191505092915050565b600061235682612ac6565b6123608185612b0f565b9350612370818560208601612cce565b80840191505092915050565b6000612389602183612afe565b915061239482612eab565b604082019050919050565b60006123ac603283612afe565b91506123b782612efa565b604082019050919050565b60006123cf600f83612afe565b91506123da82612f49565b602082019050919050565b60006123f2602583612afe565b91506123fd82612f72565b604082019050919050565b6000612415601c83612afe565b915061242082612fc1565b602082019050919050565b6000612438602483612afe565b915061244382612fea565b604082019050919050565b600061245b601983612afe565b915061246682613039565b602082019050919050565b600061247e600383612afe565b915061248982613062565b602082019050919050565b60006124a1602c83612afe565b91506124ac8261308b565b604082019050919050565b60006124c4603883612afe565b91506124cf826130da565b604082019050919050565b60006124e7600f83612afe565b91506124f282613129565b602082019050919050565b600061250a602a83612afe565b915061251582613152565b604082019050919050565b600061252d602983612afe565b9150612538826131a1565b604082019050919050565b6000612550602083612afe565b915061255b826131f0565b602082019050919050565b6000612573602c83612afe565b915061257e82613219565b604082019050919050565b6000612596601483612afe565b91506125a182613268565b602082019050919050565b60006125b9602183612afe565b91506125c482613291565b604082019050919050565b60006125dc600083612af3565b91506125e7826132e0565b600082019050919050565b60006125ff603183612afe565b915061260a826132e3565b604082019050919050565b6000612622600483612afe565b915061262d82613332565b602082019050919050565b61264181612cb5565b82525050565b6000612653828561234b565b915061265f828461224c565b6014820191508190509392505050565b600061267a826125cf565b9150819050919050565b6000602082019050612699600083018461223d565b92915050565b60006020820190506126b4600083018461222e565b92915050565b60006080820190506126cf600083018761223d565b6126dc602083018661223d565b6126e96040830185612638565b81810360608301526126fb81846122d9565b905095945050505050565b600060408201905061271b600083018561223d565b6127286020830184612638565b9392505050565b6000604082019050818103600083015261274a818587612263565b90506127596020830184612638565b949350505050565b600060208201905061277660008301846122bb565b92915050565b600060208201905061279160008301846122ca565b92915050565b600060208201905081810360008301526127b18184612312565b905092915050565b600060208201905081810360008301526127d28161237c565b9050919050565b600060208201905081810360008301526127f28161239f565b9050919050565b60006020820190508181036000830152612812816123c2565b9050919050565b60006020820190508181036000830152612832816123e5565b9050919050565b6000602082019050818103600083015261285281612408565b9050919050565b600060208201905081810360008301526128728161242b565b9050919050565b600060208201905081810360008301526128928161244e565b9050919050565b600060208201905081810360008301526128b281612471565b9050919050565b600060208201905081810360008301526128d281612494565b9050919050565b600060208201905081810360008301526128f2816124b7565b9050919050565b60006020820190508181036000830152612912816124da565b9050919050565b60006020820190508181036000830152612932816124fd565b9050919050565b6000602082019050818103600083015261295281612520565b9050919050565b6000602082019050818103600083015261297281612543565b9050919050565b6000602082019050818103600083015261299281612566565b9050919050565b600060208201905081810360008301526129b281612589565b9050919050565b600060208201905081810360008301526129d2816125ac565b9050919050565b600060208201905081810360008301526129f2816125f2565b9050919050565b60006020820190508181036000830152612a1281612615565b9050919050565b6000602082019050612a2e6000830184612638565b92915050565b6000612a3e612a4f565b9050612a4a8282612d33565b919050565b6000604051905090565b600067ffffffffffffffff821115612a7457612a73612e5e565b5b612a7d82612e8d565b9050602081019050919050565b600067ffffffffffffffff821115612aa557612aa4612e5e565b5b612aae82612e8d565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000612b2582612cb5565b9150612b3083612cb5565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612b6557612b64612dd1565b5b828201905092915050565b6000612b7b82612cb5565b9150612b8683612cb5565b925082612b9657612b95612e00565b5b828204905092915050565b6000612bac82612cb5565b9150612bb783612cb5565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612bf057612bef612dd1565b5b828202905092915050565b6000612c0682612cb5565b9150612c1183612cb5565b925082821015612c2457612c23612dd1565b5b828203905092915050565b6000612c3a82612c95565b9050919050565b6000612c4c82612c95565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015612cec578082015181840152602081019050612cd1565b83811115612cfb576000848401525b50505050565b60006002820490506001821680612d1957607f821691505b60208210811415612d2d57612d2c612e2f565b5b50919050565b612d3c82612e8d565b810181811067ffffffffffffffff82111715612d5b57612d5a612e5e565b5b80604052505050565b6000612d6f82612cb5565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415612da257612da1612dd1565b5b600182019050919050565b6000612db882612dbf565b9050919050565b6000612dca82612e9e565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f4552433732314d657461646174613a204e6f6e6578697374656e7420746f6b6560008201527f6e00000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f62616c616e6365206973207a65726f0000000000000000000000000000000000600082015250565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4357460000000000000000000000000000000000000000000000000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f61697264726f7020657870697265640000000000000000000000000000000000600082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f496e76616c6964206d65726b6c652070726f6f66000000000000000000000000600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f4346574600000000000000000000000000000000000000000000000000000000600082015250565b61336481612c2f565b811461336f57600080fd5b50565b61337b81612c53565b811461338657600080fd5b50565b61339281612c69565b811461339d57600080fd5b50565b6133a981612cb5565b81146133b457600080fd5b5056fe697066733a2f2f516d5742526635706f634e4d4d78744d7534554e355365566a4b7739577365576b4557626264324c5465794c4171a26469706673582212201d760ccf104d01617df0cbf70e41f3ae56f2b4b533ffbcc3eb762731291ccaaa64736f6c6343000804003300000000000000000000000000000000000000000000000000000000000000e00000000000000000000000000000000000000000000000000000000000000120cc2c77b56a7b4fbd50b512d41e0630c7cb2de0d07752ec72f3149fd790f6eb8f000000000000000000000000ab2811f8b75f94c4591812f1d697c9c7b36153d2000000000000000000000000983b0679b6ea9b8d22cf5d09e8d7a71ba349d41300000000000000000000000000000000000000000000000000000000000001f40000000000000000000000000000000000000000000000000000000000093a800000000000000000000000000000000000000000000000000000000000000011566f6c747a2047656e65736973204e46540000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000008564f4c545a554e49000000000000000000000000000000000000000000000000

Deployed Bytecode

0x60806040526004361061014f5760003560e01c80636352211e116100b6578063c87b56dd1161006f578063c87b56dd146104ad578063df2a921b146104ea578063e985e9c514610515578063ebf0c71714610552578063ef4cadc51461057d578063f036f807146105a857610156565b80636352211e146103795780636cf4b550146103b657806370a08231146103f357806395d89b4114610430578063a22cb4651461045b578063b88d4fde1461048457610156565b806323b872dd1161010857806323b872dd1461027c5780632a55205a146102a55780633ccfd60b146102e357806342842e0e146102fa578063508177b1146103235780635d9ee1d31461034e57610156565b806301ffc9a71461015857806302d05d3f1461019557806306fdde03146101c0578063081812fc146101eb578063095ea7b31461022857806318160ddd1461025157610156565b3661015657005b005b34801561016457600080fd5b5061017f600480360381019061017a9190612177565b6105d3565b60405161018c9190612761565b60405180910390f35b3480156101a157600080fd5b506101aa6106b5565b6040516101b7919061269f565b60405180910390f35b3480156101cc57600080fd5b506101d56106d9565b6040516101e29190612797565b60405180910390f35b3480156101f757600080fd5b50610212600480360381019061020d91906121c9565b61076b565b60405161021f9190612684565b60405180910390f35b34801561023457600080fd5b5061024f600480360381019061024a919061213b565b6107f0565b005b34801561025d57600080fd5b50610266610908565b6040516102739190612a19565b60405180910390f35b34801561028857600080fd5b506102a3600480360381019061029e9190611fb1565b610919565b005b3480156102b157600080fd5b506102cc60048036038101906102c791906121f2565b610979565b6040516102da929190612706565b60405180910390f35b3480156102ef57600080fd5b506102f86109c1565b005b34801561030657600080fd5b50610321600480360381019061031c9190611fb1565b610bc9565b005b34801561032f57600080fd5b50610338610be9565b604051610345919061269f565b60405180910390f35b34801561035a57600080fd5b50610363610c0d565b6040516103709190612a19565b60405180910390f35b34801561038557600080fd5b506103a0600480360381019061039b91906121c9565b610c31565b6040516103ad9190612684565b60405180910390f35b3480156103c257600080fd5b506103dd60048036038101906103d891906120b7565b610ce3565b6040516103ea9190612a19565b60405180910390f35b3480156103ff57600080fd5b5061041a60048036038101906104159190611f4c565b610e86565b6040516104279190612a19565b60405180910390f35b34801561043c57600080fd5b50610445610f3e565b6040516104529190612797565b60405180910390f35b34801561046757600080fd5b50610482600480360381019061047d919061207b565b610fd0565b005b34801561049057600080fd5b506104ab60048036038101906104a69190612000565b610fe6565b005b3480156104b957600080fd5b506104d460048036038101906104cf91906121c9565b611048565b6040516104e19190612797565b60405180910390f35b3480156104f657600080fd5b506104ff6110b2565b60405161050c9190612a19565b60405180910390f35b34801561052157600080fd5b5061053c60048036038101906105379190611f75565b6110d6565b6040516105499190612761565b60405180910390f35b34801561055e57600080fd5b5061056761116a565b604051610574919061277c565b60405180910390f35b34801561058957600080fd5b5061059261118e565b60405161059f9190612a19565b60405180910390f35b3480156105b457600080fd5b506105bd611194565b6040516105ca9190612a19565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061069e57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806106ae57506106ad826111b8565b5b9050919050565b7f000000000000000000000000983b0679b6ea9b8d22cf5d09e8d7a71ba349d41381565b6060600080546106e890612d01565b80601f016020809104026020016040519081016040528092919081815260200182805461071490612d01565b80156107615780601f1061073657610100808354040283529160200191610761565b820191906000526020600020905b81548152906001019060200180831161074457829003601f168201915b5050505050905090565b600061077682611222565b6107b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107ac90612979565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006107fb82610c31565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561086c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610863906129b9565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1661088b61128e565b73ffffffffffffffffffffffffffffffffffffffff1614806108ba57506108b9816108b461128e565b6110d6565b5b6108f9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108f0906128d9565b60405180910390fd5b6109038383611296565b505050565b6000610914600661134f565b905090565b61092a61092461128e565b8261135d565b610969576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610960906129d9565b60405180910390fd5b61097483838361143b565b505050565b6000803091506127107f00000000000000000000000000000000000000000000000000000000000001f4846109ae9190612ba1565b6109b89190612b70565b90509250929050565b600047905060008111610a09576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a00906127f9565b60405180910390fd5b6000600282610a189190612b70565b905060008183610a289190612bfb565b905060007f000000000000000000000000ab2811f8b75f94c4591812f1d697c9c7b36153d273ffffffffffffffffffffffffffffffffffffffff1683604051610a709061266f565b60006040518083038185875af1925050503d8060008114610aad576040519150601f19603f3d011682016040523d82523d6000602084013e610ab2565b606091505b5050905060007f000000000000000000000000983b0679b6ea9b8d22cf5d09e8d7a71ba349d41373ffffffffffffffffffffffffffffffffffffffff1683604051610afc9061266f565b60006040518083038185875af1925050503d8060008114610b39576040519150601f19603f3d011682016040523d82523d6000602084013e610b3e565b606091505b5050905081610b82576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b79906129f9565b60405180910390fd5b80610bc2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bb990612899565b60405180910390fd5b5050505050565b610be483838360405180602001604052806000815250610fe6565b505050565b7f000000000000000000000000ab2811f8b75f94c4591812f1d697c9c7b36153d281565b7f00000000000000000000000000000000000000000000000000000000000001f481565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610cda576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cd190612939565b60405180910390fd5b80915050919050565b60008042905060007f00000000000000000000000000000000000000000000000000000000622f448e7f0000000000000000000000000000000000000000000000000000000000093a80610d379190612b1a565b9050818111610d7b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d72906128f9565b60405180910390fd5b610dcf610d8888886116a2565b868680806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f820116905080830192505050505050506116d5565b610e0e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e0590612999565b60405180910390fd5b60008773ffffffffffffffffffffffffffffffffffffffff169050610e33600661170a565b610e3d8882611720565b7f19a8106db5ba74828818532bfa7cfbe8603bdb4cc124bd2e69dae02ae8d5b25b868683604051610e709392919061272f565b60405180910390a1809350505050949350505050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610ef7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eee90612919565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b606060018054610f4d90612d01565b80601f0160208091040260200160405190810160405280929190818152602001828054610f7990612d01565b8015610fc65780601f10610f9b57610100808354040283529160200191610fc6565b820191906000526020600020905b815481529060010190602001808311610fa957829003601f168201915b5050505050905090565b610fe2610fdb61128e565b838361173e565b5050565b610ff7610ff161128e565b8361135d565b611036576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161102d906129d9565b60405180910390fd5b611042848484846118ab565b50505050565b606061105382611222565b611092576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611089906127b9565b60405180910390fd5b6040518060600160405280603581526020016133b8603591399050919050565b7f00000000000000000000000000000000000000000000000000000000622f448e81565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b7fcc2c77b56a7b4fbd50b512d41e0630c7cb2de0d07752ec72f3149fd790f6eb8f81565b61271081565b7f0000000000000000000000000000000000000000000000000000000000093a8081565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661130983610c31565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600081600001549050919050565b600061136882611222565b6113a7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161139e906128b9565b60405180910390fd5b60006113b283610c31565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061142157508373ffffffffffffffffffffffffffffffffffffffff166114098461076b565b73ffffffffffffffffffffffffffffffffffffffff16145b80611432575061143181856110d6565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661145b82610c31565b73ffffffffffffffffffffffffffffffffffffffff16146114b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114a890612819565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611521576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161151890612859565b60405180910390fd5b61152c838383611907565b611537600082611296565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546115879190612bfb565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546115de9190612b1a565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461169d83838361190c565b505050565b600081836040516020016116b7929190612647565b60405160208183030381529060405280519060200120905092915050565b6000611702827fcc2c77b56a7b4fbd50b512d41e0630c7cb2de0d07752ec72f3149fd790f6eb8f85611911565b905092915050565b6001816000016000828254019250508190555050565b61173a828260405180602001604052806000815250611928565b5050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156117ad576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117a490612879565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161189e9190612761565b60405180910390a3505050565b6118b684848461143b565b6118c284848484611983565b611901576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118f8906127d9565b60405180910390fd5b50505050565b505050565b505050565b60008261191e8584611b1a565b1490509392505050565b6119328383611bb5565b61193f6000848484611983565b61197e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611975906127d9565b60405180910390fd5b505050565b60006119a48473ffffffffffffffffffffffffffffffffffffffff16611d8f565b15611b0d578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026119cd61128e565b8786866040518563ffffffff1660e01b81526004016119ef94939291906126ba565b602060405180830381600087803b158015611a0957600080fd5b505af1925050508015611a3a57506040513d601f19601f82011682018060405250810190611a3791906121a0565b60015b611abd573d8060008114611a6a576040519150601f19603f3d011682016040523d82523d6000602084013e611a6f565b606091505b50600081511415611ab5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aac906127d9565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050611b12565b600190505b949350505050565b60008082905060005b8451811015611baa576000858281518110611b67577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101519050808311611b8957611b828382611db2565b9250611b96565b611b938184611db2565b92505b508080611ba290612d64565b915050611b23565b508091505092915050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611c25576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c1c90612959565b60405180910390fd5b611c2e81611222565b15611c6e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c6590612839565b60405180910390fd5b611c7a60008383611907565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611cca9190612b1a565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611d8b6000838361190c565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b600082600052816020526040600020905092915050565b6000611ddc611dd784612a59565b612a34565b905082815260208101848484011115611df457600080fd5b611dff848285612cbf565b509392505050565b6000611e1a611e1584612a8a565b612a34565b905082815260208101848484011115611e3257600080fd5b611e3d848285612cbf565b509392505050565b600081359050611e548161335b565b92915050565b60008083601f840112611e6c57600080fd5b8235905067ffffffffffffffff811115611e8557600080fd5b602083019150836020820283011115611e9d57600080fd5b9250929050565b600081359050611eb381613372565b92915050565b600081359050611ec881613389565b92915050565b600081519050611edd81613389565b92915050565b600082601f830112611ef457600080fd5b8135611f04848260208601611dc9565b91505092915050565b600082601f830112611f1e57600080fd5b8135611f2e848260208601611e07565b91505092915050565b600081359050611f46816133a0565b92915050565b600060208284031215611f5e57600080fd5b6000611f6c84828501611e45565b91505092915050565b60008060408385031215611f8857600080fd5b6000611f9685828601611e45565b9250506020611fa785828601611e45565b9150509250929050565b600080600060608486031215611fc657600080fd5b6000611fd486828701611e45565b9350506020611fe586828701611e45565b9250506040611ff686828701611f37565b9150509250925092565b6000806000806080858703121561201657600080fd5b600061202487828801611e45565b945050602061203587828801611e45565b935050604061204687828801611f37565b925050606085013567ffffffffffffffff81111561206357600080fd5b61206f87828801611ee3565b91505092959194509250565b6000806040838503121561208e57600080fd5b600061209c85828601611e45565b92505060206120ad85828601611ea4565b9150509250929050565b600080600080606085870312156120cd57600080fd5b60006120db87828801611e45565b945050602085013567ffffffffffffffff8111156120f857600080fd5b61210487828801611f0d565b935050604085013567ffffffffffffffff81111561212157600080fd5b61212d87828801611e5a565b925092505092959194509250565b6000806040838503121561214e57600080fd5b600061215c85828601611e45565b925050602061216d85828601611f37565b9150509250929050565b60006020828403121561218957600080fd5b600061219784828501611eb9565b91505092915050565b6000602082840312156121b257600080fd5b60006121c084828501611ece565b91505092915050565b6000602082840312156121db57600080fd5b60006121e984828501611f37565b91505092915050565b6000806040838503121561220557600080fd5b600061221385828601611f37565b925050602061222485828601611f37565b9150509250929050565b61223781612c41565b82525050565b61224681612c2f565b82525050565b61225d61225882612c2f565b612dad565b82525050565b600061226f8385612ad1565b93507f07ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff83111561229e57600080fd5b6020830292506122af838584612cbf565b82840190509392505050565b6122c481612c53565b82525050565b6122d381612c5f565b82525050565b60006122e482612abb565b6122ee8185612ae2565b93506122fe818560208601612cce565b61230781612e8d565b840191505092915050565b600061231d82612ac6565b6123278185612afe565b9350612337818560208601612cce565b61234081612e8d565b840191505092915050565b600061235682612ac6565b6123608185612b0f565b9350612370818560208601612cce565b80840191505092915050565b6000612389602183612afe565b915061239482612eab565b604082019050919050565b60006123ac603283612afe565b91506123b782612efa565b604082019050919050565b60006123cf600f83612afe565b91506123da82612f49565b602082019050919050565b60006123f2602583612afe565b91506123fd82612f72565b604082019050919050565b6000612415601c83612afe565b915061242082612fc1565b602082019050919050565b6000612438602483612afe565b915061244382612fea565b604082019050919050565b600061245b601983612afe565b915061246682613039565b602082019050919050565b600061247e600383612afe565b915061248982613062565b602082019050919050565b60006124a1602c83612afe565b91506124ac8261308b565b604082019050919050565b60006124c4603883612afe565b91506124cf826130da565b604082019050919050565b60006124e7600f83612afe565b91506124f282613129565b602082019050919050565b600061250a602a83612afe565b915061251582613152565b604082019050919050565b600061252d602983612afe565b9150612538826131a1565b604082019050919050565b6000612550602083612afe565b915061255b826131f0565b602082019050919050565b6000612573602c83612afe565b915061257e82613219565b604082019050919050565b6000612596601483612afe565b91506125a182613268565b602082019050919050565b60006125b9602183612afe565b91506125c482613291565b604082019050919050565b60006125dc600083612af3565b91506125e7826132e0565b600082019050919050565b60006125ff603183612afe565b915061260a826132e3565b604082019050919050565b6000612622600483612afe565b915061262d82613332565b602082019050919050565b61264181612cb5565b82525050565b6000612653828561234b565b915061265f828461224c565b6014820191508190509392505050565b600061267a826125cf565b9150819050919050565b6000602082019050612699600083018461223d565b92915050565b60006020820190506126b4600083018461222e565b92915050565b60006080820190506126cf600083018761223d565b6126dc602083018661223d565b6126e96040830185612638565b81810360608301526126fb81846122d9565b905095945050505050565b600060408201905061271b600083018561223d565b6127286020830184612638565b9392505050565b6000604082019050818103600083015261274a818587612263565b90506127596020830184612638565b949350505050565b600060208201905061277660008301846122bb565b92915050565b600060208201905061279160008301846122ca565b92915050565b600060208201905081810360008301526127b18184612312565b905092915050565b600060208201905081810360008301526127d28161237c565b9050919050565b600060208201905081810360008301526127f28161239f565b9050919050565b60006020820190508181036000830152612812816123c2565b9050919050565b60006020820190508181036000830152612832816123e5565b9050919050565b6000602082019050818103600083015261285281612408565b9050919050565b600060208201905081810360008301526128728161242b565b9050919050565b600060208201905081810360008301526128928161244e565b9050919050565b600060208201905081810360008301526128b281612471565b9050919050565b600060208201905081810360008301526128d281612494565b9050919050565b600060208201905081810360008301526128f2816124b7565b9050919050565b60006020820190508181036000830152612912816124da565b9050919050565b60006020820190508181036000830152612932816124fd565b9050919050565b6000602082019050818103600083015261295281612520565b9050919050565b6000602082019050818103600083015261297281612543565b9050919050565b6000602082019050818103600083015261299281612566565b9050919050565b600060208201905081810360008301526129b281612589565b9050919050565b600060208201905081810360008301526129d2816125ac565b9050919050565b600060208201905081810360008301526129f2816125f2565b9050919050565b60006020820190508181036000830152612a1281612615565b9050919050565b6000602082019050612a2e6000830184612638565b92915050565b6000612a3e612a4f565b9050612a4a8282612d33565b919050565b6000604051905090565b600067ffffffffffffffff821115612a7457612a73612e5e565b5b612a7d82612e8d565b9050602081019050919050565b600067ffffffffffffffff821115612aa557612aa4612e5e565b5b612aae82612e8d565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000612b2582612cb5565b9150612b3083612cb5565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612b6557612b64612dd1565b5b828201905092915050565b6000612b7b82612cb5565b9150612b8683612cb5565b925082612b9657612b95612e00565b5b828204905092915050565b6000612bac82612cb5565b9150612bb783612cb5565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612bf057612bef612dd1565b5b828202905092915050565b6000612c0682612cb5565b9150612c1183612cb5565b925082821015612c2457612c23612dd1565b5b828203905092915050565b6000612c3a82612c95565b9050919050565b6000612c4c82612c95565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015612cec578082015181840152602081019050612cd1565b83811115612cfb576000848401525b50505050565b60006002820490506001821680612d1957607f821691505b60208210811415612d2d57612d2c612e2f565b5b50919050565b612d3c82612e8d565b810181811067ffffffffffffffff82111715612d5b57612d5a612e5e565b5b80604052505050565b6000612d6f82612cb5565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415612da257612da1612dd1565b5b600182019050919050565b6000612db882612dbf565b9050919050565b6000612dca82612e9e565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f4552433732314d657461646174613a204e6f6e6578697374656e7420746f6b6560008201527f6e00000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f62616c616e6365206973207a65726f0000000000000000000000000000000000600082015250565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4357460000000000000000000000000000000000000000000000000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f61697264726f7020657870697265640000000000000000000000000000000000600082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f496e76616c6964206d65726b6c652070726f6f66000000000000000000000000600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f4346574600000000000000000000000000000000000000000000000000000000600082015250565b61336481612c2f565b811461336f57600080fd5b50565b61337b81612c53565b811461338657600080fd5b50565b61339281612c69565b811461339d57600080fd5b50565b6133a981612cb5565b81146133b457600080fd5b5056fe697066733a2f2f516d5742526635706f634e4d4d78744d7534554e355365566a4b7739577365576b4557626264324c5465794c4171a26469706673582212201d760ccf104d01617df0cbf70e41f3ae56f2b4b533ffbcc3eb762731291ccaaa64736f6c63430008040033

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

00000000000000000000000000000000000000000000000000000000000000e00000000000000000000000000000000000000000000000000000000000000120cc2c77b56a7b4fbd50b512d41e0630c7cb2de0d07752ec72f3149fd790f6eb8f000000000000000000000000ab2811f8b75f94c4591812f1d697c9c7b36153d2000000000000000000000000983b0679b6ea9b8d22cf5d09e8d7a71ba349d41300000000000000000000000000000000000000000000000000000000000001f40000000000000000000000000000000000000000000000000000000000093a800000000000000000000000000000000000000000000000000000000000000011566f6c747a2047656e65736973204e46540000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000008564f4c545a554e49000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : name (string): Voltz Genesis NFT
Arg [1] : symbol (string): VOLTZUNI
Arg [2] : merkleroot (bytes32): 0xcc2c77b56a7b4fbd50b512d41e0630c7cb2de0d07752ec72f3149fd790f6eb8f
Arg [3] : _creatorFund (address): 0xAB2811F8B75F94c4591812f1D697c9c7B36153d2
Arg [4] : _creator (address): 0x983B0679b6eA9B8D22cF5D09e8D7A71bA349d413
Arg [5] : _royaltyAsProportionOfSalePrice (uint256): 500
Arg [6] : _airdropDurationInSeconds (uint256): 604800

-----Encoded View---------------
11 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000120
Arg [2] : cc2c77b56a7b4fbd50b512d41e0630c7cb2de0d07752ec72f3149fd790f6eb8f
Arg [3] : 000000000000000000000000ab2811f8b75f94c4591812f1d697c9c7b36153d2
Arg [4] : 000000000000000000000000983b0679b6ea9b8d22cf5d09e8d7a71ba349d413
Arg [5] : 00000000000000000000000000000000000000000000000000000000000001f4
Arg [6] : 0000000000000000000000000000000000000000000000000000000000093a80
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000011
Arg [8] : 566f6c747a2047656e65736973204e4654000000000000000000000000000000
Arg [9] : 0000000000000000000000000000000000000000000000000000000000000008
Arg [10] : 564f4c545a554e49000000000000000000000000000000000000000000000000


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.