ETH Price: $2,510.91 (+0.78%)

Token

Future Art Access All Art Diamond Pass (AAADP)
 

Overview

Max Total Supply

25 AAADP

Holders

18

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 AAADP
0xd7242a4eb63aca04ad5e0113b73480c8eba81489
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:
FutureArtDiamondPasses

Compiler Version
v0.8.4+commit.c7e474f2

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2021-11-22
*/

pragma solidity ^0.8.0;


// SPDX-License-Identifier: MIT
/**
 * @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);
}

// 
/**
 * @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;
}

// 
/**
 * @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);
}

// 
/**
 * @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);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// 
/**
 * @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;
    }
}

// 
/**
 * @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);
    }
}

// 
/**
 * @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;
    }
}

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

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

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

// 
/**
 * @dev Contract module which allows children to implement an emergency stop
 * mechanism that can be triggered by an authorized account.
 *
 * This module is used through inheritance. It will make available the
 * modifiers `whenNotPaused` and `whenPaused`, which can be applied to
 * the functions of your contract. Note that they will not be pausable by
 * simply including this module, only once the modifiers are put in place.
 */
abstract contract Pausable is Context {
    /**
     * @dev Emitted when the pause is triggered by `account`.
     */
    event Paused(address account);

    /**
     * @dev Emitted when the pause is lifted by `account`.
     */
    event Unpaused(address account);

    bool private _paused;

    /**
     * @dev Initializes the contract in unpaused state.
     */
    constructor() {
        _paused = false;
    }

    /**
     * @dev Returns true if the contract is paused, and false otherwise.
     */
    function paused() public view virtual returns (bool) {
        return _paused;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is not paused.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    modifier whenNotPaused() {
        require(!paused(), "Pausable: paused");
        _;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is paused.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    modifier whenPaused() {
        require(paused(), "Pausable: not paused");
        _;
    }

    /**
     * @dev Triggers stopped state.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    function _pause() internal virtual whenNotPaused {
        _paused = true;
        emit Paused(_msgSender());
    }

    /**
     * @dev Returns to normal state.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    function _unpause() internal virtual whenPaused {
        _paused = false;
        emit Unpaused(_msgSender());
    }
}

// 
/**
 * @dev ERC721 token with pausable token transfers, minting and burning.
 *
 * Useful for scenarios such as preventing trades until the end of an evaluation
 * period, or having an emergency switch for freezing all token transfers in the
 * event of a large bug.
 */
abstract contract ERC721Pausable is ERC721, Pausable {
    /**
     * @dev See {ERC721-_beforeTokenTransfer}.
     *
     * Requirements:
     *
     * - the contract must not be paused.
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual override {
        super._beforeTokenTransfer(from, to, tokenId);

        require(!paused(), "ERC721Pausable: token transfer while paused");
    }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// 
abstract contract ContextMixin {
    function msgSender()
        internal
        view
        returns (address payable sender)
    {
        if (msg.sender == address(this)) {
            bytes memory array = msg.data;
            uint256 index = msg.data.length;
            assembly {
                // Load the 32 bytes word from memory with the address on the lower 20 bytes, and mask those.
                sender := and(
                    mload(add(array, index)),
                    0xffffffffffffffffffffffffffffffffffffffff
                )
            }
        } else {
            sender = payable(msg.sender);
        }
        return sender;
    }
}

contract Initializable {
    bool inited = false;

    modifier initializer() {
        require(!inited, "already inited");
        _;
        inited = true;
    }
}

contract EIP712Base is Initializable {
    struct EIP712Domain {
        string name;
        string version;
        address verifyingContract;
        bytes32 salt;
    }

    string constant public ERC712_VERSION = "1";

    bytes32 internal constant EIP712_DOMAIN_TYPEHASH = keccak256(
        bytes(
            "EIP712Domain(string name,string version,address verifyingContract,bytes32 salt)"
        )
    );
    bytes32 internal domainSeperator;

    // supposed to be called once while initializing.
    // one of the contracts that inherits this contract follows proxy pattern
    // so it is not possible to do this in a constructor
    function _initializeEIP712(
        string memory name
    )
        internal
        initializer
    {
        _setDomainSeperator(name);
    }

    function _setDomainSeperator(string memory name) internal {
        domainSeperator = keccak256(
            abi.encode(
                EIP712_DOMAIN_TYPEHASH,
                keccak256(bytes(name)),
                keccak256(bytes(ERC712_VERSION)),
                address(this),
                bytes32(getChainId())
            )
        );
    }

    function getDomainSeperator() public view returns (bytes32) {
        return domainSeperator;
    }

    function getChainId() public view returns (uint256) {
        uint256 id;
        assembly {
            id := chainid()
        }
        return id;
    }

    /**
     * Accept message hash and returns hash message in EIP712 compatible form
     * So that it can be used to recover signer from signature signed using EIP712 formatted data
     * https://eips.ethereum.org/EIPS/eip-712
     * "\\x19" makes the encoding deterministic
     * "\\x01" is the version byte to make it compatible to EIP-191
     */
    function toTypedMessageHash(bytes32 messageHash)
        internal
        view
        returns (bytes32)
    {
        return
            keccak256(
                abi.encodePacked("\x19\x01", getDomainSeperator(), messageHash)
            );
    }
}

// 
contract NativeMetaTransaction is EIP712Base {
    using SafeMath for uint256;
    bytes32 private constant META_TRANSACTION_TYPEHASH = keccak256(
        bytes(
            "MetaTransaction(uint256 nonce,address from,bytes functionSignature)"
        )
    );
    event MetaTransactionExecuted(
        address userAddress,
        address payable relayerAddress,
        bytes functionSignature
    );
    mapping(address => uint256) nonces;

    /*
     * Meta transaction structure.
     * No point of including value field here as if user is doing value transfer then he has the funds to pay for gas
     * He should call the desired function directly in that case.
     */
    struct MetaTransaction {
        uint256 nonce;
        address from;
        bytes functionSignature;
    }

    function executeMetaTransaction(
        address userAddress,
        bytes memory functionSignature,
        bytes32 sigR,
        bytes32 sigS,
        uint8 sigV
    ) public payable returns (bytes memory) {
        MetaTransaction memory metaTx = MetaTransaction({
            nonce: nonces[userAddress],
            from: userAddress,
            functionSignature: functionSignature
        });

        require(
            verify(userAddress, metaTx, sigR, sigS, sigV),
            "Signer and signature do not match"
        );

        // increase nonce for user (to avoid re-use)
        nonces[userAddress] = nonces[userAddress].add(1);

        emit MetaTransactionExecuted(
            userAddress,
            payable(msg.sender),
            functionSignature
        );

        // Append userAddress and relayer address at the end to extract it from calling context
        (bool success, bytes memory returnData) = address(this).call(
            abi.encodePacked(functionSignature, userAddress)
        );
        require(success, "Function call not successful");

        return returnData;
    }

    function hashMetaTransaction(MetaTransaction memory metaTx)
        internal
        pure
        returns (bytes32)
    {
        return
            keccak256(
                abi.encode(
                    META_TRANSACTION_TYPEHASH,
                    metaTx.nonce,
                    metaTx.from,
                    keccak256(metaTx.functionSignature)
                )
            );
    }

    function getNonce(address user) public view returns (uint256 nonce) {
        nonce = nonces[user];
    }

    function verify(
        address signer,
        MetaTransaction memory metaTx,
        bytes32 sigR,
        bytes32 sigS,
        uint8 sigV
    ) internal view returns (bool) {
        require(signer != address(0), "NativeMetaTransaction: INVALID_SIGNER");
        return
            signer ==
            ecrecover(
                toTypedMessageHash(hashMetaTransaction(metaTx)),
                sigV,
                sigR,
                sigS
            );
    }
}

// 
contract OwnableDelegateProxy {}

contract ProxyRegistry {
    mapping(address => OwnableDelegateProxy) public proxies;
}

/**
 * @title FutureArtDiamondPasses
 * Based on ERC721Tradable - ERC721 contract that whitelists a trading address, and has minting functionality.
 */
contract FutureArtDiamondPasses is
    ContextMixin,
    ERC721Enumerable,
    ERC721Pausable,
    NativeMetaTransaction,
    Ownable
{
    using SafeMath for uint256;

    address immutable proxyRegistryAddress;
    uint256 immutable NFTLimit = 25;
    uint256 private _currentTokenId = 0;
    string private _uri;

    constructor(
        string memory _name,
        string memory _symbol,
        address _proxyRegistryAddress,
        string memory _URI
    ) ERC721(_name, _symbol) {
        proxyRegistryAddress = _proxyRegistryAddress;
        _uri = _URI;
        _initializeEIP712(_name);
    }

    /**
     * @dev mints tokens to an address. Supply limited to NFTLimit.
     * @param _to address of the future owner of the tokens
     * @param _batchCount number of tokens to mint
     */
    function mintSupplyByBatch(
        address _to,
        uint256 _batchCount
    ) public onlyOwner {
        uint256 newNFTCount = _batchCount;
        // can't try mint more than limit
        if (newNFTCount > NFTLimit) {
            newNFTCount = NFTLimit;
        }
        uint256 lastId = _currentTokenId + newNFTCount;
        // mint only to limit
        if (lastId > NFTLimit) {
            uint256 excess = lastId - NFTLimit;
            newNFTCount -= excess;
        }
        require(newNFTCount > 0, "FutureArtDiamondPasses: no more nfts to mint");
        for (uint256 i = 0; i < newNFTCount; i++) {
            uint256 newTokenId = _getNextTokenId();
            _mint(_to, newTokenId);
            _incrementTokenId();
        }
    }

    /**
     * @dev burns set of token ids, only if the contract owner owns them
     * @param ids array of token ids to burn
     */
    function burnBatch(uint256[] calldata ids) public onlyOwner {
        for (uint256 i=0; i<ids.length; i++) {
            require(_isApprovedOrOwner(_msgSender(), ids[i]), "ERC721Burnable: caller is not owner nor approved");
            _burn(ids[i]);
        }
    }

    /**
     * @dev calculates the next token ID based on value of _currentTokenId
     * @return uint256 for the next token ID
     */
    function _getNextTokenId() private view returns (uint256) {
        return _currentTokenId.add(1);
    }

    /**
     * @dev increments the value of _currentTokenId
     */
    function _incrementTokenId() private {
        _currentTokenId++;
    }

    /**
     * @dev shared uri for nfts
     */
    function tokenURI(uint256 /*_tokenId*/) override public view returns (string memory) {
        return _uri;
    }

    /**
     * @dev set _uri for all nfts
     */
    function setURI(string memory _newURI) public onlyOwner {
        _uri = _newURI;
    }

    /**
     * Override isApprovedForAll to whitelist user's OpenSea proxy accounts to enable gas-less listings.
     */
    function isApprovedForAll(address tokenOwner, address operator)
        override
        public
        view
        returns (bool)
    {
        // Whitelist OpenSea proxy contract for easy trading.
        ProxyRegistry proxyRegistry = ProxyRegistry(proxyRegistryAddress);
        if (address(proxyRegistry.proxies(tokenOwner)) == operator) {
            return true;
        }

        return super.isApprovedForAll(tokenOwner, operator);
    }

    function supportsInterface(bytes4 interfaceId) public view virtual override(ERC721, ERC721Enumerable) returns (bool) {
        return super.supportsInterface(interfaceId);
    }

    /**
      * @dev Pauses all token transfers.
      */
    function pause() public virtual onlyOwner {
        _pause();
    }
    /**
      * @dev Unpauses all token transfers.
      */
    function unpause() public virtual onlyOwner {
        _unpause();
    }

    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual override(ERC721Enumerable, ERC721Pausable) {
        super._beforeTokenTransfer(from, to, tokenId);
    }

    /**
     * This is used instead of msg.sender as transactions won't be sent by the original token owner, but by OpenSea.
     */
    function _msgSender()
        internal
        override
        view
        returns (address sender)
    {
        return ContextMixin.msgSender();
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"address","name":"_proxyRegistryAddress","type":"address"},{"internalType":"string","name":"_URI","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"userAddress","type":"address"},{"indexed":false,"internalType":"address payable","name":"relayerAddress","type":"address"},{"indexed":false,"internalType":"bytes","name":"functionSignature","type":"bytes"}],"name":"MetaTransactionExecuted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","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"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[],"name":"ERC712_VERSION","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"ids","type":"uint256[]"}],"name":"burnBatch","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"userAddress","type":"address"},{"internalType":"bytes","name":"functionSignature","type":"bytes"},{"internalType":"bytes32","name":"sigR","type":"bytes32"},{"internalType":"bytes32","name":"sigS","type":"bytes32"},{"internalType":"uint8","name":"sigV","type":"uint8"}],"name":"executeMetaTransaction","outputs":[{"internalType":"bytes","name":"","type":"bytes"}],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getChainId","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getDomainSeperator","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"user","type":"address"}],"name":"getNonce","outputs":[{"internalType":"uint256","name":"nonce","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"tokenOwner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_batchCount","type":"uint256"}],"name":"mintSupplyByBatch","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newURI","type":"string"}],"name":"setURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60c0604052600a805461ff0019169055601960a0526000600e553480156200002657600080fd5b5060405162002e7838038062002e78833981016040819052620000499162000409565b83518490849062000062906000906020850190620002b0565b50805162000078906001906020840190620002b0565b5050600a805460ff19169055506200009962000093620000d6565b620000f2565b6001600160601b0319606083901b166080528051620000c090600f906020840190620002b0565b50620000cc8462000144565b505050506200050a565b6000620000ed620001af60201b6200142c1760201c565b905090565b600d80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600a54610100900460ff1615620001925760405162461bcd60e51b815260206004820152600e60248201526d185b1c9958591e481a5b9a5d195960921b604482015260640160405180910390fd5b6200019d816200020e565b50600a805461ff001916610100179055565b6000333014156200020857600080368080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152505050503601516001600160a01b031691506200020b9050565b50335b90565b6040518060800160405280604f815260200162002e29604f9139805160209182012082519282019290922060408051808201825260018152603160f81b90840152805180840194909452838101919091527fc89efdaa54c0f20c7adf612882df0950f5a951637e0307cdcb4c672f298b8bc660608401523060808401524660a0808501919091528151808503909101815260c090930190528151910120600b55565b828054620002be90620004b7565b90600052602060002090601f016020900481019282620002e257600085556200032d565b82601f10620002fd57805160ff19168380011785556200032d565b828001600101855582156200032d579182015b828111156200032d57825182559160200191906001019062000310565b506200033b9291506200033f565b5090565b5b808211156200033b576000815560010162000340565b600082601f83011262000367578081fd5b81516001600160401b0380821115620003845762000384620004f4565b604051601f8301601f19908116603f01168101908282118183101715620003af57620003af620004f4565b81604052838152602092508683858801011115620003cb578485fd5b8491505b83821015620003ee5785820183015181830184015290820190620003cf565b83821115620003ff57848385830101525b9695505050505050565b600080600080608085870312156200041f578384fd5b84516001600160401b038082111562000436578586fd5b620004448883890162000356565b955060208701519150808211156200045a578485fd5b620004688883890162000356565b604088015190955091506001600160a01b038216821462000487578384fd5b6060870151919350808211156200049c578283fd5b50620004ab8782880162000356565b91505092959194509250565b600181811c90821680620004cc57607f821691505b60208210811415620004ee57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b60805160601c60a0516128e16200054860003960008181610b5701528181610b8001528181610bb40152610be1015260006112a601526128e16000f3fe6080604052600436106101cd5760003560e01c806342842e0e116100f75780638da5cb5b11610095578063c87b56dd11610064578063c87b56dd1461050a578063e4623c1b1461052a578063e985e9c51461054a578063f2fde38b1461056a57600080fd5b80638da5cb5b1461049757806395d89b41146104b5578063a22cb465146104ca578063b88d4fde146104ea57600080fd5b80636352211e116100d15780636352211e1461042d57806370a082311461044d578063715018a61461046d5780638456cb591461048257600080fd5b806342842e0e146103d55780634f6ccce7146103f55780635c975abb1461041557600080fd5b806318160ddd1161016f5780632f745c591161013e5780632f745c591461036d5780633408e4701461038d5780633428aec8146103a05780633f4ba83a146103c057600080fd5b806318160ddd146102e357806320379ee51461030257806323b872dd146103175780632d0335ab1461033757600080fd5b8063081812fc116101ab578063081812fc1461024b578063095ea7b3146102835780630c53c51c146102a35780630f7e5970146102b657600080fd5b806301ffc9a7146101d257806302fe53051461020757806306fdde0314610229575b600080fd5b3480156101de57600080fd5b506101f26101ed3660046124d2565b61058a565b60405190151581526020015b60405180910390f35b34801561021357600080fd5b50610227610222366004612526565b61059b565b005b34801561023557600080fd5b5061023e610604565b6040516101fe9190612675565b34801561025757600080fd5b5061026b61026636600461256c565b610696565b6040516001600160a01b0390911681526020016101fe565b34801561028f57600080fd5b5061022761029e366004612437565b61072b565b61023e6102b13660046123bc565b610853565b3480156102c257600080fd5b5061023e604051806040016040528060018152602001603160f81b81525081565b3480156102ef57600080fd5b506008545b6040519081526020016101fe565b34801561030e57600080fd5b50600b546102f4565b34801561032357600080fd5b506102276103323660046122e1565b610a3d565b34801561034357600080fd5b506102f461035236600461228d565b6001600160a01b03166000908152600c602052604090205490565b34801561037957600080fd5b506102f4610388366004612437565b610a75565b34801561039957600080fd5b50466102f4565b3480156103ac57600080fd5b506102276103bb366004612437565b610b0b565b3480156103cc57600080fd5b50610227610cbe565b3480156103e157600080fd5b506102276103f03660046122e1565b610d11565b34801561040157600080fd5b506102f461041036600461256c565b610d2c565b34801561042157600080fd5b50600a5460ff166101f2565b34801561043957600080fd5b5061026b61044836600461256c565b610dcd565b34801561045957600080fd5b506102f461046836600461228d565b610e44565b34801561047957600080fd5b50610227610ecb565b34801561048e57600080fd5b50610227610f1e565b3480156104a357600080fd5b50600d546001600160a01b031661026b565b3480156104c157600080fd5b5061023e610f6f565b3480156104d657600080fd5b506102276104e536600461238b565b610f7e565b3480156104f657600080fd5b50610227610505366004612321565b611080565b34801561051657600080fd5b5061023e61052536600461256c565b6110bf565b34801561053657600080fd5b50610227610545366004612462565b611153565b34801561055657600080fd5b506101f26105653660046122a9565b611284565b34801561057657600080fd5b5061022761058536600461228d565b611372565b600061059582611489565b92915050565b6105a36114ae565b6001600160a01b03166105be600d546001600160a01b031690565b6001600160a01b0316146105ed5760405162461bcd60e51b81526004016105e4906126da565b60405180910390fd5b805161060090600f90602084019061215f565b5050565b606060008054610613906127bb565b80601f016020809104026020016040519081016040528092919081815260200182805461063f906127bb565b801561068c5780601f106106615761010080835404028352916020019161068c565b820191906000526020600020905b81548152906001019060200180831161066f57829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b031661070f5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016105e4565b506000908152600460205260409020546001600160a01b031690565b600061073682610dcd565b9050806001600160a01b0316836001600160a01b031614156107a45760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016105e4565b806001600160a01b03166107b66114ae565b6001600160a01b031614806107d257506107d2816105656114ae565b6108445760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016105e4565b61084e83836114bd565b505050565b60408051606081810183526001600160a01b0388166000818152600c602090815290859020548452830152918101869052610891878287878761152b565b6108e75760405162461bcd60e51b815260206004820152602160248201527f5369676e657220616e64207369676e617475726520646f206e6f74206d6174636044820152600d60fb1b60648201526084016105e4565b6001600160a01b0387166000908152600c602052604090205461090b90600161161b565b6001600160a01b0388166000908152600c60205260409081902091909155517f5845892132946850460bff5a0083f71031bc5bf9aadcd40f1de79423eac9b10b9061095b90899033908a90612603565b60405180910390a1600080306001600160a01b0316888a6040516020016109839291906125cc565b60408051601f198184030181529082905261099d916125b0565b6000604051808303816000865af19150503d80600081146109da576040519150601f19603f3d011682016040523d82523d6000602084013e6109df565b606091505b509150915081610a315760405162461bcd60e51b815260206004820152601c60248201527f46756e6374696f6e2063616c6c206e6f74207375636365737366756c0000000060448201526064016105e4565b98975050505050505050565b610a4e610a486114ae565b8261162e565b610a6a5760405162461bcd60e51b81526004016105e49061270f565b61084e8383836116fd565b6000610a8083610e44565b8210610ae25760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b60648201526084016105e4565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b610b136114ae565b6001600160a01b0316610b2e600d546001600160a01b031690565b6001600160a01b031614610b545760405162461bcd60e51b81526004016105e4906126da565b807f0000000000000000000000000000000000000000000000000000000000000000811115610ba057507f00000000000000000000000000000000000000000000000000000000000000005b600081600e54610bb09190612760565b90507f0000000000000000000000000000000000000000000000000000000000000000811115610c16576000610c067f000000000000000000000000000000000000000000000000000000000000000083612778565b9050610c128184612778565b9250505b60008211610c7b5760405162461bcd60e51b815260206004820152602c60248201527f4675747572654172744469616d6f6e645061737365733a206e6f206d6f72652060448201526b1b999d1cc81d1bc81b5a5b9d60a21b60648201526084016105e4565b60005b82811015610cb7576000610c906118a8565b9050610c9c86826118b9565b610ca4611a07565b5080610caf816127f6565b915050610c7e565b5050505050565b610cc66114ae565b6001600160a01b0316610ce1600d546001600160a01b031690565b6001600160a01b031614610d075760405162461bcd60e51b81526004016105e4906126da565b610d0f611a1e565b565b61084e83838360405180602001604052806000815250611080565b6000610d3760085490565b8210610d9a5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b60648201526084016105e4565b60088281548110610dbb57634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050919050565b6000818152600260205260408120546001600160a01b0316806105955760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016105e4565b60006001600160a01b038216610eaf5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016105e4565b506001600160a01b031660009081526003602052604090205490565b610ed36114ae565b6001600160a01b0316610eee600d546001600160a01b031690565b6001600160a01b031614610f145760405162461bcd60e51b81526004016105e4906126da565b610d0f6000611ab7565b610f266114ae565b6001600160a01b0316610f41600d546001600160a01b031690565b6001600160a01b031614610f675760405162461bcd60e51b81526004016105e4906126da565b610d0f611b09565b606060018054610613906127bb565b610f866114ae565b6001600160a01b0316826001600160a01b03161415610fe75760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016105e4565b8060056000610ff46114ae565b6001600160a01b03908116825260208083019390935260409182016000908120918716808252919093529120805460ff1916921515929092179091556110386114ae565b6001600160a01b03167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611074911515815260200190565b60405180910390a35050565b61109161108b6114ae565b8361162e565b6110ad5760405162461bcd60e51b81526004016105e49061270f565b6110b984848484611b85565b50505050565b6060600f80546110ce906127bb565b80601f01602080910402602001604051908101604052809291908181526020018280546110fa906127bb565b80156111475780601f1061111c57610100808354040283529160200191611147565b820191906000526020600020905b81548152906001019060200180831161112a57829003601f168201915b50505050509050919050565b61115b6114ae565b6001600160a01b0316611176600d546001600160a01b031690565b6001600160a01b03161461119c5760405162461bcd60e51b81526004016105e4906126da565b60005b8181101561084e576111de6111b26114ae565b8484848181106111d257634e487b7160e01b600052603260045260246000fd5b9050602002013561162e565b6112435760405162461bcd60e51b815260206004820152603060248201527f4552433732314275726e61626c653a2063616c6c6572206973206e6f74206f7760448201526f1b995c881b9bdc88185c1c1c9bdd995960821b60648201526084016105e4565b61127283838381811061126657634e487b7160e01b600052603260045260246000fd5b90506020020135611bb8565b8061127c816127f6565b91505061119f565b60405163c455279160e01b81526001600160a01b0383811660048301526000917f000000000000000000000000000000000000000000000000000000000000000091848116919083169063c45527919060240160206040518083038186803b1580156112ef57600080fd5b505afa158015611303573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611327919061250a565b6001600160a01b03161415611340576001915050610595565b6001600160a01b0380851660009081526005602090815260408083209387168352929052205460ff165b949350505050565b61137a6114ae565b6001600160a01b0316611395600d546001600160a01b031690565b6001600160a01b0316146113bb5760405162461bcd60e51b81526004016105e4906126da565b6001600160a01b0381166114205760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016105e4565b61142981611ab7565b50565b60003330141561148357600080368080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152505050503601516001600160a01b031691506114869050565b50335b90565b60006001600160e01b0319821663780e9d6360e01b1480610595575061059582611c5f565b60006114b861142c565b905090565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906114f282610dcd565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006001600160a01b0386166115915760405162461bcd60e51b815260206004820152602560248201527f4e61746976654d6574615472616e73616374696f6e3a20494e56414c49445f5360448201526424a3a722a960d91b60648201526084016105e4565b60016115a461159f87611caf565b611d2c565b6040805160008152602081018083529290925260ff851690820152606081018690526080810185905260a0016020604051602081039080840390855afa1580156115f2573d6000803e3d6000fd5b505050602060405103516001600160a01b0316866001600160a01b031614905095945050505050565b60006116278284612760565b9392505050565b6000818152600260205260408120546001600160a01b03166116a75760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016105e4565b60006116b283610dcd565b9050806001600160a01b0316846001600160a01b031614806116ed5750836001600160a01b03166116e284610696565b6001600160a01b0316145b8061136a575061136a8185611284565b826001600160a01b031661171082610dcd565b6001600160a01b0316146117785760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b60648201526084016105e4565b6001600160a01b0382166117da5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016105e4565b6117e5838383611d5c565b6117f06000826114bd565b6001600160a01b0383166000908152600360205260408120805460019290611819908490612778565b90915550506001600160a01b0382166000908152600360205260408120805460019290611847908490612760565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600e546000906114b890600161161b565b6001600160a01b03821661190f5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016105e4565b6000818152600260205260409020546001600160a01b0316156119745760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016105e4565b61198060008383611d5c565b6001600160a01b03821660009081526003602052604081208054600192906119a9908490612760565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b600e8054906000611a17836127f6565b9190505550565b600a5460ff16611a675760405162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b60448201526064016105e4565b600a805460ff191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa611a9a6114ae565b6040516001600160a01b03909116815260200160405180910390a1565b600d80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600a5460ff1615611b4f5760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b60448201526064016105e4565b600a805460ff191660011790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258611a9a6114ae565b611b908484846116fd565b611b9c84848484611d67565b6110b95760405162461bcd60e51b81526004016105e490612688565b6000611bc382610dcd565b9050611bd181600084611d5c565b611bdc6000836114bd565b6001600160a01b0381166000908152600360205260408120805460019290611c05908490612778565b909155505060008281526002602052604080822080546001600160a01b0319169055518391906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b60006001600160e01b031982166380ac58cd60e01b1480611c9057506001600160e01b03198216635b5e139f60e01b145b8061059557506301ffc9a760e01b6001600160e01b0319831614610595565b60006040518060800160405280604381526020016128696043913980516020918201208351848301516040808701518051908601209051611d0f950193845260208401929092526001600160a01b03166040830152606082015260800190565b604051602081830303815290604052805190602001209050919050565b6000611d37600b5490565b60405161190160f01b6020820152602281019190915260428101839052606201611d0f565b61084e838383611e7b565b60006001600160a01b0384163b15611e7057836001600160a01b031663150b7a02611d906114ae565b8786866040518563ffffffff1660e01b8152600401611db29493929190612638565b602060405180830381600087803b158015611dcc57600080fd5b505af1925050508015611dfc575060408051601f3d908101601f19168201909252611df9918101906124ee565b60015b611e56573d808015611e2a576040519150601f19603f3d011682016040523d82523d6000602084013e611e2f565b606091505b508051611e4e5760405162461bcd60e51b81526004016105e490612688565b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905061136a565b506001949350505050565b611e86838383611eed565b600a5460ff161561084e5760405162461bcd60e51b815260206004820152602b60248201527f4552433732315061757361626c653a20746f6b656e207472616e73666572207760448201526a1a1a5b19481c185d5cd95960aa1b60648201526084016105e4565b6001600160a01b038316611f4857611f4381600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b611f6b565b816001600160a01b0316836001600160a01b031614611f6b57611f6b8382611fa5565b6001600160a01b038216611f825761084e81612042565b826001600160a01b0316826001600160a01b03161461084e5761084e828261211b565b60006001611fb284610e44565b611fbc9190612778565b60008381526007602052604090205490915080821461200f576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b60085460009061205490600190612778565b6000838152600960205260408120546008805493945090928490811061208a57634e487b7160e01b600052603260045260246000fd5b9060005260206000200154905080600883815481106120b957634e487b7160e01b600052603260045260246000fd5b60009182526020808320909101929092558281526009909152604080822084905585825281205560088054806120ff57634e487b7160e01b600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b600061212683610e44565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b82805461216b906127bb565b90600052602060002090601f01602090048101928261218d57600085556121d3565b82601f106121a657805160ff19168380011785556121d3565b828001600101855582156121d3579182015b828111156121d35782518255916020019190600101906121b8565b506121df9291506121e3565b5090565b5b808211156121df57600081556001016121e4565b600067ffffffffffffffff8084111561221357612213612827565b604051601f8501601f19908116603f0116810190828211818310171561223b5761223b612827565b8160405280935085815286868601111561225457600080fd5b858560208301376000602087830101525050509392505050565b600082601f83011261227e578081fd5b611627838335602085016121f8565b60006020828403121561229e578081fd5b81356116278161283d565b600080604083850312156122bb578081fd5b82356122c68161283d565b915060208301356122d68161283d565b809150509250929050565b6000806000606084860312156122f5578081fd5b83356123008161283d565b925060208401356123108161283d565b929592945050506040919091013590565b60008060008060808587031215612336578081fd5b84356123418161283d565b935060208501356123518161283d565b925060408501359150606085013567ffffffffffffffff811115612373578182fd5b61237f8782880161226e565b91505092959194509250565b6000806040838503121561239d578182fd5b82356123a88161283d565b9150602083013580151581146122d6578182fd5b600080600080600060a086880312156123d3578081fd5b85356123de8161283d565b9450602086013567ffffffffffffffff8111156123f9578182fd5b6124058882890161226e565b9450506040860135925060608601359150608086013560ff81168114612429578182fd5b809150509295509295909350565b60008060408385031215612449578182fd5b82356124548161283d565b946020939093013593505050565b60008060208385031215612474578182fd5b823567ffffffffffffffff8082111561248b578384fd5b818501915085601f83011261249e578384fd5b8135818111156124ac578485fd5b8660208260051b85010111156124c0578485fd5b60209290920196919550909350505050565b6000602082840312156124e3578081fd5b813561162781612852565b6000602082840312156124ff578081fd5b815161162781612852565b60006020828403121561251b578081fd5b81516116278161283d565b600060208284031215612537578081fd5b813567ffffffffffffffff81111561254d578182fd5b8201601f8101841361255d578182fd5b61136a848235602084016121f8565b60006020828403121561257d578081fd5b5035919050565b6000815180845261259c81602086016020860161278f565b601f01601f19169290920160200192915050565b600082516125c281846020870161278f565b9190910192915050565b600083516125de81846020880161278f565b60609390931b6bffffffffffffffffffffffff19169190920190815260140192915050565b6001600160a01b0384811682528316602082015260606040820181905260009061262f90830184612584565b95945050505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061266b90830184612584565b9695505050505050565b6020815260006116276020830184612584565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6000821982111561277357612773612811565b500190565b60008282101561278a5761278a612811565b500390565b60005b838110156127aa578181015183820152602001612792565b838111156110b95750506000910152565b600181811c908216806127cf57607f821691505b602082108114156127f057634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561280a5761280a612811565b5060010190565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b038116811461142957600080fd5b6001600160e01b03198116811461142957600080fdfe4d6574615472616e73616374696f6e2875696e74323536206e6f6e63652c616464726573732066726f6d2c62797465732066756e6374696f6e5369676e617475726529a2646970667358221220fa06f217632704d696f4462a05ecef07bca70648daa41577d0985cdf20ccde9564736f6c63430008040033454950373132446f6d61696e28737472696e67206e616d652c737472696e672076657273696f6e2c6164647265737320766572696679696e67436f6e74726163742c627974657333322073616c7429000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000a5409ec958c83c3f309868babaca7c86dcb077c100000000000000000000000000000000000000000000000000000000000001200000000000000000000000000000000000000000000000000000000000000026467574757265204172742041636365737320416c6c20417274204469616d6f6e642050617373000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000054141414450000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005468747470733a2f2f6675747572656172742e6d7970696e6174612e636c6f75642f697066732f516d5546597a59416d796e3379326a6a68646978616d5069316170396a37444b52626b6642336973374353733578000000000000000000000000

Deployed Bytecode

0x6080604052600436106101cd5760003560e01c806342842e0e116100f75780638da5cb5b11610095578063c87b56dd11610064578063c87b56dd1461050a578063e4623c1b1461052a578063e985e9c51461054a578063f2fde38b1461056a57600080fd5b80638da5cb5b1461049757806395d89b41146104b5578063a22cb465146104ca578063b88d4fde146104ea57600080fd5b80636352211e116100d15780636352211e1461042d57806370a082311461044d578063715018a61461046d5780638456cb591461048257600080fd5b806342842e0e146103d55780634f6ccce7146103f55780635c975abb1461041557600080fd5b806318160ddd1161016f5780632f745c591161013e5780632f745c591461036d5780633408e4701461038d5780633428aec8146103a05780633f4ba83a146103c057600080fd5b806318160ddd146102e357806320379ee51461030257806323b872dd146103175780632d0335ab1461033757600080fd5b8063081812fc116101ab578063081812fc1461024b578063095ea7b3146102835780630c53c51c146102a35780630f7e5970146102b657600080fd5b806301ffc9a7146101d257806302fe53051461020757806306fdde0314610229575b600080fd5b3480156101de57600080fd5b506101f26101ed3660046124d2565b61058a565b60405190151581526020015b60405180910390f35b34801561021357600080fd5b50610227610222366004612526565b61059b565b005b34801561023557600080fd5b5061023e610604565b6040516101fe9190612675565b34801561025757600080fd5b5061026b61026636600461256c565b610696565b6040516001600160a01b0390911681526020016101fe565b34801561028f57600080fd5b5061022761029e366004612437565b61072b565b61023e6102b13660046123bc565b610853565b3480156102c257600080fd5b5061023e604051806040016040528060018152602001603160f81b81525081565b3480156102ef57600080fd5b506008545b6040519081526020016101fe565b34801561030e57600080fd5b50600b546102f4565b34801561032357600080fd5b506102276103323660046122e1565b610a3d565b34801561034357600080fd5b506102f461035236600461228d565b6001600160a01b03166000908152600c602052604090205490565b34801561037957600080fd5b506102f4610388366004612437565b610a75565b34801561039957600080fd5b50466102f4565b3480156103ac57600080fd5b506102276103bb366004612437565b610b0b565b3480156103cc57600080fd5b50610227610cbe565b3480156103e157600080fd5b506102276103f03660046122e1565b610d11565b34801561040157600080fd5b506102f461041036600461256c565b610d2c565b34801561042157600080fd5b50600a5460ff166101f2565b34801561043957600080fd5b5061026b61044836600461256c565b610dcd565b34801561045957600080fd5b506102f461046836600461228d565b610e44565b34801561047957600080fd5b50610227610ecb565b34801561048e57600080fd5b50610227610f1e565b3480156104a357600080fd5b50600d546001600160a01b031661026b565b3480156104c157600080fd5b5061023e610f6f565b3480156104d657600080fd5b506102276104e536600461238b565b610f7e565b3480156104f657600080fd5b50610227610505366004612321565b611080565b34801561051657600080fd5b5061023e61052536600461256c565b6110bf565b34801561053657600080fd5b50610227610545366004612462565b611153565b34801561055657600080fd5b506101f26105653660046122a9565b611284565b34801561057657600080fd5b5061022761058536600461228d565b611372565b600061059582611489565b92915050565b6105a36114ae565b6001600160a01b03166105be600d546001600160a01b031690565b6001600160a01b0316146105ed5760405162461bcd60e51b81526004016105e4906126da565b60405180910390fd5b805161060090600f90602084019061215f565b5050565b606060008054610613906127bb565b80601f016020809104026020016040519081016040528092919081815260200182805461063f906127bb565b801561068c5780601f106106615761010080835404028352916020019161068c565b820191906000526020600020905b81548152906001019060200180831161066f57829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b031661070f5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016105e4565b506000908152600460205260409020546001600160a01b031690565b600061073682610dcd565b9050806001600160a01b0316836001600160a01b031614156107a45760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016105e4565b806001600160a01b03166107b66114ae565b6001600160a01b031614806107d257506107d2816105656114ae565b6108445760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016105e4565b61084e83836114bd565b505050565b60408051606081810183526001600160a01b0388166000818152600c602090815290859020548452830152918101869052610891878287878761152b565b6108e75760405162461bcd60e51b815260206004820152602160248201527f5369676e657220616e64207369676e617475726520646f206e6f74206d6174636044820152600d60fb1b60648201526084016105e4565b6001600160a01b0387166000908152600c602052604090205461090b90600161161b565b6001600160a01b0388166000908152600c60205260409081902091909155517f5845892132946850460bff5a0083f71031bc5bf9aadcd40f1de79423eac9b10b9061095b90899033908a90612603565b60405180910390a1600080306001600160a01b0316888a6040516020016109839291906125cc565b60408051601f198184030181529082905261099d916125b0565b6000604051808303816000865af19150503d80600081146109da576040519150601f19603f3d011682016040523d82523d6000602084013e6109df565b606091505b509150915081610a315760405162461bcd60e51b815260206004820152601c60248201527f46756e6374696f6e2063616c6c206e6f74207375636365737366756c0000000060448201526064016105e4565b98975050505050505050565b610a4e610a486114ae565b8261162e565b610a6a5760405162461bcd60e51b81526004016105e49061270f565b61084e8383836116fd565b6000610a8083610e44565b8210610ae25760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b60648201526084016105e4565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b610b136114ae565b6001600160a01b0316610b2e600d546001600160a01b031690565b6001600160a01b031614610b545760405162461bcd60e51b81526004016105e4906126da565b807f0000000000000000000000000000000000000000000000000000000000000019811115610ba057507f00000000000000000000000000000000000000000000000000000000000000195b600081600e54610bb09190612760565b90507f0000000000000000000000000000000000000000000000000000000000000019811115610c16576000610c067f000000000000000000000000000000000000000000000000000000000000001983612778565b9050610c128184612778565b9250505b60008211610c7b5760405162461bcd60e51b815260206004820152602c60248201527f4675747572654172744469616d6f6e645061737365733a206e6f206d6f72652060448201526b1b999d1cc81d1bc81b5a5b9d60a21b60648201526084016105e4565b60005b82811015610cb7576000610c906118a8565b9050610c9c86826118b9565b610ca4611a07565b5080610caf816127f6565b915050610c7e565b5050505050565b610cc66114ae565b6001600160a01b0316610ce1600d546001600160a01b031690565b6001600160a01b031614610d075760405162461bcd60e51b81526004016105e4906126da565b610d0f611a1e565b565b61084e83838360405180602001604052806000815250611080565b6000610d3760085490565b8210610d9a5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b60648201526084016105e4565b60088281548110610dbb57634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050919050565b6000818152600260205260408120546001600160a01b0316806105955760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016105e4565b60006001600160a01b038216610eaf5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016105e4565b506001600160a01b031660009081526003602052604090205490565b610ed36114ae565b6001600160a01b0316610eee600d546001600160a01b031690565b6001600160a01b031614610f145760405162461bcd60e51b81526004016105e4906126da565b610d0f6000611ab7565b610f266114ae565b6001600160a01b0316610f41600d546001600160a01b031690565b6001600160a01b031614610f675760405162461bcd60e51b81526004016105e4906126da565b610d0f611b09565b606060018054610613906127bb565b610f866114ae565b6001600160a01b0316826001600160a01b03161415610fe75760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016105e4565b8060056000610ff46114ae565b6001600160a01b03908116825260208083019390935260409182016000908120918716808252919093529120805460ff1916921515929092179091556110386114ae565b6001600160a01b03167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611074911515815260200190565b60405180910390a35050565b61109161108b6114ae565b8361162e565b6110ad5760405162461bcd60e51b81526004016105e49061270f565b6110b984848484611b85565b50505050565b6060600f80546110ce906127bb565b80601f01602080910402602001604051908101604052809291908181526020018280546110fa906127bb565b80156111475780601f1061111c57610100808354040283529160200191611147565b820191906000526020600020905b81548152906001019060200180831161112a57829003601f168201915b50505050509050919050565b61115b6114ae565b6001600160a01b0316611176600d546001600160a01b031690565b6001600160a01b03161461119c5760405162461bcd60e51b81526004016105e4906126da565b60005b8181101561084e576111de6111b26114ae565b8484848181106111d257634e487b7160e01b600052603260045260246000fd5b9050602002013561162e565b6112435760405162461bcd60e51b815260206004820152603060248201527f4552433732314275726e61626c653a2063616c6c6572206973206e6f74206f7760448201526f1b995c881b9bdc88185c1c1c9bdd995960821b60648201526084016105e4565b61127283838381811061126657634e487b7160e01b600052603260045260246000fd5b90506020020135611bb8565b8061127c816127f6565b91505061119f565b60405163c455279160e01b81526001600160a01b0383811660048301526000917f000000000000000000000000a5409ec958c83c3f309868babaca7c86dcb077c191848116919083169063c45527919060240160206040518083038186803b1580156112ef57600080fd5b505afa158015611303573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611327919061250a565b6001600160a01b03161415611340576001915050610595565b6001600160a01b0380851660009081526005602090815260408083209387168352929052205460ff165b949350505050565b61137a6114ae565b6001600160a01b0316611395600d546001600160a01b031690565b6001600160a01b0316146113bb5760405162461bcd60e51b81526004016105e4906126da565b6001600160a01b0381166114205760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016105e4565b61142981611ab7565b50565b60003330141561148357600080368080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152505050503601516001600160a01b031691506114869050565b50335b90565b60006001600160e01b0319821663780e9d6360e01b1480610595575061059582611c5f565b60006114b861142c565b905090565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906114f282610dcd565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006001600160a01b0386166115915760405162461bcd60e51b815260206004820152602560248201527f4e61746976654d6574615472616e73616374696f6e3a20494e56414c49445f5360448201526424a3a722a960d91b60648201526084016105e4565b60016115a461159f87611caf565b611d2c565b6040805160008152602081018083529290925260ff851690820152606081018690526080810185905260a0016020604051602081039080840390855afa1580156115f2573d6000803e3d6000fd5b505050602060405103516001600160a01b0316866001600160a01b031614905095945050505050565b60006116278284612760565b9392505050565b6000818152600260205260408120546001600160a01b03166116a75760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016105e4565b60006116b283610dcd565b9050806001600160a01b0316846001600160a01b031614806116ed5750836001600160a01b03166116e284610696565b6001600160a01b0316145b8061136a575061136a8185611284565b826001600160a01b031661171082610dcd565b6001600160a01b0316146117785760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b60648201526084016105e4565b6001600160a01b0382166117da5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016105e4565b6117e5838383611d5c565b6117f06000826114bd565b6001600160a01b0383166000908152600360205260408120805460019290611819908490612778565b90915550506001600160a01b0382166000908152600360205260408120805460019290611847908490612760565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600e546000906114b890600161161b565b6001600160a01b03821661190f5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016105e4565b6000818152600260205260409020546001600160a01b0316156119745760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016105e4565b61198060008383611d5c565b6001600160a01b03821660009081526003602052604081208054600192906119a9908490612760565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b600e8054906000611a17836127f6565b9190505550565b600a5460ff16611a675760405162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b60448201526064016105e4565b600a805460ff191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa611a9a6114ae565b6040516001600160a01b03909116815260200160405180910390a1565b600d80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600a5460ff1615611b4f5760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b60448201526064016105e4565b600a805460ff191660011790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258611a9a6114ae565b611b908484846116fd565b611b9c84848484611d67565b6110b95760405162461bcd60e51b81526004016105e490612688565b6000611bc382610dcd565b9050611bd181600084611d5c565b611bdc6000836114bd565b6001600160a01b0381166000908152600360205260408120805460019290611c05908490612778565b909155505060008281526002602052604080822080546001600160a01b0319169055518391906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b60006001600160e01b031982166380ac58cd60e01b1480611c9057506001600160e01b03198216635b5e139f60e01b145b8061059557506301ffc9a760e01b6001600160e01b0319831614610595565b60006040518060800160405280604381526020016128696043913980516020918201208351848301516040808701518051908601209051611d0f950193845260208401929092526001600160a01b03166040830152606082015260800190565b604051602081830303815290604052805190602001209050919050565b6000611d37600b5490565b60405161190160f01b6020820152602281019190915260428101839052606201611d0f565b61084e838383611e7b565b60006001600160a01b0384163b15611e7057836001600160a01b031663150b7a02611d906114ae565b8786866040518563ffffffff1660e01b8152600401611db29493929190612638565b602060405180830381600087803b158015611dcc57600080fd5b505af1925050508015611dfc575060408051601f3d908101601f19168201909252611df9918101906124ee565b60015b611e56573d808015611e2a576040519150601f19603f3d011682016040523d82523d6000602084013e611e2f565b606091505b508051611e4e5760405162461bcd60e51b81526004016105e490612688565b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905061136a565b506001949350505050565b611e86838383611eed565b600a5460ff161561084e5760405162461bcd60e51b815260206004820152602b60248201527f4552433732315061757361626c653a20746f6b656e207472616e73666572207760448201526a1a1a5b19481c185d5cd95960aa1b60648201526084016105e4565b6001600160a01b038316611f4857611f4381600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b611f6b565b816001600160a01b0316836001600160a01b031614611f6b57611f6b8382611fa5565b6001600160a01b038216611f825761084e81612042565b826001600160a01b0316826001600160a01b03161461084e5761084e828261211b565b60006001611fb284610e44565b611fbc9190612778565b60008381526007602052604090205490915080821461200f576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b60085460009061205490600190612778565b6000838152600960205260408120546008805493945090928490811061208a57634e487b7160e01b600052603260045260246000fd5b9060005260206000200154905080600883815481106120b957634e487b7160e01b600052603260045260246000fd5b60009182526020808320909101929092558281526009909152604080822084905585825281205560088054806120ff57634e487b7160e01b600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b600061212683610e44565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b82805461216b906127bb565b90600052602060002090601f01602090048101928261218d57600085556121d3565b82601f106121a657805160ff19168380011785556121d3565b828001600101855582156121d3579182015b828111156121d35782518255916020019190600101906121b8565b506121df9291506121e3565b5090565b5b808211156121df57600081556001016121e4565b600067ffffffffffffffff8084111561221357612213612827565b604051601f8501601f19908116603f0116810190828211818310171561223b5761223b612827565b8160405280935085815286868601111561225457600080fd5b858560208301376000602087830101525050509392505050565b600082601f83011261227e578081fd5b611627838335602085016121f8565b60006020828403121561229e578081fd5b81356116278161283d565b600080604083850312156122bb578081fd5b82356122c68161283d565b915060208301356122d68161283d565b809150509250929050565b6000806000606084860312156122f5578081fd5b83356123008161283d565b925060208401356123108161283d565b929592945050506040919091013590565b60008060008060808587031215612336578081fd5b84356123418161283d565b935060208501356123518161283d565b925060408501359150606085013567ffffffffffffffff811115612373578182fd5b61237f8782880161226e565b91505092959194509250565b6000806040838503121561239d578182fd5b82356123a88161283d565b9150602083013580151581146122d6578182fd5b600080600080600060a086880312156123d3578081fd5b85356123de8161283d565b9450602086013567ffffffffffffffff8111156123f9578182fd5b6124058882890161226e565b9450506040860135925060608601359150608086013560ff81168114612429578182fd5b809150509295509295909350565b60008060408385031215612449578182fd5b82356124548161283d565b946020939093013593505050565b60008060208385031215612474578182fd5b823567ffffffffffffffff8082111561248b578384fd5b818501915085601f83011261249e578384fd5b8135818111156124ac578485fd5b8660208260051b85010111156124c0578485fd5b60209290920196919550909350505050565b6000602082840312156124e3578081fd5b813561162781612852565b6000602082840312156124ff578081fd5b815161162781612852565b60006020828403121561251b578081fd5b81516116278161283d565b600060208284031215612537578081fd5b813567ffffffffffffffff81111561254d578182fd5b8201601f8101841361255d578182fd5b61136a848235602084016121f8565b60006020828403121561257d578081fd5b5035919050565b6000815180845261259c81602086016020860161278f565b601f01601f19169290920160200192915050565b600082516125c281846020870161278f565b9190910192915050565b600083516125de81846020880161278f565b60609390931b6bffffffffffffffffffffffff19169190920190815260140192915050565b6001600160a01b0384811682528316602082015260606040820181905260009061262f90830184612584565b95945050505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061266b90830184612584565b9695505050505050565b6020815260006116276020830184612584565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6000821982111561277357612773612811565b500190565b60008282101561278a5761278a612811565b500390565b60005b838110156127aa578181015183820152602001612792565b838111156110b95750506000910152565b600181811c908216806127cf57607f821691505b602082108114156127f057634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561280a5761280a612811565b5060010190565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b038116811461142957600080fd5b6001600160e01b03198116811461142957600080fdfe4d6574615472616e73616374696f6e2875696e74323536206e6f6e63652c616464726573732066726f6d2c62797465732066756e6374696f6e5369676e617475726529a2646970667358221220fa06f217632704d696f4462a05ecef07bca70648daa41577d0985cdf20ccde9564736f6c63430008040033

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

000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000a5409ec958c83c3f309868babaca7c86dcb077c100000000000000000000000000000000000000000000000000000000000001200000000000000000000000000000000000000000000000000000000000000026467574757265204172742041636365737320416c6c20417274204469616d6f6e642050617373000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000054141414450000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005468747470733a2f2f6675747572656172742e6d7970696e6174612e636c6f75642f697066732f516d5546597a59416d796e3379326a6a68646978616d5069316170396a37444b52626b6642336973374353733578000000000000000000000000

-----Decoded View---------------
Arg [0] : _name (string): Future Art Access All Art Diamond Pass
Arg [1] : _symbol (string): AAADP
Arg [2] : _proxyRegistryAddress (address): 0xa5409ec958C83C3f309868babACA7c86DCB077c1
Arg [3] : _URI (string): https://futureart.mypinata.cloud/ipfs/QmUFYzYAmyn3y2jjhdixamPi1ap9j7DKRbkfB3is7CSs5x

-----Encoded View---------------
13 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [2] : 000000000000000000000000a5409ec958c83c3f309868babaca7c86dcb077c1
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000120
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000026
Arg [5] : 467574757265204172742041636365737320416c6c20417274204469616d6f6e
Arg [6] : 6420506173730000000000000000000000000000000000000000000000000000
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000005
Arg [8] : 4141414450000000000000000000000000000000000000000000000000000000
Arg [9] : 0000000000000000000000000000000000000000000000000000000000000054
Arg [10] : 68747470733a2f2f6675747572656172742e6d7970696e6174612e636c6f7564
Arg [11] : 2f697066732f516d5546597a59416d796e3379326a6a68646978616d50693161
Arg [12] : 70396a37444b52626b6642336973374353733578000000000000000000000000


Deployed Bytecode Sourcemap

58140:4363:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;61497:179;;;;;;;;;;-1:-1:-1;61497:179:0;;;;;:::i;:::-;;:::i;:::-;;;9102:14:1;;9095:22;9077:41;;9065:2;9050:18;61497:179:0;;;;;;;;60808:89;;;;;;;;;;-1:-1:-1;60808:89:0;;;;;:::i;:::-;;:::i;:::-;;20826:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;22385:221::-;;;;;;;;;;-1:-1:-1;22385:221:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;7964:32:1;;;7946:51;;7934:2;7919:18;22385:221:0;7901:102:1;21908:411:0;;;;;;;;;;-1:-1:-1;21908:411:0;;;;;:::i;:::-;;:::i;55665:1151::-;;;;;;:::i;:::-;;:::i;52925:43::-;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;52925:43:0;;;;;37290:113;;;;;;;;;;-1:-1:-1;37378:10:0;:17;37290:113;;;9275:25:1;;;9263:2;9248:18;37290:113:0;9230:76:1;53934:101:0;;;;;;;;;;-1:-1:-1;54012:15:0;;53934:101;;23275:339;;;;;;;;;;-1:-1:-1;23275:339:0;;;;;:::i;:::-;;:::i;57242:107::-;;;;;;;;;;-1:-1:-1;57242:107:0;;;;;:::i;:::-;-1:-1:-1;;;;;57329:12:0;57295:13;57329:12;;;:6;:12;;;;;;;57242:107;36958:256;;;;;;;;;;-1:-1:-1;36958:256:0;;;;;:::i;:::-;;:::i;54043:161::-;;;;;;;;;;-1:-1:-1;54157:9:0;54043:161;;58976:774;;;;;;;;;;-1:-1:-1;58976:774:0;;;;;:::i;:::-;;:::i;61883:73::-;;;;;;;;;;;;;:::i;23685:185::-;;;;;;;;;;-1:-1:-1;23685:185:0;;;;;:::i;:::-;;:::i;37480:233::-;;;;;;;;;;-1:-1:-1;37480:233:0;;;;;:::i;:::-;;:::i;32992:86::-;;;;;;;;;;-1:-1:-1;33063:7:0;;;;32992:86;;20520:239;;;;;;;;;;-1:-1:-1;20520:239:0;;;;;:::i;:::-;;:::i;20250:208::-;;;;;;;;;;-1:-1:-1;20250:208:0;;;;;:::i;:::-;;:::i;44364:94::-;;;;;;;;;;;;;:::i;61745:69::-;;;;;;;;;;;;;:::i;43713:87::-;;;;;;;;;;-1:-1:-1;43786:6:0;;-1:-1:-1;;;;;43786:6:0;43713:87;;20995:104;;;;;;;;;;;;;:::i;22678:295::-;;;;;;;;;;-1:-1:-1;22678:295:0;;;;;:::i;:::-;;:::i;23941:328::-;;;;;;;;;;-1:-1:-1;23941:328:0;;;;;:::i;:::-;;:::i;60632:115::-;;;;;;;;;;-1:-1:-1;60632:115:0;;;;;:::i;:::-;;:::i;59896:271::-;;;;;;;;;;-1:-1:-1;59896:271:0;;;;;:::i;:::-;;:::i;61029:460::-;;;;;;;;;;-1:-1:-1;61029:460:0;;;;;:::i;:::-;;:::i;44613:192::-;;;;;;;;;;-1:-1:-1;44613:192:0;;;;;:::i;:::-;;:::i;61497:179::-;61608:4;61632:36;61656:11;61632:23;:36::i;:::-;61625:43;61497:179;-1:-1:-1;;61497:179:0:o;60808:89::-;43944:12;:10;:12::i;:::-;-1:-1:-1;;;;;43933:23:0;:7;43786:6;;-1:-1:-1;;;;;43786:6:0;;43713:87;43933:7;-1:-1:-1;;;;;43933:23:0;;43925:68;;;;-1:-1:-1;;;43925:68:0;;;;;;;:::i;:::-;;;;;;;;;60875:14;;::::1;::::0;:4:::1;::::0;:14:::1;::::0;::::1;::::0;::::1;:::i;:::-;;60808:89:::0;:::o;20826:100::-;20880:13;20913:5;20906:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20826:100;:::o;22385:221::-;22461:7;25868:16;;;:7;:16;;;;;;-1:-1:-1;;;;;25868:16:0;22481:73;;;;-1:-1:-1;;;22481:73:0;;17440:2:1;22481:73:0;;;17422:21:1;17479:2;17459:18;;;17452:30;17518:34;17498:18;;;17491:62;-1:-1:-1;;;17569:18:1;;;17562:42;17621:19;;22481:73:0;17412:234:1;22481:73:0;-1:-1:-1;22574:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;22574:24:0;;22385:221::o;21908:411::-;21989:13;22005:23;22020:7;22005:14;:23::i;:::-;21989:39;;22053:5;-1:-1:-1;;;;;22047:11:0;:2;-1:-1:-1;;;;;22047:11:0;;;22039:57;;;;-1:-1:-1;;;22039:57:0;;19026:2:1;22039:57:0;;;19008:21:1;19065:2;19045:18;;;19038:30;19104:34;19084:18;;;19077:62;-1:-1:-1;;;19155:18:1;;;19148:31;19196:19;;22039:57:0;18998:223:1;22039:57:0;22147:5;-1:-1:-1;;;;;22131:21:0;:12;:10;:12::i;:::-;-1:-1:-1;;;;;22131:21:0;;:62;;;;22156:37;22173:5;22180:12;:10;:12::i;22156:37::-;22109:168;;;;-1:-1:-1;;;22109:168:0;;15833:2:1;22109:168:0;;;15815:21:1;15872:2;15852:18;;;15845:30;15911:34;15891:18;;;15884:62;15982:26;15962:18;;;15955:54;16026:19;;22109:168:0;15805:246:1;22109:168:0;22290:21;22299:2;22303:7;22290:8;:21::i;:::-;21908:411;;;:::o;55665:1151::-;55923:152;;;55866:12;55923:152;;;;;-1:-1:-1;;;;;55961:19:0;;55891:29;55961:19;;;:6;:19;;;;;;;;;55923:152;;;;;;;;;;;56110:45;55968:11;55923:152;56138:4;56144;56150;56110:6;:45::i;:::-;56088:128;;;;-1:-1:-1;;;56088:128:0;;18624:2:1;56088:128:0;;;18606:21:1;18663:2;18643:18;;;18636:30;18702:34;18682:18;;;18675:62;-1:-1:-1;;;18753:18:1;;;18746:31;18794:19;;56088:128:0;18596:223:1;56088:128:0;-1:-1:-1;;;;;56305:19:0;;;;;;:6;:19;;;;;;:26;;56329:1;56305:23;:26::i;:::-;-1:-1:-1;;;;;56283:19:0;;;;;;:6;:19;;;;;;;:48;;;;56349:126;;;;;56290:11;;56421:10;;56447:17;;56349:126;:::i;:::-;;;;;;;;56586:12;56600:23;56635:4;-1:-1:-1;;;;;56627:18:0;56677:17;56696:11;56660:48;;;;;;;;;:::i;:::-;;;;-1:-1:-1;;56660:48:0;;;;;;;;;;56627:92;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56585:134;;;;56738:7;56730:48;;;;-1:-1:-1;;;56730:48:0;;12783:2:1;56730:48:0;;;12765:21:1;12822:2;12802:18;;;12795:30;12861;12841:18;;;12834:58;12909:18;;56730:48:0;12755:178:1;56730:48:0;56798:10;55665:1151;-1:-1:-1;;;;;;;;55665:1151:0:o;23275:339::-;23470:41;23489:12;:10;:12::i;:::-;23503:7;23470:18;:41::i;:::-;23462:103;;;;-1:-1:-1;;;23462:103:0;;;;;;;:::i;:::-;23578:28;23588:4;23594:2;23598:7;23578:9;:28::i;36958:256::-;37055:7;37091:23;37108:5;37091:16;:23::i;:::-;37083:5;:31;37075:87;;;;-1:-1:-1;;;37075:87:0;;11545:2:1;37075:87:0;;;11527:21:1;11584:2;11564:18;;;11557:30;11623:34;11603:18;;;11596:62;-1:-1:-1;;;11674:18:1;;;11667:41;11725:19;;37075:87:0;11517:233:1;37075:87:0;-1:-1:-1;;;;;;37180:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;36958:256::o;58976:774::-;43944:12;:10;:12::i;:::-;-1:-1:-1;;;;;43933:23:0;:7;43786:6;;-1:-1:-1;;;;;43786:6:0;;43713:87;43933:7;-1:-1:-1;;;;;43933:23:0;;43925:68;;;;-1:-1:-1;;;43925:68:0;;;;;;;:::i;:::-;59112:11;59195:8:::1;59181:22:::0;::::1;59177:77;;;-1:-1:-1::0;59234:8:0::1;59177:77;59264:14;59299:11;59281:15;;:29;;;;:::i;:::-;59264:46;;59365:8;59356:6;:17;59352:120;;;59390:14;59407:17;59416:8;59407:6:::0;:17:::1;:::i;:::-;59390:34:::0;-1:-1:-1;59439:21:0::1;59390:34:::0;59439:21;::::1;:::i;:::-;;;59352:120;;59504:1;59490:11;:15;59482:72;;;::::0;-1:-1:-1;;;59482:72:0;;13140:2:1;59482:72:0::1;::::0;::::1;13122:21:1::0;13179:2;13159:18;;;13152:30;13218:34;13198:18;;;13191:62;-1:-1:-1;;;13269:18:1;;;13262:42;13321:19;;59482:72:0::1;13112:234:1::0;59482:72:0::1;59570:9;59565:178;59589:11;59585:1;:15;59565:178;;;59622:18;59643:17;:15;:17::i;:::-;59622:38;;59675:22;59681:3;59686:10;59675:5;:22::i;:::-;59712:19;:17;:19::i;:::-;-1:-1:-1::0;59602:3:0;::::1;::::0;::::1;:::i;:::-;;;;59565:178;;;;44004:1;;58976:774:::0;;:::o;61883:73::-;43944:12;:10;:12::i;:::-;-1:-1:-1;;;;;43933:23:0;:7;43786:6;;-1:-1:-1;;;;;43786:6:0;;43713:87;43933:7;-1:-1:-1;;;;;43933:23:0;;43925:68;;;;-1:-1:-1;;;43925:68:0;;;;;;;:::i;:::-;61938:10:::1;:8;:10::i;:::-;61883:73::o:0;23685:185::-;23823:39;23840:4;23846:2;23850:7;23823:39;;;;;;;;;;;;:16;:39::i;37480:233::-;37555:7;37591:30;37378:10;:17;;37290:113;37591:30;37583:5;:38;37575:95;;;;-1:-1:-1;;;37575:95:0;;19846:2:1;37575:95:0;;;19828:21:1;19885:2;19865:18;;;19858:30;19924:34;19904:18;;;19897:62;-1:-1:-1;;;19975:18:1;;;19968:42;20027:19;;37575:95:0;19818:234:1;37575:95:0;37688:10;37699:5;37688:17;;;;;;-1:-1:-1;;;37688:17:0;;;;;;;;;;;;;;;;;37681:24;;37480:233;;;:::o;20520:239::-;20592:7;20628:16;;;:7;:16;;;;;;-1:-1:-1;;;;;20628:16:0;20663:19;20655:73;;;;-1:-1:-1;;;20655:73:0;;16669:2:1;20655:73:0;;;16651:21:1;16708:2;16688:18;;;16681:30;16747:34;16727:18;;;16720:62;-1:-1:-1;;;16798:18:1;;;16791:39;16847:19;;20655:73:0;16641:231:1;20250:208:0;20322:7;-1:-1:-1;;;;;20350:19:0;;20342:74;;;;-1:-1:-1;;;20342:74:0;;16258:2:1;20342:74:0;;;16240:21:1;16297:2;16277:18;;;16270:30;16336:34;16316:18;;;16309:62;-1:-1:-1;;;16387:18:1;;;16380:40;16437:19;;20342:74:0;16230:232:1;20342:74:0;-1:-1:-1;;;;;;20434:16:0;;;;;:9;:16;;;;;;;20250:208::o;44364:94::-;43944:12;:10;:12::i;:::-;-1:-1:-1;;;;;43933:23:0;:7;43786:6;;-1:-1:-1;;;;;43786:6:0;;43713:87;43933:7;-1:-1:-1;;;;;43933:23:0;;43925:68;;;;-1:-1:-1;;;43925:68:0;;;;;;;:::i;:::-;44429:21:::1;44447:1;44429:9;:21::i;61745:69::-:0;43944:12;:10;:12::i;:::-;-1:-1:-1;;;;;43933:23:0;:7;43786:6;;-1:-1:-1;;;;;43786:6:0;;43713:87;43933:7;-1:-1:-1;;;;;43933:23:0;;43925:68;;;;-1:-1:-1;;;43925:68:0;;;;;;;:::i;:::-;61798:8:::1;:6;:8::i;20995:104::-:0;21051:13;21084:7;21077:14;;;;;:::i;22678:295::-;22793:12;:10;:12::i;:::-;-1:-1:-1;;;;;22781:24:0;:8;-1:-1:-1;;;;;22781:24:0;;;22773:62;;;;-1:-1:-1;;;22773:62:0;;14315:2:1;22773:62:0;;;14297:21:1;14354:2;14334:18;;;14327:30;14393:27;14373:18;;;14366:55;14438:18;;22773:62:0;14287:175:1;22773:62:0;22893:8;22848:18;:32;22867:12;:10;:12::i;:::-;-1:-1:-1;;;;;22848:32:0;;;;;;;;;;;;;;;;;-1:-1:-1;22848:32:0;;;:42;;;;;;;;;;;;:53;;-1:-1:-1;;22848:53:0;;;;;;;;;;;22932:12;:10;:12::i;:::-;-1:-1:-1;;;;;22917:48:0;;22956:8;22917:48;;;;9102:14:1;9095:22;9077:41;;9065:2;9050:18;;9032:92;22917:48:0;;;;;;;;22678:295;;:::o;23941:328::-;24116:41;24135:12;:10;:12::i;:::-;24149:7;24116:18;:41::i;:::-;24108:103;;;;-1:-1:-1;;;24108:103:0;;;;;;;:::i;:::-;24222:39;24236:4;24242:2;24246:7;24255:5;24222:13;:39::i;:::-;23941:328;;;;:::o;60632:115::-;60702:13;60735:4;60728:11;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;60632:115;;;:::o;59896:271::-;43944:12;:10;:12::i;:::-;-1:-1:-1;;;;;43933:23:0;:7;43786:6;;-1:-1:-1;;;;;43786:6:0;;43713:87;43933:7;-1:-1:-1;;;;;43933:23:0;;43925:68;;;;-1:-1:-1;;;43925:68:0;;;;;;;:::i;:::-;59972:9:::1;59967:193;59985:12:::0;;::::1;59967:193;;;60027:40;60046:12;:10;:12::i;:::-;60060:3;;60064:1;60060:6;;;;;-1:-1:-1::0;;;60060:6:0::1;;;;;;;;;;;;;;;60027:18;:40::i;:::-;60019:101;;;::::0;-1:-1:-1;;;60019:101:0;;20259:2:1;60019:101:0::1;::::0;::::1;20241:21:1::0;20298:2;20278:18;;;20271:30;20337:34;20317:18;;;20310:62;-1:-1:-1;;;20388:18:1;;;20381:46;20444:19;;60019:101:0::1;20231:238:1::0;60019:101:0::1;60135:13;60141:3;;60145:1;60141:6;;;;;-1:-1:-1::0;;;60141:6:0::1;;;;;;;;;;;;;;;60135:5;:13::i;:::-;59999:3:::0;::::1;::::0;::::1;:::i;:::-;;;;59967:193;;61029:460:::0;61332:33;;-1:-1:-1;;;61332:33:0;;-1:-1:-1;;;;;7964:32:1;;;61332:33:0;;;7946:51:1;61159:4:0;;61288:20;;61324:54;;;;61332:21;;;;;;7919:18:1;;61332:33:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;61324:54:0;;61320:98;;;61402:4;61395:11;;;;;61320:98;-1:-1:-1;;;;;23165:25:0;;;23141:4;23165:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;61437:44;61430:51;61029:460;-1:-1:-1;;;;61029:460:0:o;44613:192::-;43944:12;:10;:12::i;:::-;-1:-1:-1;;;;;43933:23:0;:7;43786:6;;-1:-1:-1;;;;;43786:6:0;;43713:87;43933:7;-1:-1:-1;;;;;43933:23:0;;43925:68;;;;-1:-1:-1;;;43925:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;44702:22:0;::::1;44694:73;;;::::0;-1:-1:-1;;;44694:73:0;;12376:2:1;44694:73:0::1;::::0;::::1;12358:21:1::0;12415:2;12395:18;;;12388:30;12454:34;12434:18;;;12427:62;-1:-1:-1;;;12505:18:1;;;12498:36;12551:19;;44694:73:0::1;12348:228:1::0;44694:73:0::1;44778:19;44788:8;44778:9;:19::i;:::-;44613:192:::0;:::o;51905:650::-;51976:22;52020:10;52042:4;52020:27;52016:508;;;52064:18;52085:8;;52064:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;52124:8:0;52335:17;52329:24;-1:-1:-1;;;;;52303:134:0;;-1:-1:-1;52163:289:0;;-1:-1:-1;52163:289:0;;-1:-1:-1;52501:10:0;52016:508;51905:650;:::o;36650:224::-;36752:4;-1:-1:-1;;;;;;36776:50:0;;-1:-1:-1;;;36776:50:0;;:90;;;36830:36;36854:11;36830:23;:36::i;62339:161::-;62429:14;62468:24;:22;:24::i;:::-;62461:31;;62339:161;:::o;29761:174::-;29836:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;29836:29:0;-1:-1:-1;;;;;29836:29:0;;;;;;;;:24;;29890:23;29836:24;29890:14;:23::i;:::-;-1:-1:-1;;;;;29881:46:0;;;;;;;;;;;29761:174;;:::o;57357:486::-;57535:4;-1:-1:-1;;;;;57560:20:0;;57552:70;;;;-1:-1:-1;;;57552:70:0;;15082:2:1;57552:70:0;;;15064:21:1;15121:2;15101:18;;;15094:30;15160:34;15140:18;;;15133:62;-1:-1:-1;;;15211:18:1;;;15204:35;15256:19;;57552:70:0;15054:227:1;57552:70:0;57676:159;57704:47;57723:27;57743:6;57723:19;:27::i;:::-;57704:18;:47::i;:::-;57676:159;;;;;;;;;;;;9960:25:1;;;;10033:4;10021:17;;10001:18;;;9994:45;10055:18;;;10048:34;;;10098:18;;;10091:34;;;9932:19;;57676:159:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;57653:182:0;:6;-1:-1:-1;;;;;57653:182:0;;57633:202;;57357:486;;;;;;;:::o;47697:98::-;47755:7;47782:5;47786:1;47782;:5;:::i;:::-;47775:12;47697:98;-1:-1:-1;;;47697:98:0:o;26073:348::-;26166:4;25868:16;;;:7;:16;;;;;;-1:-1:-1;;;;;25868:16:0;26183:73;;;;-1:-1:-1;;;26183:73:0;;14669:2:1;26183:73:0;;;14651:21:1;14708:2;14688:18;;;14681:30;14747:34;14727:18;;;14720:62;-1:-1:-1;;;14798:18:1;;;14791:42;14850:19;;26183:73:0;14641:234:1;26183:73:0;26267:13;26283:23;26298:7;26283:14;:23::i;:::-;26267:39;;26336:5;-1:-1:-1;;;;;26325:16:0;:7;-1:-1:-1;;;;;26325:16:0;;:51;;;;26369:7;-1:-1:-1;;;;;26345:31:0;:20;26357:7;26345:11;:20::i;:::-;-1:-1:-1;;;;;26345:31:0;;26325:51;:87;;;;26380:32;26397:5;26404:7;26380:16;:32::i;29065:578::-;29224:4;-1:-1:-1;;;;;29197:31:0;:23;29212:7;29197:14;:23::i;:::-;-1:-1:-1;;;;;29197:31:0;;29189:85;;;;-1:-1:-1;;;29189:85:0;;18214:2:1;29189:85:0;;;18196:21:1;18253:2;18233:18;;;18226:30;18292:34;18272:18;;;18265:62;-1:-1:-1;;;18343:18:1;;;18336:39;18392:19;;29189:85:0;18186:231:1;29189:85:0;-1:-1:-1;;;;;29293:16:0;;29285:65;;;;-1:-1:-1;;;29285:65:0;;13910:2:1;29285:65:0;;;13892:21:1;13949:2;13929:18;;;13922:30;13988:34;13968:18;;;13961:62;-1:-1:-1;;;14039:18:1;;;14032:34;14083:19;;29285:65:0;13882:226:1;29285:65:0;29363:39;29384:4;29390:2;29394:7;29363:20;:39::i;:::-;29467:29;29484:1;29488:7;29467:8;:29::i;:::-;-1:-1:-1;;;;;29509:15:0;;;;;;:9;:15;;;;;:20;;29528:1;;29509:15;:20;;29528:1;;29509:20;:::i;:::-;;;;-1:-1:-1;;;;;;;29540:13:0;;;;;;:9;:13;;;;;:18;;29557:1;;29540:13;:18;;29557:1;;29540:18;:::i;:::-;;;;-1:-1:-1;;29569:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;29569:21:0;-1:-1:-1;;;;;29569:21:0;;;;;;;;;29608:27;;29569:16;;29608:27;;;;;;;29065:578;;;:::o;60315:106::-;60391:15;;60364:7;;60391:22;;60411:1;60391:19;:22::i;27757:382::-;-1:-1:-1;;;;;27837:16:0;;27829:61;;;;-1:-1:-1;;;27829:61:0;;17079:2:1;27829:61:0;;;17061:21:1;;;17098:18;;;17091:30;17157:34;17137:18;;;17130:62;17209:18;;27829:61:0;17051:182:1;27829:61:0;25844:4;25868:16;;;:7;:16;;;;;;-1:-1:-1;;;;;25868:16:0;:30;27901:58;;;;-1:-1:-1;;;27901:58:0;;13553:2:1;27901:58:0;;;13535:21:1;13592:2;13572:18;;;13565:30;13631;13611:18;;;13604:58;13679:18;;27901:58:0;13525:178:1;27901:58:0;27972:45;28001:1;28005:2;28009:7;27972:20;:45::i;:::-;-1:-1:-1;;;;;28030:13:0;;;;;;:9;:13;;;;;:18;;28047:1;;28030:13;:18;;28047:1;;28030:18;:::i;:::-;;;;-1:-1:-1;;28059:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;28059:21:0;-1:-1:-1;;;;;28059:21:0;;;;;;;;28098:33;;28059:16;;;28098:33;;28059:16;;28098:33;27757:382;;:::o;60500:73::-;60548:15;:17;;;:15;:17;;;:::i;:::-;;;;;;60500:73::o;34051:120::-;33063:7;;;;33587:41;;;;-1:-1:-1;;;33587:41:0;;11196:2:1;33587:41:0;;;11178:21:1;11235:2;11215:18;;;11208:30;-1:-1:-1;;;11254:18:1;;;11247:50;11314:18;;33587:41:0;11168:170:1;33587:41:0;34110:7:::1;:15:::0;;-1:-1:-1;;34110:15:0::1;::::0;;34141:22:::1;34150:12;:10;:12::i;:::-;34141:22;::::0;-1:-1:-1;;;;;7964:32:1;;;7946:51;;7934:2;7919:18;34141:22:0::1;;;;;;;34051:120::o:0;44813:173::-;44888:6;;;-1:-1:-1;;;;;44905:17:0;;;-1:-1:-1;;;;;;44905:17:0;;;;;;;44938:40;;44888:6;;;44905:17;44888:6;;44938:40;;44869:16;;44938:40;44813:173;;:::o;33792:118::-;33063:7;;;;33317:9;33309:38;;;;-1:-1:-1;;;33309:38:0;;15488:2:1;33309:38:0;;;15470:21:1;15527:2;15507:18;;;15500:30;-1:-1:-1;;;15546:18:1;;;15539:46;15602:18;;33309:38:0;15460:166:1;33309:38:0;33852:7:::1;:14:::0;;-1:-1:-1;;33852:14:0::1;33862:4;33852:14;::::0;;33882:20:::1;33889:12;:10;:12::i;25151:315::-:0;25308:28;25318:4;25324:2;25328:7;25308:9;:28::i;:::-;25355:48;25378:4;25384:2;25388:7;25397:5;25355:22;:48::i;:::-;25347:111;;;;-1:-1:-1;;;25347:111:0;;;;;;;:::i;28368:360::-;28428:13;28444:23;28459:7;28444:14;:23::i;:::-;28428:39;;28480:48;28501:5;28516:1;28520:7;28480:20;:48::i;:::-;28569:29;28586:1;28590:7;28569:8;:29::i;:::-;-1:-1:-1;;;;;28611:16:0;;;;;;:9;:16;;;;;:21;;28631:1;;28611:16;:21;;28631:1;;28611:21;:::i;:::-;;;;-1:-1:-1;;28650:16:0;;;;:7;:16;;;;;;28643:23;;-1:-1:-1;;;;;;28643:23:0;;;28684:36;28658:7;;28650:16;-1:-1:-1;;;;;28684:36:0;;;;;28650:16;;28684:36;28368:360;;:::o;19881:305::-;19983:4;-1:-1:-1;;;;;;20020:40:0;;-1:-1:-1;;;20020:40:0;;:105;;-1:-1:-1;;;;;;;20077:48:0;;-1:-1:-1;;;20077:48:0;20020:105;:158;;;-1:-1:-1;;;;;;;;;;18594:40:0;;;20142:36;18485:157;56824:410;56934:7;55001:100;;;;;;;;;;;;;;;;;54981:127;;;;;;;57088:12;;57123:11;;;;57167:24;;;;;57157:35;;;;;;57007:204;;;;;9542:25:1;;;9598:2;9583:18;;9576:34;;;;-1:-1:-1;;;;;9646:32:1;9641:2;9626:18;;9619:60;9710:2;9695:18;;9688:34;9529:3;9514:19;;9496:232;57007:204:0;;;;;;;;;;;;;56979:247;;;;;;56959:267;;56824:410;;;:::o;54573:258::-;54672:7;54774:20;54012:15;;;53934:101;54774:20;54745:63;;-1:-1:-1;;;54745:63:0;;;7661:27:1;7704:11;;;7697:27;;;;7740:12;;;7733:28;;;7777:12;;54745:63:0;7651:144:1;61964:231:0;62142:45;62169:4;62175:2;62179:7;62142:26;:45::i;30500:799::-;30655:4;-1:-1:-1;;;;;30676:13:0;;8025:20;8073:8;30672:620;;30728:2;-1:-1:-1;;;;;30712:36:0;;30749:12;:10;:12::i;:::-;30763:4;30769:7;30778:5;30712:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;30712:72:0;;;;;;;;-1:-1:-1;;30712:72:0;;;;;;;;;;;;:::i;:::-;;;30708:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;30954:13:0;;30950:272;;30997:60;;-1:-1:-1;;;30997:60:0;;;;;;;:::i;30950:272::-;31172:6;31166:13;31157:6;31153:2;31149:15;31142:38;30708:529;-1:-1:-1;;;;;;30835:51:0;-1:-1:-1;;;30835:51:0;;-1:-1:-1;30828:58:0;;30672:620;-1:-1:-1;31276:4:0;30500:799;;;;;;:::o;34668:275::-;34812:45;34839:4;34845:2;34849:7;34812:26;:45::i;:::-;33063:7;;;;34878:9;34870:65;;;;-1:-1:-1;;;34870:65:0;;10784:2:1;34870:65:0;;;10766:21:1;10823:2;10803:18;;;10796:30;10862:34;10842:18;;;10835:62;-1:-1:-1;;;10913:18:1;;;10906:41;10964:19;;34870:65:0;10756:233:1;38326:589:0;-1:-1:-1;;;;;38532:18:0;;38528:187;;38567:40;38599:7;39742:10;:17;;39715:24;;;;:15;:24;;;;;:44;;;39770:24;;;;;;;;;;;;39638:164;38567:40;38528:187;;;38637:2;-1:-1:-1;;;;;38629:10:0;:4;-1:-1:-1;;;;;38629:10:0;;38625:90;;38656:47;38689:4;38695:7;38656:32;:47::i;:::-;-1:-1:-1;;;;;38729:16:0;;38725:183;;38762:45;38799:7;38762:36;:45::i;38725:183::-;38835:4;-1:-1:-1;;;;;38829:10:0;:2;-1:-1:-1;;;;;38829:10:0;;38825:83;;38856:40;38884:2;38888:7;38856:27;:40::i;40429:988::-;40695:22;40745:1;40720:22;40737:4;40720:16;:22::i;:::-;:26;;;;:::i;:::-;40757:18;40778:26;;;:17;:26;;;;;;40695:51;;-1:-1:-1;40911:28:0;;;40907:328;;-1:-1:-1;;;;;40978:18:0;;40956:19;40978:18;;;:12;:18;;;;;;;;:34;;;;;;;;;41029:30;;;;;;:44;;;41146:30;;:17;:30;;;;;:43;;;40907:328;-1:-1:-1;41331:26:0;;;;:17;:26;;;;;;;;41324:33;;;-1:-1:-1;;;;;41375:18:0;;;;;:12;:18;;;;;:34;;;;;;;41368:41;40429:988::o;41712:1079::-;41990:10;:17;41965:22;;41990:21;;42010:1;;41990:21;:::i;:::-;42022:18;42043:24;;;:15;:24;;;;;;42416:10;:26;;41965:46;;-1:-1:-1;42043:24:0;;41965:46;;42416:26;;;;-1:-1:-1;;;42416:26:0;;;;;;;;;;;;;;;;;42394:48;;42480:11;42455:10;42466;42455:22;;;;;;-1:-1:-1;;;42455:22:0;;;;;;;;;;;;;;;;;;;;:36;;;;42560:28;;;:15;:28;;;;;;;:41;;;42732:24;;;;;42725:31;42767:10;:16;;;;;-1:-1:-1;;;42767:16:0;;;;;;;;;;;;;;;;;;;;;;;;;;41712:1079;;;;:::o;39216:221::-;39301:14;39318:20;39335:2;39318:16;:20::i;:::-;-1:-1:-1;;;;;39349:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;39394:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;39216:221:0:o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:631:1;78:5;108:18;149:2;141:6;138:14;135:2;;;155:18;;:::i;:::-;230:2;224:9;198:2;284:15;;-1:-1:-1;;280:24:1;;;306:2;276:33;272:42;260:55;;;330:18;;;350:22;;;327:46;324:2;;;376:18;;:::i;:::-;416:10;412:2;405:22;445:6;436:15;;475:6;467;460:22;515:3;506:6;501:3;497:16;494:25;491:2;;;532:1;529;522:12;491:2;582:6;577:3;570:4;562:6;558:17;545:44;637:1;630:4;621:6;613;609:19;605:30;598:41;;;;88:557;;;;;:::o;650:228::-;692:5;745:3;738:4;730:6;726:17;722:27;712:2;;767:5;760;753:20;712:2;793:79;868:3;859:6;846:20;839:4;831:6;827:17;793:79;:::i;883:257::-;942:6;995:2;983:9;974:7;970:23;966:32;963:2;;;1016:6;1008;1001:22;963:2;1060:9;1047:23;1079:31;1104:5;1079:31;:::i;1145:398::-;1213:6;1221;1274:2;1262:9;1253:7;1249:23;1245:32;1242:2;;;1295:6;1287;1280:22;1242:2;1339:9;1326:23;1358:31;1383:5;1358:31;:::i;:::-;1408:5;-1:-1:-1;1465:2:1;1450:18;;1437:32;1478:33;1437:32;1478:33;:::i;:::-;1530:7;1520:17;;;1232:311;;;;;:::o;1548:466::-;1625:6;1633;1641;1694:2;1682:9;1673:7;1669:23;1665:32;1662:2;;;1715:6;1707;1700:22;1662:2;1759:9;1746:23;1778:31;1803:5;1778:31;:::i;:::-;1828:5;-1:-1:-1;1885:2:1;1870:18;;1857:32;1898:33;1857:32;1898:33;:::i;:::-;1652:362;;1950:7;;-1:-1:-1;;;2004:2:1;1989:18;;;;1976:32;;1652:362::o;2019:685::-;2114:6;2122;2130;2138;2191:3;2179:9;2170:7;2166:23;2162:33;2159:2;;;2213:6;2205;2198:22;2159:2;2257:9;2244:23;2276:31;2301:5;2276:31;:::i;:::-;2326:5;-1:-1:-1;2383:2:1;2368:18;;2355:32;2396:33;2355:32;2396:33;:::i;:::-;2448:7;-1:-1:-1;2502:2:1;2487:18;;2474:32;;-1:-1:-1;2557:2:1;2542:18;;2529:32;2584:18;2573:30;;2570:2;;;2621:6;2613;2606:22;2570:2;2649:49;2690:7;2681:6;2670:9;2666:22;2649:49;:::i;:::-;2639:59;;;2149:555;;;;;;;:::o;2709:436::-;2774:6;2782;2835:2;2823:9;2814:7;2810:23;2806:32;2803:2;;;2856:6;2848;2841:22;2803:2;2900:9;2887:23;2919:31;2944:5;2919:31;:::i;:::-;2969:5;-1:-1:-1;3026:2:1;3011:18;;2998:32;3068:15;;3061:23;3049:36;;3039:2;;3104:6;3096;3089:22;3150:788;3252:6;3260;3268;3276;3284;3337:3;3325:9;3316:7;3312:23;3308:33;3305:2;;;3359:6;3351;3344:22;3305:2;3403:9;3390:23;3422:31;3447:5;3422:31;:::i;:::-;3472:5;-1:-1:-1;3528:2:1;3513:18;;3500:32;3555:18;3544:30;;3541:2;;;3592:6;3584;3577:22;3541:2;3620:49;3661:7;3652:6;3641:9;3637:22;3620:49;:::i;:::-;3610:59;;;3716:2;3705:9;3701:18;3688:32;3678:42;;3767:2;3756:9;3752:18;3739:32;3729:42;;3823:3;3812:9;3808:19;3795:33;3872:4;3863:7;3859:18;3850:7;3847:31;3837:2;;3897:6;3889;3882:22;3837:2;3925:7;3915:17;;;3295:643;;;;;;;;:::o;3943:325::-;4011:6;4019;4072:2;4060:9;4051:7;4047:23;4043:32;4040:2;;;4093:6;4085;4078:22;4040:2;4137:9;4124:23;4156:31;4181:5;4156:31;:::i;:::-;4206:5;4258:2;4243:18;;;;4230:32;;-1:-1:-1;;;4030:238:1:o;4273:665::-;4359:6;4367;4420:2;4408:9;4399:7;4395:23;4391:32;4388:2;;;4441:6;4433;4426:22;4388:2;4486:9;4473:23;4515:18;4556:2;4548:6;4545:14;4542:2;;;4577:6;4569;4562:22;4542:2;4620:6;4609:9;4605:22;4595:32;;4665:7;4658:4;4654:2;4650:13;4646:27;4636:2;;4692:6;4684;4677:22;4636:2;4737;4724:16;4763:2;4755:6;4752:14;4749:2;;;4784:6;4776;4769:22;4749:2;4842:7;4837:2;4827:6;4824:1;4820:14;4816:2;4812:23;4808:32;4805:45;4802:2;;;4868:6;4860;4853:22;4802:2;4904;4896:11;;;;;4926:6;;-1:-1:-1;4378:560:1;;-1:-1:-1;;;;4378:560:1:o;4943:255::-;5001:6;5054:2;5042:9;5033:7;5029:23;5025:32;5022:2;;;5075:6;5067;5060:22;5022:2;5119:9;5106:23;5138:30;5162:5;5138:30;:::i;5203:259::-;5272:6;5325:2;5313:9;5304:7;5300:23;5296:32;5293:2;;;5346:6;5338;5331:22;5293:2;5383:9;5377:16;5402:30;5426:5;5402:30;:::i;5467:290::-;5566:6;5619:2;5607:9;5598:7;5594:23;5590:32;5587:2;;;5640:6;5632;5625:22;5587:2;5677:9;5671:16;5696:31;5721:5;5696:31;:::i;5762:480::-;5831:6;5884:2;5872:9;5863:7;5859:23;5855:32;5852:2;;;5905:6;5897;5890:22;5852:2;5950:9;5937:23;5983:18;5975:6;5972:30;5969:2;;;6020:6;6012;6005:22;5969:2;6048:22;;6101:4;6093:13;;6089:27;-1:-1:-1;6079:2:1;;6135:6;6127;6120:22;6079:2;6163:73;6228:7;6223:2;6210:16;6205:2;6201;6197:11;6163:73;:::i;6247:190::-;6306:6;6359:2;6347:9;6338:7;6334:23;6330:32;6327:2;;;6380:6;6372;6365:22;6327:2;-1:-1:-1;6408:23:1;;6317:120;-1:-1:-1;6317:120:1:o;6442:257::-;6483:3;6521:5;6515:12;6548:6;6543:3;6536:19;6564:63;6620:6;6613:4;6608:3;6604:14;6597:4;6590:5;6586:16;6564:63;:::i;:::-;6681:2;6660:15;-1:-1:-1;;6656:29:1;6647:39;;;;6688:4;6643:50;;6491:208;-1:-1:-1;;6491:208:1:o;6704:274::-;6833:3;6871:6;6865:13;6887:53;6933:6;6928:3;6921:4;6913:6;6909:17;6887:53;:::i;:::-;6956:16;;;;;6841:137;-1:-1:-1;;6841:137:1:o;6983:415::-;7140:3;7178:6;7172:13;7194:53;7240:6;7235:3;7228:4;7220:6;7216:17;7194:53;:::i;:::-;7316:2;7312:15;;;;-1:-1:-1;;7308:53:1;7269:16;;;;7294:68;;;7389:2;7378:14;;7148:250;-1:-1:-1;;7148:250:1:o;8008:431::-;-1:-1:-1;;;;;8265:15:1;;;8247:34;;8317:15;;8312:2;8297:18;;8290:43;8369:2;8364;8349:18;;8342:30;;;8190:4;;8389:44;;8414:18;;8406:6;8389:44;:::i;:::-;8381:52;8199:240;-1:-1:-1;;;;;8199:240:1:o;8444:488::-;-1:-1:-1;;;;;8713:15:1;;;8695:34;;8765:15;;8760:2;8745:18;;8738:43;8812:2;8797:18;;8790:34;;;8860:3;8855:2;8840:18;;8833:31;;;8638:4;;8881:45;;8906:19;;8898:6;8881:45;:::i;:::-;8873:53;8647:285;-1:-1:-1;;;;;;8647:285:1:o;10136:217::-;10283:2;10272:9;10265:21;10246:4;10303:44;10343:2;10332:9;10328:18;10320:6;10303:44;:::i;11755:414::-;11957:2;11939:21;;;11996:2;11976:18;;;11969:30;12035:34;12030:2;12015:18;;12008:62;-1:-1:-1;;;12101:2:1;12086:18;;12079:48;12159:3;12144:19;;11929:240::o;17651:356::-;17853:2;17835:21;;;17872:18;;;17865:30;17931:34;17926:2;17911:18;;17904:62;17998:2;17983:18;;17825:182::o;19226:413::-;19428:2;19410:21;;;19467:2;19447:18;;;19440:30;19506:34;19501:2;19486:18;;19479:62;-1:-1:-1;;;19572:2:1;19557:18;;19550:47;19629:3;19614:19;;19400:239::o;20656:128::-;20696:3;20727:1;20723:6;20720:1;20717:13;20714:2;;;20733:18;;:::i;:::-;-1:-1:-1;20769:9:1;;20704:80::o;20789:125::-;20829:4;20857:1;20854;20851:8;20848:2;;;20862:18;;:::i;:::-;-1:-1:-1;20899:9:1;;20838:76::o;20919:258::-;20991:1;21001:113;21015:6;21012:1;21009:13;21001:113;;;21091:11;;;21085:18;21072:11;;;21065:39;21037:2;21030:10;21001:113;;;21132:6;21129:1;21126:13;21123:2;;;-1:-1:-1;;21167:1:1;21149:16;;21142:27;20972:205::o;21182:380::-;21261:1;21257:12;;;;21304;;;21325:2;;21379:4;21371:6;21367:17;21357:27;;21325:2;21432;21424:6;21421:14;21401:18;21398:38;21395:2;;;21478:10;21473:3;21469:20;21466:1;21459:31;21513:4;21510:1;21503:15;21541:4;21538:1;21531:15;21395:2;;21237:325;;;:::o;21567:135::-;21606:3;-1:-1:-1;;21627:17:1;;21624:2;;;21647:18;;:::i;:::-;-1:-1:-1;21694:1:1;21683:13;;21614:88::o;21707:127::-;21768:10;21763:3;21759:20;21756:1;21749:31;21799:4;21796:1;21789:15;21823:4;21820:1;21813:15;21839:127;21900:10;21895:3;21891:20;21888:1;21881:31;21931:4;21928:1;21921:15;21955:4;21952:1;21945:15;21971:131;-1:-1:-1;;;;;22046:31:1;;22036:42;;22026:2;;22092:1;22089;22082:12;22107:131;-1:-1:-1;;;;;;22181:32:1;;22171:43;;22161:2;;22228:1;22225;22218:12

Swarm Source

ipfs://fa06f217632704d696f4462a05ecef07bca70648daa41577d0985cdf20ccde95
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.