ETH Price: $3,446.95 (-0.24%)
Gas: 4 Gwei

Token

Reflective Collective (RC)
 

Overview

Max Total Supply

302 RC

Holders

137

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Balance
2 RC
0xb449ed45be255623fefada2bc15a56c121fba78e
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:
ReflectiveCollective

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2021-10-12
*/

//SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

// File: @openzeppelin/contracts/utils/Address.sol

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol

pragma solidity ^0.8.0;

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

// File: @openzeppelin/contracts/utils/introspection/IERC165.sol

pragma solidity ^0.8.0;

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

// File: @openzeppelin/contracts/utils/introspection/ERC165.sol

pragma solidity ^0.8.0;

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

// File: @openzeppelin/contracts/token/ERC721/IERC721.sol

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

// File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable.sol

pragma solidity ^0.8.0;

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

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

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

// File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol

pragma solidity ^0.8.0;

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

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

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

// File: @openzeppelin/contracts/token/ERC721/ERC721.sol

pragma solidity ^0.8.0;

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

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

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

// File: @openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: reflective.sol

pragma solidity ^0.8.4;

contract ReflectiveCollective is ERC721Enumerable, Ownable {
    using Address for address;
    using Counters for Counters.Counter;
    Counters.Counter private _tokenIdCounter;
    // Starting and stopping sale and presale
    bool public saleActive = false;
    bool public presaleActive = false;

    // Reserved for the team, customs, giveaways, collabs and so on.
    uint256 public reserved = 115;

    // Price of each token
    uint256 public price = 0.08 ether;

    // Maximum limit of tokens that can ever exist
    uint256 constant MAX_SUPPLY = 10000;

    // The base link that leads to the image / video of the token
    string public baseTokenURI;

    //to show moc
    string public blankURI;

    // List of addresses that have a number of reserved tokens for presale
    mapping(address => uint256) public presaleReserved;

    event Received(address, uint256);

    constructor(string memory newBaseURI)
        ERC721("Reflective Collective", "RC")
    {
        setBaseURI(newBaseURI);
    }

    // Override so the openzeppelin tokenURI() method will use this method to create the full tokenURI instead
    function _baseURI() internal view virtual override returns (string memory) {
        return baseTokenURI;
    }

    // See which address owns which tokens
    function tokensOfOwner(address addr)
        public
        view
        returns (uint256[] memory)
    {
        uint256 tokenCount = balanceOf(addr);
        uint256[] memory tokensId = new uint256[](tokenCount);
        for (uint256 i; i < tokenCount; i++) {
            tokensId[i] = tokenOfOwnerByIndex(addr, i);
        }
        return tokensId;
    }

    //Mint
    function mint(uint256 amount) public payable {
        require(
            presaleActive == true || saleActive == true,
            "sale is not activated yet"
        );

        if (presaleActive == true && saleActive == false) {
            mintPresale(amount);
        }
        if (saleActive == true && presaleActive == false) {
            mintToken(amount);
        }
    }

    // Exclusive presale minting
    function mintPresale(uint256 amount) internal {
        require(amount > 0, "amount should not be zero..");
        // uint256 reservedAmt = presaleReserved[msg.sender];
        require(
            amount <= presaleReserved[msg.sender],
            "mintPresale Erorr: minted reserved tokens or not allowed"
        );
        require(presaleActive, "Presale isn't active");
        require(
            _tokenIdCounter.current() + amount <= MAX_SUPPLY - reserved,
            "Can't mint more than max supply"
        );
        require(msg.value == price * amount, "Wrong amount of ETH sent");
        for (uint256 i = 1; i <= amount; i++) {
            _safeMint(msg.sender, _tokenIdCounter.current());
            _tokenIdCounter.increment();
            presaleReserved[msg.sender] -= 1;
        }
    }

    // Standard mint function1
    function mintToken(uint256 amount) internal {
        require(amount <= 10, "Only 10 tokens are allowed to mint once");
        require(msg.value == price * amount, "Wrong amount of ETH sent");
        require(saleActive, "Sale isn't active");
        require(
            _tokenIdCounter.current() + amount <= MAX_SUPPLY - reserved,
            "Can't mint more than max supply"
        );
        payable(owner()).transfer(msg.value);
        for (uint256 i = 1; i <= amount; i++) {
            _safeMint(msg.sender, _tokenIdCounter.current());
            _tokenIdCounter.increment();
        }
    }

    //withdraw ethers() from contract onlyy Admin
    function withdrawfunds() public payable onlyOwner {
        require(
            msg.sender == owner(),
            "withdrawfunds: only Owner can call this function"
        );
        require(
            address(this).balance != 0,
            "withdrawfunds :no balance is in contract"
        );
        payable(owner()).transfer(address(this).balance);
    }

    function checkContractBalance()
        external
        view
        onlyOwner
        returns (uint256 balance)
    {
        return address(this).balance;
    }

    // Admin minting function to reserve tokens for the team, collabs, customs and giveaways
    function mintReserved(uint256 _amount) public onlyOwner {
        // Limited to a publicly set amount
        require(_amount > 0, "Invalid amount is given");
        require(_amount <= reserved, "Can't reserve more than set amount");
        reserved -= _amount;
        for (uint256 i = 1; i <= _amount; i++) {
            _safeMint(msg.sender, _tokenIdCounter.current());
            _tokenIdCounter.increment();
        }
    }

    // Edit reserved presale spots
    function editPresaleReserved(address[] memory _a, uint256 _amount)
        public
        onlyOwner
    {
        for (uint256 i; i < _a.length; i++) {
            presaleReserved[_a[i]] = _amount;
        }
    }

    // Start and stop presale
    function setPresaleActive(bool val) public onlyOwner {
        presaleActive = val;
        if (val == true) {
            saleActive = false;
        }
    }

    // Start and stop sale
    function setSaleActive(bool val) public onlyOwner {
        saleActive = val;
        if (val == true) {
            presaleActive = false;
        }
    }

    // Set new baseURI
    function setBaseURI(string memory baseURI) public onlyOwner {
        baseTokenURI = baseURI;
    }

    // Set a different price in case ETH changes drastically
    function setPrice(uint256 newPrice) public onlyOwner {
        price = newPrice;
    }

    //get number of minted tokens
    function counter() public view returns (uint256) {
        return _tokenIdCounter.current() - 1;
    }

    //function to reveal the metadata of tokens
    function reveal() public onlyOwner {
        setBaseURI(
            "https://dyy85tm27l.execute-api.us-east-1.amazonaws.com/prod/api/token/"
        );
    }

    receive() external payable {
        emit Received(msg.sender, msg.value);
    }
    
    //function to get return remainingTokens for minting
    function remainingTokens() public view returns(uint256){
       return MAX_SUPPLY - reserved - _tokenIdCounter.current();
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"newBaseURI","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"","type":"address"},{"indexed":false,"internalType":"uint256","name":"","type":"uint256"}],"name":"Received","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseTokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"blankURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"checkContractBalance","outputs":[{"internalType":"uint256","name":"balance","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"counter","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"_a","type":"address[]"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"editPresaleReserved","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"mintReserved","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":"presaleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"presaleReserved","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"remainingTokens","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reserved","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"reveal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"saleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"val","type":"bool"}],"name":"setPresaleActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newPrice","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"val","type":"bool"}],"name":"setSaleActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"addr","type":"address"}],"name":"tokensOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"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":"withdrawfunds","outputs":[],"stateMutability":"payable","type":"function"},{"stateMutability":"payable","type":"receive"}]

6080604052600c805461ffff191690556073600d5567011c37937e080000600e553480156200002d57600080fd5b5060405162002f0e38038062002f0e833981016040819052620000509162000268565b604080518082018252601581527f5265666c65637469766520436f6c6c6563746976650000000000000000000000602080830191825283518085019094526002845261524360f01b908401528151919291620000af91600091620001c2565b508051620000c5906001906020840190620001c2565b505050620000e2620000dc620000f460201b60201c565b620000f8565b620000ed816200014a565b5062000397565b3390565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600a546001600160a01b03163314620001a95760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640160405180910390fd5b8051620001be90600f906020840190620001c2565b5050565b828054620001d09062000344565b90600052602060002090601f016020900481019282620001f457600085556200023f565b82601f106200020f57805160ff19168380011785556200023f565b828001600101855582156200023f579182015b828111156200023f57825182559160200191906001019062000222565b506200024d92915062000251565b5090565b5b808211156200024d576000815560010162000252565b600060208083850312156200027c57600080fd5b82516001600160401b03808211156200029457600080fd5b818501915085601f830112620002a957600080fd5b815181811115620002be57620002be62000381565b604051601f8201601f19908116603f01168101908382118183101715620002e957620002e962000381565b8160405282815288868487010111156200030257600080fd5b600093505b8284101562000326578484018601518185018701529285019262000307565b82841115620003385760008684830101525b98975050505050505050565b600181811c908216806200035957607f821691505b602082108114156200037b57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b612b6780620003a76000396000f3fe6080604052600436106102345760003560e01c8063715018a61161012e578063a22cb465116100ab578063c87b56dd1161006f578063c87b56dd1461067d578063d547cfb71461069d578063e985e9c5146106b2578063f2fde38b146106fb578063fe60d12c1461071b57600080fd5b8063a22cb465146105f3578063a475b5dd14610613578063b708781214610628578063b88d4fde14610648578063bf5839031461066857600080fd5b806395d89b41116100f257806395d89b41146105805780639a5d140b14610595578063a03573b9146105b5578063a035b1fe146105ca578063a0712d68146105e057600080fd5b8063715018a6146104e0578063841718a6146104f55780638462151c146105155780638da5cb5b1461054257806391b7f5ed1461056057600080fd5b806342842e0e116101bc57806361bc221a1161018057806361bc221a146104695780636352211e1461047e57806368428a1b1461049e5780636c343ffe146104b857806370a08231146104c057600080fd5b806342842e0e146103d55780634f6ccce7146103f557806350312c9e1461041557806353135ca01461042a57806355f804b31461044957600080fd5b806318160ddd1161020357806318160ddd1461032957806323b872dd146103485780632f745c591461036857806339c36fa0146103885780633f8121a2146103b557600080fd5b806301ffc9a71461027857806306fdde03146102ad578063081812fc146102cf578063095ea7b31461030757600080fd5b3661027357604080513381523460208201527f88a5966d370b9919b20f3e2c13ff65706f196a4e32cc2c12bf57088f88525874910160405180910390a1005b600080fd5b34801561028457600080fd5b506102986102933660046126db565b610731565b60405190151581526020015b60405180910390f35b3480156102b957600080fd5b506102c261075c565b6040516102a49190612853565b3480156102db57600080fd5b506102ef6102ea36600461275e565b6107ee565b6040516001600160a01b0390911681526020016102a4565b34801561031357600080fd5b506103276103223660046125dc565b610888565b005b34801561033557600080fd5b506008545b6040519081526020016102a4565b34801561035457600080fd5b506103276103633660046124fa565b61099e565b34801561037457600080fd5b5061033a6103833660046125dc565b6109cf565b34801561039457600080fd5b5061033a6103a33660046124ac565b60116020526000908152604090205481565b3480156103c157600080fd5b506103276103d03660046126c0565b610a65565b3480156103e157600080fd5b506103276103f03660046124fa565b610abe565b34801561040157600080fd5b5061033a61041036600461275e565b610ad9565b34801561042157600080fd5b5061033a610b6c565b34801561043657600080fd5b50600c5461029890610100900460ff1681565b34801561045557600080fd5b50610327610464366004612715565b610b9e565b34801561047557600080fd5b5061033a610bdf565b34801561048a57600080fd5b506102ef61049936600461275e565b610bfb565b3480156104aa57600080fd5b50600c546102989060ff1681565b610327610c72565b3480156104cc57600080fd5b5061033a6104db3660046124ac565b610da6565b3480156104ec57600080fd5b50610327610e2d565b34801561050157600080fd5b506103276105103660046126c0565b610e63565b34801561052157600080fd5b506105356105303660046124ac565b610eb4565b6040516102a4919061280f565b34801561054e57600080fd5b50600a546001600160a01b03166102ef565b34801561056c57600080fd5b5061032761057b36600461275e565b610f56565b34801561058c57600080fd5b506102c2610f85565b3480156105a157600080fd5b506103276105b036600461275e565b610f94565b3480156105c157600080fd5b506102c26110bf565b3480156105d657600080fd5b5061033a600e5481565b6103276105ee36600461275e565b61114d565b3480156105ff57600080fd5b5061032761060e3660046125b2565b611217565b34801561061f57600080fd5b506103276112dc565b34801561063457600080fd5b50610327610643366004612606565b611327565b34801561065457600080fd5b50610327610663366004612536565b6113b3565b34801561067457600080fd5b5061033a6113eb565b34801561068957600080fd5b506102c261069836600461275e565b611405565b3480156106a957600080fd5b506102c26114e0565b3480156106be57600080fd5b506102986106cd3660046124c7565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561070757600080fd5b506103276107163660046124ac565b6114ed565b34801561072757600080fd5b5061033a600d5481565b60006001600160e01b0319821663780e9d6360e01b1480610756575061075682611585565b92915050565b60606000805461076b906129fd565b80601f0160208091040260200160405190810160405280929190818152602001828054610797906129fd565b80156107e45780601f106107b9576101008083540402835291602001916107e4565b820191906000526020600020905b8154815290600101906020018083116107c757829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b031661086c5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600061089382610bfb565b9050806001600160a01b0316836001600160a01b031614156109015760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610863565b336001600160a01b038216148061091d575061091d81336106cd565b61098f5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610863565b61099983836115d5565b505050565b6109a83382611643565b6109c45760405162461bcd60e51b8152600401610863906128ed565b61099983838361173a565b60006109da83610da6565b8210610a3c5760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610863565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600a546001600160a01b03163314610a8f5760405162461bcd60e51b8152600401610863906128b8565b600c805461ff0019166101008315159081029190911790915560011415610abb57600c805460ff191690555b50565b610999838383604051806020016040528060008152506113b3565b6000610ae460085490565b8210610b475760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610863565b60088281548110610b5a57610b5a612aa9565b90600052602060002001549050919050565b600a546000906001600160a01b03163314610b995760405162461bcd60e51b8152600401610863906128b8565b504790565b600a546001600160a01b03163314610bc85760405162461bcd60e51b8152600401610863906128b8565b8051610bdb90600f90602084019061238f565b5050565b60006001610bec600b5490565b610bf691906129ba565b905090565b6000818152600260205260408120546001600160a01b0316806107565760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610863565b600a546001600160a01b03163314610c9c5760405162461bcd60e51b8152600401610863906128b8565b600a546001600160a01b03163314610d0f5760405162461bcd60e51b815260206004820152603060248201527f776974686472617766756e64733a206f6e6c79204f776e65722063616e20636160448201526f3636103a3434b990333ab731ba34b7b760811b6064820152608401610863565b47610d6d5760405162461bcd60e51b815260206004820152602860248201527f776974686472617766756e6473203a6e6f2062616c616e636520697320696e2060448201526718dbdb9d1c9858dd60c21b6064820152608401610863565b600a546040516001600160a01b03909116904780156108fc02916000818181858888f19350505050158015610abb573d6000803e3d6000fd5b60006001600160a01b038216610e115760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610863565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b03163314610e575760405162461bcd60e51b8152600401610863906128b8565b610e6160006118e5565b565b600a546001600160a01b03163314610e8d5760405162461bcd60e51b8152600401610863906128b8565b600c805460ff191682151590811790915560011415610abb57600c805461ff001916905550565b60606000610ec183610da6565b905060008167ffffffffffffffff811115610ede57610ede612abf565b604051908082528060200260200182016040528015610f07578160200160208202803683370190505b50905060005b82811015610f4e57610f1f85826109cf565b828281518110610f3157610f31612aa9565b602090810291909101015280610f4681612a38565b915050610f0d565b509392505050565b600a546001600160a01b03163314610f805760405162461bcd60e51b8152600401610863906128b8565b600e55565b60606001805461076b906129fd565b600a546001600160a01b03163314610fbe5760405162461bcd60e51b8152600401610863906128b8565b6000811161100e5760405162461bcd60e51b815260206004820152601760248201527f496e76616c696420616d6f756e7420697320676976656e0000000000000000006044820152606401610863565b600d5481111561106b5760405162461bcd60e51b815260206004820152602260248201527f43616e27742072657365727665206d6f7265207468616e2073657420616d6f756044820152611b9d60f21b6064820152608401610863565b80600d600082825461107d91906129ba565b90915550600190505b818111610bdb5761109f3361109a600b5490565b611937565b6110ad600b80546001019055565b806110b781612a38565b915050611086565b601080546110cc906129fd565b80601f01602080910402602001604051908101604052809291908181526020018280546110f8906129fd565b80156111455780601f1061111a57610100808354040283529160200191611145565b820191906000526020600020905b81548152906001019060200180831161112857829003601f168201915b505050505081565b600c5460ff610100909104161515600114806111705750600c5460ff1615156001145b6111bc5760405162461bcd60e51b815260206004820152601960248201527f73616c65206973206e6f742061637469766174656420796574000000000000006044820152606401610863565b600c5460ff61010090910416151560011480156111dc5750600c5460ff16155b156111ea576111ea81611951565b600c5460ff16151560011480156112095750600c54610100900460ff16155b15610abb57610abb81611b99565b6001600160a01b0382163314156112705760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610863565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600a546001600160a01b031633146113065760405162461bcd60e51b8152600401610863906128b8565b610e61604051806080016040528060468152602001612aec60469139610b9e565b600a546001600160a01b031633146113515760405162461bcd60e51b8152600401610863906128b8565b60005b825181101561099957816011600085848151811061137457611374612aa9565b60200260200101516001600160a01b03166001600160a01b031681526020019081526020016000208190555080806113ab90612a38565b915050611354565b6113bd3383611643565b6113d95760405162461bcd60e51b8152600401610863906128ed565b6113e584848484611d79565b50505050565b60006113f6600b5490565b600d54610bec906127106129ba565b6000818152600260205260409020546060906001600160a01b03166114845760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610863565b600061148e611dac565b905060008151116114ae57604051806020016040528060008152506114d9565b806114b884611dbb565b6040516020016114c99291906127a3565b6040516020818303038152906040525b9392505050565b600f80546110cc906129fd565b600a546001600160a01b031633146115175760405162461bcd60e51b8152600401610863906128b8565b6001600160a01b03811661157c5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610863565b610abb816118e5565b60006001600160e01b031982166380ac58cd60e01b14806115b657506001600160e01b03198216635b5e139f60e01b145b8061075657506301ffc9a760e01b6001600160e01b0319831614610756565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061160a82610bfb565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166116bc5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610863565b60006116c783610bfb565b9050806001600160a01b0316846001600160a01b031614806117025750836001600160a01b03166116f7846107ee565b6001600160a01b0316145b8061173257506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b031661174d82610bfb565b6001600160a01b0316146117b55760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610863565b6001600160a01b0382166118175760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610863565b611822838383611eb9565b61182d6000826115d5565b6001600160a01b03831660009081526003602052604081208054600192906118569084906129ba565b90915550506001600160a01b038216600090815260036020526040812080546001929061188490849061296f565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b610bdb828260405180602001604052806000815250611f71565b600081116119a15760405162461bcd60e51b815260206004820152601b60248201527f616d6f756e742073686f756c64206e6f74206265207a65726f2e2e00000000006044820152606401610863565b33600090815260116020526040902054811115611a265760405162461bcd60e51b815260206004820152603860248201527f6d696e7450726573616c652045726f72723a206d696e7465642072657365727660448201527f656420746f6b656e73206f72206e6f7420616c6c6f77656400000000000000006064820152608401610863565b600c54610100900460ff16611a745760405162461bcd60e51b815260206004820152601460248201527350726573616c652069736e27742061637469766560601b6044820152606401610863565b600d54611a83906127106129ba565b81611a8d600b5490565b611a97919061296f565b1115611ae55760405162461bcd60e51b815260206004820152601f60248201527f43616e2774206d696e74206d6f7265207468616e206d617820737570706c79006044820152606401610863565b80600e54611af3919061299b565b3414611b3c5760405162461bcd60e51b815260206004820152601860248201527715dc9bdb99c8185b5bdd5b9d081bd988115512081cd95b9d60421b6044820152606401610863565b60015b818111610bdb57611b533361109a600b5490565b611b61600b80546001019055565b336000908152601160205260408120805460019290611b819084906129ba565b90915550819050611b9181612a38565b915050611b3f565b600a811115611bfa5760405162461bcd60e51b815260206004820152602760248201527f4f6e6c7920313020746f6b656e732061726520616c6c6f77656420746f206d696044820152666e74206f6e636560c81b6064820152608401610863565b80600e54611c08919061299b565b3414611c515760405162461bcd60e51b815260206004820152601860248201527715dc9bdb99c8185b5bdd5b9d081bd988115512081cd95b9d60421b6044820152606401610863565b600c5460ff16611c975760405162461bcd60e51b815260206004820152601160248201527053616c652069736e27742061637469766560781b6044820152606401610863565b600d54611ca6906127106129ba565b81611cb0600b5490565b611cba919061296f565b1115611d085760405162461bcd60e51b815260206004820152601f60248201527f43616e2774206d696e74206d6f7265207468616e206d617820737570706c79006044820152606401610863565b600a546040516001600160a01b03909116903480156108fc02916000818181858888f19350505050158015611d41573d6000803e3d6000fd5b5060015b818111610bdb57611d593361109a600b5490565b611d67600b80546001019055565b80611d7181612a38565b915050611d45565b611d8484848461173a565b611d9084848484611fa4565b6113e55760405162461bcd60e51b815260040161086390612866565b6060600f805461076b906129fd565b606081611ddf5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611e095780611df381612a38565b9150611e029050600a83612987565b9150611de3565b60008167ffffffffffffffff811115611e2457611e24612abf565b6040519080825280601f01601f191660200182016040528015611e4e576020820181803683370190505b5090505b841561173257611e636001836129ba565b9150611e70600a86612a53565b611e7b90603061296f565b60f81b818381518110611e9057611e90612aa9565b60200101906001600160f81b031916908160001a905350611eb2600a86612987565b9450611e52565b6001600160a01b038316611f1457611f0f81600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b611f37565b816001600160a01b0316836001600160a01b031614611f3757611f3783826120b1565b6001600160a01b038216611f4e576109998161214e565b826001600160a01b0316826001600160a01b0316146109995761099982826121fd565b611f7b8383612241565b611f886000848484611fa4565b6109995760405162461bcd60e51b815260040161086390612866565b60006001600160a01b0384163b156120a657604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611fe89033908990889088906004016127d2565b602060405180830381600087803b15801561200257600080fd5b505af1925050508015612032575060408051601f3d908101601f1916820190925261202f918101906126f8565b60015b61208c573d808015612060576040519150601f19603f3d011682016040523d82523d6000602084013e612065565b606091505b5080516120845760405162461bcd60e51b815260040161086390612866565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611732565b506001949350505050565b600060016120be84610da6565b6120c891906129ba565b60008381526007602052604090205490915080821461211b576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090612160906001906129ba565b6000838152600960205260408120546008805493945090928490811061218857612188612aa9565b9060005260206000200154905080600883815481106121a9576121a9612aa9565b60009182526020808320909101929092558281526009909152604080822084905585825281205560088054806121e1576121e1612a93565b6001900381819060005260206000200160009055905550505050565b600061220883610da6565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b0382166122975760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610863565b6000818152600260205260409020546001600160a01b0316156122fc5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610863565b61230860008383611eb9565b6001600160a01b038216600090815260036020526040812080546001929061233190849061296f565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b82805461239b906129fd565b90600052602060002090601f0160209004810192826123bd5760008555612403565b82601f106123d657805160ff1916838001178555612403565b82800160010185558215612403579182015b828111156124035782518255916020019190600101906123e8565b5061240f929150612413565b5090565b5b8082111561240f5760008155600101612414565b600067ffffffffffffffff83111561244257612442612abf565b612455601f8401601f191660200161293e565b905082815283838301111561246957600080fd5b828260208301376000602084830101529392505050565b80356001600160a01b038116811461249757600080fd5b919050565b8035801515811461249757600080fd5b6000602082840312156124be57600080fd5b6114d982612480565b600080604083850312156124da57600080fd5b6124e383612480565b91506124f160208401612480565b90509250929050565b60008060006060848603121561250f57600080fd5b61251884612480565b925061252660208501612480565b9150604084013590509250925092565b6000806000806080858703121561254c57600080fd5b61255585612480565b935061256360208601612480565b925060408501359150606085013567ffffffffffffffff81111561258657600080fd5b8501601f8101871361259757600080fd5b6125a687823560208401612428565b91505092959194509250565b600080604083850312156125c557600080fd5b6125ce83612480565b91506124f16020840161249c565b600080604083850312156125ef57600080fd5b6125f883612480565b946020939093013593505050565b6000806040838503121561261957600080fd5b823567ffffffffffffffff8082111561263157600080fd5b818501915085601f83011261264557600080fd5b813560208282111561265957612659612abf565b8160051b925061266a81840161293e565b8281528181019085830185870184018b101561268557600080fd5b600096505b848710156126af5761269b81612480565b83526001969096019591830191830161268a565b509997909101359750505050505050565b6000602082840312156126d257600080fd5b6114d98261249c565b6000602082840312156126ed57600080fd5b81356114d981612ad5565b60006020828403121561270a57600080fd5b81516114d981612ad5565b60006020828403121561272757600080fd5b813567ffffffffffffffff81111561273e57600080fd5b8201601f8101841361274f57600080fd5b61173284823560208401612428565b60006020828403121561277057600080fd5b5035919050565b6000815180845261278f8160208601602086016129d1565b601f01601f19169290920160200192915050565b600083516127b58184602088016129d1565b8351908301906127c98183602088016129d1565b01949350505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061280590830184612777565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b818110156128475783518352928401929184019160010161282b565b50909695505050505050565b6020815260006114d96020830184612777565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b604051601f8201601f1916810167ffffffffffffffff8111828210171561296757612967612abf565b604052919050565b6000821982111561298257612982612a67565b500190565b60008261299657612996612a7d565b500490565b60008160001904831182151516156129b5576129b5612a67565b500290565b6000828210156129cc576129cc612a67565b500390565b60005b838110156129ec5781810151838201526020016129d4565b838111156113e55750506000910152565b600181811c90821680612a1157607f821691505b60208210811415612a3257634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612a4c57612a4c612a67565b5060010190565b600082612a6257612a62612a7d565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610abb57600080fdfe68747470733a2f2f6479793835746d32376c2e657865637574652d6170692e75732d656173742d312e616d617a6f6e6177732e636f6d2f70726f642f6170692f746f6b656e2fa2646970667358221220547794f92d27bc33360f903eed070fd7fcdd8ae6949b635e16fc5ae47dc5c56764736f6c634300080700330000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000004868747470733a2f2f6479793835746d32376c2e657865637574652d6170692e75732d656173742d312e616d617a6f6e6177732e636f6d2f70726f642f6170692f6d6f63646174612f000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106102345760003560e01c8063715018a61161012e578063a22cb465116100ab578063c87b56dd1161006f578063c87b56dd1461067d578063d547cfb71461069d578063e985e9c5146106b2578063f2fde38b146106fb578063fe60d12c1461071b57600080fd5b8063a22cb465146105f3578063a475b5dd14610613578063b708781214610628578063b88d4fde14610648578063bf5839031461066857600080fd5b806395d89b41116100f257806395d89b41146105805780639a5d140b14610595578063a03573b9146105b5578063a035b1fe146105ca578063a0712d68146105e057600080fd5b8063715018a6146104e0578063841718a6146104f55780638462151c146105155780638da5cb5b1461054257806391b7f5ed1461056057600080fd5b806342842e0e116101bc57806361bc221a1161018057806361bc221a146104695780636352211e1461047e57806368428a1b1461049e5780636c343ffe146104b857806370a08231146104c057600080fd5b806342842e0e146103d55780634f6ccce7146103f557806350312c9e1461041557806353135ca01461042a57806355f804b31461044957600080fd5b806318160ddd1161020357806318160ddd1461032957806323b872dd146103485780632f745c591461036857806339c36fa0146103885780633f8121a2146103b557600080fd5b806301ffc9a71461027857806306fdde03146102ad578063081812fc146102cf578063095ea7b31461030757600080fd5b3661027357604080513381523460208201527f88a5966d370b9919b20f3e2c13ff65706f196a4e32cc2c12bf57088f88525874910160405180910390a1005b600080fd5b34801561028457600080fd5b506102986102933660046126db565b610731565b60405190151581526020015b60405180910390f35b3480156102b957600080fd5b506102c261075c565b6040516102a49190612853565b3480156102db57600080fd5b506102ef6102ea36600461275e565b6107ee565b6040516001600160a01b0390911681526020016102a4565b34801561031357600080fd5b506103276103223660046125dc565b610888565b005b34801561033557600080fd5b506008545b6040519081526020016102a4565b34801561035457600080fd5b506103276103633660046124fa565b61099e565b34801561037457600080fd5b5061033a6103833660046125dc565b6109cf565b34801561039457600080fd5b5061033a6103a33660046124ac565b60116020526000908152604090205481565b3480156103c157600080fd5b506103276103d03660046126c0565b610a65565b3480156103e157600080fd5b506103276103f03660046124fa565b610abe565b34801561040157600080fd5b5061033a61041036600461275e565b610ad9565b34801561042157600080fd5b5061033a610b6c565b34801561043657600080fd5b50600c5461029890610100900460ff1681565b34801561045557600080fd5b50610327610464366004612715565b610b9e565b34801561047557600080fd5b5061033a610bdf565b34801561048a57600080fd5b506102ef61049936600461275e565b610bfb565b3480156104aa57600080fd5b50600c546102989060ff1681565b610327610c72565b3480156104cc57600080fd5b5061033a6104db3660046124ac565b610da6565b3480156104ec57600080fd5b50610327610e2d565b34801561050157600080fd5b506103276105103660046126c0565b610e63565b34801561052157600080fd5b506105356105303660046124ac565b610eb4565b6040516102a4919061280f565b34801561054e57600080fd5b50600a546001600160a01b03166102ef565b34801561056c57600080fd5b5061032761057b36600461275e565b610f56565b34801561058c57600080fd5b506102c2610f85565b3480156105a157600080fd5b506103276105b036600461275e565b610f94565b3480156105c157600080fd5b506102c26110bf565b3480156105d657600080fd5b5061033a600e5481565b6103276105ee36600461275e565b61114d565b3480156105ff57600080fd5b5061032761060e3660046125b2565b611217565b34801561061f57600080fd5b506103276112dc565b34801561063457600080fd5b50610327610643366004612606565b611327565b34801561065457600080fd5b50610327610663366004612536565b6113b3565b34801561067457600080fd5b5061033a6113eb565b34801561068957600080fd5b506102c261069836600461275e565b611405565b3480156106a957600080fd5b506102c26114e0565b3480156106be57600080fd5b506102986106cd3660046124c7565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561070757600080fd5b506103276107163660046124ac565b6114ed565b34801561072757600080fd5b5061033a600d5481565b60006001600160e01b0319821663780e9d6360e01b1480610756575061075682611585565b92915050565b60606000805461076b906129fd565b80601f0160208091040260200160405190810160405280929190818152602001828054610797906129fd565b80156107e45780601f106107b9576101008083540402835291602001916107e4565b820191906000526020600020905b8154815290600101906020018083116107c757829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b031661086c5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600061089382610bfb565b9050806001600160a01b0316836001600160a01b031614156109015760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610863565b336001600160a01b038216148061091d575061091d81336106cd565b61098f5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610863565b61099983836115d5565b505050565b6109a83382611643565b6109c45760405162461bcd60e51b8152600401610863906128ed565b61099983838361173a565b60006109da83610da6565b8210610a3c5760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610863565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600a546001600160a01b03163314610a8f5760405162461bcd60e51b8152600401610863906128b8565b600c805461ff0019166101008315159081029190911790915560011415610abb57600c805460ff191690555b50565b610999838383604051806020016040528060008152506113b3565b6000610ae460085490565b8210610b475760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610863565b60088281548110610b5a57610b5a612aa9565b90600052602060002001549050919050565b600a546000906001600160a01b03163314610b995760405162461bcd60e51b8152600401610863906128b8565b504790565b600a546001600160a01b03163314610bc85760405162461bcd60e51b8152600401610863906128b8565b8051610bdb90600f90602084019061238f565b5050565b60006001610bec600b5490565b610bf691906129ba565b905090565b6000818152600260205260408120546001600160a01b0316806107565760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610863565b600a546001600160a01b03163314610c9c5760405162461bcd60e51b8152600401610863906128b8565b600a546001600160a01b03163314610d0f5760405162461bcd60e51b815260206004820152603060248201527f776974686472617766756e64733a206f6e6c79204f776e65722063616e20636160448201526f3636103a3434b990333ab731ba34b7b760811b6064820152608401610863565b47610d6d5760405162461bcd60e51b815260206004820152602860248201527f776974686472617766756e6473203a6e6f2062616c616e636520697320696e2060448201526718dbdb9d1c9858dd60c21b6064820152608401610863565b600a546040516001600160a01b03909116904780156108fc02916000818181858888f19350505050158015610abb573d6000803e3d6000fd5b60006001600160a01b038216610e115760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610863565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b03163314610e575760405162461bcd60e51b8152600401610863906128b8565b610e6160006118e5565b565b600a546001600160a01b03163314610e8d5760405162461bcd60e51b8152600401610863906128b8565b600c805460ff191682151590811790915560011415610abb57600c805461ff001916905550565b60606000610ec183610da6565b905060008167ffffffffffffffff811115610ede57610ede612abf565b604051908082528060200260200182016040528015610f07578160200160208202803683370190505b50905060005b82811015610f4e57610f1f85826109cf565b828281518110610f3157610f31612aa9565b602090810291909101015280610f4681612a38565b915050610f0d565b509392505050565b600a546001600160a01b03163314610f805760405162461bcd60e51b8152600401610863906128b8565b600e55565b60606001805461076b906129fd565b600a546001600160a01b03163314610fbe5760405162461bcd60e51b8152600401610863906128b8565b6000811161100e5760405162461bcd60e51b815260206004820152601760248201527f496e76616c696420616d6f756e7420697320676976656e0000000000000000006044820152606401610863565b600d5481111561106b5760405162461bcd60e51b815260206004820152602260248201527f43616e27742072657365727665206d6f7265207468616e2073657420616d6f756044820152611b9d60f21b6064820152608401610863565b80600d600082825461107d91906129ba565b90915550600190505b818111610bdb5761109f3361109a600b5490565b611937565b6110ad600b80546001019055565b806110b781612a38565b915050611086565b601080546110cc906129fd565b80601f01602080910402602001604051908101604052809291908181526020018280546110f8906129fd565b80156111455780601f1061111a57610100808354040283529160200191611145565b820191906000526020600020905b81548152906001019060200180831161112857829003601f168201915b505050505081565b600c5460ff610100909104161515600114806111705750600c5460ff1615156001145b6111bc5760405162461bcd60e51b815260206004820152601960248201527f73616c65206973206e6f742061637469766174656420796574000000000000006044820152606401610863565b600c5460ff61010090910416151560011480156111dc5750600c5460ff16155b156111ea576111ea81611951565b600c5460ff16151560011480156112095750600c54610100900460ff16155b15610abb57610abb81611b99565b6001600160a01b0382163314156112705760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610863565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600a546001600160a01b031633146113065760405162461bcd60e51b8152600401610863906128b8565b610e61604051806080016040528060468152602001612aec60469139610b9e565b600a546001600160a01b031633146113515760405162461bcd60e51b8152600401610863906128b8565b60005b825181101561099957816011600085848151811061137457611374612aa9565b60200260200101516001600160a01b03166001600160a01b031681526020019081526020016000208190555080806113ab90612a38565b915050611354565b6113bd3383611643565b6113d95760405162461bcd60e51b8152600401610863906128ed565b6113e584848484611d79565b50505050565b60006113f6600b5490565b600d54610bec906127106129ba565b6000818152600260205260409020546060906001600160a01b03166114845760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610863565b600061148e611dac565b905060008151116114ae57604051806020016040528060008152506114d9565b806114b884611dbb565b6040516020016114c99291906127a3565b6040516020818303038152906040525b9392505050565b600f80546110cc906129fd565b600a546001600160a01b031633146115175760405162461bcd60e51b8152600401610863906128b8565b6001600160a01b03811661157c5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610863565b610abb816118e5565b60006001600160e01b031982166380ac58cd60e01b14806115b657506001600160e01b03198216635b5e139f60e01b145b8061075657506301ffc9a760e01b6001600160e01b0319831614610756565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061160a82610bfb565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166116bc5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610863565b60006116c783610bfb565b9050806001600160a01b0316846001600160a01b031614806117025750836001600160a01b03166116f7846107ee565b6001600160a01b0316145b8061173257506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b031661174d82610bfb565b6001600160a01b0316146117b55760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610863565b6001600160a01b0382166118175760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610863565b611822838383611eb9565b61182d6000826115d5565b6001600160a01b03831660009081526003602052604081208054600192906118569084906129ba565b90915550506001600160a01b038216600090815260036020526040812080546001929061188490849061296f565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b610bdb828260405180602001604052806000815250611f71565b600081116119a15760405162461bcd60e51b815260206004820152601b60248201527f616d6f756e742073686f756c64206e6f74206265207a65726f2e2e00000000006044820152606401610863565b33600090815260116020526040902054811115611a265760405162461bcd60e51b815260206004820152603860248201527f6d696e7450726573616c652045726f72723a206d696e7465642072657365727660448201527f656420746f6b656e73206f72206e6f7420616c6c6f77656400000000000000006064820152608401610863565b600c54610100900460ff16611a745760405162461bcd60e51b815260206004820152601460248201527350726573616c652069736e27742061637469766560601b6044820152606401610863565b600d54611a83906127106129ba565b81611a8d600b5490565b611a97919061296f565b1115611ae55760405162461bcd60e51b815260206004820152601f60248201527f43616e2774206d696e74206d6f7265207468616e206d617820737570706c79006044820152606401610863565b80600e54611af3919061299b565b3414611b3c5760405162461bcd60e51b815260206004820152601860248201527715dc9bdb99c8185b5bdd5b9d081bd988115512081cd95b9d60421b6044820152606401610863565b60015b818111610bdb57611b533361109a600b5490565b611b61600b80546001019055565b336000908152601160205260408120805460019290611b819084906129ba565b90915550819050611b9181612a38565b915050611b3f565b600a811115611bfa5760405162461bcd60e51b815260206004820152602760248201527f4f6e6c7920313020746f6b656e732061726520616c6c6f77656420746f206d696044820152666e74206f6e636560c81b6064820152608401610863565b80600e54611c08919061299b565b3414611c515760405162461bcd60e51b815260206004820152601860248201527715dc9bdb99c8185b5bdd5b9d081bd988115512081cd95b9d60421b6044820152606401610863565b600c5460ff16611c975760405162461bcd60e51b815260206004820152601160248201527053616c652069736e27742061637469766560781b6044820152606401610863565b600d54611ca6906127106129ba565b81611cb0600b5490565b611cba919061296f565b1115611d085760405162461bcd60e51b815260206004820152601f60248201527f43616e2774206d696e74206d6f7265207468616e206d617820737570706c79006044820152606401610863565b600a546040516001600160a01b03909116903480156108fc02916000818181858888f19350505050158015611d41573d6000803e3d6000fd5b5060015b818111610bdb57611d593361109a600b5490565b611d67600b80546001019055565b80611d7181612a38565b915050611d45565b611d8484848461173a565b611d9084848484611fa4565b6113e55760405162461bcd60e51b815260040161086390612866565b6060600f805461076b906129fd565b606081611ddf5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611e095780611df381612a38565b9150611e029050600a83612987565b9150611de3565b60008167ffffffffffffffff811115611e2457611e24612abf565b6040519080825280601f01601f191660200182016040528015611e4e576020820181803683370190505b5090505b841561173257611e636001836129ba565b9150611e70600a86612a53565b611e7b90603061296f565b60f81b818381518110611e9057611e90612aa9565b60200101906001600160f81b031916908160001a905350611eb2600a86612987565b9450611e52565b6001600160a01b038316611f1457611f0f81600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b611f37565b816001600160a01b0316836001600160a01b031614611f3757611f3783826120b1565b6001600160a01b038216611f4e576109998161214e565b826001600160a01b0316826001600160a01b0316146109995761099982826121fd565b611f7b8383612241565b611f886000848484611fa4565b6109995760405162461bcd60e51b815260040161086390612866565b60006001600160a01b0384163b156120a657604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611fe89033908990889088906004016127d2565b602060405180830381600087803b15801561200257600080fd5b505af1925050508015612032575060408051601f3d908101601f1916820190925261202f918101906126f8565b60015b61208c573d808015612060576040519150601f19603f3d011682016040523d82523d6000602084013e612065565b606091505b5080516120845760405162461bcd60e51b815260040161086390612866565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611732565b506001949350505050565b600060016120be84610da6565b6120c891906129ba565b60008381526007602052604090205490915080821461211b576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090612160906001906129ba565b6000838152600960205260408120546008805493945090928490811061218857612188612aa9565b9060005260206000200154905080600883815481106121a9576121a9612aa9565b60009182526020808320909101929092558281526009909152604080822084905585825281205560088054806121e1576121e1612a93565b6001900381819060005260206000200160009055905550505050565b600061220883610da6565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b0382166122975760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610863565b6000818152600260205260409020546001600160a01b0316156122fc5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610863565b61230860008383611eb9565b6001600160a01b038216600090815260036020526040812080546001929061233190849061296f565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b82805461239b906129fd565b90600052602060002090601f0160209004810192826123bd5760008555612403565b82601f106123d657805160ff1916838001178555612403565b82800160010185558215612403579182015b828111156124035782518255916020019190600101906123e8565b5061240f929150612413565b5090565b5b8082111561240f5760008155600101612414565b600067ffffffffffffffff83111561244257612442612abf565b612455601f8401601f191660200161293e565b905082815283838301111561246957600080fd5b828260208301376000602084830101529392505050565b80356001600160a01b038116811461249757600080fd5b919050565b8035801515811461249757600080fd5b6000602082840312156124be57600080fd5b6114d982612480565b600080604083850312156124da57600080fd5b6124e383612480565b91506124f160208401612480565b90509250929050565b60008060006060848603121561250f57600080fd5b61251884612480565b925061252660208501612480565b9150604084013590509250925092565b6000806000806080858703121561254c57600080fd5b61255585612480565b935061256360208601612480565b925060408501359150606085013567ffffffffffffffff81111561258657600080fd5b8501601f8101871361259757600080fd5b6125a687823560208401612428565b91505092959194509250565b600080604083850312156125c557600080fd5b6125ce83612480565b91506124f16020840161249c565b600080604083850312156125ef57600080fd5b6125f883612480565b946020939093013593505050565b6000806040838503121561261957600080fd5b823567ffffffffffffffff8082111561263157600080fd5b818501915085601f83011261264557600080fd5b813560208282111561265957612659612abf565b8160051b925061266a81840161293e565b8281528181019085830185870184018b101561268557600080fd5b600096505b848710156126af5761269b81612480565b83526001969096019591830191830161268a565b509997909101359750505050505050565b6000602082840312156126d257600080fd5b6114d98261249c565b6000602082840312156126ed57600080fd5b81356114d981612ad5565b60006020828403121561270a57600080fd5b81516114d981612ad5565b60006020828403121561272757600080fd5b813567ffffffffffffffff81111561273e57600080fd5b8201601f8101841361274f57600080fd5b61173284823560208401612428565b60006020828403121561277057600080fd5b5035919050565b6000815180845261278f8160208601602086016129d1565b601f01601f19169290920160200192915050565b600083516127b58184602088016129d1565b8351908301906127c98183602088016129d1565b01949350505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061280590830184612777565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b818110156128475783518352928401929184019160010161282b565b50909695505050505050565b6020815260006114d96020830184612777565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b604051601f8201601f1916810167ffffffffffffffff8111828210171561296757612967612abf565b604052919050565b6000821982111561298257612982612a67565b500190565b60008261299657612996612a7d565b500490565b60008160001904831182151516156129b5576129b5612a67565b500290565b6000828210156129cc576129cc612a67565b500390565b60005b838110156129ec5781810151838201526020016129d4565b838111156113e55750506000910152565b600181811c90821680612a1157607f821691505b60208210811415612a3257634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612a4c57612a4c612a67565b5060010190565b600082612a6257612a62612a7d565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610abb57600080fdfe68747470733a2f2f6479793835746d32376c2e657865637574652d6170692e75732d656173742d312e616d617a6f6e6177732e636f6d2f70726f642f6170692f746f6b656e2fa2646970667358221220547794f92d27bc33360f903eed070fd7fcdd8ae6949b635e16fc5ae47dc5c56764736f6c63430008070033

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

0000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000004868747470733a2f2f6479793835746d32376c2e657865637574652d6170692e75732d656173742d312e616d617a6f6e6177732e636f6d2f70726f642f6170692f6d6f63646174612f000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : newBaseURI (string): https://dyy85tm27l.execute-api.us-east-1.amazonaws.com/prod/api/mocdata/

-----Encoded View---------------
5 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000048
Arg [2] : 68747470733a2f2f6479793835746d32376c2e657865637574652d6170692e75
Arg [3] : 732d656173742d312e616d617a6f6e6177732e636f6d2f70726f642f6170692f
Arg [4] : 6d6f63646174612f000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

46333:6403:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52495:31;;;52504:10;6725:51:1;;52516:9:0;6807:2:1;6792:18;;6785:34;52495:31:0;;6698:18:1;52495:31:0;;;;;;;46333:6403;;;;;39867:300;;;;;;;;;;-1:-1:-1;39867:300:0;;;;;:::i;:::-;;:::i;:::-;;;7632:14:1;;7625:22;7607:41;;7595:2;7580:18;39867:300:0;;;;;;;;27031:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;28724:308::-;;;;;;;;;;-1:-1:-1;28724:308:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;6014:32:1;;;5996:51;;5984:2;5969:18;28724:308:0;5850:203:1;28247:411:0;;;;;;;;;;-1:-1:-1;28247:411:0;;;;;:::i;:::-;;:::i;:::-;;40670:113;;;;;;;;;;-1:-1:-1;40758:10:0;:17;40670:113;;;19768:25:1;;;19756:2;19741:18;40670:113:0;19622:177:1;29783:376:0;;;;;;;;;;-1:-1:-1;29783:376:0;;;;;:::i;:::-;;:::i;40251:343::-;;;;;;;;;;-1:-1:-1;40251:343:0;;;;;:::i;:::-;;:::i;47148:50::-;;;;;;;;;;-1:-1:-1;47148:50:0;;;;;:::i;:::-;;;;;;;;;;;;;;51428:163;;;;;;;;;;-1:-1:-1;51428:163:0;;;;;:::i;:::-;;:::i;30230:185::-;;;;;;;;;;-1:-1:-1;30230:185:0;;;;;:::i;:::-;;:::i;40860:320::-;;;;;;;;;;-1:-1:-1;40860:320:0;;;;;:::i;:::-;;:::i;50413:170::-;;;;;;;;;;;;;:::i;46604:33::-;;;;;;;;;;-1:-1:-1;46604:33:0;;;;;;;;;;;51819:101;;;;;;;;;;-1:-1:-1;51819:101:0;;;;;:::i;:::-;;:::i;52121:104::-;;;;;;;;;;;;;:::i;26638:326::-;;;;;;;;;;-1:-1:-1;26638:326:0;;;;;:::i;:::-;;:::i;46567:30::-;;;;;;;;;;-1:-1:-1;46567:30:0;;;;;;;;50031:374;;;:::i;26281:295::-;;;;;;;;;;-1:-1:-1;26281:295:0;;;;;:::i;:::-;;:::i;5823:94::-;;;;;;;;;;;;;:::i;51627:160::-;;;;;;;;;;-1:-1:-1;51627:160:0;;;;;:::i;:::-;;:::i;47664:369::-;;;;;;;;;;-1:-1:-1;47664:369:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;5172:87::-;;;;;;;;;;-1:-1:-1;5245:6:0;;-1:-1:-1;;;;;5245:6:0;5172:87;;51990:88;;;;;;;;;;-1:-1:-1;51990:88:0;;;;;:::i;:::-;;:::i;27200:104::-;;;;;;;;;;;;;:::i;50685:440::-;;;;;;;;;;-1:-1:-1;50685:440:0;;;;;:::i;:::-;;:::i;47041:22::-;;;;;;;;;;;;;:::i;46782:33::-;;;;;;;;;;;;;;;;48053:394;;;;;;:::i;:::-;;:::i;29104:327::-;;;;;;;;;;-1:-1:-1;29104:327:0;;;;;:::i;:::-;;:::i;52282:162::-;;;;;;;;;;;;;:::i;51169:220::-;;;;;;;;;;-1:-1:-1;51169:220:0;;;;;:::i;:::-;;:::i;30486:365::-;;;;;;;;;;-1:-1:-1;30486:365:0;;;;;:::i;:::-;;:::i;52604:129::-;;;;;;;;;;;;;:::i;27375:468::-;;;;;;;;;;-1:-1:-1;27375:468:0;;;;;:::i;:::-;;:::i;46987:26::-;;;;;;;;;;;;;:::i;29502:214::-;;;;;;;;;;-1:-1:-1;29502:214:0;;;;;:::i;:::-;-1:-1:-1;;;;;29673:25:0;;;29644:4;29673:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;29502:214;6072:229;;;;;;;;;;-1:-1:-1;6072:229:0;;;;;:::i;:::-;;:::i;46716:29::-;;;;;;;;;;;;;;;;39867:300;40014:4;-1:-1:-1;;;;;;40056:50:0;;-1:-1:-1;;;40056:50:0;;:103;;;40123:36;40147:11;40123:23;:36::i;:::-;40036:123;39867:300;-1:-1:-1;;39867:300:0:o;27031:100::-;27085:13;27118:5;27111:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27031:100;:::o;28724:308::-;28845:7;32487:16;;;:7;:16;;;;;;-1:-1:-1;;;;;32487:16:0;28870:110;;;;-1:-1:-1;;;28870:110:0;;14341:2:1;28870:110:0;;;14323:21:1;14380:2;14360:18;;;14353:30;14419:34;14399:18;;;14392:62;-1:-1:-1;;;14470:18:1;;;14463:42;14522:19;;28870:110:0;;;;;;;;;-1:-1:-1;29000:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;29000:24:0;;28724:308::o;28247:411::-;28328:13;28344:23;28359:7;28344:14;:23::i;:::-;28328:39;;28392:5;-1:-1:-1;;;;;28386:11:0;:2;-1:-1:-1;;;;;28386:11:0;;;28378:57;;;;-1:-1:-1;;;28378:57:0;;16636:2:1;28378:57:0;;;16618:21:1;16675:2;16655:18;;;16648:30;16714:34;16694:18;;;16687:62;-1:-1:-1;;;16765:18:1;;;16758:31;16806:19;;28378:57:0;16434:397:1;28378:57:0;4076:10;-1:-1:-1;;;;;28470:21:0;;;;:62;;-1:-1:-1;28495:37:0;28512:5;4076:10;29502:214;:::i;28495:37::-;28448:168;;;;-1:-1:-1;;;28448:168:0;;11977:2:1;28448:168:0;;;11959:21:1;12016:2;11996:18;;;11989:30;12055:34;12035:18;;;12028:62;12126:26;12106:18;;;12099:54;12170:19;;28448:168:0;11775:420:1;28448:168:0;28629:21;28638:2;28642:7;28629:8;:21::i;:::-;28317:341;28247:411;;:::o;29783:376::-;29992:41;4076:10;30025:7;29992:18;:41::i;:::-;29970:140;;;;-1:-1:-1;;;29970:140:0;;;;;;;:::i;:::-;30123:28;30133:4;30139:2;30143:7;30123:9;:28::i;40251:343::-;40393:7;40448:23;40465:5;40448:16;:23::i;:::-;40440:5;:31;40418:124;;;;-1:-1:-1;;;40418:124:0;;8085:2:1;40418:124:0;;;8067:21:1;8124:2;8104:18;;;8097:30;8163:34;8143:18;;;8136:62;-1:-1:-1;;;8214:18:1;;;8207:41;8265:19;;40418:124:0;7883:407:1;40418:124:0;-1:-1:-1;;;;;;40560:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;40251:343::o;51428:163::-;5245:6;;-1:-1:-1;;;;;5245:6:0;4076:10;5392:23;5384:68;;;;-1:-1:-1;;;5384:68:0;;;;;;;:::i;:::-;51492:13:::1;:19:::0;;-1:-1:-1;;51492:19:0::1;;::::0;::::1;;::::0;;::::1;::::0;;;::::1;::::0;;;-1:-1:-1;51526:11:0::1;51522:62;;;51554:10;:18:::0;;-1:-1:-1;;51554:18:0::1;::::0;;51522:62:::1;51428:163:::0;:::o;30230:185::-;30368:39;30385:4;30391:2;30395:7;30368:39;;;;;;;;;;;;:16;:39::i;40860:320::-;40980:7;41035:30;40758:10;:17;;40670:113;41035:30;41027:5;:38;41005:132;;;;-1:-1:-1;;;41005:132:0;;18233:2:1;41005:132:0;;;18215:21:1;18272:2;18252:18;;;18245:30;18311:34;18291:18;;;18284:62;-1:-1:-1;;;18362:18:1;;;18355:42;18414:19;;41005:132:0;18031:408:1;41005:132:0;41155:10;41166:5;41155:17;;;;;;;;:::i;:::-;;;;;;;;;41148:24;;40860:320;;;:::o;50413:170::-;5245:6;;50514:15;;-1:-1:-1;;;;;5245:6:0;4076:10;5392:23;5384:68;;;;-1:-1:-1;;;5384:68:0;;;;;;;:::i;:::-;-1:-1:-1;50554:21:0::1;50413:170:::0;:::o;51819:101::-;5245:6;;-1:-1:-1;;;;;5245:6:0;4076:10;5392:23;5384:68;;;;-1:-1:-1;;;5384:68:0;;;;;;;:::i;:::-;51890:22;;::::1;::::0;:12:::1;::::0;:22:::1;::::0;::::1;::::0;::::1;:::i;:::-;;51819:101:::0;:::o;52121:104::-;52161:7;52216:1;52188:25;:15;884:14;;792:114;52188:25;:29;;;;:::i;:::-;52181:36;;52121:104;:::o;26638:326::-;26755:7;26796:16;;;:7;:16;;;;;;-1:-1:-1;;;;;26796:16:0;26845:19;26823:110;;;;-1:-1:-1;;;26823:110:0;;13167:2:1;26823:110:0;;;13149:21:1;13206:2;13186:18;;;13179:30;13245:34;13225:18;;;13218:62;-1:-1:-1;;;13296:18:1;;;13289:39;13345:19;;26823:110:0;12965:405:1;50031:374:0;5245:6;;-1:-1:-1;;;;;5245:6:0;4076:10;5392:23;5384:68;;;;-1:-1:-1;;;5384:68:0;;;;;;;:::i;:::-;5245:6;;-1:-1:-1;;;;;5245:6:0;50114:10:::1;:21;50092:119;;;::::0;-1:-1:-1;;;50092:119:0;;18646:2:1;50092:119:0::1;::::0;::::1;18628:21:1::0;18685:2;18665:18;;;18658:30;18724:34;18704:18;;;18697:62;-1:-1:-1;;;18775:18:1;;;18768:46;18831:19;;50092:119:0::1;18444:412:1::0;50092:119:0::1;50244:21;50222:116;;;::::0;-1:-1:-1;;;50222:116:0;;11155:2:1;50222:116:0::1;::::0;::::1;11137:21:1::0;11194:2;11174:18;;;11167:30;11233:34;11213:18;;;11206:62;-1:-1:-1;;;11284:18:1;;;11277:38;11332:19;;50222:116:0::1;10953:404:1::0;50222:116:0::1;5245:6:::0;;50349:48:::1;::::0;-1:-1:-1;;;;;5245:6:0;;;;50375:21:::1;50349:48:::0;::::1;;;::::0;::::1;::::0;;;50375:21;5245:6;50349:48;::::1;;;;;;;;;;;;;::::0;::::1;;;;26281:295:::0;26398:7;-1:-1:-1;;;;;26445:19:0;;26423:111;;;;-1:-1:-1;;;26423:111:0;;12756:2:1;26423:111:0;;;12738:21:1;12795:2;12775:18;;;12768:30;12834:34;12814:18;;;12807:62;-1:-1:-1;;;12885:18:1;;;12878:40;12935:19;;26423:111:0;12554:406:1;26423:111:0;-1:-1:-1;;;;;;26552:16:0;;;;;:9;:16;;;;;;;26281:295::o;5823:94::-;5245:6;;-1:-1:-1;;;;;5245:6:0;4076:10;5392:23;5384:68;;;;-1:-1:-1;;;5384:68:0;;;;;;;:::i;:::-;5888:21:::1;5906:1;5888:9;:21::i;:::-;5823:94::o:0;51627:160::-;5245:6;;-1:-1:-1;;;;;5245:6:0;4076:10;5392:23;5384:68;;;;-1:-1:-1;;;5384:68:0;;;;;;;:::i;:::-;51688:10:::1;:16:::0;;-1:-1:-1;;51688:16:0::1;::::0;::::1;;::::0;;::::1;::::0;;;-1:-1:-1;51719:11:0::1;51715:65;;;51747:13;:21:::0;;-1:-1:-1;;51747:21:0::1;::::0;;51627:160;:::o;47664:369::-;47749:16;47783:18;47804:15;47814:4;47804:9;:15::i;:::-;47783:36;;47830:25;47872:10;47858:25;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;47858:25:0;;47830:53;;47899:9;47894:106;47914:10;47910:1;:14;47894:106;;;47960:28;47980:4;47986:1;47960:19;:28::i;:::-;47946:8;47955:1;47946:11;;;;;;;;:::i;:::-;;;;;;;;;;:42;47926:3;;;;:::i;:::-;;;;47894:106;;;-1:-1:-1;48017:8:0;47664:369;-1:-1:-1;;;47664:369:0:o;51990:88::-;5245:6;;-1:-1:-1;;;;;5245:6:0;4076:10;5392:23;5384:68;;;;-1:-1:-1;;;5384:68:0;;;;;;;:::i;:::-;52054:5:::1;:16:::0;51990:88::o;27200:104::-;27256:13;27289:7;27282:14;;;;;:::i;50685:440::-;5245:6;;-1:-1:-1;;;;;5245:6:0;4076:10;5392:23;5384:68;;;;-1:-1:-1;;;5384:68:0;;;;;;;:::i;:::-;50815:1:::1;50805:7;:11;50797:47;;;::::0;-1:-1:-1;;;50797:47:0;;17881:2:1;50797:47:0::1;::::0;::::1;17863:21:1::0;17920:2;17900:18;;;17893:30;17959:25;17939:18;;;17932:53;18002:18;;50797:47:0::1;17679:347:1::0;50797:47:0::1;50874:8;;50863:7;:19;;50855:66;;;::::0;-1:-1:-1;;;50855:66:0;;13938:2:1;50855:66:0::1;::::0;::::1;13920:21:1::0;13977:2;13957:18;;;13950:30;14016:34;13996:18;;;13989:62;-1:-1:-1;;;14067:18:1;;;14060:32;14109:19;;50855:66:0::1;13736:398:1::0;50855:66:0::1;50944:7;50932:8;;:19;;;;;;;:::i;:::-;::::0;;;-1:-1:-1;50979:1:0::1;::::0;-1:-1:-1;50962:156:0::1;50987:7;50982:1;:12;50962:156;;51016:48;51026:10;51038:25;:15;884:14:::0;;792:114;51038:25:::1;51016:9;:48::i;:::-;51079:27;:15;1003:19:::0;;1021:1;1003:19;;;914:127;51079:27:::1;50996:3:::0;::::1;::::0;::::1;:::i;:::-;;;;50962:156;;47041:22:::0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;48053:394::-;48131:13;;;;;;;;:21;;:13;:21;;:43;;-1:-1:-1;48156:10:0;;;;:18;;:10;:18;48131:43;48109:118;;;;-1:-1:-1;;;48109:118:0;;12402:2:1;48109:118:0;;;12384:21:1;12441:2;12421:18;;;12414:30;12480:27;12460:18;;;12453:55;12525:18;;48109:118:0;12200:349:1;48109:118:0;48244:13;;;;;;;;:21;;:13;:21;:44;;;;-1:-1:-1;48269:10:0;;;;:19;48244:44;48240:96;;;48305:19;48317:6;48305:11;:19::i;:::-;48350:10;;;;:18;;:10;:18;:44;;;;-1:-1:-1;48372:13:0;;;;;;;:22;48350:44;48346:94;;;48411:17;48421:6;48411:9;:17::i;29104:327::-;-1:-1:-1;;;;;29239:24:0;;4076:10;29239:24;;29231:62;;;;-1:-1:-1;;;29231:62:0;;10801:2:1;29231:62:0;;;10783:21:1;10840:2;10820:18;;;10813:30;10879:27;10859:18;;;10852:55;10924:18;;29231:62:0;10599:349:1;29231:62:0;4076:10;29306:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;29306:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;29306:53:0;;;;;;;;;;29375:48;;7607:41:1;;;29306:42:0;;4076:10;29375:48;;7580:18:1;29375:48:0;;;;;;;29104:327;;:::o;52282:162::-;5245:6;;-1:-1:-1;;;;;5245:6:0;4076:10;5392:23;5384:68;;;;-1:-1:-1;;;5384:68:0;;;;;;;:::i;:::-;52328:108:::1;;;;;;;;;;;;;;;;;;:10;:108::i;51169:220::-:0;5245:6;;-1:-1:-1;;;;;5245:6:0;4076:10;5392:23;5384:68;;;;-1:-1:-1;;;5384:68:0;;;;;;;:::i;:::-;51292:9:::1;51287:95;51307:2;:9;51303:1;:13;51287:95;;;51363:7;51338:15;:22;51354:2;51357:1;51354:5;;;;;;;;:::i;:::-;;;;;;;-1:-1:-1::0;;;;;51338:22:0::1;-1:-1:-1::0;;;;;51338:22:0::1;;;;;;;;;;;;:32;;;;51318:3;;;;;:::i;:::-;;;;51287:95;;30486:365:::0;30675:41;4076:10;30708:7;30675:18;:41::i;:::-;30653:140;;;;-1:-1:-1;;;30653:140:0;;;;;;;:::i;:::-;30804:39;30818:4;30824:2;30828:7;30837:5;30804:13;:39::i;:::-;30486:365;;;;:::o;52604:129::-;52651:7;52700:25;:15;884:14;;792:114;52700:25;52689:8;;52676:21;;46906:5;52676:21;:::i;27375:468::-;32463:4;32487:16;;;:7;:16;;;;;;27493:13;;-1:-1:-1;;;;;32487:16:0;27524:113;;;;-1:-1:-1;;;27524:113:0;;15874:2:1;27524:113:0;;;15856:21:1;15913:2;15893:18;;;15886:30;15952:34;15932:18;;;15925:62;-1:-1:-1;;;16003:18:1;;;15996:45;16058:19;;27524:113:0;15672:411:1;27524:113:0;27650:21;27674:10;:8;:10::i;:::-;27650:34;;27739:1;27721:7;27715:21;:25;:120;;;;;;;;;;;;;;;;;27784:7;27793:18;:7;:16;:18::i;:::-;27767:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;27715:120;27695:140;27375:468;-1:-1:-1;;;27375:468:0:o;46987:26::-;;;;;;;:::i;6072:229::-;5245:6;;-1:-1:-1;;;;;5245:6:0;4076:10;5392:23;5384:68;;;;-1:-1:-1;;;5384:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;6175:22:0;::::1;6153:110;;;::::0;-1:-1:-1;;;6153:110:0;;8916:2:1;6153:110:0::1;::::0;::::1;8898:21:1::0;8955:2;8935:18;;;8928:30;8994:34;8974:18;;;8967:62;-1:-1:-1;;;9045:18:1;;;9038:36;9091:19;;6153:110:0::1;8714:402:1::0;6153:110:0::1;6274:19;6284:8;6274:9;:19::i;25862:355::-:0;26009:4;-1:-1:-1;;;;;;26051:40:0;;-1:-1:-1;;;26051:40:0;;:105;;-1:-1:-1;;;;;;;26108:48:0;;-1:-1:-1;;;26108:48:0;26051:105;:158;;;-1:-1:-1;;;;;;;;;;17803:40:0;;;26173:36;17644:207;36521:174;36596:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;36596:29:0;-1:-1:-1;;;;;36596:29:0;;;;;;;;:24;;36650:23;36596:24;36650:14;:23::i;:::-;-1:-1:-1;;;;;36641:46:0;;;;;;;;;;;36521:174;;:::o;32692:452::-;32821:4;32487:16;;;:7;:16;;;;;;-1:-1:-1;;;;;32487:16:0;32843:110;;;;-1:-1:-1;;;32843:110:0;;11564:2:1;32843:110:0;;;11546:21:1;11603:2;11583:18;;;11576:30;11642:34;11622:18;;;11615:62;-1:-1:-1;;;11693:18:1;;;11686:42;11745:19;;32843:110:0;11362:408:1;32843:110:0;32964:13;32980:23;32995:7;32980:14;:23::i;:::-;32964:39;;33033:5;-1:-1:-1;;;;;33022:16:0;:7;-1:-1:-1;;;;;33022:16:0;;:64;;;;33079:7;-1:-1:-1;;;;;33055:31:0;:20;33067:7;33055:11;:20::i;:::-;-1:-1:-1;;;;;33055:31:0;;33022:64;:113;;;-1:-1:-1;;;;;;29673:25:0;;;29644:4;29673:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;33103:32;33014:122;32692:452;-1:-1:-1;;;;32692:452:0:o;35788:615::-;35961:4;-1:-1:-1;;;;;35934:31:0;:23;35949:7;35934:14;:23::i;:::-;-1:-1:-1;;;;;35934:31:0;;35912:122;;;;-1:-1:-1;;;35912:122:0;;15464:2:1;35912:122:0;;;15446:21:1;15503:2;15483:18;;;15476:30;15542:34;15522:18;;;15515:62;-1:-1:-1;;;15593:18:1;;;15586:39;15642:19;;35912:122:0;15262:405:1;35912:122:0;-1:-1:-1;;;;;36053:16:0;;36045:65;;;;-1:-1:-1;;;36045:65:0;;10040:2:1;36045:65:0;;;10022:21:1;10079:2;10059:18;;;10052:30;10118:34;10098:18;;;10091:62;-1:-1:-1;;;10169:18:1;;;10162:34;10213:19;;36045:65:0;9838:400:1;36045:65:0;36123:39;36144:4;36150:2;36154:7;36123:20;:39::i;:::-;36227:29;36244:1;36248:7;36227:8;:29::i;:::-;-1:-1:-1;;;;;36269:15:0;;;;;;:9;:15;;;;;:20;;36288:1;;36269:15;:20;;36288:1;;36269:20;:::i;:::-;;;;-1:-1:-1;;;;;;;36300:13:0;;;;;;:9;:13;;;;;:18;;36317:1;;36300:13;:18;;36317:1;;36300:18;:::i;:::-;;;;-1:-1:-1;;36329:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;36329:21:0;-1:-1:-1;;;;;36329:21:0;;;;;;;;;36368:27;;36329:16;;36368:27;;;;;;;35788:615;;;:::o;6309:173::-;6384:6;;;-1:-1:-1;;;;;6401:17:0;;;-1:-1:-1;;;;;;6401:17:0;;;;;;;6434:40;;6384:6;;;6401:17;6384:6;;6434:40;;6365:16;;6434:40;6354:128;6309:173;:::o;33486:110::-;33562:26;33572:2;33576:7;33562:26;;;;;;;;;;;;:9;:26::i;48489:827::-;48563:1;48554:6;:10;48546:50;;;;-1:-1:-1;;;48546:50:0;;10445:2:1;48546:50:0;;;10427:21:1;10484:2;10464:18;;;10457:30;10523:29;10503:18;;;10496:57;10570:18;;48546:50:0;10243:351:1;48546:50:0;48718:10;48702:27;;;;:15;:27;;;;;;48692:37;;;48670:143;;;;-1:-1:-1;;;48670:143:0;;17038:2:1;48670:143:0;;;17020:21:1;17077:2;17057:18;;;17050:30;17116:34;17096:18;;;17089:62;17187:26;17167:18;;;17160:54;17231:19;;48670:143:0;16836:420:1;48670:143:0;48832:13;;;;;;;48824:46;;;;-1:-1:-1;;;48824:46:0;;14754:2:1;48824:46:0;;;14736:21:1;14793:2;14773:18;;;14766:30;-1:-1:-1;;;14812:18:1;;;14805:50;14872:18;;48824:46:0;14552:344:1;48824:46:0;48954:8;;48941:21;;46906:5;48941:21;:::i;:::-;48931:6;48903:25;:15;884:14;;792:114;48903:25;:34;;;;:::i;:::-;:59;;48881:140;;;;-1:-1:-1;;;48881:140:0;;9680:2:1;48881:140:0;;;9662:21:1;9719:2;9699:18;;;9692:30;9758:33;9738:18;;;9731:61;9809:18;;48881:140:0;9478:355:1;48881:140:0;49061:6;49053:5;;:14;;;;:::i;:::-;49040:9;:27;49032:64;;;;-1:-1:-1;;;49032:64:0;;19471:2:1;49032:64:0;;;19453:21:1;19510:2;19490:18;;;19483:30;-1:-1:-1;;;19529:18:1;;;19522:54;19593:18;;49032:64:0;19269:348:1;49032:64:0;49124:1;49107:202;49132:6;49127:1;:11;49107:202;;49160:48;49170:10;49182:25;:15;884:14;;792:114;49160:48;49223:27;:15;1003:19;;1021:1;1003:19;;;914:127;49223:27;49281:10;49265:27;;;;:15;:27;;;;;:32;;49296:1;;49265:27;:32;;49296:1;;49265:32;:::i;:::-;;;;-1:-1:-1;49140:3:0;;-1:-1:-1;49140:3:0;;;:::i;:::-;;;;49107:202;;49356:616;49429:2;49419:6;:12;;49411:64;;;;-1:-1:-1;;;49411:64:0;;19063:2:1;49411:64:0;;;19045:21:1;19102:2;19082:18;;;19075:30;19141:34;19121:18;;;19114:62;-1:-1:-1;;;19192:18:1;;;19185:37;19239:19;;49411:64:0;18861:403:1;49411:64:0;49515:6;49507:5;;:14;;;;:::i;:::-;49494:9;:27;49486:64;;;;-1:-1:-1;;;49486:64:0;;19471:2:1;49486:64:0;;;19453:21:1;19510:2;19490:18;;;19483:30;-1:-1:-1;;;19529:18:1;;;19522:54;19593:18;;49486:64:0;19269:348:1;49486:64:0;49569:10;;;;49561:40;;;;-1:-1:-1;;;49561:40:0;;16290:2:1;49561:40:0;;;16272:21:1;16329:2;16309:18;;;16302:30;-1:-1:-1;;;16348:18:1;;;16341:47;16405:18;;49561:40:0;16088:341:1;49561:40:0;49685:8;;49672:21;;46906:5;49672:21;:::i;:::-;49662:6;49634:25;:15;884:14;;792:114;49634:25;:34;;;;:::i;:::-;:59;;49612:140;;;;-1:-1:-1;;;49612:140:0;;9680:2:1;49612:140:0;;;9662:21:1;9719:2;9699:18;;;9692:30;9758:33;9738:18;;;9731:61;9809:18;;49612:140:0;9478:355:1;49612:140:0;5245:6;;49763:36;;-1:-1:-1;;;;;5245:6:0;;;;49789:9;49763:36;;;;;;;;;49789:9;5245:6;49763:36;;;;;;;;;;;;;;;;;;;;-1:-1:-1;49827:1:0;49810:155;49835:6;49830:1;:11;49810:155;;49863:48;49873:10;49885:25;:15;884:14;;792:114;49863:48;49926:27;:15;1003:19;;1021:1;1003:19;;;914:127;49926:27;49843:3;;;;:::i;:::-;;;;49810:155;;31733:352;31890:28;31900:4;31906:2;31910:7;31890:9;:28::i;:::-;31951:48;31974:4;31980:2;31984:7;31993:5;31951:22;:48::i;:::-;31929:148;;;;-1:-1:-1;;;31929:148:0;;;;;;;:::i;47499:113::-;47559:13;47592:12;47585:19;;;;;:::i;1638:723::-;1694:13;1915:10;1911:53;;-1:-1:-1;;1942:10:0;;;;;;;;;;;;-1:-1:-1;;;1942:10:0;;;;;1638:723::o;1911:53::-;1989:5;1974:12;2030:78;2037:9;;2030:78;;2063:8;;;;:::i;:::-;;-1:-1:-1;2086:10:0;;-1:-1:-1;2094:2:0;2086:10;;:::i;:::-;;;2030:78;;;2118:19;2150:6;2140:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;2140:17:0;;2118:39;;2168:154;2175:10;;2168:154;;2202:11;2212:1;2202:11;;:::i;:::-;;-1:-1:-1;2271:10:0;2279:2;2271:5;:10;:::i;:::-;2258:24;;:2;:24;:::i;:::-;2245:39;;2228:6;2235;2228:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;2228:56:0;;;;;;;;-1:-1:-1;2299:11:0;2308:2;2299:11;;:::i;:::-;;;2168:154;;41793:589;-1:-1:-1;;;;;41999:18:0;;41995:187;;42034:40;42066:7;43209:10;:17;;43182:24;;;;:15;:24;;;;;:44;;;43237:24;;;;;;;;;;;;43105:164;42034:40;41995:187;;;42104:2;-1:-1:-1;;;;;42096:10:0;:4;-1:-1:-1;;;;;42096:10:0;;42092:90;;42123:47;42156:4;42162:7;42123:32;:47::i;:::-;-1:-1:-1;;;;;42196:16:0;;42192:183;;42229:45;42266:7;42229:36;:45::i;42192:183::-;42302:4;-1:-1:-1;;;;;42296:10:0;:2;-1:-1:-1;;;;;42296:10:0;;42292:83;;42323:40;42351:2;42355:7;42323:27;:40::i;33823:321::-;33953:18;33959:2;33963:7;33953:5;:18::i;:::-;34004:54;34035:1;34039:2;34043:7;34052:5;34004:22;:54::i;:::-;33982:154;;;;-1:-1:-1;;;33982:154:0;;;;;;;:::i;37260:980::-;37415:4;-1:-1:-1;;;;;37436:13:0;;7574:20;7622:8;37432:801;;37489:175;;-1:-1:-1;;;37489:175:0;;-1:-1:-1;;;;;37489:36:0;;;;;:175;;4076:10;;37583:4;;37610:7;;37640:5;;37489:175;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;37489:175:0;;;;;;;;-1:-1:-1;;37489:175:0;;;;;;;;;;;;:::i;:::-;;;37468:710;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;37847:13:0;;37843:320;;37890:108;;-1:-1:-1;;;37890:108:0;;;;;;;:::i;37843:320::-;38113:6;38107:13;38098:6;38094:2;38090:15;38083:38;37468:710;-1:-1:-1;;;;;;37728:51:0;-1:-1:-1;;;37728:51:0;;-1:-1:-1;37721:58:0;;37432:801;-1:-1:-1;38217:4:0;37260:980;;;;;;:::o;43896:1002::-;44176:22;44226:1;44201:22;44218:4;44201:16;:22::i;:::-;:26;;;;:::i;:::-;44238:18;44259:26;;;:17;:26;;;;;;44176:51;;-1:-1:-1;44392:28:0;;;44388:328;;-1:-1:-1;;;;;44459:18:0;;44437:19;44459:18;;;:12;:18;;;;;;;;:34;;;;;;;;;44510:30;;;;;;:44;;;44627:30;;:17;:30;;;;;:43;;;44388:328;-1:-1:-1;44812:26:0;;;;:17;:26;;;;;;;;44805:33;;;-1:-1:-1;;;;;44856:18:0;;;;;:12;:18;;;;;:34;;;;;;;44849:41;43896:1002::o;45193:1079::-;45471:10;:17;45446:22;;45471:21;;45491:1;;45471:21;:::i;:::-;45503:18;45524:24;;;:15;:24;;;;;;45897:10;:26;;45446:46;;-1:-1:-1;45524:24:0;;45446:46;;45897:26;;;;;;:::i;:::-;;;;;;;;;45875:48;;45961:11;45936:10;45947;45936:22;;;;;;;;:::i;:::-;;;;;;;;;;;;:36;;;;46041:28;;;:15;:28;;;;;;;:41;;;46213:24;;;;;46206:31;46248:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;45264:1008;;;45193:1079;:::o;42683:221::-;42768:14;42785:20;42802:2;42785:16;:20::i;:::-;-1:-1:-1;;;;;42816:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;42861:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;42683:221:0:o;34480:382::-;-1:-1:-1;;;;;34560:16:0;;34552:61;;;;-1:-1:-1;;;34552:61:0;;13577:2:1;34552:61:0;;;13559:21:1;;;13596:18;;;13589:30;13655:34;13635:18;;;13628:62;13707:18;;34552:61:0;13375:356:1;34552:61:0;32463:4;32487:16;;;:7;:16;;;;;;-1:-1:-1;;;;;32487:16:0;:30;34624:58;;;;-1:-1:-1;;;34624:58:0;;9323:2:1;34624:58:0;;;9305:21:1;9362:2;9342:18;;;9335:30;9401;9381:18;;;9374:58;9449:18;;34624:58:0;9121:352:1;34624:58:0;34695:45;34724:1;34728:2;34732:7;34695:20;:45::i;:::-;-1:-1:-1;;;;;34753:13:0;;;;;;:9;:13;;;;;:18;;34770:1;;34753:13;:18;;34770:1;;34753:18;:::i;:::-;;;;-1:-1:-1;;34782:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;34782:21:0;-1:-1:-1;;;;;34782:21:0;;;;;;;;34821:33;;34782:16;;;34821:33;;34782:16;;34821:33;34480:382;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:406:1;78:5;112:18;104:6;101:30;98:56;;;134:18;;:::i;:::-;172:57;217:2;196:15;;-1:-1:-1;;192:29:1;223:4;188:40;172:57;:::i;:::-;163:66;;252:6;245:5;238:21;292:3;283:6;278:3;274:16;271:25;268:45;;;309:1;306;299:12;268:45;358:6;353:3;346:4;339:5;335:16;322:43;412:1;405:4;396:6;389:5;385:18;381:29;374:40;14:406;;;;;:::o;425:173::-;493:20;;-1:-1:-1;;;;;542:31:1;;532:42;;522:70;;588:1;585;578:12;522:70;425:173;;;:::o;603:160::-;668:20;;724:13;;717:21;707:32;;697:60;;753:1;750;743:12;768:186;827:6;880:2;868:9;859:7;855:23;851:32;848:52;;;896:1;893;886:12;848:52;919:29;938:9;919:29;:::i;959:260::-;1027:6;1035;1088:2;1076:9;1067:7;1063:23;1059:32;1056:52;;;1104:1;1101;1094:12;1056:52;1127:29;1146:9;1127:29;:::i;:::-;1117:39;;1175:38;1209:2;1198:9;1194:18;1175:38;:::i;:::-;1165:48;;959:260;;;;;:::o;1224:328::-;1301:6;1309;1317;1370:2;1358:9;1349:7;1345:23;1341:32;1338:52;;;1386:1;1383;1376:12;1338:52;1409:29;1428:9;1409:29;:::i;:::-;1399:39;;1457:38;1491:2;1480:9;1476:18;1457:38;:::i;:::-;1447:48;;1542:2;1531:9;1527:18;1514:32;1504:42;;1224:328;;;;;:::o;1557:666::-;1652:6;1660;1668;1676;1729:3;1717:9;1708:7;1704:23;1700:33;1697:53;;;1746:1;1743;1736:12;1697:53;1769:29;1788:9;1769:29;:::i;:::-;1759:39;;1817:38;1851:2;1840:9;1836:18;1817:38;:::i;:::-;1807:48;;1902:2;1891:9;1887:18;1874:32;1864:42;;1957:2;1946:9;1942:18;1929:32;1984:18;1976:6;1973:30;1970:50;;;2016:1;2013;2006:12;1970:50;2039:22;;2092:4;2084:13;;2080:27;-1:-1:-1;2070:55:1;;2121:1;2118;2111:12;2070:55;2144:73;2209:7;2204:2;2191:16;2186:2;2182;2178:11;2144:73;:::i;:::-;2134:83;;;1557:666;;;;;;;:::o;2228:254::-;2293:6;2301;2354:2;2342:9;2333:7;2329:23;2325:32;2322:52;;;2370:1;2367;2360:12;2322:52;2393:29;2412:9;2393:29;:::i;:::-;2383:39;;2441:35;2472:2;2461:9;2457:18;2441:35;:::i;2487:254::-;2555:6;2563;2616:2;2604:9;2595:7;2591:23;2587:32;2584:52;;;2632:1;2629;2622:12;2584:52;2655:29;2674:9;2655:29;:::i;:::-;2645:39;2731:2;2716:18;;;;2703:32;;-1:-1:-1;;;2487:254:1:o;2746:1033::-;2839:6;2847;2900:2;2888:9;2879:7;2875:23;2871:32;2868:52;;;2916:1;2913;2906:12;2868:52;2956:9;2943:23;2985:18;3026:2;3018:6;3015:14;3012:34;;;3042:1;3039;3032:12;3012:34;3080:6;3069:9;3065:22;3055:32;;3125:7;3118:4;3114:2;3110:13;3106:27;3096:55;;3147:1;3144;3137:12;3096:55;3183:2;3170:16;3205:4;3228:2;3224;3221:10;3218:36;;;3234:18;;:::i;:::-;3280:2;3277:1;3273:10;3263:20;;3303:28;3327:2;3323;3319:11;3303:28;:::i;:::-;3365:15;;;3396:12;;;;3428:11;;;3458;;;3454:20;;3451:33;-1:-1:-1;3448:53:1;;;3497:1;3494;3487:12;3448:53;3519:1;3510:10;;3529:169;3543:2;3540:1;3537:9;3529:169;;;3600:23;3619:3;3600:23;:::i;:::-;3588:36;;3561:1;3554:9;;;;;3644:12;;;;3676;;3529:169;;;-1:-1:-1;3717:5:1;3754:18;;;;3741:32;;-1:-1:-1;;;;;;;2746:1033:1:o;3784:180::-;3840:6;3893:2;3881:9;3872:7;3868:23;3864:32;3861:52;;;3909:1;3906;3899:12;3861:52;3932:26;3948:9;3932:26;:::i;3969:245::-;4027:6;4080:2;4068:9;4059:7;4055:23;4051:32;4048:52;;;4096:1;4093;4086:12;4048:52;4135:9;4122:23;4154:30;4178:5;4154:30;:::i;4219:249::-;4288:6;4341:2;4329:9;4320:7;4316:23;4312:32;4309:52;;;4357:1;4354;4347:12;4309:52;4389:9;4383:16;4408:30;4432:5;4408:30;:::i;4473:450::-;4542:6;4595:2;4583:9;4574:7;4570:23;4566:32;4563:52;;;4611:1;4608;4601:12;4563:52;4651:9;4638:23;4684:18;4676:6;4673:30;4670:50;;;4716:1;4713;4706:12;4670:50;4739:22;;4792:4;4784:13;;4780:27;-1:-1:-1;4770:55:1;;4821:1;4818;4811:12;4770:55;4844:73;4909:7;4904:2;4891:16;4886:2;4882;4878:11;4844:73;:::i;4928:180::-;4987:6;5040:2;5028:9;5019:7;5015:23;5011:32;5008:52;;;5056:1;5053;5046:12;5008:52;-1:-1:-1;5079:23:1;;4928:180;-1:-1:-1;4928:180:1:o;5113:257::-;5154:3;5192:5;5186:12;5219:6;5214:3;5207:19;5235:63;5291:6;5284:4;5279:3;5275:14;5268:4;5261:5;5257:16;5235:63;:::i;:::-;5352:2;5331:15;-1:-1:-1;;5327:29:1;5318:39;;;;5359:4;5314:50;;5113:257;-1:-1:-1;;5113:257:1:o;5375:470::-;5554:3;5592:6;5586:13;5608:53;5654:6;5649:3;5642:4;5634:6;5630:17;5608:53;:::i;:::-;5724:13;;5683:16;;;;5746:57;5724:13;5683:16;5780:4;5768:17;;5746:57;:::i;:::-;5819:20;;5375:470;-1:-1:-1;;;;5375:470:1:o;6058:488::-;-1:-1:-1;;;;;6327:15:1;;;6309:34;;6379:15;;6374:2;6359:18;;6352:43;6426:2;6411:18;;6404:34;;;6474:3;6469:2;6454:18;;6447:31;;;6252:4;;6495:45;;6520:19;;6512:6;6495:45;:::i;:::-;6487:53;6058:488;-1:-1:-1;;;;;;6058:488:1:o;6830:632::-;7001:2;7053:21;;;7123:13;;7026:18;;;7145:22;;;6972:4;;7001:2;7224:15;;;;7198:2;7183:18;;;6972:4;7267:169;7281:6;7278:1;7275:13;7267:169;;;7342:13;;7330:26;;7411:15;;;;7376:12;;;;7303:1;7296:9;7267:169;;;-1:-1:-1;7453:3:1;;6830:632;-1:-1:-1;;;;;;6830:632:1:o;7659:219::-;7808:2;7797:9;7790:21;7771:4;7828:44;7868:2;7857:9;7853:18;7845:6;7828:44;:::i;8295:414::-;8497:2;8479:21;;;8536:2;8516:18;;;8509:30;8575:34;8570:2;8555:18;;8548:62;-1:-1:-1;;;8641:2:1;8626:18;;8619:48;8699:3;8684:19;;8295:414::o;14901:356::-;15103:2;15085:21;;;15122:18;;;15115:30;15181:34;15176:2;15161:18;;15154:62;15248:2;15233:18;;14901:356::o;17261:413::-;17463:2;17445:21;;;17502:2;17482:18;;;17475:30;17541:34;17536:2;17521:18;;17514:62;-1:-1:-1;;;17607:2:1;17592:18;;17585:47;17664:3;17649:19;;17261:413::o;19804:275::-;19875:2;19869:9;19940:2;19921:13;;-1:-1:-1;;19917:27:1;19905:40;;19975:18;19960:34;;19996:22;;;19957:62;19954:88;;;20022:18;;:::i;:::-;20058:2;20051:22;19804:275;;-1:-1:-1;19804:275:1:o;20084:128::-;20124:3;20155:1;20151:6;20148:1;20145:13;20142:39;;;20161:18;;:::i;:::-;-1:-1:-1;20197:9:1;;20084:128::o;20217:120::-;20257:1;20283;20273:35;;20288:18;;:::i;:::-;-1:-1:-1;20322:9:1;;20217:120::o;20342:168::-;20382:7;20448:1;20444;20440:6;20436:14;20433:1;20430:21;20425:1;20418:9;20411:17;20407:45;20404:71;;;20455:18;;:::i;:::-;-1:-1:-1;20495:9:1;;20342:168::o;20515:125::-;20555:4;20583:1;20580;20577:8;20574:34;;;20588:18;;:::i;:::-;-1:-1:-1;20625:9:1;;20515:125::o;20645:258::-;20717:1;20727:113;20741:6;20738:1;20735:13;20727:113;;;20817:11;;;20811:18;20798:11;;;20791:39;20763:2;20756:10;20727:113;;;20858:6;20855:1;20852:13;20849:48;;;-1:-1:-1;;20893:1:1;20875:16;;20868:27;20645:258::o;20908:380::-;20987:1;20983:12;;;;21030;;;21051:61;;21105:4;21097:6;21093:17;21083:27;;21051:61;21158:2;21150:6;21147:14;21127:18;21124:38;21121:161;;;21204:10;21199:3;21195:20;21192:1;21185:31;21239:4;21236:1;21229:15;21267:4;21264:1;21257:15;21121:161;;20908:380;;;:::o;21293:135::-;21332:3;-1:-1:-1;;21353:17:1;;21350:43;;;21373:18;;:::i;:::-;-1:-1:-1;21420:1:1;21409:13;;21293:135::o;21433:112::-;21465:1;21491;21481:35;;21496:18;;:::i;:::-;-1:-1:-1;21530:9:1;;21433:112::o;21550:127::-;21611:10;21606:3;21602:20;21599:1;21592:31;21642:4;21639:1;21632:15;21666:4;21663:1;21656:15;21682:127;21743:10;21738:3;21734:20;21731:1;21724:31;21774:4;21771:1;21764:15;21798:4;21795:1;21788:15;21814:127;21875:10;21870:3;21866:20;21863:1;21856:31;21906:4;21903:1;21896:15;21930:4;21927:1;21920:15;21946:127;22007:10;22002:3;21998:20;21995:1;21988:31;22038:4;22035:1;22028:15;22062:4;22059:1;22052:15;22078:127;22139:10;22134:3;22130:20;22127:1;22120:31;22170:4;22167:1;22160:15;22194:4;22191:1;22184:15;22210:131;-1:-1:-1;;;;;;22284:32:1;;22274:43;;22264:71;;22331:1;22328;22321:12

Swarm Source

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