ETH Price: $3,070.93 (-7.04%)
Gas: 7 Gwei

Token

XANA: Genesis (XGS)
 

Overview

Max Total Supply

10,000 XGS

Holders

3,326

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Filtered by Token Holder
kmina.eth
Balance
1 XGS
0xc8db440a9b03cdb005410747f569357df8e778b9
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:
CollectionProxy

Compiler Version
v0.8.17+commit.8df45f5f

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-05-04
*/

// File: contracts\CollectionProxy\IERC1538.sol

pragma solidity ^0.8.0;

/// @title ERC1538 Transparent Contract Standard
/// @dev Required interface
///  Note: the ERC-165 identifier for this interface is 0x61455567
interface IERC1538 {

    /// @dev This emits when one or a set of functions are updated in a transparent contract.
    ///  The message string should give a short description of the change and why
    ///  the change was made.
    event CommitMessage(string message);

    /// @dev This emits for each function that is updated in a transparent contract.
    ///  functionId is the bytes4 of the keccak256 of the function signature.
    ///  oldDelegate is the delegate contract address of the old delegate contract if
    ///  the function is being replaced or removed.
    ///  oldDelegate is the zero value address(0) if a function is being added for the
    ///  first time.
    ///  newDelegate is the delegate contract address of the new delegate contract if
    ///  the function is being added for the first time or if the function is being
    ///  replaced.
    ///  newDelegate is the zero value address(0) if the function is being removed.
    event FunctionUpdate(bytes4 indexed functionId, address indexed oldDelegate, address indexed newDelegate, string functionSignature);

    /// @notice Updates functions in a transparent contract.
    /// @dev If the value of _delegate is zero then the functions specified
    ///  in _functionSignatures are removed.
    ///  If the value of _delegate is a delegate contract address then the functions
    ///  specified in _functionSignatures will be delegated to that address.
    /// @param _delegate The address of a delegate contract to delegate to or zero
    ///        to remove functions.
    /// @param _functionSignatures A list of function signatures listed one after the other
    /// @param _commitMessage A short description of the change and why it is made
    ///        This message is passed to the CommitMessage event.
    function updateContract(address _delegate, string calldata _functionSignatures, string calldata _commitMessage) external;
}

// File: contracts\CollectionProxy\ProxyBaseStorage.sol

pragma solidity ^0.8.0;

///////////////////////////////////////////////////////////////////////////////////////////////////
/**
 * @title ProxyBaseStorage
 * @dev Defining base storage for the proxy contract.
 */
///////////////////////////////////////////////////////////////////////////////////////////////////

contract ProxyBaseStorage {

    //////////////////////////////////////////// VARS /////////////////////////////////////////////

    // maps functions to the delegate contracts that execute the functions.
    // funcId => delegate contract
    mapping(bytes4 => address) public delegates;

    // array of function signatures supported by the contract.
    bytes[] public funcSignatures;

    // maps each function signature to its position in the funcSignatures array.
    // signature => index+1
    mapping(bytes => uint256) internal funcSignatureToIndex;

    // proxy address of itself, can be used for cross-delegate calls but also safety checking.
    address proxy;

    ///////////////////////////////////////////////////////////////////////////////////////////////

}

// 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\token\ERC721\IERC721.sol


// OpenZeppelin Contracts (last updated v4.7.0) (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`.
     *
     * 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;

    /**
     * @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 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 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 the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId) external view returns (address operator);

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

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


// OpenZeppelin Contracts (last updated v4.6.0) (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 `IERC721Receiver.onERC721Received.selector`.
     */
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}

// 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\Address.sol


// OpenZeppelin Contracts (last updated v4.7.0) (utils/Address.sol)

pragma solidity ^0.8.1;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     *
     * [IMPORTANT]
     * ====
     * You shouldn't rely on `isContract` to protect against flash loan attacks!
     *
     * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
     * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
     * constructor.
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize/address.code.length, which returns 0
        // for contracts in construction, since the code is only stored at the end
        // of the constructor execution.

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// 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\utils\Strings.sol


// OpenZeppelin Contracts (last updated v4.7.0) (utils/Strings.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

    /**
     * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation.
     */
    function toHexString(address addr) internal pure returns (string memory) {
        return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH);
    }
}

// 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\ERC721.sol


// OpenZeppelin Contracts (last updated v4.7.0) (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: address zero is not a valid owner");
        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: invalid token ID");
        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) {
        _requireMinted(tokenId);

        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 overridden 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 token owner nor approved for all"
        );

        _approve(to, tokenId);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view virtual override returns (address) {
        _requireMinted(tokenId);

        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: caller is not token 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: caller is not token 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) {
        address owner = ERC721.ownerOf(tokenId);
        return (spender == owner || isApprovedForAll(owner, spender) || getApproved(tokenId) == spender);
    }

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

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

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

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

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

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

        _afterTokenTransfer(address(0), to, tokenId);
    }

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

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

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

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

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

        _afterTokenTransfer(owner, address(0), tokenId);
    }

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);

        _afterTokenTransfer(from, to, tokenId);
    }

    /**
     * @dev Approve `to` to operate on `tokenId`
     *
     * Emits an {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 an {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 Reverts if the `tokenId` has not been minted yet.
     */
    function _requireMinted(uint256 tokenId) internal view virtual {
        require(_exists(tokenId), "ERC721: invalid token ID");
    }

    /**
     * @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 {
                    /// @solidity memory-safe-assembly
                    assembly {
                        revert(add(32, reason), mload(reason))
                    }
                }
            }
        } else {
            return true;
        }
    }

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

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

// File: contracts\OpenseaStandard\IOperatorFilterRegistry.sol


pragma solidity ^0.8.13;

interface IOperatorFilterRegistry {
    /**
     * @notice Returns true if operator is not filtered for a given token, either by address or codeHash. Also returns
     *         true if supplied registrant address is not registered.
     */
    function isOperatorAllowed(address registrant, address operator) external view returns (bool);

    /**
     * @notice Registers an address with the registry. May be called by address itself or by EIP-173 owner.
     */
    function register(address registrant) external;

    /**
     * @notice Registers an address with the registry and "subscribes" to another address's filtered operators and codeHashes.
     */
    function registerAndSubscribe(address registrant, address subscription) external;

    /**
     * @notice Registers an address with the registry and copies the filtered operators and codeHashes from another
     *         address without subscribing.
     */
    function registerAndCopyEntries(address registrant, address registrantToCopy) external;

    /**
     * @notice Unregisters an address with the registry and removes its subscription. May be called by address itself or by EIP-173 owner.
     *         Note that this does not remove any filtered addresses or codeHashes.
     *         Also note that any subscriptions to this registrant will still be active and follow the existing filtered addresses and codehashes.
     */
    function unregister(address addr) external;

    /**
     * @notice Update an operator address for a registered address - when filtered is true, the operator is filtered.
     */
    function updateOperator(address registrant, address operator, bool filtered) external;

    /**
     * @notice Update multiple operators for a registered address - when filtered is true, the operators will be filtered. Reverts on duplicates.
     */
    function updateOperators(address registrant, address[] calldata operators, bool filtered) external;

    /**
     * @notice Update a codeHash for a registered address - when filtered is true, the codeHash is filtered.
     */
    function updateCodeHash(address registrant, bytes32 codehash, bool filtered) external;

    /**
     * @notice Update multiple codeHashes for a registered address - when filtered is true, the codeHashes will be filtered. Reverts on duplicates.
     */
    function updateCodeHashes(address registrant, bytes32[] calldata codeHashes, bool filtered) external;

    /**
     * @notice Subscribe an address to another registrant's filtered operators and codeHashes. Will remove previous
     *         subscription if present.
     *         Note that accounts with subscriptions may go on to subscribe to other accounts - in this case,
     *         subscriptions will not be forwarded. Instead the former subscription's existing entries will still be
     *         used.
     */
    function subscribe(address registrant, address registrantToSubscribe) external;

    /**
     * @notice Unsubscribe an address from its current subscribed registrant, and optionally copy its filtered operators and codeHashes.
     */
    function unsubscribe(address registrant, bool copyExistingEntries) external;

    /**
     * @notice Get the subscription address of a given registrant, if any.
     */
    function subscriptionOf(address addr) external returns (address registrant);

    /**
     * @notice Get the set of addresses subscribed to a given registrant.
     *         Note that order is not guaranteed as updates are made.
     */
    function subscribers(address registrant) external returns (address[] memory);

    /**
     * @notice Get the subscriber at a given index in the set of addresses subscribed to a given registrant.
     *         Note that order is not guaranteed as updates are made.
     */
    function subscriberAt(address registrant, uint256 index) external returns (address);

    /**
     * @notice Copy filtered operators and codeHashes from a different registrantToCopy to addr.
     */
    function copyEntriesOf(address registrant, address registrantToCopy) external;

    /**
     * @notice Returns true if operator is filtered by a given address or its subscription.
     */
    function isOperatorFiltered(address registrant, address operator) external returns (bool);

    /**
     * @notice Returns true if the hash of an address's code is filtered by a given address or its subscription.
     */
    function isCodeHashOfFiltered(address registrant, address operatorWithCode) external returns (bool);

    /**
     * @notice Returns true if a codeHash is filtered by a given address or its subscription.
     */
    function isCodeHashFiltered(address registrant, bytes32 codeHash) external returns (bool);

    /**
     * @notice Returns a list of filtered operators for a given address or its subscription.
     */
    function filteredOperators(address addr) external returns (address[] memory);

    /**
     * @notice Returns the set of filtered codeHashes for a given address or its subscription.
     *         Note that order is not guaranteed as updates are made.
     */
    function filteredCodeHashes(address addr) external returns (bytes32[] memory);

    /**
     * @notice Returns the filtered operator at the given index of the set of filtered operators for a given address or
     *         its subscription.
     *         Note that order is not guaranteed as updates are made.
     */
    function filteredOperatorAt(address registrant, uint256 index) external returns (address);

    /**
     * @notice Returns the filtered codeHash at the given index of the list of filtered codeHashes for a given address or
     *         its subscription.
     *         Note that order is not guaranteed as updates are made.
     */
    function filteredCodeHashAt(address registrant, uint256 index) external returns (bytes32);

    /**
     * @notice Returns true if an address has registered
     */
    function isRegistered(address addr) external returns (bool);

    /**
     * @dev Convenience method to compute the code hash of an arbitrary contract
     */
    function codeHashOf(address addr) external returns (bytes32);
}

// File: contracts\OpenseaStandard\lib\Constants.sol


pragma solidity ^0.8.13;

address constant CANONICAL_OPERATOR_FILTER_REGISTRY_ADDRESS = 0x000000000000AAeB6D7670E522A718067333cd4E;
address constant CANONICAL_CORI_SUBSCRIPTION = 0x3cc6CddA760b79bAfa08dF41ECFA224f810dCeB6;

// File: contracts\OpenseaStandard\OperatorFilterer.sol


pragma solidity ^0.8.13;
/**
 * @title  OperatorFilterer
 * @notice Abstract contract whose constructor automatically registers and optionally subscribes to or copies another
 *         registrant's entries in the OperatorFilterRegistry.
 * @dev    This smart contract is meant to be inherited by token contracts so they can use the following:
 *         - `onlyAllowedOperator` modifier for `transferFrom` and `safeTransferFrom` methods.
 *         - `onlyAllowedOperatorApproval` modifier for `approve` and `setApprovalForAll` methods.
 *         Please note that if your token contract does not provide an owner with EIP-173, it must provide
 *         administration methods on the contract itself to interact with the registry otherwise the subscription
 *         will be locked to the options set during construction.
 */

abstract contract OperatorFilterer {
    /// @dev Emitted when an operator is not allowed.
    error OperatorNotAllowed(address operator);

    IOperatorFilterRegistry public constant OPERATOR_FILTER_REGISTRY =
        IOperatorFilterRegistry(CANONICAL_OPERATOR_FILTER_REGISTRY_ADDRESS);

    /// @dev The constructor that is called when the contract is being deployed.
    constructor(address subscriptionOrRegistrantToCopy, bool subscribe) {
        // If an inheriting token contract is deployed to a network without the registry deployed, the modifier
        // will not revert, but the contract will need to be registered with the registry once it is deployed in
        // order for the modifier to filter addresses.
        if (address(OPERATOR_FILTER_REGISTRY).code.length > 0) {
            if (subscribe) {
                OPERATOR_FILTER_REGISTRY.registerAndSubscribe(address(this), subscriptionOrRegistrantToCopy);
            } else {
                if (subscriptionOrRegistrantToCopy != address(0)) {
                    OPERATOR_FILTER_REGISTRY.registerAndCopyEntries(address(this), subscriptionOrRegistrantToCopy);
                } else {
                    OPERATOR_FILTER_REGISTRY.register(address(this));
                }
            }
        }
    }

    /**
     * @dev A helper function to check if an operator is allowed.
     */
    modifier onlyAllowedOperator(address from) virtual {
        // Allow spending tokens from addresses with balance
        // Note that this still allows listings and marketplaces with escrow to transfer tokens if transferred
        // from an EOA.
        if (from != msg.sender) {
            _checkFilterOperator(msg.sender);
        }
        _;
    }

    /**
     * @dev A helper function to check if an operator approval is allowed.
     */
    modifier onlyAllowedOperatorApproval(address operator) virtual {
        _checkFilterOperator(operator);
        _;
    }

    /**
     * @dev A helper function to check if an operator is allowed.
     */
    function _checkFilterOperator(address operator) internal view virtual {
        // Check registry code length to facilitate testing in environments without a deployed registry.
        if (address(OPERATOR_FILTER_REGISTRY).code.length > 0) {
            // under normal circumstances, this function will revert rather than return false, but inheriting contracts
            // may specify their own OperatorFilterRegistry implementations, which may behave differently
            if (!OPERATOR_FILTER_REGISTRY.isOperatorAllowed(address(this), operator)) {
                revert OperatorNotAllowed(operator);
            }
        }
    }
}

// File: contracts\OpenseaStandard\DefaultOperatorFilterer.sol


pragma solidity ^0.8.13;
/**
 * @title  DefaultOperatorFilterer
 * @notice Inherits from OperatorFilterer and automatically subscribes to the default OpenSea subscription.
 * @dev    Please note that if your token contract does not provide an owner with EIP-173, it must provide
 *         administration methods on the contract itself to interact with the registry otherwise the subscription
 *         will be locked to the options set during construction.
 */

abstract contract DefaultOperatorFilterer is OperatorFilterer {
    /// @dev The constructor that is called when the contract is being deployed.
    constructor() OperatorFilterer(CANONICAL_CORI_SUBSCRIPTION, true) {}
}

// File: contracts\NFTLimit.sol

pragma solidity ^0.8.13;
abstract contract NFTLimit is ERC721, DefaultOperatorFilterer {

    mapping(address => bool) public isTransferAllowed;
    mapping(uint256 => bool) public nftLock;

     modifier  onlyTransferAllowed(address from) {
        require(isTransferAllowed[from],"ERC721: transfer not allowed");
        _;
    }

     modifier  isNFTLock(uint256 tokenId) {
        require(!nftLock[tokenId],"ERC721: NFT is locked");
        _;
    }

    function setApprovalForAll(address operator, bool approved) public override onlyAllowedOperatorApproval(operator)  {
        require(isTransferAllowed[operator],"ERC721: transfer not allowed");
        super.setApprovalForAll(operator, approved);
    }

    function approve(address operator, uint256 tokenId) public  override onlyAllowedOperatorApproval(operator)  {
        require(isTransferAllowed[operator],"ERC721: transfer not allowed");
        super.approve(operator, tokenId);
    }

    


     // OpenSea Enforcer functions
    function transferFrom(address from, address to, uint256 tokenId) public override onlyAllowedOperator(from)  {
        require(isTransferAllowed[msg.sender],"ERC721: transfer not allowed");
        require(!nftLock[tokenId],"ERC721: NFT is locked");
        super.transferFrom(from, to, tokenId);
    }

    function safeTransferFrom(address from, address to, uint256 tokenId) public override onlyAllowedOperator(from)   {
        require(isTransferAllowed[msg.sender],"ERC721: transfer not allowed");
        require(!nftLock[tokenId],"ERC721: NFT is locked");
        super.safeTransferFrom(from, to, tokenId);
    }

    function safeTransferFrom(address from, address to, uint256 tokenId, bytes memory data) public override onlyAllowedOperator(from)  {
        require(isTransferAllowed[msg.sender],"ERC721: transfer not allowed");
        require(!nftLock[tokenId],"ERC721: NFT is locked");
        super.safeTransferFrom(from, to, tokenId, data);
    }

  
}

// File: contracts\ILockedNFT.sol




pragma solidity ^0.8.4;

interface ILockedNFT {
   
    function lockedNft(address collection, uint256 tokenId) external view returns(address,uint256);
}

// File: contracts\IOldGenesis.sol


// ERC721A Contracts v4.2.3
// Creator: Chiru Labs

pragma solidity ^0.8.4;

interface IGenesis {
   
    function ownerOf(uint256 tokenId) external view returns (address owner);

    function bunrAdmin(uint256 tokenId) external;

   
}

// File: contracts\CollectionProxy\CollectionStorage.sol

pragma solidity ^0.8.13;
contract CollectionStorage {

uint256  tokenIds;
uint256 burnCount;
string public baseURI;
mapping(address => bool) public _allowAddress;



 uint256 internal MaxSupply;



 address internal seller;

 uint256 internal royalty;
 bytes32 claimRoot;

 ILockedNFT genesisV1Lock;

 IGenesis oldGenesis;
 address gasCollector;
}

// File: contracts\CollectionProxy\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() {
        _setOwner(_msgSender());
    }

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

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

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

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

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

// File: contracts\CollectionProxy\CollectionProxy.sol

pragma solidity ^0.8.13;
///////////////////////////////////////////////////////////////////////////////////////////////////
/**
 * @title ProxyReceiver Contract
 * @dev Handles forwarding calls to receiver delegates while offering transparency of updates.
 *      Follows ERC-1538 standard.
 *
 *    NOTE: Not recommended for direct use in a production contract, as no security control.
 *          Provided as simple example only.
 */
///////////////////////////////////////////////////////////////////////////////////////////////////

contract CollectionProxy is ProxyBaseStorage, IERC1538, NFTLimit, Ownable, CollectionStorage {
using Strings for uint256;

    constructor(address implementation)ERC721("XANA: Genesis", "XGS") {

        proxy = address(this);
        _allowAddress[msg.sender] = true;
        seller = msg.sender;
        gasCollector = msg.sender;
        tokenIds = 1;
        baseURI = "https://testapi.xanalia.com/xanalia/get-nft-meta?tokenId=";
        oldGenesis = IGenesis(0x5b5cf41d9EC08D101ffEEeeBdA411677582c9448);
        genesisV1Lock = ILockedNFT(0x4d7CB8F936eCc99877A8B190a71Aa1f65F3574e6);
    
        //Adding ERC1538 updateContract function
        bytes memory signature = "updateContract(address,string,string)";
         constructorRegisterFunction(signature, proxy);
         bytes memory setBaseURISig = "setBaseURI(string)";
         constructorRegisterFunction(setBaseURISig, implementation);
         setBaseURISig = "mint(address,uint256)";
         constructorRegisterFunction(setBaseURISig, implementation);
         setBaseURISig = "setSeed(uint256)";
         constructorRegisterFunction(setBaseURISig, implementation);
         setBaseURISig = "burnAdmin(uint256)";
         constructorRegisterFunction(setBaseURISig, implementation);
         setBaseURISig = "setAuthor(address)";
         constructorRegisterFunction(setBaseURISig, implementation);
         setBaseURISig = "setMaxSupply(uint256)";
         constructorRegisterFunction(setBaseURISig, implementation);
         setBaseURISig = "setTransferAllowed(address,bool)";
         constructorRegisterFunction(setBaseURISig, implementation);
         setBaseURISig = "bulkTransfer(uint256[],address,address)";
         constructorRegisterFunction(setBaseURISig, implementation);
         setBaseURISig = "tokenURI(uint256)";
         constructorRegisterFunction(setBaseURISig, implementation);
         setBaseURISig = "totalSupply()";
         constructorRegisterFunction(setBaseURISig, implementation);
         setBaseURISig = "getMaxSupply()";
         constructorRegisterFunction(setBaseURISig, implementation);
         setBaseURISig = "getAuthor(uint256)";
         constructorRegisterFunction(setBaseURISig, implementation);
         setBaseURISig = "getRoyaltyFee(uint256)";
         constructorRegisterFunction(setBaseURISig, implementation);
         setBaseURISig = "getCreator(uint256)";
         constructorRegisterFunction(setBaseURISig, implementation);
         setBaseURISig = "migrate(uint256)";
         constructorRegisterFunction(setBaseURISig, implementation);
         setBaseURISig = "setlockStatusNFT(uint256,bool)";
         constructorRegisterFunction(setBaseURISig, implementation);
         setBaseURISig = "unLockGas(uint256[],uint256)";
         constructorRegisterFunction(setBaseURISig, implementation);
         setBaseURISig = "lockNFTBulk(uint256[],bool)";
         constructorRegisterFunction(setBaseURISig, implementation);
         setBaseURISig = "bulkTransfer(uint256[],address,address)";
         constructorRegisterFunction(setBaseURISig, implementation);
         setBaseURISig = "claimNFT(uint256,bytes32[])";
         constructorRegisterFunction(setBaseURISig, implementation);
         setBaseURISig = "lockGas(uint256[],uint256)";
         constructorRegisterFunction(setBaseURISig, implementation);
         setBaseURISig = "setGasCollector(address)";
         constructorRegisterFunction(setBaseURISig, implementation);
    }

     function constructorRegisterFunction(bytes memory signature, address proxy) internal {
        bytes4 funcId = bytes4(keccak256(signature));
        delegates[funcId] = proxy;
        funcSignatures.push(signature);
        funcSignatureToIndex[signature] = funcSignatures.length;
       
        emit FunctionUpdate(funcId, address(0), proxy, string(signature));
        
        emit CommitMessage("Added ERC1538 updateContract function at contract creation");
    }

    ///////////////////////////////////////////////////////////////////////////////////////////////

    fallback() external payable {
        if (msg.sig == bytes4(0) && msg.value != uint(0)) { // skipping ethers/BNB received to delegate
            return;
        }
        address delegate = delegates[msg.sig];
        require(delegate != address(0), "Function does not exist.");
        assembly {
            let ptr := mload(0x40)
            calldatacopy(ptr, 0, calldatasize())
            let result := delegatecall(gas(), delegate, ptr, calldatasize(), 0, 0)
            let size := returndatasize()
            returndatacopy(ptr, 0, size)
            switch result
            case 0 {revert(ptr, size)}
            default {return (ptr, size)}
        }
    }

    ///////////////////////////////////////////////////////////////////////////////////////////////

    /// @notice Updates functions in a transparent contract.
    /// @dev If the value of _delegate is zero then the functions specified
    ///  in _functionSignatures are removed.
    ///  If the value of _delegate is a delegate contract address then the functions
    ///  specified in _functionSignatures will be delegated to that address.
    /// @param _delegate The address of a delegate contract to delegate to or zero
    /// @param _functionSignatures A list of function signatures listed one after the other
    /// @param _commitMessage A short description of the change and why it is made
    ///        This message is passed to the CommitMessage event.
    function updateContract(address _delegate, string calldata _functionSignatures, string calldata _commitMessage) override onlyOwner external {
        // pos is first used to check the size of the delegate contract.
        // After that pos is the current memory location of _functionSignatures.
        // It is used to move through the characters of _functionSignatures
        uint256 pos;
        if(_delegate != address(0)) {
            assembly {
                pos := extcodesize(_delegate)
            }
            require(pos > 0, "_delegate address is not a contract and is not address(0)");
        }

        // creates a bytes version of _functionSignatures
        bytes memory signatures = bytes(_functionSignatures);
        // stores the position in memory where _functionSignatures ends.
        uint256 signaturesEnd;
        // stores the starting position of a function signature in _functionSignatures
        uint256 start;
        assembly {
            pos := add(signatures,32)
            start := pos
            signaturesEnd := add(pos,mload(signatures))
        }
        // the function id of the current function signature
        bytes4 funcId;
        // the delegate address that is being replaced or address(0) if removing functions
        address oldDelegate;
        // the length of the current function signature in _functionSignatures
        uint256 num;
        // the current character in _functionSignatures
        uint256 char;
        // the position of the current function signature in the funcSignatures array
        uint256 index;
        // the last position in the funcSignatures array
        uint256 lastIndex;
        // parse the _functionSignatures string and handle each function
        for (; pos < signaturesEnd; pos++) {
            assembly {char := byte(0,mload(pos))}
            // 0x29 == )
            if (char == 0x29) {
                pos++;
                num = (pos - start);
                start = pos;
                assembly {
                    mstore(signatures,num)
                }
                funcId = bytes4(keccak256(signatures));
                oldDelegate = delegates[funcId];
                if(_delegate == address(0)) {
                    index = funcSignatureToIndex[signatures];
                    require(index != 0, "Function does not exist.");
                    index--;
                    lastIndex = funcSignatures.length - 1;
                    if (index != lastIndex) {
                        funcSignatures[index] = funcSignatures[lastIndex];
                        funcSignatureToIndex[funcSignatures[lastIndex]] = index + 1;
                    }
                    funcSignatures.pop();
                    delete funcSignatureToIndex[signatures];
                    delete delegates[funcId];
                    emit FunctionUpdate(funcId, oldDelegate, address(0), string(signatures));
                }
                else if (funcSignatureToIndex[signatures] == 0) {
                    require(oldDelegate == address(0), "FuncId clash.");
                    delegates[funcId] = _delegate;
                    funcSignatures.push(signatures);
                    funcSignatureToIndex[signatures] = funcSignatures.length;
                    emit FunctionUpdate(funcId, address(0), _delegate, string(signatures));
                }
                else if (delegates[funcId] != _delegate) {
                    delegates[funcId] = _delegate;
                    emit FunctionUpdate(funcId, oldDelegate, _delegate, string(signatures));

                }
                assembly {signatures := add(signatures,num)}
            }
        }
        emit CommitMessage(_commitMessage);
    }

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

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

    ///////////////////////////////////////////////////////////////////////////////////////////////

}

///////////////////////////////////////////////////////////////////////////////////////////////////

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"implementation","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[{"internalType":"address","name":"operator","type":"address"}],"name":"OperatorNotAllowed","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"string","name":"message","type":"string"}],"name":"CommitMessage","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes4","name":"functionId","type":"bytes4"},{"indexed":true,"internalType":"address","name":"oldDelegate","type":"address"},{"indexed":true,"internalType":"address","name":"newDelegate","type":"address"},{"indexed":false,"internalType":"string","name":"functionSignature","type":"string"}],"name":"FunctionUpdate","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"},{"stateMutability":"payable","type":"fallback"},{"inputs":[],"name":"OPERATOR_FILTER_REGISTRY","outputs":[{"internalType":"contract IOperatorFilterRegistry","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_allowAddress","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","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":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes4","name":"","type":"bytes4"}],"name":"delegates","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"funcSignatures","outputs":[{"internalType":"bytes","name":"","type":"bytes"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"isTransferAllowed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"nftLock","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"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":[{"internalType":"address","name":"_delegate","type":"address"},{"internalType":"string","name":"_functionSignatures","type":"string"},{"internalType":"string","name":"_commitMessage","type":"string"}],"name":"updateContract","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040523480156200001157600080fd5b50604051620030e0380380620030e08339810160408190526200003491620009d7565b733cc6cdda760b79bafa08df41ecfa224f810dceb660016040518060400160405280600d81526020016c58414e413a2047656e6573697360981b8152506040518060400160405280600381526020016258475360e81b81525081600490816200009e919062000aae565b506005620000ad828262000aae565b5050506daaeb6d7670e522a718067333cd4e3b15620001f55780156200014357604051633e9f1edf60e11b81523060048201526001600160a01b03831660248201526daaeb6d7670e522a718067333cd4e90637d3e3dbe906044015b600060405180830381600087803b1580156200012457600080fd5b505af115801562000139573d6000803e3d6000fd5b50505050620001f5565b6001600160a01b03821615620001945760405163a0af290360e01b81523060048201526001600160a01b03831660248201526daaeb6d7670e522a718067333cd4e9063a0af29039060440162000109565b604051632210724360e11b81523060048201526daaeb6d7670e522a718067333cd4e90634420e48690602401600060405180830381600087803b158015620001db57600080fd5b505af1158015620001f0573d6000803e3d6000fd5b505050505b5062000203905033620007fa565b600380546001600160a01b0319908116301790915533600081815260106020908152604091829020805460ff191660019081179091556012805486168517905560178054909516909317909355600d91909155805160608101909152603980825290916200305b90830139600f906200027d908262000aae565b50601680546001600160a01b0319908116735b5cf41d9ec08d101ffeeeebda411677582c94481790915560158054909116734d7cb8f936ecc99877a8b190a71aa1f65f3574e61790556040805160608101909152602580825260009190620030946020830139600354909150620002ff9082906001600160a01b03166200084c565b6040805180820190915260128152717365744261736555524928737472696e672960701b60208201526200033481846200084c565b5060408051808201909152601581527f6d696e7428616464726573732c75696e7432353629000000000000000000000060208201526200037581846200084c565b5060408051808201909152601081526f736574536565642875696e743235362960801b6020820152620003a981846200084c565b506040805180820190915260128152716275726e41646d696e2875696e743235362960701b6020820152620003df81846200084c565b50604080518082019091526012815271736574417574686f7228616464726573732960701b60208201526200041581846200084c565b5060408051808201909152601581527f7365744d6178537570706c792875696e7432353629000000000000000000000060208201526200045681846200084c565b506040805180820190915260208082527f7365745472616e73666572416c6c6f77656428616464726573732c626f6f6c29908201526200049781846200084c565b604051806060016040528060278152602001620030b9602791399050620004bf81846200084c565b50604080518082019091526011815270746f6b656e5552492875696e743235362960781b6020820152620004f481846200084c565b5060408051808201909152600d81526c746f74616c537570706c79282960981b60208201526200052581846200084c565b5060408051808201909152600e81526d6765744d6178537570706c79282960901b60208201526200055781846200084c565b50604080518082019091526012815271676574417574686f722875696e743235362960701b60208201526200058d81846200084c565b5060408051808201909152601681527f676574526f79616c74794665652875696e7432353629000000000000000000006020820152620005ce81846200084c565b5060408051808201909152601381527f67657443726561746f722875696e74323536290000000000000000000000000060208201526200060f81846200084c565b5060408051808201909152601081526f6d6967726174652875696e743235362960801b60208201526200064381846200084c565b5060408051808201909152601e81527f7365746c6f636b5374617475734e46542875696e743235362c626f6f6c29000060208201526200068481846200084c565b5060408051808201909152601c81527f756e4c6f636b4761732875696e743235365b5d2c75696e7432353629000000006020820152620006c581846200084c565b5060408051808201909152601b81527f6c6f636b4e465442756c6b2875696e743235365b5d2c626f6f6c29000000000060208201526200070681846200084c565b604051806060016040528060278152602001620030b96027913990506200072e81846200084c565b5060408051808201909152601b81527f636c61696d4e46542875696e743235362c627974657333325b5d29000000000060208201526200076f81846200084c565b5060408051808201909152601a81527f6c6f636b4761732875696e743235365b5d2c75696e74323536290000000000006020820152620007b081846200084c565b5060408051808201909152601881527f736574476173436f6c6c6563746f7228616464726573732900000000000000006020820152620007f181846200084c565b50505062000bf3565b600c80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b81516020808401919091206001600160e01b031981166000908152918290526040822080546001600160a01b0319166001600160a01b0385161790556001805480820182559252907fb10e2d527612073b26eecdfd717e6a320cf44b4afac2b0732d9fcbe2b7fa0cf601620008c2848262000aae565b50600154604051600290620008d990869062000ba0565b908152602001604051809103902081905550816001600160a01b031660006001600160a01b0316826001600160e01b0319167f3234040ce3bd4564874e44810f198910133a1b24c4e84aac87edbf6b458f5353866040516200093c919062000bbe565b60405180910390a47faa1c0a0a78cec2470f9652e5d29540752e7a64d70f926933cebf13afaeda45de604051620009ca906020808252603a908201527f4164646564204552433135333820757064617465436f6e74726163742066756e60408201527f6374696f6e20617420636f6e7472616374206372656174696f6e000000000000606082015260800190565b60405180910390a1505050565b600060208284031215620009ea57600080fd5b81516001600160a01b038116811462000a0257600080fd5b9392505050565b634e487b7160e01b600052604160045260246000fd5b600181811c9082168062000a3457607f821691505b60208210810362000a5557634e487b7160e01b600052602260045260246000fd5b50919050565b601f82111562000aa957600081815260208120601f850160051c8101602086101562000a845750805b601f850160051c820191505b8181101562000aa55782815560010162000a90565b5050505b505050565b81516001600160401b0381111562000aca5762000aca62000a09565b62000ae28162000adb845462000a1f565b8462000a5b565b602080601f83116001811462000b1a576000841562000b015750858301515b600019600386901b1c1916600185901b17855562000aa5565b600085815260208120601f198616915b8281101562000b4b5788860151825594840194600190910190840162000b2a565b508582101562000b6a5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b60005b8381101562000b9757818101518382015260200162000b7d565b50506000910152565b6000825162000bb481846020870162000b7a565b9190910192915050565b602081526000825180602084015262000bdf81604085016020870162000b7a565b601f01601f19169190910160400192915050565b6124588062000c036000396000f3fe60806040526004361061014b5760003560e01c80636c0360eb116100b6578063a0a2daf01161006f578063a0a2daf01461048e578063a22cb465146104c4578063b88d4fde146104e4578063c87b56dd14610504578063e985e9c514610524578063f2fde38b146105445761014b565b80636c0360eb146103d357806370a08231146103e8578063715018a6146104165780638822048e1461042b5780638da5cb5b1461045b57806395d89b41146104795761014b565b806341f434341161010857806341f43434146102f157806342842e0e14610313578063495d815114610333578063521b52a41461036357806361455567146103935780636352211e146103b35761014b565b806301ffc9a71461020257806306fdde0314610237578063081812fc14610259578063095ea7b31461029157806323b872dd146102b157806326a6860a146102d1575b6000356001600160e01b03191615801561016457503415155b1561016b57005b600080356001600160e01b0319168152602081905260409020546001600160a01b0316806101db5760405162461bcd60e51b8152602060048201526018602482015277233ab731ba34b7b7103237b2b9903737ba1032bc34b9ba1760411b60448201526064015b60405180910390fd5b60405136600082376000803683855af43d806000843e8180156101fc578184f35b8184fd5b005b34801561020e57600080fd5b5061022261021d366004611b23565b610564565b60405190151581526020015b60405180910390f35b34801561024357600080fd5b5061024c6105b6565b60405161022e9190611b90565b34801561026557600080fd5b50610279610274366004611ba3565b610648565b6040516001600160a01b03909116815260200161022e565b34801561029d57600080fd5b506102006102ac366004611bd8565b61066f565b3480156102bd57600080fd5b506102006102cc366004611c02565b6106c0565b3480156102dd57600080fd5b5061024c6102ec366004611ba3565b610749565b3480156102fd57600080fd5b506102796daaeb6d7670e522a718067333cd4e81565b34801561031f57600080fd5b5061020061032e366004611c02565b6107f5565b34801561033f57600080fd5b5061022261034e366004611ba3565b600b6020526000908152604090205460ff1681565b34801561036f57600080fd5b5061022261037e366004611c3e565b60106020526000908152604090205460ff1681565b34801561039f57600080fd5b506102006103ae366004611ca2565b610878565b3480156103bf57600080fd5b506102796103ce366004611ba3565b610e83565b3480156103df57600080fd5b5061024c610ee3565b3480156103f457600080fd5b50610408610403366004611c3e565b610ef0565b60405190815260200161022e565b34801561042257600080fd5b50610200610f76565b34801561043757600080fd5b50610222610446366004611c3e565b600a6020526000908152604090205460ff1681565b34801561046757600080fd5b50600c546001600160a01b0316610279565b34801561048557600080fd5b5061024c610fac565b34801561049a57600080fd5b506102796104a9366004611b23565b6000602081905290815260409020546001600160a01b031681565b3480156104d057600080fd5b506102006104df366004611d31565b610fbb565b3480156104f057600080fd5b506102006104ff366004611d7e565b611007565b34801561051057600080fd5b5061024c61051f366004611ba3565b611092565b34801561053057600080fd5b5061022261053f366004611e5a565b61116d565b34801561055057600080fd5b5061020061055f366004611c3e565b61119b565b60006001600160e01b031982166380ac58cd60e01b148061059557506001600160e01b03198216635b5e139f60e01b145b806105b057506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600480546105c590611e8d565b80601f01602080910402602001604051908101604052809291908181526020018280546105f190611e8d565b801561063e5780601f106106135761010080835404028352916020019161063e565b820191906000526020600020905b81548152906001019060200180831161062157829003601f168201915b5050505050905090565b600061065382611236565b506000908152600860205260409020546001600160a01b031690565b8161067981611295565b6001600160a01b0383166000908152600a602052604090205460ff166106b15760405162461bcd60e51b81526004016101d290611ec7565b6106bb838361134e565b505050565b826001600160a01b03811633146106da576106da33611295565b336000908152600a602052604090205460ff166107095760405162461bcd60e51b81526004016101d290611ec7565b6000828152600b602052604090205460ff16156107385760405162461bcd60e51b81526004016101d290611efe565b61074384848461145e565b50505050565b6001818154811061075957600080fd5b90600052602060002001600091509050805461077490611e8d565b80601f01602080910402602001604051908101604052809291908181526020018280546107a090611e8d565b80156107ed5780601f106107c2576101008083540402835291602001916107ed565b820191906000526020600020905b8154815290600101906020018083116107d057829003601f168201915b505050505081565b826001600160a01b038116331461080f5761080f33611295565b336000908152600a602052604090205460ff1661083e5760405162461bcd60e51b81526004016101d290611ec7565b6000828152600b602052604090205460ff161561086d5760405162461bcd60e51b81526004016101d290611efe565b61074384848461148f565b600c546001600160a01b031633146108a25760405162461bcd60e51b81526004016101d290611f2d565b60006001600160a01b038616156109295750843b806109295760405162461bcd60e51b815260206004820152603960248201527f5f64656c65676174652061646472657373206973206e6f74206120636f6e747260448201527f61637420616e64206973206e6f7420616464726573732830290000000000000060648201526084016101d2565b600085858080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201829052508451602080870198509596508601909401938693509150819050808080805b878a1015610e3957895160001a925082602903610e27578961099d81611f78565b9a506109ab9050878b611f91565b808a526020808b018290206001600160e01b031981166000908152918290526040909120548c99509097506001600160a01b0390811696509094508f16610bcc576002896040516109fc9190611fa4565b908152602001604051809103902054915081600003610a585760405162461bcd60e51b8152602060048201526018602482015277233ab731ba34b7b7103237b2b9903737ba1032bc34b9ba1760411b60448201526064016101d2565b81610a6281611fc0565b60018054919450610a74925090611f91565b9050808214610b0c5760018181548110610a9057610a90611fd7565b9060005260206000200160018381548110610aad57610aad611fd7565b906000526020600020019081610ac3919061203b565b50610acf826001612118565b600260018381548110610ae457610ae4611fd7565b90600052602060002001604051610afb919061212b565b908152604051908190036020019020555b6001805480610b1d57610b1d6121a1565b600190038181906000526020600020016000610b399190611abf565b9055600289604051610b4b9190611fa4565b90815260408051602092819003830181206000908190556001600160e01b03198a168082529381905291822080546001600160a01b031916905590916001600160a01b038816917f3234040ce3bd4564874e44810f198910133a1b24c4e84aac87edbf6b458f535390610bbf908e90611b90565b60405180910390a4610e22565b600289604051610bdc9190611fa4565b908152602001604051809103902054600003610d2e576001600160a01b03851615610c395760405162461bcd60e51b815260206004820152600d60248201526c233ab731a4b21031b630b9b41760991b60448201526064016101d2565b8e600080886001600160e01b0319166001600160e01b031916815260200190815260200160002060006101000a8154816001600160a01b0302191690836001600160a01b03160217905550600189908060018154018082558091505060019003906000526020600020016000909190919091509081610cb891906121b7565b50600154604051600290610ccd908c90611fa4565b9081526020016040518091039020819055508e6001600160a01b031660006001600160a01b0316876001600160e01b0319167f3234040ce3bd4564874e44810f198910133a1b24c4e84aac87edbf6b458f53538c604051610bbf9190611b90565b8e6001600160a01b0316600080886001600160e01b0319166001600160e01b031916815260200190815260200160002060009054906101000a90046001600160a01b03166001600160a01b031614610e22578e600080886001600160e01b0319166001600160e01b031916815260200190815260200160002060006101000a8154816001600160a01b0302191690836001600160a01b031602179055508e6001600160a01b0316856001600160a01b0316876001600160e01b0319167f3234040ce3bd4564874e44810f198910133a1b24c4e84aac87edbf6b458f53538c604051610e199190611b90565b60405180910390a45b978301975b89610e3181611f78565b9a505061097c565b7faa1c0a0a78cec2470f9652e5d29540752e7a64d70f926933cebf13afaeda45de8c8c604051610e6a92919061226f565b60405180910390a1505050505050505050505050505050565b6000818152600660205260408120546001600160a01b0316806105b05760405162461bcd60e51b8152602060048201526018602482015277115490cdcc8c4e881a5b9d985b1a59081d1bdad95b88125160421b60448201526064016101d2565b600f805461077490611e8d565b60006001600160a01b038216610f5a5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a2061646472657373207a65726f206973206e6f7420612076616044820152683634b21037bbb732b960b91b60648201526084016101d2565b506001600160a01b031660009081526007602052604090205490565b600c546001600160a01b03163314610fa05760405162461bcd60e51b81526004016101d290611f2d565b610faa60006114aa565b565b6060600580546105c590611e8d565b81610fc581611295565b6001600160a01b0383166000908152600a602052604090205460ff16610ffd5760405162461bcd60e51b81526004016101d290611ec7565b6106bb83836114fc565b836001600160a01b03811633146110215761102133611295565b336000908152600a602052604090205460ff166110505760405162461bcd60e51b81526004016101d290611ec7565b6000838152600b602052604090205460ff161561107f5760405162461bcd60e51b81526004016101d290611efe565b61108b8585858561150b565b5050505050565b6000818152600660205260409020546060906001600160a01b03166111115760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016101d2565b600061111b61153d565b9050600081511161113b5760405180602001604052806000815250611166565b806111458461154c565b60405160200161115692919061229e565b6040516020818303038152906040525b9392505050565b6001600160a01b03918216600090815260096020908152604080832093909416825291909152205460ff1690565b600c546001600160a01b031633146111c55760405162461bcd60e51b81526004016101d290611f2d565b6001600160a01b03811661122a5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016101d2565b611233816114aa565b50565b6000818152600660205260409020546001600160a01b03166112335760405162461bcd60e51b8152602060048201526018602482015277115490cdcc8c4e881a5b9d985b1a59081d1bdad95b88125160421b60448201526064016101d2565b6daaeb6d7670e522a718067333cd4e3b1561123357604051633185c44d60e21b81523060048201526001600160a01b03821660248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa158015611302573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061132691906122cd565b61123357604051633b79c77360e21b81526001600160a01b03821660048201526024016101d2565b600061135982610e83565b9050806001600160a01b0316836001600160a01b0316036113c65760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016101d2565b336001600160a01b03821614806113e257506113e2813361116d565b6114545760405162461bcd60e51b815260206004820152603e60248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60448201527f6b656e206f776e6572206e6f7220617070726f76656420666f7220616c6c000060648201526084016101d2565b6106bb8383611655565b61146833826116c3565b6114845760405162461bcd60e51b81526004016101d2906122ea565b6106bb838383611721565b6106bb83838360405180602001604052806000815250611007565b600c80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6115073383836118bd565b5050565b61151533836116c3565b6115315760405162461bcd60e51b81526004016101d2906122ea565b6107438484848461198b565b6060600f80546105c590611e8d565b6060816000036115735750506040805180820190915260018152600360fc1b602082015290565b8160005b811561159d578061158781611f78565b91506115969050600a8361234e565b9150611577565b60008167ffffffffffffffff8111156115b8576115b8611d68565b6040519080825280601f01601f1916602001820160405280156115e2576020820181803683370190505b5090505b841561164d576115f7600183611f91565b9150611604600a86612362565b61160f906030612118565b60f81b81838151811061162457611624611fd7565b60200101906001600160f81b031916908160001a905350611646600a8661234e565b94506115e6565b949350505050565b600081815260086020526040902080546001600160a01b0319166001600160a01b038416908117909155819061168a82610e83565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000806116cf83610e83565b9050806001600160a01b0316846001600160a01b031614806116f657506116f6818561116d565b8061164d5750836001600160a01b031661170f84610648565b6001600160a01b031614949350505050565b826001600160a01b031661173482610e83565b6001600160a01b0316146117985760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201526437bbb732b960d91b60648201526084016101d2565b6001600160a01b0382166117fa5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016101d2565b611805600082611655565b6001600160a01b038316600090815260076020526040812080546001929061182e908490611f91565b90915550506001600160a01b038216600090815260076020526040812080546001929061185c908490612118565b909155505060008181526006602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b816001600160a01b0316836001600160a01b03160361191e5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016101d2565b6001600160a01b03838116600081815260096020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b611996848484611721565b6119a2848484846119be565b6107435760405162461bcd60e51b81526004016101d290612376565b60006001600160a01b0384163b15611ab457604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611a029033908990889088906004016123c8565b6020604051808303816000875af1925050508015611a3d575060408051601f3d908101601f19168201909252611a3a91810190612405565b60015b611a9a573d808015611a6b576040519150601f19603f3d011682016040523d82523d6000602084013e611a70565b606091505b508051600003611a925760405162461bcd60e51b81526004016101d290612376565b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905061164d565b506001949350505050565b508054611acb90611e8d565b6000825580601f10611adb575050565b601f01602090049060005260206000209081019061123391905b80821115611b095760008155600101611af5565b5090565b6001600160e01b03198116811461123357600080fd5b600060208284031215611b3557600080fd5b813561116681611b0d565b60005b83811015611b5b578181015183820152602001611b43565b50506000910152565b60008151808452611b7c816020860160208601611b40565b601f01601f19169290920160200192915050565b6020815260006111666020830184611b64565b600060208284031215611bb557600080fd5b5035919050565b80356001600160a01b0381168114611bd357600080fd5b919050565b60008060408385031215611beb57600080fd5b611bf483611bbc565b946020939093013593505050565b600080600060608486031215611c1757600080fd5b611c2084611bbc565b9250611c2e60208501611bbc565b9150604084013590509250925092565b600060208284031215611c5057600080fd5b61116682611bbc565b60008083601f840112611c6b57600080fd5b50813567ffffffffffffffff811115611c8357600080fd5b602083019150836020828501011115611c9b57600080fd5b9250929050565b600080600080600060608688031215611cba57600080fd5b611cc386611bbc565b9450602086013567ffffffffffffffff80821115611ce057600080fd5b611cec89838a01611c59565b90965094506040880135915080821115611d0557600080fd5b50611d1288828901611c59565b969995985093965092949392505050565b801515811461123357600080fd5b60008060408385031215611d4457600080fd5b611d4d83611bbc565b91506020830135611d5d81611d23565b809150509250929050565b634e487b7160e01b600052604160045260246000fd5b60008060008060808587031215611d9457600080fd5b611d9d85611bbc565b9350611dab60208601611bbc565b925060408501359150606085013567ffffffffffffffff80821115611dcf57600080fd5b818701915087601f830112611de357600080fd5b813581811115611df557611df5611d68565b604051601f8201601f19908116603f01168101908382118183101715611e1d57611e1d611d68565b816040528281528a6020848701011115611e3657600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b60008060408385031215611e6d57600080fd5b611e7683611bbc565b9150611e8460208401611bbc565b90509250929050565b600181811c90821680611ea157607f821691505b602082108103611ec157634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252601c908201527f4552433732313a207472616e73666572206e6f7420616c6c6f77656400000000604082015260600190565b602080825260159082015274115490cdcc8c4e88139195081a5cc81b1bd8dad959605a1b604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b600060018201611f8a57611f8a611f62565b5060010190565b818103818111156105b0576105b0611f62565b60008251611fb6818460208701611b40565b9190910192915050565b600081611fcf57611fcf611f62565b506000190190565b634e487b7160e01b600052603260045260246000fd5b601f8211156106bb57600081815260208120601f850160051c810160208610156120145750805b601f850160051c820191505b8181101561203357828155600101612020565b505050505050565b818103612046575050565b6120508254611e8d565b67ffffffffffffffff81111561206857612068611d68565b61207c816120768454611e8d565b84611fed565b6000601f8211600181146120b057600083156120985750848201545b600019600385901b1c1916600184901b17845561108b565b600085815260209020601f19841690600086815260209020845b838110156120ea57828601548255600195860195909101906020016120ca565b50858310156121085781850154600019600388901b60f8161c191681555b5050505050600190811b01905550565b808201808211156105b0576105b0611f62565b600080835461213981611e8d565b60018281168015612151576001811461216657612195565b60ff1984168752821515830287019450612195565b8760005260208060002060005b8581101561218c5781548a820152908401908201612173565b50505082870194505b50929695505050505050565b634e487b7160e01b600052603160045260246000fd5b815167ffffffffffffffff8111156121d1576121d1611d68565b6121df816120768454611e8d565b602080601f83116001811461221457600084156121fc5750858301515b600019600386901b1c1916600185901b178555612033565b600085815260208120601f198616915b8281101561224357888601518255948401946001909101908401612224565b508582101561210857939096015160001960f8600387901b161c19169092555050600190811b01905550565b60208152816020820152818360408301376000818301604090810191909152601f909201601f19160101919050565b600083516122b0818460208801611b40565b8351908301906122c4818360208801611b40565b01949350505050565b6000602082840312156122df57600080fd5b815161116681611d23565b6020808252602e908201527f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560408201526d1c881b9bdc88185c1c1c9bdd995960921b606082015260800190565b634e487b7160e01b600052601260045260246000fd5b60008261235d5761235d612338565b500490565b60008261237157612371612338565b500690565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906123fb90830184611b64565b9695505050505050565b60006020828403121561241757600080fd5b815161116681611b0d56fea2646970667358221220db861581b1ddd36391df34a3fa6258e20fcdd23db2ce0fadb96d86c6a103f37464736f6c6343000811003368747470733a2f2f746573746170692e78616e616c69612e636f6d2f78616e616c69612f6765742d6e66742d6d6574613f746f6b656e49643d757064617465436f6e747261637428616464726573732c737472696e672c737472696e672962756c6b5472616e736665722875696e743235365b5d2c616464726573732c6164647265737329000000000000000000000000632b73f5cdf8500b5db98f077138c660285a2033

Deployed Bytecode

0x60806040526004361061014b5760003560e01c80636c0360eb116100b6578063a0a2daf01161006f578063a0a2daf01461048e578063a22cb465146104c4578063b88d4fde146104e4578063c87b56dd14610504578063e985e9c514610524578063f2fde38b146105445761014b565b80636c0360eb146103d357806370a08231146103e8578063715018a6146104165780638822048e1461042b5780638da5cb5b1461045b57806395d89b41146104795761014b565b806341f434341161010857806341f43434146102f157806342842e0e14610313578063495d815114610333578063521b52a41461036357806361455567146103935780636352211e146103b35761014b565b806301ffc9a71461020257806306fdde0314610237578063081812fc14610259578063095ea7b31461029157806323b872dd146102b157806326a6860a146102d1575b6000356001600160e01b03191615801561016457503415155b1561016b57005b600080356001600160e01b0319168152602081905260409020546001600160a01b0316806101db5760405162461bcd60e51b8152602060048201526018602482015277233ab731ba34b7b7103237b2b9903737ba1032bc34b9ba1760411b60448201526064015b60405180910390fd5b60405136600082376000803683855af43d806000843e8180156101fc578184f35b8184fd5b005b34801561020e57600080fd5b5061022261021d366004611b23565b610564565b60405190151581526020015b60405180910390f35b34801561024357600080fd5b5061024c6105b6565b60405161022e9190611b90565b34801561026557600080fd5b50610279610274366004611ba3565b610648565b6040516001600160a01b03909116815260200161022e565b34801561029d57600080fd5b506102006102ac366004611bd8565b61066f565b3480156102bd57600080fd5b506102006102cc366004611c02565b6106c0565b3480156102dd57600080fd5b5061024c6102ec366004611ba3565b610749565b3480156102fd57600080fd5b506102796daaeb6d7670e522a718067333cd4e81565b34801561031f57600080fd5b5061020061032e366004611c02565b6107f5565b34801561033f57600080fd5b5061022261034e366004611ba3565b600b6020526000908152604090205460ff1681565b34801561036f57600080fd5b5061022261037e366004611c3e565b60106020526000908152604090205460ff1681565b34801561039f57600080fd5b506102006103ae366004611ca2565b610878565b3480156103bf57600080fd5b506102796103ce366004611ba3565b610e83565b3480156103df57600080fd5b5061024c610ee3565b3480156103f457600080fd5b50610408610403366004611c3e565b610ef0565b60405190815260200161022e565b34801561042257600080fd5b50610200610f76565b34801561043757600080fd5b50610222610446366004611c3e565b600a6020526000908152604090205460ff1681565b34801561046757600080fd5b50600c546001600160a01b0316610279565b34801561048557600080fd5b5061024c610fac565b34801561049a57600080fd5b506102796104a9366004611b23565b6000602081905290815260409020546001600160a01b031681565b3480156104d057600080fd5b506102006104df366004611d31565b610fbb565b3480156104f057600080fd5b506102006104ff366004611d7e565b611007565b34801561051057600080fd5b5061024c61051f366004611ba3565b611092565b34801561053057600080fd5b5061022261053f366004611e5a565b61116d565b34801561055057600080fd5b5061020061055f366004611c3e565b61119b565b60006001600160e01b031982166380ac58cd60e01b148061059557506001600160e01b03198216635b5e139f60e01b145b806105b057506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600480546105c590611e8d565b80601f01602080910402602001604051908101604052809291908181526020018280546105f190611e8d565b801561063e5780601f106106135761010080835404028352916020019161063e565b820191906000526020600020905b81548152906001019060200180831161062157829003601f168201915b5050505050905090565b600061065382611236565b506000908152600860205260409020546001600160a01b031690565b8161067981611295565b6001600160a01b0383166000908152600a602052604090205460ff166106b15760405162461bcd60e51b81526004016101d290611ec7565b6106bb838361134e565b505050565b826001600160a01b03811633146106da576106da33611295565b336000908152600a602052604090205460ff166107095760405162461bcd60e51b81526004016101d290611ec7565b6000828152600b602052604090205460ff16156107385760405162461bcd60e51b81526004016101d290611efe565b61074384848461145e565b50505050565b6001818154811061075957600080fd5b90600052602060002001600091509050805461077490611e8d565b80601f01602080910402602001604051908101604052809291908181526020018280546107a090611e8d565b80156107ed5780601f106107c2576101008083540402835291602001916107ed565b820191906000526020600020905b8154815290600101906020018083116107d057829003601f168201915b505050505081565b826001600160a01b038116331461080f5761080f33611295565b336000908152600a602052604090205460ff1661083e5760405162461bcd60e51b81526004016101d290611ec7565b6000828152600b602052604090205460ff161561086d5760405162461bcd60e51b81526004016101d290611efe565b61074384848461148f565b600c546001600160a01b031633146108a25760405162461bcd60e51b81526004016101d290611f2d565b60006001600160a01b038616156109295750843b806109295760405162461bcd60e51b815260206004820152603960248201527f5f64656c65676174652061646472657373206973206e6f74206120636f6e747260448201527f61637420616e64206973206e6f7420616464726573732830290000000000000060648201526084016101d2565b600085858080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201829052508451602080870198509596508601909401938693509150819050808080805b878a1015610e3957895160001a925082602903610e27578961099d81611f78565b9a506109ab9050878b611f91565b808a526020808b018290206001600160e01b031981166000908152918290526040909120548c99509097506001600160a01b0390811696509094508f16610bcc576002896040516109fc9190611fa4565b908152602001604051809103902054915081600003610a585760405162461bcd60e51b8152602060048201526018602482015277233ab731ba34b7b7103237b2b9903737ba1032bc34b9ba1760411b60448201526064016101d2565b81610a6281611fc0565b60018054919450610a74925090611f91565b9050808214610b0c5760018181548110610a9057610a90611fd7565b9060005260206000200160018381548110610aad57610aad611fd7565b906000526020600020019081610ac3919061203b565b50610acf826001612118565b600260018381548110610ae457610ae4611fd7565b90600052602060002001604051610afb919061212b565b908152604051908190036020019020555b6001805480610b1d57610b1d6121a1565b600190038181906000526020600020016000610b399190611abf565b9055600289604051610b4b9190611fa4565b90815260408051602092819003830181206000908190556001600160e01b03198a168082529381905291822080546001600160a01b031916905590916001600160a01b038816917f3234040ce3bd4564874e44810f198910133a1b24c4e84aac87edbf6b458f535390610bbf908e90611b90565b60405180910390a4610e22565b600289604051610bdc9190611fa4565b908152602001604051809103902054600003610d2e576001600160a01b03851615610c395760405162461bcd60e51b815260206004820152600d60248201526c233ab731a4b21031b630b9b41760991b60448201526064016101d2565b8e600080886001600160e01b0319166001600160e01b031916815260200190815260200160002060006101000a8154816001600160a01b0302191690836001600160a01b03160217905550600189908060018154018082558091505060019003906000526020600020016000909190919091509081610cb891906121b7565b50600154604051600290610ccd908c90611fa4565b9081526020016040518091039020819055508e6001600160a01b031660006001600160a01b0316876001600160e01b0319167f3234040ce3bd4564874e44810f198910133a1b24c4e84aac87edbf6b458f53538c604051610bbf9190611b90565b8e6001600160a01b0316600080886001600160e01b0319166001600160e01b031916815260200190815260200160002060009054906101000a90046001600160a01b03166001600160a01b031614610e22578e600080886001600160e01b0319166001600160e01b031916815260200190815260200160002060006101000a8154816001600160a01b0302191690836001600160a01b031602179055508e6001600160a01b0316856001600160a01b0316876001600160e01b0319167f3234040ce3bd4564874e44810f198910133a1b24c4e84aac87edbf6b458f53538c604051610e199190611b90565b60405180910390a45b978301975b89610e3181611f78565b9a505061097c565b7faa1c0a0a78cec2470f9652e5d29540752e7a64d70f926933cebf13afaeda45de8c8c604051610e6a92919061226f565b60405180910390a1505050505050505050505050505050565b6000818152600660205260408120546001600160a01b0316806105b05760405162461bcd60e51b8152602060048201526018602482015277115490cdcc8c4e881a5b9d985b1a59081d1bdad95b88125160421b60448201526064016101d2565b600f805461077490611e8d565b60006001600160a01b038216610f5a5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a2061646472657373207a65726f206973206e6f7420612076616044820152683634b21037bbb732b960b91b60648201526084016101d2565b506001600160a01b031660009081526007602052604090205490565b600c546001600160a01b03163314610fa05760405162461bcd60e51b81526004016101d290611f2d565b610faa60006114aa565b565b6060600580546105c590611e8d565b81610fc581611295565b6001600160a01b0383166000908152600a602052604090205460ff16610ffd5760405162461bcd60e51b81526004016101d290611ec7565b6106bb83836114fc565b836001600160a01b03811633146110215761102133611295565b336000908152600a602052604090205460ff166110505760405162461bcd60e51b81526004016101d290611ec7565b6000838152600b602052604090205460ff161561107f5760405162461bcd60e51b81526004016101d290611efe565b61108b8585858561150b565b5050505050565b6000818152600660205260409020546060906001600160a01b03166111115760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016101d2565b600061111b61153d565b9050600081511161113b5760405180602001604052806000815250611166565b806111458461154c565b60405160200161115692919061229e565b6040516020818303038152906040525b9392505050565b6001600160a01b03918216600090815260096020908152604080832093909416825291909152205460ff1690565b600c546001600160a01b031633146111c55760405162461bcd60e51b81526004016101d290611f2d565b6001600160a01b03811661122a5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016101d2565b611233816114aa565b50565b6000818152600660205260409020546001600160a01b03166112335760405162461bcd60e51b8152602060048201526018602482015277115490cdcc8c4e881a5b9d985b1a59081d1bdad95b88125160421b60448201526064016101d2565b6daaeb6d7670e522a718067333cd4e3b1561123357604051633185c44d60e21b81523060048201526001600160a01b03821660248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa158015611302573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061132691906122cd565b61123357604051633b79c77360e21b81526001600160a01b03821660048201526024016101d2565b600061135982610e83565b9050806001600160a01b0316836001600160a01b0316036113c65760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016101d2565b336001600160a01b03821614806113e257506113e2813361116d565b6114545760405162461bcd60e51b815260206004820152603e60248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60448201527f6b656e206f776e6572206e6f7220617070726f76656420666f7220616c6c000060648201526084016101d2565b6106bb8383611655565b61146833826116c3565b6114845760405162461bcd60e51b81526004016101d2906122ea565b6106bb838383611721565b6106bb83838360405180602001604052806000815250611007565b600c80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6115073383836118bd565b5050565b61151533836116c3565b6115315760405162461bcd60e51b81526004016101d2906122ea565b6107438484848461198b565b6060600f80546105c590611e8d565b6060816000036115735750506040805180820190915260018152600360fc1b602082015290565b8160005b811561159d578061158781611f78565b91506115969050600a8361234e565b9150611577565b60008167ffffffffffffffff8111156115b8576115b8611d68565b6040519080825280601f01601f1916602001820160405280156115e2576020820181803683370190505b5090505b841561164d576115f7600183611f91565b9150611604600a86612362565b61160f906030612118565b60f81b81838151811061162457611624611fd7565b60200101906001600160f81b031916908160001a905350611646600a8661234e565b94506115e6565b949350505050565b600081815260086020526040902080546001600160a01b0319166001600160a01b038416908117909155819061168a82610e83565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000806116cf83610e83565b9050806001600160a01b0316846001600160a01b031614806116f657506116f6818561116d565b8061164d5750836001600160a01b031661170f84610648565b6001600160a01b031614949350505050565b826001600160a01b031661173482610e83565b6001600160a01b0316146117985760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201526437bbb732b960d91b60648201526084016101d2565b6001600160a01b0382166117fa5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016101d2565b611805600082611655565b6001600160a01b038316600090815260076020526040812080546001929061182e908490611f91565b90915550506001600160a01b038216600090815260076020526040812080546001929061185c908490612118565b909155505060008181526006602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b816001600160a01b0316836001600160a01b03160361191e5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016101d2565b6001600160a01b03838116600081815260096020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b611996848484611721565b6119a2848484846119be565b6107435760405162461bcd60e51b81526004016101d290612376565b60006001600160a01b0384163b15611ab457604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611a029033908990889088906004016123c8565b6020604051808303816000875af1925050508015611a3d575060408051601f3d908101601f19168201909252611a3a91810190612405565b60015b611a9a573d808015611a6b576040519150601f19603f3d011682016040523d82523d6000602084013e611a70565b606091505b508051600003611a925760405162461bcd60e51b81526004016101d290612376565b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905061164d565b506001949350505050565b508054611acb90611e8d565b6000825580601f10611adb575050565b601f01602090049060005260206000209081019061123391905b80821115611b095760008155600101611af5565b5090565b6001600160e01b03198116811461123357600080fd5b600060208284031215611b3557600080fd5b813561116681611b0d565b60005b83811015611b5b578181015183820152602001611b43565b50506000910152565b60008151808452611b7c816020860160208601611b40565b601f01601f19169290920160200192915050565b6020815260006111666020830184611b64565b600060208284031215611bb557600080fd5b5035919050565b80356001600160a01b0381168114611bd357600080fd5b919050565b60008060408385031215611beb57600080fd5b611bf483611bbc565b946020939093013593505050565b600080600060608486031215611c1757600080fd5b611c2084611bbc565b9250611c2e60208501611bbc565b9150604084013590509250925092565b600060208284031215611c5057600080fd5b61116682611bbc565b60008083601f840112611c6b57600080fd5b50813567ffffffffffffffff811115611c8357600080fd5b602083019150836020828501011115611c9b57600080fd5b9250929050565b600080600080600060608688031215611cba57600080fd5b611cc386611bbc565b9450602086013567ffffffffffffffff80821115611ce057600080fd5b611cec89838a01611c59565b90965094506040880135915080821115611d0557600080fd5b50611d1288828901611c59565b969995985093965092949392505050565b801515811461123357600080fd5b60008060408385031215611d4457600080fd5b611d4d83611bbc565b91506020830135611d5d81611d23565b809150509250929050565b634e487b7160e01b600052604160045260246000fd5b60008060008060808587031215611d9457600080fd5b611d9d85611bbc565b9350611dab60208601611bbc565b925060408501359150606085013567ffffffffffffffff80821115611dcf57600080fd5b818701915087601f830112611de357600080fd5b813581811115611df557611df5611d68565b604051601f8201601f19908116603f01168101908382118183101715611e1d57611e1d611d68565b816040528281528a6020848701011115611e3657600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b60008060408385031215611e6d57600080fd5b611e7683611bbc565b9150611e8460208401611bbc565b90509250929050565b600181811c90821680611ea157607f821691505b602082108103611ec157634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252601c908201527f4552433732313a207472616e73666572206e6f7420616c6c6f77656400000000604082015260600190565b602080825260159082015274115490cdcc8c4e88139195081a5cc81b1bd8dad959605a1b604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b600060018201611f8a57611f8a611f62565b5060010190565b818103818111156105b0576105b0611f62565b60008251611fb6818460208701611b40565b9190910192915050565b600081611fcf57611fcf611f62565b506000190190565b634e487b7160e01b600052603260045260246000fd5b601f8211156106bb57600081815260208120601f850160051c810160208610156120145750805b601f850160051c820191505b8181101561203357828155600101612020565b505050505050565b818103612046575050565b6120508254611e8d565b67ffffffffffffffff81111561206857612068611d68565b61207c816120768454611e8d565b84611fed565b6000601f8211600181146120b057600083156120985750848201545b600019600385901b1c1916600184901b17845561108b565b600085815260209020601f19841690600086815260209020845b838110156120ea57828601548255600195860195909101906020016120ca565b50858310156121085781850154600019600388901b60f8161c191681555b5050505050600190811b01905550565b808201808211156105b0576105b0611f62565b600080835461213981611e8d565b60018281168015612151576001811461216657612195565b60ff1984168752821515830287019450612195565b8760005260208060002060005b8581101561218c5781548a820152908401908201612173565b50505082870194505b50929695505050505050565b634e487b7160e01b600052603160045260246000fd5b815167ffffffffffffffff8111156121d1576121d1611d68565b6121df816120768454611e8d565b602080601f83116001811461221457600084156121fc5750858301515b600019600386901b1c1916600185901b178555612033565b600085815260208120601f198616915b8281101561224357888601518255948401946001909101908401612224565b508582101561210857939096015160001960f8600387901b161c19169092555050600190811b01905550565b60208152816020820152818360408301376000818301604090810191909152601f909201601f19160101919050565b600083516122b0818460208801611b40565b8351908301906122c4818360208801611b40565b01949350505050565b6000602082840312156122df57600080fd5b815161116681611d23565b6020808252602e908201527f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560408201526d1c881b9bdc88185c1c1c9bdd995960921b606082015260800190565b634e487b7160e01b600052601260045260246000fd5b60008261235d5761235d612338565b500490565b60008261237157612371612338565b500690565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906123fb90830184611b64565b9695505050505050565b60006020828403121561241757600080fd5b815161116681611b0d56fea2646970667358221220db861581b1ddd36391df34a3fa6258e20fcdd23db2ce0fadb96d86c6a103f37464736f6c63430008110033

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

000000000000000000000000632b73f5cdf8500b5db98f077138c660285a2033

-----Decoded View---------------
Arg [0] : implementation (address): 0x632b73f5CDf8500b5Db98F077138C660285A2033

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 000000000000000000000000632b73f5cdf8500b5db98f077138c660285a2033


Deployed Bytecode Sourcemap

55503:10004:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;59672:1;59654:7;-1:-1:-1;;;;;;59654:7:0;:20;:44;;;;-1:-1:-1;59678:9:0;:20;;59654:44;59650:127;;;55503:10004;59650:127;59787:16;59816:7;;-1:-1:-1;;;;;;59816:7:0;59806:18;;;;;;;;;;-1:-1:-1;;;;;59806:18:0;;59835:59;;;;-1:-1:-1;;;59835:59:0;;216:2:1;59835:59:0;;;198:21:1;255:2;235:18;;;228:30;-1:-1:-1;;;274:18:1;;;267:54;338:18;;59835:59:0;;;;;;;;;59946:4;59940:11;59986:14;59983:1;59978:3;59965:36;60083:1;60080;60064:14;60059:3;60049:8;60042:5;60029:56;60111:16;60164:4;60161:1;60156:3;60141:28;60190:6;60210:26;;;;60272:4;60267:3;60259:18;60210:26;60230:4;60225:3;60218:17;60183:95;;25394:305;;;;;;;;;;-1:-1:-1;25394:305:0;;;;;:::i;:::-;;:::i;:::-;;;918:14:1;;911:22;893:41;;881:2;866:18;25394:305:0;;;;;;;;26321:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;27834:171::-;;;;;;;;;;-1:-1:-1;27834:171:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;2050:32:1;;;2032:51;;2020:2;2005:18;27834:171:0;1886:203:1;50417:237:0;;;;;;;;;;-1:-1:-1;50417:237:0;;;;;:::i;:::-;;:::i;50708:305::-;;;;;;;;;;-1:-1:-1;50708:305:0;;;;;:::i;:::-;;:::i;2930:29::-;;;;;;;;;;-1:-1:-1;2930:29:0;;;;;:::i;:::-;;:::i;46298:143::-;;;;;;;;;;;;45107:42;46298:143;;51021:314;;;;;;;;;;-1:-1:-1;51021:314:0;;;;;:::i;:::-;;:::i;49832:39::-;;;;;;;;;;-1:-1:-1;49832:39:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;52373:45;;;;;;;;;;-1:-1:-1;52373:45:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;61084:3799;;;;;;;;;;-1:-1:-1;61084:3799:0;;;;;:::i;:::-;;:::i;26032:222::-;;;;;;;;;;-1:-1:-1;26032:222:0;;;;;:::i;:::-;;:::i;52349:21::-;;;;;;;;;;;;;:::i;25763:207::-;;;;;;;;;;-1:-1:-1;25763:207:0;;;;;:::i;:::-;;:::i;:::-;;;4817:25:1;;;4805:2;4790:18;25763:207:0;4671:177:1;54265:94:0;;;;;;;;;;;;;:::i;49776:49::-;;;;;;;;;;-1:-1:-1;49776:49:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;53614:87;;;;;;;;;;-1:-1:-1;53687:6:0;;-1:-1:-1;;;;;53687:6:0;53614:87;;26490:104;;;;;;;;;;;;;:::i;2814:43::-;;;;;;;;;;-1:-1:-1;2814:43:0;;;;;:::i;:::-;;;;;;;;;;;;;-1:-1:-1;;;;;2814:43:0;;;50154:255;;;;;;;;;;-1:-1:-1;50154:255:0;;;;;:::i;:::-;;:::i;51343:338::-;;;;;;;;;;-1:-1:-1;51343:338:0;;;;;:::i;:::-;;:::i;65065:334::-;;;;;;;;;;-1:-1:-1;65065:334:0;;;;;:::i;:::-;;:::i;28303:164::-;;;;;;;;;;-1:-1:-1;28303:164:0;;;;;:::i;:::-;;:::i;54514:192::-;;;;;;;;;;-1:-1:-1;54514:192:0;;;;;:::i;:::-;;:::i;25394:305::-;25496:4;-1:-1:-1;;;;;;25533:40:0;;-1:-1:-1;;;25533:40:0;;:105;;-1:-1:-1;;;;;;;25590:48:0;;-1:-1:-1;;;25590:48:0;25533:105;:158;;;-1:-1:-1;;;;;;;;;;23934:40:0;;;25655:36;25513:178;25394:305;-1:-1:-1;;25394:305:0:o;26321:100::-;26375:13;26408:5;26401:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26321:100;:::o;27834:171::-;27910:7;27930:23;27945:7;27930:14;:23::i;:::-;-1:-1:-1;27973:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;27973:24:0;;27834:171::o;50417:237::-;50514:8;48080:30;48101:8;48080:20;:30::i;:::-;-1:-1:-1;;;;;50544:27:0;::::1;;::::0;;;:17:::1;:27;::::0;;;;;::::1;;50536:67;;;;-1:-1:-1::0;;;50536:67:0::1;;;;;;;:::i;:::-;50614:32;50628:8;50638:7;50614:13;:32::i;:::-;50417:237:::0;;;:::o;50708:305::-;50809:4;-1:-1:-1;;;;;47806:18:0;;47814:10;47806:18;47802:83;;47841:32;47862:10;47841:20;:32::i;:::-;50853:10:::1;50835:29;::::0;;;:17:::1;:29;::::0;;;;;::::1;;50827:69;;;;-1:-1:-1::0;;;50827:69:0::1;;;;;;;:::i;:::-;50916:16;::::0;;;:7:::1;:16;::::0;;;;;::::1;;50915:17;50907:50;;;;-1:-1:-1::0;;;50907:50:0::1;;;;;;;:::i;:::-;50968:37;50987:4;50993:2;50997:7;50968:18;:37::i;:::-;50708:305:::0;;;;:::o;2930:29::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;51021:314::-;51126:4;-1:-1:-1;;;;;47806:18:0;;47814:10;47806:18;47802:83;;47841:32;47862:10;47841:20;:32::i;:::-;51171:10:::1;51153:29;::::0;;;:17:::1;:29;::::0;;;;;::::1;;51145:69;;;;-1:-1:-1::0;;;51145:69:0::1;;;;;;;:::i;:::-;51234:16;::::0;;;:7:::1;:16;::::0;;;;;::::1;;51233:17;51225:50;;;;-1:-1:-1::0;;;51225:50:0::1;;;;;;;:::i;:::-;51286:41;51309:4;51315:2;51319:7;51286:22;:41::i;61084:3799::-:0;53687:6;;-1:-1:-1;;;;;53687:6:0;20331:10;53834:23;53826:68;;;;-1:-1:-1;;;53826:68:0;;;;;;;:::i;:::-;61468:11:::1;-1:-1:-1::0;;;;;61493:23:0;::::1;::::0;61490:218:::1;;-1:-1:-1::0;61568:22:0;::::1;61627:7:::0;61619:77:::1;;;::::0;-1:-1:-1;;;61619:77:0;;8491:2:1;61619:77:0::1;::::0;::::1;8473:21:1::0;8530:2;8510:18;;;8503:30;8569:34;8549:18;;;8542:62;8640:27;8620:18;;;8613:55;8685:19;;61619:77:0::1;8289:421:1::0;61619:77:0::1;61779:23;61811:19;;61779:52;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;::::0;;;-1:-1:-1;62174:17:0;;62106:2:::1;62091:18:::0;;::::1;::::0;-1:-1:-1;61779:52:0;;-1:-1:-1;62166:26:0;;;;;;62091:18;;-1:-1:-1;61779:52:0;-1:-1:-1;61779:52:0;;-1:-1:-1;61779:52:0;;;;62874:1957:::1;62887:13;62881:3;:19;62874:1957;;;62955:3;62949:10;62947:1;62942:18;62934:26;;63005:4;63013;63005:12:::0;63001:1819:::1;;63038:5:::0;::::1;::::0;::::1;:::i;:::-;::::0;-1:-1:-1;63069:11:0::1;::::0;-1:-1:-1;63075:5:0;63038;63069:11:::1;:::i;:::-;63162:22:::0;;;63237:21:::1;::::0;;::::1;::::0;;;-1:-1:-1;;;;;;63292:17:0;::::1;:9;:17:::0;;;;;;;;;;;;63108:3;;-1:-1:-1;63237:21:0;;-1:-1:-1;;;;;;63292:17:0;;::::1;::::0;-1:-1:-1;63062:19:0;;-1:-1:-1;63331:23:0;::::1;63328:1415;;63387:20;63408:10;63387:32;;;;;;:::i;:::-;;;;;;;;;;;;;;63379:40;;63450:5;63459:1;63450:10:::0;63442:47:::1;;;::::0;-1:-1:-1;;;63442:47:0;;216:2:1;63442:47:0::1;::::0;::::1;198:21:1::0;255:2;235:18;;;228:30;-1:-1:-1;;;274:18:1;;;267:54;338:18;;63442:47:0::1;14:348:1::0;63442:47:0::1;63512:7:::0;::::1;::::0;::::1;:::i;:::-;63578:1;63554:21:::0;;63512:7;;-1:-1:-1;63554:25:0::1;::::0;-1:-1:-1;63578:1:0;63554:25:::1;:::i;:::-;63542:37;;63615:9;63606:5;:18;63602:210;;63677:14;63692:9;63677:25;;;;;;;;:::i;:::-;;;;;;;;63653:14;63668:5;63653:21;;;;;;;;:::i;:::-;;;;;;;;:49;;;;;;:::i;:::-;-1:-1:-1::0;63779:9:0::1;:5:::0;63787:1:::1;63779:9;:::i;:::-;63729:20;63750:14;63765:9;63750:25;;;;;;;;:::i;:::-;;;;;;;;63729:47;;;;;;:::i;:::-;::::0;;;::::1;::::0;;;;;::::1;::::0;;;:59;63602:210:::1;63834:14;:20;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;:::i;:::-;;;63884;63905:10;63884:32;;;;;;:::i;:::-;::::0;;;::::1;::::0;;::::1;::::0;;;;;;;;63877:39:::1;::::0;;;;-1:-1:-1;;;;;;63946:17:0;::::1;::::0;;;;;;;;;;63939:24;;-1:-1:-1;;;;;;63939:24:0::1;::::0;;63877:39;;-1:-1:-1;;;;;63991:67:0;::::1;::::0;::::1;::::0;::::1;::::0;64046:10;;63991:67:::1;:::i;:::-;;;;;;;;63328:1415;;;64105:20;64126:10;64105:32;;;;;;:::i;:::-;;;;;;;;;;;;;;64141:1;64105:37:::0;64101:642:::1;;-1:-1:-1::0;;;;;64175:25:0;::::1;::::0;64167:51:::1;;;::::0;-1:-1:-1;;;64167:51:0;;13274:2:1;64167:51:0::1;::::0;::::1;13256:21:1::0;13313:2;13293:18;;;13286:30;-1:-1:-1;;;13332:18:1;;;13325:43;13385:18;;64167:51:0::1;13072:337:1::0;64167:51:0::1;64261:9;64241;:17:::0;64251:6:::1;-1:-1:-1::0;;;;;64241:17:0::1;;-1:-1:-1::0;;;;;64241:17:0::1;;;;;;;;;;;;;;:29;;;;;-1:-1:-1::0;;;;;64241:29:0::1;;;;;-1:-1:-1::0;;;;;64241:29:0::1;;;;;;64293:14;64313:10;64293:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;64382:14:0::1;:21:::0;64347:32:::1;::::0;:20:::1;::::0;:32:::1;::::0;64368:10;;64347:32:::1;:::i;:::-;;;;;;;;;;;;;:56;;;;64466:9;-1:-1:-1::0;;;;;64431:65:0::1;64462:1;-1:-1:-1::0;;;;;64431:65:0::1;64446:6;-1:-1:-1::0;;;;;64431:65:0::1;;;64484:10;64431:65;;;;;;:::i;64101:642::-;64564:9;-1:-1:-1::0;;;;;64543:30:0::1;:9;:17:::0;64553:6:::1;-1:-1:-1::0;;;;;64543:17:0::1;;-1:-1:-1::0;;;;;64543:17:0::1;;;;;;;;;;;;;;;;;;;;;-1:-1:-1::0;;;;;64543:17:0::1;-1:-1:-1::0;;;;;64543:30:0::1;;64539:204;;64618:9;64598;:17:::0;64608:6:::1;-1:-1:-1::0;;;;;64598:17:0::1;;-1:-1:-1::0;;;;;64598:17:0::1;;;;;;;;;;;;;;:29;;;;;-1:-1:-1::0;;;;;64598:29:0::1;;;;;-1:-1:-1::0;;;;;64598:29:0::1;;;;;;64691:9;-1:-1:-1::0;;;;;64655:66:0::1;64678:11;-1:-1:-1::0;;;;;64655:66:0::1;64670:6;-1:-1:-1::0;;;;;64655:66:0::1;;;64709:10;64655:66;;;;;;:::i;:::-;;;;;;;;64539:204;64785:19:::0;;::::1;::::0;63001:1819:::1;62902:5:::0;::::1;::::0;::::1;:::i;:::-;;;;62874:1957;;;64846:29;64860:14;;64846:29;;;;;;;:::i;:::-;;;;;;;;61224:3659;;;;;;;;;;61084:3799:::0;;;;;:::o;26032:222::-;26104:7;26140:16;;;:7;:16;;;;;;-1:-1:-1;;;;;26140:16:0;;26167:56;;;;-1:-1:-1;;;26167:56:0;;15364:2:1;26167:56:0;;;15346:21:1;15403:2;15383:18;;;15376:30;-1:-1:-1;;;15422:18:1;;;15415:54;15486:18;;26167:56:0;15162:348:1;52349:21:0;;;;;;;:::i;25763:207::-;25835:7;-1:-1:-1;;;;;25863:19:0;;25855:73;;;;-1:-1:-1;;;25855:73:0;;15717:2:1;25855:73:0;;;15699:21:1;15756:2;15736:18;;;15729:30;15795:34;15775:18;;;15768:62;-1:-1:-1;;;15846:18:1;;;15839:39;15895:19;;25855:73:0;15515:405:1;25855:73:0;-1:-1:-1;;;;;;25946:16:0;;;;;:9;:16;;;;;;;25763:207::o;54265:94::-;53687:6;;-1:-1:-1;;;;;53687:6:0;20331:10;53834:23;53826:68;;;;-1:-1:-1;;;53826:68:0;;;;;;;:::i;:::-;54330:21:::1;54348:1;54330:9;:21::i;:::-;54265:94::o:0;26490:104::-;26546:13;26579:7;26572:14;;;;;:::i;50154:255::-;50258:8;48080:30;48101:8;48080:20;:30::i;:::-;-1:-1:-1;;;;;50288:27:0;::::1;;::::0;;;:17:::1;:27;::::0;;;;;::::1;;50280:67;;;;-1:-1:-1::0;;;50280:67:0::1;;;;;;;:::i;:::-;50358:43;50382:8;50392;50358:23;:43::i;51343:338::-:0;51467:4;-1:-1:-1;;;;;47806:18:0;;47814:10;47806:18;47802:83;;47841:32;47862:10;47841:20;:32::i;:::-;51511:10:::1;51493:29;::::0;;;:17:::1;:29;::::0;;;;;::::1;;51485:69;;;;-1:-1:-1::0;;;51485:69:0::1;;;;;;;:::i;:::-;51574:16;::::0;;;:7:::1;:16;::::0;;;;;::::1;;51573:17;51565:50;;;;-1:-1:-1::0;;;51565:50:0::1;;;;;;;:::i;:::-;51626:47;51649:4;51655:2;51659:7;51668:4;51626:22;:47::i;:::-;51343:338:::0;;;;;:::o;65065:334::-;31092:4;31116:16;;;:7;:16;;;;;;65138:13;;-1:-1:-1;;;;;31116:16:0;65164:76;;;;-1:-1:-1;;;65164:76:0;;16127:2:1;65164:76:0;;;16109:21:1;16166:2;16146:18;;;16139:30;16205:34;16185:18;;;16178:62;-1:-1:-1;;;16256:18:1;;;16249:45;16311:19;;65164:76:0;15925:411:1;65164:76:0;65253:21;65277:10;:8;:10::i;:::-;65253:34;;65329:1;65311:7;65305:21;:25;:86;;;;;;;;;;;;;;;;;65357:7;65366:18;:7;:16;:18::i;:::-;65340:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;65305:86;65298:93;65065:334;-1:-1:-1;;;65065:334:0:o;28303:164::-;-1:-1:-1;;;;;28424:25:0;;;28400:4;28424:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;28303:164::o;54514:192::-;53687:6;;-1:-1:-1;;;;;53687:6:0;20331:10;53834:23;53826:68;;;;-1:-1:-1;;;53826:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;54603:22:0;::::1;54595:73;;;::::0;-1:-1:-1;;;54595:73:0;;17044:2:1;54595:73:0::1;::::0;::::1;17026:21:1::0;17083:2;17063:18;;;17056:30;17122:34;17102:18;;;17095:62;-1:-1:-1;;;17173:18:1;;;17166:36;17219:19;;54595:73:0::1;16842:402:1::0;54595:73:0::1;54679:19;54689:8;54679:9;:19::i;:::-;54514:192:::0;:::o;35809:135::-;31092:4;31116:16;;;:7;:16;;;;;;-1:-1:-1;;;;;31116:16:0;35883:53;;;;-1:-1:-1;;;35883:53:0;;15364:2:1;35883:53:0;;;15346:21:1;15403:2;15383:18;;;15376:30;-1:-1:-1;;;15422:18:1;;;15415:54;15486:18;;35883:53:0;15162:348:1;48223:647:0;45107:42;48414:45;:49;48410:453;;48713:67;;-1:-1:-1;;;48713:67:0;;48764:4;48713:67;;;17461:34:1;-1:-1:-1;;;;;17531:15:1;;17511:18;;;17504:43;45107:42:0;;48713;;17396:18:1;;48713:67:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;48708:144;;48808:28;;-1:-1:-1;;;48808:28:0;;-1:-1:-1;;;;;2050:32:1;;48808:28:0;;;2032:51:1;2005:18;;48808:28:0;1886:203:1;27351:417:0;27432:13;27448:23;27463:7;27448:14;:23::i;:::-;27432:39;;27496:5;-1:-1:-1;;;;;27490:11:0;:2;-1:-1:-1;;;;;27490:11:0;;27482:57;;;;-1:-1:-1;;;27482:57:0;;18010:2:1;27482:57:0;;;17992:21:1;18049:2;18029:18;;;18022:30;18088:34;18068:18;;;18061:62;-1:-1:-1;;;18139:18:1;;;18132:31;18180:19;;27482:57:0;17808:397:1;27482:57:0;20331:10;-1:-1:-1;;;;;27574:21:0;;;;:62;;-1:-1:-1;27599:37:0;27616:5;20331:10;28303:164;:::i;27599:37::-;27552:174;;;;-1:-1:-1;;;27552:174:0;;18412:2:1;27552:174:0;;;18394:21:1;18451:2;18431:18;;;18424:30;18490:34;18470:18;;;18463:62;18561:32;18541:18;;;18534:60;18611:19;;27552:174:0;18210:426:1;27552:174:0;27739:21;27748:2;27752:7;27739:8;:21::i;28534:336::-;28729:41;20331:10;28762:7;28729:18;:41::i;:::-;28721:100;;;;-1:-1:-1;;;28721:100:0;;;;;;;:::i;:::-;28834:28;28844:4;28850:2;28854:7;28834:9;:28::i;28941:185::-;29079:39;29096:4;29102:2;29106:7;29079:39;;;;;;;;;;;;:16;:39::i;54714:174::-;54790:6;;;-1:-1:-1;;;;;54807:17:0;;;-1:-1:-1;;;;;;54807:17:0;;;;;;;54840:40;;54790:6;;;54807:17;54790:6;;54840:40;;54771:16;;54840:40;54760:128;54714:174;:::o;28077:155::-;28172:52;20331:10;28205:8;28215;28172:18;:52::i;:::-;28077:155;;:::o;29197:323::-;29371:41;20331:10;29404:7;29371:18;:41::i;:::-;29363:100;;;;-1:-1:-1;;;29363:100:0;;;;;;;:::i;:::-;29474:38;29488:4;29494:2;29498:7;29507:4;29474:13;:38::i;64891:106::-;64951:13;64982:7;64975:14;;;;;:::i;20895:723::-;20951:13;21172:5;21181:1;21172:10;21168:53;;-1:-1:-1;;21199:10:0;;;;;;;;;;;;-1:-1:-1;;;21199:10:0;;;;;20895:723::o;21168:53::-;21246:5;21231:12;21287:78;21294:9;;21287:78;;21320:8;;;;:::i;:::-;;-1:-1:-1;21343:10:0;;-1:-1:-1;21351:2:0;21343:10;;:::i;:::-;;;21287:78;;;21375:19;21407:6;21397:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;21397:17:0;;21375:39;;21425:154;21432:10;;21425:154;;21459:11;21469:1;21459:11;;:::i;:::-;;-1:-1:-1;21528:10:0;21536:2;21528:5;:10;:::i;:::-;21515:24;;:2;:24;:::i;:::-;21502:39;;21485:6;21492;21485:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;21485:56:0;;;;;;;;-1:-1:-1;21556:11:0;21565:2;21556:11;;:::i;:::-;;;21425:154;;;21603:6;20895:723;-1:-1:-1;;;;20895:723:0:o;35088:174::-;35163:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;35163:29:0;-1:-1:-1;;;;;35163:29:0;;;;;;;;:24;;35217:23;35163:24;35217:14;:23::i;:::-;-1:-1:-1;;;;;35208:46:0;;;;;;;;;;;35088:174;;:::o;31321:264::-;31414:4;31431:13;31447:23;31462:7;31447:14;:23::i;:::-;31431:39;;31500:5;-1:-1:-1;;;;;31489:16:0;:7;-1:-1:-1;;;;;31489:16:0;;:52;;;;31509:32;31526:5;31533:7;31509:16;:32::i;:::-;31489:87;;;;31569:7;-1:-1:-1;;;;;31545:31:0;:20;31557:7;31545:11;:20::i;:::-;-1:-1:-1;;;;;31545:31:0;;31481:96;31321:264;-1:-1:-1;;;;31321:264:0:o;34344:625::-;34503:4;-1:-1:-1;;;;;34476:31:0;:23;34491:7;34476:14;:23::i;:::-;-1:-1:-1;;;;;34476:31:0;;34468:81;;;;-1:-1:-1;;;34468:81:0;;19632:2:1;34468:81:0;;;19614:21:1;19671:2;19651:18;;;19644:30;19710:34;19690:18;;;19683:62;-1:-1:-1;;;19761:18:1;;;19754:35;19806:19;;34468:81:0;19430:401:1;34468:81:0;-1:-1:-1;;;;;34568:16:0;;34560:65;;;;-1:-1:-1;;;34560:65:0;;20038:2:1;34560:65:0;;;20020:21:1;20077:2;20057:18;;;20050:30;20116:34;20096:18;;;20089:62;-1:-1:-1;;;20167:18:1;;;20160:34;20211:19;;34560:65:0;19836:400:1;34560:65:0;34742:29;34759:1;34763:7;34742:8;:29::i;:::-;-1:-1:-1;;;;;34784:15:0;;;;;;:9;:15;;;;;:20;;34803:1;;34784:15;:20;;34803:1;;34784:20;:::i;:::-;;;;-1:-1:-1;;;;;;;34815:13:0;;;;;;:9;:13;;;;;:18;;34832:1;;34815:13;:18;;34832:1;;34815:18;:::i;:::-;;;;-1:-1:-1;;34844:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;34844:21:0;-1:-1:-1;;;;;34844:21:0;;;;;;;;;34883:27;;34844:16;;34883:27;;;;;;;50417:237;;;:::o;35405:315::-;35560:8;-1:-1:-1;;;;;35551:17:0;:5;-1:-1:-1;;;;;35551:17:0;;35543:55;;;;-1:-1:-1;;;35543:55:0;;20443:2:1;35543:55:0;;;20425:21:1;20482:2;20462:18;;;20455:30;20521:27;20501:18;;;20494:55;20566:18;;35543:55:0;20241:349:1;35543:55:0;-1:-1:-1;;;;;35609:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;35609:46:0;;;;;;;;;;35671:41;;893::1;;;35671::0;;866:18:1;35671:41:0;;;;;;;35405:315;;;:::o;30401:313::-;30557:28;30567:4;30573:2;30577:7;30557:9;:28::i;:::-;30604:47;30627:4;30633:2;30637:7;30646:4;30604:22;:47::i;:::-;30596:110;;;;-1:-1:-1;;;30596:110:0;;;;;;;:::i;36508:853::-;36662:4;-1:-1:-1;;;;;36683:13:0;;12547:19;:23;36679:675;;36719:71;;-1:-1:-1;;;36719:71:0;;-1:-1:-1;;;;;36719:36:0;;;;;:71;;20331:10;;36770:4;;36776:7;;36785:4;;36719:71;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;36719:71:0;;;;;;;;-1:-1:-1;;36719:71:0;;;;;;;;;;;;:::i;:::-;;;36715:584;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36960:6;:13;36977:1;36960:18;36956:328;;37003:60;;-1:-1:-1;;;37003:60:0;;;;;;;:::i;36956:328::-;37234:6;37228:13;37219:6;37215:2;37211:15;37204:38;36715:584;-1:-1:-1;;;;;;36841:51:0;-1:-1:-1;;;36841:51:0;;-1:-1:-1;36834:58:0;;36679:675;-1:-1:-1;37338:4:0;36508:853;;;;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;367:131:1:-;-1:-1:-1;;;;;;441:32:1;;431:43;;421:71;;488:1;485;478:12;503:245;561:6;614:2;602:9;593:7;589:23;585:32;582:52;;;630:1;627;620:12;582:52;669:9;656:23;688:30;712:5;688:30;:::i;945:250::-;1030:1;1040:113;1054:6;1051:1;1048:13;1040:113;;;1130:11;;;1124:18;1111:11;;;1104:39;1076:2;1069:10;1040:113;;;-1:-1:-1;;1187:1:1;1169:16;;1162:27;945:250::o;1200:271::-;1242:3;1280:5;1274:12;1307:6;1302:3;1295:19;1323:76;1392:6;1385:4;1380:3;1376:14;1369:4;1362:5;1358:16;1323:76;:::i;:::-;1453:2;1432:15;-1:-1:-1;;1428:29:1;1419:39;;;;1460:4;1415:50;;1200:271;-1:-1:-1;;1200:271:1:o;1476:220::-;1625:2;1614:9;1607:21;1588:4;1645:45;1686:2;1675:9;1671:18;1663:6;1645:45;:::i;1701:180::-;1760:6;1813:2;1801:9;1792:7;1788:23;1784:32;1781:52;;;1829:1;1826;1819:12;1781:52;-1:-1:-1;1852:23:1;;1701:180;-1:-1:-1;1701:180:1:o;2094:173::-;2162:20;;-1:-1:-1;;;;;2211:31:1;;2201:42;;2191:70;;2257:1;2254;2247:12;2191:70;2094:173;;;:::o;2272:254::-;2340:6;2348;2401:2;2389:9;2380:7;2376:23;2372:32;2369:52;;;2417:1;2414;2407:12;2369:52;2440:29;2459:9;2440:29;:::i;:::-;2430:39;2516:2;2501:18;;;;2488:32;;-1:-1:-1;;;2272:254:1:o;2531:328::-;2608:6;2616;2624;2677:2;2665:9;2656:7;2652:23;2648:32;2645:52;;;2693:1;2690;2683:12;2645:52;2716:29;2735:9;2716:29;:::i;:::-;2706:39;;2764:38;2798:2;2787:9;2783:18;2764:38;:::i;:::-;2754:48;;2849:2;2838:9;2834:18;2821:32;2811:42;;2531:328;;;;;:::o;3327:186::-;3386:6;3439:2;3427:9;3418:7;3414:23;3410:32;3407:52;;;3455:1;3452;3445:12;3407:52;3478:29;3497:9;3478:29;:::i;3518:348::-;3570:8;3580:6;3634:3;3627:4;3619:6;3615:17;3611:27;3601:55;;3652:1;3649;3642:12;3601:55;-1:-1:-1;3675:20:1;;3718:18;3707:30;;3704:50;;;3750:1;3747;3740:12;3704:50;3787:4;3779:6;3775:17;3763:29;;3839:3;3832:4;3823:6;3815;3811:19;3807:30;3804:39;3801:59;;;3856:1;3853;3846:12;3801:59;3518:348;;;;;:::o;3871:795::-;3972:6;3980;3988;3996;4004;4057:2;4045:9;4036:7;4032:23;4028:32;4025:52;;;4073:1;4070;4063:12;4025:52;4096:29;4115:9;4096:29;:::i;:::-;4086:39;;4176:2;4165:9;4161:18;4148:32;4199:18;4240:2;4232:6;4229:14;4226:34;;;4256:1;4253;4246:12;4226:34;4295:59;4346:7;4337:6;4326:9;4322:22;4295:59;:::i;:::-;4373:8;;-1:-1:-1;4269:85:1;-1:-1:-1;4461:2:1;4446:18;;4433:32;;-1:-1:-1;4477:16:1;;;4474:36;;;4506:1;4503;4496:12;4474:36;;4545:61;4598:7;4587:8;4576:9;4572:24;4545:61;:::i;:::-;3871:795;;;;-1:-1:-1;3871:795:1;;-1:-1:-1;4625:8:1;;4519:87;3871:795;-1:-1:-1;;;3871:795:1:o;4853:118::-;4939:5;4932:13;4925:21;4918:5;4915:32;4905:60;;4961:1;4958;4951:12;4976:315;5041:6;5049;5102:2;5090:9;5081:7;5077:23;5073:32;5070:52;;;5118:1;5115;5108:12;5070:52;5141:29;5160:9;5141:29;:::i;:::-;5131:39;;5220:2;5209:9;5205:18;5192:32;5233:28;5255:5;5233:28;:::i;:::-;5280:5;5270:15;;;4976:315;;;;;:::o;5296:127::-;5357:10;5352:3;5348:20;5345:1;5338:31;5388:4;5385:1;5378:15;5412:4;5409:1;5402:15;5428:1138;5523:6;5531;5539;5547;5600:3;5588:9;5579:7;5575:23;5571:33;5568:53;;;5617:1;5614;5607:12;5568:53;5640:29;5659:9;5640:29;:::i;:::-;5630:39;;5688:38;5722:2;5711:9;5707:18;5688:38;:::i;:::-;5678:48;;5773:2;5762:9;5758:18;5745:32;5735:42;;5828:2;5817:9;5813:18;5800:32;5851:18;5892:2;5884:6;5881:14;5878:34;;;5908:1;5905;5898:12;5878:34;5946:6;5935:9;5931:22;5921:32;;5991:7;5984:4;5980:2;5976:13;5972:27;5962:55;;6013:1;6010;6003:12;5962:55;6049:2;6036:16;6071:2;6067;6064:10;6061:36;;;6077:18;;:::i;:::-;6152:2;6146:9;6120:2;6206:13;;-1:-1:-1;;6202:22:1;;;6226:2;6198:31;6194:40;6182:53;;;6250:18;;;6270:22;;;6247:46;6244:72;;;6296:18;;:::i;:::-;6336:10;6332:2;6325:22;6371:2;6363:6;6356:18;6411:7;6406:2;6401;6397;6393:11;6389:20;6386:33;6383:53;;;6432:1;6429;6422:12;6383:53;6488:2;6483;6479;6475:11;6470:2;6462:6;6458:15;6445:46;6533:1;6528:2;6523;6515:6;6511:15;6507:24;6500:35;6554:6;6544:16;;;;;;;5428:1138;;;;;;;:::o;6571:260::-;6639:6;6647;6700:2;6688:9;6679:7;6675:23;6671:32;6668:52;;;6716:1;6713;6706:12;6668:52;6739:29;6758:9;6739:29;:::i;:::-;6729:39;;6787:38;6821:2;6810:9;6806:18;6787:38;:::i;:::-;6777:48;;6571:260;;;;;:::o;6836:380::-;6915:1;6911:12;;;;6958;;;6979:61;;7033:4;7025:6;7021:17;7011:27;;6979:61;7086:2;7078:6;7075:14;7055:18;7052:38;7049:161;;7132:10;7127:3;7123:20;7120:1;7113:31;7167:4;7164:1;7157:15;7195:4;7192:1;7185:15;7049:161;;6836:380;;;:::o;7221:352::-;7423:2;7405:21;;;7462:2;7442:18;;;7435:30;7501;7496:2;7481:18;;7474:58;7564:2;7549:18;;7221:352::o;7578:345::-;7780:2;7762:21;;;7819:2;7799:18;;;7792:30;-1:-1:-1;;;7853:2:1;7838:18;;7831:51;7914:2;7899:18;;7578:345::o;7928:356::-;8130:2;8112:21;;;8149:18;;;8142:30;8208:34;8203:2;8188:18;;8181:62;8275:2;8260:18;;7928:356::o;8715:127::-;8776:10;8771:3;8767:20;8764:1;8757:31;8807:4;8804:1;8797:15;8831:4;8828:1;8821:15;8847:135;8886:3;8907:17;;;8904:43;;8927:18;;:::i;:::-;-1:-1:-1;8974:1:1;8963:13;;8847:135::o;8987:128::-;9054:9;;;9075:11;;;9072:37;;;9089:18;;:::i;9120:287::-;9249:3;9287:6;9281:13;9303:66;9362:6;9357:3;9350:4;9342:6;9338:17;9303:66;:::i;:::-;9385:16;;;;;9120:287;-1:-1:-1;;9120:287:1:o;9412:136::-;9451:3;9479:5;9469:39;;9488:18;;:::i;:::-;-1:-1:-1;;;9524:18:1;;9412:136::o;9553:127::-;9614:10;9609:3;9605:20;9602:1;9595:31;9645:4;9642:1;9635:15;9669:4;9666:1;9659:15;9810:544;9911:2;9906:3;9903:11;9900:448;;;9947:1;9972:5;9968:2;9961:17;10017:4;10013:2;10003:19;10087:2;10075:10;10071:19;10068:1;10064:27;10058:4;10054:38;10123:4;10111:10;10108:20;10105:47;;;-1:-1:-1;10146:4:1;10105:47;10201:2;10196:3;10192:12;10189:1;10185:20;10179:4;10175:31;10165:41;;10256:82;10274:2;10267:5;10264:13;10256:82;;;10319:17;;;10300:1;10289:13;10256:82;;;10260:3;;;9810:544;;;:::o;10530:1430::-;10647:3;10641:4;10638:13;10635:26;;10654:5;;10530:1430::o;10635:26::-;10684:37;10716:3;10710:10;10684:37;:::i;:::-;10744:18;10736:6;10733:30;10730:56;;;10766:18;;:::i;:::-;10795:96;10884:6;10844:38;10876:4;10870:11;10844:38;:::i;:::-;10838:4;10795:96;:::i;:::-;10917:1;10945:2;10937:6;10934:14;10962:1;10957:746;;;;11747:1;11764:6;11761:89;;;-1:-1:-1;11816:19:1;;;11810:26;11761:89;-1:-1:-1;;10487:1:1;10483:11;;;10479:24;10475:29;10465:40;10511:1;10507:11;;;10462:57;11863:81;;10927:1027;;10957:746;9757:1;9750:14;;;9794:4;9781:18;;-1:-1:-1;;10993:20:1;;;9757:1;9750:14;;;9794:4;9781:18;;11155:9;11177:251;11191:7;11188:1;11185:14;11177:251;;;11273:21;;;11267:28;11252:44;;11323:1;11396:18;;;;11351:15;;;;11214:4;11207:12;11177:251;;;11181:3;11456:6;11447:7;11444:19;11441:203;;;11517:21;;;11511:28;-1:-1:-1;;11602:1:1;11598:14;;;11614:3;11594:24;11590:37;11586:42;11571:58;11556:74;;11441:203;-1:-1:-1;;;;;11690:1:1;11674:14;;;11670:22;11657:36;;-1:-1:-1;10530:1430:1:o;11965:125::-;12030:9;;;12051:10;;;12048:36;;;12064:18;;:::i;12095:840::-;12221:3;12250:1;12283:6;12277:13;12313:36;12339:9;12313:36;:::i;:::-;12368:1;12385:18;;;12412:133;;;;12559:1;12554:356;;;;12378:532;;12412:133;-1:-1:-1;;12445:24:1;;12433:37;;12518:14;;12511:22;12499:35;;12490:45;;;-1:-1:-1;12412:133:1;;12554:356;12585:6;12582:1;12575:17;12615:4;12660:2;12657:1;12647:16;12685:1;12699:165;12713:6;12710:1;12707:13;12699:165;;;12791:14;;12778:11;;;12771:35;12834:16;;;;12728:10;;12699:165;;;12703:3;;;12893:6;12888:3;12884:16;12877:23;;12378:532;-1:-1:-1;12926:3:1;;12095:840;-1:-1:-1;;;;;;12095:840:1:o;12940:127::-;13001:10;12996:3;12992:20;12989:1;12982:31;13032:4;13029:1;13022:15;13056:4;13053:1;13046:15;13414:1348;13538:3;13532:10;13565:18;13557:6;13554:30;13551:56;;;13587:18;;:::i;:::-;13616:96;13705:6;13665:38;13697:4;13691:11;13665:38;:::i;13616:96::-;13767:4;;13831:2;13820:14;;13848:1;13843:662;;;;14549:1;14566:6;14563:89;;;-1:-1:-1;14618:19:1;;;14612:26;14563:89;-1:-1:-1;;10487:1:1;10483:11;;;10479:24;10475:29;10465:40;10511:1;10507:11;;;10462:57;14665:81;;13813:943;;13843:662;9757:1;9750:14;;;9794:4;9781:18;;-1:-1:-1;;13879:20:1;;;13996:236;14010:7;14007:1;14004:14;13996:236;;;14099:19;;;14093:26;14078:42;;14191:27;;;;14159:1;14147:14;;;;14026:19;;13996:236;;;14000:3;14260:6;14251:7;14248:19;14245:201;;;14321:19;;;;14315:26;-1:-1:-1;;14416:3:1;14404:1;14400:14;;;14396:24;14392:37;14388:42;14373:58;14358:74;;;-1:-1:-1;;14492:1:1;14476:14;;;14472:22;14459:36;;-1:-1:-1;13414:1348:1:o;14767:390::-;14926:2;14915:9;14908:21;14965:6;14960:2;14949:9;14945:18;14938:34;15022:6;15014;15009:2;14998:9;14994:18;14981:48;15078:1;15049:22;;;15073:2;15045:31;;;15038:42;;;;15141:2;15120:15;;;-1:-1:-1;;15116:29:1;15101:45;15097:54;;14767:390;-1:-1:-1;14767:390:1:o;16341:496::-;16520:3;16558:6;16552:13;16574:66;16633:6;16628:3;16621:4;16613:6;16609:17;16574:66;:::i;:::-;16703:13;;16662:16;;;;16725:70;16703:13;16662:16;16772:4;16760:17;;16725:70;:::i;:::-;16811:20;;16341:496;-1:-1:-1;;;;16341:496:1:o;17558:245::-;17625:6;17678:2;17666:9;17657:7;17653:23;17649:32;17646:52;;;17694:1;17691;17684:12;17646:52;17726:9;17720:16;17745:28;17767:5;17745:28;:::i;18641:410::-;18843:2;18825:21;;;18882:2;18862:18;;;18855:30;18921:34;18916:2;18901:18;;18894:62;-1:-1:-1;;;18987:2:1;18972:18;;18965:44;19041:3;19026:19;;18641:410::o;19056:127::-;19117:10;19112:3;19108:20;19105:1;19098:31;19148:4;19145:1;19138:15;19172:4;19169:1;19162:15;19188:120;19228:1;19254;19244:35;;19259:18;;:::i;:::-;-1:-1:-1;19293:9:1;;19188:120::o;19313:112::-;19345:1;19371;19361:35;;19376:18;;:::i;:::-;-1:-1:-1;19410:9:1;;19313:112::o;20595:414::-;20797:2;20779:21;;;20836:2;20816:18;;;20809:30;20875:34;20870:2;20855:18;;20848:62;-1:-1:-1;;;20941:2:1;20926:18;;20919:48;20999:3;20984:19;;20595:414::o;21014:489::-;-1:-1:-1;;;;;21283:15:1;;;21265:34;;21335:15;;21330:2;21315:18;;21308:43;21382:2;21367:18;;21360:34;;;21430:3;21425:2;21410:18;;21403:31;;;21208:4;;21451:46;;21477:19;;21469:6;21451:46;:::i;:::-;21443:54;21014:489;-1:-1:-1;;;;;;21014:489:1:o;21508:249::-;21577:6;21630:2;21618:9;21609:7;21605:23;21601:32;21598:52;;;21646:1;21643;21636:12;21598:52;21678:9;21672:16;21697:30;21721:5;21697:30;:::i

Swarm Source

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