ETH Price: $2,466.69 (-7.95%)

Token

GODS (GODS)
 

Overview

Max Total Supply

9 GODS

Holders

9

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Filtered by Token Holder
0x84a.eth
Balance
1 GODS
0x84AB05F09B5ad3a1de6941FBf29BdF77CC7E2100
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:
Gods

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2021-09-05
*/

/**
 *Submitted for verification at Etherscan.io on 2021-08-27
 */

// SPDX-License-Identifier: MIT

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);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/**
 * @dev Contract module that helps prevent reentrant calls to a function.
 *
 * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier
 * available, which can be applied to functions to make sure there are no nested
 * (reentrant) calls to them.
 *
 * Note that because there is a single `nonReentrant` guard, functions marked as
 * `nonReentrant` may not call one another. This can be worked around by making
 * those functions `private`, and then adding `external` `nonReentrant` entry
 * points to them.
 *
 * TIP: If you would like to learn more about reentrancy and alternative ways
 * to protect against it, check out our blog post
 * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].
 */
abstract contract ReentrancyGuard {
    // Booleans are more expensive than uint256 or any type that takes up a full
    // word because each write operation emits an extra SLOAD to first read the
    // slot's contents, replace the bits taken up by the boolean, and then write
    // back. This is the compiler's defense against contract upgrades and
    // pointer aliasing, and it cannot be disabled.

    // The values being non-zero value makes deployment a bit more expensive,
    // but in exchange the refund on every call to nonReentrant will be lower in
    // amount. Since refunds are capped to a percentage of the total
    // transaction's gas, it is best to keep them low in cases like this one, to
    // increase the likelihood of the full refund coming into effect.
    uint256 private constant _NOT_ENTERED = 1;
    uint256 private constant _ENTERED = 2;

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

    /**
     * @dev Prevents a contract from calling itself, directly or indirectly.
     * Calling a `nonReentrant` function from another `nonReentrant`
     * function is not supported. It is possible to prevent this from happening
     * by making the `nonReentrant` function external, and make it call a
     * `private` function that does the actual work.
     */
    modifier nonReentrant() {
        // On the first call to nonReentrant, _notEntered will be true
        require(_status != _ENTERED, "ReentrancyGuard: reentrant call");

        // Any calls to nonReentrant after this point will fail
        _status = _ENTERED;

        _;

        // By storing the original value once again, a refund is triggered (see
        // https://eips.ethereum.org/EIPS/eip-2200)
        _status = _NOT_ENTERED;
    }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    function _verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) private pure returns (bytes memory) {
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly

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

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

    /**
     * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address.
     * The call is not executed if the target address is not a contract.
     *
     * @param from address representing the previous owner of the given token ID
     * @param to target address that will receive the tokens
     * @param tokenId uint256 ID of the token to be transferred
     * @param _data bytes optional data to send along with the call
     * @return bool whether the call correctly returned the expected magic value
     */
    function _checkOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) private returns (bool) {
        if (to.isContract()) {
            try
                IERC721Receiver(to).onERC721Received(
                    _msgSender(),
                    from,
                    tokenId,
                    _data
                )
            returns (bytes4 retval) {
                return retval == IERC721Receiver(to).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 {}
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

contract Gods is ERC721Enumerable, ReentrancyGuard, Ownable {
    ERC721 lootContract = ERC721(0xFF9C1b15B16263C61d017ee9F65C50e4AE0113D7);
    ERC721 xLootContract = ERC721(0x8bf2f876E2dCD2CAe9C3d272f325776c82DA366d);
    ERC721 pLootContract = ERC721(0x03Ea00B0619e19759eE7ba33E8EB8E914fbF52Ea);
    ERC721 bLootContract = ERC721(0x4F8730E0b32B04beaa5757e5aea3aeF970E5B613);
    
    mapping(address => uint256) public _claimTimes;

    uint256 public maxSupply = 12000;
    uint256 public currentSupply = 0;

    uint256 public publicPrice = 30000000000000000; // 0.03 ETH

    string[] private types = [
        "Kogdrolath",
        "Saggon",
        "Dogthekuz",
        "Brallmozuud",
        "Thur'aran",
        "Qharmos, God Of Fall",
        "Yreus, God Of The Land",
        "Edur, God Of Battle",
        "Oher, God Of The Moon",
        "Duthos, God Of Law",
        "Hypericum",
        "Aubretia",
        "Antirrhinum",
        "Amaranthus",
        "Tithonia",
        "Yalvina (Yellow-Green)",
        "Lavandula",
        "Jaborosa",
        "Statice",
        "Lunaria",
        "Mirno",
        "Zarna",
        "Dheombas",
        "Shaetha",
        "Zhoermof",
        "Groednas",
        "Yrida",
        "Staenofeth",
        "Esthesi",
        "Stytredi",
        "Thiteas",
        "Hephethon",
        "Caselaus",
        "Basyx",
        "Thanios",
        "Herasos",
        "Thelamamas",
        "Oediphippus",
        "Ancyptus",
        "Brasalus",
        "Forseti",
        "Od",
        "Vili",
        "Mani",
        "Hanir",
        "Narvi",
        "Mimir",
        "Gangnrad",
        "Fafnir",
        "Hod",
        "Arkoriku",
        "Abreare",
        "Wiresil",
        "Kokia",
        "Gyameah",
        "Gyamisra",
        "Yebei",
        "Agyarim",
        "Donkoon",
        "Dufaomansah",
        "Zazlu",
        "Uggi",
        "Hemdos",
        "Emyuan",
        "Gonyis",
        "Oonloldum",
        "Yohnongeh",
        "Nunshiufid",
        "Gannindro",
        "Yoabbengoh",
        "Meqosh The Gracious",
        "Nazaif The Sane",
        "Zutid The Royal",
        "Genim The Courageous",
        "Nenqu The Spectacular",
        "Nekid The Gracious",
        "Kidurhosh The Spectacular",
        "Sashabuaz The Joyful",
        "Missootoz The Enlightened",
        "Rozishaf The Fortunate",
        "Hebar",
        "Dashmo",
        "Kusvad",
        "Nahus",
        "Shavityant",
        "Cejartet",
        "Ulmathye",
        "Beshmuptus",
        "Kebhuptihas",
        "Akadarmus",
        "Agara",
        "Gedis",
        "Eyva",
        "Skovif",
        "Bryleif",
        "Valdr",
        "Hjodne",
        "Orja",
        "Thrist",
        "Rongrior",
        "Chine, The Gifted",
        "Kathig, The Young One",
        "Mimbiad, The Gentle",
        "Mandaynth, Destroyer Of Life",
        "Qezzun, Lord Of Ice",
        "Reghe, Braveheart",
        "Argiss, The Dark",
        "Qyphath, The Life Giver",
        "Batu, The Dead",
        "Chyrse, The Tiran",
        "Devoss, The Gifted",
        "Sarmut, The Powerful",
        "Chighintyss, The Calm",
        "Edaerris, The White One",
        "Pissoles, The Mysterious",
        "Nyrtrix, Goddess Of The Sea",
        "Dreuna, Goddess Of Governance",
        "Kyvneas, Goddess Of Oracles",
        "Grahena, Goddess Of Miracles",
        "Ehnera, Goddess Of Riddles",
        "Kinja, Goddess Of The Moon",
        "Imotl, Goddess Of Oracles",
        "Myvuna, Goddess Of Sleep",
        "Qandea, Goddess Of Poetry",
        "Arena, Goddess Of Chivalry",
        "Sareash",
        "Jehudiel",
        "Rachmiel",
        "Morael",
        "Sandolphon",
        "Silrgua",
        "Kelci",
        "Pabilrgaups",
        "Tagalpuen",
        "Yolreirn",
        "Treiberus",
        "Crudusa",
        "Shaotorog",
        "Kuabihc",
        "Jeamall",
        "Sunbeam",
        "Sunny",
        "Glaze",
        "Soar",
        "Beacon",
        "Ember",
        "Deja",
        "Sunbeam",
        "Surge",
        "Fume",
        "Daocnox",
        "Z'ignn'thirh",
        "Bhejhass",
        "Traarr'tho",
        "Kthyzhu",
        "Yicxiozt'kra",
        "Ithiodho",
        "Egadh'kre",
        "Ov'aolthod",
        "Izuld'itra",
        "Lokapala",
        "Jambhala",
        "Yogambara",
        "Tenma goddess",
        "Pehar Gyalpo",
        "Kumbhanda",
        "Yamari",
        "Mahoraga",
        "Naga",
        "Kinnara",
        "Morrigan",
        "Ler",
        "Bran",
        "Parthalan",
        "Deirdre",
        "Labraid",
        "Danu",
        "Aodhan",
        "Rosmerta",
        "Dagda",
        "Ao Jun",
        "Baoxi",
        "Taishan Queen",
        "TaiYi",
        "YangJian",
        "ZhangTianShi",
        "Emperor Shun",
        "Jade Emperor",
        "TaiShang LaoJun",
        "GuanYin",
        "Nephthys",
        "Apep",
        "Hathor",
        "Heka",
        "Fetket",
        "Unut",
        "Kauket",
        "Ihy",
        "Re",
        "Amun",
        "Tsuki Yumi",
        "Takemikadzuchi",
        "Takami Musubi",
        "Susanowa",
        "Marisha Ten",
        "Naka Yama Tsui Mi",
        "Fudo",
        "Shichi Fujukin",
        "Ika Zuchi No Kami",
        "Yamato",
        "Funzi",
        "Mamba Muntu",
        "Mbantilanda",
        "God of river Nzadi",
        "Na Ngutu",
        "Simbi dia Maza",
        "Nzumbi",
        "Nzambi a Mpungu",
        "Mpulu Bunzi",
        "Lusiemo",
        "Haya",
        "Ereshkigal",
        "Nanaya",
        "Zababa",
        "Inanna Ishtar",
        "Utu Shamash",
        "Nabu",
        "Marduk",
        "An",
        "Amashilama",
        "Azaka Medeh",
        "Boli Shah",
        "Guede L'Orage",
        "Rada lwa",
        "Papa Legba",
        "Diejuste",
        "Captain Debas",
        "Bossou Ashadeh",
        "Guede-Double",
        "Ti Jean Petro"
    ];

    string[] private personalities = [
        "Moral",
        "Efficient",
        "Dedicated",
        "Sociable",
        "Contemplative",
        "Sweet",
        "Careful",
        "Warm-Hearted",
        "Loyal",
        "Charming",
        "Charismatic",
        "Reflective",
        "Benevolent",
        "Confident",
        "Relaxed",
        "Flexible",
        "Stable",
        "Insightful",
        "Principled",
        "Wild Card",
        "Overzealous",
        "Naive",
        "Hero Syndrome",
        "Sore Winner",
        "Manipulative",
        "Selfish",
        "Ignorant",
        "Slimeball",
        "Crude",
        "Elegant",
        "Skillful",
        "Lovable",
        "Orderly",
        "Helpful",
        "Independent",
        "Sympathetic",
        "Cooperative",
        "Predictable",
        "Timid",
        "Nosey",
        "Bad Listener",
        "Disorderly",
        "Obsessive",
        "Paranoid",
        "Narrow-Minded",
        "Peevish",
        "Blunt",
        "Single-Minded",
        "Spineless",
        "Cheap",
        "Invisible",
        "Gluttonous",
        "Weak",
        "Responsive",
        "Self-Critical",
        "Adventurous",
        "Responsible",
        "Capable",
        "Innovative",
        "Friendly",
        "Dependable",
        "Perceptive",
        "Cultured",
        "Organized",
        "Trustworthy",
        "Faithful",
        "Humble",
        "Logical",
        "Spiteful",
        "Spoiled",
        "Dubious",
        "Extremist",
        "Addictive Personality",
        "Messy",
        "Senile",
        "Overly Picky",
        "Power Drunk",
        "Vindictive",
        "Active",
        "Observant",
        "Critical Thinker",
        "Intelligent",
        "Tolerant",
        "Alert",
        "Dynamic",
        "Imaginative",
        "Careless",
        "Reliable",
        "Fair",
        "Kind",
        "Leaderly",
        "Playful",
        "Dignified",
        "Calm",
        "Directed",
        "Daring",
        "Attentive",
        "Disciplined",
        "Focused",
        "Ambitious",
        "Incorruptible",
        "Self-Sufficient",
        "Caring",
        "Clean",
        "Anticipative",
        "Decent",
        "Wise",
        "Gracious",
        "Understanding",
        "Courageous",
        "Appreciative",
        "Heroic",
        "Overambitious",
        "Devious",
        "Idiotic",
        "Sore Loser",
        "Shortsighted",
        "Coward",
        "Psychopathic",
        "Rebellious",
        "Judgmental",
        "Corruptible",
        "Brutally Honest",
        "Hypocrite",
        "Audacious",
        "Bigot",
        "Respectful",
        "Realistic",
        "Clever",
        "Educated",
        "Neat",
        "Worldly",
        "Erratic",
        "Abusive",
        "Conceited",
        "Greedy",
        "Without Direction",
        "Envious",
        "Resentful",
        "Overly Shy",
        "Entitled",
        "Prankster",
        "Reliant",
        "Adaptable",
        "Decisive",
        "Discreet",
        "Good Listener",
        "Balanced",
        "Deceitful",
        "Anxious",
        "Bigmouth",
        "Untrustworthy",
        "Overly Competitive",
        "Prejudiced",
        "Remorseless",
        "Fraudulent",
        "Sly",
        "Shallow",
        "Blindly Obedient",
        "Immature",
        "Athletic",
        "Curious",
        "Interesting",
        "Sober",
        "Enthusiastic",
        "Self-Reliant",
        "Agreeable",
        "Peaceful",
        "Attention Seeker",
        "Shut-In",
        "Authoritarian",
        "Hedonistic",
        "Childish",
        "Meddlesome",
        "Petty",
        "Intolerant",
        "Disloyal",
        "Attention Deficit",
        "Slacker",
        "Control Freak",
        "Antisocial",
        "Procrastinator",
        "Dull",
        "Lazy",
        "Demanding",
        "Weak-Willed",
        "Indifferent",
        "Vain",
        "Neat Freak",
        "Disorganized",
        "Dishonest",
        "Sarcastic",
        "Insensitive",
        "Unlucky",
        "Overconfident",
        "Forgetful",
        "Stupid",
        "Asocial",
        "Superstitious",
        "Dumb"
    ];

    string[] private attitudes = ["lawful", "neutral", "chaotic"];

    string[] private shrines = [
        "Amusement Parks",
        "Antique Store",
        "Arcade",
        "Asylum",
        "Bakery",
        "Bank",
        "Battle Arenas",
        "Beach",
        "Blacksmith",
        "Bookstore",
        "Brewery",
        "Bridge",
        "Cafe",
        "Camp",
        "Casino",
        "Castle",
        "Cave",
        "Circus",
        "City",
        "City District",
        "Civilization",
        "Cliff",
        "Company",
        "Continent",
        "Coral Reef",
        "Country",
        "Craft Store",
        "Dating Agency",
        "Day Care",
        "Desert",
        "Dimension",
        "Dungeon",
        "Farm",
        "Film Studio",
        "Fire Land",
        "Forest",
        "Galaxy",
        "Game Studio",
        "Glacier",
        "Grassland",
        "Graveyard",
        "Harbor",
        "Headquarters",
        "Hideout",
        "Hospital",
        "Hotel",
        "Island",
        "Isthmus",
        "Jungle",
        "Kingdom",
        "Laboratory",
        "Lake",
        "Library",
        "Lighthouse",
        "Mage Tower",
        "Magic School",
        "Magic Shop",
        "Mansion",
        "Mill",
        "Mining Company",
        "Mountain",
        "Museum",
        "Nebula",
        "Nightclub",
        "Norse World",
        "Oasis",
        "Ocean",
        "Orphanage",
        "Outpost",
        "Park",
        "Pet Business",
        "Pirate Cove",
        "Pizzeria",
        "Planet",
        "Plantation",
        "Plaza",
        "Prison",
        "Quasar",
        "Realm",
        "Restaurant",
        "River",
        "Road",
        "Ruin",
        "School",
        "Shop",
        "Sky Island",
        "Snowland",
        "Spa",
        "Space Station",
        "Stadium",
        "Star",
        "Steampunk House",
        "Street",
        "Swamp",
        "Tattoo Parlors",
        "Tavern",
        "Temple",
        "Theater",
        "Tower",
        "Void"
    ];

    string[] private commandments = [
        "You shall not censor opposing opinions.",
        "You shall not be lazy.",
        "You shall give to charity what you can spare.",
        "You shall seek your place as a child of god.",
        "You shall not spread lies or rumors.",
        "You shall not act without care.",
        "You shall strife for a life in harmony with all.",
        "You shall not create idols.",
        "You shall not boast about your achievements.",
        "You shall speak falsehoods.",
        "You shall not desert those who count on you.",
        "You shall care for your family.",
        "You shall not stray from the true path.",
        "You shall be tolerant and accepting.",
        "You shall stimulate creativity and curiosity.",
        "You shall reward the laziness of others.",
        "You shall persevere and be rewarded.",
        "You shall live fully in the here and now.",
        "You shall love others like you love god.",
        "You shall be considerate of others well being.",
        "You shall abide by the law.",
        "You shall honor the faith.",
        "You shall live life humbly.",
        "You shall offer your service to those in need.",
        "You shall not cheat.",
        "You shall take responsibility for your actions.",
        "You shall believe in no other gods.",
        "You shall pray to me on the seventh day.",
        "You shall take responsibility for your mistakes.",
        "You shall not make sacrifices.",
        "You shall help your neighbor.",
        "You shall not take any life.",
        "You shall treat strangers with kindness.",
        "You shall trust in god above all else.",
        "ou shall do your duty.",
        "You shall not indulge in gluttony.",
        "You shall not forge the word of god.",
        "You shall not desire more than your fair share.",
        "You shall spread my word.",
        "You shall honor your elders.",
        "You shall ask god for forgiveness for your sins.",
        "You shall love your neighbor.",
        "You shall do your duty.",
        "You shall not betray others, yourself or god.",
        "You shall not question god or god's word.",
        "You shall not give into lusts.",
        "You shall not take life for granted.",
        "You shall not unleash your angers onto others.",
        "You shall love your country.",
        "You shall take only that which is given.",
        "You shall not live a life of vanity.",
        "You shall love your children unconditionally.",
        "You shall not act with hatred in your heart.",
        "You shall repay kindness with kindness.",
        "You shall work for a world in balance.",
        "You shall be united or seek unity if there is none.",
        "You shall not use or think of people as property.",
        "You shall not abuse power in any form.",
        "You shall not act in anger.",
        "You shall ask only fair prices for what you produce.",
        "You shall not let fear overtake your judgment.",
        "You shall not incite violence.",
        "You shall not break promises.",
        "You shall honor your parents.",
        "You shall encourage others who follow the path of god.",
        "You shall hold faith.",
        "You shall spread laughter where possible.",
        "You shall care for children orphaned by misfortune.",
        "You shall be considerate of others feelings.",
        "You shall be brave in the face of danger.",
        "You shall not murder.",
        "You shall seek to understand that which you do not.",
        "You shall not act cruel toward any life.",
        "You shall be proud only of others.",
        "You shall not betray your family.",
        "You shall work hard and spend wisely.",
        "You shall not desire other's possessions.",
        "You shall not steal.",
        "You shall uphold order and peace in god's world.",
        "You shall strife for excellence.",
        "You shall detach yourself from dark desires.",
        "You shall follow only the light.",
        "You shall not muddle your mind with any substances.",
        "You shall look after your mind and body.",
        "You shall not cause chaos or mayhem.",
        "You shall offer a meal to hungry strangers.",
        "You shall seek out your place in the world.",
        "You shall be sincere to all.",
        "You shall not take my name in vain.",
        "You shall never harm an animal.",
        "You shall not dwell on the past.",
        "You shall not worship false idols.",
        "You shall be truthful.",
        "You shall show compassion and mercy.",
        "You shall never harm a child.",
        "You shall be content when life is good.",
        "You shall not lust after another.",
        "You shall help those in need.",
        "You shall not give into pride.",
        "You shall prove your worth every day."
    ];

    string[] private enchantments = [
        "Token of Dangers",
        "Chant of Mana Restoration",
        "Oath of Delight",
        "Titanic Mantra of Domination",
        "Enhanced Enchantment of Spells",
        "Immortal Blessing of Binding",
        "Supreme Breath of Stealth",
        "Infusion of Supreme Magic",
        "Favor of Light Slaughter",
        "Pledge of Elite Glee",
        "Secrets of the Night",
        "Pledge of Suffering",
        "Favor of Dusk",
        "Enhanced Mark of Ghosts",
        "Prime Symbol of the Ward",
        "Elite Oath of Distress",
        "Glorious Secrets of Feather Falling",
        "Attunement of Glorious Soulmending",
        "Chant of Mythic Loot",
        "Enchantment of Mythic Determination",
        "Spark of Sight",
        "Mark of the Prince",
        "Enchantment of Delirium",
        "Major Oath of Cataclysms",
        "Strengthened Tribute of Understanding",
        "Supreme Symbol of Creation",
        "Prime Aspect of the Isles",
        "Infusion of Mighty Fire",
        "Charge of Brilliant Soulstealing",
        "Token of Minor Lost Souls",
        "Charge of Potency",
        "Aura of the Cataclysm",
        "Infusion of Striking",
        "Titanic Seal of Conjuring",
        "Light Core of Lifestealing",
        "Advanced Aspect of Frost",
        "Mighty Mantra of Combat",
        "Mark of Impeccable Conjurations",
        "Blessing of Increased Trust",
        "Gift of Renewed Fog",
        "Seal of Hellfire",
        "Symbol of the Princess",
        "Hymn of Soulstealing",
        "Immortal Bond of Dexterity",
        "Bolstered Order of Bravery",
        "Bond of the Lion",
        "Attunement of Lavawalking",
        "Blessing of Mythic Gluttony",
        "Blessing of Superior Adaptability",
        "Seed of Lesser Multistrike",
        "Blessing of Kings",
        "Brand of the Queen",
        "Crux of War",
        "Enhanced Whisper of Magic",
        "Bolstered Curse of the King",
        "Mighty Crux of Anguish",
        "Colossal Spark of Ghostly Essences",
        "Symbol of Light Understanding",
        "Attunement of Immortal Delight",
        "Seed of Supreme Dodging",
        "Charge of Executions",
        "Aura of Dark Magic",
        "Oath of Laughter",
        "Supreme Word of the Void",
        "Mystic Emblem of Assaults",
        "Light Curse of Vengeance",
        "Glorious Aspect of Animalistic Cunning",
        "Mark of Toughened Barriers",
        "Blessing of Titanic Balance",
        "Pledge of Mystic Poison",
        "Pledge of the River",
        "Hymn of Anger",
        "Breath of Guards",
        "Vampiric Aura of Hellfire",
        "Impeccable Blessing of Might",
        "Reinforced Boon of Force",
        "Vicious Curse of the Hunter",
        "Grace of Vampiric Moonlight",
        "Blessing of Fortified Potency",
        "Word of Bolstered Attack",
        "Oath of Treasures",
        "Attunement of Spells",
        "Crest of Diplomacies",
        "Superior Order of Hostility",
        "Mystic Order of Adventure",
        "Impeccable Core of the Scourge",
        "Elite Breath of Pain",
        "Infusion of Greater Relief",
        "Vow of Colossal Loss",
        "Seal of Immortal Subtlety",
        "Attunement of Disgust",
        "Blessing of Attack",
        "Pledge of Greed",
        "Strengthened Miracle of the Armageddon",
        "Enhanced Order of Renewal",
        "Bond of Focus",
        "Mystic Chant of Suffering",
        "Grace of Glorious Dreams",
        "Whisper of Vicious Trickery",
        "Infusion of Increased Conjurations",
        "Seed of Worship",
        "Grace of Dreams",
        "Crest of Delirium",
        "Light Pledge of Ice",
        "Brilliant Mark of Demons",
        "Reinforced Charge of Clarity",
        "Impeccable Seed of Delight",
        "Favor of Glorious Misfortune",
        "Miracle of Bolstered Sight",
        "Infusion of Exceptional Striking",
        "Blessing of Pessimism",
        "Grace of Preservation",
        "Pledge of Catastrophes",
        "Word of Conjurations",
        "Mystic Gift of Awareness",
        "Toughened Order of Paradise",
        "Colossal Enchantment of Hot Tempers",
        "Brand of Grand Combat",
        "Chant of Advanced Spells",
        "Pledge of Strengthened Misery",
        "Word of the Day",
        "Favor of Adventure",
        "Oath of Twilight",
        "Superior Word of Cataclysms",
        "Immortal Breath of Witchcraft",
        "Exceptional Pledge of Resilience",
        "Enhanced Tribute of Preservation",
        "Brand of Vampiric Cunning",
        "Token of Reinforced Understanding",
        "Symbol of Minor Smite",
        "Gift of Greed",
        "Mark of the End",
        "Charge of Havoc",
        "Mythic Hymn of Bravery",
        "Immortal Infusion of Anger",
        "Renewed Hymn of Crystal Barriers",
        "Minor Token of Wealth",
        "Gift of Light Hatred",
        "Token of Exceptional Dark Magic",
        "Miracle of Light Defiance",
        "Secrets of Vengeance",
        "Whisper of Conjurations",
        "Secrets of Hell",
        "Major Emblem of Pickpocketing",
        "Colossal Emblem of Dodging",
        "Fortified Seal of Mana",
        "Grand Word of Loot",
        "Seal of Mythic Mist",
        "Whisper of Mortal Nightmares",
        "Tribute of Mortal Hot Tempers",
        "Miracle of Wealth",
        "Chant of Dawn",
        "Aspect of Oblivion",
        "Glorious Oath of Dangers",
        "Impeccable Enchantment of Titanic Bravery",
        "Light Blessing of Silence",
        "Glorious Charge of the Dragonborn",
        "Bond of Mystic Destruction",
        "Curse of Superior Duels",
        "Boon of Light Lost Souls",
        "Oath of Prayers",
        "Whisper of Anger",
        "Infusion of the Volcano",
        "Reinforced Breath of Guards",
        "Grand Blessing of the Eclipse",
        "Mortal Emblem of Happiness",
        "Supreme Hymn of Executions",
        "Word of Exceptional Dangers",
        "Secrets of Mighty Auras",
        "Crux of Elite Health Absorption",
        "Seal of Agility",
        "Whisper of Shadows",
        "Seed of Massacres",
        "Immortal Brand of the Ward",
        "Brilliant Pledge of Sunlight",
        "Immortal Charge of Adventure",
        "Fortified Chant of Gluttony",
        "Blessing of Advanced Summoning",
        "Gift of Mighty Loss",
        "Aura of Light Smite",
        "Miracle of Spirits",
        "Token of the Fox",
        "Mantra of Balance",
        "Renewed Enchantment of the Swamp",
        "Vampiric Grace of Affliction",
        "Impeccable Vow of the Phoenix",
        "Toughened Charge of Regeneration",
        "Favor of Glorious Summoning",
        "Spark of Reinforced Vigor",
        "Favor of Mortal Oblivion",
        "Vow of Precision",
        "Vow of Spirits",
        "Gift of Blast Protection",
        "Vampiric Hymn of Dangers",
        "Fortified Favor of Constitution",
        "Increased Token of Versatility",
        "Potent Tribute of Restoration",
        "Gift of Prime Absorption",
        "Tribute of Bolstered Silence",
        "Whisper of Mystic War"
    ];

    function random(string memory input) internal pure returns (uint256) {
        return uint256(keccak256(abi.encodePacked(input)));
    }

    function getType(uint256 tokenId) public view returns (string memory) {
        return pluck(tokenId, "Type", types);
    }

    function getPersonality(uint256 tokenId)
        public
        view
        returns (string memory)
    {
        return pluck(tokenId, "Personality", personalities);
    }

    function getAttitude(uint256 tokenId) public view returns (string memory) {
        return pluck(tokenId, "Attitude", attitudes);
    }

    function getShrine(uint256 tokenId) public view returns (string memory) {
        return pluck(tokenId, "Shrine", shrines);
    }

    function getCommandment(uint256 tokenId)
        public
        view
        returns (string memory)
    {
        return pluck(tokenId, "Commandment", commandments);
    }

    function getEnchantment(uint256 tokenId)
        public
        view
        returns (string memory)
    {
        return pluck(tokenId, "Enchantment", enchantments);
    }

    function pluck(
        uint256 tokenId,
        string memory keyPrefix,
        string[] memory sourceArray
    ) internal pure returns (string memory) {
        uint256 rand = random(
            string(abi.encodePacked(keyPrefix, toString(tokenId)))
        );
        string memory output = sourceArray[rand % sourceArray.length];
        return output;
    }

    function tokenURI(uint256 tokenId)
        public
        view
        override
        returns (string memory)
    {
        string[13] memory parts;
        parts[
            0
        ] = '<svg xmlns="http://www.w3.org/2000/svg" preserveAspectRatio="xMinYMin meet" viewBox="0 0 350 350"><style>.base { fill: white; font-family: serif; font-size: 14px; }</style><rect width="100%" height="100%" fill="black" /><text x="10" y="20" class="base">';

        parts[1] = getType(tokenId);

        parts[2] = '</text><text x="10" y="40" class="base">';

        parts[3] = getPersonality(tokenId);

        parts[4] = '</text><text x="10" y="60" class="base">';

        parts[5] = getAttitude(tokenId);

        parts[6] = '</text><text x="10" y="80" class="base">';

        parts[7] = getShrine(tokenId);

        parts[8] = '</text><text x="10" y="100" class="base">';

        parts[9] = getCommandment(tokenId);

        parts[10] = '</text><text x="10" y="120" class="base">';

        parts[11] = getEnchantment(tokenId);

        parts[12] = "</text></svg>";

        string memory output = string(
            abi.encodePacked(
                parts[0],
                parts[1],
                parts[2],
                parts[3],
                parts[4],
                parts[5],
                parts[6]
            )
        );
        output = string(
            abi.encodePacked(
                output,
                parts[7],
                parts[8],
                parts[9],
                parts[10],
                parts[11],
                parts[12]
            )
        );

        string memory json = Base64.encode(
            bytes(
                string(
                    abi.encodePacked(
                        '{"name": "Bag #',
                        toString(tokenId),
                        '", "description": "The spirit is imbued in everything. Endowed with faith, spirits are deified as god. Devoid of remembrance, gods are debased as spirits. Adventurers, with sword and magic, spread the faith for the true god and destroy the existence of the false!", "image": "data:image/svg+xml;base64,',
                        Base64.encode(bytes(output)),
                        '"}'
                    )
                )
            )
        );
        output = string(
            abi.encodePacked("data:application/json;base64,", json)
        );

        return output;
    }

    function claimWithLoot(uint256 lootId) public nonReentrant {
        require(
            lootContract.ownerOf(lootId) == msg.sender ||
                xLootContract.ownerOf(lootId) == msg.sender ||
                pLootContract.ownerOf(lootId) == msg.sender ||
                bLootContract.ownerOf(lootId) == msg.sender,
            "This Loot is not owned by the minter"
        );
        require(currentSupply < maxSupply, "All mounts are minted");
        uint256 times = _claimTimes[msg.sender];
        require(times < 1, "invalid claim times");

        _safeMint(msg.sender, currentSupply);
        _claimTimes[msg.sender] = ++times;
        currentSupply += 1;
    }

    function claim() public payable nonReentrant {
        require(publicPrice <= msg.value, "Not enough Ether sent");
        require(currentSupply < maxSupply, "All mounts are minted");

        _safeMint(msg.sender, currentSupply);
        currentSupply += 1;
    }

    function ownerClaim(uint256 tokenId) public nonReentrant onlyOwner {
        require(tokenId > 14000 && tokenId < 14201, "Token ID invalid");
        _safeMint(owner(), tokenId);
    }

    function withdraw() public onlyOwner {
        uint256 balance = address(this).balance;
        payable(owner()).call{value: balance}("");
    }

    function toString(uint256 value) internal pure returns (string memory) {
        // Inspired by OraclizeAPI's implementation - MIT license
        // 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);
    }

    constructor() ERC721("GODS", "GODS") Ownable() {}
}

/// [MIT License]
/// @title Base64
/// @notice Provides a function for encoding some bytes in base64
/// @author Brecht Devos <[email protected]>
library Base64 {
    bytes internal constant TABLE =
        "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/";

    /// @notice Encodes some bytes to the base64 representation
    function encode(bytes memory data) internal pure returns (string memory) {
        uint256 len = data.length;
        if (len == 0) return "";

        // multiply by 4/3 rounded up
        uint256 encodedLen = 4 * ((len + 2) / 3);

        // Add some extra buffer at the end
        bytes memory result = new bytes(encodedLen + 32);

        bytes memory table = TABLE;

        assembly {
            let tablePtr := add(table, 1)
            let resultPtr := add(result, 32)

            for {
                let i := 0
            } lt(i, len) {

            } {
                i := add(i, 3)
                let input := and(mload(add(data, i)), 0xffffff)

                let out := mload(add(tablePtr, and(shr(18, input), 0x3F)))
                out := shl(8, out)
                out := add(
                    out,
                    and(mload(add(tablePtr, and(shr(12, input), 0x3F))), 0xFF)
                )
                out := shl(8, out)
                out := add(
                    out,
                    and(mload(add(tablePtr, and(shr(6, input), 0x3F))), 0xFF)
                )
                out := shl(8, out)
                out := add(
                    out,
                    and(mload(add(tablePtr, and(input, 0x3F))), 0xFF)
                )
                out := shl(224, out)

                mstore(resultPtr, out)

                resultPtr := add(resultPtr, 4)
            }

            switch mod(len, 3)
            case 1 {
                mstore(sub(resultPtr, 2), shl(240, 0x3d3d))
            }
            case 2 {
                mstore(sub(resultPtr, 1), shl(248, 0x3d))
            }

            mstore(result, encodedLen)
        }

        return string(result);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_claimTimes","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"claim","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"lootId","type":"uint256"}],"name":"claimWithLoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"currentSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getAttitude","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getCommandment","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getEnchantment","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getPersonality","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getShrine","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getType","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerClaim","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":"publicPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

608060405273ff9c1b15b16263c61d017ee9f65c50e4ae0113d7600c60006101000a8154816001600160a01b0302191690836001600160a01b03160217905550738bf2f876e2dcd2cae9c3d272f325776c82da366d600d60006101000a8154816001600160a01b0302191690836001600160a01b031602179055507303ea00b0619e19759ee7ba33e8eb8e914fbf52ea600e60006101000a8154816001600160a01b0302191690836001600160a01b03160217905550734f8730e0b32b04beaa5757e5aea3aef970e5b613600f60006101000a8154816001600160a01b0302191690836001600160a01b03160217905550612ee06011556000601255666a94d74f43000060135560405180611e0001604052806040518060400160405280600a815260200169096decec8e4ded8c2e8d60b31b81525081526020016040518060400160405280600681526020016529b0b3b3b7b760d11b8152508152602001604051806040016040528060098152602001682237b3ba3432b5babd60b91b81525081526020016040518060400160405280600b81526020016a109c985b1b1b5bde9d5d5960aa1b8152508152602001604051806040016040528060098152602001682a343ab913b0b930b760b91b81525081526020016040518060400160405280601481526020017f516861726d6f732c20476f64204f662046616c6c00000000000000000000000081525081526020016040518060400160405280601681526020017f59726575732c20476f64204f6620546865204c616e640000000000000000000081525081526020016040518060400160405280601381526020017f456475722c20476f64204f6620426174746c650000000000000000000000000081525081526020016040518060400160405280601581526020017f4f6865722c20476f64204f6620546865204d6f6f6e0000000000000000000000815250815260200160405180604001604052806012815260200171447574686f732c20476f64204f66204c617760701b81525081526020016040518060400160405280600981526020016848797065726963756d60b81b815250815260200160405180604001604052806008815260200167417562726574696160c01b81525081526020016040518060400160405280600b81526020016a416e7469727268696e756d60a81b81525081526020016040518060400160405280600a815260200169416d6172616e7468757360b01b815250815260200160405180604001604052806008815260200167546974686f6e696160c01b81525081526020016040518060400160405280601681526020017f59616c76696e61202859656c6c6f772d477265656e29000000000000000000008152508152602001604051806040016040528060098152602001684c6176616e64756c6160b81b8152508152602001604051806040016040528060088152602001674a61626f726f736160c01b8152508152602001604051806040016040528060078152602001665374617469636560c81b8152508152602001604051806040016040528060078152602001664c756e6172696160c81b8152508152602001604051806040016040528060058152602001644d69726e6f60d81b8152508152602001604051806040016040528060058152602001645a61726e6160d81b8152508152602001604051806040016040528060088152602001674468656f6d62617360c01b8152508152602001604051806040016040528060078152602001665368616574686160c81b8152508152602001604051806040016040528060088152602001672d3437b2b936b7b360c11b81525081526020016040518060400160405280600881526020016747726f65646e617360c01b815250815260200160405180604001604052806005815260200164597269646160d81b81525081526020016040518060400160405280600a8152602001690a6e8c2cadcdecccae8d60b31b8152508152602001604051806040016040528060078152602001664573746865736960c81b815250815260200160405180604001604052806008815260200167537479747265646960c01b8152508152602001604051806040016040528060078152602001665468697465617360c81b8152508152602001604051806040016040528060098152602001682432b83432ba3437b760b91b815250815260200160405180604001604052806008815260200167436173656c61757360c01b815250815260200160405180604001604052806005815260200164084c2e6f2f60db1b8152508152602001604051806040016040528060078152602001665468616e696f7360c81b81525081526020016040518060400160405280600781526020016648657261736f7360c81b81525081526020016040518060400160405280600a8152602001695468656c616d616d617360b01b81525081526020016040518060400160405280600b81526020016a4f6564697068697070757360a81b815250815260200160405180604001604052806008815260200167416e63797074757360c01b81525081526020016040518060400160405280600881526020016742726173616c757360c01b815250815260200160405180604001604052806007815260200166466f727365746960c81b81525081526020016040518060400160405280600281526020016113d960f21b81525081526020016040518060400160405280600481526020016356696c6960e01b8152508152602001604051806040016040528060048152602001634d616e6960e01b8152508152602001604051806040016040528060058152602001642430b734b960d91b8152508152602001604051806040016040528060058152602001644e6172766960d81b81525081526020016040518060400160405280600581526020016426b4b6b4b960d91b81525081526020016040518060400160405280600881526020016711d85b99db9c985960c21b8152508152602001604051806040016040528060068152602001652330b33734b960d11b815250815260200160405180604001604052806003815260200162121bd960ea1b81525081526020016040518060400160405280600881526020016741726b6f72696b7560c01b8152508152602001604051806040016040528060078152602001664162726561726560c81b81525081526020016040518060400160405280600781526020016615da5c995cda5b60ca1b8152508152602001604051806040016040528060058152602001644b6f6b696160d81b81525081526020016040518060400160405280600781526020016608ef2c2dacac2d60cb1b8152508152602001604051806040016040528060088152602001674779616d6973726160c01b815250815260200160405180604001604052806005815260200164596562656960d81b8152508152602001604051806040016040528060078152602001664167796172696d60c81b8152508152602001604051806040016040528060078152602001662237b735b7b7b760c91b81525081526020016040518060400160405280600b81526020016a088eaccc2dedac2dce6c2d60ab1b8152508152602001604051806040016040528060058152602001645a617a6c7560d81b8152508152602001604051806040016040528060048152602001635567676960e01b81525081526020016040518060400160405280600681526020016548656d646f7360d01b81525081526020016040518060400160405280600681526020016522b6bcbab0b760d11b815250815260200160405180604001604052806006815260200165476f6e79697360d01b8152508152602001604051806040016040528060098152602001684f6f6e6c6f6c64756d60b81b8152508152602001604051806040016040528060098152602001680b2ded0dcdedccecad60bb1b81525081526020016040518060400160405280600a815260200169139d5b9cda1a5d599a5960b21b81525081526020016040518060400160405280600981526020016847616e6e696e64726f60b81b81525081526020016040518060400160405280600a8152602001690b2dec2c4c4cadcceded60b31b81525081526020016040518060400160405280601381526020017f4d65716f7368205468652047726163696f75730000000000000000000000000081525081526020016040518060400160405280600f81526020016e4e617a616966205468652053616e6560881b81525081526020016040518060400160405280600f81526020016e169d5d1a5908151a1948149bde585b608a1b81525081526020016040518060400160405280601481526020017f47656e696d2054686520436f75726167656f757300000000000000000000000081525081526020016040518060400160405280601581526020017f4e656e7175205468652053706563746163756c617200000000000000000000008152508152602001604051806040016040528060128152602001714e656b6964205468652047726163696f757360701b81525081526020016040518060400160405280601981526020017f4b69647572686f7368205468652053706563746163756c61720000000000000081525081526020016040518060400160405280601481526020017f53617368616275617a20546865204a6f7966756c00000000000000000000000081525081526020016040518060400160405280601981526020017f4d6973736f6f746f7a2054686520456e6c69676874656e65640000000000000081525081526020016040518060400160405280601681526020017f526f7a69736861662054686520466f7274756e617465000000000000000000008152508152602001604051806040016040528060058152602001642432b130b960d91b815250815260200160405180604001604052806006815260200165446173686d6f60d01b81525081526020016040518060400160405280600681526020016512dd5cdd985960d21b8152508152602001604051806040016040528060058152602001644e6168757360d81b81525081526020016040518060400160405280600a81526020016914da185d9a5d1e585b9d60b21b81525081526020016040518060400160405280600881526020016710d95a985c9d195d60c21b815250815260200160405180604001604052806008815260200167556c6d617468796560c01b81525081526020016040518060400160405280600a815260200169426573686d757074757360b01b81525081526020016040518060400160405280600b81526020016a4b6562687570746968617360a81b815250815260200160405180604001604052806009815260200168416b616461726d757360b81b815250815260200160405180604001604052806005815260200164416761726160d81b815250815260200160405180604001604052806005815260200164476564697360d81b8152508152602001604051806040016040528060048152602001634579766160e01b81525081526020016040518060400160405280600681526020016529b5b7bb34b360d11b81525081526020016040518060400160405280600781526020016621393cb632b4b360c91b8152508152602001604051806040016040528060058152602001642b30b6323960d91b815250815260200160405180604001604052806006815260200165486a6f646e6560d01b8152508152602001604051806040016040528060048152602001634f726a6160e01b815250815260200160405180604001604052806006815260200165151a1c9a5cdd60d21b8152508152602001604051806040016040528060088152602001672937b733b934b7b960c11b81525081526020016040518060400160405280601181526020017010da1a5b994b08151a194811da599d1959607a1b81525081526020016040518060400160405280601581526020017f4b61746869672c2054686520596f756e67204f6e65000000000000000000000081525081526020016040518060400160405280601381526020017f4d696d626961642c205468652047656e746c650000000000000000000000000081525081526020016040518060400160405280601c81526020017f4d616e6461796e74682c2044657374726f796572204f66204c6966650000000081525081526020016040518060400160405280601381526020017f51657a7a756e2c204c6f7264204f662049636500000000000000000000000000815250815260200160405180604001604052806011815260200170149959da194b08109c985d995a19585c9d607a1b81525081526020016040518060400160405280601081526020016f4172676973732c20546865204461726b60801b81525081526020016040518060400160405280601781526020017f517970686174682c20546865204c69666520476976657200000000000000000081525081526020016040518060400160405280600e81526020016d10985d1d4b08151a19481119585960921b81525081526020016040518060400160405280601181526020017021b43cb939b296102a3432902a34b930b760791b81525081526020016040518060400160405280601281526020017111195d9bdcdccb08151a194811da599d195960721b81525081526020016040518060400160405280601481526020017f5361726d75742c2054686520506f77657266756c00000000000000000000000081525081526020016040518060400160405280601581526020017f4368696768696e747973732c205468652043616c6d000000000000000000000081525081526020016040518060400160405280601781526020017f45646165727269732c20546865205768697465204f6e6500000000000000000081525081526020016040518060400160405280601881526020017f506973736f6c65732c20546865204d7973746572696f7573000000000000000081525081526020016040518060400160405280601b81526020017f4e7972747269782c20476f6464657373204f662054686520536561000000000081525081526020016040518060400160405280601d81526020017f447265756e612c20476f6464657373204f6620476f7665726e616e636500000081525081526020016040518060400160405280601b81526020017f4b79766e6561732c20476f6464657373204f66204f7261636c6573000000000081525081526020016040518060400160405280601c81526020017f47726168656e612c20476f6464657373204f66204d697261636c65730000000081525081526020016040518060400160405280601a81526020017f45686e6572612c20476f6464657373204f6620526964646c657300000000000081525081526020016040518060400160405280601a81526020017f4b696e6a612c20476f6464657373204f6620546865204d6f6f6e00000000000081525081526020016040518060400160405280601981526020017f496d6f746c2c20476f6464657373204f66204f7261636c65730000000000000081525081526020016040518060400160405280601881526020017f4d7976756e612c20476f6464657373204f6620536c656570000000000000000081525081526020016040518060400160405280601981526020017f51616e6465612c20476f6464657373204f6620506f657472790000000000000081525081526020016040518060400160405280601a81526020017f4172656e612c20476f6464657373204f662043686976616c72790000000000008152508152602001604051806040016040528060078152602001660a6c2e4cac2e6d60cb1b81525081526020016040518060400160405280600881526020016712995a1d591a595b60c21b815250815260200160405180604001604052806008815260200167149858da1b5a595b60c21b815250815260200160405180604001604052806006815260200165135bdc98595b60d21b81525081526020016040518060400160405280600a81526020016929b0b73237b6383437b760b11b81525081526020016040518060400160405280600781526020016653696c7267756160c81b8152508152602001604051806040016040528060058152602001644b656c636960d81b81525081526020016040518060400160405280600b81526020016a506162696c72676175707360a81b8152508152602001604051806040016040528060098152602001682a30b3b0b6383ab2b760b91b8152508152602001604051806040016040528060088152602001672cb7b63932b4b93760c11b81525081526020016040518060400160405280600981526020016854726569626572757360b81b8152508152602001604051806040016040528060078152602001664372756475736160c81b8152508152602001604051806040016040528060098152602001685368616f746f726f6760b81b8152508152602001604051806040016040528060078152602001664b75616269686360c81b8152508152602001604051806040016040528060078152602001661299585b585b1b60ca1b81525081526020016040518060400160405280600781526020016653756e6265616d60c81b81525081526020016040518060400160405280600581526020016453756e6e7960d81b815250815260200160405180604001604052806005815260200164476c617a6560d81b81525081526020016040518060400160405280600481526020016329b7b0b960e11b8152508152602001604051806040016040528060068152602001652132b0b1b7b760d11b81525081526020016040518060400160405280600581526020016422b6b132b960d91b81525081526020016040518060400160405280600481526020016344656a6160e01b81525081526020016040518060400160405280600781526020016653756e6265616d60c81b815250815260200160405180604001604052806005815260200164537572676560d81b81525081526020016040518060400160405280600481526020016346756d6560e01b815250815260200160405180604001604052806007815260200166088c2dec6dcdef60cb1b81525081526020016040518060400160405280600c81526020016b0b44ed2cedcdc4ee8d0d2e4d60a31b8152508152602001604051806040016040528060088152602001674268656a6861737360c01b81525081526020016040518060400160405280600a8152602001695472616172722774686f60b01b8152508152602001604051806040016040528060078152602001664b7468797a687560c81b81525081526020016040518060400160405280600c81526020016b59696378696f7a74276b726160a01b815250815260200160405180604001604052806008815260200167497468696f64686f60c01b8152508152602001604051806040016040528060098152602001684567616468276b726560b81b81525081526020016040518060400160405280600a81526020016913dd89d85bdb1d1a1bd960b21b81525081526020016040518060400160405280600a815260200169497a756c64276974726160b01b8152508152602001604051806040016040528060088152602001674c6f6b6170616c6160c01b8152508152602001604051806040016040528060088152602001674a616d6268616c6160c01b815250815260200160405180604001604052806009815260200168596f67616d6261726160b81b81525081526020016040518060400160405280600d81526020016c54656e6d6120676f646465737360981b81525081526020016040518060400160405280600c81526020016b5065686172204779616c706f60a01b8152508152602001604051806040016040528060098152602001684b756d6268616e646160b81b81525081526020016040518060400160405280600681526020016559616d61726960d01b8152508152602001604051806040016040528060088152602001674d61686f7261676160c01b8152508152602001604051806040016040528060048152602001634e61676160e01b8152508152602001604051806040016040528060078152602001664b696e6e61726160c81b81525081526020016040518060400160405280600881526020016726b7b93934b3b0b760c11b8152508152602001604051806040016040528060038152602001622632b960e91b815250815260200160405180604001604052806004815260200163213930b760e11b8152508152602001604051806040016040528060098152602001682830b93a3430b630b760b91b8152508152602001604051806040016040528060078152602001664465697264726560c81b8152508152602001604051806040016040528060078152602001661318589c985a5960ca1b81525081526020016040518060400160405280600481526020016344616e7560e01b81525081526020016040518060400160405280600681526020016520b7b23430b760d11b815250815260200160405180604001604052806008815260200167526f736d6572746160c01b815250815260200160405180604001604052806005815260200164446167646160d81b81525081526020016040518060400160405280600681526020016520b790253ab760d11b81525081526020016040518060400160405280600581526020016442616f786960d81b81525081526020016040518060400160405280600d81526020016c2a30b4b9b430b71028bab2b2b760991b815250815260200160405180604001604052806005815260200164546169596960d81b8152508152602001604051806040016040528060088152602001672cb0b733a534b0b760c11b81525081526020016040518060400160405280600c81526020016b5a68616e675469616e53686960a01b81525081526020016040518060400160405280600c81526020016b22b6b832b937b91029b43ab760a11b81525081526020016040518060400160405280600c81526020016b2530b2329022b6b832b937b960a11b81525081526020016040518060400160405280600f81526020016e2a30b4a9b430b733902630b7a53ab760891b81525081526020016040518060400160405280600781526020016623bab0b72cb4b760c91b8152508152602001604051806040016040528060088152602001674e6570687468797360c01b8152508152602001604051806040016040528060048152602001630417065760e41b8152508152602001604051806040016040528060068152602001652430ba3437b960d11b81525081526020016040518060400160405280600481526020016348656b6160e01b81525081526020016040518060400160405280600681526020016511995d1ad95d60d21b815250815260200160405180604001604052806004815260200163155b9d5d60e21b81525081526020016040518060400160405280600681526020016512d85d5ad95d60d21b81525081526020016040518060400160405280600381526020016249687960e81b815250815260200160405180604001604052806002815260200161526560f01b81525081526020016040518060400160405280600481526020016320b6bab760e11b81525081526020016040518060400160405280600a8152602001695473756b692059756d6960b01b81525081526020016040518060400160405280600e81526020016d54616b656d696b61647a7563686960901b81525081526020016040518060400160405280600d81526020016c54616b616d69204d757375626960981b815250815260200160405180604001604052806008815260200167537573616e6f776160c01b81525081526020016040518060400160405280600b81526020016a26b0b934b9b430902a32b760a91b8152508152602001604051806040016040528060118152602001704e616b612059616d612054737569204d6960781b8152508152602001604051806040016040528060048152602001634675646f60e01b81525081526020016040518060400160405280600e81526020016d29b434b1b43490233ab53ab5b4b760911b815250815260200160405180604001604052806011815260200170496b61205a75636869204e6f204b616d6960781b81525081526020016040518060400160405280600681526020016559616d61746f60d01b81525081526020016040518060400160405280600581526020016446756e7a6960d81b81525081526020016040518060400160405280600b81526020016a4d616d6261204d756e747560a81b81525081526020016040518060400160405280600b81526020016a4d62616e74696c616e646160a81b815250815260200160405180604001604052806012815260200171476f64206f66207269766572204e7a61646960701b8152508152602001604051806040016040528060088152602001674e61204e6775747560c01b81525081526020016040518060400160405280600e81526020016d53696d626920646961204d617a6160901b8152508152602001604051806040016040528060068152602001654e7a756d626960d01b81525081526020016040518060400160405280600f81526020016e4e7a616d62692061204d70756e677560881b81525081526020016040518060400160405280600b81526020016a4d70756c752042756e7a6960a81b8152508152602001604051806040016040528060078152602001664c757369656d6f60c81b8152508152602001604051806040016040528060048152602001634861796160e01b81525081526020016040518060400160405280600a815260200169115c995cda1ada59d85b60b21b8152508152602001604051806040016040528060068152602001654e616e61796160d01b8152508152602001604051806040016040528060068152602001655a616261626160d01b81525081526020016040518060400160405280600d81526020016c24b730b737309024b9b43a30b960991b81525081526020016040518060400160405280600b81526020016a0aae8ea40a6d0c2dac2e6d60ab1b8152508152602001604051806040016040528060048152602001634e61627560e01b8152508152602001604051806040016040528060068152602001654d617264756b60d01b81525081526020016040518060400160405280600281526020016120b760f11b81525081526020016040518060400160405280600a815260200169416d617368696c616d6160b01b81525081526020016040518060400160405280600b81526020016a082f4c2d6c2409acac8cad60ab1b815250815260200160405180604001604052806009815260200168084ded8d240a6d0c2d60bb1b81525081526020016040518060400160405280600d81526020016c4775656465204c274f7261676560981b81525081526020016040518060400160405280600881526020016752616461206c776160c01b81525081526020016040518060400160405280600a81526020016950617061204c6567626160b01b8152508152602001604051806040016040528060088152602001674469656a7573746560c01b81525081526020016040518060400160405280600d81526020016c4361707461696e20446562617360981b81525081526020016040518060400160405280600e81526020016d084dee6e6deea4082e6d0c2c8cad60931b81525081526020016040518060400160405280600c81526020016b47756564652d446f75626c6560a01b81525081526020016040518060400160405280600d81526020016c5469204a65616e20506574726f60981b81525081525060149060f06200277d92919062008fec565b5060405180611900016040528060405180604001604052806005815260200164135bdc985b60da1b8152508152602001604051806040016040528060098152602001681159999a58da595b9d60ba1b8152508152602001604051806040016040528060098152602001681119591a58d85d195960ba1b815250815260200160405180604001604052806008815260200167536f636961626c6560c01b81525081526020016040518060400160405280600d81526020016c436f6e74656d706c617469766560981b81525081526020016040518060400160405280600581526020016414ddd9595d60da1b81525081526020016040518060400160405280600781526020016610d85c99599d5b60ca1b81525081526020016040518060400160405280600c81526020016b15d85c9b4b5219585c9d195960a21b815250815260200160405180604001604052806005815260200164131bde585b60da1b815250815260200160405180604001604052806008815260200167436861726d696e6760c01b81525081526020016040518060400160405280600b81526020016a4368617269736d6174696360a81b81525081526020016040518060400160405280600a8152602001695265666c65637469766560b01b81525081526020016040518060400160405280600a81526020016910995b995d9bdb195b9d60b21b81525081526020016040518060400160405280600981526020016810dbdb999a59195b9d60ba1b81525081526020016040518060400160405280600781526020016614995b185e195960ca1b815250815260200160405180604001604052806008815260200167466c657869626c6560c01b815250815260200160405180604001604052806006815260200165537461626c6560d01b81525081526020016040518060400160405280600a815260200169125b9cda59da1d199d5b60b21b81525081526020016040518060400160405280600a815260200169141c9a5b98da5c1b195960b21b81525081526020016040518060400160405280600981526020016815da5b190810d85c9960ba1b81525081526020016040518060400160405280600b81526020016a4f7665727a65616c6f757360a81b8152508152602001604051806040016040528060058152602001644e6169766560d81b81525081526020016040518060400160405280600d81526020016c4865726f2053796e64726f6d6560981b81525081526020016040518060400160405280600b81526020016a29b7b932902bb4b73732b960a91b81525081526020016040518060400160405280600c81526020016b4d616e6970756c617469766560a01b8152508152602001604051806040016040528060078152602001660a6cad8ccd2e6d60cb1b8152508152602001604051806040016040528060088152602001671259db9bdc985b9d60c21b81525081526020016040518060400160405280600981526020016814db1a5b5958985b1b60ba1b815250815260200160405180604001604052806005815260200164437275646560d81b815250815260200160405180604001604052806007815260200166115b1959d85b9d60ca1b81525081526020016040518060400160405280600881526020016714dada5b1b199d5b60c21b8152508152602001604051806040016040528060078152602001664c6f7661626c6560c81b8152508152602001604051806040016040528060078152602001664f726465726c7960c81b81525081526020016040518060400160405280600781526020016612195b1c199d5b60ca1b81525081526020016040518060400160405280600b81526020016a125b99195c195b99195b9d60aa1b81525081526020016040518060400160405280600b81526020016a53796d706174686574696360a81b81525081526020016040518060400160405280600b81526020016a436f6f706572617469766560a81b81525081526020016040518060400160405280600b81526020016a5072656469637461626c6560a81b815250815260200160405180604001604052806005815260200164151a5b5a5960da1b8152508152602001604051806040016040528060058152602001644e6f73657960d81b81525081526020016040518060400160405280600c81526020016b2130b2102634b9ba32b732b960a11b81525081526020016040518060400160405280600a8152602001694469736f726465726c7960b01b8152508152602001604051806040016040528060098152602001684f627365737369766560b81b81525081526020016040518060400160405280600881526020016714185c985b9bda5960c21b81525081526020016040518060400160405280600d81526020016c13985c9c9bddcb535a5b991959609a1b8152508152602001604051806040016040528060078152602001660a0cacaecd2e6d60cb1b815250815260200160405180604001604052806005815260200164109b1d5b9d60da1b81525081526020016040518060400160405280600d81526020016c14da5b99db194b535a5b991959609a1b8152508152602001604051806040016040528060098152602001685370696e656c65737360b81b815250815260200160405180604001604052806005815260200164043686561760dc1b815250815260200160405180604001604052806009815260200168496e76697369626c6560b81b81525081526020016040518060400160405280600a815260200169476c7574746f6e6f757360b01b8152508152602001604051806040016040528060048152602001635765616b60e01b81525081526020016040518060400160405280600a815260200169526573706f6e7369766560b01b81525081526020016040518060400160405280600d81526020016c14d95b198b50dc9a5d1a58d85b609a1b81525081526020016040518060400160405280600b81526020016a416476656e7475726f757360a81b81525081526020016040518060400160405280600b81526020016a526573706f6e7369626c6560a81b81525081526020016040518060400160405280600781526020016643617061626c6560c81b81525081526020016040518060400160405280600a815260200169496e6e6f76617469766560b01b815250815260200160405180604001604052806008815260200167467269656e646c7960c01b81525081526020016040518060400160405280600a815260200169446570656e6461626c6560b01b81525081526020016040518060400160405280600a8152602001695065726365707469766560b01b81525081526020016040518060400160405280600881526020016710dd5b1d1d5c995960c21b81525081526020016040518060400160405280600981526020016813dc99d85b9a5e995960ba1b81525081526020016040518060400160405280600b81526020016a5472757374776f7274687960a81b81525081526020016040518060400160405280600881526020016711985a5d1a199d5b60c21b81525081526020016040518060400160405280600681526020016548756d626c6560d01b815250815260200160405180604001604052806007815260200166131bd9da58d85b60ca1b81525081526020016040518060400160405280600881526020016714dc1a5d19599d5b60c21b81525081526020016040518060400160405280600781526020016614dc1bda5b195960ca1b815250815260200160405180604001604052806007815260200166447562696f757360c81b815250815260200160405180604001604052806009815260200168115e1d1c995b5a5cdd60ba1b81525081526020016040518060400160405280601581526020017f41646469637469766520506572736f6e616c69747900000000000000000000008152508152602001604051806040016040528060058152602001644d6573737960d81b81525081526020016040518060400160405280600681526020016553656e696c6560d01b81525081526020016040518060400160405280600c81526020016b4f7665726c79205069636b7960a01b81525081526020016040518060400160405280600b81526020016a506f776572204472756e6b60a81b81525081526020016040518060400160405280600a81526020016956696e6469637469766560b01b81525081526020016040518060400160405280600681526020016541637469766560d01b81525081526020016040518060400160405280600981526020016813d89cd95c9d985b9d60ba1b81525081526020016040518060400160405280601081526020016f21b934ba34b1b0b6102a3434b735b2b960811b81525081526020016040518060400160405280600b81526020016a125b9d195b1b1a59d95b9d60aa1b815250815260200160405180604001604052806008815260200167151bdb195c985b9d60c21b815250815260200160405180604001604052806005815260200164105b195c9d60da1b81525081526020016040518060400160405280600781526020016644796e616d696360c81b81525081526020016040518060400160405280600b81526020016a496d6167696e617469766560a81b815250815260200160405180604001604052806008815260200167436172656c65737360c01b81525081526020016040518060400160405280600881526020016752656c6961626c6560c01b8152508152602001604051806040016040528060048152602001632330b4b960e11b81525081526020016040518060400160405280600481526020016312da5b9960e21b8152508152602001604051806040016040528060088152602001674c65616465726c7960c01b815250815260200160405180604001604052806007815260200166141b185e599d5b60ca1b815250815260200160405180604001604052806009815260200168111a59db9a599a595960ba1b81525081526020016040518060400160405280600481526020016343616c6d60e01b815250815260200160405180604001604052806008815260200167111a5c9958dd195960c21b815250815260200160405180604001604052806006815260200165446172696e6760d01b815250815260200160405180604001604052806009815260200168417474656e7469766560b81b81525081526020016040518060400160405280600b81526020016a111a5cd8da5c1b1a5b995960aa1b815250815260200160405180604001604052806007815260200166119bd8dd5cd95960ca1b815250815260200160405180604001604052806009815260200168416d626974696f757360b81b81525081526020016040518060400160405280600d81526020016c496e636f727275707469626c6560981b81525081526020016040518060400160405280600f81526020016e14d95b198b54dd59999a58da595b9d608a1b815250815260200160405180604001604052806006815260200165436172696e6760d01b81525081526020016040518060400160405280600581526020016421b632b0b760d91b81525081526020016040518060400160405280600c81526020016b416e7469636970617469766560a01b815250815260200160405180604001604052806006815260200165111958d95b9d60d21b8152508152602001604051806040016040528060048152602001635769736560e01b81525081526020016040518060400160405280600881526020016747726163696f757360c01b81525081526020016040518060400160405280600d81526020016c556e6465727374616e64696e6760981b81525081526020016040518060400160405280600a815260200169436f75726167656f757360b01b81525081526020016040518060400160405280600c81526020016b41707072656369617469766560a01b8152508152602001604051806040016040528060068152602001654865726f696360d01b81525081526020016040518060400160405280600d81526020016c4f766572616d626974696f757360981b815250815260200160405180604001604052806007815260200166446576696f757360c81b8152508152602001604051806040016040528060078152602001664964696f74696360c81b81525081526020016040518060400160405280600a81526020016929b7b932902637b9b2b960b11b81525081526020016040518060400160405280600c81526020016b14da1bdc9d1cda59da1d195960a21b81525081526020016040518060400160405280600681526020016510dbddd85c9960d21b81525081526020016040518060400160405280600c81526020016b50737963686f70617468696360a01b81525081526020016040518060400160405280600a815260200169526562656c6c696f757360b01b81525081526020016040518060400160405280600a815260200169129d5919db595b9d185b60b21b81525081526020016040518060400160405280600b81526020016a436f727275707469626c6560a81b81525081526020016040518060400160405280600f81526020016e109c9d5d185b1b1e48121bdb995cdd608a1b8152508152602001604051806040016040528060098152602001684879706f637269746560b81b8152508152602001604051806040016040528060098152602001684175646163696f757360b81b815250815260200160405180604001604052806005815260200164109a59dbdd60da1b81525081526020016040518060400160405280600a81526020016914995cdc1958dd199d5b60b21b8152508152602001604051806040016040528060098152602001685265616c697374696360b81b81525081526020016040518060400160405280600681526020016521b632bb32b960d11b81525081526020016040518060400160405280600881526020016711591d58d85d195960c21b8152508152602001604051806040016040528060048152602001631399585d60e21b815250815260200160405180604001604052806007815260200166576f726c646c7960c81b8152508152602001604051806040016040528060078152602001664572726174696360c81b8152508152602001604051806040016040528060078152602001664162757369766560c81b81525081526020016040518060400160405280600981526020016810dbdb98d95a5d195960ba1b81525081526020016040518060400160405280600681526020016547726565647960d01b8152508152602001604051806040016040528060118152602001702bb4ba3437baba102234b932b1ba34b7b760791b815250815260200160405180604001604052806007815260200166456e76696f757360c81b81525081526020016040518060400160405280600981526020016814995cd95b9d199d5b60ba1b81525081526020016040518060400160405280600a8152602001694f7665726c792053687960b01b815250815260200160405180604001604052806008815260200167115b9d1a5d1b195960c21b815250815260200160405180604001604052806009815260200168283930b735b9ba32b960b91b81525081526020016040518060400160405280600781526020016614995b1a585b9d60ca1b815250815260200160405180604001604052806009815260200168416461707461626c6560b81b815250815260200160405180604001604052806008815260200167446563697369766560c01b815250815260200160405180604001604052806008815260200167111a5cd8dc99595d60c21b81525081526020016040518060400160405280600d81526020016c23b7b7b2102634b9ba32b732b960991b81525081526020016040518060400160405280600881526020016710985b185b98d95960c21b815250815260200160405180604001604052806009815260200168111958d95a5d199d5b60ba1b815250815260200160405180604001604052806007815260200166416e78696f757360c81b815250815260200160405180604001604052806008815260200167084d2cedadeeae8d60c31b81525081526020016040518060400160405280600d81526020016c556e7472757374776f7274687960981b8152508152602001604051806040016040528060128152602001714f7665726c7920436f6d706574697469766560701b81525081526020016040518060400160405280600a815260200169141c995a9d591a58d95960b21b81525081526020016040518060400160405280600b81526020016a52656d6f7273656c65737360a81b81525081526020016040518060400160405280600a815260200169119c985d591d5b195b9d60b21b815250815260200160405180604001604052806003815260200162536c7960e81b8152508152602001604051806040016040528060078152602001665368616c6c6f7760c81b81525081526020016040518060400160405280601081526020016f109b1a5b991b1e4813d899591a595b9d60821b815250815260200160405180604001604052806008815260200167496d6d617475726560c01b8152508152602001604051806040016040528060088152602001674174686c6574696360c01b815250815260200160405180604001604052806007815260200166437572696f757360c81b81525081526020016040518060400160405280600b81526020016a496e746572657374696e6760a81b81525081526020016040518060400160405280600581526020016429b7b132b960d91b81525081526020016040518060400160405280600c81526020016b456e7468757369617374696360a01b81525081526020016040518060400160405280600c81526020016b14d95b198b54995b1a585b9d60a21b815250815260200160405180604001604052806009815260200168416772656561626c6560b81b81525081526020016040518060400160405280600881526020016714195858d9599d5b60c21b81525081526020016040518060400160405280601081526020016f20ba3a32b73a34b7b71029b2b2b5b2b960811b81525081526020016040518060400160405280600781526020016629b43aba16a4b760c91b81525081526020016040518060400160405280600d81526020016c20baba3437b934ba30b934b0b760991b81525081526020016040518060400160405280600a8152602001694865646f6e697374696360b01b815250815260200160405180604001604052806008815260200167086d0d2d8c8d2e6d60c31b81525081526020016040518060400160405280600a8152602001694d6564646c65736f6d6560b01b815250815260200160405180604001604052806005815260200164506574747960d81b81525081526020016040518060400160405280600a815260200169125b9d1bdb195c985b9d60b21b815250815260200160405180604001604052806008815260200167111a5cdb1bde585b60c21b815250815260200160405180604001604052806011815260200170105d1d195b9d1a5bdb881119599a58da5d607a1b81525081526020016040518060400160405280600781526020016629b630b1b5b2b960c91b81525081526020016040518060400160405280600d81526020016c436f6e74726f6c20467265616b60981b81525081526020016040518060400160405280600a815260200169105b9d1a5cdbd8da585b60b21b81525081526020016040518060400160405280600e81526020016d283937b1b930b9ba34b730ba37b960911b815250815260200160405180604001604052806004815260200163111d5b1b60e21b8152508152602001604051806040016040528060048152602001634c617a7960e01b81525081526020016040518060400160405280600981526020016844656d616e64696e6760b81b81525081526020016040518060400160405280600b81526020016a15d9585acb55da5b1b195960aa1b81525081526020016040518060400160405280600b81526020016a125b991a5999995c995b9d60aa1b8152508152602001604051806040016040528060048152602001632b30b4b760e11b81525081526020016040518060400160405280600a8152602001694e65617420467265616b60b01b81525081526020016040518060400160405280600c81526020016b111a5cdbdc99d85b9a5e995960a21b815250815260200160405180604001604052806009815260200168111a5cda1bdb995cdd60ba1b81525081526020016040518060400160405280600981526020016853617263617374696360b81b81525081526020016040518060400160405280600b81526020016a496e73656e73697469766560a81b815250815260200160405180604001604052806007815260200166556e6c75636b7960c81b81525081526020016040518060400160405280600d81526020016c13dd995c98dbdb999a59195b9d609a1b815250815260200160405180604001604052806009815260200168119bdc99d95d199d5b60ba1b81525081526020016040518060400160405280600681526020016514dd1d5c1a5960d21b815250815260200160405180604001604052806007815260200166105cdbd8da585b60ca1b81525081526020016040518060400160405280600d81526020016c537570657273746974696f757360981b815250815260200160405180604001604052806004815260200163223ab6b160e11b81525081525060159060c86200461192919062009050565b506040518060600160405280604051806040016040528060068152602001651b185dd99d5b60d21b8152508152602001604051806040016040528060078152602001661b995d5d1c985b60ca1b8152508152602001604051806040016040528060078152602001666368616f74696360c81b81525081525060169060036200469b929190620090a2565b5060405180610c8001604052806040518060400160405280600f81526020016e416d7573656d656e74205061726b7360881b81525081526020016040518060400160405280600d81526020016c416e74697175652053746f726560981b81525081526020016040518060400160405280600681526020016541726361646560d01b8152508152602001604051806040016040528060068152602001654173796c756d60d01b81525081526020016040518060400160405280600681526020016542616b65727960d01b81525081526020016040518060400160405280600481526020016342616e6b60e01b81525081526020016040518060400160405280600d81526020016c426174746c65204172656e617360981b815250815260200160405180604001604052806005815260200164084cac2c6d60db1b81525081526020016040518060400160405280600a815260200169084d8c2c6d6e6dad2e8d60b31b815250815260200160405180604001604052806009815260200168426f6f6b73746f726560b81b8152508152602001604051806040016040528060078152602001664272657765727960c81b81525081526020016040518060400160405280600681526020016542726964676560d01b8152508152602001604051806040016040528060048152602001634361666560e01b815250815260200160405180604001604052806004815260200163043616d760e41b815250815260200160405180604001604052806006815260200165436173696e6f60d01b815250815260200160405180604001604052806006815260200165436173746c6560d01b8152508152602001604051806040016040528060048152602001634361766560e01b81525081526020016040518060400160405280600681526020016543697263757360d01b8152508152602001604051806040016040528060048152602001634369747960e01b81525081526020016040518060400160405280600d81526020016c10da5d1e48111a5cdd1c9a58dd609a1b81525081526020016040518060400160405280600c81526020016b21b4bb34b634bd30ba34b7b760a11b81525081526020016040518060400160405280600581526020016421b634b33360d91b815250815260200160405180604001604052806007815260200166436f6d70616e7960c81b81525081526020016040518060400160405280600981526020016810dbdb9d1a5b995b9d60ba1b81525081526020016040518060400160405280600a81526020016921b7b930b6102932b2b360b11b815250815260200160405180604001604052806007815260200166436f756e74727960c81b81525081526020016040518060400160405280600b81526020016a43726166742053746f726560a81b81525081526020016040518060400160405280600d81526020016c446174696e67204167656e637960981b815250815260200160405180604001604052806008815260200167446179204361726560c01b81525081526020016040518060400160405280600681526020016511195cd95c9d60d21b8152508152602001604051806040016040528060098152602001682234b6b2b739b4b7b760b91b815250815260200160405180604001604052806007815260200166223ab733b2b7b760c91b8152508152602001604051806040016040528060048152602001634661726d60e01b81525081526020016040518060400160405280600b81526020016a46696c6d2053747564696f60a81b815250815260200160405180604001604052806009815260200168119a5c994813185b9960ba1b815250815260200160405180604001604052806006815260200165119bdc995cdd60d21b81525081526020016040518060400160405280600681526020016547616c61787960d01b81525081526020016040518060400160405280600b81526020016a47616d652053747564696f60a81b81525081526020016040518060400160405280600781526020016623b630b1b4b2b960c91b81525081526020016040518060400160405280600981526020016811dc985cdcdb185b9960ba1b81525081526020016040518060400160405280600981526020016811dc985d995e585c9960ba1b8152508152602001604051806040016040528060068152602001652430b93137b960d11b81525081526020016040518060400160405280600c81526020016b48656164717561727465727360a01b815250815260200160405180604001604052806007815260200166121a59195bdd5d60ca1b815250815260200160405180604001604052806008815260200167121bdcdc1a5d185b60c21b815250815260200160405180604001604052806005815260200164121bdd195b60da1b815250815260200160405180604001604052806006815260200165125cdb185b9960d21b815250815260200160405180604001604052806007815260200166497374686d757360c81b8152508152602001604051806040016040528060068152602001654a756e676c6560d01b8152508152602001604051806040016040528060078152602001664b696e67646f6d60c81b81525081526020016040518060400160405280600a8152602001694c61626f7261746f727960b01b8152508152602001604051806040016040528060048152602001634c616b6560e01b8152508152602001604051806040016040528060078152602001664c69627261727960c81b81525081526020016040518060400160405280600a8152602001694c69676874686f75736560b01b81525081526020016040518060400160405280600a81526020016926b0b3b2902a37bbb2b960b11b81525081526020016040518060400160405280600c81526020016b135859da58c814d8da1bdbdb60a21b81525081526020016040518060400160405280600a81526020016904d616769632053686f760b41b81525081526020016040518060400160405280600781526020016626b0b739b4b7b760c91b815250815260200160405180604001604052806004815260200163135a5b1b60e21b81525081526020016040518060400160405280600e81526020016d4d696e696e6720436f6d70616e7960901b81525081526020016040518060400160405280600881526020016726b7bab73a30b4b760c11b8152508152602001604051806040016040528060068152602001654d757365756d60d01b8152508152602001604051806040016040528060068152602001654e6562756c6160d01b8152508152602001604051806040016040528060098152602001682734b3b43a31b63ab160b91b81525081526020016040518060400160405280600b81526020016a139bdc9cd94815dbdc9b1960aa1b8152508152602001604051806040016040528060058152602001644f6173697360d81b81525081526020016040518060400160405280600581526020016427b1b2b0b760d91b8152508152602001604051806040016040528060098152602001684f727068616e61676560b81b81525081526020016040518060400160405280600781526020016613dd5d1c1bdcdd60ca1b8152508152602001604051806040016040528060048152602001635061726b60e01b81525081526020016040518060400160405280600c81526020016b50657420427573696e65737360a01b81525081526020016040518060400160405280600b81526020016a50697261746520436f766560a81b81525081526020016040518060400160405280600881526020016750697a7a6572696160c01b815250815260200160405180604001604052806006815260200165141b185b995d60d21b81525081526020016040518060400160405280600a815260200169283630b73a30ba34b7b760b11b815250815260200160405180604001604052806005815260200164506c617a6160d81b815250815260200160405180604001604052806006815260200165283934b9b7b760d11b81525081526020016040518060400160405280600681526020016528bab0b9b0b960d11b8152508152602001604051806040016040528060058152602001645265616c6d60d81b81525081526020016040518060400160405280600a81526020016914995cdd185d5c985b9d60b21b8152508152602001604051806040016040528060058152602001642934bb32b960d91b815250815260200160405180604001604052806004815260200163149bd85960e21b815250815260200160405180604001604052806004815260200163293ab4b760e11b81525081526020016040518060400160405280600681526020016514d8da1bdbdb60d21b815250815260200160405180604001604052806004815260200163053686f760e41b81525081526020016040518060400160405280600a81526020016914dade48125cdb185b9960b21b81525081526020016040518060400160405280600881526020016714db9bdddb185b9960c21b81525081526020016040518060400160405280600381526020016253706160e81b81525081526020016040518060400160405280600d81526020016c29b830b1b29029ba30ba34b7b760991b8152508152602001604051806040016040528060078152602001665374616469756d60c81b81525081526020016040518060400160405280600481526020016329ba30b960e11b81525081526020016040518060400160405280600f81526020016e537465616d70756e6b20486f75736560881b81525081526020016040518060400160405280600681526020016514dd1c99595d60d21b81525081526020016040518060400160405280600581526020016405377616d760dc1b81525081526020016040518060400160405280600e81526020016d546174746f6f205061726c6f727360901b8152508152602001604051806040016040528060068152602001652a30bb32b93760d11b81525081526020016040518060400160405280600681526020016554656d706c6560d01b8152508152602001604051806040016040528060078152602001662a3432b0ba32b960c91b8152508152602001604051806040016040528060058152602001642a37bbb2b960d91b815250815260200160405180604001604052806004815260200163159bda5960e21b815250815250601790606462005568929190620090f4565b5060408051610ce081019091526027610c80820181815282916200cc76610ca084013981526020016040518060400160405280601681526020017f596f75207368616c6c206e6f74206265206c617a792e0000000000000000000081525081526020016040518060600160405280602d81526020016200c785602d913981526020016040518060600160405280602c81526020016200c730602c913981526020016040518060600160405280602481526020016200c6406024913981526020016040518060400160405280601f81526020017f596f75207368616c6c206e6f742061637420776974686f757420636172652e0081525081526020016040518060600160405280603081526020016200cec96030913981526020016040518060400160405280601b81526020017f596f75207368616c6c206e6f74206372656174652069646f6c732e000000000081525081526020016040518060600160405280602c81526020016200cd57602c913981526020016040518060400160405280601b81526020017f596f75207368616c6c20737065616b2066616c7365686f6f64732e000000000081525081526020016040518060600160405280602c81526020016200c976602c913981526020016040518060400160405280601f81526020017f596f75207368616c6c206361726520666f7220796f75722066616d696c792e0081525081526020016040518060600160405280602781526020016200c4676027913981526020016040518060600160405280602481526020016200c3f86024913981526020016040518060600160405280602d81526020016200c82f602d913981526020016040518060600160405280602881526020016200cef96028913981526020016040518060600160405280602481526020016200cad86024913981526020016040518060600160405280602981526020016200c6646029913981526020016040518060600160405280602881526020016200c68d6028913981526020016040518060600160405280602e81526020016200c56f602e913981526020016040518060400160405280601b81526020017f596f75207368616c6c20616269646520627920746865206c61772e000000000081525081526020016040518060400160405280601a81526020017f596f75207368616c6c20686f6e6f72207468652066616974682e00000000000081525081526020016040518060400160405280601b81526020017f596f75207368616c6c206c697665206c6966652068756d626c792e000000000081525081526020016040518060600160405280602e81526020016200cf21602e913981526020016040518060400160405280601481526020017f596f75207368616c6c206e6f742063686561742e00000000000000000000000081525081526020016040518060600160405280602f81526020016200c6d6602f913981526020016040518060600160405280602381526020016200c85c6023913981526020016040518060600160405280602881526020016200ccc56028913981526020016040518060600160405280603081526020016200ce996030913981526020016040518060400160405280601e81526020017f596f75207368616c6c206e6f74206d616b6520736163726966696365732e000081525081526020016040518060400160405280601d81526020017f596f75207368616c6c2068656c7020796f7572206e65696768626f722e00000081525081526020016040518060400160405280601c81526020017f596f75207368616c6c206e6f742074616b6520616e79206c6966652e0000000081525081526020016040518060600160405280602881526020016200c41c6028913981526020016040518060600160405280602681526020016200d00f6026913981526020016040518060400160405280601681526020017f6f75207368616c6c20646f20796f757220647574792e0000000000000000000081525081526020016040518060600160405280602281526020016200c9546022913981526020016040518060600160405280602481526020016200ca8e6024913981526020016040518060600160405280602f81526020016200c7b2602f913981526020016040518060400160405280601981526020017f596f75207368616c6c20737072656164206d7920776f72642e0000000000000081525081526020016040518060400160405280601c81526020017f596f75207368616c6c20686f6e6f7220796f757220656c646572732e0000000081525081526020016040518060600160405280603081526020016200cbc36030913981526020016040518060400160405280601d81526020017f596f75207368616c6c206c6f766520796f7572206e65696768626f722e00000081525081526020016040518060400160405280601781526020017f596f75207368616c6c20646f20796f757220647574792e00000000000000000081525081526020016040518060600160405280602d81526020016200c5be602d913981526020016040518060600160405280602981526020016200cc276029913981526020016040518060400160405280601e81526020017f596f75207368616c6c206e6f74206769766520696e746f206c757374732e000081525081526020016040518060600160405280602481526020016200cafc6024913981526020016040518060600160405280602e81526020016200cb42602e913981526020016040518060400160405280601c81526020017f596f75207368616c6c206c6f766520796f757220636f756e7472792e0000000081525081526020016040518060600160405280602881526020016200cb9b6028913981526020016040518060600160405280602481526020016200cd836024913981526020016040518060600160405280602d81526020016200ca33602d913981526020016040518060600160405280602c81526020016200c543602c913981526020016040518060600160405280602781526020016200c8a46027913981526020016040518060600160405280602681526020016200c48e6026913981526020016040518060600160405280603381526020016200c9216033913981526020016040518060600160405280603181526020016200cfde6031913981526020016040518060600160405280602681526020016200cab26026913981526020016040518060400160405280601b81526020017f596f75207368616c6c206e6f742061637420696e20616e6765722e000000000081525081526020016040518060600160405280603481526020016200cbf36034913981526020016040518060600160405280602e81526020016200ca60602e913981526020016040518060400160405280601e81526020017f596f75207368616c6c206e6f7420696e636974652076696f6c656e63652e000081525081526020016040518060400160405280601d81526020017f596f75207368616c6c206e6f7420627265616b2070726f6d697365732e00000081525081526020016040518060400160405280601d81526020017f596f75207368616c6c20686f6e6f7220796f757220706172656e74732e00000081525081526020016040518060600160405280603681526020016200cdd36036913981526020016040518060400160405280601581526020017f596f75207368616c6c20686f6c642066616974682e000000000000000000000081525081526020016040518060600160405280602981526020016200c7e16029913981526020016040518060600160405280603381526020016200c60d6033913981526020016040518060600160405280602c81526020016200cda7602c913981526020016040518060600160405280602981526020016200d0356029913981526020016040518060400160405280601581526020017f596f75207368616c6c206e6f74206d75726465722e000000000000000000000081525081526020016040518060600160405280603381526020016200cf4f6033913981526020016040518060600160405280602881526020016200cc9d6028913981526020016040518060600160405280602281526020016200c9e96022913981526020016040518060600160405280602181526020016200c9c86021913981526020016040518060600160405280602581526020016200c87f6025913981526020016040518060600160405280602981526020016200c4d56029913981526020016040518060400160405280601481526020017f596f75207368616c6c206e6f7420737465616c2e00000000000000000000000081525081526020016040518060600160405280603081526020016200cf826030913981526020016040518060400160405280602081526020017f596f75207368616c6c2073747269666520666f7220657863656c6c656e63652e81525081526020016040518060600160405280602c81526020016200cfb2602c913981526020016040518060400160405280602081526020017f596f75207368616c6c20666f6c6c6f77206f6e6c7920746865206c696768742e81525081526020016040518060600160405280603381526020016200c8ee6033913981526020016040518060600160405280602881526020016200ca0b6028913981526020016040518060600160405280602481526020016200c4fe6024913981526020016040518060600160405280602b81526020016200cb70602b913981526020016040518060600160405280602b81526020016200c705602b913981526020016040518060400160405280601c81526020017f596f75207368616c6c2062652073696e6365726520746f20616c6c2e0000000081525081526020016040518060600160405280602381526020016200ce2b6023913981526020016040518060400160405280601f81526020017f596f75207368616c6c206e65766572206861726d20616e20616e696d616c2e0081525081526020016040518060400160405280602081526020017f596f75207368616c6c206e6f74206477656c6c206f6e2074686520706173742e81525081526020016040518060600160405280602281526020016200cb206022913981526020016040518060400160405280601681526020017f596f75207368616c6c20626520747275746866756c2e0000000000000000000081525081526020016040518060600160405280602481526020016200ce4e6024913981526020016040518060400160405280601d81526020017f596f75207368616c6c206e65766572206861726d2061206368696c642e00000081525081526020016040518060600160405280602781526020016200ce726027913981526020016040518060600160405280602181526020016200c6b56021913981526020016040518060400160405280601d81526020017f596f75207368616c6c2068656c702074686f736520696e206e6565642e00000081525081526020016040518060400160405280601e81526020017f596f75207368616c6c206e6f74206769766520696e746f2070726964652e000081525081526020016040518060600160405280602581526020016200c80a6025913990526200656e906018906064620090f4565b506040805161194081018252601061190082019081526f546f6b656e206f662044616e6765727360801b61192083015281528151808301835260198082527f4368616e74206f66204d616e6120526573746f726174696f6e000000000000006020838101919091528084019290925283518085018552600f81526e13d85d1a081bd98811195b1a59da1d608a1b818401528385015283518085018552601c8082527f546974616e6963204d616e747261206f6620446f6d696e6174696f6e000000008285015260608086019290925285518087018752601e81527f456e68616e63656420456e6368616e746d656e74206f66205370656c6c730000818601526080860152855180870187529081527f496d6d6f7274616c20426c657373696e67206f662042696e64696e67000000008185015260a0850152845180860186528281527f53757072656d6520427265617468206f6620537465616c7468000000000000008185015260c0850152845180860186529182527f496e667573696f6e206f662053757072656d65204d61676963000000000000008284015260e08401919091528351808501855260188082527f4661766f72206f66204c6967687420536c617567687465720000000000000000828501526101008501919091528451808601865260148082527f506c65646765206f6620456c69746520476c656500000000000000000000000082860152610120860191909152855180870187529081527f53656372657473206f6620746865204e696768740000000000000000000000008185015261014085015284518086018652601381527f506c65646765206f6620537566666572696e67000000000000000000000000008185015261016085015284518086018652600d81526c4661766f72206f66204475736b60981b8185015261018085015284518086018652601781527f456e68616e636564204d61726b206f662047686f737473000000000000000000818501526101a0850152845180860186529081527f5072696d652053796d626f6c206f662074686520576172640000000000000000818401526101c084015283518085018552601681527f456c697465204f617468206f6620446973747265737300000000000000000000818401526101e084015283519081019093526023808452919261020084019290916200c4449083013981526020016040518060600160405280602281526020016200ce096022913981526020016040518060400160405280601481526020017f4368616e74206f66204d7974686963204c6f6f7400000000000000000000000081525081526020016040518060600160405280602381526020016200cd346023913981526020016040518060400160405280600e81526020016d14dc185c9ac81bd98814da59da1d60921b8152508152602001604051806040016040528060128152602001714d61726b206f6620746865205072696e636560701b81525081526020016040518060400160405280601781526020017f456e6368616e746d656e74206f662044656c697269756d00000000000000000081525081526020016040518060400160405280601881526020017f4d616a6f72204f617468206f662043617461636c79736d73000000000000000081525081526020016040518060600160405280602581526020016200cced6025913981526020016040518060400160405280601a81526020017f53757072656d652053796d626f6c206f66204372656174696f6e00000000000081525081526020016040518060400160405280601981526020017f5072696d6520417370656374206f66207468652049736c65730000000000000081525081526020016040518060400160405280601781526020017f496e667573696f6e206f66204d6967687479204669726500000000000000000081525081526020016040518060400160405280602081526020017f436861726765206f66204272696c6c69616e7420536f756c737465616c696e6781525081526020016040518060400160405280601981526020017f546f6b656e206f66204d696e6f72204c6f737420536f756c7300000000000000815250815260200160405180604001604052806011815260200170436861726765206f6620506f74656e637960781b81525081526020016040518060400160405280601581526020017f41757261206f66207468652043617461636c79736d000000000000000000000081525081526020016040518060400160405280601481526020017f496e667573696f6e206f6620537472696b696e6700000000000000000000000081525081526020016040518060400160405280601981526020017f546974616e6963205365616c206f6620436f6e6a7572696e670000000000000081525081526020016040518060400160405280601a81526020017f4c6967687420436f7265206f66204c696665737465616c696e6700000000000081525081526020016040518060400160405280601881526020017f416476616e63656420417370656374206f662046726f7374000000000000000081525081526020016040518060400160405280601781526020017f4d6967687479204d616e747261206f6620436f6d62617400000000000000000081525081526020016040518060400160405280601f81526020017f4d61726b206f6620496d7065636361626c6520436f6e6a75726174696f6e730081525081526020016040518060400160405280601b81526020017f426c657373696e67206f6620496e63726561736564205472757374000000000081525081526020016040518060400160405280601381526020017f47696674206f662052656e6577656420466f670000000000000000000000000081525081526020016040518060400160405280601081526020016f5365616c206f662048656c6c6669726560801b81525081526020016040518060400160405280601681526020017f53796d626f6c206f6620746865205072696e636573730000000000000000000081525081526020016040518060400160405280601481526020017f48796d6e206f6620536f756c737465616c696e6700000000000000000000000081525081526020016040518060400160405280601a81526020017f496d6d6f7274616c20426f6e64206f662044657874657269747900000000000081525081526020016040518060400160405280601a81526020017f426f6c737465726564204f72646572206f66204272617665727900000000000081525081526020016040518060400160405280601081526020016f2137b7321037b3103a3432902634b7b760811b81525081526020016040518060400160405280601981526020017f417474756e656d656e74206f66204c61766177616c6b696e670000000000000081525081526020016040518060400160405280601b81526020017f426c657373696e67206f66204d797468696320476c7574746f6e79000000000081525081526020016040518060600160405280602181526020016200c59d6021913981526020016040518060400160405280601a81526020017f53656564206f66204c6573736572204d756c7469737472696b65000000000000815250815260200160405180604001604052806011815260200170426c657373696e67206f66204b696e677360781b815250815260200160405180604001604052806012815260200171213930b7321037b3103a34329028bab2b2b760711b81525081526020016040518060400160405280600b81526020016a21b93abc1037b3102bb0b960a91b81525081526020016040518060400160405280601981526020017f456e68616e6365642057686973706572206f66204d616769630000000000000081525081526020016040518060400160405280601b81526020017f426f6c737465726564204375727365206f6620746865204b696e67000000000081525081526020016040518060400160405280601681526020017f4d69676874792043727578206f6620416e67756973680000000000000000000081525081526020016040518060600160405280602281526020016200cd126022913981526020016040518060400160405280601d81526020017f53796d626f6c206f66204c6967687420556e6465727374616e64696e6700000081525081526020016040518060400160405280601e81526020017f417474756e656d656e74206f6620496d6d6f7274616c2044656c69676874000081525081526020016040518060400160405280601781526020017f53656564206f662053757072656d6520446f6467696e6700000000000000000081525081526020016040518060400160405280601481526020017f436861726765206f6620457865637574696f6e7300000000000000000000000081525081526020016040518060400160405280601281526020017141757261206f66204461726b204d6167696360701b81525081526020016040518060400160405280601081526020016f27b0ba341037b3102630bab3b43a32b960811b81525081526020016040518060400160405280601881526020017f53757072656d6520576f7264206f662074686520566f6964000000000000000081525081526020016040518060400160405280601981526020017f4d797374696320456d626c656d206f662041737361756c74730000000000000081525081526020016040518060400160405280601881526020017f4c69676874204375727365206f662056656e6765616e6365000000000000000081525081526020016040518060600160405280602681526020016200cc50602691398152604080518082018252601a8082527f4d61726b206f6620546f756768656e65642042617272696572730000000000006020838101919091528085019290925282518084018452601b8082527f426c657373696e67206f6620546974616e69632042616c616e63650000000000828501528486019190915283518085018552601781527f506c65646765206f66204d797374696320506f69736f6e0000000000000000008185015260608087019190915284518086018652601381527f506c65646765206f66207468652052697665720000000000000000000000000081860152608087015284518086018652600d81526c243cb6b71037b31020b733b2b960991b8186015260a087015284518086018652601081526f427265617468206f662047756172647360801b8186015260c08701528451808601865260198082527f56616d70697269632041757261206f662048656c6c66697265000000000000008287015260e088019190915285518087018752601c81527f496d7065636361626c6520426c657373696e67206f66204d6967687400000000818701526101008801528551808701875260188082527f5265696e666f7263656420426f6f6e206f6620466f726365000000000000000082880152610120890191909152865180880188528481527f566963696f7573204375727365206f66207468652048756e746572000000000081880152610140890152865180880188528481527f4772616365206f662056616d7069726963204d6f6f6e6c6967687400000000008188015261016089015286518088018852601d81527f426c657373696e67206f6620466f7274696669656420506f74656e637900000081880152610180890152865180880188529081527f576f7264206f6620426f6c7374657265642041747461636b0000000000000000818701526101a08801528551808701875260118152704f617468206f662054726561737572657360781b818701526101c08801528551808701875260148082527f417474756e656d656e74206f66205370656c6c73000000000000000000000000828801526101e0890191909152865180880188528181527f4372657374206f66204469706c6f6d616369657300000000000000000000000081880152610200890152865180880188529384527f5375706572696f72204f72646572206f6620486f7374696c697479000000000084870152610220880193909352855180870187528181527f4d7973746963204f72646572206f6620416476656e74757265000000000000008187015261024088015285518087018752601e81527f496d7065636361626c6520436f7265206f66207468652053636f75726765000081870152610260880152855180870187528381527f456c69746520427265617468206f66205061696e00000000000000000000000081870152610280880152855180870187529384527f496e667573696f6e206f6620477265617465722052656c696566000000000000848601526102a0870193909352845180860186529182527f566f77206f6620436f6c6f7373616c204c6f7373000000000000000000000000828501526102c0860191909152835180850185529182527f5365616c206f6620496d6d6f7274616c20537562746c65747900000000000000828401526102e085019190915282518084018452601581527f417474756e656d656e74206f662044697367757374000000000000000000000081840152610300850152825180840184526012815271426c657373696e67206f662041747461636b60701b8184015261032085015282518084018452600f81526e141b195919d9481bd98811dc995959608a1b818401526103408501528251908101909252602680835261036090930192906200c9a29083013981526020016040518060400160405280601981526020017f456e68616e636564204f72646572206f662052656e6577616c0000000000000081525081526020016040518060400160405280600d81526020016c426f6e64206f6620466f63757360981b81525081526020016040518060400160405280601981526020017f4d7973746963204368616e74206f6620537566666572696e670000000000000081525081526020016040518060400160405280601881526020017f4772616365206f6620476c6f72696f757320447265616d73000000000000000081525081526020016040518060400160405280601b81526020017f57686973706572206f6620566963696f757320547269636b657279000000000081525081526020016040518060600160405280602281526020016200c5eb6022913981526020016040518060400160405280600f81526020016e053656564206f6620576f727368697608c1b81525081526020016040518060400160405280600f81526020016e4772616365206f6620447265616d7360881b8152508152602001604051806040016040528060118152602001704372657374206f662044656c697269756d60781b81525081526020016040518060400160405280601381526020017f4c6967687420506c65646765206f66204963650000000000000000000000000081525081526020016040518060400160405280601881526020017f4272696c6c69616e74204d61726b206f662044656d6f6e73000000000000000081525081526020016040518060400160405280601c81526020017f5265696e666f7263656420436861726765206f6620436c61726974790000000081525081526020016040518060400160405280601a81526020017f496d7065636361626c652053656564206f662044656c6967687400000000000081525081526020016040518060400160405280601c81526020017f4661766f72206f6620476c6f72696f7573204d6973666f7274756e650000000081525081526020016040518060400160405280601a81526020017f4d697261636c65206f6620426f6c73746572656420536967687400000000000081525081526020016040518060400160405280602081526020017f496e667573696f6e206f6620457863657074696f6e616c20537472696b696e6781525081526020016040518060400160405280601581526020017f426c657373696e67206f662050657373696d69736d000000000000000000000081525081526020016040518060400160405280601581526020017f4772616365206f6620507265736572766174696f6e000000000000000000000081525081526020016040518060400160405280601681526020017f506c65646765206f6620436174617374726f706865730000000000000000000081525081526020016040518060400160405280601481526020017f576f7264206f6620436f6e6a75726174696f6e7300000000000000000000000081525081526020016040518060400160405280601881526020017f4d79737469632047696674206f662041776172656e657373000000000000000081525081526020016040518060400160405280601b81526020017f546f756768656e6564204f72646572206f66205061726164697365000000000081525081526020016040518060600160405280602381526020016200c8cb602391398152604080518082018252601581527f4272616e64206f66204772616e6420436f6d62617400000000000000000000006020828101919091528084019190915281518083018352601881527f4368616e74206f6620416476616e636564205370656c6c730000000000000000818301528284015281518083018352601d8082527f506c65646765206f6620537472656e677468656e6564204d69736572790000008284015260608086019290925283518085018552600f81526e576f7264206f66207468652044617960881b8185015260808601528351808501855260128152714661766f72206f6620416476656e7475726560701b8185015260a086015283518085018552601081526f13d85d1a081bd988151dda5b1a59da1d60821b8185015260c086015283518085018552601b81527f5375706572696f7220576f7264206f662043617461636c79736d7300000000008185015260e0860152835180850185529081527f496d6d6f7274616c20427265617468206f66205769746368637261667400000081840152610100850152825180840184528281527f457863657074696f6e616c20506c65646765206f6620526573696c69656e636581840152610120850152825180840184528281527f456e68616e6365642054726962757465206f6620507265736572766174696f6e8184015261014085015282518084018452601981527f4272616e64206f662056616d70697269632043756e6e696e6700000000000000818401526101608501528251908101909252602180835261018090930192906200c4b49083013981526020016040518060400160405280601581526020017f53796d626f6c206f66204d696e6f7220536d697465000000000000000000000081525081526020016040518060400160405280600d81526020016c11da599d081bd98811dc995959609a1b81525081526020016040518060400160405280600f81526020016e13585c9ac81bd9881d1a1948115b99608a1b81525081526020016040518060400160405280600f81526020016e436861726765206f66204861766f6360881b81525081526020016040518060400160405280601681526020017f4d79746869632048796d6e206f6620427261766572790000000000000000000081525081526020016040518060400160405280601a81526020017f496d6d6f7274616c20496e667573696f6e206f6620416e67657200000000000081525081526020016040518060400160405280602081526020017f52656e657765642048796d6e206f66204372797374616c20426172726965727381525081526020016040518060400160405280601581526020017f4d696e6f7220546f6b656e206f66205765616c7468000000000000000000000081525081526020016040518060400160405280601481526020017f47696674206f66204c696768742048617472656400000000000000000000000081525081526020016040518060400160405280601f81526020017f546f6b656e206f6620457863657074696f6e616c204461726b204d616769630081525081526020016040518060400160405280601981526020017f4d697261636c65206f66204c696768742044656669616e63650000000000000081525081526020016040518060400160405280601481526020017f53656372657473206f662056656e6765616e636500000000000000000000000081525081526020016040518060400160405280601781526020017f57686973706572206f6620436f6e6a75726174696f6e7300000000000000000081525081526020016040518060400160405280600f81526020016e14d958dc995d1cc81bd98812195b1b608a1b81525081526020016040518060400160405280601d81526020017f4d616a6f7220456d626c656d206f66205069636b706f636b6574696e6700000081525081526020016040518060400160405280601a81526020017f436f6c6f7373616c20456d626c656d206f6620446f6467696e6700000000000081525081526020016040518060400160405280601681526020017f466f72746966696564205365616c206f66204d616e610000000000000000000081525081526020016040518060400160405280601281526020017111dc985b990815dbdc99081bd988131bdbdd60721b81525081526020016040518060400160405280601381526020017f5365616c206f66204d7974686963204d6973740000000000000000000000000081525081526020016040518060400160405280601c81526020017f57686973706572206f66204d6f7274616c204e696768746d617265730000000081525081526020016040518060400160405280601d81526020017f54726962757465206f66204d6f7274616c20486f742054656d7065727300000081525081526020016040518060400160405280601181526020017009ad2e4c2c6d8ca40decc40aecac2d8e8d607b1b81525081526020016040518060400160405280600d81526020016c21b430b73a1037b3102230bbb760991b81525081526020016040518060400160405280601281526020017120b9b832b1ba1037b31027b13634bb34b7b760711b81525081526020016040518060400160405280601881526020017f476c6f72696f7573204f617468206f662044616e67657273000000000000000081525081526020016040518060600160405280602981526020016200c75c6029913981526020016040518060400160405280601981526020017f4c6967687420426c657373696e67206f662053696c656e63650000000000000081525081526020016040518060600160405280602181526020016200c5226021913981526020016040518060400160405280601a81526020017f426f6e64206f66204d7973746963204465737472756374696f6e00000000000081525081526020016040518060400160405280601781526020017f4375727365206f66205375706572696f72204475656c7300000000000000000081525081526020016040518060400160405280601881526020017f426f6f6e206f66204c69676874204c6f737420536f756c73000000000000000081525081526020016040518060400160405280600f81526020016e4f617468206f66205072617965727360881b81525081526020016040518060400160405280601081526020016f2bb434b9b832b91037b31020b733b2b960811b81525081526020016040518060400160405280601781526020017f496e667573696f6e206f662074686520566f6c63616e6f00000000000000000081525081526020016040518060400160405280601b81526020017f5265696e666f7263656420427265617468206f6620477561726473000000000081525081526020016040518060400160405280601d81526020017f4772616e6420426c657373696e67206f66207468652045636c6970736500000081525081526020016040518060400160405280601a81526020017f4d6f7274616c20456d626c656d206f662048617070696e65737300000000000081525081526020016040518060400160405280601a81526020017f53757072656d652048796d6e206f6620457865637574696f6e7300000000000081525081526020016040518060400160405280601b81526020017f576f7264206f6620457863657074696f6e616c2044616e67657273000000000081525081526020016040518060400160405280601781526020017f53656372657473206f66204d696768747920417572617300000000000000000081525081526020016040518060400160405280601f81526020017f43727578206f6620456c697465204865616c7468204162736f727074696f6e0081525081526020016040518060400160405280600f81526020016e5365616c206f66204167696c69747960881b81525081526020016040518060400160405280601281526020017157686973706572206f6620536861646f777360701b81525081526020016040518060400160405280601181526020017053656564206f66204d617373616372657360781b81525081526020016040518060400160405280601a81526020017f496d6d6f7274616c204272616e64206f6620746865205761726400000000000081525081526020016040518060400160405280601c81526020017f4272696c6c69616e7420506c65646765206f662053756e6c696768740000000081525081526020016040518060400160405280601c81526020017f496d6d6f7274616c20436861726765206f6620416476656e747572650000000081525081526020016040518060400160405280601b81526020017f466f72746966696564204368616e74206f6620476c7574746f6e79000000000081525081526020016040518060400160405280601e81526020017f426c657373696e67206f6620416476616e6365642053756d6d6f6e696e67000081525081526020016040518060400160405280601381526020017f47696674206f66204d6967687479204c6f73730000000000000000000000000081525081526020016040518060400160405280601381526020017f41757261206f66204c6967687420536d697465000000000000000000000000008152508152602001604051806040016040528060128152602001714d697261636c65206f66205370697269747360701b81525081526020016040518060400160405280601081526020016f0a8ded6cadc40decc40e8d0ca408cdef60831b8152508152602001604051806040016040528060118152602001704d616e747261206f662042616c616e636560781b81525081526020016040518060400160405280602081526020017f52656e6577656420456e6368616e746d656e74206f6620746865205377616d7081525081526020016040518060400160405280601c81526020017f56616d7069726963204772616365206f66204166666c696374696f6e0000000081525081526020016040518060400160405280601d81526020017f496d7065636361626c6520566f77206f66207468652050686f656e697800000081525081526020016040518060400160405280602081526020017f546f756768656e656420436861726765206f6620526567656e65726174696f6e81525081526020016040518060400160405280601b81526020017f4661766f72206f6620476c6f72696f75732053756d6d6f6e696e67000000000081525081526020016040518060400160405280601981526020017f537061726b206f66205265696e666f72636564205669676f720000000000000081525081526020016040518060400160405280601881526020017f4661766f72206f66204d6f7274616c204f626c6976696f6e000000000000000081525081526020016040518060400160405280601081526020016f2b37bb9037b310283932b1b4b9b4b7b760811b81525081526020016040518060400160405280600e81526020016d566f77206f66205370697269747360901b81525081526020016040518060400160405280601881526020017f47696674206f6620426c6173742050726f74656374696f6e000000000000000081525081526020016040518060400160405280601881526020017f56616d70697269632048796d6e206f662044616e67657273000000000000000081525081526020016040518060400160405280601f81526020017f466f72746966696564204661766f72206f6620436f6e737469747574696f6e0081525081526020016040518060400160405280601e81526020017f496e6372656173656420546f6b656e206f6620566572736174696c697479000081525081526020016040518060400160405280601d81526020017f506f74656e742054726962757465206f6620526573746f726174696f6e00000081525081526020016040518060400160405280601881526020017f47696674206f66205072696d65204162736f727074696f6e000000000000000081525081526020016040518060400160405280601c81526020017f54726962757465206f6620426f6c7374657265642053696c656e63650000000081525081526020016040518060400160405280601581526020017f57686973706572206f66204d797374696320576172000000000000000000000081525081525060199060c862008f1d92919062009050565b5034801562008f2b57600080fd5b50604080518082018252600480825263474f445360e01b60208084018281528551808701909652928552840152815191929162008f6b9160009162009146565b50805162008f8190600190602084019062009146565b50506001600a555062008f943362008f9a565b62009288565b600b80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280548282559060005260206000209081019282156200903e579160200282015b828111156200903e57825180516200902d91849160209091019062009146565b50916020019190600101906200900d565b506200904c929150620091d1565b5090565b8280548282559060005260206000209081019282156200903e579160200282015b828111156200903e57825180516200909191849160209091019062009146565b509160200191906001019062009071565b8280548282559060005260206000209081019282156200903e579160200282015b828111156200903e5782518051620090e391849160209091019062009146565b5091602001919060010190620090c3565b8280548282559060005260206000209081019282156200903e579160200282015b828111156200903e57825180516200913591849160209091019062009146565b509160200191906001019062009115565b82805462009154906200924b565b90600052602060002090601f016020900481019282620091785760008555620091c3565b82601f106200919357805160ff1916838001178555620091c3565b82800160010185558215620091c3579182015b82811115620091c3578251825591602001919060010190620091a6565b506200904c929150620091f2565b808211156200904c576000620091e8828262009209565b50600101620091d1565b5b808211156200904c5760008155600101620091f3565b50805462009217906200924b565b6000825580601f1062009228575050565b601f016020900490600052602060002090810190620092489190620091f2565b50565b600181811c908216806200926057607f821691505b602082108114156200928257634e487b7160e01b600052602260045260246000fd5b50919050565b61316080620092986000396000f3fe6080604052600436106101ee5760003560e01c80636352211e1161010d578063a22cb465116100a0578063c87b56dd1161006f578063c87b56dd14610554578063d5abeb0114610574578063e985e9c51461058a578063f2fde38b146105d3578063f7e77bc2146105f357600080fd5b8063a22cb465146104de578063a7625c97146104fe578063a945bf801461051e578063b88d4fde1461053457600080fd5b80638ac79cc2116100dc5780638ac79cc21461046b5780638da5cb5b1461048b5780638f77ec8c146104a957806395d89b41146104c957600080fd5b80636352211e1461040057806370a0823114610420578063715018a614610440578063771282f61461045557600080fd5b806323b872dd1161018557806342842e0e1161015457806342842e0e14610398578063434f48c4146103b85780634e71d92d146103d85780634f6ccce7146103e057600080fd5b806323b872dd146103235780632f745c59146103435780633ccfd60b146103635780634036ab781461037857600080fd5b806314661ab5116101c157806314661ab5146102a457806314906d30146102c457806318160ddd146102e45780631ade97f71461030357600080fd5b806301ffc9a7146101f357806306fdde0314610228578063081812fc1461024a578063095ea7b314610282575b600080fd5b3480156101ff57600080fd5b5061021361020e3660046128b0565b610620565b60405190151581526020015b60405180910390f35b34801561023457600080fd5b5061023d61064b565b60405161021f9190612c70565b34801561025657600080fd5b5061026a6102653660046128ea565b6106dd565b6040516001600160a01b03909116815260200161021f565b34801561028e57600080fd5b506102a261029d366004612884565b610777565b005b3480156102b057600080fd5b5061023d6102bf3660046128ea565b61088d565b3480156102d057600080fd5b5061023d6102df3660046128ea565b61098e565b3480156102f057600080fd5b506008545b60405190815260200161021f565b34801561030f57600080fd5b5061023d61031e3660046128ea565b610a81565b34801561032f57600080fd5b506102a261033e366004612730565b610b79565b34801561034f57600080fd5b506102f561035e366004612884565b610baa565b34801561036f57600080fd5b506102a2610c40565b34801561038457600080fd5b5061023d6103933660046128ea565b610cd2565b3480156103a457600080fd5b506102a26103b3366004612730565b610dc3565b3480156103c457600080fd5b506102a26103d33660046128ea565b610dde565b6102a2610ea4565b3480156103ec57600080fd5b506102f56103fb3660046128ea565b610f8c565b34801561040c57600080fd5b5061026a61041b3660046128ea565b61101f565b34801561042c57600080fd5b506102f561043b3660046126b6565b611096565b34801561044c57600080fd5b506102a261111d565b34801561046157600080fd5b506102f560125481565b34801561047757600080fd5b5061023d6104863660046128ea565b611153565b34801561049757600080fd5b50600b546001600160a01b031661026a565b3480156104b557600080fd5b506102a26104c43660046128ea565b61124b565b3480156104d557600080fd5b5061023d6115e6565b3480156104ea57600080fd5b506102a26104f9366004612851565b6115f5565b34801561050a57600080fd5b5061023d6105193660046128ea565b6116ba565b34801561052a57600080fd5b506102f560135481565b34801561054057600080fd5b506102a261054f366004612771565b6117af565b34801561056057600080fd5b5061023d61056f3660046128ea565b6117e1565b34801561058057600080fd5b506102f560115481565b34801561059657600080fd5b506102136105a53660046126f7565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b3480156105df57600080fd5b506102a26105ee3660046126b6565b611a17565b3480156105ff57600080fd5b506102f561060e3660046126b6565b60106020526000908152604090205481565b60006001600160e01b0319821663780e9d6360e01b1480610645575061064582611ab2565b92915050565b60606000805461065a90612e20565b80601f016020809104026020016040519081016040528092919081815260200182805461068690612e20565b80156106d35780601f106106a8576101008083540402835291602001916106d3565b820191906000526020600020905b8154815290600101906020018083116106b657829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b031661075b5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b60006107828261101f565b9050806001600160a01b0316836001600160a01b031614156107f05760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610752565b336001600160a01b038216148061080c575061080c81336105a5565b61087e5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610752565b6108888383611b02565b505050565b6060610645826040518060400160405280600b81526020016a115b98da185b9d1b595b9d60aa1b8152506019805480602002602001604051908101604052809291908181526020016000905b828210156109855783829060005260206000200180546108f890612e20565b80601f016020809104026020016040519081016040528092919081815260200182805461092490612e20565b80156109715780601f1061094657610100808354040283529160200191610971565b820191906000526020600020905b81548152906001019060200180831161095457829003601f168201915b5050505050815260200190600101906108d9565b50505050611b70565b60606106458260405180604001604052806006815260200165536872696e6560d01b8152506017805480602002602001604051908101604052809291908181526020016000905b828210156109855783829060005260206000200180546109f490612e20565b80601f0160208091040260200160405190810160405280929190818152602001828054610a2090612e20565b8015610a6d5780601f10610a4257610100808354040283529160200191610a6d565b820191906000526020600020905b815481529060010190602001808311610a5057829003601f168201915b5050505050815260200190600101906109d5565b6060610645826040518060400160405280600b81526020016a506572736f6e616c69747960a81b8152506015805480602002602001604051908101604052809291908181526020016000905b82821015610985578382906000526020600020018054610aec90612e20565b80601f0160208091040260200160405190810160405280929190818152602001828054610b1890612e20565b8015610b655780601f10610b3a57610100808354040283529160200191610b65565b820191906000526020600020905b815481529060010190602001808311610b4857829003601f168201915b505050505081526020019060010190610acd565b610b833382611bde565b610b9f5760405162461bcd60e51b815260040161075290612d0a565b610888838383611cd5565b6000610bb583611096565b8210610c175760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610752565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600b546001600160a01b03163314610c6a5760405162461bcd60e51b815260040161075290612cd5565b47610c7d600b546001600160a01b031690565b6001600160a01b03168160405160006040518083038185875af1925050503d8060008114610cc7576040519150601f19603f3d011682016040523d82523d6000602084013e610ccc565b606091505b50505050565b606061064582604051806040016040528060048152602001635479706560e01b8152506014805480602002602001604051908101604052809291908181526020016000905b82821015610985578382906000526020600020018054610d3690612e20565b80601f0160208091040260200160405190810160405280929190818152602001828054610d6290612e20565b8015610daf5780601f10610d8457610100808354040283529160200191610daf565b820191906000526020600020905b815481529060010190602001808311610d9257829003601f168201915b505050505081526020019060010190610d17565b610888838383604051806020016040528060008152506117af565b6002600a541415610e015760405162461bcd60e51b815260040161075290612d5b565b6002600a55600b546001600160a01b03163314610e305760405162461bcd60e51b815260040161075290612cd5565b6136b081118015610e42575061377981105b610e815760405162461bcd60e51b815260206004820152601060248201526f151bdad95b881251081a5b9d985b1a5960821b6044820152606401610752565b610e9c610e96600b546001600160a01b031690565b82611e80565b506001600a55565b6002600a541415610ec75760405162461bcd60e51b815260040161075290612d5b565b6002600a55601354341015610f165760405162461bcd60e51b8152602060048201526015602482015274139bdd08195b9bdd59da08115d1a195c881cd95b9d605a1b6044820152606401610752565b60115460125410610f615760405162461bcd60e51b8152602060048201526015602482015274105b1b081b5bdd5b9d1cc8185c99481b5a5b9d1959605a1b6044820152606401610752565b610f6d33601254611e80565b600160126000828254610f809190612d92565b90915550506001600a55565b6000610f9760085490565b8210610ffa5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610752565b6008828154811061100d5761100d612ecc565b90600052602060002001549050919050565b6000818152600260205260408120546001600160a01b0316806106455760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610752565b60006001600160a01b0382166111015760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610752565b506001600160a01b031660009081526003602052604090205490565b600b546001600160a01b031633146111475760405162461bcd60e51b815260040161075290612cd5565b6111516000611e9e565b565b6060610645826040518060400160405280600b81526020016a10dbdb5b585b991b595b9d60aa1b8152506018805480602002602001604051908101604052809291908181526020016000905b828210156109855783829060005260206000200180546111be90612e20565b80601f01602080910402602001604051908101604052809291908181526020018280546111ea90612e20565b80156112375780601f1061120c57610100808354040283529160200191611237565b820191906000526020600020905b81548152906001019060200180831161121a57829003601f168201915b50505050508152602001906001019061119f565b6002600a54141561126e5760405162461bcd60e51b815260040161075290612d5b565b6002600a55600c546040516331a9108f60e11b81526004810183905233916001600160a01b031690636352211e9060240160206040518083038186803b1580156112b757600080fd5b505afa1580156112cb573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112ef91906126da565b6001600160a01b031614806113865750600d546040516331a9108f60e11b81526004810183905233916001600160a01b031690636352211e9060240160206040518083038186803b15801561134357600080fd5b505afa158015611357573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061137b91906126da565b6001600160a01b0316145b806114135750600e546040516331a9108f60e11b81526004810183905233916001600160a01b031690636352211e9060240160206040518083038186803b1580156113d057600080fd5b505afa1580156113e4573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061140891906126da565b6001600160a01b0316145b806114a05750600f546040516331a9108f60e11b81526004810183905233916001600160a01b031690636352211e9060240160206040518083038186803b15801561145d57600080fd5b505afa158015611471573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061149591906126da565b6001600160a01b0316145b6114f85760405162461bcd60e51b8152602060048201526024808201527f54686973204c6f6f74206973206e6f74206f776e656420627920746865206d69604482015263373a32b960e11b6064820152608401610752565b601154601254106115435760405162461bcd60e51b8152602060048201526015602482015274105b1b081b5bdd5b9d1cc8185c99481b5a5b9d1959605a1b6044820152606401610752565b33600090815260106020526040902054600181106115995760405162461bcd60e51b8152602060048201526013602482015272696e76616c696420636c61696d2074696d657360681b6044820152606401610752565b6115a533601254611e80565b6115ae81612e5b565b336000908152601060205260408120829055601280549293506001929091906115d8908490612d92565b90915550506001600a555050565b60606001805461065a90612e20565b6001600160a01b03821633141561164e5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610752565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b60606106458260405180604001604052806008815260200167417474697475646560c01b8152506016805480602002602001604051908101604052809291908181526020016000905b8282101561098557838290600052602060002001805461172290612e20565b80601f016020809104026020016040519081016040528092919081815260200182805461174e90612e20565b801561179b5780601f106117705761010080835404028352916020019161179b565b820191906000526020600020905b81548152906001019060200180831161177e57829003601f168201915b505050505081526020019060010190611703565b6117b93383611bde565b6117d55760405162461bcd60e51b815260040161075290612d0a565b610ccc84848484611ef0565b60606117eb61268e565b60405180610120016040528060fd8152602001612fc660fd9139815261181083610cd2565b816001602002018190525060405180606001604052806028815260200161310360289139604082015261184283610a81565b6060808301919091526040805191820190526028808252612f246020830139608082015261186f836116ba565b60a082015260408051606081019091526028808252612f75602083013960c082015261189a8361098e565b60e082015260408051606081019091526029808252612f9d60208301396101008201526118c683611153565b61012082015260408051606081019091526029808252612f4c60208301396101408201526118f38361088d565b610160820152604080518082018252600d81526c1e17ba32bc3a1f1e17b9bb339f60991b602080830191909152610180840191909152825181840151838501516060860151608087015160a088015160c0890151975160009861195898909101612996565b60408051808303601f190181529082905260e084015161010085015161012086015161014087015161016088015161018089015195975061199e96889690602001612996565b604051602081830303815290604052905060006119eb6119bd86611f23565b6119c684612021565b6040516020016119d7929190612a28565b604051602081830303815290604052612021565b9050806040516020016119fe9190612bee565b60408051601f1981840301815291905295945050505050565b600b546001600160a01b03163314611a415760405162461bcd60e51b815260040161075290612cd5565b6001600160a01b038116611aa65760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610752565b611aaf81611e9e565b50565b60006001600160e01b031982166380ac58cd60e01b1480611ae357506001600160e01b03198216635b5e139f60e01b145b8061064557506301ffc9a760e01b6001600160e01b0319831614610645565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190611b378261101f565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60606000611ba684611b8187611f23565b604051602001611b92929190612967565b604051602081830303815290604052612187565b9050600083845183611bb89190612e76565b81518110611bc857611bc8612ecc565b6020026020010151905080925050509392505050565b6000818152600260205260408120546001600160a01b0316611c575760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610752565b6000611c628361101f565b9050806001600160a01b0316846001600160a01b03161480611c9d5750836001600160a01b0316611c92846106dd565b6001600160a01b0316145b80611ccd57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316611ce88261101f565b6001600160a01b031614611d505760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610752565b6001600160a01b038216611db25760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610752565b611dbd8383836121b8565b611dc8600082611b02565b6001600160a01b0383166000908152600360205260408120805460019290611df1908490612ddd565b90915550506001600160a01b0382166000908152600360205260408120805460019290611e1f908490612d92565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b611e9a828260405180602001604052806000815250612270565b5050565b600b80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b611efb848484611cd5565b611f07848484846122a3565b610ccc5760405162461bcd60e51b815260040161075290612c83565b606081611f475750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611f715780611f5b81612e5b565b9150611f6a9050600a83612daa565b9150611f4b565b60008167ffffffffffffffff811115611f8c57611f8c612ee2565b6040519080825280601f01601f191660200182016040528015611fb6576020820181803683370190505b5090505b8415611ccd57611fcb600183612ddd565b9150611fd8600a86612e76565b611fe3906030612d92565b60f81b818381518110611ff857611ff8612ecc565b60200101906001600160f81b031916908160001a90535061201a600a86612daa565b9450611fba565b805160609080612041575050604080516020810190915260008152919050565b60006003612050836002612d92565b61205a9190612daa565b612065906004612dbe565b90506000612074826020612d92565b67ffffffffffffffff81111561208c5761208c612ee2565b6040519080825280601f01601f1916602001820160405280156120b6576020820181803683370190505b50905060006040518060600160405280604081526020016130c3604091399050600181016020830160005b86811015612142576003818a01810151603f601282901c8116860151600c83901c8216870151600684901c831688015192909316870151600891821b60ff94851601821b92841692909201901b91160160e01b8352600490920191016120e1565b50600386066001811461215c576002811461216d57612179565b613d3d60f01b600119830152612179565b603d60f81b6000198301525b505050918152949350505050565b60008160405160200161219a919061294b565b60408051601f19818403018152919052805160209091012092915050565b6001600160a01b0383166122135761220e81600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b612236565b816001600160a01b0316836001600160a01b0316146122365761223683826123b0565b6001600160a01b03821661224d576108888161244d565b826001600160a01b0316826001600160a01b0316146108885761088882826124fc565b61227a8383612540565b61228760008484846122a3565b6108885760405162461bcd60e51b815260040161075290612c83565b60006001600160a01b0384163b156123a557604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906122e7903390899088908890600401612c33565b602060405180830381600087803b15801561230157600080fd5b505af1925050508015612331575060408051601f3d908101601f1916820190925261232e918101906128cd565b60015b61238b573d80801561235f576040519150601f19603f3d011682016040523d82523d6000602084013e612364565b606091505b5080516123835760405162461bcd60e51b815260040161075290612c83565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611ccd565b506001949350505050565b600060016123bd84611096565b6123c79190612ddd565b60008381526007602052604090205490915080821461241a576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b60085460009061245f90600190612ddd565b6000838152600960205260408120546008805493945090928490811061248757612487612ecc565b9060005260206000200154905080600883815481106124a8576124a8612ecc565b60009182526020808320909101929092558281526009909152604080822084905585825281205560088054806124e0576124e0612eb6565b6001900381819060005260206000200160009055905550505050565b600061250783611096565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b0382166125965760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610752565b6000818152600260205260409020546001600160a01b0316156125fb5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610752565b612607600083836121b8565b6001600160a01b0382166000908152600360205260408120805460019290612630908490612d92565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b604051806101a00160405280600d905b606081526020019060019003908161269e5790505090565b6000602082840312156126c857600080fd5b81356126d381612ef8565b9392505050565b6000602082840312156126ec57600080fd5b81516126d381612ef8565b6000806040838503121561270a57600080fd5b823561271581612ef8565b9150602083013561272581612ef8565b809150509250929050565b60008060006060848603121561274557600080fd5b833561275081612ef8565b9250602084013561276081612ef8565b929592945050506040919091013590565b6000806000806080858703121561278757600080fd5b843561279281612ef8565b935060208501356127a281612ef8565b925060408501359150606085013567ffffffffffffffff808211156127c657600080fd5b818701915087601f8301126127da57600080fd5b8135818111156127ec576127ec612ee2565b604051601f8201601f19908116603f0116810190838211818310171561281457612814612ee2565b816040528281528a602084870101111561282d57600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b6000806040838503121561286457600080fd5b823561286f81612ef8565b91506020830135801515811461272557600080fd5b6000806040838503121561289757600080fd5b82356128a281612ef8565b946020939093013593505050565b6000602082840312156128c257600080fd5b81356126d381612f0d565b6000602082840312156128df57600080fd5b81516126d381612f0d565b6000602082840312156128fc57600080fd5b5035919050565b6000815180845261291b816020860160208601612df4565b601f01601f19169290920160200192915050565b60008151612941818560208601612df4565b9290920192915050565b6000825161295d818460208701612df4565b9190910192915050565b60008351612979818460208801612df4565b83519083019061298d818360208801612df4565b01949350505050565b6000885160206129a98285838e01612df4565b8951918401916129bc8184848e01612df4565b89519201916129ce8184848d01612df4565b88519201916129e08184848c01612df4565b87519201916129f28184848b01612df4565b8651920191612a048184848a01612df4565b8551920191612a168184848901612df4565b919091019a9950505050505050505050565b6e7b226e616d65223a2022426167202360881b81528251600090612a5381600f850160208801612df4565b7f222c20226465736372697074696f6e223a202254686520737069726974206973600f918401918201527f20696d6275656420696e2065766572797468696e672e20456e646f7765642077602f8201527f6974682066616974682c20737069726974732061726520646569666965642061604f8201527f7320676f642e204465766f6964206f662072656d656d6272616e63652c20676f606f8201527f647320617265206465626173656420617320737069726974732e20416476656e608f8201527f7475726572732c20776974682073776f726420616e64206d616769632c20737060af8201527f726561642074686520666169746820666f7220746865207472756520676f642060cf8201527f616e642064657374726f7920746865206578697374656e6365206f662074686560ef8201527f2066616c736521222c2022696d616765223a2022646174613a696d6167652f7361010f8201526d1d99cade1b5b0ed8985cd94d8d0b60921b61012f820152612be5612bd761013d83018661292f565b61227d60f01b815260020190565b95945050505050565b7f646174613a6170706c69636174696f6e2f6a736f6e3b6261736536342c000000815260008251612c2681601d850160208701612df4565b91909101601d0192915050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612c6690830184612903565b9695505050505050565b6020815260006126d36020830184612903565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6020808252601f908201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604082015260600190565b60008219821115612da557612da5612e8a565b500190565b600082612db957612db9612ea0565b500490565b6000816000190483118215151615612dd857612dd8612e8a565b500290565b600082821015612def57612def612e8a565b500390565b60005b83811015612e0f578181015183820152602001612df7565b83811115610ccc5750506000910152565b600181811c90821680612e3457607f821691505b60208210811415612e5557634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612e6f57612e6f612e8a565b5060010190565b600082612e8557612e85612ea0565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b0381168114611aaf57600080fd5b6001600160e01b031981168114611aaf57600080fdfe3c2f746578743e3c7465787420783d2231302220793d2236302220636c6173733d2262617365223e3c2f746578743e3c7465787420783d2231302220793d223132302220636c6173733d2262617365223e3c2f746578743e3c7465787420783d2231302220793d2238302220636c6173733d2262617365223e3c2f746578743e3c7465787420783d2231302220793d223130302220636c6173733d2262617365223e3c73766720786d6c6e733d22687474703a2f2f7777772e77332e6f72672f323030302f73766722207072657365727665417370656374526174696f3d22784d696e594d696e206d656574222076696577426f783d223020302033353020333530223e3c7374796c653e2e62617365207b2066696c6c3a2077686974653b20666f6e742d66616d696c793a2073657269663b20666f6e742d73697a653a20313470783b207d3c2f7374796c653e3c726563742077696474683d223130302522206865696768743d2231303025222066696c6c3d22626c61636b22202f3e3c7465787420783d2231302220793d2232302220636c6173733d2262617365223e4142434445464748494a4b4c4d4e4f505152535455565758595a6162636465666768696a6b6c6d6e6f707172737475767778797a303132333435363738392b2f3c2f746578743e3c7465787420783d2231302220793d2234302220636c6173733d2262617365223ea264697066735822122016350b5a832e7dc780250a55b6d6c167504b2f2cd030dfaadc7aa8b6797d425364736f6c63430008070033596f75207368616c6c20626520746f6c6572616e7420616e6420616363657074696e672e596f75207368616c6c20747265617420737472616e676572732077697468206b696e646e6573732e476c6f72696f75732053656372657473206f6620466561746865722046616c6c696e67596f75207368616c6c206e6f742073747261792066726f6d20746865207472756520706174682e596f75207368616c6c20776f726b20666f72206120776f726c6420696e2062616c616e63652e546f6b656e206f66205265696e666f7263656420556e6465727374616e64696e67596f75207368616c6c206e6f7420646573697265206f74686572277320706f7373657373696f6e732e596f75207368616c6c206e6f74206361757365206368616f73206f72206d617968656d2e476c6f72696f757320436861726765206f662074686520447261676f6e626f726e596f75207368616c6c206e6f742061637420776974682068617472656420696e20796f75722068656172742e596f75207368616c6c20626520636f6e7369646572617465206f66206f74686572732077656c6c206265696e672e426c657373696e67206f66205375706572696f722041646170746162696c697479596f75207368616c6c206e6f7420626574726179206f74686572732c20796f757273656c66206f7220676f642e496e667573696f6e206f6620496e6372656173656420436f6e6a75726174696f6e73596f75207368616c6c206361726520666f72206368696c6472656e206f727068616e6564206279206d6973666f7274756e652e596f75207368616c6c206e6f7420737072656164206c696573206f722072756d6f72732e596f75207368616c6c206c6976652066756c6c7920696e20746865206865726520616e64206e6f772e596f75207368616c6c206c6f7665206f7468657273206c696b6520796f75206c6f766520676f642e596f75207368616c6c206e6f74206c75737420616674657220616e6f746865722e596f75207368616c6c2074616b6520726573706f6e736962696c69747920666f7220796f757220616374696f6e732e596f75207368616c6c207365656b206f757420796f757220706c61636520696e2074686520776f726c642e596f75207368616c6c207365656b20796f757220706c6163652061732061206368696c64206f6620676f642e496d7065636361626c6520456e6368616e746d656e74206f6620546974616e69632042726176657279596f75207368616c6c206769766520746f2063686172697479207768617420796f752063616e2073706172652e596f75207368616c6c206e6f7420646573697265206d6f7265207468616e20796f757220666169722073686172652e596f75207368616c6c20737072656164206c6175676874657220776865726520706f737369626c652e596f75207368616c6c2070726f766520796f757220776f727468206576657279206461792e596f75207368616c6c207374696d756c617465206372656174697669747920616e6420637572696f736974792e596f75207368616c6c2062656c6965766520696e206e6f206f7468657220676f64732e596f75207368616c6c20776f726b206861726420616e64207370656e6420776973656c792e596f75207368616c6c207265706179206b696e646e6573732077697468206b696e646e6573732e436f6c6f7373616c20456e6368616e746d656e74206f6620486f742054656d70657273596f75207368616c6c206e6f74206d7564646c6520796f7572206d696e64207769746820616e79207375627374616e6365732e596f75207368616c6c20626520756e69746564206f72207365656b20756e697479206966207468657265206973206e6f6e652e596f75207368616c6c206e6f7420696e64756c676520696e20676c7574746f6e792e596f75207368616c6c206e6f74206465736572742074686f73652077686f20636f756e74206f6e20796f752e537472656e677468656e6564204d697261636c65206f66207468652041726d61676564646f6e596f75207368616c6c206e6f742062657472617920796f75722066616d696c792e596f75207368616c6c2062652070726f7564206f6e6c79206f66206f74686572732e596f75207368616c6c206c6f6f6b20616674657220796f7572206d696e6420616e6420626f64792e596f75207368616c6c206c6f766520796f7572206368696c6472656e20756e636f6e646974696f6e616c6c792e596f75207368616c6c206e6f74206c65742066656172206f76657274616b6520796f7572206a7564676d656e742e596f75207368616c6c206e6f7420666f7267652074686520776f7264206f6620676f642e596f75207368616c6c206e6f7420616275736520706f77657220696e20616e7920666f726d2e596f75207368616c6c2070657273657665726520616e642062652072657761726465642e596f75207368616c6c206e6f742074616b65206c69666520666f72206772616e7465642e596f75207368616c6c206e6f7420776f72736869702066616c73652069646f6c732e596f75207368616c6c206e6f7420756e6c6561736820796f757220616e67657273206f6e746f206f74686572732e596f75207368616c6c206f666665722061206d65616c20746f2068756e67727920737472616e676572732e596f75207368616c6c2074616b65206f6e6c79207468617420776869636820697320676976656e2e596f75207368616c6c2061736b20676f6420666f7220666f72676976656e65737320666f7220796f75722073696e732e596f75207368616c6c2061736b206f6e6c7920666169722070726963657320666f72207768617420796f752070726f647563652e596f75207368616c6c206e6f74207175657374696f6e20676f64206f7220676f64277320776f72642e476c6f72696f757320417370656374206f6620416e696d616c69737469632043756e6e696e67596f75207368616c6c206e6f742063656e736f72206f70706f73696e67206f70696e696f6e732e596f75207368616c6c206e6f742061637420637275656c20746f7761726420616e79206c6966652e596f75207368616c6c207072617920746f206d65206f6e2074686520736576656e7468206461792e537472656e677468656e65642054726962757465206f6620556e6465727374616e64696e67436f6c6f7373616c20537061726b206f662047686f73746c7920457373656e636573456e6368616e746d656e74206f66204d79746869632044657465726d696e6174696f6e596f75207368616c6c206e6f7420626f6173742061626f757420796f757220616368696576656d656e74732e596f75207368616c6c206e6f74206c6976652061206c696665206f662076616e6974792e596f75207368616c6c20626520636f6e7369646572617465206f66206f7468657273206665656c696e67732e596f75207368616c6c20656e636f7572616765206f74686572732077686f20666f6c6c6f77207468652070617468206f6620676f642e417474756e656d656e74206f6620476c6f72696f757320536f756c6d656e64696e67596f75207368616c6c206e6f742074616b65206d79206e616d6520696e207661696e2e596f75207368616c6c2073686f7720636f6d70617373696f6e20616e64206d657263792e596f75207368616c6c20626520636f6e74656e74207768656e206c69666520697320676f6f642e596f75207368616c6c2074616b6520726573706f6e736962696c69747920666f7220796f7572206d697374616b65732e596f75207368616c6c2073747269666520666f722061206c69666520696e206861726d6f6e79207769746820616c6c2e596f75207368616c6c2072657761726420746865206c617a696e657373206f66206f74686572732e596f75207368616c6c206f6666657220796f7572207365727669636520746f2074686f736520696e206e6565642e596f75207368616c6c207365656b20746f20756e6465727374616e64207468617420776869636820796f7520646f206e6f742e596f75207368616c6c207570686f6c64206f7264657220616e6420706561636520696e20676f64277320776f726c642e596f75207368616c6c2064657461636820796f757273656c662066726f6d206461726b20646573697265732e596f75207368616c6c206e6f7420757365206f72207468696e6b206f662070656f706c652061732070726f70657274792e596f75207368616c6c20747275737420696e20676f642061626f766520616c6c20656c73652e596f75207368616c6c20626520627261766520696e207468652066616365206f662064616e6765722e

Deployed Bytecode

0x6080604052600436106101ee5760003560e01c80636352211e1161010d578063a22cb465116100a0578063c87b56dd1161006f578063c87b56dd14610554578063d5abeb0114610574578063e985e9c51461058a578063f2fde38b146105d3578063f7e77bc2146105f357600080fd5b8063a22cb465146104de578063a7625c97146104fe578063a945bf801461051e578063b88d4fde1461053457600080fd5b80638ac79cc2116100dc5780638ac79cc21461046b5780638da5cb5b1461048b5780638f77ec8c146104a957806395d89b41146104c957600080fd5b80636352211e1461040057806370a0823114610420578063715018a614610440578063771282f61461045557600080fd5b806323b872dd1161018557806342842e0e1161015457806342842e0e14610398578063434f48c4146103b85780634e71d92d146103d85780634f6ccce7146103e057600080fd5b806323b872dd146103235780632f745c59146103435780633ccfd60b146103635780634036ab781461037857600080fd5b806314661ab5116101c157806314661ab5146102a457806314906d30146102c457806318160ddd146102e45780631ade97f71461030357600080fd5b806301ffc9a7146101f357806306fdde0314610228578063081812fc1461024a578063095ea7b314610282575b600080fd5b3480156101ff57600080fd5b5061021361020e3660046128b0565b610620565b60405190151581526020015b60405180910390f35b34801561023457600080fd5b5061023d61064b565b60405161021f9190612c70565b34801561025657600080fd5b5061026a6102653660046128ea565b6106dd565b6040516001600160a01b03909116815260200161021f565b34801561028e57600080fd5b506102a261029d366004612884565b610777565b005b3480156102b057600080fd5b5061023d6102bf3660046128ea565b61088d565b3480156102d057600080fd5b5061023d6102df3660046128ea565b61098e565b3480156102f057600080fd5b506008545b60405190815260200161021f565b34801561030f57600080fd5b5061023d61031e3660046128ea565b610a81565b34801561032f57600080fd5b506102a261033e366004612730565b610b79565b34801561034f57600080fd5b506102f561035e366004612884565b610baa565b34801561036f57600080fd5b506102a2610c40565b34801561038457600080fd5b5061023d6103933660046128ea565b610cd2565b3480156103a457600080fd5b506102a26103b3366004612730565b610dc3565b3480156103c457600080fd5b506102a26103d33660046128ea565b610dde565b6102a2610ea4565b3480156103ec57600080fd5b506102f56103fb3660046128ea565b610f8c565b34801561040c57600080fd5b5061026a61041b3660046128ea565b61101f565b34801561042c57600080fd5b506102f561043b3660046126b6565b611096565b34801561044c57600080fd5b506102a261111d565b34801561046157600080fd5b506102f560125481565b34801561047757600080fd5b5061023d6104863660046128ea565b611153565b34801561049757600080fd5b50600b546001600160a01b031661026a565b3480156104b557600080fd5b506102a26104c43660046128ea565b61124b565b3480156104d557600080fd5b5061023d6115e6565b3480156104ea57600080fd5b506102a26104f9366004612851565b6115f5565b34801561050a57600080fd5b5061023d6105193660046128ea565b6116ba565b34801561052a57600080fd5b506102f560135481565b34801561054057600080fd5b506102a261054f366004612771565b6117af565b34801561056057600080fd5b5061023d61056f3660046128ea565b6117e1565b34801561058057600080fd5b506102f560115481565b34801561059657600080fd5b506102136105a53660046126f7565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b3480156105df57600080fd5b506102a26105ee3660046126b6565b611a17565b3480156105ff57600080fd5b506102f561060e3660046126b6565b60106020526000908152604090205481565b60006001600160e01b0319821663780e9d6360e01b1480610645575061064582611ab2565b92915050565b60606000805461065a90612e20565b80601f016020809104026020016040519081016040528092919081815260200182805461068690612e20565b80156106d35780601f106106a8576101008083540402835291602001916106d3565b820191906000526020600020905b8154815290600101906020018083116106b657829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b031661075b5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b60006107828261101f565b9050806001600160a01b0316836001600160a01b031614156107f05760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610752565b336001600160a01b038216148061080c575061080c81336105a5565b61087e5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610752565b6108888383611b02565b505050565b6060610645826040518060400160405280600b81526020016a115b98da185b9d1b595b9d60aa1b8152506019805480602002602001604051908101604052809291908181526020016000905b828210156109855783829060005260206000200180546108f890612e20565b80601f016020809104026020016040519081016040528092919081815260200182805461092490612e20565b80156109715780601f1061094657610100808354040283529160200191610971565b820191906000526020600020905b81548152906001019060200180831161095457829003601f168201915b5050505050815260200190600101906108d9565b50505050611b70565b60606106458260405180604001604052806006815260200165536872696e6560d01b8152506017805480602002602001604051908101604052809291908181526020016000905b828210156109855783829060005260206000200180546109f490612e20565b80601f0160208091040260200160405190810160405280929190818152602001828054610a2090612e20565b8015610a6d5780601f10610a4257610100808354040283529160200191610a6d565b820191906000526020600020905b815481529060010190602001808311610a5057829003601f168201915b5050505050815260200190600101906109d5565b6060610645826040518060400160405280600b81526020016a506572736f6e616c69747960a81b8152506015805480602002602001604051908101604052809291908181526020016000905b82821015610985578382906000526020600020018054610aec90612e20565b80601f0160208091040260200160405190810160405280929190818152602001828054610b1890612e20565b8015610b655780601f10610b3a57610100808354040283529160200191610b65565b820191906000526020600020905b815481529060010190602001808311610b4857829003601f168201915b505050505081526020019060010190610acd565b610b833382611bde565b610b9f5760405162461bcd60e51b815260040161075290612d0a565b610888838383611cd5565b6000610bb583611096565b8210610c175760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610752565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600b546001600160a01b03163314610c6a5760405162461bcd60e51b815260040161075290612cd5565b47610c7d600b546001600160a01b031690565b6001600160a01b03168160405160006040518083038185875af1925050503d8060008114610cc7576040519150601f19603f3d011682016040523d82523d6000602084013e610ccc565b606091505b50505050565b606061064582604051806040016040528060048152602001635479706560e01b8152506014805480602002602001604051908101604052809291908181526020016000905b82821015610985578382906000526020600020018054610d3690612e20565b80601f0160208091040260200160405190810160405280929190818152602001828054610d6290612e20565b8015610daf5780601f10610d8457610100808354040283529160200191610daf565b820191906000526020600020905b815481529060010190602001808311610d9257829003601f168201915b505050505081526020019060010190610d17565b610888838383604051806020016040528060008152506117af565b6002600a541415610e015760405162461bcd60e51b815260040161075290612d5b565b6002600a55600b546001600160a01b03163314610e305760405162461bcd60e51b815260040161075290612cd5565b6136b081118015610e42575061377981105b610e815760405162461bcd60e51b815260206004820152601060248201526f151bdad95b881251081a5b9d985b1a5960821b6044820152606401610752565b610e9c610e96600b546001600160a01b031690565b82611e80565b506001600a55565b6002600a541415610ec75760405162461bcd60e51b815260040161075290612d5b565b6002600a55601354341015610f165760405162461bcd60e51b8152602060048201526015602482015274139bdd08195b9bdd59da08115d1a195c881cd95b9d605a1b6044820152606401610752565b60115460125410610f615760405162461bcd60e51b8152602060048201526015602482015274105b1b081b5bdd5b9d1cc8185c99481b5a5b9d1959605a1b6044820152606401610752565b610f6d33601254611e80565b600160126000828254610f809190612d92565b90915550506001600a55565b6000610f9760085490565b8210610ffa5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610752565b6008828154811061100d5761100d612ecc565b90600052602060002001549050919050565b6000818152600260205260408120546001600160a01b0316806106455760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610752565b60006001600160a01b0382166111015760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610752565b506001600160a01b031660009081526003602052604090205490565b600b546001600160a01b031633146111475760405162461bcd60e51b815260040161075290612cd5565b6111516000611e9e565b565b6060610645826040518060400160405280600b81526020016a10dbdb5b585b991b595b9d60aa1b8152506018805480602002602001604051908101604052809291908181526020016000905b828210156109855783829060005260206000200180546111be90612e20565b80601f01602080910402602001604051908101604052809291908181526020018280546111ea90612e20565b80156112375780601f1061120c57610100808354040283529160200191611237565b820191906000526020600020905b81548152906001019060200180831161121a57829003601f168201915b50505050508152602001906001019061119f565b6002600a54141561126e5760405162461bcd60e51b815260040161075290612d5b565b6002600a55600c546040516331a9108f60e11b81526004810183905233916001600160a01b031690636352211e9060240160206040518083038186803b1580156112b757600080fd5b505afa1580156112cb573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112ef91906126da565b6001600160a01b031614806113865750600d546040516331a9108f60e11b81526004810183905233916001600160a01b031690636352211e9060240160206040518083038186803b15801561134357600080fd5b505afa158015611357573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061137b91906126da565b6001600160a01b0316145b806114135750600e546040516331a9108f60e11b81526004810183905233916001600160a01b031690636352211e9060240160206040518083038186803b1580156113d057600080fd5b505afa1580156113e4573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061140891906126da565b6001600160a01b0316145b806114a05750600f546040516331a9108f60e11b81526004810183905233916001600160a01b031690636352211e9060240160206040518083038186803b15801561145d57600080fd5b505afa158015611471573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061149591906126da565b6001600160a01b0316145b6114f85760405162461bcd60e51b8152602060048201526024808201527f54686973204c6f6f74206973206e6f74206f776e656420627920746865206d69604482015263373a32b960e11b6064820152608401610752565b601154601254106115435760405162461bcd60e51b8152602060048201526015602482015274105b1b081b5bdd5b9d1cc8185c99481b5a5b9d1959605a1b6044820152606401610752565b33600090815260106020526040902054600181106115995760405162461bcd60e51b8152602060048201526013602482015272696e76616c696420636c61696d2074696d657360681b6044820152606401610752565b6115a533601254611e80565b6115ae81612e5b565b336000908152601060205260408120829055601280549293506001929091906115d8908490612d92565b90915550506001600a555050565b60606001805461065a90612e20565b6001600160a01b03821633141561164e5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610752565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b60606106458260405180604001604052806008815260200167417474697475646560c01b8152506016805480602002602001604051908101604052809291908181526020016000905b8282101561098557838290600052602060002001805461172290612e20565b80601f016020809104026020016040519081016040528092919081815260200182805461174e90612e20565b801561179b5780601f106117705761010080835404028352916020019161179b565b820191906000526020600020905b81548152906001019060200180831161177e57829003601f168201915b505050505081526020019060010190611703565b6117b93383611bde565b6117d55760405162461bcd60e51b815260040161075290612d0a565b610ccc84848484611ef0565b60606117eb61268e565b60405180610120016040528060fd8152602001612fc660fd9139815261181083610cd2565b816001602002018190525060405180606001604052806028815260200161310360289139604082015261184283610a81565b6060808301919091526040805191820190526028808252612f246020830139608082015261186f836116ba565b60a082015260408051606081019091526028808252612f75602083013960c082015261189a8361098e565b60e082015260408051606081019091526029808252612f9d60208301396101008201526118c683611153565b61012082015260408051606081019091526029808252612f4c60208301396101408201526118f38361088d565b610160820152604080518082018252600d81526c1e17ba32bc3a1f1e17b9bb339f60991b602080830191909152610180840191909152825181840151838501516060860151608087015160a088015160c0890151975160009861195898909101612996565b60408051808303601f190181529082905260e084015161010085015161012086015161014087015161016088015161018089015195975061199e96889690602001612996565b604051602081830303815290604052905060006119eb6119bd86611f23565b6119c684612021565b6040516020016119d7929190612a28565b604051602081830303815290604052612021565b9050806040516020016119fe9190612bee565b60408051601f1981840301815291905295945050505050565b600b546001600160a01b03163314611a415760405162461bcd60e51b815260040161075290612cd5565b6001600160a01b038116611aa65760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610752565b611aaf81611e9e565b50565b60006001600160e01b031982166380ac58cd60e01b1480611ae357506001600160e01b03198216635b5e139f60e01b145b8061064557506301ffc9a760e01b6001600160e01b0319831614610645565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190611b378261101f565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60606000611ba684611b8187611f23565b604051602001611b92929190612967565b604051602081830303815290604052612187565b9050600083845183611bb89190612e76565b81518110611bc857611bc8612ecc565b6020026020010151905080925050509392505050565b6000818152600260205260408120546001600160a01b0316611c575760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610752565b6000611c628361101f565b9050806001600160a01b0316846001600160a01b03161480611c9d5750836001600160a01b0316611c92846106dd565b6001600160a01b0316145b80611ccd57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316611ce88261101f565b6001600160a01b031614611d505760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610752565b6001600160a01b038216611db25760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610752565b611dbd8383836121b8565b611dc8600082611b02565b6001600160a01b0383166000908152600360205260408120805460019290611df1908490612ddd565b90915550506001600160a01b0382166000908152600360205260408120805460019290611e1f908490612d92565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b611e9a828260405180602001604052806000815250612270565b5050565b600b80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b611efb848484611cd5565b611f07848484846122a3565b610ccc5760405162461bcd60e51b815260040161075290612c83565b606081611f475750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611f715780611f5b81612e5b565b9150611f6a9050600a83612daa565b9150611f4b565b60008167ffffffffffffffff811115611f8c57611f8c612ee2565b6040519080825280601f01601f191660200182016040528015611fb6576020820181803683370190505b5090505b8415611ccd57611fcb600183612ddd565b9150611fd8600a86612e76565b611fe3906030612d92565b60f81b818381518110611ff857611ff8612ecc565b60200101906001600160f81b031916908160001a90535061201a600a86612daa565b9450611fba565b805160609080612041575050604080516020810190915260008152919050565b60006003612050836002612d92565b61205a9190612daa565b612065906004612dbe565b90506000612074826020612d92565b67ffffffffffffffff81111561208c5761208c612ee2565b6040519080825280601f01601f1916602001820160405280156120b6576020820181803683370190505b50905060006040518060600160405280604081526020016130c3604091399050600181016020830160005b86811015612142576003818a01810151603f601282901c8116860151600c83901c8216870151600684901c831688015192909316870151600891821b60ff94851601821b92841692909201901b91160160e01b8352600490920191016120e1565b50600386066001811461215c576002811461216d57612179565b613d3d60f01b600119830152612179565b603d60f81b6000198301525b505050918152949350505050565b60008160405160200161219a919061294b565b60408051601f19818403018152919052805160209091012092915050565b6001600160a01b0383166122135761220e81600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b612236565b816001600160a01b0316836001600160a01b0316146122365761223683826123b0565b6001600160a01b03821661224d576108888161244d565b826001600160a01b0316826001600160a01b0316146108885761088882826124fc565b61227a8383612540565b61228760008484846122a3565b6108885760405162461bcd60e51b815260040161075290612c83565b60006001600160a01b0384163b156123a557604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906122e7903390899088908890600401612c33565b602060405180830381600087803b15801561230157600080fd5b505af1925050508015612331575060408051601f3d908101601f1916820190925261232e918101906128cd565b60015b61238b573d80801561235f576040519150601f19603f3d011682016040523d82523d6000602084013e612364565b606091505b5080516123835760405162461bcd60e51b815260040161075290612c83565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611ccd565b506001949350505050565b600060016123bd84611096565b6123c79190612ddd565b60008381526007602052604090205490915080821461241a576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b60085460009061245f90600190612ddd565b6000838152600960205260408120546008805493945090928490811061248757612487612ecc565b9060005260206000200154905080600883815481106124a8576124a8612ecc565b60009182526020808320909101929092558281526009909152604080822084905585825281205560088054806124e0576124e0612eb6565b6001900381819060005260206000200160009055905550505050565b600061250783611096565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b0382166125965760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610752565b6000818152600260205260409020546001600160a01b0316156125fb5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610752565b612607600083836121b8565b6001600160a01b0382166000908152600360205260408120805460019290612630908490612d92565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b604051806101a00160405280600d905b606081526020019060019003908161269e5790505090565b6000602082840312156126c857600080fd5b81356126d381612ef8565b9392505050565b6000602082840312156126ec57600080fd5b81516126d381612ef8565b6000806040838503121561270a57600080fd5b823561271581612ef8565b9150602083013561272581612ef8565b809150509250929050565b60008060006060848603121561274557600080fd5b833561275081612ef8565b9250602084013561276081612ef8565b929592945050506040919091013590565b6000806000806080858703121561278757600080fd5b843561279281612ef8565b935060208501356127a281612ef8565b925060408501359150606085013567ffffffffffffffff808211156127c657600080fd5b818701915087601f8301126127da57600080fd5b8135818111156127ec576127ec612ee2565b604051601f8201601f19908116603f0116810190838211818310171561281457612814612ee2565b816040528281528a602084870101111561282d57600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b6000806040838503121561286457600080fd5b823561286f81612ef8565b91506020830135801515811461272557600080fd5b6000806040838503121561289757600080fd5b82356128a281612ef8565b946020939093013593505050565b6000602082840312156128c257600080fd5b81356126d381612f0d565b6000602082840312156128df57600080fd5b81516126d381612f0d565b6000602082840312156128fc57600080fd5b5035919050565b6000815180845261291b816020860160208601612df4565b601f01601f19169290920160200192915050565b60008151612941818560208601612df4565b9290920192915050565b6000825161295d818460208701612df4565b9190910192915050565b60008351612979818460208801612df4565b83519083019061298d818360208801612df4565b01949350505050565b6000885160206129a98285838e01612df4565b8951918401916129bc8184848e01612df4565b89519201916129ce8184848d01612df4565b88519201916129e08184848c01612df4565b87519201916129f28184848b01612df4565b8651920191612a048184848a01612df4565b8551920191612a168184848901612df4565b919091019a9950505050505050505050565b6e7b226e616d65223a2022426167202360881b81528251600090612a5381600f850160208801612df4565b7f222c20226465736372697074696f6e223a202254686520737069726974206973600f918401918201527f20696d6275656420696e2065766572797468696e672e20456e646f7765642077602f8201527f6974682066616974682c20737069726974732061726520646569666965642061604f8201527f7320676f642e204465766f6964206f662072656d656d6272616e63652c20676f606f8201527f647320617265206465626173656420617320737069726974732e20416476656e608f8201527f7475726572732c20776974682073776f726420616e64206d616769632c20737060af8201527f726561642074686520666169746820666f7220746865207472756520676f642060cf8201527f616e642064657374726f7920746865206578697374656e6365206f662074686560ef8201527f2066616c736521222c2022696d616765223a2022646174613a696d6167652f7361010f8201526d1d99cade1b5b0ed8985cd94d8d0b60921b61012f820152612be5612bd761013d83018661292f565b61227d60f01b815260020190565b95945050505050565b7f646174613a6170706c69636174696f6e2f6a736f6e3b6261736536342c000000815260008251612c2681601d850160208701612df4565b91909101601d0192915050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612c6690830184612903565b9695505050505050565b6020815260006126d36020830184612903565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6020808252601f908201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604082015260600190565b60008219821115612da557612da5612e8a565b500190565b600082612db957612db9612ea0565b500490565b6000816000190483118215151615612dd857612dd8612e8a565b500290565b600082821015612def57612def612e8a565b500390565b60005b83811015612e0f578181015183820152602001612df7565b83811115610ccc5750506000910152565b600181811c90821680612e3457607f821691505b60208210811415612e5557634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612e6f57612e6f612e8a565b5060010190565b600082612e8557612e85612ea0565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b0381168114611aaf57600080fd5b6001600160e01b031981168114611aaf57600080fdfe3c2f746578743e3c7465787420783d2231302220793d2236302220636c6173733d2262617365223e3c2f746578743e3c7465787420783d2231302220793d223132302220636c6173733d2262617365223e3c2f746578743e3c7465787420783d2231302220793d2238302220636c6173733d2262617365223e3c2f746578743e3c7465787420783d2231302220793d223130302220636c6173733d2262617365223e3c73766720786d6c6e733d22687474703a2f2f7777772e77332e6f72672f323030302f73766722207072657365727665417370656374526174696f3d22784d696e594d696e206d656574222076696577426f783d223020302033353020333530223e3c7374796c653e2e62617365207b2066696c6c3a2077686974653b20666f6e742d66616d696c793a2073657269663b20666f6e742d73697a653a20313470783b207d3c2f7374796c653e3c726563742077696474683d223130302522206865696768743d2231303025222066696c6c3d22626c61636b22202f3e3c7465787420783d2231302220793d2232302220636c6173733d2262617365223e4142434445464748494a4b4c4d4e4f505152535455565758595a6162636465666768696a6b6c6d6e6f707172737475767778797a303132333435363738392b2f3c2f746578743e3c7465787420783d2231302220793d2234302220636c6173733d2262617365223ea264697066735822122016350b5a832e7dc780250a55b6d6c167504b2f2cd030dfaadc7aa8b6797d425364736f6c63430008070033

Deployed Bytecode Sourcemap

46464:31344:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40052:300;;;;;;;;;;-1:-1:-1;40052:300:0;;;;;:::i;:::-;;:::i;:::-;;;9885:14:1;;9878:22;9860:41;;9848:2;9833:18;40052:300:0;;;;;;;;26417:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;28110:308::-;;;;;;;;;;-1:-1:-1;28110:308:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;9183:32:1;;;9165:51;;9153:2;9138:18;28110:308:0;9019:203:1;27633:411:0;;;;;;;;;;-1:-1:-1;27633:411:0;;;;;:::i;:::-;;:::i;:::-;;72618:178;;;;;;;;;;-1:-1:-1;72618:178:0;;;;;:::i;:::-;;:::i;72293:131::-;;;;;;;;;;-1:-1:-1;72293:131:0;;;;;:::i;:::-;;:::i;40855:113::-;;;;;;;;;;-1:-1:-1;40943:10:0;:17;40855:113;;;19231:25:1;;;19219:2;19204:18;40855:113:0;19085:177:1;71961:179:0;;;;;;;;;;-1:-1:-1;71961:179:0;;;;;:::i;:::-;;:::i;29169:376::-;;;;;;;;;;-1:-1:-1;29169:376:0;;;;;:::i;:::-;;:::i;40436:343::-;;;;;;;;;;-1:-1:-1;40436:343:0;;;;;:::i;:::-;;:::i;76870:147::-;;;;;;;;;;;;;:::i;71828:125::-;;;;;;;;;;-1:-1:-1;71828:125:0;;;;;:::i;:::-;;:::i;29616:185::-;;;;;;;;;;-1:-1:-1;29616:185:0;;;;;:::i;:::-;;:::i;76675:187::-;;;;;;;;;;-1:-1:-1;76675:187:0;;;;;:::i;:::-;;:::i;76397:270::-;;;:::i;41045:320::-;;;;;;;;;;-1:-1:-1;41045:320:0;;;;;:::i;:::-;;:::i;26024:326::-;;;;;;;;;;-1:-1:-1;26024:326:0;;;;;:::i;:::-;;:::i;25667:295::-;;;;;;;;;;-1:-1:-1;25667:295:0;;;;;:::i;:::-;;:::i;10103:94::-;;;;;;;;;;;;;:::i;46950:32::-;;;;;;;;;;;;;;;;72432:178;;;;;;;;;;-1:-1:-1;72432:178:0;;;;;:::i;:::-;;:::i;9452:87::-;;;;;;;;;;-1:-1:-1;9525:6:0;;-1:-1:-1;;;;;9525:6:0;9452:87;;75697:692;;;;;;;;;;-1:-1:-1;75697:692:0;;;;;:::i;:::-;;:::i;26586:104::-;;;;;;;;;;;;;:::i;28490:327::-;;;;;;;;;;-1:-1:-1;28490:327:0;;;;;:::i;:::-;;:::i;72148:137::-;;;;;;;;;;-1:-1:-1;72148:137:0;;;;;:::i;:::-;;:::i;46991:46::-;;;;;;;;;;;;;;;;29872:365;;;;;;;;;;-1:-1:-1;29872:365:0;;;;;:::i;:::-;;:::i;73186:2503::-;;;;;;;;;;-1:-1:-1;73186:2503:0;;;;;:::i;:::-;;:::i;46911:32::-;;;;;;;;;;;;;;;;28888:214;;;;;;;;;;-1:-1:-1;28888:214:0;;;;;:::i;:::-;-1:-1:-1;;;;;29059:25:0;;;29030:4;29059:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;28888:214;10352:229;;;;;;;;;;-1:-1:-1;10352:229:0;;;;;:::i;:::-;;:::i;46856:46::-;;;;;;;;;;-1:-1:-1;46856:46:0;;;;;:::i;:::-;;;;;;;;;;;;;;40052:300;40199:4;-1:-1:-1;;;;;;40241:50:0;;-1:-1:-1;;;40241:50:0;;:103;;;40308:36;40332:11;40308:23;:36::i;:::-;40221:123;40052:300;-1:-1:-1;;40052:300:0:o;26417:100::-;26471:13;26504:5;26497:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26417:100;:::o;28110:308::-;28231:7;31873:16;;;:7;:16;;;;;;-1:-1:-1;;;;;31873:16:0;28256:110;;;;-1:-1:-1;;;28256:110:0;;15760:2:1;28256:110:0;;;15742:21:1;15799:2;15779:18;;;15772:30;15838:34;15818:18;;;15811:62;-1:-1:-1;;;15889:18:1;;;15882:42;15941:19;;28256:110:0;;;;;;;;;-1:-1:-1;28386:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;28386:24:0;;28110:308::o;27633:411::-;27714:13;27730:23;27745:7;27730:14;:23::i;:::-;27714:39;;27778:5;-1:-1:-1;;;;;27772:11:0;:2;-1:-1:-1;;;;;27772:11:0;;;27764:57;;;;-1:-1:-1;;;27764:57:0;;17694:2:1;27764:57:0;;;17676:21:1;17733:2;17713:18;;;17706:30;17772:34;17752:18;;;17745:62;-1:-1:-1;;;17823:18:1;;;17816:31;17864:19;;27764:57:0;17492:397:1;27764:57:0;8383:10;-1:-1:-1;;;;;27856:21:0;;;;:62;;-1:-1:-1;27881:37:0;27898:5;8383:10;28888:214;:::i;27881:37::-;27834:168;;;;-1:-1:-1;;;27834:168:0;;14153:2:1;27834:168:0;;;14135:21:1;14192:2;14172:18;;;14165:30;14231:34;14211:18;;;14204:62;14302:26;14282:18;;;14275:54;14346:19;;27834:168:0;13951:420:1;27834:168:0;28015:21;28024:2;28028:7;28015:8;:21::i;:::-;27703:341;27633:411;;:::o;72618:178::-;72707:13;72745:43;72751:7;72745:43;;;;;;;;;;;;;-1:-1:-1;;;72745:43:0;;;72775:12;72745:43;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:5;:43::i;72293:131::-;72350:13;72383:33;72389:7;72383:33;;;;;;;;;;;;;-1:-1:-1;;;72383:33:0;;;72408:7;72383:33;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;71961:179;72050:13;72088:44;72094:7;72088:44;;;;;;;;;;;;;-1:-1:-1;;;72088:44:0;;;72118:13;72088:44;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29169:376;29378:41;8383:10;29411:7;29378:18;:41::i;:::-;29356:140;;;;-1:-1:-1;;;29356:140:0;;;;;;;:::i;:::-;29509:28;29519:4;29525:2;29529:7;29509:9;:28::i;40436:343::-;40578:7;40633:23;40650:5;40633:16;:23::i;:::-;40625:5;:31;40603:124;;;;-1:-1:-1;;;40603:124:0;;10688:2:1;40603:124:0;;;10670:21:1;10727:2;10707:18;;;10700:30;10766:34;10746:18;;;10739:62;-1:-1:-1;;;10817:18:1;;;10810:41;10868:19;;40603:124:0;10486:407:1;40603:124:0;-1:-1:-1;;;;;;40745:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;40436:343::o;76870:147::-;9525:6;;-1:-1:-1;;;;;9525:6:0;8383:10;9672:23;9664:68;;;;-1:-1:-1;;;9664:68:0;;;;;;;:::i;:::-;76936:21:::1;76976:7;9525:6:::0;;-1:-1:-1;;;;;9525:6:0;;9452:87;76976:7:::1;-1:-1:-1::0;;;;;76968:21:0::1;76997:7;76968:41;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;76907:110;76870:147::o:0;71828:125::-;71883:13;71916:29;71922:7;71916:29;;;;;;;;;;;;;-1:-1:-1;;;71916:29:0;;;71939:5;71916:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29616:185;29754:39;29771:4;29777:2;29781:7;29754:39;;;;;;;;;;;;:16;:39::i;76675:187::-;12420:1;13016:7;;:19;;13008:63;;;;-1:-1:-1;;;13008:63:0;;;;;;;:::i;:::-;12420:1;13149:7;:18;9525:6;;-1:-1:-1;;;;;9525:6:0;8383:10;9672:23:::1;9664:68;;;;-1:-1:-1::0;;;9664:68:0::1;;;;;;;:::i;:::-;76771:5:::2;76761:7;:15;:34;;;;;76790:5;76780:7;:15;76761:34;76753:63;;;::::0;-1:-1:-1;;;76753:63:0;;16534:2:1;76753:63:0::2;::::0;::::2;16516:21:1::0;16573:2;16553:18;;;16546:30;-1:-1:-1;;;16592:18:1;;;16585:46;16648:18;;76753:63:0::2;16332:340:1::0;76753:63:0::2;76827:27;76837:7;9525:6:::0;;-1:-1:-1;;;;;9525:6:0;;9452:87;76837:7:::2;76846;76827:9;:27::i;:::-;-1:-1:-1::0;12376:1:0;13328:7;:22;76675:187::o;76397:270::-;12420:1;13016:7;;:19;;13008:63;;;;-1:-1:-1;;;13008:63:0;;;;;;;:::i;:::-;12420:1;13149:7;:18;76461:11:::1;::::0;76476:9:::1;-1:-1:-1::0;76461:24:0::1;76453:58;;;::::0;-1:-1:-1;;;76453:58:0;;10338:2:1;76453:58:0::1;::::0;::::1;10320:21:1::0;10377:2;10357:18;;;10350:30;-1:-1:-1;;;10396:18:1;;;10389:51;10457:18;;76453:58:0::1;10136:345:1::0;76453:58:0::1;76546:9;;76530:13;;:25;76522:59;;;::::0;-1:-1:-1;;;76522:59:0;;12631:2:1;76522:59:0::1;::::0;::::1;12613:21:1::0;12670:2;12650:18;;;12643:30;-1:-1:-1;;;12689:18:1;;;12682:51;12750:18;;76522:59:0::1;12429:345:1::0;76522:59:0::1;76594:36;76604:10;76616:13;;76594:9;:36::i;:::-;76658:1;76641:13;;:18;;;;;;;:::i;:::-;::::0;;;-1:-1:-1;;12376:1:0;13328:7;:22;76397:270::o;41045:320::-;41165:7;41220:30;40943:10;:17;;40855:113;41220:30;41212:5;:38;41190:132;;;;-1:-1:-1;;;41190:132:0;;18514:2:1;41190:132:0;;;18496:21:1;18553:2;18533:18;;;18526:30;18592:34;18572:18;;;18565:62;-1:-1:-1;;;18643:18:1;;;18636:42;18695:19;;41190:132:0;18312:408:1;41190:132:0;41340:10;41351:5;41340:17;;;;;;;;:::i;:::-;;;;;;;;;41333:24;;41045:320;;;:::o;26024:326::-;26141:7;26182:16;;;:7;:16;;;;;;-1:-1:-1;;;;;26182:16:0;26231:19;26209:110;;;;-1:-1:-1;;;26209:110:0;;14989:2:1;26209:110:0;;;14971:21:1;15028:2;15008:18;;;15001:30;15067:34;15047:18;;;15040:62;-1:-1:-1;;;15118:18:1;;;15111:39;15167:19;;26209:110:0;14787:405:1;25667:295:0;25784:7;-1:-1:-1;;;;;25831:19:0;;25809:111;;;;-1:-1:-1;;;25809:111:0;;14578:2:1;25809:111:0;;;14560:21:1;14617:2;14597:18;;;14590:30;14656:34;14636:18;;;14629:62;-1:-1:-1;;;14707:18:1;;;14700:40;14757:19;;25809:111:0;14376:406:1;25809:111:0;-1:-1:-1;;;;;;25938:16:0;;;;;:9;:16;;;;;;;25667:295::o;10103:94::-;9525:6;;-1:-1:-1;;;;;9525:6:0;8383:10;9672:23;9664:68;;;;-1:-1:-1;;;9664:68:0;;;;;;;:::i;:::-;10168:21:::1;10186:1;10168:9;:21::i;:::-;10103:94::o:0;72432:178::-;72521:13;72559:43;72565:7;72559:43;;;;;;;;;;;;;-1:-1:-1;;;72559:43:0;;;72589:12;72559:43;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;75697:692;12420:1;13016:7;;:19;;13008:63;;;;-1:-1:-1;;;13008:63:0;;;;;;;:::i;:::-;12420:1;13149:7;:18;75789:12:::1;::::0;:28:::1;::::0;-1:-1:-1;;;75789:28:0;;::::1;::::0;::::1;19231:25:1::0;;;75821:10:0::1;::::0;-1:-1:-1;;;;;75789:12:0::1;::::0;:20:::1;::::0;19204:18:1;;75789:28:0::1;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;75789:42:0::1;;:106;;;-1:-1:-1::0;75852:13:0::1;::::0;:29:::1;::::0;-1:-1:-1;;;75852:29:0;;::::1;::::0;::::1;19231:25:1::0;;;75885:10:0::1;::::0;-1:-1:-1;;;;;75852:13:0::1;::::0;:21:::1;::::0;19204:18:1;;75852:29:0::1;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;75852:43:0::1;;75789:106;:170;;;-1:-1:-1::0;75916:13:0::1;::::0;:29:::1;::::0;-1:-1:-1;;;75916:29:0;;::::1;::::0;::::1;19231:25:1::0;;;75949:10:0::1;::::0;-1:-1:-1;;;;;75916:13:0::1;::::0;:21:::1;::::0;19204:18:1;;75916:29:0::1;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;75916:43:0::1;;75789:170;:234;;;-1:-1:-1::0;75980:13:0::1;::::0;:29:::1;::::0;-1:-1:-1;;;75980:29:0;;::::1;::::0;::::1;19231:25:1::0;;;76013:10:0::1;::::0;-1:-1:-1;;;;;75980:13:0::1;::::0;:21:::1;::::0;19204:18:1;;75980:29:0::1;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;75980:43:0::1;;75789:234;75767:320;;;::::0;-1:-1:-1;;;75767:320:0;;17289:2:1;75767:320:0::1;::::0;::::1;17271:21:1::0;17328:2;17308:18;;;17301:30;17367:34;17347:18;;;17340:62;-1:-1:-1;;;17418:18:1;;;17411:34;17462:19;;75767:320:0::1;17087:400:1::0;75767:320:0::1;76122:9;;76106:13;;:25;76098:59;;;::::0;-1:-1:-1;;;76098:59:0;;12631:2:1;76098:59:0::1;::::0;::::1;12613:21:1::0;12670:2;12650:18;;;12643:30;-1:-1:-1;;;12689:18:1;;;12682:51;12750:18;;76098:59:0::1;12429:345:1::0;76098:59:0::1;76196:10;76168:13;76184:23:::0;;;:11:::1;:23;::::0;;;;;76234:1:::1;76226:9:::0;::::1;76218:41;;;::::0;-1:-1:-1;;;76218:41:0;;12283:2:1;76218:41:0::1;::::0;::::1;12265:21:1::0;12322:2;12302:18;;;12295:30;-1:-1:-1;;;12341:18:1;;;12334:49;12400:18;;76218:41:0::1;12081:343:1::0;76218:41:0::1;76272:36;76282:10;76294:13;;76272:9;:36::i;:::-;76345:7;::::0;::::1;:::i;:::-;76331:10;76319:23;::::0;;;:11:::1;:23;::::0;;;;:33;;;76363:13:::1;:18:::0;;76345:7;;-1:-1:-1;76380:1:0::1;::::0;76363:13;;76319:23;76363:18:::1;::::0;76380:1;;76363:18:::1;:::i;:::-;::::0;;;-1:-1:-1;;12376:1:0;13328:7;:22;-1:-1:-1;;75697:692:0:o;26586:104::-;26642:13;26675:7;26668:14;;;;;:::i;28490:327::-;-1:-1:-1;;;;;28625:24:0;;8383:10;28625:24;;28617:62;;;;-1:-1:-1;;;28617:62:0;;13386:2:1;28617:62:0;;;13368:21:1;13425:2;13405:18;;;13398:30;13464:27;13444:18;;;13437:55;13509:18;;28617:62:0;13184:349:1;28617:62:0;8383:10;28692:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;28692:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;28692:53:0;;;;;;;;;;28761:48;;9860:41:1;;;28692:42:0;;8383:10;28761:48;;9833:18:1;28761:48:0;;;;;;;28490:327;;:::o;72148:137::-;72207:13;72240:37;72246:7;72240:37;;;;;;;;;;;;;-1:-1:-1;;;72240:37:0;;;72267:9;72240:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29872:365;30061:41;8383:10;30094:7;30061:18;:41::i;:::-;30039:140;;;;-1:-1:-1;;;30039:140:0;;;;;;;:::i;:::-;30190:39;30204:4;30210:2;30214:7;30223:5;30190:13;:39::i;73186:2503::-;73287:13;73318:23;;:::i;:::-;73352:290;;;;;;;;;;;;;;;;;;;73666:16;73674:7;73666;:16::i;:::-;73655:5;73661:1;73655:8;;;:27;;;;73695:53;;;;;;;;;;;;;;;;;:8;;;:53;73772:23;73787:7;73772:14;:23::i;:::-;73761:8;;;;:34;;;;73808:53;;;;;;;;;;;;;73761:8;73808:53;;;:8;;;:53;73885:20;73897:7;73885:11;:20::i;:::-;73874:8;;;:31;73918:53;;;;;;;;;;;;;;73874:8;73918:53;;;:8;;;:53;73995:18;74005:7;73995:9;:18::i;:::-;73984:8;;;:29;74026:54;;;;;;;;;;;;;;73984:8;74026:54;;;:8;;;:54;74104:23;74119:7;74104:14;:23::i;:::-;74093:8;;;:34;74140:55;;;;;;;;;;;;;;74093:8;74140:55;;;:9;;;:55;74220:23;74235:7;74220:14;:23::i;:::-;74208:9;;;:35;74256:27;;;;;;;;;;;-1:-1:-1;;;74208:9:0;74256:27;;;;;;;:9;;;:27;;;;74375:8;;74402;;;;74429;;;;74456;;;;74483;;;;74510;;;;74537;;;;74340:220;;-1:-1:-1;;74340:220:0;;74537:8;;74340:220;;:::i;:::-;;;;;;;-1:-1:-1;;74340:220:0;;;;;;;74672:8;;;;74699;;;;74726;;;;74753:9;;;;74781;;;;74809;;;;74340:220;;-1:-1:-1;74612:221:0;;74340:220;;74809:9;74672:8;74612:221;;:::i;:::-;;;;;;;;;;;;;74582:262;;74857:18;74878:670;75046:17;75055:7;75046:8;:17::i;:::-;75421:28;75441:6;75421:13;:28::i;:::-;74959:544;;;;;;;;;:::i;:::-;;;;;;;;;;;;;74878:13;:670::i;:::-;74857:691;;75639:4;75589:55;;;;;;;;:::i;:::-;;;;-1:-1:-1;;75589:55:0;;;;;;;;;;73186:2503;-1:-1:-1;;;;;73186:2503:0:o;10352:229::-;9525:6;;-1:-1:-1;;;;;9525:6:0;8383:10;9672:23;9664:68;;;;-1:-1:-1;;;9664:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;10455:22:0;::::1;10433:110;;;::::0;-1:-1:-1;;;10433:110:0;;11519:2:1;10433:110:0::1;::::0;::::1;11501:21:1::0;11558:2;11538:18;;;11531:30;11597:34;11577:18;;;11570:62;-1:-1:-1;;;11648:18:1;;;11641:36;11694:19;;10433:110:0::1;11317:402:1::0;10433:110:0::1;10554:19;10564:8;10554:9;:19::i;:::-;10352:229:::0;:::o;25248:355::-;25395:4;-1:-1:-1;;;;;;25437:40:0;;-1:-1:-1;;;25437:40:0;;:105;;-1:-1:-1;;;;;;;25494:48:0;;-1:-1:-1;;;25494:48:0;25437:105;:158;;;-1:-1:-1;;;;;;;;;;23966:40:0;;;25559:36;23807:207;35907:174;35982:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;35982:29:0;-1:-1:-1;;;;;35982:29:0;;;;;;;;:24;;36036:23;35982:24;36036:14;:23::i;:::-;-1:-1:-1;;;;;36027:46:0;;;;;;;;;;;35907:174;;:::o;72804:374::-;72947:13;72973:12;72988:86;73033:9;73044:17;73053:7;73044:8;:17::i;:::-;73016:46;;;;;;;;;:::i;:::-;;;;;;;;;;;;;72988:6;:86::i;:::-;72973:101;;73085:20;73108:11;73127;:18;73120:4;:25;;;;:::i;:::-;73108:38;;;;;;;;:::i;:::-;;;;;;;73085:61;;73164:6;73157:13;;;;72804:374;;;;;:::o;32078:452::-;32207:4;31873:16;;;:7;:16;;;;;;-1:-1:-1;;;;;31873:16:0;32229:110;;;;-1:-1:-1;;;32229:110:0;;13740:2:1;32229:110:0;;;13722:21:1;13779:2;13759:18;;;13752:30;13818:34;13798:18;;;13791:62;-1:-1:-1;;;13869:18:1;;;13862:42;13921:19;;32229:110:0;13538:408:1;32229:110:0;32350:13;32366:23;32381:7;32366:14;:23::i;:::-;32350:39;;32419:5;-1:-1:-1;;;;;32408:16:0;:7;-1:-1:-1;;;;;32408:16:0;;:64;;;;32465:7;-1:-1:-1;;;;;32441:31:0;:20;32453:7;32441:11;:20::i;:::-;-1:-1:-1;;;;;32441:31:0;;32408:64;:113;;;-1:-1:-1;;;;;;29059:25:0;;;29030:4;29059:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;32489:32;32400:122;32078:452;-1:-1:-1;;;;32078:452:0:o;35174:615::-;35347:4;-1:-1:-1;;;;;35320:31:0;:23;35335:7;35320:14;:23::i;:::-;-1:-1:-1;;;;;35320:31:0;;35298:122;;;;-1:-1:-1;;;35298:122:0;;16879:2:1;35298:122:0;;;16861:21:1;16918:2;16898:18;;;16891:30;16957:34;16937:18;;;16930:62;-1:-1:-1;;;17008:18:1;;;17001:39;17057:19;;35298:122:0;16677:405:1;35298:122:0;-1:-1:-1;;;;;35439:16:0;;35431:65;;;;-1:-1:-1;;;35431:65:0;;12981:2:1;35431:65:0;;;12963:21:1;13020:2;13000:18;;;12993:30;13059:34;13039:18;;;13032:62;-1:-1:-1;;;13110:18:1;;;13103:34;13154:19;;35431:65:0;12779:400:1;35431:65:0;35509:39;35530:4;35536:2;35540:7;35509:20;:39::i;:::-;35613:29;35630:1;35634:7;35613:8;:29::i;:::-;-1:-1:-1;;;;;35655:15:0;;;;;;:9;:15;;;;;:20;;35674:1;;35655:15;:20;;35674:1;;35655:20;:::i;:::-;;;;-1:-1:-1;;;;;;;35686:13:0;;;;;;:9;:13;;;;;:18;;35703:1;;35686:13;:18;;35703:1;;35686:18;:::i;:::-;;;;-1:-1:-1;;35715:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;35715:21:0;-1:-1:-1;;;;;35715:21:0;;;;;;;;;35754:27;;35715:16;;35754:27;;;;;;;35174:615;;;:::o;32872:110::-;32948:26;32958:2;32962:7;32948:26;;;;;;;;;;;;:9;:26::i;:::-;32872:110;;:::o;10589:173::-;10664:6;;;-1:-1:-1;;;;;10681:17:0;;;-1:-1:-1;;;;;;10681:17:0;;;;;;;10714:40;;10664:6;;;10681:17;10664:6;;10714:40;;10645:16;;10714:40;10634:128;10589:173;:::o;31119:352::-;31276:28;31286:4;31292:2;31296:7;31276:9;:28::i;:::-;31337:48;31360:4;31366:2;31370:7;31379:5;31337:22;:48::i;:::-;31315:148;;;;-1:-1:-1;;;31315:148:0;;;;;;;:::i;77025:723::-;77081:13;77302:10;77298:53;;-1:-1:-1;;77329:10:0;;;;;;;;;;;;-1:-1:-1;;;77329:10:0;;;;;77025:723::o;77298:53::-;77376:5;77361:12;77417:78;77424:9;;77417:78;;77450:8;;;;:::i;:::-;;-1:-1:-1;77473:10:0;;-1:-1:-1;77481:2:0;77473:10;;:::i;:::-;;;77417:78;;;77505:19;77537:6;77527:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;77527:17:0;;77505:39;;77555:154;77562:10;;77555:154;;77589:11;77599:1;77589:11;;:::i;:::-;;-1:-1:-1;77658:10:0;77666:2;77658:5;:10;:::i;:::-;77645:24;;:2;:24;:::i;:::-;77632:39;;77615:6;77622;77615:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;77615:56:0;;;;;;;;-1:-1:-1;77686:11:0;77695:2;77686:11;;:::i;:::-;;;77555:154;;78168:1790;78266:11;;78226:13;;78292:8;78288:23;;-1:-1:-1;;78302:9:0;;;;;;;;;-1:-1:-1;78302:9:0;;;78168:1790;-1:-1:-1;78168:1790:0:o;78288:23::-;78363:18;78401:1;78390:7;:3;78396:1;78390:7;:::i;:::-;78389:13;;;;:::i;:::-;78384:19;;:1;:19;:::i;:::-;78363:40;-1:-1:-1;78461:19:0;78493:15;78363:40;78506:2;78493:15;:::i;:::-;78483:26;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;78483:26:0;;78461:48;;78522:18;78543:5;;;;;;;;;;;;;;;;;78522:26;;78612:1;78605:5;78601:13;78657:2;78649:6;78645:15;78708:1;78676:960;78731:3;78728:1;78725:10;78676:960;;;78786:1;78829:12;;;;;78823:19;78924:4;78912:2;78908:14;;;;;78890:40;;78884:47;79076:2;79072:14;;;79068:25;;79054:40;;79048:47;79266:1;79262:13;;;79258:24;;79244:39;;79238:46;79447:16;;;;79433:31;;79427:38;78960:1;78956:11;;;79097:4;79044:58;;;78992:129;79146:11;;79234:57;;;79182:128;;;;79335:11;;79423:49;;79371:120;79520:3;79516:13;79549:22;;79619:1;79604:17;;;;78779:9;78676:960;;;78680:44;79668:1;79663:3;79659:11;79689:1;79684:84;;;;79787:1;79782:82;;;;79652:212;;79684:84;-1:-1:-1;;;;;79717:17:0;;79710:43;79684:84;;79782:82;-1:-1:-1;;;;;79815:17:0;;79808:41;79652:212;-1:-1:-1;;;79880:26:0;;;79887:6;78168:1790;-1:-1:-1;;;;78168:1790:0:o;71682:138::-;71742:7;71804:5;71787:23;;;;;;;;:::i;:::-;;;;-1:-1:-1;;71787:23:0;;;;;;;;;71777:34;;71787:23;71777:34;;;;;71682:138;-1:-1:-1;;71682:138:0:o;41978:589::-;-1:-1:-1;;;;;42184:18:0;;42180:187;;42219:40;42251:7;43394:10;:17;;43367:24;;;;:15;:24;;;;;:44;;;43422:24;;;;;;;;;;;;43290:164;42219:40;42180:187;;;42289:2;-1:-1:-1;;;;;42281:10:0;:4;-1:-1:-1;;;;;42281:10:0;;42277:90;;42308:47;42341:4;42347:7;42308:32;:47::i;:::-;-1:-1:-1;;;;;42381:16:0;;42377:183;;42414:45;42451:7;42414:36;:45::i;42377:183::-;42487:4;-1:-1:-1;;;;;42481:10:0;:2;-1:-1:-1;;;;;42481:10:0;;42477:83;;42508:40;42536:2;42540:7;42508:27;:40::i;33209:321::-;33339:18;33345:2;33349:7;33339:5;:18::i;:::-;33390:54;33421:1;33425:2;33429:7;33438:5;33390:22;:54::i;:::-;33368:154;;;;-1:-1:-1;;;33368:154:0;;;;;;;:::i;36646:984::-;36801:4;-1:-1:-1;;;;;36822:13:0;;15851:20;15899:8;36818:805;;36875:175;;-1:-1:-1;;;36875:175:0;;-1:-1:-1;;;;;36875:36:0;;;;;:175;;8383:10;;36969:4;;36996:7;;37026:5;;36875:175;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;36875:175:0;;;;;;;;-1:-1:-1;;36875:175:0;;;;;;;;;;;;:::i;:::-;;;36854:714;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;37237:13:0;;37233:320;;37280:108;;-1:-1:-1;;;37280:108:0;;;;;;;:::i;37233:320::-;37503:6;37497:13;37488:6;37484:2;37480:15;37473:38;36854:714;-1:-1:-1;;;;;;37114:55:0;-1:-1:-1;;;37114:55:0;;-1:-1:-1;37107:62:0;;36818:805;-1:-1:-1;37607:4:0;36646:984;;;;;;:::o;44081:1002::-;44361:22;44411:1;44386:22;44403:4;44386:16;:22::i;:::-;:26;;;;:::i;:::-;44423:18;44444:26;;;:17;:26;;;;;;44361:51;;-1:-1:-1;44577:28:0;;;44573:328;;-1:-1:-1;;;;;44644:18:0;;44622:19;44644:18;;;:12;:18;;;;;;;;:34;;;;;;;;;44695:30;;;;;;:44;;;44812:30;;:17;:30;;;;;:43;;;44573:328;-1:-1:-1;44997:26:0;;;;:17;:26;;;;;;;;44990:33;;;-1:-1:-1;;;;;45041:18:0;;;;;:12;:18;;;;;:34;;;;;;;45034:41;44081:1002::o;45378:1079::-;45656:10;:17;45631:22;;45656:21;;45676:1;;45656:21;:::i;:::-;45688:18;45709:24;;;:15;:24;;;;;;46082:10;:26;;45631:46;;-1:-1:-1;45709:24:0;;45631:46;;46082:26;;;;;;:::i;:::-;;;;;;;;;46060:48;;46146:11;46121:10;46132;46121:22;;;;;;;;:::i;:::-;;;;;;;;;;;;:36;;;;46226:28;;;:15;:28;;;;;;;:41;;;46398:24;;;;;46391:31;46433:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;45449:1008;;;45378:1079;:::o;42868:221::-;42953:14;42970:20;42987:2;42970:16;:20::i;:::-;-1:-1:-1;;;;;43001:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;43046:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;42868:221:0:o;33866:382::-;-1:-1:-1;;;;;33946:16:0;;33938:61;;;;-1:-1:-1;;;33938:61:0;;15399:2:1;33938:61:0;;;15381:21:1;;;15418:18;;;15411:30;15477:34;15457:18;;;15450:62;15529:18;;33938:61:0;15197:356:1;33938:61:0;31849:4;31873:16;;;:7;:16;;;;;;-1:-1:-1;;;;;31873:16:0;:30;34010:58;;;;-1:-1:-1;;;34010:58:0;;11926:2:1;34010:58:0;;;11908:21:1;11965:2;11945:18;;;11938:30;12004;11984:18;;;11977:58;12052:18;;34010:58:0;11724:352:1;34010:58:0;34081:45;34110:1;34114:2;34118:7;34081:20;:45::i;:::-;-1:-1:-1;;;;;34139:13:0;;;;;;:9;:13;;;;;:18;;34156:1;;34139:13;:18;;34156:1;;34139:18;:::i;:::-;;;;-1:-1:-1;;34168:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;34168:21:0;-1:-1:-1;;;;;34168:21:0;;;;;;;;34207:33;;34168:16;;;34207:33;;34168:16;;34207:33;33866:382;;:::o;-1:-1:-1:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;14:247:1:-;73:6;126:2;114:9;105:7;101:23;97:32;94:52;;;142:1;139;132:12;94:52;181:9;168:23;200:31;225:5;200:31;:::i;:::-;250:5;14:247;-1:-1:-1;;;14:247:1:o;266:251::-;336:6;389:2;377:9;368:7;364:23;360:32;357:52;;;405:1;402;395:12;357:52;437:9;431:16;456:31;481:5;456:31;:::i;522:388::-;590:6;598;651:2;639:9;630:7;626:23;622:32;619:52;;;667:1;664;657:12;619:52;706:9;693:23;725:31;750:5;725:31;:::i;:::-;775:5;-1:-1:-1;832:2:1;817:18;;804:32;845:33;804:32;845:33;:::i;:::-;897:7;887:17;;;522:388;;;;;:::o;915:456::-;992:6;1000;1008;1061:2;1049:9;1040:7;1036:23;1032:32;1029:52;;;1077:1;1074;1067:12;1029:52;1116:9;1103:23;1135:31;1160:5;1135:31;:::i;:::-;1185:5;-1:-1:-1;1242:2:1;1227:18;;1214:32;1255:33;1214:32;1255:33;:::i;:::-;915:456;;1307:7;;-1:-1:-1;;;1361:2:1;1346:18;;;;1333:32;;915:456::o;1376:1266::-;1471:6;1479;1487;1495;1548:3;1536:9;1527:7;1523:23;1519:33;1516:53;;;1565:1;1562;1555:12;1516:53;1604:9;1591:23;1623:31;1648:5;1623:31;:::i;:::-;1673:5;-1:-1:-1;1730:2:1;1715:18;;1702:32;1743:33;1702:32;1743:33;:::i;:::-;1795:7;-1:-1:-1;1849:2:1;1834:18;;1821:32;;-1:-1:-1;1904:2:1;1889:18;;1876:32;1927:18;1957:14;;;1954:34;;;1984:1;1981;1974:12;1954:34;2022:6;2011:9;2007:22;1997:32;;2067:7;2060:4;2056:2;2052:13;2048:27;2038:55;;2089:1;2086;2079:12;2038:55;2125:2;2112:16;2147:2;2143;2140:10;2137:36;;;2153:18;;:::i;:::-;2228:2;2222:9;2196:2;2282:13;;-1:-1:-1;;2278:22:1;;;2302:2;2274:31;2270:40;2258:53;;;2326:18;;;2346:22;;;2323:46;2320:72;;;2372:18;;:::i;:::-;2412:10;2408:2;2401:22;2447:2;2439:6;2432:18;2487:7;2482:2;2477;2473;2469:11;2465:20;2462:33;2459:53;;;2508:1;2505;2498:12;2459:53;2564:2;2559;2555;2551:11;2546:2;2538:6;2534:15;2521:46;2609:1;2604:2;2599;2591:6;2587:15;2583:24;2576:35;2630:6;2620:16;;;;;;;1376:1266;;;;;;;:::o;2647:416::-;2712:6;2720;2773:2;2761:9;2752:7;2748:23;2744:32;2741:52;;;2789:1;2786;2779:12;2741:52;2828:9;2815:23;2847:31;2872:5;2847:31;:::i;:::-;2897:5;-1:-1:-1;2954:2:1;2939:18;;2926:32;2996:15;;2989:23;2977:36;;2967:64;;3027:1;3024;3017:12;3068:315;3136:6;3144;3197:2;3185:9;3176:7;3172:23;3168:32;3165:52;;;3213:1;3210;3203:12;3165:52;3252:9;3239:23;3271:31;3296:5;3271:31;:::i;:::-;3321:5;3373:2;3358:18;;;;3345:32;;-1:-1:-1;;;3068:315:1:o;3388:245::-;3446:6;3499:2;3487:9;3478:7;3474:23;3470:32;3467:52;;;3515:1;3512;3505:12;3467:52;3554:9;3541:23;3573:30;3597:5;3573:30;:::i;3638:249::-;3707:6;3760:2;3748:9;3739:7;3735:23;3731:32;3728:52;;;3776:1;3773;3766:12;3728:52;3808:9;3802:16;3827:30;3851:5;3827:30;:::i;3892:180::-;3951:6;4004:2;3992:9;3983:7;3979:23;3975:32;3972:52;;;4020:1;4017;4010:12;3972:52;-1:-1:-1;4043:23:1;;3892:180;-1:-1:-1;3892:180:1:o;4077:257::-;4118:3;4156:5;4150:12;4183:6;4178:3;4171:19;4199:63;4255:6;4248:4;4243:3;4239:14;4232:4;4225:5;4221:16;4199:63;:::i;:::-;4316:2;4295:15;-1:-1:-1;;4291:29:1;4282:39;;;;4323:4;4278:50;;4077:257;-1:-1:-1;;4077:257:1:o;4339:185::-;4381:3;4419:5;4413:12;4434:52;4479:6;4474:3;4467:4;4460:5;4456:16;4434:52;:::i;:::-;4502:16;;;;;4339:185;-1:-1:-1;;4339:185:1:o;4659:276::-;4790:3;4828:6;4822:13;4844:53;4890:6;4885:3;4878:4;4870:6;4866:17;4844:53;:::i;:::-;4913:16;;;;;4659:276;-1:-1:-1;;4659:276:1:o;4940:470::-;5119:3;5157:6;5151:13;5173:53;5219:6;5214:3;5207:4;5199:6;5195:17;5173:53;:::i;:::-;5289:13;;5248:16;;;;5311:57;5289:13;5248:16;5345:4;5333:17;;5311:57;:::i;:::-;5384:20;;4940:470;-1:-1:-1;;;;4940:470:1:o;5415:1449::-;5834:3;5872:6;5866:13;5898:4;5911:51;5955:6;5950:3;5945:2;5937:6;5933:15;5911:51;:::i;:::-;6025:13;;5984:16;;;;6047:55;6025:13;5984:16;6069:15;;;6047:55;:::i;:::-;6169:13;;6124:20;;;6191:55;6169:13;6124:20;6213:15;;;6191:55;:::i;:::-;6313:13;;6268:20;;;6335:55;6313:13;6268:20;6357:15;;;6335:55;:::i;:::-;6457:13;;6412:20;;;6479:55;6457:13;6412:20;6501:15;;;6479:55;:::i;:::-;6601:13;;6556:20;;;6623:55;6601:13;6556:20;6645:15;;;6623:55;:::i;:::-;6745:13;;6700:20;;;6767:55;6745:13;6700:20;6789:15;;;6767:55;:::i;:::-;6838:20;;;;;5415:1449;-1:-1:-1;;;;;;;;;;5415:1449:1:o;6869:1482::-;-1:-1:-1;;;7369:55:1;;7447:13;;7351:3;;7469:62;7447:13;7519:2;7510:12;;7503:4;7491:17;;7469:62;:::i;:::-;7595:66;7590:2;7550:16;;;7582:11;;;7575:87;7691:34;7686:2;7678:11;;7671:55;7755:34;7750:2;7742:11;;7735:55;7820:34;7814:3;7806:12;;7799:56;7885:34;7879:3;7871:12;;7864:56;7950:34;7944:3;7936:12;;7929:56;8015:34;8009:3;8001:12;;7994:56;8080:34;8074:3;8066:12;;8059:56;8145:66;8139:3;8131:12;;8124:88;-1:-1:-1;;;8236:3:1;8228:12;;8221:38;8275:70;8305:39;8339:3;8331:12;;8323:6;8305:39;:::i;:::-;-1:-1:-1;;;4594:27:1;;4646:1;4637:11;;4529:125;8275:70;8268:77;6869:1482;-1:-1:-1;;;;;6869:1482:1:o;8356:448::-;8618:31;8613:3;8606:44;8588:3;8679:6;8673:13;8695:62;8750:6;8745:2;8740:3;8736:12;8729:4;8721:6;8717:17;8695:62;:::i;:::-;8777:16;;;;8795:2;8773:25;;8356:448;-1:-1:-1;;8356:448:1:o;9227:488::-;-1:-1:-1;;;;;9496:15:1;;;9478:34;;9548:15;;9543:2;9528:18;;9521:43;9595:2;9580:18;;9573:34;;;9643:3;9638:2;9623:18;;9616:31;;;9421:4;;9664:45;;9689:19;;9681:6;9664:45;:::i;:::-;9656:53;9227:488;-1:-1:-1;;;;;;9227:488:1:o;9912:219::-;10061:2;10050:9;10043:21;10024:4;10081:44;10121:2;10110:9;10106:18;10098:6;10081:44;:::i;10898:414::-;11100:2;11082:21;;;11139:2;11119:18;;;11112:30;11178:34;11173:2;11158:18;;11151:62;-1:-1:-1;;;11244:2:1;11229:18;;11222:48;11302:3;11287:19;;10898:414::o;15971:356::-;16173:2;16155:21;;;16192:18;;;16185:30;16251:34;16246:2;16231:18;;16224:62;16318:2;16303:18;;15971:356::o;17894:413::-;18096:2;18078:21;;;18135:2;18115:18;;;18108:30;18174:34;18169:2;18154:18;;18147:62;-1:-1:-1;;;18240:2:1;18225:18;;18218:47;18297:3;18282:19;;17894:413::o;18725:355::-;18927:2;18909:21;;;18966:2;18946:18;;;18939:30;19005:33;19000:2;18985:18;;18978:61;19071:2;19056:18;;18725:355::o;19267:128::-;19307:3;19338:1;19334:6;19331:1;19328:13;19325:39;;;19344:18;;:::i;:::-;-1:-1:-1;19380:9:1;;19267:128::o;19400:120::-;19440:1;19466;19456:35;;19471:18;;:::i;:::-;-1:-1:-1;19505:9:1;;19400:120::o;19525:168::-;19565:7;19631:1;19627;19623:6;19619:14;19616:1;19613:21;19608:1;19601:9;19594:17;19590:45;19587:71;;;19638:18;;:::i;:::-;-1:-1:-1;19678:9:1;;19525:168::o;19698:125::-;19738:4;19766:1;19763;19760:8;19757:34;;;19771:18;;:::i;:::-;-1:-1:-1;19808:9:1;;19698:125::o;19828:258::-;19900:1;19910:113;19924:6;19921:1;19918:13;19910:113;;;20000:11;;;19994:18;19981:11;;;19974:39;19946:2;19939:10;19910:113;;;20041:6;20038:1;20035:13;20032:48;;;-1:-1:-1;;20076:1:1;20058:16;;20051:27;19828:258::o;20091:380::-;20170:1;20166:12;;;;20213;;;20234:61;;20288:4;20280:6;20276:17;20266:27;;20234:61;20341:2;20333:6;20330:14;20310:18;20307:38;20304:161;;;20387:10;20382:3;20378:20;20375:1;20368:31;20422:4;20419:1;20412:15;20450:4;20447:1;20440:15;20304:161;;20091:380;;;:::o;20476:135::-;20515:3;-1:-1:-1;;20536:17:1;;20533:43;;;20556:18;;:::i;:::-;-1:-1:-1;20603:1:1;20592:13;;20476:135::o;20616:112::-;20648:1;20674;20664:35;;20679:18;;:::i;:::-;-1:-1:-1;20713:9:1;;20616:112::o;20733:127::-;20794:10;20789:3;20785:20;20782:1;20775:31;20825:4;20822:1;20815:15;20849:4;20846:1;20839:15;20865:127;20926:10;20921:3;20917:20;20914:1;20907:31;20957:4;20954:1;20947:15;20981:4;20978:1;20971:15;20997:127;21058:10;21053:3;21049:20;21046:1;21039:31;21089:4;21086:1;21079:15;21113:4;21110:1;21103:15;21129:127;21190:10;21185:3;21181:20;21178:1;21171:31;21221:4;21218:1;21211:15;21245:4;21242:1;21235:15;21261:127;21322:10;21317:3;21313:20;21310:1;21303:31;21353:4;21350:1;21343:15;21377:4;21374:1;21367:15;21393:131;-1:-1:-1;;;;;21468:31:1;;21458:42;;21448:70;;21514:1;21511;21504:12;21529:131;-1:-1:-1;;;;;;21603:32:1;;21593:43;;21583:71;;21650:1;21647;21640:12

Swarm Source

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