ETH Price: $3,011.29 (+4.52%)
Gas: 2 Gwei

Token

Metaliths (MLTHS)
 

Overview

Max Total Supply

1,000 MLTHS

Holders

256

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
5 MLTHS
0x939a97df3f788101db2e1c310b544a4ca2484958
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:
Metaliths

Compiler Version
v0.8.0+commit.c7dfd78e

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-02-17
*/

// SPDX-License-Identifier: MIT
// File: @openzeppelin/contracts/utils/Counters.sol
// OpenZeppelin Contracts v4.4.1 (utils/Counters.sol)

//
// #     # ####### #######    #    #       ### ####### #     #  #####  
// ##   ## #          #      # #   #        #     #    #     # #     # 
// # # # # #          #     #   #  #        #     #    #     # #       
// #  #  # #####      #    #     # #        #     #    #######  #####  
// #     # #          #    ####### #        #     #    #     #       # 
// #     # #          #    #     # #        #     #    #     # #     # 
// #     # #######    #    #     # ####### ###    #    #     #  #####  
//
// Metaliths | Surreal Artworks By Chad Makerson Michael | Genesis Release | Only 1000 Minted On The Blockchain
// 
// metaliths.io
//

pragma solidity ^0.8.0;

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

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

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

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

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

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


// OpenZeppelin Contracts v4.4.1 (utils/Strings.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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


// OpenZeppelin Contracts v4.4.1 (utils/Address.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol)

pragma solidity ^0.8.0;

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

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


// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)

pragma solidity ^0.8.0;

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

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


// OpenZeppelin Contracts v4.4.1 (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


// OpenZeppelin Contracts v4.4.1 (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/IERC721Metadata.sol


// OpenZeppelin Contracts v4.4.1 (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/utils/Context.sol


// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

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

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

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


// OpenZeppelin Contracts v4.4.1 (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 {
        _setApprovalForAll(_msgSender(), operator, approved);
    }

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

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

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

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

// File: @openzeppelin/contracts/access/Ownable.sol


// OpenZeppelin Contracts v4.4.1 (access/Ownable.sol)

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

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

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

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

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

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Internal function without access restriction.
     */
    function _transferOwnership(address newOwner) internal virtual {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

// File: Contracts/Metalith.sol

pragma solidity ^0.8.0;

contract Metaliths is Ownable, ERC721 {
    using Counters for Counters.Counter;
    Counters.Counter private _tokenSupply;

    uint256 public constant MAX_TOKENS = 1001;
    uint256 public constant MINT_TRANSACTION_LIMIT = 6;

    uint256 public tokenPrice = 0.1 ether;
    bool public saleIsActive;

    string _baseTokenURI;
    address _proxyRegistryAddress;

    constructor(address proxyRegistryAddress) ERC721("Metaliths", "MLTHS") {
        _proxyRegistryAddress = proxyRegistryAddress;
        _tokenSupply.increment();
        _safeMint(msg.sender, 0);
    }

    function publicMint(uint256 amount) external payable {
        require(saleIsActive, "Sale is not active");
        require(amount < MINT_TRANSACTION_LIMIT, "Mint amount too large");
        uint256 supply = _tokenSupply.current();
        require(supply + amount < MAX_TOKENS, "Not enough tokens remaining");
        require(tokenPrice * amount <= msg.value, "Not enough ether sent");

        for (uint256 i = 0; i < amount; i++) {
            _tokenSupply.increment();
            _safeMint(msg.sender, supply + i);
        }
    }

    function reserveTokens(address to, uint256 amount) external onlyOwner {
        uint256 supply = _tokenSupply.current();
        require(supply + amount < MAX_TOKENS, "Not enough tokens remaining");
        for (uint256 i = 0; i < amount; i++) {
            _tokenSupply.increment();
            _safeMint(to, supply + i);
        }
    }

    function setTokenPrice(uint256 newPrice) external onlyOwner {
        tokenPrice = newPrice;
    }

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

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

    function setBaseURI(string memory newBaseURI) external onlyOwner {
        _baseTokenURI = newBaseURI;
    }

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

    function setProxyRegistryAddress(address proxyRegistryAddress)
        external
        onlyOwner
    {
        _proxyRegistryAddress = proxyRegistryAddress;
    }

    function isApprovedForAll(address owner, address operator)
        public
        view
        override
        returns (bool)
    {
        // Whitelist OpenSea proxy contract for easy trading.
        ProxyRegistry proxyRegistry = ProxyRegistry(_proxyRegistryAddress);
        if (address(proxyRegistry.proxies(owner)) == operator) {
            return true;
        }
        return super.isApprovedForAll(owner, operator);
    }

    receive() external payable {}

    function withdraw() external onlyOwner {
        (bool success, ) = msg.sender.call{value: address(this).balance}("");
        require(success, "Withdrawal failed");
    }
}

contract OwnableDelegateProxy {}

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"proxyRegistryAddress","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_TOKENS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MINT_TRANSACTION_LIMIT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"flipSaleState","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":[],"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":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"publicMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"reserveTokens","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":"saleIsActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"proxyRegistryAddress","type":"address"}],"name":"setProxyRegistryAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newPrice","type":"uint256"}],"name":"setTokenPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokenPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

608060405267016345785d8a00006008553480156200001d57600080fd5b5060405162002696380380620026968339810160408190526200004091620004c7565b604051806040016040528060098152602001684d6574616c6974687360b81b815250604051806040016040528060058152602001644d4c54485360d81b8152506200009a620000946200010f60201b60201c565b62000113565b8151620000af90600190602085019062000421565b508051620000c590600290602084019062000421565b5050600b80546001600160a01b0319166001600160a01b03841617905550620000fb600762000163602090811b62000daf17901c565b620001083360006200016c565b50620006ba565b3390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b80546001019055565b6200018e8282604051806020016040528060008152506200019260201b60201c565b5050565b6200019e8383620001da565b620001ad6000848484620002c5565b620001d55760405162461bcd60e51b8152600401620001cc906200059a565b60405180910390fd5b505050565b6001600160a01b038216620002035760405162461bcd60e51b8152600401620001cc9062000623565b6200020e81620003fe565b156200022e5760405162461bcd60e51b8152600401620001cc90620005ec565b6200023c60008383620001d5565b6001600160a01b03821660009081526004602052604081208054600192906200026790849062000658565b909155505060008181526003602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6000620002e6846001600160a01b03166200041b60201b62000db81760201c565b15620003f2576001600160a01b03841663150b7a02620003056200010f565b8786866040518563ffffffff1660e01b815260040162000329949392919062000521565b602060405180830381600087803b1580156200034457600080fd5b505af192505050801562000377575060408051601f3d908101601f191682019092526200037491810190620004f7565b60015b620003d7573d808015620003a8576040519150601f19603f3d011682016040523d82523d6000602084013e620003ad565b606091505b508051620003cf5760405162461bcd60e51b8152600401620001cc906200059a565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050620003f6565b5060015b949350505050565b6000908152600360205260409020546001600160a01b0316151590565b3b151590565b8280546200042f906200067d565b90600052602060002090601f0160209004810192826200045357600085556200049e565b82601f106200046e57805160ff19168380011785556200049e565b828001600101855582156200049e579182015b828111156200049e57825182559160200191906001019062000481565b50620004ac929150620004b0565b5090565b5b80821115620004ac5760008155600101620004b1565b600060208284031215620004d9578081fd5b81516001600160a01b0381168114620004f0578182fd5b9392505050565b60006020828403121562000509578081fd5b81516001600160e01b031981168114620004f0578182fd5b600060018060a01b0380871683526020818716818501528560408501526080606085015284519150816080850152825b828110156200056f5785810182015185820160a00152810162000551565b8281111562000581578360a084870101525b5050601f01601f19169190910160a00195945050505050565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252601c908201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604082015260600190565b6020808252818101527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604082015260600190565b600082198211156200067857634e487b7160e01b81526011600452602481fd5b500190565b6002810460018216806200069257607f821691505b60208210811415620006b457634e487b7160e01b600052602260045260246000fd5b50919050565b611fcc80620006ca6000396000f3fe6080604052600436106101bb5760003560e01c8063715018a6116100ec578063bea6d30e1161008a578063e985e9c511610064578063e985e9c514610496578063eb8d2444146104b6578063f2fde38b146104cb578063f47c84c5146104eb576101c2565b8063bea6d30e14610441578063c87b56dd14610456578063d26ea6c014610476576101c2565b80638da5cb5b116100c65780638da5cb5b146103d757806395d89b41146103ec578063a22cb46514610401578063b88d4fde14610421576101c2565b8063715018a61461038d57806378cf19e9146103a25780637ff9b596146103c2576101c2565b806334918dfd1161015957806355f804b31161013357806355f804b31461030d5780636352211e1461032d5780636a61e5fc1461034d57806370a082311461036d576101c2565b806334918dfd146102c35780633ccfd60b146102d857806342842e0e146102ed576101c2565b8063095ea7b311610195578063095ea7b31461024c57806318160ddd1461026e57806323b872dd146102905780632db11544146102b0576101c2565b806301ffc9a7146101c757806306fdde03146101fd578063081812fc1461021f576101c2565b366101c257005b600080fd5b3480156101d357600080fd5b506101e76101e2366004611757565b610500565b6040516101f491906118b8565b60405180910390f35b34801561020957600080fd5b50610212610548565b6040516101f491906118c3565b34801561022b57600080fd5b5061023f61023a3660046117f1565b6105da565b6040516101f49190611867565b34801561025857600080fd5b5061026c61026736600461172c565b610626565b005b34801561027a57600080fd5b506102836106be565b6040516101f49190611e28565b34801561029c57600080fd5b5061026c6102ab36600461163e565b6106cf565b61026c6102be3660046117f1565b610707565b3480156102cf57600080fd5b5061026c6107e8565b3480156102e457600080fd5b5061026c61083b565b3480156102f957600080fd5b5061026c61030836600461163e565b6108f9565b34801561031957600080fd5b5061026c6103283660046117ab565b610914565b34801561033957600080fd5b5061023f6103483660046117f1565b61096a565b34801561035957600080fd5b5061026c6103683660046117f1565b61099f565b34801561037957600080fd5b506102836103883660046115ea565b6109e3565b34801561039957600080fd5b5061026c610a27565b3480156103ae57600080fd5b5061026c6103bd36600461172c565b610a72565b3480156103ce57600080fd5b50610283610b24565b3480156103e357600080fd5b5061023f610b2a565b3480156103f857600080fd5b50610212610b39565b34801561040d57600080fd5b5061026c61041c3660046116fb565b610b48565b34801561042d57600080fd5b5061026c61043c36600461167e565b610b5a565b34801561044d57600080fd5b50610283610b93565b34801561046257600080fd5b506102126104713660046117f1565b610b98565b34801561048257600080fd5b5061026c6104913660046115ea565b610c1b565b3480156104a257600080fd5b506101e76104b1366004611606565b610c7c565b3480156104c257600080fd5b506101e7610d32565b3480156104d757600080fd5b5061026c6104e63660046115ea565b610d3b565b3480156104f757600080fd5b50610283610da9565b60006001600160e01b031982166380ac58cd60e01b148061053157506001600160e01b03198216635b5e139f60e01b145b80610540575061054082610dbe565b90505b919050565b60606001805461055790611ebf565b80601f016020809104026020016040519081016040528092919081815260200182805461058390611ebf565b80156105d05780601f106105a5576101008083540402835291602001916105d0565b820191906000526020600020905b8154815290600101906020018083116105b357829003601f168201915b5050505050905090565b60006105e582610dd7565b61060a5760405162461bcd60e51b815260040161060190611bec565b60405180910390fd5b506000908152600560205260409020546001600160a01b031690565b60006106318261096a565b9050806001600160a01b0316836001600160a01b031614156106655760405162461bcd60e51b815260040161060190611d05565b806001600160a01b0316610677610df4565b6001600160a01b031614806106935750610693816104b1610df4565b6106af5760405162461bcd60e51b815260040161060190611ac7565b6106b98383610df8565b505050565b60006106ca6007610e66565b905090565b6106e06106da610df4565b82610e6a565b6106fc5760405162461bcd60e51b815260040161060190611d46565b6106b9838383610ee7565b60095460ff166107295760405162461bcd60e51b815260040161060190611a4f565b600681106107495760405162461bcd60e51b8152600401610601906118d6565b60006107556007610e66565b90506103e96107648383611e31565b106107815760405162461bcd60e51b815260040161060190611df1565b34826008546107909190611e5d565b11156107ae5760405162461bcd60e51b815260040161060190611d97565b60005b828110156106b9576107c36007610daf565b6107d6336107d18385611e31565b611014565b806107e081611efa565b9150506107b1565b6107f0610df4565b6001600160a01b0316610801610b2a565b6001600160a01b0316146108275760405162461bcd60e51b815260040161060190611c38565b6009805460ff19811660ff90911615179055565b610843610df4565b6001600160a01b0316610854610b2a565b6001600160a01b03161461087a5760405162461bcd60e51b815260040161060190611c38565b6000336001600160a01b03164760405161089390611864565b60006040518083038185875af1925050503d80600081146108d0576040519150601f19603f3d011682016040523d82523d6000602084013e6108d5565b606091505b50509050806108f65760405162461bcd60e51b815260040161060190611dc6565b50565b6106b983838360405180602001604052806000815250610b5a565b61091c610df4565b6001600160a01b031661092d610b2a565b6001600160a01b0316146109535760405162461bcd60e51b815260040161060190611c38565b805161096690600a9060208401906114e1565b5050565b6000818152600360205260408120546001600160a01b0316806105405760405162461bcd60e51b815260040161060190611b6e565b6109a7610df4565b6001600160a01b03166109b8610b2a565b6001600160a01b0316146109de5760405162461bcd60e51b815260040161060190611c38565b600855565b60006001600160a01b038216610a0b5760405162461bcd60e51b815260040161060190611b24565b506001600160a01b031660009081526004602052604090205490565b610a2f610df4565b6001600160a01b0316610a40610b2a565b6001600160a01b031614610a665760405162461bcd60e51b815260040161060190611c38565b610a70600061102e565b565b610a7a610df4565b6001600160a01b0316610a8b610b2a565b6001600160a01b031614610ab15760405162461bcd60e51b815260040161060190611c38565b6000610abd6007610e66565b90506103e9610acc8383611e31565b10610ae95760405162461bcd60e51b815260040161060190611df1565b60005b82811015610b1e57610afe6007610daf565b610b0c846107d18385611e31565b80610b1681611efa565b915050610aec565b50505050565b60085481565b6000546001600160a01b031690565b60606002805461055790611ebf565b610966610b53610df4565b838361107e565b610b6b610b65610df4565b83610e6a565b610b875760405162461bcd60e51b815260040161060190611d46565b610b1e84848484611121565b600681565b6060610ba382610dd7565b610bbf5760405162461bcd60e51b815260040161060190611cb6565b6000610bc9611154565b90506000815111610be95760405180602001604052806000815250610c14565b80610bf384611163565b604051602001610c04929190611835565b6040516020818303038152906040525b9392505050565b610c23610df4565b6001600160a01b0316610c34610b2a565b6001600160a01b031614610c5a5760405162461bcd60e51b815260040161060190611c38565b600b80546001600160a01b0319166001600160a01b0392909216919091179055565b600b5460405163c455279160e01b81526000916001600160a01b039081169190841690829063c455279190610cb5908890600401611867565b60206040518083038186803b158015610ccd57600080fd5b505afa158015610ce1573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d05919061178f565b6001600160a01b03161415610d1e576001915050610d2c565b610d288484611286565b9150505b92915050565b60095460ff1681565b610d43610df4565b6001600160a01b0316610d54610b2a565b6001600160a01b031614610d7a5760405162461bcd60e51b815260040161060190611c38565b6001600160a01b038116610da05760405162461bcd60e51b815260040161060190611957565b6108f68161102e565b6103e981565b80546001019055565b3b151590565b6001600160e01b031981166301ffc9a760e01b14919050565b6000908152600360205260409020546001600160a01b0316151590565b3390565b600081815260056020526040902080546001600160a01b0319166001600160a01b0384169081179091558190610e2d8261096a565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b5490565b6000610e7582610dd7565b610e915760405162461bcd60e51b815260040161060190611a7b565b6000610e9c8361096a565b9050806001600160a01b0316846001600160a01b03161480610ed75750836001600160a01b0316610ecc846105da565b6001600160a01b0316145b80610d285750610d288185610c7c565b826001600160a01b0316610efa8261096a565b6001600160a01b031614610f205760405162461bcd60e51b815260040161060190611c6d565b6001600160a01b038216610f465760405162461bcd60e51b8152600401610601906119d4565b610f518383836106b9565b610f5c600082610df8565b6001600160a01b0383166000908152600460205260408120805460019290610f85908490611e7c565b90915550506001600160a01b0382166000908152600460205260408120805460019290610fb3908490611e31565b909155505060008181526003602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6109668282604051806020016040528060008152506112b4565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b816001600160a01b0316836001600160a01b031614156110b05760405162461bcd60e51b815260040161060190611a18565b6001600160a01b0383811660008181526006602090815260408083209487168084529490915290819020805460ff1916851515179055517f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31906111149085906118b8565b60405180910390a3505050565b61112c848484610ee7565b611138848484846112e7565b610b1e5760405162461bcd60e51b815260040161060190611905565b6060600a805461055790611ebf565b60608161118857506040805180820190915260018152600360fc1b6020820152610543565b8160005b81156111b2578061119c81611efa565b91506111ab9050600a83611e49565b915061118c565b60008167ffffffffffffffff8111156111db57634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611205576020820181803683370190505b5090505b841561127e5761121a600183611e7c565b9150611227600a86611f15565b611232906030611e31565b60f81b81838151811061125557634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350611277600a86611e49565b9450611209565b949350505050565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b6112be8383611402565b6112cb60008484846112e7565b6106b95760405162461bcd60e51b815260040161060190611905565b60006112fb846001600160a01b0316610db8565b156113f757836001600160a01b031663150b7a02611317610df4565b8786866040518563ffffffff1660e01b8152600401611339949392919061187b565b602060405180830381600087803b15801561135357600080fd5b505af1925050508015611383575060408051601f3d908101601f1916820190925261138091810190611773565b60015b6113dd573d8080156113b1576040519150601f19603f3d011682016040523d82523d6000602084013e6113b6565b606091505b5080516113d55760405162461bcd60e51b815260040161060190611905565b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905061127e565b506001949350505050565b6001600160a01b0382166114285760405162461bcd60e51b815260040161060190611bb7565b61143181610dd7565b1561144e5760405162461bcd60e51b81526004016106019061199d565b61145a600083836106b9565b6001600160a01b0382166000908152600460205260408120805460019290611483908490611e31565b909155505060008181526003602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b8280546114ed90611ebf565b90600052602060002090601f01602090048101928261150f5760008555611555565b82601f1061152857805160ff1916838001178555611555565b82800160010185558215611555579182015b8281111561155557825182559160200191906001019061153a565b50611561929150611565565b5090565b5b808211156115615760008155600101611566565b600067ffffffffffffffff8084111561159557611595611f55565b604051601f8501601f1916810160200182811182821017156115b9576115b9611f55565b6040528481529150818385018610156115d157600080fd5b8484602083013760006020868301015250509392505050565b6000602082840312156115fb578081fd5b8135610c1481611f6b565b60008060408385031215611618578081fd5b823561162381611f6b565b9150602083013561163381611f6b565b809150509250929050565b600080600060608486031215611652578081fd5b833561165d81611f6b565b9250602084013561166d81611f6b565b929592945050506040919091013590565b60008060008060808587031215611693578081fd5b843561169e81611f6b565b935060208501356116ae81611f6b565b925060408501359150606085013567ffffffffffffffff8111156116d0578182fd5b8501601f810187136116e0578182fd5b6116ef8782356020840161157a565b91505092959194509250565b6000806040838503121561170d578182fd5b823561171881611f6b565b915060208301358015158114611633578182fd5b6000806040838503121561173e578182fd5b823561174981611f6b565b946020939093013593505050565b600060208284031215611768578081fd5b8135610c1481611f80565b600060208284031215611784578081fd5b8151610c1481611f80565b6000602082840312156117a0578081fd5b8151610c1481611f6b565b6000602082840312156117bc578081fd5b813567ffffffffffffffff8111156117d2578182fd5b8201601f810184136117e2578182fd5b610d288482356020840161157a565b600060208284031215611802578081fd5b5035919050565b60008151808452611821816020860160208601611e93565b601f01601f19169290920160200192915050565b60008351611847818460208801611e93565b83519083019061185b818360208801611e93565b01949350505050565b90565b6001600160a01b0391909116815260200190565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906118ae90830184611809565b9695505050505050565b901515815260200190565b600060208252610c146020830184611809565b6020808252601590820152744d696e7420616d6f756e7420746f6f206c6172676560581b604082015260600190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b6020808252601c908201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604082015260600190565b60208082526024908201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60208082526019908201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604082015260600190565b60208082526012908201527153616c65206973206e6f742061637469766560701b604082015260600190565b6020808252602c908201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b60208082526038908201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760408201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606082015260800190565b6020808252602a908201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604082015269726f206164647265737360b01b606082015260800190565b60208082526029908201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460408201526832b73a103a37b5b2b760b91b606082015260800190565b6020808252818101527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604082015260600190565b6020808252602c908201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526029908201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960408201526839903737ba1037bbb760b91b606082015260800190565b6020808252602f908201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60408201526e3732bc34b9ba32b73a103a37b5b2b760891b606082015260800190565b60208082526021908201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656040820152603960f91b606082015260800190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b602080825260159082015274139bdd08195b9bdd59da08195d1a195c881cd95b9d605a1b604082015260600190565b60208082526011908201527015da5d1a191c985dd85b0819985a5b1959607a1b604082015260600190565b6020808252601b908201527f4e6f7420656e6f75676820746f6b656e732072656d61696e696e670000000000604082015260600190565b90815260200190565b60008219821115611e4457611e44611f29565b500190565b600082611e5857611e58611f3f565b500490565b6000816000190483118215151615611e7757611e77611f29565b500290565b600082821015611e8e57611e8e611f29565b500390565b60005b83811015611eae578181015183820152602001611e96565b83811115610b1e5750506000910152565b600281046001821680611ed357607f821691505b60208210811415611ef457634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415611f0e57611f0e611f29565b5060010190565b600082611f2457611f24611f3f565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b03811681146108f657600080fd5b6001600160e01b0319811681146108f657600080fdfea26469706673582212208fd21ca30fe311ba09fb835b9221dbe818a17634e6c12d26b3569b4406aa85fd64736f6c63430008000033000000000000000000000000a5409ec958c83c3f309868babaca7c86dcb077c1

Deployed Bytecode

0x6080604052600436106101bb5760003560e01c8063715018a6116100ec578063bea6d30e1161008a578063e985e9c511610064578063e985e9c514610496578063eb8d2444146104b6578063f2fde38b146104cb578063f47c84c5146104eb576101c2565b8063bea6d30e14610441578063c87b56dd14610456578063d26ea6c014610476576101c2565b80638da5cb5b116100c65780638da5cb5b146103d757806395d89b41146103ec578063a22cb46514610401578063b88d4fde14610421576101c2565b8063715018a61461038d57806378cf19e9146103a25780637ff9b596146103c2576101c2565b806334918dfd1161015957806355f804b31161013357806355f804b31461030d5780636352211e1461032d5780636a61e5fc1461034d57806370a082311461036d576101c2565b806334918dfd146102c35780633ccfd60b146102d857806342842e0e146102ed576101c2565b8063095ea7b311610195578063095ea7b31461024c57806318160ddd1461026e57806323b872dd146102905780632db11544146102b0576101c2565b806301ffc9a7146101c757806306fdde03146101fd578063081812fc1461021f576101c2565b366101c257005b600080fd5b3480156101d357600080fd5b506101e76101e2366004611757565b610500565b6040516101f491906118b8565b60405180910390f35b34801561020957600080fd5b50610212610548565b6040516101f491906118c3565b34801561022b57600080fd5b5061023f61023a3660046117f1565b6105da565b6040516101f49190611867565b34801561025857600080fd5b5061026c61026736600461172c565b610626565b005b34801561027a57600080fd5b506102836106be565b6040516101f49190611e28565b34801561029c57600080fd5b5061026c6102ab36600461163e565b6106cf565b61026c6102be3660046117f1565b610707565b3480156102cf57600080fd5b5061026c6107e8565b3480156102e457600080fd5b5061026c61083b565b3480156102f957600080fd5b5061026c61030836600461163e565b6108f9565b34801561031957600080fd5b5061026c6103283660046117ab565b610914565b34801561033957600080fd5b5061023f6103483660046117f1565b61096a565b34801561035957600080fd5b5061026c6103683660046117f1565b61099f565b34801561037957600080fd5b506102836103883660046115ea565b6109e3565b34801561039957600080fd5b5061026c610a27565b3480156103ae57600080fd5b5061026c6103bd36600461172c565b610a72565b3480156103ce57600080fd5b50610283610b24565b3480156103e357600080fd5b5061023f610b2a565b3480156103f857600080fd5b50610212610b39565b34801561040d57600080fd5b5061026c61041c3660046116fb565b610b48565b34801561042d57600080fd5b5061026c61043c36600461167e565b610b5a565b34801561044d57600080fd5b50610283610b93565b34801561046257600080fd5b506102126104713660046117f1565b610b98565b34801561048257600080fd5b5061026c6104913660046115ea565b610c1b565b3480156104a257600080fd5b506101e76104b1366004611606565b610c7c565b3480156104c257600080fd5b506101e7610d32565b3480156104d757600080fd5b5061026c6104e63660046115ea565b610d3b565b3480156104f757600080fd5b50610283610da9565b60006001600160e01b031982166380ac58cd60e01b148061053157506001600160e01b03198216635b5e139f60e01b145b80610540575061054082610dbe565b90505b919050565b60606001805461055790611ebf565b80601f016020809104026020016040519081016040528092919081815260200182805461058390611ebf565b80156105d05780601f106105a5576101008083540402835291602001916105d0565b820191906000526020600020905b8154815290600101906020018083116105b357829003601f168201915b5050505050905090565b60006105e582610dd7565b61060a5760405162461bcd60e51b815260040161060190611bec565b60405180910390fd5b506000908152600560205260409020546001600160a01b031690565b60006106318261096a565b9050806001600160a01b0316836001600160a01b031614156106655760405162461bcd60e51b815260040161060190611d05565b806001600160a01b0316610677610df4565b6001600160a01b031614806106935750610693816104b1610df4565b6106af5760405162461bcd60e51b815260040161060190611ac7565b6106b98383610df8565b505050565b60006106ca6007610e66565b905090565b6106e06106da610df4565b82610e6a565b6106fc5760405162461bcd60e51b815260040161060190611d46565b6106b9838383610ee7565b60095460ff166107295760405162461bcd60e51b815260040161060190611a4f565b600681106107495760405162461bcd60e51b8152600401610601906118d6565b60006107556007610e66565b90506103e96107648383611e31565b106107815760405162461bcd60e51b815260040161060190611df1565b34826008546107909190611e5d565b11156107ae5760405162461bcd60e51b815260040161060190611d97565b60005b828110156106b9576107c36007610daf565b6107d6336107d18385611e31565b611014565b806107e081611efa565b9150506107b1565b6107f0610df4565b6001600160a01b0316610801610b2a565b6001600160a01b0316146108275760405162461bcd60e51b815260040161060190611c38565b6009805460ff19811660ff90911615179055565b610843610df4565b6001600160a01b0316610854610b2a565b6001600160a01b03161461087a5760405162461bcd60e51b815260040161060190611c38565b6000336001600160a01b03164760405161089390611864565b60006040518083038185875af1925050503d80600081146108d0576040519150601f19603f3d011682016040523d82523d6000602084013e6108d5565b606091505b50509050806108f65760405162461bcd60e51b815260040161060190611dc6565b50565b6106b983838360405180602001604052806000815250610b5a565b61091c610df4565b6001600160a01b031661092d610b2a565b6001600160a01b0316146109535760405162461bcd60e51b815260040161060190611c38565b805161096690600a9060208401906114e1565b5050565b6000818152600360205260408120546001600160a01b0316806105405760405162461bcd60e51b815260040161060190611b6e565b6109a7610df4565b6001600160a01b03166109b8610b2a565b6001600160a01b0316146109de5760405162461bcd60e51b815260040161060190611c38565b600855565b60006001600160a01b038216610a0b5760405162461bcd60e51b815260040161060190611b24565b506001600160a01b031660009081526004602052604090205490565b610a2f610df4565b6001600160a01b0316610a40610b2a565b6001600160a01b031614610a665760405162461bcd60e51b815260040161060190611c38565b610a70600061102e565b565b610a7a610df4565b6001600160a01b0316610a8b610b2a565b6001600160a01b031614610ab15760405162461bcd60e51b815260040161060190611c38565b6000610abd6007610e66565b90506103e9610acc8383611e31565b10610ae95760405162461bcd60e51b815260040161060190611df1565b60005b82811015610b1e57610afe6007610daf565b610b0c846107d18385611e31565b80610b1681611efa565b915050610aec565b50505050565b60085481565b6000546001600160a01b031690565b60606002805461055790611ebf565b610966610b53610df4565b838361107e565b610b6b610b65610df4565b83610e6a565b610b875760405162461bcd60e51b815260040161060190611d46565b610b1e84848484611121565b600681565b6060610ba382610dd7565b610bbf5760405162461bcd60e51b815260040161060190611cb6565b6000610bc9611154565b90506000815111610be95760405180602001604052806000815250610c14565b80610bf384611163565b604051602001610c04929190611835565b6040516020818303038152906040525b9392505050565b610c23610df4565b6001600160a01b0316610c34610b2a565b6001600160a01b031614610c5a5760405162461bcd60e51b815260040161060190611c38565b600b80546001600160a01b0319166001600160a01b0392909216919091179055565b600b5460405163c455279160e01b81526000916001600160a01b039081169190841690829063c455279190610cb5908890600401611867565b60206040518083038186803b158015610ccd57600080fd5b505afa158015610ce1573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d05919061178f565b6001600160a01b03161415610d1e576001915050610d2c565b610d288484611286565b9150505b92915050565b60095460ff1681565b610d43610df4565b6001600160a01b0316610d54610b2a565b6001600160a01b031614610d7a5760405162461bcd60e51b815260040161060190611c38565b6001600160a01b038116610da05760405162461bcd60e51b815260040161060190611957565b6108f68161102e565b6103e981565b80546001019055565b3b151590565b6001600160e01b031981166301ffc9a760e01b14919050565b6000908152600360205260409020546001600160a01b0316151590565b3390565b600081815260056020526040902080546001600160a01b0319166001600160a01b0384169081179091558190610e2d8261096a565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b5490565b6000610e7582610dd7565b610e915760405162461bcd60e51b815260040161060190611a7b565b6000610e9c8361096a565b9050806001600160a01b0316846001600160a01b03161480610ed75750836001600160a01b0316610ecc846105da565b6001600160a01b0316145b80610d285750610d288185610c7c565b826001600160a01b0316610efa8261096a565b6001600160a01b031614610f205760405162461bcd60e51b815260040161060190611c6d565b6001600160a01b038216610f465760405162461bcd60e51b8152600401610601906119d4565b610f518383836106b9565b610f5c600082610df8565b6001600160a01b0383166000908152600460205260408120805460019290610f85908490611e7c565b90915550506001600160a01b0382166000908152600460205260408120805460019290610fb3908490611e31565b909155505060008181526003602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6109668282604051806020016040528060008152506112b4565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b816001600160a01b0316836001600160a01b031614156110b05760405162461bcd60e51b815260040161060190611a18565b6001600160a01b0383811660008181526006602090815260408083209487168084529490915290819020805460ff1916851515179055517f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31906111149085906118b8565b60405180910390a3505050565b61112c848484610ee7565b611138848484846112e7565b610b1e5760405162461bcd60e51b815260040161060190611905565b6060600a805461055790611ebf565b60608161118857506040805180820190915260018152600360fc1b6020820152610543565b8160005b81156111b2578061119c81611efa565b91506111ab9050600a83611e49565b915061118c565b60008167ffffffffffffffff8111156111db57634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611205576020820181803683370190505b5090505b841561127e5761121a600183611e7c565b9150611227600a86611f15565b611232906030611e31565b60f81b81838151811061125557634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350611277600a86611e49565b9450611209565b949350505050565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b6112be8383611402565b6112cb60008484846112e7565b6106b95760405162461bcd60e51b815260040161060190611905565b60006112fb846001600160a01b0316610db8565b156113f757836001600160a01b031663150b7a02611317610df4565b8786866040518563ffffffff1660e01b8152600401611339949392919061187b565b602060405180830381600087803b15801561135357600080fd5b505af1925050508015611383575060408051601f3d908101601f1916820190925261138091810190611773565b60015b6113dd573d8080156113b1576040519150601f19603f3d011682016040523d82523d6000602084013e6113b6565b606091505b5080516113d55760405162461bcd60e51b815260040161060190611905565b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905061127e565b506001949350505050565b6001600160a01b0382166114285760405162461bcd60e51b815260040161060190611bb7565b61143181610dd7565b1561144e5760405162461bcd60e51b81526004016106019061199d565b61145a600083836106b9565b6001600160a01b0382166000908152600460205260408120805460019290611483908490611e31565b909155505060008181526003602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b8280546114ed90611ebf565b90600052602060002090601f01602090048101928261150f5760008555611555565b82601f1061152857805160ff1916838001178555611555565b82800160010185558215611555579182015b8281111561155557825182559160200191906001019061153a565b50611561929150611565565b5090565b5b808211156115615760008155600101611566565b600067ffffffffffffffff8084111561159557611595611f55565b604051601f8501601f1916810160200182811182821017156115b9576115b9611f55565b6040528481529150818385018610156115d157600080fd5b8484602083013760006020868301015250509392505050565b6000602082840312156115fb578081fd5b8135610c1481611f6b565b60008060408385031215611618578081fd5b823561162381611f6b565b9150602083013561163381611f6b565b809150509250929050565b600080600060608486031215611652578081fd5b833561165d81611f6b565b9250602084013561166d81611f6b565b929592945050506040919091013590565b60008060008060808587031215611693578081fd5b843561169e81611f6b565b935060208501356116ae81611f6b565b925060408501359150606085013567ffffffffffffffff8111156116d0578182fd5b8501601f810187136116e0578182fd5b6116ef8782356020840161157a565b91505092959194509250565b6000806040838503121561170d578182fd5b823561171881611f6b565b915060208301358015158114611633578182fd5b6000806040838503121561173e578182fd5b823561174981611f6b565b946020939093013593505050565b600060208284031215611768578081fd5b8135610c1481611f80565b600060208284031215611784578081fd5b8151610c1481611f80565b6000602082840312156117a0578081fd5b8151610c1481611f6b565b6000602082840312156117bc578081fd5b813567ffffffffffffffff8111156117d2578182fd5b8201601f810184136117e2578182fd5b610d288482356020840161157a565b600060208284031215611802578081fd5b5035919050565b60008151808452611821816020860160208601611e93565b601f01601f19169290920160200192915050565b60008351611847818460208801611e93565b83519083019061185b818360208801611e93565b01949350505050565b90565b6001600160a01b0391909116815260200190565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906118ae90830184611809565b9695505050505050565b901515815260200190565b600060208252610c146020830184611809565b6020808252601590820152744d696e7420616d6f756e7420746f6f206c6172676560581b604082015260600190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b6020808252601c908201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604082015260600190565b60208082526024908201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60208082526019908201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604082015260600190565b60208082526012908201527153616c65206973206e6f742061637469766560701b604082015260600190565b6020808252602c908201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b60208082526038908201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760408201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606082015260800190565b6020808252602a908201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604082015269726f206164647265737360b01b606082015260800190565b60208082526029908201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460408201526832b73a103a37b5b2b760b91b606082015260800190565b6020808252818101527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604082015260600190565b6020808252602c908201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526029908201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960408201526839903737ba1037bbb760b91b606082015260800190565b6020808252602f908201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60408201526e3732bc34b9ba32b73a103a37b5b2b760891b606082015260800190565b60208082526021908201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656040820152603960f91b606082015260800190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b602080825260159082015274139bdd08195b9bdd59da08195d1a195c881cd95b9d605a1b604082015260600190565b60208082526011908201527015da5d1a191c985dd85b0819985a5b1959607a1b604082015260600190565b6020808252601b908201527f4e6f7420656e6f75676820746f6b656e732072656d61696e696e670000000000604082015260600190565b90815260200190565b60008219821115611e4457611e44611f29565b500190565b600082611e5857611e58611f3f565b500490565b6000816000190483118215151615611e7757611e77611f29565b500290565b600082821015611e8e57611e8e611f29565b500390565b60005b83811015611eae578181015183820152602001611e96565b83811115610b1e5750506000910152565b600281046001821680611ed357607f821691505b60208210811415611ef457634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415611f0e57611f0e611f29565b5060010190565b600082611f2457611f24611f3f565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b03811681146108f657600080fd5b6001600160e01b0319811681146108f657600080fdfea26469706673582212208fd21ca30fe311ba09fb835b9221dbe818a17634e6c12d26b3569b4406aa85fd64736f6c63430008000033

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

000000000000000000000000a5409ec958c83c3f309868babaca7c86dcb077c1

-----Decoded View---------------
Arg [0] : proxyRegistryAddress (address): 0xa5409ec958C83C3f309868babACA7c86DCB077c1

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 000000000000000000000000a5409ec958c83c3f309868babaca7c86dcb077c1


Deployed Bytecode Sourcemap

38398:2890:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23366:305;;;;;;;;;;-1:-1:-1;23366:305:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24311:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;25870:221::-;;;;;;;;;;-1:-1:-1;25870:221:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;25393:411::-;;;;;;;;;;-1:-1:-1;25393:411:0;;;;;:::i;:::-;;:::i;:::-;;40105:101;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;26620:339::-;;;;;;;;;;-1:-1:-1;26620:339:0;;;;;:::i;:::-;;:::i;38992:545::-;;;;;;:::i;:::-;;:::i;40006:91::-;;;;;;;;;;;;;:::i;41111:174::-;;;;;;;;;;;;;:::i;27030:185::-;;;;;;;;;;-1:-1:-1;27030:185:0;;;;;:::i;:::-;;:::i;40214:110::-;;;;;;;;;;-1:-1:-1;40214:110:0;;;;;:::i;:::-;;:::i;24005:239::-;;;;;;;;;;-1:-1:-1;24005:239:0;;;;;:::i;:::-;;:::i;39898:100::-;;;;;;;;;;-1:-1:-1;39898:100:0;;;;;:::i;:::-;;:::i;23735:208::-;;;;;;;;;;-1:-1:-1;23735:208:0;;;;;:::i;:::-;;:::i;37519:103::-;;;;;;;;;;;;;:::i;39545:345::-;;;;;;;;;;-1:-1:-1;39545:345:0;;;;;:::i;:::-;;:::i;38638:37::-;;;;;;;;;;;;;:::i;36868:87::-;;;;;;;;;;;;;:::i;24480:104::-;;;;;;;;;;;;;:::i;26163:155::-;;;;;;;;;;-1:-1:-1;26163:155:0;;;;;:::i;:::-;;:::i;27286:328::-;;;;;;;;;;-1:-1:-1;27286:328:0;;;;;:::i;:::-;;:::i;38579:50::-;;;;;;;;;;;;;:::i;24655:334::-;;;;;;;;;;-1:-1:-1;24655:334:0;;;;;:::i;:::-;;:::i;40446:168::-;;;;;;;;;;-1:-1:-1;40446:168:0;;;;;:::i;:::-;;:::i;40622:444::-;;;;;;;;;;-1:-1:-1;40622:444:0;;;;;:::i;:::-;;:::i;38682:24::-;;;;;;;;;;;;;:::i;37777:201::-;;;;;;;;;;-1:-1:-1;37777:201:0;;;;;:::i;:::-;;:::i;38531:41::-;;;;;;;;;;;;;:::i;23366:305::-;23468:4;-1:-1:-1;;;;;;23505:40:0;;-1:-1:-1;;;23505:40:0;;:105;;-1:-1:-1;;;;;;;23562:48:0;;-1:-1:-1;;;23562:48:0;23505:105;:158;;;;23627:36;23651:11;23627:23;:36::i;:::-;23485:178;;23366:305;;;;:::o;24311:100::-;24365:13;24398:5;24391:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24311:100;:::o;25870:221::-;25946:7;25974:16;25982:7;25974;:16::i;:::-;25966:73;;;;-1:-1:-1;;;25966:73:0;;;;;;;:::i;:::-;;;;;;;;;-1:-1:-1;26059:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;26059:24:0;;25870:221::o;25393:411::-;25474:13;25490:23;25505:7;25490:14;:23::i;:::-;25474:39;;25538:5;-1:-1:-1;;;;;25532:11:0;:2;-1:-1:-1;;;;;25532:11:0;;;25524:57;;;;-1:-1:-1;;;25524:57:0;;;;;;;:::i;:::-;25632:5;-1:-1:-1;;;;;25616:21:0;:12;:10;:12::i;:::-;-1:-1:-1;;;;;25616:21:0;;:62;;;;25641:37;25658:5;25665:12;:10;:12::i;25641:37::-;25594:168;;;;-1:-1:-1;;;25594:168:0;;;;;;;:::i;:::-;25775:21;25784:2;25788:7;25775:8;:21::i;:::-;25393:411;;;:::o;40105:101::-;40149:7;40176:22;:12;:20;:22::i;:::-;40169:29;;40105:101;:::o;26620:339::-;26815:41;26834:12;:10;:12::i;:::-;26848:7;26815:18;:41::i;:::-;26807:103;;;;-1:-1:-1;;;26807:103:0;;;;;;;:::i;:::-;26923:28;26933:4;26939:2;26943:7;26923:9;:28::i;38992:545::-;39064:12;;;;39056:43;;;;-1:-1:-1;;;39056:43:0;;;;;;;:::i;:::-;38628:1;39118:6;:31;39110:65;;;;-1:-1:-1;;;39110:65:0;;;;;;;:::i;:::-;39186:14;39203:22;:12;:20;:22::i;:::-;39186:39;-1:-1:-1;38568:4:0;39244:15;39253:6;39186:39;39244:15;:::i;:::-;:28;39236:68;;;;-1:-1:-1;;;39236:68:0;;;;;;;:::i;:::-;39346:9;39336:6;39323:10;;:19;;;;:::i;:::-;:32;;39315:66;;;;-1:-1:-1;;;39315:66:0;;;;;;;:::i;:::-;39399:9;39394:136;39418:6;39414:1;:10;39394:136;;;39446:24;:12;:22;:24::i;:::-;39485:33;39495:10;39507;39516:1;39507:6;:10;:::i;:::-;39485:9;:33::i;:::-;39426:3;;;;:::i;:::-;;;;39394:136;;40006:91;37099:12;:10;:12::i;:::-;-1:-1:-1;;;;;37088:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;37088:23:0;;37080:68;;;;-1:-1:-1;;;37080:68:0;;;;;;;:::i;:::-;40077:12:::1;::::0;;-1:-1:-1;;40061:28:0;::::1;40077:12;::::0;;::::1;40076:13;40061:28;::::0;;40006:91::o;41111:174::-;37099:12;:10;:12::i;:::-;-1:-1:-1;;;;;37088:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;37088:23:0;;37080:68;;;;-1:-1:-1;;;37080:68:0;;;;;;;:::i;:::-;41162:12:::1;41180:10;-1:-1:-1::0;;;;;41180:15:0::1;41203:21;41180:49;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41161:68;;;41248:7;41240:37;;;;-1:-1:-1::0;;;41240:37:0::1;;;;;;;:::i;:::-;37159:1;41111:174::o:0;27030:185::-;27168:39;27185:4;27191:2;27195:7;27168:39;;;;;;;;;;;;:16;:39::i;40214:110::-;37099:12;:10;:12::i;:::-;-1:-1:-1;;;;;37088:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;37088:23:0;;37080:68;;;;-1:-1:-1;;;37080:68:0;;;;;;;:::i;:::-;40290:26;;::::1;::::0;:13:::1;::::0;:26:::1;::::0;::::1;::::0;::::1;:::i;:::-;;40214:110:::0;:::o;24005:239::-;24077:7;24113:16;;;:7;:16;;;;;;-1:-1:-1;;;;;24113:16:0;24148:19;24140:73;;;;-1:-1:-1;;;24140:73:0;;;;;;;:::i;39898:100::-;37099:12;:10;:12::i;:::-;-1:-1:-1;;;;;37088:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;37088:23:0;;37080:68;;;;-1:-1:-1;;;37080:68:0;;;;;;;:::i;:::-;39969:10:::1;:21:::0;39898:100::o;23735:208::-;23807:7;-1:-1:-1;;;;;23835:19:0;;23827:74;;;;-1:-1:-1;;;23827:74:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;;23919:16:0;;;;;:9;:16;;;;;;;23735:208::o;37519:103::-;37099:12;:10;:12::i;:::-;-1:-1:-1;;;;;37088:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;37088:23:0;;37080:68;;;;-1:-1:-1;;;37080:68:0;;;;;;;:::i;:::-;37584:30:::1;37611:1;37584:18;:30::i;:::-;37519:103::o:0;39545:345::-;37099:12;:10;:12::i;:::-;-1:-1:-1;;;;;37088:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;37088:23:0;;37080:68;;;;-1:-1:-1;;;37080:68:0;;;;;;;:::i;:::-;39626:14:::1;39643:22;:12;:20;:22::i;:::-;39626:39:::0;-1:-1:-1;38568:4:0::1;39684:15;39693:6:::0;39626:39;39684:15:::1;:::i;:::-;:28;39676:68;;;;-1:-1:-1::0;;;39676:68:0::1;;;;;;;:::i;:::-;39760:9;39755:128;39779:6;39775:1;:10;39755:128;;;39807:24;:12;:22;:24::i;:::-;39846:25;39856:2:::0;39860:10:::1;39869:1:::0;39860:6;:10:::1;:::i;39846:25::-;39787:3:::0;::::1;::::0;::::1;:::i;:::-;;;;39755:128;;;;37159:1;39545:345:::0;;:::o;38638:37::-;;;;:::o;36868:87::-;36914:7;36941:6;-1:-1:-1;;;;;36941:6:0;36868:87;:::o;24480:104::-;24536:13;24569:7;24562:14;;;;;:::i;26163:155::-;26258:52;26277:12;:10;:12::i;:::-;26291:8;26301;26258:18;:52::i;27286:328::-;27461:41;27480:12;:10;:12::i;:::-;27494:7;27461:18;:41::i;:::-;27453:103;;;;-1:-1:-1;;;27453:103:0;;;;;;;:::i;:::-;27567:39;27581:4;27587:2;27591:7;27600:5;27567:13;:39::i;38579:50::-;38628:1;38579:50;:::o;24655:334::-;24728:13;24762:16;24770:7;24762;:16::i;:::-;24754:76;;;;-1:-1:-1;;;24754:76:0;;;;;;;:::i;:::-;24843:21;24867:10;:8;:10::i;:::-;24843:34;;24919:1;24901:7;24895:21;:25;:86;;;;;;;;;;;;;;;;;24947:7;24956:18;:7;:16;:18::i;:::-;24930:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;24895:86;24888:93;24655:334;-1:-1:-1;;;24655:334:0:o;40446:168::-;37099:12;:10;:12::i;:::-;-1:-1:-1;;;;;37088:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;37088:23:0;;37080:68;;;;-1:-1:-1;;;37080:68:0;;;;;;;:::i;:::-;40562:21:::1;:44:::0;;-1:-1:-1;;;;;;40562:44:0::1;-1:-1:-1::0;;;;;40562:44:0;;;::::1;::::0;;;::::1;::::0;;40446:168::o;40622:444::-;40876:21;;40921:28;;-1:-1:-1;;;40921:28:0;;40747:4;;-1:-1:-1;;;;;40876:21:0;;;;40913:49;;;;40876:21;;40921;;:28;;40943:5;;40921:28;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;40913:49:0;;40909:93;;;40986:4;40979:11;;;;;40909:93;41019:39;41042:5;41049:8;41019:22;:39::i;:::-;41012:46;;;40622:444;;;;;:::o;38682:24::-;;;;;;:::o;37777:201::-;37099:12;:10;:12::i;:::-;-1:-1:-1;;;;;37088:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;37088:23:0;;37080:68;;;;-1:-1:-1;;;37080:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;37866:22:0;::::1;37858:73;;;;-1:-1:-1::0;;;37858:73:0::1;;;;;;;:::i;:::-;37942:28;37961:8;37942:18;:28::i;38531:41::-:0;38568:4;38531:41;:::o;1683:127::-;1772:19;;1790:1;1772:19;;;1683:127::o;5098:387::-;5421:20;5469:8;;;5098:387::o;15242:157::-;-1:-1:-1;;;;;;15351:40:0;;-1:-1:-1;;;15351:40:0;15242:157;;;:::o;29124:127::-;29189:4;29213:16;;;:7;:16;;;;;;-1:-1:-1;;;;;29213:16:0;:30;;;29124:127::o;21760:98::-;21840:10;21760:98;:::o;33106:174::-;33181:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;33181:29:0;-1:-1:-1;;;;;33181:29:0;;;;;;;;:24;;33235:23;33181:24;33235:14;:23::i;:::-;-1:-1:-1;;;;;33226:46:0;;;;;;;;;;;33106:174;;:::o;1561:114::-;1653:14;;1561:114::o;29418:348::-;29511:4;29536:16;29544:7;29536;:16::i;:::-;29528:73;;;;-1:-1:-1;;;29528:73:0;;;;;;;:::i;:::-;29612:13;29628:23;29643:7;29628:14;:23::i;:::-;29612:39;;29681:5;-1:-1:-1;;;;;29670:16:0;:7;-1:-1:-1;;;;;29670:16:0;;:51;;;;29714:7;-1:-1:-1;;;;;29690:31:0;:20;29702:7;29690:11;:20::i;:::-;-1:-1:-1;;;;;29690:31:0;;29670:51;:87;;;;29725:32;29742:5;29749:7;29725:16;:32::i;32410:578::-;32569:4;-1:-1:-1;;;;;32542:31:0;:23;32557:7;32542:14;:23::i;:::-;-1:-1:-1;;;;;32542:31:0;;32534:85;;;;-1:-1:-1;;;32534:85:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;32638:16:0;;32630:65;;;;-1:-1:-1;;;32630:65:0;;;;;;;:::i;:::-;32708:39;32729:4;32735:2;32739:7;32708:20;:39::i;:::-;32812:29;32829:1;32833:7;32812:8;:29::i;:::-;-1:-1:-1;;;;;32854:15:0;;;;;;:9;:15;;;;;:20;;32873:1;;32854:15;:20;;32873:1;;32854:20;:::i;:::-;;;;-1:-1:-1;;;;;;;32885:13:0;;;;;;:9;:13;;;;;:18;;32902:1;;32885:13;:18;;32902:1;;32885:18;:::i;:::-;;;;-1:-1:-1;;32914:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;32914:21:0;-1:-1:-1;;;;;32914:21:0;;;;;;;;;32953:27;;32914:16;;32953:27;;;;;;;32410:578;;;:::o;30108:110::-;30184:26;30194:2;30198:7;30184:26;;;;;;;;;;;;:9;:26::i;38138:191::-;38212:16;38231:6;;-1:-1:-1;;;;;38248:17:0;;;-1:-1:-1;;;;;;38248:17:0;;;;;;38281:40;;38231:6;;;;;;;38281:40;;38212:16;38281:40;38138:191;;:::o;33422:315::-;33577:8;-1:-1:-1;;;;;33568:17:0;:5;-1:-1:-1;;;;;33568:17:0;;;33560:55;;;;-1:-1:-1;;;33560:55:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;33626:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;:46;;-1:-1:-1;;33626:46:0;;;;;;;33688:41;;;;;33626:46;;33688:41;:::i;:::-;;;;;;;;33422:315;;;:::o;28496:::-;28653:28;28663:4;28669:2;28673:7;28653:9;:28::i;:::-;28700:48;28723:4;28729:2;28733:7;28742:5;28700:22;:48::i;:::-;28692:111;;;;-1:-1:-1;;;28692:111:0;;;;;;;:::i;40332:106::-;40384:13;40417;40410:20;;;;;:::i;2519:723::-;2575:13;2796:10;2792:53;;-1:-1:-1;2823:10:0;;;;;;;;;;;;-1:-1:-1;;;2823:10:0;;;;;;2792:53;2870:5;2855:12;2911:78;2918:9;;2911:78;;2944:8;;;;:::i;:::-;;-1:-1:-1;2967:10:0;;-1:-1:-1;2975:2:0;2967:10;;:::i;:::-;;;2911:78;;;2999:19;3031:6;3021:17;;;;;;-1:-1:-1;;;3021:17:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;3021:17:0;;2999:39;;3049:154;3056:10;;3049:154;;3083:11;3093:1;3083:11;;:::i;:::-;;-1:-1:-1;3152:10:0;3160:2;3152:5;:10;:::i;:::-;3139:24;;:2;:24;:::i;:::-;3126:39;;3109:6;3116;3109:14;;;;;;-1:-1:-1;;;3109:14:0;;;;;;;;;;;;:56;-1:-1:-1;;;;;3109:56:0;;;;;;;;-1:-1:-1;3180:11:0;3189:2;3180:11;;:::i;:::-;;;3049:154;;;3227:6;2519:723;-1:-1:-1;;;;2519:723:0:o;26389:164::-;-1:-1:-1;;;;;26510:25:0;;;26486:4;26510:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;26389:164::o;30445:321::-;30575:18;30581:2;30585:7;30575:5;:18::i;:::-;30626:54;30657:1;30661:2;30665:7;30674:5;30626:22;:54::i;:::-;30604:154;;;;-1:-1:-1;;;30604:154:0;;;;;;;:::i;34302:799::-;34457:4;34478:15;:2;-1:-1:-1;;;;;34478:13:0;;:15::i;:::-;34474:620;;;34530:2;-1:-1:-1;;;;;34514:36:0;;34551:12;:10;:12::i;:::-;34565:4;34571:7;34580:5;34514:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;34514:72:0;;;;;;;;-1:-1:-1;;34514:72:0;;;;;;;;;;;;:::i;:::-;;;34510:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;34756:13:0;;34752:272;;34799:60;;-1:-1:-1;;;34799:60:0;;;;;;;:::i;34752:272::-;34974:6;34968:13;34959:6;34955:2;34951:15;34944:38;34510:529;-1:-1:-1;;;;;;34637:51:0;-1:-1:-1;;;34637:51:0;;-1:-1:-1;34630:58:0;;34474:620;-1:-1:-1;35078:4:0;34302:799;;;;;;:::o;31102:382::-;-1:-1:-1;;;;;31182:16:0;;31174:61;;;;-1:-1:-1;;;31174:61:0;;;;;;;:::i;:::-;31255:16;31263:7;31255;:16::i;:::-;31254:17;31246:58;;;;-1:-1:-1;;;31246:58:0;;;;;;;:::i;:::-;31317:45;31346:1;31350:2;31354:7;31317:20;:45::i;:::-;-1:-1:-1;;;;;31375:13:0;;;;;;:9;:13;;;;;:18;;31392:1;;31375:13;:18;;31392:1;;31375:18;:::i;:::-;;;;-1:-1:-1;;31404:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;31404:21:0;-1:-1:-1;;;;;31404:21:0;;;;;;;;31443:33;;31404:16;;;31443:33;;31404:16;;31443:33;31102:382;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:607:1;;110:18;151:2;143:6;140:14;137:2;;;157:18;;:::i;:::-;206:2;200:9;279:2;256:17;;-1:-1:-1;;252:31:1;240:44;;286:4;236:55;306:18;;;326:22;;;303:46;300:2;;;352:18;;:::i;:::-;388:2;381:22;436;;;421:6;-1:-1:-1;421:6:1;473:16;;;470:25;-1:-1:-1;467:2:1;;;508:1;505;498:12;467:2;558:6;553:3;546:4;538:6;534:17;521:44;613:1;606:4;597:6;589;585:19;581:30;574:41;;;90:531;;;;;:::o;626:259::-;;738:2;726:9;717:7;713:23;709:32;706:2;;;759:6;751;744:22;706:2;803:9;790:23;822:33;849:5;822:33;:::i;890:402::-;;;1019:2;1007:9;998:7;994:23;990:32;987:2;;;1040:6;1032;1025:22;987:2;1084:9;1071:23;1103:33;1130:5;1103:33;:::i;:::-;1155:5;-1:-1:-1;1212:2:1;1197:18;;1184:32;1225:35;1184:32;1225:35;:::i;:::-;1279:7;1269:17;;;977:315;;;;;:::o;1297:470::-;;;;1443:2;1431:9;1422:7;1418:23;1414:32;1411:2;;;1464:6;1456;1449:22;1411:2;1508:9;1495:23;1527:33;1554:5;1527:33;:::i;:::-;1579:5;-1:-1:-1;1636:2:1;1621:18;;1608:32;1649:35;1608:32;1649:35;:::i;:::-;1401:366;;1703:7;;-1:-1:-1;;;1757:2:1;1742:18;;;;1729:32;;1401:366::o;1772:830::-;;;;;1944:3;1932:9;1923:7;1919:23;1915:33;1912:2;;;1966:6;1958;1951:22;1912:2;2010:9;1997:23;2029:33;2056:5;2029:33;:::i;:::-;2081:5;-1:-1:-1;2138:2:1;2123:18;;2110:32;2151:35;2110:32;2151:35;:::i;:::-;2205:7;-1:-1:-1;2259:2:1;2244:18;;2231:32;;-1:-1:-1;2314:2:1;2299:18;;2286:32;2341:18;2330:30;;2327:2;;;2378:6;2370;2363:22;2327:2;2406:22;;2459:4;2451:13;;2447:27;-1:-1:-1;2437:2:1;;2493:6;2485;2478:22;2437:2;2521:75;2588:7;2583:2;2570:16;2565:2;2561;2557:11;2521:75;:::i;:::-;2511:85;;;1902:700;;;;;;;:::o;2607:438::-;;;2733:2;2721:9;2712:7;2708:23;2704:32;2701:2;;;2754:6;2746;2739:22;2701:2;2798:9;2785:23;2817:33;2844:5;2817:33;:::i;:::-;2869:5;-1:-1:-1;2926:2:1;2911:18;;2898:32;2968:15;;2961:23;2949:36;;2939:2;;3004:6;2996;2989:22;3050:327;;;3179:2;3167:9;3158:7;3154:23;3150:32;3147:2;;;3200:6;3192;3185:22;3147:2;3244:9;3231:23;3263:33;3290:5;3263:33;:::i;:::-;3315:5;3367:2;3352:18;;;;3339:32;;-1:-1:-1;;;3137:240:1:o;3382:257::-;;3493:2;3481:9;3472:7;3468:23;3464:32;3461:2;;;3514:6;3506;3499:22;3461:2;3558:9;3545:23;3577:32;3603:5;3577:32;:::i;3644:261::-;;3766:2;3754:9;3745:7;3741:23;3737:32;3734:2;;;3787:6;3779;3772:22;3734:2;3824:9;3818:16;3843:32;3869:5;3843:32;:::i;3910:292::-;;4062:2;4050:9;4041:7;4037:23;4033:32;4030:2;;;4083:6;4075;4068:22;4030:2;4120:9;4114:16;4139:33;4166:5;4139:33;:::i;4207:482::-;;4329:2;4317:9;4308:7;4304:23;4300:32;4297:2;;;4350:6;4342;4335:22;4297:2;4395:9;4382:23;4428:18;4420:6;4417:30;4414:2;;;4465:6;4457;4450:22;4414:2;4493:22;;4546:4;4538:13;;4534:27;-1:-1:-1;4524:2:1;;4580:6;4572;4565:22;4524:2;4608:75;4675:7;4670:2;4657:16;4652:2;4648;4644:11;4608:75;:::i;4694:190::-;;4806:2;4794:9;4785:7;4781:23;4777:32;4774:2;;;4827:6;4819;4812:22;4774:2;-1:-1:-1;4855:23:1;;4764:120;-1:-1:-1;4764:120:1:o;4889:259::-;;4970:5;4964:12;4997:6;4992:3;4985:19;5013:63;5069:6;5062:4;5057:3;5053:14;5046:4;5039:5;5035:16;5013:63;:::i;:::-;5130:2;5109:15;-1:-1:-1;;5105:29:1;5096:39;;;;5137:4;5092:50;;4940:208;-1:-1:-1;;4940:208:1:o;5153:470::-;;5370:6;5364:13;5386:53;5432:6;5427:3;5420:4;5412:6;5408:17;5386:53;:::i;:::-;5502:13;;5461:16;;;;5524:57;5502:13;5461:16;5558:4;5546:17;;5524:57;:::i;:::-;5597:20;;5340:283;-1:-1:-1;;;;5340:283:1:o;5628:205::-;5828:3;5819:14::o;5838:203::-;-1:-1:-1;;;;;6002:32:1;;;;5984:51;;5972:2;5957:18;;5939:102::o;6046:490::-;-1:-1:-1;;;;;6315:15:1;;;6297:34;;6367:15;;6362:2;6347:18;;6340:43;6414:2;6399:18;;6392:34;;;6462:3;6457:2;6442:18;;6435:31;;;6046:490;;6483:47;;6510:19;;6502:6;6483:47;:::i;:::-;6475:55;6249:287;-1:-1:-1;;;;;;6249:287:1:o;6541:187::-;6706:14;;6699:22;6681:41;;6669:2;6654:18;;6636:92::o;6733:221::-;;6882:2;6871:9;6864:21;6902:46;6944:2;6933:9;6929:18;6921:6;6902:46;:::i;6959:345::-;7161:2;7143:21;;;7200:2;7180:18;;;7173:30;-1:-1:-1;;;7234:2:1;7219:18;;7212:51;7295:2;7280:18;;7133:171::o;7309:414::-;7511:2;7493:21;;;7550:2;7530:18;;;7523:30;7589:34;7584:2;7569:18;;7562:62;-1:-1:-1;;;7655:2:1;7640:18;;7633:48;7713:3;7698:19;;7483:240::o;7728:402::-;7930:2;7912:21;;;7969:2;7949:18;;;7942:30;8008:34;8003:2;7988:18;;7981:62;-1:-1:-1;;;8074:2:1;8059:18;;8052:36;8120:3;8105:19;;7902:228::o;8135:352::-;8337:2;8319:21;;;8376:2;8356:18;;;8349:30;8415;8410:2;8395:18;;8388:58;8478:2;8463:18;;8309:178::o;8492:400::-;8694:2;8676:21;;;8733:2;8713:18;;;8706:30;8772:34;8767:2;8752:18;;8745:62;-1:-1:-1;;;8838:2:1;8823:18;;8816:34;8882:3;8867:19;;8666:226::o;8897:349::-;9099:2;9081:21;;;9138:2;9118:18;;;9111:30;9177:27;9172:2;9157:18;;9150:55;9237:2;9222:18;;9071:175::o;9251:342::-;9453:2;9435:21;;;9492:2;9472:18;;;9465:30;-1:-1:-1;;;9526:2:1;9511:18;;9504:48;9584:2;9569:18;;9425:168::o;9598:408::-;9800:2;9782:21;;;9839:2;9819:18;;;9812:30;9878:34;9873:2;9858:18;;9851:62;-1:-1:-1;;;9944:2:1;9929:18;;9922:42;9996:3;9981:19;;9772:234::o;10011:420::-;10213:2;10195:21;;;10252:2;10232:18;;;10225:30;10291:34;10286:2;10271:18;;10264:62;10362:26;10357:2;10342:18;;10335:54;10421:3;10406:19;;10185:246::o;10436:406::-;10638:2;10620:21;;;10677:2;10657:18;;;10650:30;10716:34;10711:2;10696:18;;10689:62;-1:-1:-1;;;10782:2:1;10767:18;;10760:40;10832:3;10817:19;;10610:232::o;10847:405::-;11049:2;11031:21;;;11088:2;11068:18;;;11061:30;11127:34;11122:2;11107:18;;11100:62;-1:-1:-1;;;11193:2:1;11178:18;;11171:39;11242:3;11227:19;;11021:231::o;11257:356::-;11459:2;11441:21;;;11478:18;;;11471:30;11537:34;11532:2;11517:18;;11510:62;11604:2;11589:18;;11431:182::o;11618:408::-;11820:2;11802:21;;;11859:2;11839:18;;;11832:30;11898:34;11893:2;11878:18;;11871:62;-1:-1:-1;;;11964:2:1;11949:18;;11942:42;12016:3;12001:19;;11792:234::o;12031:356::-;12233:2;12215:21;;;12252:18;;;12245:30;12311:34;12306:2;12291:18;;12284:62;12378:2;12363:18;;12205:182::o;12392:405::-;12594:2;12576:21;;;12633:2;12613:18;;;12606:30;12672:34;12667:2;12652:18;;12645:62;-1:-1:-1;;;12738:2:1;12723:18;;12716:39;12787:3;12772:19;;12566:231::o;12802:411::-;13004:2;12986:21;;;13043:2;13023:18;;;13016:30;13082:34;13077:2;13062:18;;13055:62;-1:-1:-1;;;13148:2:1;13133:18;;13126:45;13203:3;13188:19;;12976:237::o;13218:397::-;13420:2;13402:21;;;13459:2;13439:18;;;13432:30;13498:34;13493:2;13478:18;;13471:62;-1:-1:-1;;;13564:2:1;13549:18;;13542:31;13605:3;13590:19;;13392:223::o;13620:413::-;13822:2;13804:21;;;13861:2;13841:18;;;13834:30;13900:34;13895:2;13880:18;;13873:62;-1:-1:-1;;;13966:2:1;13951:18;;13944:47;14023:3;14008:19;;13794:239::o;14038:345::-;14240:2;14222:21;;;14279:2;14259:18;;;14252:30;-1:-1:-1;;;14313:2:1;14298:18;;14291:51;14374:2;14359:18;;14212:171::o;14388:341::-;14590:2;14572:21;;;14629:2;14609:18;;;14602:30;-1:-1:-1;;;14663:2:1;14648:18;;14641:47;14720:2;14705:18;;14562:167::o;14734:351::-;14936:2;14918:21;;;14975:2;14955:18;;;14948:30;15014:29;15009:2;14994:18;;14987:57;15076:2;15061:18;;14908:177::o;15090:::-;15236:25;;;15224:2;15209:18;;15191:76::o;15272:128::-;;15343:1;15339:6;15336:1;15333:13;15330:2;;;15349:18;;:::i;:::-;-1:-1:-1;15385:9:1;;15320:80::o;15405:120::-;;15471:1;15461:2;;15476:18;;:::i;:::-;-1:-1:-1;15510:9:1;;15451:74::o;15530:168::-;;15636:1;15632;15628:6;15624:14;15621:1;15618:21;15613:1;15606:9;15599:17;15595:45;15592:2;;;15643:18;;:::i;:::-;-1:-1:-1;15683:9:1;;15582:116::o;15703:125::-;;15771:1;15768;15765:8;15762:2;;;15776:18;;:::i;:::-;-1:-1:-1;15813:9:1;;15752:76::o;15833:258::-;15905:1;15915:113;15929:6;15926:1;15923:13;15915:113;;;16005:11;;;15999:18;15986:11;;;15979:39;15951:2;15944:10;15915:113;;;16046:6;16043:1;16040:13;16037:2;;;-1:-1:-1;;16081:1:1;16063:16;;16056:27;15886:205::o;16096:380::-;16181:1;16171:12;;16228:1;16218:12;;;16239:2;;16293:4;16285:6;16281:17;16271:27;;16239:2;16346;16338:6;16335:14;16315:18;16312:38;16309:2;;;16392:10;16387:3;16383:20;16380:1;16373:31;16427:4;16424:1;16417:15;16455:4;16452:1;16445:15;16309:2;;16151:325;;;:::o;16481:135::-;;-1:-1:-1;;16541:17:1;;16538:2;;;16561:18;;:::i;:::-;-1:-1:-1;16608:1:1;16597:13;;16528:88::o;16621:112::-;;16679:1;16669:2;;16684:18;;:::i;:::-;-1:-1:-1;16718:9:1;;16659:74::o;16738:127::-;16799:10;16794:3;16790:20;16787:1;16780:31;16830:4;16827:1;16820:15;16854:4;16851:1;16844:15;16870:127;16931:10;16926:3;16922:20;16919:1;16912:31;16962:4;16959:1;16952:15;16986:4;16983:1;16976:15;17002:127;17063:10;17058:3;17054:20;17051:1;17044:31;17094:4;17091:1;17084:15;17118:4;17115:1;17108:15;17134:133;-1:-1:-1;;;;;17211:31:1;;17201:42;;17191:2;;17257:1;17254;17247:12;17272:133;-1:-1:-1;;;;;;17348:32:1;;17338:43;;17328:2;;17395:1;17392;17385:12

Swarm Source

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