ETH Price: $3,260.63 (+2.70%)
Gas: 3 Gwei

Token

Seekers Day Zero (SDZR)
 

Overview

Max Total Supply

1,000 SDZR

Holders

378

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
slotzero.eth
Balance
1 SDZR
0x807c880dac7088e0e34d319d8c0bbc6f3b4a7d45
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:
SeekersRelicDayZero

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-08-31
*/

// SPDX-License-Identifier: MIT
/** 
 *  SourceUnit: c:\www\seekers-contracts\contracts\Seekers Relic Day Zero.sol
*/
            
////// SPDX-License-Identifier-FLATTEN-SUPPRESS-WARNING: MIT

pragma solidity ^0.8.0;

contract Initializable {
    bool inited = false;

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




/** 
 *  SourceUnit: c:\www\seekers-contracts\contracts\Seekers Relic Day Zero.sol
*/
            
////// SPDX-License-Identifier-FLATTEN-SUPPRESS-WARNING: MIT

pragma solidity ^0.8.0;

////import {Initializable} from "./Initializable.sol";

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

    string constant public ERC712_VERSION = "1";

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

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

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

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

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

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



/** 
 *  SourceUnit: c:\www\seekers-contracts\contracts\Seekers Relic Day Zero.sol
*/
            
////// SPDX-License-Identifier-FLATTEN-SUPPRESS-WARNING: MIT
// OpenZeppelin Contracts v4.4.1 (utils/math/SafeMath.sol)

pragma solidity ^0.8.0;

// CAUTION
// This version of SafeMath should only be used with Solidity 0.8 or later,
// because it relies on the compiler's built in overflow checks.

/**
 * @dev Wrappers over Solidity's arithmetic operations.
 *
 * NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler
 * now has built in overflow checking.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            uint256 c = a + b;
            if (c < a) return (false, 0);
            return (true, c);
        }
    }

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

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

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

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

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

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

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

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

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

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

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

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




/** 
 *  SourceUnit: c:\www\seekers-contracts\contracts\Seekers Relic Day Zero.sol
*/
            
////// SPDX-License-Identifier-FLATTEN-SUPPRESS-WARNING: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

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

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




/** 
 *  SourceUnit: c:\www\seekers-contracts\contracts\Seekers Relic Day Zero.sol
*/
            
////// SPDX-License-Identifier-FLATTEN-SUPPRESS-WARNING: MIT
// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)

pragma solidity ^0.8.0;

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




/** 
 *  SourceUnit: c:\www\seekers-contracts\contracts\Seekers Relic Day Zero.sol
*/
            
////// SPDX-License-Identifier-FLATTEN-SUPPRESS-WARNING: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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




/** 
 *  SourceUnit: c:\www\seekers-contracts\contracts\Seekers Relic Day Zero.sol
*/
            
////// SPDX-License-Identifier-FLATTEN-SUPPRESS-WARNING: MIT
// OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol)

pragma solidity ^0.8.0;

////import "./IERC165.sol";

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




/** 
 *  SourceUnit: c:\www\seekers-contracts\contracts\Seekers Relic Day Zero.sol
*/
            
////// SPDX-License-Identifier-FLATTEN-SUPPRESS-WARNING: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Strings.sol)

pragma solidity ^0.8.0;

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

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

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

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

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




/** 
 *  SourceUnit: c:\www\seekers-contracts\contracts\Seekers Relic Day Zero.sol
*/
            
////// SPDX-License-Identifier-FLATTEN-SUPPRESS-WARNING: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Address.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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




/** 
 *  SourceUnit: c:\www\seekers-contracts\contracts\Seekers Relic Day Zero.sol
*/
            
////// SPDX-License-Identifier-FLATTEN-SUPPRESS-WARNING: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol)

pragma solidity ^0.8.0;

////import "../IERC721.sol";

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

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

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




/** 
 *  SourceUnit: c:\www\seekers-contracts\contracts\Seekers Relic Day Zero.sol
*/
            
////// SPDX-License-Identifier-FLATTEN-SUPPRESS-WARNING: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol)

pragma solidity ^0.8.0;

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




/** 
 *  SourceUnit: c:\www\seekers-contracts\contracts\Seekers Relic Day Zero.sol
*/
            
////// SPDX-License-Identifier-FLATTEN-SUPPRESS-WARNING: MIT

pragma solidity ^0.8.0;

////import {SafeMath} from  "@openzeppelin/contracts/utils/math/SafeMath.sol";
////import {EIP712Base} from "./EIP712Base.sol";

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

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

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

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

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

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

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

        return returnData;
    }

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

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

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




/** 
 *  SourceUnit: c:\www\seekers-contracts\contracts\Seekers Relic Day Zero.sol
*/
            
////// SPDX-License-Identifier-FLATTEN-SUPPRESS-WARNING: MIT

pragma solidity ^0.8.0;

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




/** 
 *  SourceUnit: c:\www\seekers-contracts\contracts\Seekers Relic Day Zero.sol
*/
            
////// SPDX-License-Identifier-FLATTEN-SUPPRESS-WARNING: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Counters.sol)

pragma solidity ^0.8.0;

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

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

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

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

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




/** 
 *  SourceUnit: c:\www\seekers-contracts\contracts\Seekers Relic Day Zero.sol
*/
            
////// SPDX-License-Identifier-FLATTEN-SUPPRESS-WARNING: MIT
// OpenZeppelin Contracts v4.4.1 (security/Pausable.sol)

pragma solidity ^0.8.0;

////import "../utils/Context.sol";

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

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

    bool private _paused;

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

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

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

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

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

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




/** 
 *  SourceUnit: c:\www\seekers-contracts\contracts\Seekers Relic Day Zero.sol
*/
            
////// SPDX-License-Identifier-FLATTEN-SUPPRESS-WARNING: MIT
// OpenZeppelin Contracts v4.4.1 (access/Ownable.sol)

pragma solidity ^0.8.0;

////import "../utils/Context.sol";

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

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

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

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

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

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

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

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




/** 
 *  SourceUnit: c:\www\seekers-contracts\contracts\Seekers Relic Day Zero.sol
*/
            
////// SPDX-License-Identifier-FLATTEN-SUPPRESS-WARNING: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/ERC721.sol)

pragma solidity ^0.8.0;

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

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

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

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




/** 
 *  SourceUnit: c:\www\seekers-contracts\contracts\Seekers Relic Day Zero.sol
*/
            
////// SPDX-License-Identifier-FLATTEN-SUPPRESS-WARNING: MIT

pragma solidity ^0.8.0;

////import "@openzeppelin/contracts/token/ERC721/ERC721.sol";
////import "@openzeppelin/contracts/access/Ownable.sol";
////import "@openzeppelin/contracts/security/Pausable.sol";
////import "@openzeppelin/contracts/utils/Counters.sol";
////import "@openzeppelin/contracts/utils/Strings.sol";
////import "@openzeppelin/contracts/utils/math/SafeMath.sol";

////import "./common/meta-transactions/ContextMixin.sol";
////import "./common/meta-transactions/NativeMetaTransaction.sol";

contract OwnableDelegateProxy {}

/**
 * Used to delegate ownership of a contract to another address, to save on unneeded transactions to approve contract use for users
 */
contract ProxyRegistry {
    mapping(address => OwnableDelegateProxy) public proxies;
}

/**
 * @title ERC721Tradable
 * ERC721Tradable - ERC721 contract that whitelists a trading address, and has minting functionality.
 */
// abstract contract ERC721Tradable is ERC721, ContextMixin, NativeMetaTransaction, Ownable, Pausable {
abstract contract ERC721Tradable is Pausable, Ownable, NativeMetaTransaction, ContextMixin, ERC721 {
    using SafeMath for uint256;
    using Counters for Counters.Counter;

    /**
     * We rely on the OZ Counter util to keep track of the next available ID.
     * We track the nextTokenId instead of the currentTokenId to save users on gas costs. 
     * Read more about it here: https://shiny.mirror.xyz/OUampBbIz9ebEicfGnQf5At_ReMHlZy0tB4glb9xQ0E
     */ 
    Counters.Counter internal _nextTokenId;
    address proxyRegistryAddress;

    constructor(
        string memory _name,
        string memory _symbol,
        address _proxyRegistryAddress
    ) ERC721(_name, _symbol) {
        proxyRegistryAddress = _proxyRegistryAddress;
        // nextTokenId is initialized to 1, since starting at 0 leads to higher gas cost for the first minter
        _nextTokenId.increment();
        _initializeEIP712(_name);
    }

    function tokenCurrent() internal view returns (uint256) {
        return _nextTokenId.current();
    }

    function tokenNext() internal {
        _nextTokenId.increment();
    }

    /* This is a failsafe in case OpenSea ever changes their proxyRegistry address we will be able to update it. */
    function updateProxyRegistryAddress(address addr) public onlyOwner {
        proxyRegistryAddress = addr;
    }

    /**
     * @dev Mints a token to an address with a tokenURI.
     * @param _to address of the future owner of the token
     */
    function mintTo(address _to) public onlyOwner {
        uint256 currentTokenId = _nextTokenId.current();
        _nextTokenId.increment();
        _safeMint(_to, currentTokenId);
    }

    /**
        @dev Returns the total tokens minted so far.
        1 is always subtracted from the Counter since it tracks the next available tokenId.
     */
    function totalSupply() public view returns (uint256) {
        return _nextTokenId.current() - 1;
    }

    function baseTokenURI() virtual public view returns (string memory);

    function tokenURI(uint256 _tokenId) override public view returns (string memory) {
        return string(abi.encodePacked(baseTokenURI(), Strings.toString(_tokenId)));
    }

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

        return super.isApprovedForAll(owner, operator);
    }

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


/** 
 *  SourceUnit: c:\www\seekers-contracts\contracts\Seekers Relic Day Zero.sol
*/

////// SPDX-License-Identifier-FLATTEN-SUPPRESS-WARNING: MIT
pragma solidity ^0.8.2;

////import "@openzeppelin/contracts/token/ERC721/ERC721.sol";
////import "./ERC721Tradable.sol";

/// @custom:security-contact [email protected]
contract SeekersRelicDayZero is ERC721Tradable {

    // Base URI
    string private _baseTokenURI = "";

    uint16 public constant MAX_RELICS = 1000;
    uint8 public constant MAX_PUBLIC_MINT = 3;

    bool public publicMintActive = false;
    bool public burnToFlowActive = false;

    mapping(bytes32 => bytes32) private burnlist;

    // End custom non-Zeppelin variables.

    constructor(address _proxyRegistryAddress) 
			ERC721Tradable(
				"Seekers Day Zero",
				"SDZR",
				_proxyRegistryAddress
			) 
    {
        pause(); // nothing public can happen until the owner unpauses.
    }

    /**
        Custom modifiers
    */

    /**
     * Ensure the public mint is active.
     */
    modifier publicMintIsActive() {
        require(publicMintActive,"SeekersRelicDayZero: public mint is not active");
        _;
    }

    /**
     * Ensure the burn is active.
     */
    modifier burnToFlowIsActive() {
        require(burnToFlowActive,"SeekersRelicDayZero: burn-to-Flow is not active");
        _;
    }

    // End custom modifiers.

    /** 
        Custom non-Zeppelin functions:
    */

    /**
     * The relic may be burned to mint it on the Flow blockchain. The sigHash
     * must be generated at seekersnft.io or it will be invalid when checked,
     * preventing the relic from being minted on Flow. Don't call this
     * function directly or you will lose your relic.
     */
    function burnToFlow(uint16 tokenId, bytes32 sigHash) public whenNotPaused burnToFlowIsActive {
        //solhint-disable-next-line max-line-length
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721Burnable: caller is not owner nor approved");
        require(sigHash != bytes32(0),"SeekersRelicDayZero: sigHash must not be empty!");
        bytes32 k = keccak256(abi.encode(_msgSender(),tokenId));
        burnlist[k] = sigHash;
        _burn(tokenId);
    }

    /**
     * Retrieve a burned relic sigHash for validation.
     */
    function getBurnSigHash(address tokenOwner, uint16 tokenId) public view returns (bytes32) {
        bytes32 k = keccak256(abi.encode(tokenOwner,tokenId));
        return burnlist[k];
    }

    function setBaseURI(string memory baseURI_) public onlyOwner {
       _baseTokenURI = baseURI_; 
    }

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

    function baseTokenURI() public view override returns (string memory) {
        return _baseURI();
    }

    /**
     * Shows how many Relics are left to mint.
     */
    function checkAvailableRelics() public view returns (uint256) {
        return MAX_RELICS + 1 - tokenCurrent();
    }

    /**
     * Shows how many Relics have been minted. Does not subtract burned Relics.
     */
    function checkMintedRelics() public view returns (uint256) {
        return tokenCurrent() - 1;
    }

    /**
     * Activate public mint.
     */
    function activatePublicMint() public onlyOwner {
        publicMintActive = true;
    }

    /**
     * Deactivate public mint.
     */
    function deactivatePublicMint() public onlyOwner {
        publicMintActive = false;
    }

    /**
     * Activate burn.
     */
    function activateBurnToFlow() public onlyOwner {
        burnToFlowActive = true;
    }

    /**
     * Deactivate burn.
     */
    function deactivateBurnToFlow() public onlyOwner {
        burnToFlowActive= false;
    }

    /**
      * Send a list of addresses and mint <amount> to each one.
      */
    function airdrop(address[] calldata addresses, uint8 amount) public onlyOwner whenNotPaused {
        for (uint256 i = 0; i < addresses.length; i++) {
            _mintMultiple(addresses[i], amount);
        }
    }

    /**
     * Allow public to mint.
     */
    function publicMintMultiple(uint8 quantity) public payable whenNotPaused publicMintIsActive {
        require(balanceOf(_msgSender()) + quantity <= MAX_PUBLIC_MINT,"SeekersRelicDayZero: not allowed to mint more than account allowance");

        _mintMultiple(_msgSender(), quantity);
    }

    function _mintMultiple(address to, uint8 quantity) internal whenNotPaused {
        // quantity must be positive
        require(quantity > 0,"SeekersRelicDayZero: quantity must be positive");

        //  inventoryAvailable check
        require(MAX_RELICS >= tokenCurrent() + quantity - 1,"SeekersRelicDayZero: not enough Relics left to mint multiple!");

        for (uint256 i = 0; i < quantity; i++) {
            uint256 tokenId = tokenCurrent();
            tokenNext();
            _safeMint(to, tokenId);
        }
    }

    /**
     * Check ETH balance (onlyOwner).
     */
    function checkBalance() public view onlyOwner returns (uint256) {
        uint256 balance = address(this).balance;
        return balance;
    }

    /**
     * Withdraw ETH (onlyOwner).
     */
    function withdraw() public onlyOwner {
        uint balance = address(this).balance;
        payable(_msgSender()).transfer(balance);
    }

    /**
     * This is for the contract owner to mint (reserve) multiple Relics for free.
     * _safeMint prevents minting to the zero address.
     */
    function ownerMintMultiple(address to, uint8 quantity) public onlyOwner {
        _mintMultiple(to, quantity);
    }

    // End custom non-Zeppelin functions.

    function pause() public onlyOwner {
        _pause();
    }

    function unpause() public onlyOwner {
        _unpause();
    }

}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"_proxyRegistryAddress","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"userAddress","type":"address"},{"indexed":false,"internalType":"address payable","name":"relayerAddress","type":"address"},{"indexed":false,"internalType":"bytes","name":"functionSignature","type":"bytes"}],"name":"MetaTransactionExecuted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[],"name":"ERC712_VERSION","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_PUBLIC_MINT","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_RELICS","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"activateBurnToFlow","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"activatePublicMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"addresses","type":"address[]"},{"internalType":"uint8","name":"amount","type":"uint8"}],"name":"airdrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseTokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint16","name":"tokenId","type":"uint16"},{"internalType":"bytes32","name":"sigHash","type":"bytes32"}],"name":"burnToFlow","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"burnToFlowActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"checkAvailableRelics","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"checkBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"checkMintedRelics","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"deactivateBurnToFlow","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"deactivatePublicMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"userAddress","type":"address"},{"internalType":"bytes","name":"functionSignature","type":"bytes"},{"internalType":"bytes32","name":"sigR","type":"bytes32"},{"internalType":"bytes32","name":"sigS","type":"bytes32"},{"internalType":"uint8","name":"sigV","type":"uint8"}],"name":"executeMetaTransaction","outputs":[{"internalType":"bytes","name":"","type":"bytes"}],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"tokenOwner","type":"address"},{"internalType":"uint16","name":"tokenId","type":"uint16"}],"name":"getBurnSigHash","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getChainId","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getDomainSeperator","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"user","type":"address"}],"name":"getNonce","outputs":[{"internalType":"uint256","name":"nonce","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"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":"_to","type":"address"}],"name":"mintTo","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint8","name":"quantity","type":"uint8"}],"name":"ownerMintMultiple","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicMintActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint8","name":"quantity","type":"uint8"}],"name":"publicMintMultiple","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI_","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"addr","type":"address"}],"name":"updateProxyRegistryAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6000805460ff60a81b1916815560a0604081905260808290526200002791600b919062000476565b50600c805461ffff191690553480156200004057600080fd5b506040516200357d3803806200357d83398101604081905262000063916200051c565b604080518082018252601081526f5365656b65727320446179205a65726f60801b6020808301919091528251808401909352600483526329a22d2960e11b908301526000805460ff1916905590828282620000c7620000c162000148565b62000164565b8151620000dc90600390602085019062000476565b508051620000f290600490602084019062000476565b5050600a80546001600160a01b0319166001600160a01b03841617905550620001286009620001bd602090811b6200195817901c565b6200013383620001c6565b506200014191505062000238565b506200058b565b60006200015f620002c760201b620019611760201c565b905090565b600080546001600160a01b03838116610100818102610100600160a81b0319851617855560405193049190911692909183917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a35050565b80546001019055565b600054600160a81b900460ff1615620002175760405162461bcd60e51b815260206004820152600e60248201526d185b1c9958591e481a5b9a5d195960921b60448201526064015b60405180910390fd5b620002228162000326565b506000805460ff60a81b1916600160a81b179055565b6200024262000148565b6001600160a01b03166200026360005461010090046001600160a01b031690565b6001600160a01b031614620002bb5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016200020e565b620002c5620003d9565b565b6000333014156200032057600080368080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152505050503601516001600160a01b03169150620003239050565b50335b90565b6040518060800160405280604f81526020016200352e604f913980516020918201208251838301206040805180820190915260018152603160f81b930192909252907fc89efdaa54c0f20c7adf612882df0950f5a951637e0307cdcb4c672f298b8bc6304660408051602081019690965285019390935260608401919091526001600160a01b0316608083015260a082015260c00160408051601f19818403018152919052805160209091012060015550565b60005460ff1615620004215760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b60448201526064016200020e565b6000805460ff191660011790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586200045962000148565b6040516001600160a01b03909116815260200160405180910390a1565b82805462000484906200054e565b90600052602060002090601f016020900481019282620004a85760008555620004f3565b82601f10620004c357805160ff1916838001178555620004f3565b82800160010185558215620004f3579182015b82811115620004f3578251825591602001919060010190620004d6565b506200050192915062000505565b5090565b5b8082111562000501576000815560010162000506565b6000602082840312156200052f57600080fd5b81516001600160a01b03811681146200054757600080fd5b9392505050565b600181811c908216806200056357607f821691505b602082108114156200058557634e487b7160e01b600052602260045260246000fd5b50919050565b612f93806200059b6000396000f3fe60806040526004361061027d5760003560e01c80636352211e1161014f578063a22cb465116100c1578063d3bd8f921161007a578063d3bd8f9214610784578063d547cfb714610799578063e985e9c5146107ae578063f2fde38b146107ce578063f3a1ca8e146107ee578063fff968321461080357600080fd5b8063a22cb465146106e0578063b67c25a314610700578063b88d4fde1461071a578063b8f98af21461073a578063c71daccb1461074f578063c87b56dd1461076457600080fd5b80637dad95e9116101135780637dad95e91461064a5780638456cb591461065f5780638b97a195146106745780638da5cb5b1461068957806393dee5a1146106ac57806395d89b41146106cb57600080fd5b80636352211e146105ae57806365f13097146105ce57806370a08231146105f5578063715018a614610615578063755edd171461062a57600080fd5b806318160ddd116101f35780633408e470116101ac5780633408e470146105195780633ccfd60b1461052c5780633f4ba83a1461054157806342842e0e1461055657806355f804b3146105765780635c975abb1461059657600080fd5b806318160ddd1461046657806320379ee51461047b5780632165a9ca1461049057806323b872dd146104b05780632d0335ab146104d057806331c9ee6d1461050657600080fd5b80630bb0f2f4116102455780630bb0f2f41461035c5780630c53c51c146103d15780630f7e5970146103e457806311fecb4e1461041157806316b0a70e1461043157806316f6c2da1461044657600080fd5b806301ffc9a714610282578063040bf937146102b757806306fdde03146102e0578063081812fc14610302578063095ea7b31461033a575b600080fd5b34801561028e57600080fd5b506102a261029d366004612a7c565b610823565b60405190151581526020015b60405180910390f35b3480156102c357600080fd5b506102cd6103e881565b60405161ffff90911681526020016102ae565b3480156102ec57600080fd5b506102f5610875565b6040516102ae9190612c8c565b34801561030e57600080fd5b5061032261031d366004612b38565b610907565b6040516001600160a01b0390911681526020016102ae565b34801561034657600080fd5b5061035a6103553660046129a0565b6109a1565b005b34801561036857600080fd5b506103c361037736600461296b565b604080516001600160a01b039390931660208085019190915261ffff9290921683820152805180840382018152606090930181528251928201929092206000908152600d909152205490565b6040519081526020016102ae565b6102f56103df3660046128f7565b610ac9565b3480156103f057600080fd5b506102f5604051806040016040528060018152602001603160f81b81525081565b34801561041d57600080fd5b5061035a61042c3660046129f8565b610cb3565b34801561043d57600080fd5b5061035a610d78565b34801561045257600080fd5b5061035a6104613660046127c1565b610dd4565b34801561047257600080fd5b506103c3610e45565b34801561048757600080fd5b506001546103c3565b34801561049c57600080fd5b5061035a6104ab3660046129cc565b610e61565b3480156104bc57600080fd5b5061035a6104cb366004612817565b610ebe565b3480156104dc57600080fd5b506103c36104eb3660046127c1565b6001600160a01b031660009081526002602052604090205490565b61035a610514366004612b51565b610ef6565b34801561052557600080fd5b50466103c3565b34801561053857600080fd5b5061035a611033565b34801561054d57600080fd5b5061035a6110c3565b34801561056257600080fd5b5061035a610571366004612817565b61111c565b34801561058257600080fd5b5061035a610591366004612ad3565b611137565b3480156105a257600080fd5b5060005460ff166102a2565b3480156105ba57600080fd5b506103226105c9366004612b38565b611199565b3480156105da57600080fd5b506105e3600381565b60405160ff90911681526020016102ae565b34801561060157600080fd5b506103c36106103660046127c1565b611210565b34801561062157600080fd5b5061035a611297565b34801561063657600080fd5b5061035a6106453660046127c1565b6112f0565b34801561065657600080fd5b5061035a611364565b34801561066b57600080fd5b5061035a6113c2565b34801561068057600080fd5b506103c3611419565b34801561069557600080fd5b5060005461010090046001600160a01b0316610322565b3480156106b857600080fd5b50600c546102a290610100900460ff1681565b3480156106d757600080fd5b506102f5611425565b3480156106ec57600080fd5b5061035a6106fb3660046128c4565b611434565b34801561070c57600080fd5b50600c546102a29060ff1681565b34801561072657600080fd5b5061035a610735366004612858565b611446565b34801561074657600080fd5b5061035a61147f565b34801561075b57600080fd5b506103c36114df565b34801561077057600080fd5b506102f561077f366004612b38565b611536565b34801561079057600080fd5b5061035a611570565b3480156107a557600080fd5b506102f56115cb565b3480156107ba57600080fd5b506102a26107c93660046127de565b6115d5565b3480156107da57600080fd5b5061035a6107e93660046127c1565b6116a5565b3480156107fa57600080fd5b506103c3611762565b34801561080f57600080fd5b5061035a61081e366004612b1c565b611787565b60006001600160e01b031982166380ac58cd60e01b148061085457506001600160e01b03198216635b5e139f60e01b145b8061086f57506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606003805461088490612e2d565b80601f01602080910402602001604051908101604052809291908181526020018280546108b090612e2d565b80156108fd5780601f106108d2576101008083540402835291602001916108fd565b820191906000526020600020905b8154815290600101906020018083116108e057829003601f168201915b5050505050905090565b6000818152600560205260408120546001600160a01b03166109855760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600760205260409020546001600160a01b031690565b60006109ac82611199565b9050806001600160a01b0316836001600160a01b03161415610a1a5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b606482015260840161097c565b806001600160a01b0316610a2c6119bd565b6001600160a01b03161480610a485750610a48816107c96119bd565b610aba5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606482015260840161097c565b610ac483836119c7565b505050565b60408051606081810183526001600160a01b03881660008181526002602090815290859020548452830152918101869052610b078782878787611a35565b610b5d5760405162461bcd60e51b815260206004820152602160248201527f5369676e657220616e64207369676e617475726520646f206e6f74206d6174636044820152600d60fb1b606482015260840161097c565b6001600160a01b038716600090815260026020526040902054610b81906001611b25565b6001600160a01b0388166000908152600260205260409081902091909155517f5845892132946850460bff5a0083f71031bc5bf9aadcd40f1de79423eac9b10b90610bd190899033908a90612c1a565b60405180910390a1600080306001600160a01b0316888a604051602001610bf9929190612bb4565b60408051601f1981840301815290829052610c1391612b98565b6000604051808303816000865af19150503d8060008114610c50576040519150601f19603f3d011682016040523d82523d6000602084013e610c55565b606091505b509150915081610ca75760405162461bcd60e51b815260206004820152601c60248201527f46756e6374696f6e2063616c6c206e6f74207375636365737366756c00000000604482015260640161097c565b98975050505050505050565b610cbb6119bd565b6001600160a01b0316610cdc6000546001600160a01b036101009091041690565b6001600160a01b031614610d025760405162461bcd60e51b815260040161097c90612d1b565b60005460ff1615610d255760405162461bcd60e51b815260040161097c90612cf1565b60005b82811015610d7257610d60848483818110610d4557610d45612ec3565b9050602002016020810190610d5a91906127c1565b83611b38565b80610d6a81612e68565b915050610d28565b50505050565b610d806119bd565b6001600160a01b0316610da16000546001600160a01b036101009091041690565b6001600160a01b031614610dc75760405162461bcd60e51b815260040161097c90612d1b565b600c805461ff0019169055565b610ddc6119bd565b6001600160a01b0316610dfd6000546001600160a01b036101009091041690565b6001600160a01b031614610e235760405162461bcd60e51b815260040161097c90612d1b565b600a80546001600160a01b0319166001600160a01b0392909216919091179055565b60006001610e5260095490565b610e5c9190612dea565b905090565b610e696119bd565b6001600160a01b0316610e8a6000546001600160a01b036101009091041690565b6001600160a01b031614610eb05760405162461bcd60e51b815260040161097c90612d1b565b610eba8282611b38565b5050565b610ecf610ec96119bd565b82611c9d565b610eeb5760405162461bcd60e51b815260040161097c90612d50565b610ac4838383611d6c565b60005460ff1615610f195760405162461bcd60e51b815260040161097c90612cf1565b600c5460ff16610f825760405162461bcd60e51b815260206004820152602e60248201527f5365656b65727352656c69634461795a65726f3a207075626c6963206d696e7460448201526d206973206e6f742061637469766560901b606482015260840161097c565b600360ff8216610f936106106119bd565b610f9d9190612dbe565b111561101f5760405162461bcd60e51b8152602060048201526044602482018190527f5365656b65727352656c69634461795a65726f3a206e6f7420616c6c6f776564908201527f20746f206d696e74206d6f7265207468616e206163636f756e7420616c6c6f77606482015263616e636560e01b608482015260a40161097c565b61103061102a6119bd565b82611b38565b50565b61103b6119bd565b6001600160a01b031661105c6000546001600160a01b036101009091041690565b6001600160a01b0316146110825760405162461bcd60e51b815260040161097c90612d1b565b4761108b6119bd565b6001600160a01b03166108fc829081150290604051600060405180830381858888f19350505050158015610eba573d6000803e3d6000fd5b6110cb6119bd565b6001600160a01b03166110ec6000546001600160a01b036101009091041690565b6001600160a01b0316146111125760405162461bcd60e51b815260040161097c90612d1b565b61111a611f0c565b565b610ac483838360405180602001604052806000815250611446565b61113f6119bd565b6001600160a01b03166111606000546001600160a01b036101009091041690565b6001600160a01b0316146111865760405162461bcd60e51b815260040161097c90612d1b565b8051610eba90600b90602084019061266a565b6000818152600560205260408120546001600160a01b03168061086f5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b606482015260840161097c565b60006001600160a01b03821661127b5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b606482015260840161097c565b506001600160a01b031660009081526006602052604090205490565b61129f6119bd565b6001600160a01b03166112c06000546001600160a01b036101009091041690565b6001600160a01b0316146112e65760405162461bcd60e51b815260040161097c90612d1b565b61111a6000611fa5565b6112f86119bd565b6001600160a01b03166113196000546001600160a01b036101009091041690565b6001600160a01b03161461133f5760405162461bcd60e51b815260040161097c90612d1b565b600061134a60095490565b905061135a600980546001019055565b610eba8282611ffe565b61136c6119bd565b6001600160a01b031661138d6000546001600160a01b036101009091041690565b6001600160a01b0316146113b35760405162461bcd60e51b815260040161097c90612d1b565b600c805460ff19166001179055565b6113ca6119bd565b6001600160a01b03166113eb6000546001600160a01b036101009091041690565b6001600160a01b0316146114115760405162461bcd60e51b815260040161097c90612d1b565b61111a612018565b60006001610e52612071565b60606004805461088490612e2d565b610eba61143f6119bd565b838361207c565b6114576114516119bd565b83611c9d565b6114735760405162461bcd60e51b815260040161097c90612d50565b610d728484848461214b565b6114876119bd565b6001600160a01b03166114a86000546001600160a01b036101009091041690565b6001600160a01b0316146114ce5760405162461bcd60e51b815260040161097c90612d1b565b600c805461ff001916610100179055565b60006114e96119bd565b6001600160a01b031661150a6000546001600160a01b036101009091041690565b6001600160a01b0316146115305760405162461bcd60e51b815260040161097c90612d1b565b50475b90565b60606115406115cb565b6115498361217e565b60405160200161155a929190612beb565b6040516020818303038152906040529050919050565b6115786119bd565b6001600160a01b03166115996000546001600160a01b036101009091041690565b6001600160a01b0316146115bf5760405162461bcd60e51b815260040161097c90612d1b565b600c805460ff19169055565b6060610e5c61227c565b600a5460405163c455279160e01b81526001600160a01b03848116600483015260009281169190841690829063c45527919060240160206040518083038186803b15801561162257600080fd5b505afa158015611636573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061165a9190612ab6565b6001600160a01b0316141561167357600191505061086f565b6001600160a01b0380851660009081526008602090815260408083209387168352929052205460ff165b949350505050565b6116ad6119bd565b6001600160a01b03166116ce6000546001600160a01b036101009091041690565b6001600160a01b0316146116f45760405162461bcd60e51b815260040161097c90612d1b565b6001600160a01b0381166117595760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161097c565b61103081611fa5565b600061176c612071565b6117796103e86001612da1565b61ffff16610e5c9190612dea565b60005460ff16156117aa5760405162461bcd60e51b815260040161097c90612cf1565b600c54610100900460ff166118195760405162461bcd60e51b815260206004820152602f60248201527f5365656b65727352656c69634461795a65726f3a206275726e2d746f2d466c6f60448201526e77206973206e6f742061637469766560881b606482015260840161097c565b61182e6118246119bd565b8361ffff16611c9d565b6118935760405162461bcd60e51b815260206004820152603060248201527f4552433732314275726e61626c653a2063616c6c6572206973206e6f74206f7760448201526f1b995c881b9bdc88185c1c1c9bdd995960821b606482015260840161097c565b806118f85760405162461bcd60e51b815260206004820152602f60248201527f5365656b65727352656c69634461795a65726f3a2073696748617368206d757360448201526e74206e6f7420626520656d7074792160881b606482015260840161097c565b60006119026119bd565b604080516001600160a01b03909216602083015261ffff85169082015260600160408051601f1981840301815291815281516020928301206000818152600d90935291208390559050610ac461ffff841661228b565b80546001019055565b6000333014156119b857600080368080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152505050503601516001600160a01b031691506115339050565b503390565b6000610e5c611961565b600081815260076020526040902080546001600160a01b0319166001600160a01b03841690811790915581906119fc82611199565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006001600160a01b038616611a9b5760405162461bcd60e51b815260206004820152602560248201527f4e61746976654d6574615472616e73616374696f6e3a20494e56414c49445f5360448201526424a3a722a960d91b606482015260840161097c565b6001611aae611aa987612326565b6123a3565b6040805160008152602081018083529290925260ff851690820152606081018690526080810185905260a0016020604051602081039080840390855afa158015611afc573d6000803e3d6000fd5b505050602060405103516001600160a01b0316866001600160a01b031614905095945050505050565b6000611b318284612dbe565b9392505050565b60005460ff1615611b5b5760405162461bcd60e51b815260040161097c90612cf1565b60008160ff1611611bc55760405162461bcd60e51b815260206004820152602e60248201527f5365656b65727352656c69634461795a65726f3a207175616e74697479206d7560448201526d737420626520706f73697469766560901b606482015260840161097c565b60018160ff16611bd3612071565b611bdd9190612dbe565b611be79190612dea565b6103e81015611c5e5760405162461bcd60e51b815260206004820152603d60248201527f5365656b65727352656c69634461795a65726f3a206e6f7420656e6f7567682060448201527f52656c696373206c65667420746f206d696e74206d756c7469706c6521000000606482015260840161097c565b60005b8160ff16811015610ac4576000611c76612071565b9050611c806123d3565b611c8a8482611ffe565b5080611c9581612e68565b915050611c61565b6000818152600560205260408120546001600160a01b0316611d165760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161097c565b6000611d2183611199565b9050806001600160a01b0316846001600160a01b03161480611d5c5750836001600160a01b0316611d5184610907565b6001600160a01b0316145b8061169d575061169d81856115d5565b826001600160a01b0316611d7f82611199565b6001600160a01b031614611de75760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b606482015260840161097c565b6001600160a01b038216611e495760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b606482015260840161097c565b611e546000826119c7565b6001600160a01b0383166000908152600660205260408120805460019290611e7d908490612dea565b90915550506001600160a01b0382166000908152600660205260408120805460019290611eab908490612dbe565b909155505060008181526005602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b60005460ff16611f555760405162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b604482015260640161097c565b6000805460ff191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa611f886119bd565b6040516001600160a01b03909116815260200160405180910390a1565b600080546001600160a01b03838116610100818102610100600160a81b0319851617855560405193049190911692909183917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a35050565b610eba8282604051806020016040528060008152506123e1565b60005460ff161561203b5760405162461bcd60e51b815260040161097c90612cf1565b6000805460ff191660011790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258611f886119bd565b6000610e5c60095490565b816001600160a01b0316836001600160a01b031614156120de5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161097c565b6001600160a01b03838116600081815260086020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b612156848484611d6c565b61216284848484612414565b610d725760405162461bcd60e51b815260040161097c90612c9f565b6060816121a25750506040805180820190915260018152600360fc1b602082015290565b8160005b81156121cc57806121b681612e68565b91506121c59050600a83612dd6565b91506121a6565b60008167ffffffffffffffff8111156121e7576121e7612ed9565b6040519080825280601f01601f191660200182016040528015612211576020820181803683370190505b5090505b841561169d57612226600183612dea565b9150612233600a86612e83565b61223e906030612dbe565b60f81b81838151811061225357612253612ec3565b60200101906001600160f81b031916908160001a905350612275600a86612dd6565b9450612215565b6060600b805461088490612e2d565b600061229682611199565b90506122a36000836119c7565b6001600160a01b03811660009081526006602052604081208054600192906122cc908490612dea565b909155505060008281526005602052604080822080546001600160a01b0319169055518391906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b6000604051806080016040528060438152602001612f1b6043913980516020918201208351848301516040808701518051908601209051612386950193845260208401929092526001600160a01b03166040830152606082015260800190565b604051602081830303815290604052805190602001209050919050565b60006123ae60015490565b60405161190160f01b6020820152602281019190915260428101839052606201612386565b61111a600980546001019055565b6123eb8383612528565b6123f86000848484612414565b610ac45760405162461bcd60e51b815260040161097c90612c9f565b60006001600160a01b0384163b1561251d57836001600160a01b031663150b7a0261243d6119bd565b8786866040518563ffffffff1660e01b815260040161245f9493929190612c4f565b602060405180830381600087803b15801561247957600080fd5b505af19250505080156124a9575060408051601f3d908101601f191682019092526124a691810190612a99565b60015b612503573d8080156124d7576040519150601f19603f3d011682016040523d82523d6000602084013e6124dc565b606091505b5080516124fb5760405162461bcd60e51b815260040161097c90612c9f565b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905061169d565b506001949350505050565b6001600160a01b03821661257e5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640161097c565b6000818152600560205260409020546001600160a01b0316156125e35760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161097c565b6001600160a01b038216600090815260066020526040812080546001929061260c908490612dbe565b909155505060008181526005602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b82805461267690612e2d565b90600052602060002090601f01602090048101928261269857600085556126de565b82601f106126b157805160ff19168380011785556126de565b828001600101855582156126de579182015b828111156126de5782518255916020019190600101906126c3565b506126ea9291506126ee565b5090565b5b808211156126ea57600081556001016126ef565b600067ffffffffffffffff8084111561271e5761271e612ed9565b604051601f8501601f19908116603f0116810190828211818310171561274657612746612ed9565b8160405280935085815286868601111561275f57600080fd5b858560208301376000602087830101525050509392505050565b600082601f83011261278a57600080fd5b611b3183833560208501612703565b803561ffff811681146127ab57600080fd5b919050565b803560ff811681146127ab57600080fd5b6000602082840312156127d357600080fd5b8135611b3181612eef565b600080604083850312156127f157600080fd5b82356127fc81612eef565b9150602083013561280c81612eef565b809150509250929050565b60008060006060848603121561282c57600080fd5b833561283781612eef565b9250602084013561284781612eef565b929592945050506040919091013590565b6000806000806080858703121561286e57600080fd5b843561287981612eef565b9350602085013561288981612eef565b925060408501359150606085013567ffffffffffffffff8111156128ac57600080fd5b6128b887828801612779565b91505092959194509250565b600080604083850312156128d757600080fd5b82356128e281612eef565b91506020830135801515811461280c57600080fd5b600080600080600060a0868803121561290f57600080fd5b853561291a81612eef565b9450602086013567ffffffffffffffff81111561293657600080fd5b61294288828901612779565b945050604086013592506060860135915061295f608087016127b0565b90509295509295909350565b6000806040838503121561297e57600080fd5b823561298981612eef565b915061299760208401612799565b90509250929050565b600080604083850312156129b357600080fd5b82356129be81612eef565b946020939093013593505050565b600080604083850312156129df57600080fd5b82356129ea81612eef565b9150612997602084016127b0565b600080600060408486031215612a0d57600080fd5b833567ffffffffffffffff80821115612a2557600080fd5b818601915086601f830112612a3957600080fd5b813581811115612a4857600080fd5b8760208260051b8501011115612a5d57600080fd5b602092830195509350612a7391860190506127b0565b90509250925092565b600060208284031215612a8e57600080fd5b8135611b3181612f04565b600060208284031215612aab57600080fd5b8151611b3181612f04565b600060208284031215612ac857600080fd5b8151611b3181612eef565b600060208284031215612ae557600080fd5b813567ffffffffffffffff811115612afc57600080fd5b8201601f81018413612b0d57600080fd5b61169d84823560208401612703565b60008060408385031215612b2f57600080fd5b6129be83612799565b600060208284031215612b4a57600080fd5b5035919050565b600060208284031215612b6357600080fd5b611b31826127b0565b60008151808452612b84816020860160208601612e01565b601f01601f19169290920160200192915050565b60008251612baa818460208701612e01565b9190910192915050565b60008351612bc6818460208801612e01565b60609390931b6bffffffffffffffffffffffff19169190920190815260140192915050565b60008351612bfd818460208801612e01565b835190830190612c11818360208801612e01565b01949350505050565b6001600160a01b03848116825283166020820152606060408201819052600090612c4690830184612b6c565b95945050505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612c8290830184612b6c565b9695505050505050565b602081526000611b316020830184612b6c565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526010908201526f14185d5cd8589b194e881c185d5cd95960821b604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b600061ffff808316818516808303821115612c1157612c11612e97565b60008219821115612dd157612dd1612e97565b500190565b600082612de557612de5612ead565b500490565b600082821015612dfc57612dfc612e97565b500390565b60005b83811015612e1c578181015183820152602001612e04565b83811115610d725750506000910152565b600181811c90821680612e4157607f821691505b60208210811415612e6257634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612e7c57612e7c612e97565b5060010190565b600082612e9257612e92612ead565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b038116811461103057600080fd5b6001600160e01b03198116811461103057600080fdfe4d6574615472616e73616374696f6e2875696e74323536206e6f6e63652c616464726573732066726f6d2c62797465732066756e6374696f6e5369676e617475726529a264697066735822122027fbf13508069d57af88895ea60bb21ef66a66f349d38b75c863008d3ccc18eb64736f6c63430008070033454950373132446f6d61696e28737472696e67206e616d652c737472696e672076657273696f6e2c6164647265737320766572696679696e67436f6e74726163742c627974657333322073616c7429000000000000000000000000a5409ec958c83c3f309868babaca7c86dcb077c1

Deployed Bytecode

0x60806040526004361061027d5760003560e01c80636352211e1161014f578063a22cb465116100c1578063d3bd8f921161007a578063d3bd8f9214610784578063d547cfb714610799578063e985e9c5146107ae578063f2fde38b146107ce578063f3a1ca8e146107ee578063fff968321461080357600080fd5b8063a22cb465146106e0578063b67c25a314610700578063b88d4fde1461071a578063b8f98af21461073a578063c71daccb1461074f578063c87b56dd1461076457600080fd5b80637dad95e9116101135780637dad95e91461064a5780638456cb591461065f5780638b97a195146106745780638da5cb5b1461068957806393dee5a1146106ac57806395d89b41146106cb57600080fd5b80636352211e146105ae57806365f13097146105ce57806370a08231146105f5578063715018a614610615578063755edd171461062a57600080fd5b806318160ddd116101f35780633408e470116101ac5780633408e470146105195780633ccfd60b1461052c5780633f4ba83a1461054157806342842e0e1461055657806355f804b3146105765780635c975abb1461059657600080fd5b806318160ddd1461046657806320379ee51461047b5780632165a9ca1461049057806323b872dd146104b05780632d0335ab146104d057806331c9ee6d1461050657600080fd5b80630bb0f2f4116102455780630bb0f2f41461035c5780630c53c51c146103d15780630f7e5970146103e457806311fecb4e1461041157806316b0a70e1461043157806316f6c2da1461044657600080fd5b806301ffc9a714610282578063040bf937146102b757806306fdde03146102e0578063081812fc14610302578063095ea7b31461033a575b600080fd5b34801561028e57600080fd5b506102a261029d366004612a7c565b610823565b60405190151581526020015b60405180910390f35b3480156102c357600080fd5b506102cd6103e881565b60405161ffff90911681526020016102ae565b3480156102ec57600080fd5b506102f5610875565b6040516102ae9190612c8c565b34801561030e57600080fd5b5061032261031d366004612b38565b610907565b6040516001600160a01b0390911681526020016102ae565b34801561034657600080fd5b5061035a6103553660046129a0565b6109a1565b005b34801561036857600080fd5b506103c361037736600461296b565b604080516001600160a01b039390931660208085019190915261ffff9290921683820152805180840382018152606090930181528251928201929092206000908152600d909152205490565b6040519081526020016102ae565b6102f56103df3660046128f7565b610ac9565b3480156103f057600080fd5b506102f5604051806040016040528060018152602001603160f81b81525081565b34801561041d57600080fd5b5061035a61042c3660046129f8565b610cb3565b34801561043d57600080fd5b5061035a610d78565b34801561045257600080fd5b5061035a6104613660046127c1565b610dd4565b34801561047257600080fd5b506103c3610e45565b34801561048757600080fd5b506001546103c3565b34801561049c57600080fd5b5061035a6104ab3660046129cc565b610e61565b3480156104bc57600080fd5b5061035a6104cb366004612817565b610ebe565b3480156104dc57600080fd5b506103c36104eb3660046127c1565b6001600160a01b031660009081526002602052604090205490565b61035a610514366004612b51565b610ef6565b34801561052557600080fd5b50466103c3565b34801561053857600080fd5b5061035a611033565b34801561054d57600080fd5b5061035a6110c3565b34801561056257600080fd5b5061035a610571366004612817565b61111c565b34801561058257600080fd5b5061035a610591366004612ad3565b611137565b3480156105a257600080fd5b5060005460ff166102a2565b3480156105ba57600080fd5b506103226105c9366004612b38565b611199565b3480156105da57600080fd5b506105e3600381565b60405160ff90911681526020016102ae565b34801561060157600080fd5b506103c36106103660046127c1565b611210565b34801561062157600080fd5b5061035a611297565b34801561063657600080fd5b5061035a6106453660046127c1565b6112f0565b34801561065657600080fd5b5061035a611364565b34801561066b57600080fd5b5061035a6113c2565b34801561068057600080fd5b506103c3611419565b34801561069557600080fd5b5060005461010090046001600160a01b0316610322565b3480156106b857600080fd5b50600c546102a290610100900460ff1681565b3480156106d757600080fd5b506102f5611425565b3480156106ec57600080fd5b5061035a6106fb3660046128c4565b611434565b34801561070c57600080fd5b50600c546102a29060ff1681565b34801561072657600080fd5b5061035a610735366004612858565b611446565b34801561074657600080fd5b5061035a61147f565b34801561075b57600080fd5b506103c36114df565b34801561077057600080fd5b506102f561077f366004612b38565b611536565b34801561079057600080fd5b5061035a611570565b3480156107a557600080fd5b506102f56115cb565b3480156107ba57600080fd5b506102a26107c93660046127de565b6115d5565b3480156107da57600080fd5b5061035a6107e93660046127c1565b6116a5565b3480156107fa57600080fd5b506103c3611762565b34801561080f57600080fd5b5061035a61081e366004612b1c565b611787565b60006001600160e01b031982166380ac58cd60e01b148061085457506001600160e01b03198216635b5e139f60e01b145b8061086f57506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606003805461088490612e2d565b80601f01602080910402602001604051908101604052809291908181526020018280546108b090612e2d565b80156108fd5780601f106108d2576101008083540402835291602001916108fd565b820191906000526020600020905b8154815290600101906020018083116108e057829003601f168201915b5050505050905090565b6000818152600560205260408120546001600160a01b03166109855760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600760205260409020546001600160a01b031690565b60006109ac82611199565b9050806001600160a01b0316836001600160a01b03161415610a1a5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b606482015260840161097c565b806001600160a01b0316610a2c6119bd565b6001600160a01b03161480610a485750610a48816107c96119bd565b610aba5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606482015260840161097c565b610ac483836119c7565b505050565b60408051606081810183526001600160a01b03881660008181526002602090815290859020548452830152918101869052610b078782878787611a35565b610b5d5760405162461bcd60e51b815260206004820152602160248201527f5369676e657220616e64207369676e617475726520646f206e6f74206d6174636044820152600d60fb1b606482015260840161097c565b6001600160a01b038716600090815260026020526040902054610b81906001611b25565b6001600160a01b0388166000908152600260205260409081902091909155517f5845892132946850460bff5a0083f71031bc5bf9aadcd40f1de79423eac9b10b90610bd190899033908a90612c1a565b60405180910390a1600080306001600160a01b0316888a604051602001610bf9929190612bb4565b60408051601f1981840301815290829052610c1391612b98565b6000604051808303816000865af19150503d8060008114610c50576040519150601f19603f3d011682016040523d82523d6000602084013e610c55565b606091505b509150915081610ca75760405162461bcd60e51b815260206004820152601c60248201527f46756e6374696f6e2063616c6c206e6f74207375636365737366756c00000000604482015260640161097c565b98975050505050505050565b610cbb6119bd565b6001600160a01b0316610cdc6000546001600160a01b036101009091041690565b6001600160a01b031614610d025760405162461bcd60e51b815260040161097c90612d1b565b60005460ff1615610d255760405162461bcd60e51b815260040161097c90612cf1565b60005b82811015610d7257610d60848483818110610d4557610d45612ec3565b9050602002016020810190610d5a91906127c1565b83611b38565b80610d6a81612e68565b915050610d28565b50505050565b610d806119bd565b6001600160a01b0316610da16000546001600160a01b036101009091041690565b6001600160a01b031614610dc75760405162461bcd60e51b815260040161097c90612d1b565b600c805461ff0019169055565b610ddc6119bd565b6001600160a01b0316610dfd6000546001600160a01b036101009091041690565b6001600160a01b031614610e235760405162461bcd60e51b815260040161097c90612d1b565b600a80546001600160a01b0319166001600160a01b0392909216919091179055565b60006001610e5260095490565b610e5c9190612dea565b905090565b610e696119bd565b6001600160a01b0316610e8a6000546001600160a01b036101009091041690565b6001600160a01b031614610eb05760405162461bcd60e51b815260040161097c90612d1b565b610eba8282611b38565b5050565b610ecf610ec96119bd565b82611c9d565b610eeb5760405162461bcd60e51b815260040161097c90612d50565b610ac4838383611d6c565b60005460ff1615610f195760405162461bcd60e51b815260040161097c90612cf1565b600c5460ff16610f825760405162461bcd60e51b815260206004820152602e60248201527f5365656b65727352656c69634461795a65726f3a207075626c6963206d696e7460448201526d206973206e6f742061637469766560901b606482015260840161097c565b600360ff8216610f936106106119bd565b610f9d9190612dbe565b111561101f5760405162461bcd60e51b8152602060048201526044602482018190527f5365656b65727352656c69634461795a65726f3a206e6f7420616c6c6f776564908201527f20746f206d696e74206d6f7265207468616e206163636f756e7420616c6c6f77606482015263616e636560e01b608482015260a40161097c565b61103061102a6119bd565b82611b38565b50565b61103b6119bd565b6001600160a01b031661105c6000546001600160a01b036101009091041690565b6001600160a01b0316146110825760405162461bcd60e51b815260040161097c90612d1b565b4761108b6119bd565b6001600160a01b03166108fc829081150290604051600060405180830381858888f19350505050158015610eba573d6000803e3d6000fd5b6110cb6119bd565b6001600160a01b03166110ec6000546001600160a01b036101009091041690565b6001600160a01b0316146111125760405162461bcd60e51b815260040161097c90612d1b565b61111a611f0c565b565b610ac483838360405180602001604052806000815250611446565b61113f6119bd565b6001600160a01b03166111606000546001600160a01b036101009091041690565b6001600160a01b0316146111865760405162461bcd60e51b815260040161097c90612d1b565b8051610eba90600b90602084019061266a565b6000818152600560205260408120546001600160a01b03168061086f5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b606482015260840161097c565b60006001600160a01b03821661127b5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b606482015260840161097c565b506001600160a01b031660009081526006602052604090205490565b61129f6119bd565b6001600160a01b03166112c06000546001600160a01b036101009091041690565b6001600160a01b0316146112e65760405162461bcd60e51b815260040161097c90612d1b565b61111a6000611fa5565b6112f86119bd565b6001600160a01b03166113196000546001600160a01b036101009091041690565b6001600160a01b03161461133f5760405162461bcd60e51b815260040161097c90612d1b565b600061134a60095490565b905061135a600980546001019055565b610eba8282611ffe565b61136c6119bd565b6001600160a01b031661138d6000546001600160a01b036101009091041690565b6001600160a01b0316146113b35760405162461bcd60e51b815260040161097c90612d1b565b600c805460ff19166001179055565b6113ca6119bd565b6001600160a01b03166113eb6000546001600160a01b036101009091041690565b6001600160a01b0316146114115760405162461bcd60e51b815260040161097c90612d1b565b61111a612018565b60006001610e52612071565b60606004805461088490612e2d565b610eba61143f6119bd565b838361207c565b6114576114516119bd565b83611c9d565b6114735760405162461bcd60e51b815260040161097c90612d50565b610d728484848461214b565b6114876119bd565b6001600160a01b03166114a86000546001600160a01b036101009091041690565b6001600160a01b0316146114ce5760405162461bcd60e51b815260040161097c90612d1b565b600c805461ff001916610100179055565b60006114e96119bd565b6001600160a01b031661150a6000546001600160a01b036101009091041690565b6001600160a01b0316146115305760405162461bcd60e51b815260040161097c90612d1b565b50475b90565b60606115406115cb565b6115498361217e565b60405160200161155a929190612beb565b6040516020818303038152906040529050919050565b6115786119bd565b6001600160a01b03166115996000546001600160a01b036101009091041690565b6001600160a01b0316146115bf5760405162461bcd60e51b815260040161097c90612d1b565b600c805460ff19169055565b6060610e5c61227c565b600a5460405163c455279160e01b81526001600160a01b03848116600483015260009281169190841690829063c45527919060240160206040518083038186803b15801561162257600080fd5b505afa158015611636573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061165a9190612ab6565b6001600160a01b0316141561167357600191505061086f565b6001600160a01b0380851660009081526008602090815260408083209387168352929052205460ff165b949350505050565b6116ad6119bd565b6001600160a01b03166116ce6000546001600160a01b036101009091041690565b6001600160a01b0316146116f45760405162461bcd60e51b815260040161097c90612d1b565b6001600160a01b0381166117595760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161097c565b61103081611fa5565b600061176c612071565b6117796103e86001612da1565b61ffff16610e5c9190612dea565b60005460ff16156117aa5760405162461bcd60e51b815260040161097c90612cf1565b600c54610100900460ff166118195760405162461bcd60e51b815260206004820152602f60248201527f5365656b65727352656c69634461795a65726f3a206275726e2d746f2d466c6f60448201526e77206973206e6f742061637469766560881b606482015260840161097c565b61182e6118246119bd565b8361ffff16611c9d565b6118935760405162461bcd60e51b815260206004820152603060248201527f4552433732314275726e61626c653a2063616c6c6572206973206e6f74206f7760448201526f1b995c881b9bdc88185c1c1c9bdd995960821b606482015260840161097c565b806118f85760405162461bcd60e51b815260206004820152602f60248201527f5365656b65727352656c69634461795a65726f3a2073696748617368206d757360448201526e74206e6f7420626520656d7074792160881b606482015260840161097c565b60006119026119bd565b604080516001600160a01b03909216602083015261ffff85169082015260600160408051601f1981840301815291815281516020928301206000818152600d90935291208390559050610ac461ffff841661228b565b80546001019055565b6000333014156119b857600080368080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152505050503601516001600160a01b031691506115339050565b503390565b6000610e5c611961565b600081815260076020526040902080546001600160a01b0319166001600160a01b03841690811790915581906119fc82611199565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006001600160a01b038616611a9b5760405162461bcd60e51b815260206004820152602560248201527f4e61746976654d6574615472616e73616374696f6e3a20494e56414c49445f5360448201526424a3a722a960d91b606482015260840161097c565b6001611aae611aa987612326565b6123a3565b6040805160008152602081018083529290925260ff851690820152606081018690526080810185905260a0016020604051602081039080840390855afa158015611afc573d6000803e3d6000fd5b505050602060405103516001600160a01b0316866001600160a01b031614905095945050505050565b6000611b318284612dbe565b9392505050565b60005460ff1615611b5b5760405162461bcd60e51b815260040161097c90612cf1565b60008160ff1611611bc55760405162461bcd60e51b815260206004820152602e60248201527f5365656b65727352656c69634461795a65726f3a207175616e74697479206d7560448201526d737420626520706f73697469766560901b606482015260840161097c565b60018160ff16611bd3612071565b611bdd9190612dbe565b611be79190612dea565b6103e81015611c5e5760405162461bcd60e51b815260206004820152603d60248201527f5365656b65727352656c69634461795a65726f3a206e6f7420656e6f7567682060448201527f52656c696373206c65667420746f206d696e74206d756c7469706c6521000000606482015260840161097c565b60005b8160ff16811015610ac4576000611c76612071565b9050611c806123d3565b611c8a8482611ffe565b5080611c9581612e68565b915050611c61565b6000818152600560205260408120546001600160a01b0316611d165760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161097c565b6000611d2183611199565b9050806001600160a01b0316846001600160a01b03161480611d5c5750836001600160a01b0316611d5184610907565b6001600160a01b0316145b8061169d575061169d81856115d5565b826001600160a01b0316611d7f82611199565b6001600160a01b031614611de75760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b606482015260840161097c565b6001600160a01b038216611e495760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b606482015260840161097c565b611e546000826119c7565b6001600160a01b0383166000908152600660205260408120805460019290611e7d908490612dea565b90915550506001600160a01b0382166000908152600660205260408120805460019290611eab908490612dbe565b909155505060008181526005602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b60005460ff16611f555760405162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b604482015260640161097c565b6000805460ff191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa611f886119bd565b6040516001600160a01b03909116815260200160405180910390a1565b600080546001600160a01b03838116610100818102610100600160a81b0319851617855560405193049190911692909183917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a35050565b610eba8282604051806020016040528060008152506123e1565b60005460ff161561203b5760405162461bcd60e51b815260040161097c90612cf1565b6000805460ff191660011790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258611f886119bd565b6000610e5c60095490565b816001600160a01b0316836001600160a01b031614156120de5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161097c565b6001600160a01b03838116600081815260086020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b612156848484611d6c565b61216284848484612414565b610d725760405162461bcd60e51b815260040161097c90612c9f565b6060816121a25750506040805180820190915260018152600360fc1b602082015290565b8160005b81156121cc57806121b681612e68565b91506121c59050600a83612dd6565b91506121a6565b60008167ffffffffffffffff8111156121e7576121e7612ed9565b6040519080825280601f01601f191660200182016040528015612211576020820181803683370190505b5090505b841561169d57612226600183612dea565b9150612233600a86612e83565b61223e906030612dbe565b60f81b81838151811061225357612253612ec3565b60200101906001600160f81b031916908160001a905350612275600a86612dd6565b9450612215565b6060600b805461088490612e2d565b600061229682611199565b90506122a36000836119c7565b6001600160a01b03811660009081526006602052604081208054600192906122cc908490612dea565b909155505060008281526005602052604080822080546001600160a01b0319169055518391906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b6000604051806080016040528060438152602001612f1b6043913980516020918201208351848301516040808701518051908601209051612386950193845260208401929092526001600160a01b03166040830152606082015260800190565b604051602081830303815290604052805190602001209050919050565b60006123ae60015490565b60405161190160f01b6020820152602281019190915260428101839052606201612386565b61111a600980546001019055565b6123eb8383612528565b6123f86000848484612414565b610ac45760405162461bcd60e51b815260040161097c90612c9f565b60006001600160a01b0384163b1561251d57836001600160a01b031663150b7a0261243d6119bd565b8786866040518563ffffffff1660e01b815260040161245f9493929190612c4f565b602060405180830381600087803b15801561247957600080fd5b505af19250505080156124a9575060408051601f3d908101601f191682019092526124a691810190612a99565b60015b612503573d8080156124d7576040519150601f19603f3d011682016040523d82523d6000602084013e6124dc565b606091505b5080516124fb5760405162461bcd60e51b815260040161097c90612c9f565b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905061169d565b506001949350505050565b6001600160a01b03821661257e5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640161097c565b6000818152600560205260409020546001600160a01b0316156125e35760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161097c565b6001600160a01b038216600090815260066020526040812080546001929061260c908490612dbe565b909155505060008181526005602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b82805461267690612e2d565b90600052602060002090601f01602090048101928261269857600085556126de565b82601f106126b157805160ff19168380011785556126de565b828001600101855582156126de579182015b828111156126de5782518255916020019190600101906126c3565b506126ea9291506126ee565b5090565b5b808211156126ea57600081556001016126ef565b600067ffffffffffffffff8084111561271e5761271e612ed9565b604051601f8501601f19908116603f0116810190828211818310171561274657612746612ed9565b8160405280935085815286868601111561275f57600080fd5b858560208301376000602087830101525050509392505050565b600082601f83011261278a57600080fd5b611b3183833560208501612703565b803561ffff811681146127ab57600080fd5b919050565b803560ff811681146127ab57600080fd5b6000602082840312156127d357600080fd5b8135611b3181612eef565b600080604083850312156127f157600080fd5b82356127fc81612eef565b9150602083013561280c81612eef565b809150509250929050565b60008060006060848603121561282c57600080fd5b833561283781612eef565b9250602084013561284781612eef565b929592945050506040919091013590565b6000806000806080858703121561286e57600080fd5b843561287981612eef565b9350602085013561288981612eef565b925060408501359150606085013567ffffffffffffffff8111156128ac57600080fd5b6128b887828801612779565b91505092959194509250565b600080604083850312156128d757600080fd5b82356128e281612eef565b91506020830135801515811461280c57600080fd5b600080600080600060a0868803121561290f57600080fd5b853561291a81612eef565b9450602086013567ffffffffffffffff81111561293657600080fd5b61294288828901612779565b945050604086013592506060860135915061295f608087016127b0565b90509295509295909350565b6000806040838503121561297e57600080fd5b823561298981612eef565b915061299760208401612799565b90509250929050565b600080604083850312156129b357600080fd5b82356129be81612eef565b946020939093013593505050565b600080604083850312156129df57600080fd5b82356129ea81612eef565b9150612997602084016127b0565b600080600060408486031215612a0d57600080fd5b833567ffffffffffffffff80821115612a2557600080fd5b818601915086601f830112612a3957600080fd5b813581811115612a4857600080fd5b8760208260051b8501011115612a5d57600080fd5b602092830195509350612a7391860190506127b0565b90509250925092565b600060208284031215612a8e57600080fd5b8135611b3181612f04565b600060208284031215612aab57600080fd5b8151611b3181612f04565b600060208284031215612ac857600080fd5b8151611b3181612eef565b600060208284031215612ae557600080fd5b813567ffffffffffffffff811115612afc57600080fd5b8201601f81018413612b0d57600080fd5b61169d84823560208401612703565b60008060408385031215612b2f57600080fd5b6129be83612799565b600060208284031215612b4a57600080fd5b5035919050565b600060208284031215612b6357600080fd5b611b31826127b0565b60008151808452612b84816020860160208601612e01565b601f01601f19169290920160200192915050565b60008251612baa818460208701612e01565b9190910192915050565b60008351612bc6818460208801612e01565b60609390931b6bffffffffffffffffffffffff19169190920190815260140192915050565b60008351612bfd818460208801612e01565b835190830190612c11818360208801612e01565b01949350505050565b6001600160a01b03848116825283166020820152606060408201819052600090612c4690830184612b6c565b95945050505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612c8290830184612b6c565b9695505050505050565b602081526000611b316020830184612b6c565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526010908201526f14185d5cd8589b194e881c185d5cd95960821b604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b600061ffff808316818516808303821115612c1157612c11612e97565b60008219821115612dd157612dd1612e97565b500190565b600082612de557612de5612ead565b500490565b600082821015612dfc57612dfc612e97565b500390565b60005b83811015612e1c578181015183820152602001612e04565b83811115610d725750506000910152565b600181811c90821680612e4157607f821691505b60208210811415612e6257634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612e7c57612e7c612e97565b5060010190565b600082612e9257612e92612ead565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b038116811461103057600080fd5b6001600160e01b03198116811461103057600080fdfe4d6574615472616e73616374696f6e2875696e74323536206e6f6e63652c616464726573732066726f6d2c62797465732066756e6374696f6e5369676e617475726529a264697066735822122027fbf13508069d57af88895ea60bb21ef66a66f349d38b75c863008d3ccc18eb64736f6c63430008070033

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

000000000000000000000000a5409ec958c83c3f309868babaca7c86dcb077c1

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

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


Deployed Bytecode Sourcemap

60521:5638:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43410:305;;;;;;;;;;-1:-1:-1;43410:305:0;;;;;:::i;:::-;;:::i;:::-;;;11025:14:1;;11018:22;11000:41;;10988:2;10973:18;43410:305:0;;;;;;;;60636:40;;;;;;;;;;;;60672:4;60636:40;;;;;23490:6:1;23478:19;;;23460:38;;23448:2;23433:18;60636:40:0;23316:188:1;44355:100:0;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;45914:221::-;;;;;;;;;;-1:-1:-1;45914:221:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;9597:32:1;;;9579:51;;9567:2;9552:18;45914:221:0;9433:203:1;45437:411:0;;;;;;;;;;-1:-1:-1;45437:411:0;;;;;:::i;:::-;;:::i;:::-;;62552:191;;;;;;;;;;-1:-1:-1;62552:191:0;;;;;:::i;:::-;62675:30;;;-1:-1:-1;;;;;10760:32:1;;;;62675:30:0;;;;10742:51:1;;;;10841:6;10829:19;;;;10809:18;;;10802:47;62675:30:0;;;;;;;;;10715:18:1;;;;62675:30:0;;62665:41;;;;;;;;;-1:-1:-1;62724:11:0;;;:8;:11;;;;;;62552:191;;;;11198:25:1;;;11186:2;11171:18;62552:191:0;11052:177:1;31834:1151:0;;;;;;:::i;:::-;;:::i;848:43::-;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;848:43:0;;;;;64152:219;;;;;;;;;;-1:-1:-1;64152:219:0;;;;;:::i;:::-;;:::i;63969:91::-;;;;;;;;;;;;;:::i;58319:113::-;;;;;;;;;;-1:-1:-1;58319:113:0;;;;;:::i;:::-;;:::i;58937:105::-;;;;;;;;;;;;;:::i;1857:101::-;;;;;;;;;;-1:-1:-1;1935:15:0;;1857:101;;65849:118;;;;;;;;;;-1:-1:-1;65849:118:0;;;;;:::i;:::-;;:::i;46664:339::-;;;;;;;;;;-1:-1:-1;46664:339:0;;;;;:::i;:::-;;:::i;33411:107::-;;;;;;;;;;-1:-1:-1;33411:107:0;;;;;:::i;:::-;-1:-1:-1;;;;;33498:12:0;33464:13;33498:12;;;:6;:12;;;;;;;33411:107;64427:294;;;;;;:::i;:::-;;:::i;1966:161::-;;;;;;;;;;-1:-1:-1;2080:9:0;1966:161;;65542:142;;;;;;;;;;;;;:::i;66089:65::-;;;;;;;;;;;;;:::i;47074:185::-;;;;;;;;;;-1:-1:-1;47074:185:0;;;;;:::i;:::-;;:::i;62751:104::-;;;;;;;;;;-1:-1:-1;62751:104:0;;;;;:::i;:::-;;:::i;37772:86::-;;;;;;;;;;-1:-1:-1;37819:4:0;37843:7;;;37772:86;;44049:239;;;;;;;;;;-1:-1:-1;44049:239:0;;;;;:::i;:::-;;:::i;60683:41::-;;;;;;;;;;;;60723:1;60683:41;;;;;23863:4:1;23851:17;;;23833:36;;23821:2;23806:18;60683:41:0;23691:184:1;43779:208:0;;;;;;;;;;-1:-1:-1;43779:208:0;;;;;:::i;:::-;;:::i;40821:103::-;;;;;;;;;;;;;:::i;58576:188::-;;;;;;;;;;-1:-1:-1;58576:188:0;;;;;:::i;:::-;;:::i;63541:89::-;;;;;;;;;;;;;:::i;66020:61::-;;;;;;;;;;;;;:::i;63382:103::-;;;;;;;;;;;;;:::i;40170:87::-;;;;;;;;;;-1:-1:-1;40216:7:0;40243:6;;;;-1:-1:-1;;;;;40243:6:0;40170:87;;60776:36;;;;;;;;;;-1:-1:-1;60776:36:0;;;;;;;;;;;44524:104;;;;;;;;;;;;;:::i;46207:155::-;;;;;;;;;;-1:-1:-1;46207:155:0;;;;;:::i;:::-;;:::i;60733:36::-;;;;;;;;;;-1:-1:-1;60733:36:0;;;;;;;;47330:328;;;;;;;;;;-1:-1:-1;47330:328:0;;;;;:::i;:::-;;:::i;63829:89::-;;;;;;;;;;;;;:::i;65335:147::-;;;;;;;;;;;;;:::i;59126:175::-;;;;;;;;;;-1:-1:-1;59126:175:0;;;;;:::i;:::-;;:::i;63688:92::-;;;;;;;;;;;;;:::i;62977:105::-;;;;;;;;;;;;;:::i;59433:445::-;;;;;;;;;;-1:-1:-1;59433:445:0;;;;;:::i;:::-;;:::i;41079:201::-;;;;;;;;;;-1:-1:-1;41079:201:0;;;;;:::i;:::-;;:::i;63156:119::-;;;;;;;;;;;;;:::i;61989:481::-;;;;;;;;;;-1:-1:-1;61989:481:0;;;;;:::i;:::-;;:::i;43410:305::-;43512:4;-1:-1:-1;;;;;;43549:40:0;;-1:-1:-1;;;43549:40:0;;:105;;-1:-1:-1;;;;;;;43606:48:0;;-1:-1:-1;;;43606:48:0;43549:105;:158;;;-1:-1:-1;;;;;;;;;;18049:40:0;;;43671:36;43529:178;43410:305;-1:-1:-1;;43410:305:0:o;44355:100::-;44409:13;44442:5;44435:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44355:100;:::o;45914:221::-;45990:7;49257:16;;;:7;:16;;;;;;-1:-1:-1;;;;;49257:16:0;46010:73;;;;-1:-1:-1;;;46010:73:0;;18126:2:1;46010:73:0;;;18108:21:1;18165:2;18145:18;;;18138:30;18204:34;18184:18;;;18177:62;-1:-1:-1;;;18255:18:1;;;18248:42;18307:19;;46010:73:0;;;;;;;;;-1:-1:-1;46103:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;46103:24:0;;45914:221::o;45437:411::-;45518:13;45534:23;45549:7;45534:14;:23::i;:::-;45518:39;;45582:5;-1:-1:-1;;;;;45576:11:0;:2;-1:-1:-1;;;;;45576:11:0;;;45568:57;;;;-1:-1:-1;;;45568:57:0;;19712:2:1;45568:57:0;;;19694:21:1;19751:2;19731:18;;;19724:30;19790:34;19770:18;;;19763:62;-1:-1:-1;;;19841:18:1;;;19834:31;19882:19;;45568:57:0;19510:397:1;45568:57:0;45676:5;-1:-1:-1;;;;;45660:21:0;:12;:10;:12::i;:::-;-1:-1:-1;;;;;45660:21:0;;:62;;;;45685:37;45702:5;45709:12;:10;:12::i;45685:37::-;45638:168;;;;-1:-1:-1;;;45638:168:0;;16519:2:1;45638:168:0;;;16501:21:1;16558:2;16538:18;;;16531:30;16597:34;16577:18;;;16570:62;16668:26;16648:18;;;16641:54;16712:19;;45638:168:0;16317:420:1;45638:168:0;45819:21;45828:2;45832:7;45819:8;:21::i;:::-;45507:341;45437:411;;:::o;31834:1151::-;32092:152;;;32035:12;32092:152;;;;;-1:-1:-1;;;;;32130:19:0;;32060:29;32130:19;;;:6;:19;;;;;;;;;32092:152;;;;;;;;;;;32279:45;32137:11;32092:152;32307:4;32313;32319;32279:6;:45::i;:::-;32257:128;;;;-1:-1:-1;;;32257:128:0;;19310:2:1;32257:128:0;;;19292:21:1;19349:2;19329:18;;;19322:30;19388:34;19368:18;;;19361:62;-1:-1:-1;;;19439:18:1;;;19432:31;19480:19;;32257:128:0;19108:397:1;32257:128:0;-1:-1:-1;;;;;32474:19:0;;;;;;:6;:19;;;;;;:26;;32498:1;32474:23;:26::i;:::-;-1:-1:-1;;;;;32452:19:0;;;;;;:6;:19;;;;;;;:48;;;;32518:126;;;;;32459:11;;32590:10;;32616:17;;32518:126;:::i;:::-;;;;;;;;32755:12;32769:23;32804:4;-1:-1:-1;;;;;32796:18:0;32846:17;32865:11;32829:48;;;;;;;;;:::i;:::-;;;;-1:-1:-1;;32829:48:0;;;;;;;;;;32796:92;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32754:134;;;;32907:7;32899:48;;;;-1:-1:-1;;;32899:48:0;;13882:2:1;32899:48:0;;;13864:21:1;13921:2;13901:18;;;13894:30;13960;13940:18;;;13933:58;14008:18;;32899:48:0;13680:352:1;32899:48:0;32967:10;31834:1151;-1:-1:-1;;;;;;;;31834:1151:0:o;64152:219::-;40401:12;:10;:12::i;:::-;-1:-1:-1;;;;;40390:23:0;:7;40216;40243:6;-1:-1:-1;;;;;40243:6:0;;;;;;40170:87;40390:7;-1:-1:-1;;;;;40390:23:0;;40382:68;;;;-1:-1:-1;;;40382:68:0;;;;;;;:::i;:::-;37819:4;37843:7;;;38097:9:::1;38089:38;;;;-1:-1:-1::0;;;38089:38:0::1;;;;;;;:::i;:::-;64260:9:::2;64255:109;64275:20:::0;;::::2;64255:109;;;64317:35;64331:9;;64341:1;64331:12;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;64345:6;64317:13;:35::i;:::-;64297:3:::0;::::2;::::0;::::2;:::i;:::-;;;;64255:109;;;;64152:219:::0;;;:::o;63969:91::-;40401:12;:10;:12::i;:::-;-1:-1:-1;;;;;40390:23:0;:7;40216;40243:6;-1:-1:-1;;;;;40243:6:0;;;;;;40170:87;40390:7;-1:-1:-1;;;;;40390:23:0;;40382:68;;;;-1:-1:-1;;;40382:68:0;;;;;;;:::i;:::-;64029:16:::1;:23:::0;;-1:-1:-1;;64029:23:0::1;::::0;;63969:91::o;58319:113::-;40401:12;:10;:12::i;:::-;-1:-1:-1;;;;;40390:23:0;:7;40216;40243:6;-1:-1:-1;;;;;40243:6:0;;;;;;40170:87;40390:7;-1:-1:-1;;;;;40390:23:0;;40382:68;;;;-1:-1:-1;;;40382:68:0;;;;;;;:::i;:::-;58397:20:::1;:27:::0;;-1:-1:-1;;;;;;58397:27:0::1;-1:-1:-1::0;;;;;58397:27:0;;;::::1;::::0;;;::::1;::::0;;58319:113::o;58937:105::-;58981:7;59033:1;59008:22;:12;35992:14;;35900:114;59008:22;:26;;;;:::i;:::-;59001:33;;58937:105;:::o;65849:118::-;40401:12;:10;:12::i;:::-;-1:-1:-1;;;;;40390:23:0;:7;40216;40243:6;-1:-1:-1;;;;;40243:6:0;;;;;;40170:87;40390:7;-1:-1:-1;;;;;40390:23:0;;40382:68;;;;-1:-1:-1;;;40382:68:0;;;;;;;:::i;:::-;65932:27:::1;65946:2;65950:8;65932:13;:27::i;:::-;65849:118:::0;;:::o;46664:339::-;46859:41;46878:12;:10;:12::i;:::-;46892:7;46859:18;:41::i;:::-;46851:103;;;;-1:-1:-1;;;46851:103:0;;;;;;;:::i;:::-;46967:28;46977:4;46983:2;46987:7;46967:9;:28::i;64427:294::-;37819:4;37843:7;;;38097:9;38089:38;;;;-1:-1:-1;;;38089:38:0;;;;;;;:::i;:::-;61303:16:::1;::::0;::::1;;61295:74;;;::::0;-1:-1:-1;;;61295:74:0;;20529:2:1;61295:74:0::1;::::0;::::1;20511:21:1::0;20568:2;20548:18;;;20541:30;20607:34;20587:18;;;20580:62;-1:-1:-1;;;20658:18:1;;;20651:44;20712:19;;61295:74:0::1;20327:410:1::0;61295:74:0::1;60723:1:::2;64538:53;:34:::0;::::2;:23;64548:12;:10;:12::i;64538:23::-;:34;;;;:::i;:::-;:53;;64530:133;;;::::0;-1:-1:-1;;;64530:133:0;;21778:2:1;64530:133:0::2;::::0;::::2;21760:21:1::0;21817:2;21797:18;;;21790:30;;;21856:34;21836:18;;;21829:62;21927:34;21907:18;;;21900:62;-1:-1:-1;;;21978:19:1;;;21971:35;22023:19;;64530:133:0::2;21576:472:1::0;64530:133:0::2;64676:37;64690:12;:10;:12::i;:::-;64704:8;64676:13;:37::i;:::-;64427:294:::0;:::o;65542:142::-;40401:12;:10;:12::i;:::-;-1:-1:-1;;;;;40390:23:0;:7;40216;40243:6;-1:-1:-1;;;;;40243:6:0;;;;;;40170:87;40390:7;-1:-1:-1;;;;;40390:23:0;;40382:68;;;;-1:-1:-1;;;40382:68:0;;;;;;;:::i;:::-;65605:21:::1;65645:12;:10;:12::i;:::-;-1:-1:-1::0;;;;;65637:30:0::1;:39;65668:7;65637:39;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;66089:65:::0;40401:12;:10;:12::i;:::-;-1:-1:-1;;;;;40390:23:0;:7;40216;40243:6;-1:-1:-1;;;;;40243:6:0;;;;;;40170:87;40390:7;-1:-1:-1;;;;;40390:23:0;;40382:68;;;;-1:-1:-1;;;40382:68:0;;;;;;;:::i;:::-;66136:10:::1;:8;:10::i;:::-;66089:65::o:0;47074:185::-;47212:39;47229:4;47235:2;47239:7;47212:39;;;;;;;;;;;;:16;:39::i;62751:104::-;40401:12;:10;:12::i;:::-;-1:-1:-1;;;;;40390:23:0;:7;40216;40243:6;-1:-1:-1;;;;;40243:6:0;;;;;;40170:87;40390:7;-1:-1:-1;;;;;40390:23:0;;40382:68;;;;-1:-1:-1;;;40382:68:0;;;;;;;:::i;:::-;62822:24;;::::1;::::0;:13:::1;::::0;:24:::1;::::0;::::1;::::0;::::1;:::i;44049:239::-:0;44121:7;44157:16;;;:7;:16;;;;;;-1:-1:-1;;;;;44157:16:0;44192:19;44184:73;;;;-1:-1:-1;;;44184:73:0;;17355:2:1;44184:73:0;;;17337:21:1;17394:2;17374:18;;;17367:30;17433:34;17413:18;;;17406:62;-1:-1:-1;;;17484:18:1;;;17477:39;17533:19;;44184:73:0;17153:405:1;43779:208:0;43851:7;-1:-1:-1;;;;;43879:19:0;;43871:74;;;;-1:-1:-1;;;43871:74:0;;16944:2:1;43871:74:0;;;16926:21:1;16983:2;16963:18;;;16956:30;17022:34;17002:18;;;16995:62;-1:-1:-1;;;17073:18:1;;;17066:40;17123:19;;43871:74:0;16742:406:1;43871:74:0;-1:-1:-1;;;;;;43963:16:0;;;;;:9;:16;;;;;;;43779:208::o;40821:103::-;40401:12;:10;:12::i;:::-;-1:-1:-1;;;;;40390:23:0;:7;40216;40243:6;-1:-1:-1;;;;;40243:6:0;;;;;;40170:87;40390:7;-1:-1:-1;;;;;40390:23:0;;40382:68;;;;-1:-1:-1;;;40382:68:0;;;;;;;:::i;:::-;40886:30:::1;40913:1;40886:18;:30::i;58576:188::-:0;40401:12;:10;:12::i;:::-;-1:-1:-1;;;;;40390:23:0;:7;40216;40243:6;-1:-1:-1;;;;;40243:6:0;;;;;;40170:87;40390:7;-1:-1:-1;;;;;40390:23:0;;40382:68;;;;-1:-1:-1;;;40382:68:0;;;;;;;:::i;:::-;58633:22:::1;58658;:12;35992:14:::0;;35900:114;58658:22:::1;58633:47;;58691:24;:12;36111:19:::0;;36129:1;36111:19;;;36022:127;58691:24:::1;58726:30;58736:3;58741:14;58726:9;:30::i;63541:89::-:0;40401:12;:10;:12::i;:::-;-1:-1:-1;;;;;40390:23:0;:7;40216;40243:6;-1:-1:-1;;;;;40243:6:0;;;;;;40170:87;40390:7;-1:-1:-1;;;;;40390:23:0;;40382:68;;;;-1:-1:-1;;;40382:68:0;;;;;;;:::i;:::-;63599:16:::1;:23:::0;;-1:-1:-1;;63599:23:0::1;63618:4;63599:23;::::0;;63541:89::o;66020:61::-;40401:12;:10;:12::i;:::-;-1:-1:-1;;;;;40390:23:0;:7;40216;40243:6;-1:-1:-1;;;;;40243:6:0;;;;;;40170:87;40390:7;-1:-1:-1;;;;;40390:23:0;;40382:68;;;;-1:-1:-1;;;40382:68:0;;;;;;;:::i;:::-;66065:8:::1;:6;:8::i;63382:103::-:0;63432:7;63476:1;63459:14;:12;:14::i;44524:104::-;44580:13;44613:7;44606:14;;;;;:::i;46207:155::-;46302:52;46321:12;:10;:12::i;:::-;46335:8;46345;46302:18;:52::i;47330:328::-;47505:41;47524:12;:10;:12::i;:::-;47538:7;47505:18;:41::i;:::-;47497:103;;;;-1:-1:-1;;;47497:103:0;;;;;;;:::i;:::-;47611:39;47625:4;47631:2;47635:7;47644:5;47611:13;:39::i;63829:89::-;40401:12;:10;:12::i;:::-;-1:-1:-1;;;;;40390:23:0;:7;40216;40243:6;-1:-1:-1;;;;;40243:6:0;;;;;;40170:87;40390:7;-1:-1:-1;;;;;40390:23:0;;40382:68;;;;-1:-1:-1;;;40382:68:0;;;;;;;:::i;:::-;63887:16:::1;:23:::0;;-1:-1:-1;;63887:23:0::1;;;::::0;;63829:89::o;65335:147::-;65390:7;40401:12;:10;:12::i;:::-;-1:-1:-1;;;;;40390:23:0;:7;40216;40243:6;-1:-1:-1;;;;;40243:6:0;;;;;;40170:87;40390:7;-1:-1:-1;;;;;40390:23:0;;40382:68;;;;-1:-1:-1;;;40382:68:0;;;;;;;:::i;:::-;-1:-1:-1;65428:21:0::1;40461:1;65335:147:::0;:::o;59126:175::-;59192:13;59249:14;:12;:14::i;:::-;59265:26;59282:8;59265:16;:26::i;:::-;59232:60;;;;;;;;;:::i;:::-;;;;;;;;;;;;;59218:75;;59126:175;;;:::o;63688:92::-;40401:12;:10;:12::i;:::-;-1:-1:-1;;;;;40390:23:0;:7;40216;40243:6;-1:-1:-1;;;;;40243:6:0;;;;;;40170:87;40390:7;-1:-1:-1;;;;;40390:23:0;;40382:68;;;;-1:-1:-1;;;40382:68:0;;;;;;;:::i;:::-;63748:16:::1;:24:::0;;-1:-1:-1;;63748:24:0::1;::::0;;63688:92::o;62977:105::-;63031:13;63064:10;:8;:10::i;59433:445::-;59687:20;;59731:28;;-1:-1:-1;;;59731:28:0;;-1:-1:-1;;;;;9597:32:1;;;59731:28:0;;;9579:51:1;59558:4:0;;59687:20;;;59723:49;;;;59687:20;;59731:21;;9552:18:1;;59731:28:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;59723:49:0;;59719:93;;;59796:4;59789:11;;;;;59719:93;-1:-1:-1;;;;;46554:25:0;;;46530:4;46554:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;59831:39;59824:46;59433:445;-1:-1:-1;;;;59433:445:0:o;41079:201::-;40401:12;:10;:12::i;:::-;-1:-1:-1;;;;;40390:23:0;:7;40216;40243:6;-1:-1:-1;;;;;40243:6:0;;;;;;40170:87;40390:7;-1:-1:-1;;;;;40390:23:0;;40382:68;;;;-1:-1:-1;;;40382:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;41168:22:0;::::1;41160:73;;;::::0;-1:-1:-1;;;41160:73:0;;13475:2:1;41160:73:0::1;::::0;::::1;13457:21:1::0;13514:2;13494:18;;;13487:30;13553:34;13533:18;;;13526:62;-1:-1:-1;;;13604:18:1;;;13597:36;13650:19;;41160:73:0::1;13273:402:1::0;41160:73:0::1;41244:28;41263:8;41244:18;:28::i;63156:119::-:0;63209:7;63253:14;:12;:14::i;:::-;63236;60672:4;63249:1;63236:14;:::i;:::-;:31;;;;;;:::i;61989:481::-;37819:4;37843:7;;;38097:9;38089:38;;;;-1:-1:-1;;;38089:38:0;;;;;;;:::i;:::-;61499:16:::1;::::0;::::1;::::0;::::1;;;61491:75;;;::::0;-1:-1:-1;;;61491:75:0;;23102:2:1;61491:75:0::1;::::0;::::1;23084:21:1::0;23141:2;23121:18;;;23114:30;23180:34;23160:18;;;23153:62;-1:-1:-1;;;23231:18:1;;;23224:45;23286:19;;61491:75:0::1;22900:411:1::0;61491:75:0::1;62154:41:::2;62173:12;:10;:12::i;:::-;62187:7;62154:41;;:18;:41::i;:::-;62146:102;;;::::0;-1:-1:-1;;;62146:102:0;;22685:2:1;62146:102:0::2;::::0;::::2;22667:21:1::0;22724:2;22704:18;;;22697:30;22763:34;22743:18;;;22736:62;-1:-1:-1;;;22814:18:1;;;22807:46;22870:19;;62146:102:0::2;22483:412:1::0;62146:102:0::2;62267:21:::0;62259:80:::2;;;::::0;-1:-1:-1;;;62259:80:0;;21362:2:1;62259:80:0::2;::::0;::::2;21344:21:1::0;21401:2;21381:18;;;21374:30;21440:34;21420:18;;;21413:62;-1:-1:-1;;;21491:18:1;;;21484:45;21546:19;;62259:80:0::2;21160:411:1::0;62259:80:0::2;62350:9;62383:12;:10;:12::i;:::-;62372:32;::::0;;-1:-1:-1;;;;;10760:32:1;;;62372::0::2;::::0;::::2;10742:51:1::0;10841:6;10829:19;;10809:18;;;10802:47;10715:18;;62372:32:0::2;::::0;;-1:-1:-1;;62372:32:0;;::::2;::::0;;;;;;62362:43;;62372:32:::2;62362:43:::0;;::::2;::::0;62416:11:::2;::::0;;;:8:::2;:11:::0;;;;;:21;;;62362:43;-1:-1:-1;62448:14:0::2;;::::0;::::2;:5;:14::i;36022:127::-:0;36111:19;;36129:1;36111:19;;;36022:127::o;34257:650::-;34328:22;34372:10;34394:4;34372:27;34368:508;;;34416:18;34437:8;;34416:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;34476:8:0;34687:17;34681:24;-1:-1:-1;;;;;34655:134:0;;-1:-1:-1;34368:508:0;;-1:-1:-1;34368:508:0;;-1:-1:-1;34853:10:0;34257:650;:::o;60022:161::-;60112:14;60151:24;:22;:24::i;53150:174::-;53225:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;53225:29:0;-1:-1:-1;;;;;53225:29:0;;;;;;;;:24;;53279:23;53225:24;53279:14;:23::i;:::-;-1:-1:-1;;;;;53270:46:0;;;;;;;;;;;53150:174;;:::o;33526:486::-;33704:4;-1:-1:-1;;;;;33729:20:0;;33721:70;;;;-1:-1:-1;;;33721:70:0;;15768:2:1;33721:70:0;;;15750:21:1;15807:2;15787:18;;;15780:30;15846:34;15826:18;;;15819:62;-1:-1:-1;;;15897:18:1;;;15890:35;15942:19;;33721:70:0;15566:401:1;33721:70:0;33845:159;33873:47;33892:27;33912:6;33892:19;:27::i;:::-;33873:18;:47::i;:::-;33845:159;;;;;;;;;;;;11883:25:1;;;;11956:4;11944:17;;11924:18;;;11917:45;11978:18;;;11971:34;;;12021:18;;;12014:34;;;11855:19;;33845:159:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;33822:182:0;:6;-1:-1:-1;;;;;33822:182:0;;33802:202;;33526:486;;;;;;;:::o;5730:98::-;5788:7;5815:5;5819:1;5815;:5;:::i;:::-;5808:12;5730:98;-1:-1:-1;;;5730:98:0:o;64729:541::-;37819:4;37843:7;;;38097:9;38089:38;;;;-1:-1:-1;;;38089:38:0;;;;;;;:::i;:::-;64871:1:::1;64860:8;:12;;;64852:70;;;::::0;-1:-1:-1;;;64852:70:0;;20114:2:1;64852:70:0::1;::::0;::::1;20096:21:1::0;20153:2;20133:18;;;20126:30;20192:34;20172:18;;;20165:62;-1:-1:-1;;;20243:18:1;;;20236:44;20297:19;;64852:70:0::1;19912:410:1::0;64852:70:0::1;65023:1;65012:8;64995:25;;:14;:12;:14::i;:::-;:25;;;;:::i;:::-;:29;;;;:::i;:::-;60672:4;64981:43;;64973:116;;;::::0;-1:-1:-1;;;64973:116:0;;22255:2:1;64973:116:0::1;::::0;::::1;22237:21:1::0;22294:2;22274:18;;;22267:30;22333:34;22313:18;;;22306:62;22404:31;22384:18;;;22377:59;22453:19;;64973:116:0::1;22053:425:1::0;64973:116:0::1;65107:9;65102:161;65126:8;65122:12;;:1;:12;65102:161;;;65156:15;65174:14;:12;:14::i;:::-;65156:32;;65203:11;:9;:11::i;:::-;65229:22;65239:2;65243:7;65229:9;:22::i;:::-;-1:-1:-1::0;65136:3:0;::::1;::::0;::::1;:::i;:::-;;;;65102:161;;49462:348:::0;49555:4;49257:16;;;:7;:16;;;;;;-1:-1:-1;;;;;49257:16:0;49572:73;;;;-1:-1:-1;;;49572:73:0;;15355:2:1;49572:73:0;;;15337:21:1;15394:2;15374:18;;;15367:30;15433:34;15413:18;;;15406:62;-1:-1:-1;;;15484:18:1;;;15477:42;15536:19;;49572:73:0;15153:408:1;49572:73:0;49656:13;49672:23;49687:7;49672:14;:23::i;:::-;49656:39;;49725:5;-1:-1:-1;;;;;49714:16:0;:7;-1:-1:-1;;;;;49714:16:0;;:51;;;;49758:7;-1:-1:-1;;;;;49734:31:0;:20;49746:7;49734:11;:20::i;:::-;-1:-1:-1;;;;;49734:31:0;;49714:51;:87;;;;49769:32;49786:5;49793:7;49769:16;:32::i;52454:578::-;52613:4;-1:-1:-1;;;;;52586:31:0;:23;52601:7;52586:14;:23::i;:::-;-1:-1:-1;;;;;52586:31:0;;52578:85;;;;-1:-1:-1;;;52578:85:0;;18900:2:1;52578:85:0;;;18882:21:1;18939:2;18919:18;;;18912:30;18978:34;18958:18;;;18951:62;-1:-1:-1;;;19029:18:1;;;19022:39;19078:19;;52578:85:0;18698:405:1;52578:85:0;-1:-1:-1;;;;;52682:16:0;;52674:65;;;;-1:-1:-1;;;52674:65:0;;14596:2:1;52674:65:0;;;14578:21:1;14635:2;14615:18;;;14608:30;14674:34;14654:18;;;14647:62;-1:-1:-1;;;14725:18:1;;;14718:34;14769:19;;52674:65:0;14394:400:1;52674:65:0;52856:29;52873:1;52877:7;52856:8;:29::i;:::-;-1:-1:-1;;;;;52898:15:0;;;;;;:9;:15;;;;;:20;;52917:1;;52898:15;:20;;52917:1;;52898:20;:::i;:::-;;;;-1:-1:-1;;;;;;;52929:13:0;;;;;;:9;:13;;;;;:18;;52946:1;;52929:13;:18;;52946:1;;52929:18;:::i;:::-;;;;-1:-1:-1;;52958:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;52958:21:0;-1:-1:-1;;;;;52958:21:0;;;;;;;;;52997:27;;52958:16;;52997:27;;;;;;;52454:578;;;:::o;38831:120::-;37819:4;37843:7;;;38367:41;;;;-1:-1:-1;;;38367:41:0;;12707:2:1;38367:41:0;;;12689:21:1;12746:2;12726:18;;;12719:30;-1:-1:-1;;;12765:18:1;;;12758:50;12825:18;;38367:41:0;12505:344:1;38367:41:0;38900:5:::1;38890:15:::0;;-1:-1:-1;;38890:15:0::1;::::0;;38921:22:::1;38930:12;:10;:12::i;:::-;38921:22;::::0;-1:-1:-1;;;;;9597:32:1;;;9579:51;;9567:2;9552:18;38921:22:0::1;;;;;;;38831:120::o:0;41440:191::-;41514:16;41533:6;;-1:-1:-1;;;;;41550:17:0;;;41533:6;41550:17;;;-1:-1:-1;;;;;;41550:17:0;;;;;41583:40;;41533:6;;;;;;;41550:17;;41533:6;;41583:40;;;41503:128;41440:191;:::o;50152:110::-;50228:26;50238:2;50242:7;50228:26;;;;;;;;;;;;:9;:26::i;38572:118::-;37819:4;37843:7;;;38097:9;38089:38;;;;-1:-1:-1;;;38089:38:0;;;;;;;:::i;:::-;38632:7:::1;:14:::0;;-1:-1:-1;;38632:14:0::1;38642:4;38632:14;::::0;;38662:20:::1;38669:12;:10;:12::i;58009:104::-:0;58056:7;58083:22;:12;35992:14;;35900:114;53466:315;53621:8;-1:-1:-1;;;;;53612:17:0;:5;-1:-1:-1;;;;;53612:17:0;;;53604:55;;;;-1:-1:-1;;;53604:55:0;;15001:2:1;53604:55:0;;;14983:21:1;15040:2;15020:18;;;15013:30;15079:27;15059:18;;;15052:55;15124:18;;53604:55:0;14799:349:1;53604:55:0;-1:-1:-1;;;;;53670:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;53670:46:0;;;;;;;;;;53732:41;;11000::1;;;53732::0;;10973:18:1;53732:41:0;;;;;;;53466:315;;;:::o;48540:::-;48697:28;48707:4;48713:2;48717:7;48697:9;:28::i;:::-;48744:48;48767:4;48773:2;48777:7;48786:5;48744:22;:48::i;:::-;48736:111;;;;-1:-1:-1;;;48736:111:0;;;;;;;:::i;18584:723::-;18640:13;18861:10;18857:53;;-1:-1:-1;;18888:10:0;;;;;;;;;;;;-1:-1:-1;;;18888:10:0;;;;;18584:723::o;18857:53::-;18935:5;18920:12;18976:78;18983:9;;18976:78;;19009:8;;;;:::i;:::-;;-1:-1:-1;19032:10:0;;-1:-1:-1;19040:2:0;19032:10;;:::i;:::-;;;18976:78;;;19064:19;19096:6;19086:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;19086:17:0;;19064:39;;19114:154;19121:10;;19114:154;;19148:11;19158:1;19148:11;;:::i;:::-;;-1:-1:-1;19217:10:0;19225:2;19217:5;:10;:::i;:::-;19204:24;;:2;:24;:::i;:::-;19191:39;;19174:6;19181;19174:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;19174:56:0;;;;;;;;-1:-1:-1;19245:11:0;19254:2;19245:11;;:::i;:::-;;;19114:154;;62863:106;62915:13;62948;62941:20;;;;;:::i;51757:360::-;51817:13;51833:23;51848:7;51833:14;:23::i;:::-;51817:39;;51958:29;51975:1;51979:7;51958:8;:29::i;:::-;-1:-1:-1;;;;;52000:16:0;;;;;;:9;:16;;;;;:21;;52020:1;;52000:16;:21;;52020:1;;52000:21;:::i;:::-;;;;-1:-1:-1;;52039:16:0;;;;:7;:16;;;;;;52032:23;;-1:-1:-1;;;;;;52032:23:0;;;52073:36;52047:7;;52039:16;-1:-1:-1;;;;;52073:36:0;;;;;52039:16;;52073:36;51806:311;51757:360;:::o;32993:410::-;33103:7;31170:100;;;;;;;;;;;;;;;;;31150:127;;;;;;;33257:12;;33292:11;;;;33336:24;;;;;33326:35;;;;;;33176:204;;;;;11465:25:1;;;11521:2;11506:18;;11499:34;;;;-1:-1:-1;;;;;11569:32:1;11564:2;11549:18;;11542:60;11633:2;11618:18;;11611:34;11452:3;11437:19;;11234:417;33176:204:0;;;;;;;;;;;;;33148:247;;;;;;33128:267;;32993:410;;;:::o;2496:258::-;2595:7;2697:20;1935:15;;;1857:101;2697:20;2668:63;;-1:-1:-1;;;2668:63:0;;;9294:27:1;9337:11;;;9330:27;;;;9373:12;;;9366:28;;;9410:12;;2668:63:0;9036:392:1;58121:73:0;58162:24;:12;36111:19;;36129:1;36111:19;;;36022:127;50489:321;50619:18;50625:2;50629:7;50619:5;:18::i;:::-;50670:54;50701:1;50705:2;50709:7;50718:5;50670:22;:54::i;:::-;50648:154;;;;-1:-1:-1;;;50648:154:0;;;;;;;:::i;54346:799::-;54501:4;-1:-1:-1;;;;;54522:13:0;;21605:20;21653:8;54518:620;;54574:2;-1:-1:-1;;;;;54558:36:0;;54595:12;:10;:12::i;:::-;54609:4;54615:7;54624:5;54558:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;54558:72:0;;;;;;;;-1:-1:-1;;54558:72:0;;;;;;;;;;;;:::i;:::-;;;54554:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;54800:13:0;;54796:272;;54843:60;;-1:-1:-1;;;54843:60:0;;;;;;;:::i;54796:272::-;55018:6;55012:13;55003:6;54999:2;54995:15;54988:38;54554:529;-1:-1:-1;;;;;;54681:51:0;-1:-1:-1;;;54681:51:0;;-1:-1:-1;54674:58:0;;54518:620;-1:-1:-1;55122:4:0;54346:799;;;;;;:::o;51146:382::-;-1:-1:-1;;;;;51226:16:0;;51218:61;;;;-1:-1:-1;;;51218:61:0;;17765:2:1;51218:61:0;;;17747:21:1;;;17784:18;;;17777:30;17843:34;17823:18;;;17816:62;17895:18;;51218:61:0;17563:356:1;51218:61:0;49233:4;49257:16;;;:7;:16;;;;;;-1:-1:-1;;;;;49257:16:0;:30;51290:58;;;;-1:-1:-1;;;51290:58:0;;14239:2:1;51290:58:0;;;14221:21:1;14278:2;14258:18;;;14251:30;14317;14297:18;;;14290:58;14365:18;;51290:58:0;14037:352:1;51290:58:0;-1:-1:-1;;;;;51419:13:0;;;;;;:9;:13;;;;;:18;;51436:1;;51419:13;:18;;51436:1;;51419:18;:::i;:::-;;;;-1:-1:-1;;51448:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;51448:21:0;-1:-1:-1;;;;;51448:21:0;;;;;;;;51487:33;;51448:16;;;51487:33;;51448:16;;51487:33;51146:382;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:631:1;78:5;108:18;149:2;141:6;138:14;135:40;;;155:18;;:::i;:::-;230:2;224:9;198:2;284:15;;-1:-1:-1;;280:24:1;;;306:2;276:33;272:42;260:55;;;330:18;;;350:22;;;327:46;324:72;;;376:18;;:::i;:::-;416:10;412:2;405:22;445:6;436:15;;475:6;467;460:22;515:3;506:6;501:3;497:16;494:25;491:45;;;532:1;529;522:12;491:45;582:6;577:3;570:4;562:6;558:17;545:44;637:1;630:4;621:6;613;609:19;605:30;598:41;;;;14:631;;;;;:::o;650:220::-;692:5;745:3;738:4;730:6;726:17;722:27;712:55;;763:1;760;753:12;712:55;785:79;860:3;851:6;838:20;831:4;823:6;819:17;785:79;:::i;875:159::-;942:20;;1002:6;991:18;;981:29;;971:57;;1024:1;1021;1014:12;971:57;875:159;;;:::o;1039:156::-;1105:20;;1165:4;1154:16;;1144:27;;1134:55;;1185:1;1182;1175:12;1200:247;1259:6;1312:2;1300:9;1291:7;1287:23;1283:32;1280:52;;;1328:1;1325;1318:12;1280:52;1367:9;1354:23;1386:31;1411:5;1386:31;:::i;1452:388::-;1520:6;1528;1581:2;1569:9;1560:7;1556:23;1552:32;1549:52;;;1597:1;1594;1587:12;1549:52;1636:9;1623:23;1655:31;1680:5;1655:31;:::i;:::-;1705:5;-1:-1:-1;1762:2:1;1747:18;;1734:32;1775:33;1734:32;1775:33;:::i;:::-;1827:7;1817:17;;;1452:388;;;;;:::o;1845:456::-;1922:6;1930;1938;1991:2;1979:9;1970:7;1966:23;1962:32;1959:52;;;2007:1;2004;1997:12;1959:52;2046:9;2033:23;2065:31;2090:5;2065:31;:::i;:::-;2115:5;-1:-1:-1;2172:2:1;2157:18;;2144:32;2185:33;2144:32;2185:33;:::i;:::-;1845:456;;2237:7;;-1:-1:-1;;;2291:2:1;2276:18;;;;2263:32;;1845:456::o;2306:665::-;2401:6;2409;2417;2425;2478:3;2466:9;2457:7;2453:23;2449:33;2446:53;;;2495:1;2492;2485:12;2446:53;2534:9;2521:23;2553:31;2578:5;2553:31;:::i;:::-;2603:5;-1:-1:-1;2660:2:1;2645:18;;2632:32;2673:33;2632:32;2673:33;:::i;:::-;2725:7;-1:-1:-1;2779:2:1;2764:18;;2751:32;;-1:-1:-1;2834:2:1;2819:18;;2806:32;2861:18;2850:30;;2847:50;;;2893:1;2890;2883:12;2847:50;2916:49;2957:7;2948:6;2937:9;2933:22;2916:49;:::i;:::-;2906:59;;;2306:665;;;;;;;:::o;2976:416::-;3041:6;3049;3102:2;3090:9;3081:7;3077:23;3073:32;3070:52;;;3118:1;3115;3108:12;3070:52;3157:9;3144:23;3176:31;3201:5;3176:31;:::i;:::-;3226:5;-1:-1:-1;3283:2:1;3268:18;;3255:32;3325:15;;3318:23;3306:36;;3296:64;;3356:1;3353;3346:12;3397:663;3499:6;3507;3515;3523;3531;3584:3;3572:9;3563:7;3559:23;3555:33;3552:53;;;3601:1;3598;3591:12;3552:53;3640:9;3627:23;3659:31;3684:5;3659:31;:::i;:::-;3709:5;-1:-1:-1;3765:2:1;3750:18;;3737:32;3792:18;3781:30;;3778:50;;;3824:1;3821;3814:12;3778:50;3847:49;3888:7;3879:6;3868:9;3864:22;3847:49;:::i;:::-;3837:59;;;3943:2;3932:9;3928:18;3915:32;3905:42;;3994:2;3983:9;3979:18;3966:32;3956:42;;4017:37;4049:3;4038:9;4034:19;4017:37;:::i;:::-;4007:47;;3397:663;;;;;;;;:::o;4065:319::-;4132:6;4140;4193:2;4181:9;4172:7;4168:23;4164:32;4161:52;;;4209:1;4206;4199:12;4161:52;4248:9;4235:23;4267:31;4292:5;4267:31;:::i;:::-;4317:5;-1:-1:-1;4341:37:1;4374:2;4359:18;;4341:37;:::i;:::-;4331:47;;4065:319;;;;;:::o;4389:315::-;4457:6;4465;4518:2;4506:9;4497:7;4493:23;4489:32;4486:52;;;4534:1;4531;4524:12;4486:52;4573:9;4560:23;4592:31;4617:5;4592:31;:::i;:::-;4642:5;4694:2;4679:18;;;;4666:32;;-1:-1:-1;;;4389:315:1:o;4709:317::-;4775:6;4783;4836:2;4824:9;4815:7;4811:23;4807:32;4804:52;;;4852:1;4849;4842:12;4804:52;4891:9;4878:23;4910:31;4935:5;4910:31;:::i;:::-;4960:5;-1:-1:-1;4984:36:1;5016:2;5001:18;;4984:36;:::i;5031:691::-;5124:6;5132;5140;5193:2;5181:9;5172:7;5168:23;5164:32;5161:52;;;5209:1;5206;5199:12;5161:52;5249:9;5236:23;5278:18;5319:2;5311:6;5308:14;5305:34;;;5335:1;5332;5325:12;5305:34;5373:6;5362:9;5358:22;5348:32;;5418:7;5411:4;5407:2;5403:13;5399:27;5389:55;;5440:1;5437;5430:12;5389:55;5480:2;5467:16;5506:2;5498:6;5495:14;5492:34;;;5522:1;5519;5512:12;5492:34;5577:7;5570:4;5560:6;5557:1;5553:14;5549:2;5545:23;5541:34;5538:47;5535:67;;;5598:1;5595;5588:12;5535:67;5629:4;5621:13;;;;-1:-1:-1;5653:6:1;-1:-1:-1;5678:38:1;;5695:20;;;-1:-1:-1;5678:38:1;:::i;:::-;5668:48;;5031:691;;;;;:::o;5727:245::-;5785:6;5838:2;5826:9;5817:7;5813:23;5809:32;5806:52;;;5854:1;5851;5844:12;5806:52;5893:9;5880:23;5912:30;5936:5;5912:30;:::i;5977:249::-;6046:6;6099:2;6087:9;6078:7;6074:23;6070:32;6067:52;;;6115:1;6112;6105:12;6067:52;6147:9;6141:16;6166:30;6190:5;6166:30;:::i;6231:280::-;6330:6;6383:2;6371:9;6362:7;6358:23;6354:32;6351:52;;;6399:1;6396;6389:12;6351:52;6431:9;6425:16;6450:31;6475:5;6450:31;:::i;6516:450::-;6585:6;6638:2;6626:9;6617:7;6613:23;6609:32;6606:52;;;6654:1;6651;6644:12;6606:52;6694:9;6681:23;6727:18;6719:6;6716:30;6713:50;;;6759:1;6756;6749:12;6713:50;6782:22;;6835:4;6827:13;;6823:27;-1:-1:-1;6813:55:1;;6864:1;6861;6854:12;6813:55;6887:73;6952:7;6947:2;6934:16;6929:2;6925;6921:11;6887:73;:::i;6971:252::-;7038:6;7046;7099:2;7087:9;7078:7;7074:23;7070:32;7067:52;;;7115:1;7112;7105:12;7067:52;7138:28;7156:9;7138:28;:::i;7228:180::-;7287:6;7340:2;7328:9;7319:7;7315:23;7311:32;7308:52;;;7356:1;7353;7346:12;7308:52;-1:-1:-1;7379:23:1;;7228:180;-1:-1:-1;7228:180:1:o;7413:182::-;7470:6;7523:2;7511:9;7502:7;7498:23;7494:32;7491:52;;;7539:1;7536;7529:12;7491:52;7562:27;7579:9;7562:27;:::i;7600:257::-;7641:3;7679:5;7673:12;7706:6;7701:3;7694:19;7722:63;7778:6;7771:4;7766:3;7762:14;7755:4;7748:5;7744:16;7722:63;:::i;:::-;7839:2;7818:15;-1:-1:-1;;7814:29:1;7805:39;;;;7846:4;7801:50;;7600:257;-1:-1:-1;;7600:257:1:o;7862:274::-;7991:3;8029:6;8023:13;8045:53;8091:6;8086:3;8079:4;8071:6;8067:17;8045:53;:::i;:::-;8114:16;;;;;7862:274;-1:-1:-1;;7862:274:1:o;8141:415::-;8298:3;8336:6;8330:13;8352:53;8398:6;8393:3;8386:4;8378:6;8374:17;8352:53;:::i;:::-;8474:2;8470:15;;;;-1:-1:-1;;8466:53:1;8427:16;;;;8452:68;;;8547:2;8536:14;;8141:415;-1:-1:-1;;8141:415:1:o;8561:470::-;8740:3;8778:6;8772:13;8794:53;8840:6;8835:3;8828:4;8820:6;8816:17;8794:53;:::i;:::-;8910:13;;8869:16;;;;8932:57;8910:13;8869:16;8966:4;8954:17;;8932:57;:::i;:::-;9005:20;;8561:470;-1:-1:-1;;;;8561:470:1:o;9641:431::-;-1:-1:-1;;;;;9898:15:1;;;9880:34;;9950:15;;9945:2;9930:18;;9923:43;10002:2;9997;9982:18;;9975:30;;;9823:4;;10022:44;;10047:18;;10039:6;10022:44;:::i;:::-;10014:52;9641:431;-1:-1:-1;;;;;9641:431:1:o;10077:488::-;-1:-1:-1;;;;;10346:15:1;;;10328:34;;10398:15;;10393:2;10378:18;;10371:43;10445:2;10430:18;;10423:34;;;10493:3;10488:2;10473:18;;10466:31;;;10271:4;;10514:45;;10539:19;;10531:6;10514:45;:::i;:::-;10506:53;10077:488;-1:-1:-1;;;;;;10077:488:1:o;12059:217::-;12206:2;12195:9;12188:21;12169:4;12226:44;12266:2;12255:9;12251:18;12243:6;12226:44;:::i;12854:414::-;13056:2;13038:21;;;13095:2;13075:18;;;13068:30;13134:34;13129:2;13114:18;;13107:62;-1:-1:-1;;;13200:2:1;13185:18;;13178:48;13258:3;13243:19;;12854:414::o;15972:340::-;16174:2;16156:21;;;16213:2;16193:18;;;16186:30;-1:-1:-1;;;16247:2:1;16232:18;;16225:46;16303:2;16288:18;;15972:340::o;18337:356::-;18539:2;18521:21;;;18558:18;;;18551:30;18617:34;18612:2;18597:18;;18590:62;18684:2;18669:18;;18337:356::o;20742:413::-;20944:2;20926:21;;;20983:2;20963:18;;;20956:30;21022:34;21017:2;21002:18;;20995:62;-1:-1:-1;;;21088:2:1;21073:18;;21066:47;21145:3;21130:19;;20742:413::o;23880:224::-;23919:3;23947:6;23980:2;23977:1;23973:10;24010:2;24007:1;24003:10;24041:3;24037:2;24033:12;24028:3;24025:21;24022:47;;;24049:18;;:::i;24109:128::-;24149:3;24180:1;24176:6;24173:1;24170:13;24167:39;;;24186:18;;:::i;:::-;-1:-1:-1;24222:9:1;;24109:128::o;24242:120::-;24282:1;24308;24298:35;;24313:18;;:::i;:::-;-1:-1:-1;24347:9:1;;24242:120::o;24367:125::-;24407:4;24435:1;24432;24429:8;24426:34;;;24440:18;;:::i;:::-;-1:-1:-1;24477:9:1;;24367:125::o;24497:258::-;24569:1;24579:113;24593:6;24590:1;24587:13;24579:113;;;24669:11;;;24663:18;24650:11;;;24643:39;24615:2;24608:10;24579:113;;;24710:6;24707:1;24704:13;24701:48;;;-1:-1:-1;;24745:1:1;24727:16;;24720:27;24497:258::o;24760:380::-;24839:1;24835:12;;;;24882;;;24903:61;;24957:4;24949:6;24945:17;24935:27;;24903:61;25010:2;25002:6;24999:14;24979:18;24976:38;24973:161;;;25056:10;25051:3;25047:20;25044:1;25037:31;25091:4;25088:1;25081:15;25119:4;25116:1;25109:15;24973:161;;24760:380;;;:::o;25145:135::-;25184:3;-1:-1:-1;;25205:17:1;;25202:43;;;25225:18;;:::i;:::-;-1:-1:-1;25272:1:1;25261:13;;25145:135::o;25285:112::-;25317:1;25343;25333:35;;25348:18;;:::i;:::-;-1:-1:-1;25382:9:1;;25285:112::o;25402:127::-;25463:10;25458:3;25454:20;25451:1;25444:31;25494:4;25491:1;25484:15;25518:4;25515:1;25508:15;25534:127;25595:10;25590:3;25586:20;25583:1;25576:31;25626:4;25623:1;25616:15;25650:4;25647:1;25640:15;25666:127;25727:10;25722:3;25718:20;25715:1;25708:31;25758:4;25755:1;25748:15;25782:4;25779:1;25772:15;25798:127;25859:10;25854:3;25850:20;25847:1;25840:31;25890:4;25887:1;25880:15;25914:4;25911:1;25904:15;25930:131;-1:-1:-1;;;;;26005:31:1;;25995:42;;25985:70;;26051:1;26048;26041:12;26066:131;-1:-1:-1;;;;;;26140:32:1;;26130:43;;26120:71;;26187:1;26184;26177:12

Swarm Source

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