ETH Price: $2,584.19 (-2.26%)

Token

EternalUtopia (EU)
 

Overview

Max Total Supply

80 EU

Holders

58

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Balance
1 EU
0x289b327ea69B771D5864110dD9204e5E7dA3f149
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:
EternalUtopia

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

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



pragma solidity ^0.8.0;

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

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

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

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

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

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



pragma solidity ^0.8.0;

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

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

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



pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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



pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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



pragma solidity ^0.8.0;

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

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



pragma solidity ^0.8.0;

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

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



pragma solidity ^0.8.0;


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

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



pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

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



pragma solidity ^0.8.0;


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

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

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

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



pragma solidity ^0.8.0;


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

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

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

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



pragma solidity ^0.8.0;








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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

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

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

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



pragma solidity ^0.8.0;



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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: Eternal/main.sol


pragma solidity ^0.8.0;



contract EternalUtopia is ERC721, ERC721Enumerable, Ownable {
  // Provenance
  string public ETERNAL_UTOPIA_PROVENANCE_HASH = "";
  // Price & Supply
  uint256 public constant NFT_PRICE = 100000000000000000; //0.09 ETH
  uint public constant MAX_SUPPLY = 10000;
  // Internals
  string private _baseTokenURI;
  // Sale
  bool public hasSaleStarted = false;
  uint private constant MAX_MINT_PER_CALL = 2;
  // Pre-Sale
  bool public hasPreSaleStarted = false;
  uint256 public constant NFT_PRICE_PRESALE = 90000000000000000; //0.08 ETH
  uint public constant MAX_PRESALE_SUPPLY = 1000;
  // BuildingIdeas.io Address
  address private constant DEVELOPER_ADDRESS = 0x9D7a3F970Bbc7aB9C8537dc9637051b824A9eD0C;
  uint private constant DEVELOPER_ROYALTY = 10;
  constructor(string memory baseURI) ERC721("EternalUtopia", "EU") {
    setBaseURI(baseURI);
  }
  function _baseURI() internal view override(ERC721) returns (string memory) {        
    return _baseTokenURI;
  }
  function setBaseURI(string memory baseURI) public onlyOwner {
    _baseTokenURI = baseURI;
  }
  function getBaseURI() external view returns(string memory) {
    return _baseTokenURI;
  }
  function tokensOfOwner(address _owner) external view returns(uint256[] memory ) {
    uint256 tokenCount = balanceOf(_owner);
    if (tokenCount == 0) {
      // Return an empty array
      return new uint256[](0);
    } else {
      uint256[] memory result = new uint256[](tokenCount);
      uint256 index;
      for (index = 0; index < tokenCount; index++) {
        result[index] = tokenOfOwnerByIndex(_owner, index);
      }
      return result;
    }
  }
  function mintPreSale(uint256 numNFTs) public payable {
    require(hasPreSaleStarted, "Presale has not started");
    require(msg.value >= NFT_PRICE_PRESALE * numNFTs, "Incorrect ether value");
    require(totalSupply() < MAX_PRESALE_SUPPLY, "Presale has ended");
    for (uint i = 0; i < numNFTs; i++) {
      uint mintIndex = totalSupply() + 1; // +1 so it doesn't start on index 0.
      _safeMint(msg.sender, mintIndex);
    }
  }
  function mint(uint256 numNFTs) public payable {
    require(hasSaleStarted, "Sale has not started");
    require(MAX_SUPPLY > totalSupply(), "Sale has ended");
    require(numNFTs > 0 && numNFTs <= MAX_MINT_PER_CALL, "Exceeds MAX_MINT_PER_CALL");
    require(MAX_SUPPLY >= totalSupply() + numNFTs, "Exceeds MAX_SUPPLY");
    require(msg.value >= NFT_PRICE * numNFTs, "Incorrect ether value");
    for (uint i = 0; i < numNFTs; i++) {
      uint mintIndex = totalSupply() + 1; // +1 so it doesn't start on index 0.
      _safeMint(msg.sender, mintIndex);
    }
  }
  function flipSaleState() public onlyOwner {
    hasSaleStarted = !hasSaleStarted;
  }
  function flipPreSaleState() public onlyOwner {
    hasPreSaleStarted = !hasPreSaleStarted;
  }
  function ceilDiv(uint256 a, uint256 b) internal pure returns (uint256) {
    // (a + b - 1) / b can overflow on addition, so we distribute.
    return a / b + (a % b == 0 ? 0 : 1);
  }
  function withdraw() public onlyOwner {
    require(address(this).balance > 0, "Contract must have balance");
    require(
        payable(DEVELOPER_ADDRESS).send(ceilDiv(address(this).balance, DEVELOPER_ROYALTY)),
        "Payment to developer failed"
    );
    require(payable(msg.sender).send(address(this).balance), "Withdrawal failed");
  }
  function _beforeTokenTransfer(address from, address to, uint256 tokenId)
    internal
    override(ERC721, ERC721Enumerable)
  {
    super._beforeTokenTransfer(from, to, tokenId);
  }
  function _burn(uint256 tokenId) internal override(ERC721) {
    super._burn(tokenId);
  }
  function tokenURI(uint256 tokenId)
    public
    view
    override(ERC721)
    returns (string memory)
  {
    return super.tokenURI(tokenId);
  }
  function supportsInterface(bytes4 interfaceId)
    public
    view
    override(ERC721, ERC721Enumerable)
    returns (bool)
  {
    return super.supportsInterface(interfaceId);
  }
  function setProvenanceHash(string memory provenanceHash) public onlyOwner {
    ETERNAL_UTOPIA_PROVENANCE_HASH = provenanceHash;
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"ETERNAL_UTOPIA_PROVENANCE_HASH","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_PRESALE_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"NFT_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"NFT_PRICE_PRESALE","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":"flipPreSaleState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"flipSaleState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getBaseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"hasPreSaleStarted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"hasSaleStarted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"numNFTs","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"numNFTs","type":"uint256"}],"name":"mintPreSale","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"provenanceHash","type":"string"}],"name":"setProvenanceHash","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"tokensOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

608060405260405180602001604052806000815250600b90805190602001906200002b92919062000310565b506000600d60006101000a81548160ff0219169083151502179055506000600d60016101000a81548160ff0219169083151502179055503480156200006f57600080fd5b5060405162004f1038038062004f1083398181016040528101906200009591906200043e565b6040518060400160405280600d81526020017f457465726e616c55746f706961000000000000000000000000000000000000008152506040518060400160405280600281526020017f455500000000000000000000000000000000000000000000000000000000000081525081600090805190602001906200011992919062000310565b5080600190805190602001906200013292919062000310565b50505062000155620001496200016d60201b60201c565b6200017560201b60201c565b62000166816200023b60201b60201c565b5062000696565b600033905090565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6200024b6200016d60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1662000271620002e660201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1614620002ca576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002c190620004b6565b60405180910390fd5b80600c9080519060200190620002e292919062000310565b5050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b8280546200031e906200057e565b90600052602060002090601f0160209004810192826200034257600085556200038e565b82601f106200035d57805160ff19168380011785556200038e565b828001600101855582156200038e579182015b828111156200038d57825182559160200191906001019062000370565b5b5090506200039d9190620003a1565b5090565b5b80821115620003bc576000816000905550600101620003a2565b5090565b6000620003d7620003d18462000501565b620004d8565b905082815260208101848484011115620003f657620003f56200064d565b5b6200040384828562000548565b509392505050565b600082601f83011262000423576200042262000648565b5b815162000435848260208601620003c0565b91505092915050565b60006020828403121562000457576200045662000657565b5b600082015167ffffffffffffffff81111562000478576200047762000652565b5b62000486848285016200040b565b91505092915050565b60006200049e60208362000537565b9150620004ab826200066d565b602082019050919050565b60006020820190508181036000830152620004d1816200048f565b9050919050565b6000620004e4620004f7565b9050620004f28282620005b4565b919050565b6000604051905090565b600067ffffffffffffffff8211156200051f576200051e62000619565b5b6200052a826200065c565b9050602081019050919050565b600082825260208201905092915050565b60005b83811015620005685780820151818401526020810190506200054b565b8381111562000578576000848401525b50505050565b600060028204905060018216806200059757607f821691505b60208210811415620005ae57620005ad620005ea565b5b50919050565b620005bf826200065c565b810181811067ffffffffffffffff82111715620005e157620005e062000619565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b61486a80620006a66000396000f3fe6080604052600436106102045760003560e01c80636352211e1161011857806395d89b41116100a0578063b98847721161006f578063b988477214610738578063c87b56dd14610754578063e985e9c514610791578063f0325549146107ce578063f2fde38b146107e557610204565b806395d89b411461069f578063a0712d68146106ca578063a22cb465146106e6578063b88d4fde1461070f57610204565b806370a08231116100e757806370a08231146105b8578063714c5398146105f5578063715018a6146106205780638462151c146106375780638da5cb5b1461067457610204565b80636352211e146104fa578063676dd563146105375780636a5928f5146105625780636b8dc3551461058d57610204565b806323b872dd1161019b5780633ccfd60b1161016a5780633ccfd60b1461042957806342842e0e146104405780634f6ccce71461046957806355f804b3146104a6578063577ad34d146104cf57610204565b806323b872dd146103815780632f745c59146103aa57806332cb6b0c146103e757806334918dfd1461041257610204565b8063095ea7b3116101d7578063095ea7b3146102d9578063109695231461030257806318160ddd1461032b5780631c8b232d1461035657610204565b806301ffc9a71461020957806303de7ac01461024657806306fdde0314610271578063081812fc1461029c575b600080fd5b34801561021557600080fd5b50610230600480360381019061022b91906131e0565b61080e565b60405161023d9190613886565b60405180910390f35b34801561025257600080fd5b5061025b610820565b60405161026891906138a1565b60405180910390f35b34801561027d57600080fd5b506102866108ae565b60405161029391906138a1565b60405180910390f35b3480156102a857600080fd5b506102c360048036038101906102be9190613283565b610940565b6040516102d091906137fd565b60405180910390f35b3480156102e557600080fd5b5061030060048036038101906102fb91906131a0565b6109c5565b005b34801561030e57600080fd5b506103296004803603810190610324919061323a565b610add565b005b34801561033757600080fd5b50610340610b73565b60405161034d9190613c43565b60405180910390f35b34801561036257600080fd5b5061036b610b80565b6040516103789190613886565b60405180910390f35b34801561038d57600080fd5b506103a860048036038101906103a3919061308a565b610b93565b005b3480156103b657600080fd5b506103d160048036038101906103cc91906131a0565b610bf3565b6040516103de9190613c43565b60405180910390f35b3480156103f357600080fd5b506103fc610c98565b6040516104099190613c43565b60405180910390f35b34801561041e57600080fd5b50610427610c9e565b005b34801561043557600080fd5b5061043e610d46565b005b34801561044c57600080fd5b506104676004803603810190610462919061308a565b610f0d565b005b34801561047557600080fd5b50610490600480360381019061048b9190613283565b610f2d565b60405161049d9190613c43565b60405180910390f35b3480156104b257600080fd5b506104cd60048036038101906104c8919061323a565b610f9e565b005b3480156104db57600080fd5b506104e4611034565b6040516104f19190613c43565b60405180910390f35b34801561050657600080fd5b50610521600480360381019061051c9190613283565b611040565b60405161052e91906137fd565b60405180910390f35b34801561054357600080fd5b5061054c6110f2565b6040516105599190613c43565b60405180910390f35b34801561056e57600080fd5b506105776110fe565b6040516105849190613886565b60405180910390f35b34801561059957600080fd5b506105a2611111565b6040516105af9190613c43565b60405180910390f35b3480156105c457600080fd5b506105df60048036038101906105da919061301d565b611117565b6040516105ec9190613c43565b60405180910390f35b34801561060157600080fd5b5061060a6111cf565b60405161061791906138a1565b60405180910390f35b34801561062c57600080fd5b50610635611261565b005b34801561064357600080fd5b5061065e6004803603810190610659919061301d565b6112e9565b60405161066b9190613864565b60405180910390f35b34801561068057600080fd5b506106896113f3565b60405161069691906137fd565b60405180910390f35b3480156106ab57600080fd5b506106b461141d565b6040516106c191906138a1565b60405180910390f35b6106e460048036038101906106df9190613283565b6114af565b005b3480156106f257600080fd5b5061070d60048036038101906107089190613160565b61168b565b005b34801561071b57600080fd5b50610736600480360381019061073191906130dd565b61180c565b005b610752600480360381019061074d9190613283565b61186e565b005b34801561076057600080fd5b5061077b60048036038101906107769190613283565b6119a3565b60405161078891906138a1565b60405180910390f35b34801561079d57600080fd5b506107b860048036038101906107b3919061304a565b6119b5565b6040516107c59190613886565b60405180910390f35b3480156107da57600080fd5b506107e3611a49565b005b3480156107f157600080fd5b5061080c6004803603810190610807919061301d565b611af1565b005b600061081982611be9565b9050919050565b600b805461082d90613f2c565b80601f016020809104026020016040519081016040528092919081815260200182805461085990613f2c565b80156108a65780601f1061087b576101008083540402835291602001916108a6565b820191906000526020600020905b81548152906001019060200180831161088957829003601f168201915b505050505081565b6060600080546108bd90613f2c565b80601f01602080910402602001604051908101604052809291908181526020018280546108e990613f2c565b80156109365780601f1061090b57610100808354040283529160200191610936565b820191906000526020600020905b81548152906001019060200180831161091957829003601f168201915b5050505050905090565b600061094b82611c63565b61098a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161098190613ac3565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006109d082611040565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610a41576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a3890613b63565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610a60611ccf565b73ffffffffffffffffffffffffffffffffffffffff161480610a8f5750610a8e81610a89611ccf565b6119b5565b5b610ace576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ac590613a03565b60405180910390fd5b610ad88383611cd7565b505050565b610ae5611ccf565b73ffffffffffffffffffffffffffffffffffffffff16610b036113f3565b73ffffffffffffffffffffffffffffffffffffffff1614610b59576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b5090613ae3565b60405180910390fd5b80600b9080519060200190610b6f929190612e31565b5050565b6000600880549050905090565b600d60009054906101000a900460ff1681565b610ba4610b9e611ccf565b82611d90565b610be3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bda90613b83565b60405180910390fd5b610bee838383611e6e565b505050565b6000610bfe83611117565b8210610c3f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c3690613903565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b61271081565b610ca6611ccf565b73ffffffffffffffffffffffffffffffffffffffff16610cc46113f3565b73ffffffffffffffffffffffffffffffffffffffff1614610d1a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d1190613ae3565b60405180910390fd5b600d60009054906101000a900460ff1615600d60006101000a81548160ff021916908315150217905550565b610d4e611ccf565b73ffffffffffffffffffffffffffffffffffffffff16610d6c6113f3565b73ffffffffffffffffffffffffffffffffffffffff1614610dc2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610db990613ae3565b60405180910390fd5b60004711610e05576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dfc90613a23565b60405180910390fd5b739d7a3f970bbc7ab9c8537dc9637051b824a9ed0c73ffffffffffffffffffffffffffffffffffffffff166108fc610e3e47600a6120ca565b9081150290604051600060405180830381858888f19350505050610e97576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e8e90613be3565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050610f0b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f0290613c23565b60405180910390fd5b565b610f288383836040518060200160405280600081525061180c565b505050565b6000610f37610b73565b8210610f78576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f6f90613ba3565b60405180910390fd5b60088281548110610f8c57610f8b6140c5565b5b90600052602060002001549050919050565b610fa6611ccf565b73ffffffffffffffffffffffffffffffffffffffff16610fc46113f3565b73ffffffffffffffffffffffffffffffffffffffff161461101a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161101190613ae3565b60405180910390fd5b80600c9080519060200190611030929190612e31565b5050565b67013fbe85edc9000081565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156110e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110e090613a63565b60405180910390fd5b80915050919050565b67016345785d8a000081565b600d60019054906101000a900460ff1681565b6103e881565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611188576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161117f90613a43565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6060600c80546111de90613f2c565b80601f016020809104026020016040519081016040528092919081815260200182805461120a90613f2c565b80156112575780601f1061122c57610100808354040283529160200191611257565b820191906000526020600020905b81548152906001019060200180831161123a57829003601f168201915b5050505050905090565b611269611ccf565b73ffffffffffffffffffffffffffffffffffffffff166112876113f3565b73ffffffffffffffffffffffffffffffffffffffff16146112dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112d490613ae3565b60405180910390fd5b6112e76000612109565b565b606060006112f683611117565b9050600081141561135357600067ffffffffffffffff81111561131c5761131b6140f4565b5b60405190808252806020026020018201604052801561134a5781602001602082028036833780820191505090505b509150506113ee565b60008167ffffffffffffffff81111561136f5761136e6140f4565b5b60405190808252806020026020018201604052801561139d5781602001602082028036833780820191505090505b50905060005b828110156113e7576113b58582610bf3565b8282815181106113c8576113c76140c5565b5b60200260200101818152505080806113df90613f8f565b9150506113a3565b8193505050505b919050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606001805461142c90613f2c565b80601f016020809104026020016040519081016040528092919081815260200182805461145890613f2c565b80156114a55780601f1061147a576101008083540402835291602001916114a5565b820191906000526020600020905b81548152906001019060200180831161148857829003601f168201915b5050505050905090565b600d60009054906101000a900460ff166114fe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114f590613c03565b60405180910390fd5b611506610b73565b61271011611549576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161154090613983565b60405180910390fd5b60008111801561155a575060028111155b611599576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161159090613a83565b60405180910390fd5b806115a2610b73565b6115ac9190613d61565b61271010156115f0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115e790613b43565b60405180910390fd5b8067016345785d8a00006116049190613de8565b341015611646576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161163d90613bc3565b60405180910390fd5b60005b81811015611687576000600161165d610b73565b6116679190613d61565b905061167333826121cf565b50808061167f90613f8f565b915050611649565b5050565b611693611ccf565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611701576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116f8906139c3565b60405180910390fd5b806005600061170e611ccf565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166117bb611ccf565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516118009190613886565b60405180910390a35050565b61181d611817611ccf565b83611d90565b61185c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161185390613b83565b60405180910390fd5b611868848484846121ed565b50505050565b600d60019054906101000a900460ff166118bd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118b4906138e3565b60405180910390fd5b8067013fbe85edc900006118d19190613de8565b341015611913576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161190a90613bc3565b60405180910390fd5b6103e861191e610b73565b1061195e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611955906138c3565b60405180910390fd5b60005b8181101561199f5760006001611975610b73565b61197f9190613d61565b905061198b33826121cf565b50808061199790613f8f565b915050611961565b5050565b60606119ae82612249565b9050919050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611a51611ccf565b73ffffffffffffffffffffffffffffffffffffffff16611a6f6113f3565b73ffffffffffffffffffffffffffffffffffffffff1614611ac5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611abc90613ae3565b60405180910390fd5b600d60019054906101000a900460ff1615600d60016101000a81548160ff021916908315150217905550565b611af9611ccf565b73ffffffffffffffffffffffffffffffffffffffff16611b176113f3565b73ffffffffffffffffffffffffffffffffffffffff1614611b6d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b6490613ae3565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611bdd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bd490613943565b60405180910390fd5b611be681612109565b50565b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611c5c5750611c5b826122f0565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611d4a83611040565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611d9b82611c63565b611dda576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dd1906139e3565b60405180910390fd5b6000611de583611040565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611e5457508373ffffffffffffffffffffffffffffffffffffffff16611e3c84610940565b73ffffffffffffffffffffffffffffffffffffffff16145b80611e655750611e6481856119b5565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611e8e82611040565b73ffffffffffffffffffffffffffffffffffffffff1614611ee4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611edb90613b03565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611f54576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f4b906139a3565b60405180910390fd5b611f5f8383836123d2565b611f6a600082611cd7565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611fba9190613e42565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546120119190613d61565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b60008082846120d99190613fd8565b146120e55760016120e8565b60005b60ff1682846120f79190613db7565b6121019190613d61565b905092915050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6121e98282604051806020016040528060008152506123e2565b5050565b6121f8848484611e6e565b6122048484848461243d565b612243576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161223a90613923565b60405180910390fd5b50505050565b606061225482611c63565b612293576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161228a90613b23565b60405180910390fd5b600061229d6125d4565b905060008151116122bd57604051806020016040528060008152506122e8565b806122c784612666565b6040516020016122d89291906137d9565b6040516020818303038152906040525b915050919050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806123bb57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806123cb57506123ca826127c7565b5b9050919050565b6123dd838383612831565b505050565b6123ec8383612945565b6123f9600084848461243d565b612438576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161242f90613923565b60405180910390fd5b505050565b600061245e8473ffffffffffffffffffffffffffffffffffffffff16612b13565b156125c7578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612487611ccf565b8786866040518563ffffffff1660e01b81526004016124a99493929190613818565b602060405180830381600087803b1580156124c357600080fd5b505af19250505080156124f457506040513d601f19601f820116820180604052508101906124f1919061320d565b60015b612577573d8060008114612524576040519150601f19603f3d011682016040523d82523d6000602084013e612529565b606091505b5060008151141561256f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161256690613923565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506125cc565b600190505b949350505050565b6060600c80546125e390613f2c565b80601f016020809104026020016040519081016040528092919081815260200182805461260f90613f2c565b801561265c5780601f106126315761010080835404028352916020019161265c565b820191906000526020600020905b81548152906001019060200180831161263f57829003601f168201915b5050505050905090565b606060008214156126ae576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506127c2565b600082905060005b600082146126e05780806126c990613f8f565b915050600a826126d99190613db7565b91506126b6565b60008167ffffffffffffffff8111156126fc576126fb6140f4565b5b6040519080825280601f01601f19166020018201604052801561272e5781602001600182028036833780820191505090505b5090505b600085146127bb576001826127479190613e42565b9150600a856127569190613fd8565b60306127629190613d61565b60f81b818381518110612778576127776140c5565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856127b49190613db7565b9450612732565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b61283c838383612b26565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561287f5761287a81612b2b565b6128be565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16146128bd576128bc8382612b74565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612901576128fc81612ce1565b612940565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161461293f5761293e8282612db2565b5b5b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156129b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129ac90613aa3565b60405180910390fd5b6129be81611c63565b156129fe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129f590613963565b60405180910390fd5b612a0a600083836123d2565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612a5a9190613d61565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b60006001612b8184611117565b612b8b9190613e42565b9050600060076000848152602001908152602001600020549050818114612c70576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b60006001600880549050612cf59190613e42565b9050600060096000848152602001908152602001600020549050600060088381548110612d2557612d246140c5565b5b906000526020600020015490508060088381548110612d4757612d466140c5565b5b906000526020600020018190555081600960008381526020019081526020016000208190555060096000858152602001908152602001600020600090556008805480612d9657612d95614096565b5b6001900381819060005260206000200160009055905550505050565b6000612dbd83611117565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b828054612e3d90613f2c565b90600052602060002090601f016020900481019282612e5f5760008555612ea6565b82601f10612e7857805160ff1916838001178555612ea6565b82800160010185558215612ea6579182015b82811115612ea5578251825591602001919060010190612e8a565b5b509050612eb39190612eb7565b5090565b5b80821115612ed0576000816000905550600101612eb8565b5090565b6000612ee7612ee284613c83565b613c5e565b905082815260208101848484011115612f0357612f02614128565b5b612f0e848285613eea565b509392505050565b6000612f29612f2484613cb4565b613c5e565b905082815260208101848484011115612f4557612f44614128565b5b612f50848285613eea565b509392505050565b600081359050612f67816147d8565b92915050565b600081359050612f7c816147ef565b92915050565b600081359050612f9181614806565b92915050565b600081519050612fa681614806565b92915050565b600082601f830112612fc157612fc0614123565b5b8135612fd1848260208601612ed4565b91505092915050565b600082601f830112612fef57612fee614123565b5b8135612fff848260208601612f16565b91505092915050565b6000813590506130178161481d565b92915050565b60006020828403121561303357613032614132565b5b600061304184828501612f58565b91505092915050565b6000806040838503121561306157613060614132565b5b600061306f85828601612f58565b925050602061308085828601612f58565b9150509250929050565b6000806000606084860312156130a3576130a2614132565b5b60006130b186828701612f58565b93505060206130c286828701612f58565b92505060406130d386828701613008565b9150509250925092565b600080600080608085870312156130f7576130f6614132565b5b600061310587828801612f58565b945050602061311687828801612f58565b935050604061312787828801613008565b925050606085013567ffffffffffffffff8111156131485761314761412d565b5b61315487828801612fac565b91505092959194509250565b6000806040838503121561317757613176614132565b5b600061318585828601612f58565b925050602061319685828601612f6d565b9150509250929050565b600080604083850312156131b7576131b6614132565b5b60006131c585828601612f58565b92505060206131d685828601613008565b9150509250929050565b6000602082840312156131f6576131f5614132565b5b600061320484828501612f82565b91505092915050565b60006020828403121561322357613222614132565b5b600061323184828501612f97565b91505092915050565b6000602082840312156132505761324f614132565b5b600082013567ffffffffffffffff81111561326e5761326d61412d565b5b61327a84828501612fda565b91505092915050565b60006020828403121561329957613298614132565b5b60006132a784828501613008565b91505092915050565b60006132bc83836137bb565b60208301905092915050565b6132d181613e76565b82525050565b60006132e282613cf5565b6132ec8185613d23565b93506132f783613ce5565b8060005b8381101561332857815161330f88826132b0565b975061331a83613d16565b9250506001810190506132fb565b5085935050505092915050565b61333e81613e88565b82525050565b600061334f82613d00565b6133598185613d34565b9350613369818560208601613ef9565b61337281614137565b840191505092915050565b600061338882613d0b565b6133928185613d45565b93506133a2818560208601613ef9565b6133ab81614137565b840191505092915050565b60006133c182613d0b565b6133cb8185613d56565b93506133db818560208601613ef9565b80840191505092915050565b60006133f4601183613d45565b91506133ff82614148565b602082019050919050565b6000613417601783613d45565b915061342282614171565b602082019050919050565b600061343a602b83613d45565b91506134458261419a565b604082019050919050565b600061345d603283613d45565b9150613468826141e9565b604082019050919050565b6000613480602683613d45565b915061348b82614238565b604082019050919050565b60006134a3601c83613d45565b91506134ae82614287565b602082019050919050565b60006134c6600e83613d45565b91506134d1826142b0565b602082019050919050565b60006134e9602483613d45565b91506134f4826142d9565b604082019050919050565b600061350c601983613d45565b915061351782614328565b602082019050919050565b600061352f602c83613d45565b915061353a82614351565b604082019050919050565b6000613552603883613d45565b915061355d826143a0565b604082019050919050565b6000613575601a83613d45565b9150613580826143ef565b602082019050919050565b6000613598602a83613d45565b91506135a382614418565b604082019050919050565b60006135bb602983613d45565b91506135c682614467565b604082019050919050565b60006135de601983613d45565b91506135e9826144b6565b602082019050919050565b6000613601602083613d45565b915061360c826144df565b602082019050919050565b6000613624602c83613d45565b915061362f82614508565b604082019050919050565b6000613647602083613d45565b915061365282614557565b602082019050919050565b600061366a602983613d45565b915061367582614580565b604082019050919050565b600061368d602f83613d45565b9150613698826145cf565b604082019050919050565b60006136b0601283613d45565b91506136bb8261461e565b602082019050919050565b60006136d3602183613d45565b91506136de82614647565b604082019050919050565b60006136f6603183613d45565b915061370182614696565b604082019050919050565b6000613719602c83613d45565b9150613724826146e5565b604082019050919050565b600061373c601583613d45565b915061374782614734565b602082019050919050565b600061375f601b83613d45565b915061376a8261475d565b602082019050919050565b6000613782601483613d45565b915061378d82614786565b602082019050919050565b60006137a5601183613d45565b91506137b0826147af565b602082019050919050565b6137c481613ee0565b82525050565b6137d381613ee0565b82525050565b60006137e582856133b6565b91506137f182846133b6565b91508190509392505050565b600060208201905061381260008301846132c8565b92915050565b600060808201905061382d60008301876132c8565b61383a60208301866132c8565b61384760408301856137ca565b81810360608301526138598184613344565b905095945050505050565b6000602082019050818103600083015261387e81846132d7565b905092915050565b600060208201905061389b6000830184613335565b92915050565b600060208201905081810360008301526138bb818461337d565b905092915050565b600060208201905081810360008301526138dc816133e7565b9050919050565b600060208201905081810360008301526138fc8161340a565b9050919050565b6000602082019050818103600083015261391c8161342d565b9050919050565b6000602082019050818103600083015261393c81613450565b9050919050565b6000602082019050818103600083015261395c81613473565b9050919050565b6000602082019050818103600083015261397c81613496565b9050919050565b6000602082019050818103600083015261399c816134b9565b9050919050565b600060208201905081810360008301526139bc816134dc565b9050919050565b600060208201905081810360008301526139dc816134ff565b9050919050565b600060208201905081810360008301526139fc81613522565b9050919050565b60006020820190508181036000830152613a1c81613545565b9050919050565b60006020820190508181036000830152613a3c81613568565b9050919050565b60006020820190508181036000830152613a5c8161358b565b9050919050565b60006020820190508181036000830152613a7c816135ae565b9050919050565b60006020820190508181036000830152613a9c816135d1565b9050919050565b60006020820190508181036000830152613abc816135f4565b9050919050565b60006020820190508181036000830152613adc81613617565b9050919050565b60006020820190508181036000830152613afc8161363a565b9050919050565b60006020820190508181036000830152613b1c8161365d565b9050919050565b60006020820190508181036000830152613b3c81613680565b9050919050565b60006020820190508181036000830152613b5c816136a3565b9050919050565b60006020820190508181036000830152613b7c816136c6565b9050919050565b60006020820190508181036000830152613b9c816136e9565b9050919050565b60006020820190508181036000830152613bbc8161370c565b9050919050565b60006020820190508181036000830152613bdc8161372f565b9050919050565b60006020820190508181036000830152613bfc81613752565b9050919050565b60006020820190508181036000830152613c1c81613775565b9050919050565b60006020820190508181036000830152613c3c81613798565b9050919050565b6000602082019050613c5860008301846137ca565b92915050565b6000613c68613c79565b9050613c748282613f5e565b919050565b6000604051905090565b600067ffffffffffffffff821115613c9e57613c9d6140f4565b5b613ca782614137565b9050602081019050919050565b600067ffffffffffffffff821115613ccf57613cce6140f4565b5b613cd882614137565b9050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000613d6c82613ee0565b9150613d7783613ee0565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613dac57613dab614009565b5b828201905092915050565b6000613dc282613ee0565b9150613dcd83613ee0565b925082613ddd57613ddc614038565b5b828204905092915050565b6000613df382613ee0565b9150613dfe83613ee0565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613e3757613e36614009565b5b828202905092915050565b6000613e4d82613ee0565b9150613e5883613ee0565b925082821015613e6b57613e6a614009565b5b828203905092915050565b6000613e8182613ec0565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613f17578082015181840152602081019050613efc565b83811115613f26576000848401525b50505050565b60006002820490506001821680613f4457607f821691505b60208210811415613f5857613f57614067565b5b50919050565b613f6782614137565b810181811067ffffffffffffffff82111715613f8657613f856140f4565b5b80604052505050565b6000613f9a82613ee0565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613fcd57613fcc614009565b5b600182019050919050565b6000613fe382613ee0565b9150613fee83613ee0565b925082613ffe57613ffd614038565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f50726573616c652068617320656e646564000000000000000000000000000000600082015250565b7f50726573616c6520686173206e6f742073746172746564000000000000000000600082015250565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f53616c652068617320656e646564000000000000000000000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f436f6e7472616374206d75737420686176652062616c616e6365000000000000600082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f45786365656473204d41585f4d494e545f5045525f43414c4c00000000000000600082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f45786365656473204d41585f535550504c590000000000000000000000000000600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f496e636f72726563742065746865722076616c75650000000000000000000000600082015250565b7f5061796d656e7420746f20646576656c6f706572206661696c65640000000000600082015250565b7f53616c6520686173206e6f742073746172746564000000000000000000000000600082015250565b7f5769746864726177616c206661696c6564000000000000000000000000000000600082015250565b6147e181613e76565b81146147ec57600080fd5b50565b6147f881613e88565b811461480357600080fd5b50565b61480f81613e94565b811461481a57600080fd5b50565b61482681613ee0565b811461483157600080fd5b5056fea2646970667358221220a284c4c3d95163e679ab6ff04bf8247efd021208377f6e51a079e322d2b89c4f64736f6c6343000807003300000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d5434665352636a356e4c6653637268705a5269593556566a67314539336477746b7450415765424132627a6a2f00000000000000000000

Deployed Bytecode

0x6080604052600436106102045760003560e01c80636352211e1161011857806395d89b41116100a0578063b98847721161006f578063b988477214610738578063c87b56dd14610754578063e985e9c514610791578063f0325549146107ce578063f2fde38b146107e557610204565b806395d89b411461069f578063a0712d68146106ca578063a22cb465146106e6578063b88d4fde1461070f57610204565b806370a08231116100e757806370a08231146105b8578063714c5398146105f5578063715018a6146106205780638462151c146106375780638da5cb5b1461067457610204565b80636352211e146104fa578063676dd563146105375780636a5928f5146105625780636b8dc3551461058d57610204565b806323b872dd1161019b5780633ccfd60b1161016a5780633ccfd60b1461042957806342842e0e146104405780634f6ccce71461046957806355f804b3146104a6578063577ad34d146104cf57610204565b806323b872dd146103815780632f745c59146103aa57806332cb6b0c146103e757806334918dfd1461041257610204565b8063095ea7b3116101d7578063095ea7b3146102d9578063109695231461030257806318160ddd1461032b5780631c8b232d1461035657610204565b806301ffc9a71461020957806303de7ac01461024657806306fdde0314610271578063081812fc1461029c575b600080fd5b34801561021557600080fd5b50610230600480360381019061022b91906131e0565b61080e565b60405161023d9190613886565b60405180910390f35b34801561025257600080fd5b5061025b610820565b60405161026891906138a1565b60405180910390f35b34801561027d57600080fd5b506102866108ae565b60405161029391906138a1565b60405180910390f35b3480156102a857600080fd5b506102c360048036038101906102be9190613283565b610940565b6040516102d091906137fd565b60405180910390f35b3480156102e557600080fd5b5061030060048036038101906102fb91906131a0565b6109c5565b005b34801561030e57600080fd5b506103296004803603810190610324919061323a565b610add565b005b34801561033757600080fd5b50610340610b73565b60405161034d9190613c43565b60405180910390f35b34801561036257600080fd5b5061036b610b80565b6040516103789190613886565b60405180910390f35b34801561038d57600080fd5b506103a860048036038101906103a3919061308a565b610b93565b005b3480156103b657600080fd5b506103d160048036038101906103cc91906131a0565b610bf3565b6040516103de9190613c43565b60405180910390f35b3480156103f357600080fd5b506103fc610c98565b6040516104099190613c43565b60405180910390f35b34801561041e57600080fd5b50610427610c9e565b005b34801561043557600080fd5b5061043e610d46565b005b34801561044c57600080fd5b506104676004803603810190610462919061308a565b610f0d565b005b34801561047557600080fd5b50610490600480360381019061048b9190613283565b610f2d565b60405161049d9190613c43565b60405180910390f35b3480156104b257600080fd5b506104cd60048036038101906104c8919061323a565b610f9e565b005b3480156104db57600080fd5b506104e4611034565b6040516104f19190613c43565b60405180910390f35b34801561050657600080fd5b50610521600480360381019061051c9190613283565b611040565b60405161052e91906137fd565b60405180910390f35b34801561054357600080fd5b5061054c6110f2565b6040516105599190613c43565b60405180910390f35b34801561056e57600080fd5b506105776110fe565b6040516105849190613886565b60405180910390f35b34801561059957600080fd5b506105a2611111565b6040516105af9190613c43565b60405180910390f35b3480156105c457600080fd5b506105df60048036038101906105da919061301d565b611117565b6040516105ec9190613c43565b60405180910390f35b34801561060157600080fd5b5061060a6111cf565b60405161061791906138a1565b60405180910390f35b34801561062c57600080fd5b50610635611261565b005b34801561064357600080fd5b5061065e6004803603810190610659919061301d565b6112e9565b60405161066b9190613864565b60405180910390f35b34801561068057600080fd5b506106896113f3565b60405161069691906137fd565b60405180910390f35b3480156106ab57600080fd5b506106b461141d565b6040516106c191906138a1565b60405180910390f35b6106e460048036038101906106df9190613283565b6114af565b005b3480156106f257600080fd5b5061070d60048036038101906107089190613160565b61168b565b005b34801561071b57600080fd5b50610736600480360381019061073191906130dd565b61180c565b005b610752600480360381019061074d9190613283565b61186e565b005b34801561076057600080fd5b5061077b60048036038101906107769190613283565b6119a3565b60405161078891906138a1565b60405180910390f35b34801561079d57600080fd5b506107b860048036038101906107b3919061304a565b6119b5565b6040516107c59190613886565b60405180910390f35b3480156107da57600080fd5b506107e3611a49565b005b3480156107f157600080fd5b5061080c6004803603810190610807919061301d565b611af1565b005b600061081982611be9565b9050919050565b600b805461082d90613f2c565b80601f016020809104026020016040519081016040528092919081815260200182805461085990613f2c565b80156108a65780601f1061087b576101008083540402835291602001916108a6565b820191906000526020600020905b81548152906001019060200180831161088957829003601f168201915b505050505081565b6060600080546108bd90613f2c565b80601f01602080910402602001604051908101604052809291908181526020018280546108e990613f2c565b80156109365780601f1061090b57610100808354040283529160200191610936565b820191906000526020600020905b81548152906001019060200180831161091957829003601f168201915b5050505050905090565b600061094b82611c63565b61098a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161098190613ac3565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006109d082611040565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610a41576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a3890613b63565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610a60611ccf565b73ffffffffffffffffffffffffffffffffffffffff161480610a8f5750610a8e81610a89611ccf565b6119b5565b5b610ace576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ac590613a03565b60405180910390fd5b610ad88383611cd7565b505050565b610ae5611ccf565b73ffffffffffffffffffffffffffffffffffffffff16610b036113f3565b73ffffffffffffffffffffffffffffffffffffffff1614610b59576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b5090613ae3565b60405180910390fd5b80600b9080519060200190610b6f929190612e31565b5050565b6000600880549050905090565b600d60009054906101000a900460ff1681565b610ba4610b9e611ccf565b82611d90565b610be3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bda90613b83565b60405180910390fd5b610bee838383611e6e565b505050565b6000610bfe83611117565b8210610c3f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c3690613903565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b61271081565b610ca6611ccf565b73ffffffffffffffffffffffffffffffffffffffff16610cc46113f3565b73ffffffffffffffffffffffffffffffffffffffff1614610d1a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d1190613ae3565b60405180910390fd5b600d60009054906101000a900460ff1615600d60006101000a81548160ff021916908315150217905550565b610d4e611ccf565b73ffffffffffffffffffffffffffffffffffffffff16610d6c6113f3565b73ffffffffffffffffffffffffffffffffffffffff1614610dc2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610db990613ae3565b60405180910390fd5b60004711610e05576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dfc90613a23565b60405180910390fd5b739d7a3f970bbc7ab9c8537dc9637051b824a9ed0c73ffffffffffffffffffffffffffffffffffffffff166108fc610e3e47600a6120ca565b9081150290604051600060405180830381858888f19350505050610e97576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e8e90613be3565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050610f0b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f0290613c23565b60405180910390fd5b565b610f288383836040518060200160405280600081525061180c565b505050565b6000610f37610b73565b8210610f78576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f6f90613ba3565b60405180910390fd5b60088281548110610f8c57610f8b6140c5565b5b90600052602060002001549050919050565b610fa6611ccf565b73ffffffffffffffffffffffffffffffffffffffff16610fc46113f3565b73ffffffffffffffffffffffffffffffffffffffff161461101a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161101190613ae3565b60405180910390fd5b80600c9080519060200190611030929190612e31565b5050565b67013fbe85edc9000081565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156110e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110e090613a63565b60405180910390fd5b80915050919050565b67016345785d8a000081565b600d60019054906101000a900460ff1681565b6103e881565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611188576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161117f90613a43565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6060600c80546111de90613f2c565b80601f016020809104026020016040519081016040528092919081815260200182805461120a90613f2c565b80156112575780601f1061122c57610100808354040283529160200191611257565b820191906000526020600020905b81548152906001019060200180831161123a57829003601f168201915b5050505050905090565b611269611ccf565b73ffffffffffffffffffffffffffffffffffffffff166112876113f3565b73ffffffffffffffffffffffffffffffffffffffff16146112dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112d490613ae3565b60405180910390fd5b6112e76000612109565b565b606060006112f683611117565b9050600081141561135357600067ffffffffffffffff81111561131c5761131b6140f4565b5b60405190808252806020026020018201604052801561134a5781602001602082028036833780820191505090505b509150506113ee565b60008167ffffffffffffffff81111561136f5761136e6140f4565b5b60405190808252806020026020018201604052801561139d5781602001602082028036833780820191505090505b50905060005b828110156113e7576113b58582610bf3565b8282815181106113c8576113c76140c5565b5b60200260200101818152505080806113df90613f8f565b9150506113a3565b8193505050505b919050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606001805461142c90613f2c565b80601f016020809104026020016040519081016040528092919081815260200182805461145890613f2c565b80156114a55780601f1061147a576101008083540402835291602001916114a5565b820191906000526020600020905b81548152906001019060200180831161148857829003601f168201915b5050505050905090565b600d60009054906101000a900460ff166114fe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114f590613c03565b60405180910390fd5b611506610b73565b61271011611549576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161154090613983565b60405180910390fd5b60008111801561155a575060028111155b611599576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161159090613a83565b60405180910390fd5b806115a2610b73565b6115ac9190613d61565b61271010156115f0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115e790613b43565b60405180910390fd5b8067016345785d8a00006116049190613de8565b341015611646576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161163d90613bc3565b60405180910390fd5b60005b81811015611687576000600161165d610b73565b6116679190613d61565b905061167333826121cf565b50808061167f90613f8f565b915050611649565b5050565b611693611ccf565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611701576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116f8906139c3565b60405180910390fd5b806005600061170e611ccf565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166117bb611ccf565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516118009190613886565b60405180910390a35050565b61181d611817611ccf565b83611d90565b61185c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161185390613b83565b60405180910390fd5b611868848484846121ed565b50505050565b600d60019054906101000a900460ff166118bd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118b4906138e3565b60405180910390fd5b8067013fbe85edc900006118d19190613de8565b341015611913576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161190a90613bc3565b60405180910390fd5b6103e861191e610b73565b1061195e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611955906138c3565b60405180910390fd5b60005b8181101561199f5760006001611975610b73565b61197f9190613d61565b905061198b33826121cf565b50808061199790613f8f565b915050611961565b5050565b60606119ae82612249565b9050919050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611a51611ccf565b73ffffffffffffffffffffffffffffffffffffffff16611a6f6113f3565b73ffffffffffffffffffffffffffffffffffffffff1614611ac5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611abc90613ae3565b60405180910390fd5b600d60019054906101000a900460ff1615600d60016101000a81548160ff021916908315150217905550565b611af9611ccf565b73ffffffffffffffffffffffffffffffffffffffff16611b176113f3565b73ffffffffffffffffffffffffffffffffffffffff1614611b6d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b6490613ae3565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611bdd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bd490613943565b60405180910390fd5b611be681612109565b50565b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611c5c5750611c5b826122f0565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611d4a83611040565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611d9b82611c63565b611dda576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dd1906139e3565b60405180910390fd5b6000611de583611040565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611e5457508373ffffffffffffffffffffffffffffffffffffffff16611e3c84610940565b73ffffffffffffffffffffffffffffffffffffffff16145b80611e655750611e6481856119b5565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611e8e82611040565b73ffffffffffffffffffffffffffffffffffffffff1614611ee4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611edb90613b03565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611f54576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f4b906139a3565b60405180910390fd5b611f5f8383836123d2565b611f6a600082611cd7565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611fba9190613e42565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546120119190613d61565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b60008082846120d99190613fd8565b146120e55760016120e8565b60005b60ff1682846120f79190613db7565b6121019190613d61565b905092915050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6121e98282604051806020016040528060008152506123e2565b5050565b6121f8848484611e6e565b6122048484848461243d565b612243576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161223a90613923565b60405180910390fd5b50505050565b606061225482611c63565b612293576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161228a90613b23565b60405180910390fd5b600061229d6125d4565b905060008151116122bd57604051806020016040528060008152506122e8565b806122c784612666565b6040516020016122d89291906137d9565b6040516020818303038152906040525b915050919050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806123bb57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806123cb57506123ca826127c7565b5b9050919050565b6123dd838383612831565b505050565b6123ec8383612945565b6123f9600084848461243d565b612438576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161242f90613923565b60405180910390fd5b505050565b600061245e8473ffffffffffffffffffffffffffffffffffffffff16612b13565b156125c7578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612487611ccf565b8786866040518563ffffffff1660e01b81526004016124a99493929190613818565b602060405180830381600087803b1580156124c357600080fd5b505af19250505080156124f457506040513d601f19601f820116820180604052508101906124f1919061320d565b60015b612577573d8060008114612524576040519150601f19603f3d011682016040523d82523d6000602084013e612529565b606091505b5060008151141561256f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161256690613923565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506125cc565b600190505b949350505050565b6060600c80546125e390613f2c565b80601f016020809104026020016040519081016040528092919081815260200182805461260f90613f2c565b801561265c5780601f106126315761010080835404028352916020019161265c565b820191906000526020600020905b81548152906001019060200180831161263f57829003601f168201915b5050505050905090565b606060008214156126ae576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506127c2565b600082905060005b600082146126e05780806126c990613f8f565b915050600a826126d99190613db7565b91506126b6565b60008167ffffffffffffffff8111156126fc576126fb6140f4565b5b6040519080825280601f01601f19166020018201604052801561272e5781602001600182028036833780820191505090505b5090505b600085146127bb576001826127479190613e42565b9150600a856127569190613fd8565b60306127629190613d61565b60f81b818381518110612778576127776140c5565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856127b49190613db7565b9450612732565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b61283c838383612b26565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561287f5761287a81612b2b565b6128be565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16146128bd576128bc8382612b74565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612901576128fc81612ce1565b612940565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161461293f5761293e8282612db2565b5b5b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156129b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129ac90613aa3565b60405180910390fd5b6129be81611c63565b156129fe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129f590613963565b60405180910390fd5b612a0a600083836123d2565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612a5a9190613d61565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b60006001612b8184611117565b612b8b9190613e42565b9050600060076000848152602001908152602001600020549050818114612c70576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b60006001600880549050612cf59190613e42565b9050600060096000848152602001908152602001600020549050600060088381548110612d2557612d246140c5565b5b906000526020600020015490508060088381548110612d4757612d466140c5565b5b906000526020600020018190555081600960008381526020019081526020016000208190555060096000858152602001908152602001600020600090556008805480612d9657612d95614096565b5b6001900381819060005260206000200160009055905550505050565b6000612dbd83611117565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b828054612e3d90613f2c565b90600052602060002090601f016020900481019282612e5f5760008555612ea6565b82601f10612e7857805160ff1916838001178555612ea6565b82800160010185558215612ea6579182015b82811115612ea5578251825591602001919060010190612e8a565b5b509050612eb39190612eb7565b5090565b5b80821115612ed0576000816000905550600101612eb8565b5090565b6000612ee7612ee284613c83565b613c5e565b905082815260208101848484011115612f0357612f02614128565b5b612f0e848285613eea565b509392505050565b6000612f29612f2484613cb4565b613c5e565b905082815260208101848484011115612f4557612f44614128565b5b612f50848285613eea565b509392505050565b600081359050612f67816147d8565b92915050565b600081359050612f7c816147ef565b92915050565b600081359050612f9181614806565b92915050565b600081519050612fa681614806565b92915050565b600082601f830112612fc157612fc0614123565b5b8135612fd1848260208601612ed4565b91505092915050565b600082601f830112612fef57612fee614123565b5b8135612fff848260208601612f16565b91505092915050565b6000813590506130178161481d565b92915050565b60006020828403121561303357613032614132565b5b600061304184828501612f58565b91505092915050565b6000806040838503121561306157613060614132565b5b600061306f85828601612f58565b925050602061308085828601612f58565b9150509250929050565b6000806000606084860312156130a3576130a2614132565b5b60006130b186828701612f58565b93505060206130c286828701612f58565b92505060406130d386828701613008565b9150509250925092565b600080600080608085870312156130f7576130f6614132565b5b600061310587828801612f58565b945050602061311687828801612f58565b935050604061312787828801613008565b925050606085013567ffffffffffffffff8111156131485761314761412d565b5b61315487828801612fac565b91505092959194509250565b6000806040838503121561317757613176614132565b5b600061318585828601612f58565b925050602061319685828601612f6d565b9150509250929050565b600080604083850312156131b7576131b6614132565b5b60006131c585828601612f58565b92505060206131d685828601613008565b9150509250929050565b6000602082840312156131f6576131f5614132565b5b600061320484828501612f82565b91505092915050565b60006020828403121561322357613222614132565b5b600061323184828501612f97565b91505092915050565b6000602082840312156132505761324f614132565b5b600082013567ffffffffffffffff81111561326e5761326d61412d565b5b61327a84828501612fda565b91505092915050565b60006020828403121561329957613298614132565b5b60006132a784828501613008565b91505092915050565b60006132bc83836137bb565b60208301905092915050565b6132d181613e76565b82525050565b60006132e282613cf5565b6132ec8185613d23565b93506132f783613ce5565b8060005b8381101561332857815161330f88826132b0565b975061331a83613d16565b9250506001810190506132fb565b5085935050505092915050565b61333e81613e88565b82525050565b600061334f82613d00565b6133598185613d34565b9350613369818560208601613ef9565b61337281614137565b840191505092915050565b600061338882613d0b565b6133928185613d45565b93506133a2818560208601613ef9565b6133ab81614137565b840191505092915050565b60006133c182613d0b565b6133cb8185613d56565b93506133db818560208601613ef9565b80840191505092915050565b60006133f4601183613d45565b91506133ff82614148565b602082019050919050565b6000613417601783613d45565b915061342282614171565b602082019050919050565b600061343a602b83613d45565b91506134458261419a565b604082019050919050565b600061345d603283613d45565b9150613468826141e9565b604082019050919050565b6000613480602683613d45565b915061348b82614238565b604082019050919050565b60006134a3601c83613d45565b91506134ae82614287565b602082019050919050565b60006134c6600e83613d45565b91506134d1826142b0565b602082019050919050565b60006134e9602483613d45565b91506134f4826142d9565b604082019050919050565b600061350c601983613d45565b915061351782614328565b602082019050919050565b600061352f602c83613d45565b915061353a82614351565b604082019050919050565b6000613552603883613d45565b915061355d826143a0565b604082019050919050565b6000613575601a83613d45565b9150613580826143ef565b602082019050919050565b6000613598602a83613d45565b91506135a382614418565b604082019050919050565b60006135bb602983613d45565b91506135c682614467565b604082019050919050565b60006135de601983613d45565b91506135e9826144b6565b602082019050919050565b6000613601602083613d45565b915061360c826144df565b602082019050919050565b6000613624602c83613d45565b915061362f82614508565b604082019050919050565b6000613647602083613d45565b915061365282614557565b602082019050919050565b600061366a602983613d45565b915061367582614580565b604082019050919050565b600061368d602f83613d45565b9150613698826145cf565b604082019050919050565b60006136b0601283613d45565b91506136bb8261461e565b602082019050919050565b60006136d3602183613d45565b91506136de82614647565b604082019050919050565b60006136f6603183613d45565b915061370182614696565b604082019050919050565b6000613719602c83613d45565b9150613724826146e5565b604082019050919050565b600061373c601583613d45565b915061374782614734565b602082019050919050565b600061375f601b83613d45565b915061376a8261475d565b602082019050919050565b6000613782601483613d45565b915061378d82614786565b602082019050919050565b60006137a5601183613d45565b91506137b0826147af565b602082019050919050565b6137c481613ee0565b82525050565b6137d381613ee0565b82525050565b60006137e582856133b6565b91506137f182846133b6565b91508190509392505050565b600060208201905061381260008301846132c8565b92915050565b600060808201905061382d60008301876132c8565b61383a60208301866132c8565b61384760408301856137ca565b81810360608301526138598184613344565b905095945050505050565b6000602082019050818103600083015261387e81846132d7565b905092915050565b600060208201905061389b6000830184613335565b92915050565b600060208201905081810360008301526138bb818461337d565b905092915050565b600060208201905081810360008301526138dc816133e7565b9050919050565b600060208201905081810360008301526138fc8161340a565b9050919050565b6000602082019050818103600083015261391c8161342d565b9050919050565b6000602082019050818103600083015261393c81613450565b9050919050565b6000602082019050818103600083015261395c81613473565b9050919050565b6000602082019050818103600083015261397c81613496565b9050919050565b6000602082019050818103600083015261399c816134b9565b9050919050565b600060208201905081810360008301526139bc816134dc565b9050919050565b600060208201905081810360008301526139dc816134ff565b9050919050565b600060208201905081810360008301526139fc81613522565b9050919050565b60006020820190508181036000830152613a1c81613545565b9050919050565b60006020820190508181036000830152613a3c81613568565b9050919050565b60006020820190508181036000830152613a5c8161358b565b9050919050565b60006020820190508181036000830152613a7c816135ae565b9050919050565b60006020820190508181036000830152613a9c816135d1565b9050919050565b60006020820190508181036000830152613abc816135f4565b9050919050565b60006020820190508181036000830152613adc81613617565b9050919050565b60006020820190508181036000830152613afc8161363a565b9050919050565b60006020820190508181036000830152613b1c8161365d565b9050919050565b60006020820190508181036000830152613b3c81613680565b9050919050565b60006020820190508181036000830152613b5c816136a3565b9050919050565b60006020820190508181036000830152613b7c816136c6565b9050919050565b60006020820190508181036000830152613b9c816136e9565b9050919050565b60006020820190508181036000830152613bbc8161370c565b9050919050565b60006020820190508181036000830152613bdc8161372f565b9050919050565b60006020820190508181036000830152613bfc81613752565b9050919050565b60006020820190508181036000830152613c1c81613775565b9050919050565b60006020820190508181036000830152613c3c81613798565b9050919050565b6000602082019050613c5860008301846137ca565b92915050565b6000613c68613c79565b9050613c748282613f5e565b919050565b6000604051905090565b600067ffffffffffffffff821115613c9e57613c9d6140f4565b5b613ca782614137565b9050602081019050919050565b600067ffffffffffffffff821115613ccf57613cce6140f4565b5b613cd882614137565b9050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000613d6c82613ee0565b9150613d7783613ee0565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613dac57613dab614009565b5b828201905092915050565b6000613dc282613ee0565b9150613dcd83613ee0565b925082613ddd57613ddc614038565b5b828204905092915050565b6000613df382613ee0565b9150613dfe83613ee0565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613e3757613e36614009565b5b828202905092915050565b6000613e4d82613ee0565b9150613e5883613ee0565b925082821015613e6b57613e6a614009565b5b828203905092915050565b6000613e8182613ec0565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613f17578082015181840152602081019050613efc565b83811115613f26576000848401525b50505050565b60006002820490506001821680613f4457607f821691505b60208210811415613f5857613f57614067565b5b50919050565b613f6782614137565b810181811067ffffffffffffffff82111715613f8657613f856140f4565b5b80604052505050565b6000613f9a82613ee0565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613fcd57613fcc614009565b5b600182019050919050565b6000613fe382613ee0565b9150613fee83613ee0565b925082613ffe57613ffd614038565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f50726573616c652068617320656e646564000000000000000000000000000000600082015250565b7f50726573616c6520686173206e6f742073746172746564000000000000000000600082015250565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f53616c652068617320656e646564000000000000000000000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f436f6e7472616374206d75737420686176652062616c616e6365000000000000600082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f45786365656473204d41585f4d494e545f5045525f43414c4c00000000000000600082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f45786365656473204d41585f535550504c590000000000000000000000000000600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f496e636f72726563742065746865722076616c75650000000000000000000000600082015250565b7f5061796d656e7420746f20646576656c6f706572206661696c65640000000000600082015250565b7f53616c6520686173206e6f742073746172746564000000000000000000000000600082015250565b7f5769746864726177616c206661696c6564000000000000000000000000000000600082015250565b6147e181613e76565b81146147ec57600080fd5b50565b6147f881613e88565b811461480357600080fd5b50565b61480f81613e94565b811461481a57600080fd5b50565b61482681613ee0565b811461483157600080fd5b5056fea2646970667358221220a284c4c3d95163e679ab6ff04bf8247efd021208377f6e51a079e322d2b89c4f64736f6c63430008070033

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

00000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d5434665352636a356e4c6653637268705a5269593556566a67314539336477746b7450415765424132627a6a2f00000000000000000000

-----Decoded View---------------
Arg [0] : baseURI (string): ipfs://QmT4fSRcj5nLfScrhpZRiY5VVjg1E93dwtktPAWeBA2bzj/

-----Encoded View---------------
4 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000036
Arg [2] : 697066733a2f2f516d5434665352636a356e4c6653637268705a526959355656
Arg [3] : 6a67314539336477746b7450415765424132627a6a2f00000000000000000000


Deployed Bytecode Sourcemap

43177:4203:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47051:188;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43259:49;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24859:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26418:221;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25941:411;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47243:134;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;37607:113;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43508:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27308:339;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;37275:256;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43404:39;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45868:87;;;;;;;;;;;;;:::i;:::-;;46250:352;;;;;;;;;;;;;:::i;:::-;;27718:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;37797:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44173:96;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43652:61;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24553:239;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43334:54;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43610:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43729:46;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24283:208;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44273:92;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4558:94;;;;;;;;;;;;;:::i;:::-;;44369:472;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3907:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25028:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45291:573;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26711:295;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;27974:328;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;44845:442;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46893:154;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27077:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45959:96;;;;;;;;;;;;;:::i;:::-;;4807:192;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47051:188;47174:4;47197:36;47221:11;47197:23;:36::i;:::-;47190:43;;47051:188;;;:::o;43259:49::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;24859:100::-;24913:13;24946:5;24939:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24859:100;:::o;26418:221::-;26494:7;26522:16;26530:7;26522;:16::i;:::-;26514:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;26607:15;:24;26623:7;26607:24;;;;;;;;;;;;;;;;;;;;;26600:31;;26418:221;;;:::o;25941:411::-;26022:13;26038:23;26053:7;26038:14;:23::i;:::-;26022:39;;26086:5;26080:11;;:2;:11;;;;26072:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;26180:5;26164:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;26189:37;26206:5;26213:12;:10;:12::i;:::-;26189:16;:37::i;:::-;26164:62;26142:168;;;;;;;;;;;;:::i;:::-;;;;;;;;;26323:21;26332:2;26336:7;26323:8;:21::i;:::-;26011:341;25941:411;;:::o;47243:134::-;4138:12;:10;:12::i;:::-;4127:23;;:7;:5;:7::i;:::-;:23;;;4119:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;47357:14:::1;47324:30;:47;;;;;;;;;;;;:::i;:::-;;47243:134:::0;:::o;37607:113::-;37668:7;37695:10;:17;;;;37688:24;;37607:113;:::o;43508:34::-;;;;;;;;;;;;;:::o;27308:339::-;27503:41;27522:12;:10;:12::i;:::-;27536:7;27503:18;:41::i;:::-;27495:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;27611:28;27621:4;27627:2;27631:7;27611:9;:28::i;:::-;27308:339;;;:::o;37275:256::-;37372:7;37408:23;37425:5;37408:16;:23::i;:::-;37400:5;:31;37392:87;;;;;;;;;;;;:::i;:::-;;;;;;;;;37497:12;:19;37510:5;37497:19;;;;;;;;;;;;;;;:26;37517:5;37497:26;;;;;;;;;;;;37490:33;;37275:256;;;;:::o;43404:39::-;43438:5;43404:39;:::o;45868:87::-;4138:12;:10;:12::i;:::-;4127:23;;:7;:5;:7::i;:::-;:23;;;4119:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;45935:14:::1;;;;;;;;;;;45934:15;45917:14;;:32;;;;;;;;;;;;;;;;;;45868:87::o:0;46250:352::-;4138:12;:10;:12::i;:::-;4127:23;;:7;:5;:7::i;:::-;:23;;;4119:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;46326:1:::1;46302:21;:25;46294:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;43856:42;46383:31;;:82;46415:49;46423:21;43945:2;46415:7;:49::i;:::-;46383:82;;;;;;;;;;;;;;;;;;;;;;;46365:147;;;;;;;;;;;;:::i;:::-;;;;;;;;;46535:10;46527:24;;:47;46552:21;46527:47;;;;;;;;;;;;;;;;;;;;;;;46519:77;;;;;;;;;;;;:::i;:::-;;;;;;;;;46250:352::o:0;27718:185::-;27856:39;27873:4;27879:2;27883:7;27856:39;;;;;;;;;;;;:16;:39::i;:::-;27718:185;;;:::o;37797:233::-;37872:7;37908:30;:28;:30::i;:::-;37900:5;:38;37892:95;;;;;;;;;;;;:::i;:::-;;;;;;;;;38005:10;38016:5;38005:17;;;;;;;;:::i;:::-;;;;;;;;;;37998:24;;37797:233;;;:::o;44173:96::-;4138:12;:10;:12::i;:::-;4127:23;;:7;:5;:7::i;:::-;:23;;;4119:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;44256:7:::1;44240:13;:23;;;;;;;;;;;;:::i;:::-;;44173:96:::0;:::o;43652:61::-;43696:17;43652:61;:::o;24553:239::-;24625:7;24645:13;24661:7;:16;24669:7;24661:16;;;;;;;;;;;;;;;;;;;;;24645:32;;24713:1;24696:19;;:5;:19;;;;24688:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;24779:5;24772:12;;;24553:239;;;:::o;43334:54::-;43370:18;43334:54;:::o;43610:37::-;;;;;;;;;;;;;:::o;43729:46::-;43771:4;43729:46;:::o;24283:208::-;24355:7;24400:1;24383:19;;:5;:19;;;;24375:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;24467:9;:16;24477:5;24467:16;;;;;;;;;;;;;;;;24460:23;;24283:208;;;:::o;44273:92::-;44317:13;44346;44339:20;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44273:92;:::o;4558:94::-;4138:12;:10;:12::i;:::-;4127:23;;:7;:5;:7::i;:::-;:23;;;4119:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;4623:21:::1;4641:1;4623:9;:21::i;:::-;4558:94::o:0;44369:472::-;44430:16;44456:18;44477:17;44487:6;44477:9;:17::i;:::-;44456:38;;44519:1;44505:10;:15;44501:335;;;44584:1;44570:16;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44563:23;;;;;44501:335;44609:23;44649:10;44635:25;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44609:51;;44669:13;44691:116;44715:10;44707:5;:18;44691:116;;;44763:34;44783:6;44791:5;44763:19;:34::i;:::-;44747:6;44754:5;44747:13;;;;;;;;:::i;:::-;;;;;;;:50;;;;;44727:7;;;;;:::i;:::-;;;;44691:116;;;44822:6;44815:13;;;;;44369:472;;;;:::o;3907:87::-;3953:7;3980:6;;;;;;;;;;;3973:13;;3907:87;:::o;25028:104::-;25084:13;25117:7;25110:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25028:104;:::o;45291:573::-;45352:14;;;;;;;;;;;45344:47;;;;;;;;;;;;:::i;:::-;;;;;;;;;45419:13;:11;:13::i;:::-;43438:5;45406:26;45398:53;;;;;;;;;;;;:::i;:::-;;;;;;;;;45476:1;45466:7;:11;:43;;;;;43589:1;45481:7;:28;;45466:43;45458:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;45584:7;45568:13;:11;:13::i;:::-;:23;;;;:::i;:::-;43438:5;45554:37;;45546:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;45654:7;43370:18;45642:19;;;;:::i;:::-;45629:9;:32;;45621:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;45699:6;45694:165;45715:7;45711:1;:11;45694:165;;;45738:14;45771:1;45755:13;:11;:13::i;:::-;:17;;;;:::i;:::-;45738:34;;45819:32;45829:10;45841:9;45819;:32::i;:::-;45729:130;45724:3;;;;;:::i;:::-;;;;45694:165;;;;45291:573;:::o;26711:295::-;26826:12;:10;:12::i;:::-;26814:24;;:8;:24;;;;26806:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;26926:8;26881:18;:32;26900:12;:10;:12::i;:::-;26881:32;;;;;;;;;;;;;;;:42;26914:8;26881:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;26979:8;26950:48;;26965:12;:10;:12::i;:::-;26950:48;;;26989:8;26950:48;;;;;;:::i;:::-;;;;;;;;26711:295;;:::o;27974:328::-;28149:41;28168:12;:10;:12::i;:::-;28182:7;28149:18;:41::i;:::-;28141:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;28255:39;28269:4;28275:2;28279:7;28288:5;28255:13;:39::i;:::-;27974:328;;;;:::o;44845:442::-;44913:17;;;;;;;;;;;44905:53;;;;;;;;;;;;:::i;:::-;;;;;;;;;45006:7;43696:17;44986:27;;;;:::i;:::-;44973:9;:40;;44965:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;43771:4;45054:13;:11;:13::i;:::-;:34;45046:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;45122:6;45117:165;45138:7;45134:1;:11;45117:165;;;45161:14;45194:1;45178:13;:11;:13::i;:::-;:17;;;;:::i;:::-;45161:34;;45242:32;45252:10;45264:9;45242;:32::i;:::-;45152:130;45147:3;;;;;:::i;:::-;;;;45117:165;;;;44845:442;:::o;46893:154::-;46986:13;47018:23;47033:7;47018:14;:23::i;:::-;47011:30;;46893:154;;;:::o;27077:164::-;27174:4;27198:18;:25;27217:5;27198:25;;;;;;;;;;;;;;;:35;27224:8;27198:35;;;;;;;;;;;;;;;;;;;;;;;;;27191:42;;27077:164;;;;:::o;45959:96::-;4138:12;:10;:12::i;:::-;4127:23;;:7;:5;:7::i;:::-;:23;;;4119:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;46032:17:::1;;;;;;;;;;;46031:18;46011:17;;:38;;;;;;;;;;;;;;;;;;45959:96::o:0;4807:192::-;4138:12;:10;:12::i;:::-;4127:23;;:7;:5;:7::i;:::-;:23;;;4119:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;4916:1:::1;4896:22;;:8;:22;;;;4888:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;4972:19;4982:8;4972:9;:19::i;:::-;4807:192:::0;:::o;36967:224::-;37069:4;37108:35;37093:50;;;:11;:50;;;;:90;;;;37147:36;37171:11;37147:23;:36::i;:::-;37093:90;37086:97;;36967:224;;;:::o;29812:127::-;29877:4;29929:1;29901:30;;:7;:16;29909:7;29901:16;;;;;;;;;;;;;;;;;;;;;:30;;;;29894:37;;29812:127;;;:::o;2695:98::-;2748:7;2775:10;2768:17;;2695:98;:::o;33794:174::-;33896:2;33869:15;:24;33885:7;33869:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;33952:7;33948:2;33914:46;;33923:23;33938:7;33923:14;:23::i;:::-;33914:46;;;;;;;;;;;;33794:174;;:::o;30106:348::-;30199:4;30224:16;30232:7;30224;:16::i;:::-;30216:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;30300:13;30316:23;30331:7;30316:14;:23::i;:::-;30300:39;;30369:5;30358:16;;:7;:16;;;:51;;;;30402:7;30378:31;;:20;30390:7;30378:11;:20::i;:::-;:31;;;30358:51;:87;;;;30413:32;30430:5;30437:7;30413:16;:32::i;:::-;30358:87;30350:96;;;30106:348;;;;:::o;33098:578::-;33257:4;33230:31;;:23;33245:7;33230:14;:23::i;:::-;:31;;;33222:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;33340:1;33326:16;;:2;:16;;;;33318:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;33396:39;33417:4;33423:2;33427:7;33396:20;:39::i;:::-;33500:29;33517:1;33521:7;33500:8;:29::i;:::-;33561:1;33542:9;:15;33552:4;33542:15;;;;;;;;;;;;;;;;:20;;;;;;;:::i;:::-;;;;;;;;33590:1;33573:9;:13;33583:2;33573:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;33621:2;33602:7;:16;33610:7;33602:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;33660:7;33656:2;33641:27;;33650:4;33641:27;;;;;;;;;;;;33098:578;;;:::o;46059:187::-;46121:7;46230:1;46225;46221;:5;;;;:::i;:::-;:10;:18;;46238:1;46221:18;;;46234:1;46221:18;46212:28;;46216:1;46212;:5;;;;:::i;:::-;:28;;;;:::i;:::-;46205:35;;46059:187;;;;:::o;5007:173::-;5063:16;5082:6;;;;;;;;;;;5063:25;;5108:8;5099:6;;:17;;;;;;;;;;;;;;;;;;5163:8;5132:40;;5153:8;5132:40;;;;;;;;;;;;5052:128;5007:173;:::o;30796:110::-;30872:26;30882:2;30886:7;30872:26;;;;;;;;;;;;:9;:26::i;:::-;30796:110;;:::o;29184:315::-;29341:28;29351:4;29357:2;29361:7;29341:9;:28::i;:::-;29388:48;29411:4;29417:2;29421:7;29430:5;29388:22;:48::i;:::-;29380:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;29184:315;;;;:::o;25203:334::-;25276:13;25310:16;25318:7;25310;:16::i;:::-;25302:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;25391:21;25415:10;:8;:10::i;:::-;25391:34;;25467:1;25449:7;25443:21;:25;:86;;;;;;;;;;;;;;;;;25495:7;25504:18;:7;:16;:18::i;:::-;25478:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;25443:86;25436:93;;;25203:334;;;:::o;23914:305::-;24016:4;24068:25;24053:40;;;:11;:40;;;;:105;;;;24125:33;24110:48;;;:11;:48;;;;24053:105;:158;;;;24175:36;24199:11;24175:23;:36::i;:::-;24053:158;24033:178;;23914:305;;;:::o;46606:188::-;46743:45;46770:4;46776:2;46780:7;46743:26;:45::i;:::-;46606:188;;;:::o;31133:321::-;31263:18;31269:2;31273:7;31263:5;:18::i;:::-;31314:54;31345:1;31349:2;31353:7;31362:5;31314:22;:54::i;:::-;31292:154;;;;;;;;;;;;:::i;:::-;;;;;;;;;31133:321;;;:::o;34533:799::-;34688:4;34709:15;:2;:13;;;:15::i;:::-;34705:620;;;34761:2;34745:36;;;34782:12;:10;:12::i;:::-;34796:4;34802:7;34811:5;34745:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;34741:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35004:1;34987:6;:13;:18;34983:272;;;35030:60;;;;;;;;;;:::i;:::-;;;;;;;;34983:272;35205:6;35199:13;35190:6;35186:2;35182:15;35175:38;34741:529;34878:41;;;34868:51;;;:6;:51;;;;34861:58;;;;;34705:620;35309:4;35302:11;;34533:799;;;;;;;:::o;44053:116::-;44113:13;44150;44143:20;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44053:116;:::o;311:723::-;367:13;597:1;588:5;:10;584:53;;;615:10;;;;;;;;;;;;;;;;;;;;;584:53;647:12;662:5;647:20;;678:14;703:78;718:1;710:4;:9;703:78;;736:8;;;;;:::i;:::-;;;;767:2;759:10;;;;;:::i;:::-;;;703:78;;;791:19;823:6;813:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;791:39;;841:154;857:1;848:5;:10;841:154;;885:1;875:11;;;;;:::i;:::-;;;952:2;944:5;:10;;;;:::i;:::-;931:2;:24;;;;:::i;:::-;918:39;;901:6;908;901:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;981:2;972:11;;;;;:::i;:::-;;;841:154;;;1019:6;1005:21;;;;;311:723;;;;:::o;15893:157::-;15978:4;16017:25;16002:40;;;:11;:40;;;;15995:47;;15893:157;;;:::o;38643:589::-;38787:45;38814:4;38820:2;38824:7;38787:26;:45::i;:::-;38865:1;38849:18;;:4;:18;;;38845:187;;;38884:40;38916:7;38884:31;:40::i;:::-;38845:187;;;38954:2;38946:10;;:4;:10;;;38942:90;;38973:47;39006:4;39012:7;38973:32;:47::i;:::-;38942:90;38845:187;39060:1;39046:16;;:2;:16;;;39042:183;;;39079:45;39116:7;39079:36;:45::i;:::-;39042:183;;;39152:4;39146:10;;:2;:10;;;39142:83;;39173:40;39201:2;39205:7;39173:27;:40::i;:::-;39142:83;39042:183;38643:589;;;:::o;31790:382::-;31884:1;31870:16;;:2;:16;;;;31862:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;31943:16;31951:7;31943;:16::i;:::-;31942:17;31934:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;32005:45;32034:1;32038:2;32042:7;32005:20;:45::i;:::-;32080:1;32063:9;:13;32073:2;32063:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;32111:2;32092:7;:16;32100:7;32092:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;32156:7;32152:2;32131:33;;32148:1;32131:33;;;;;;;;;;;;31790:382;;:::o;5953:387::-;6013:4;6221:12;6288:7;6276:20;6268:28;;6331:1;6324:4;:8;6317:15;;;5953:387;;;:::o;35904:126::-;;;;:::o;39955:164::-;40059:10;:17;;;;40032:15;:24;40048:7;40032:24;;;;;;;;;;;:44;;;;40087:10;40103:7;40087:24;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39955:164;:::o;40746:988::-;41012:22;41062:1;41037:22;41054:4;41037:16;:22::i;:::-;:26;;;;:::i;:::-;41012:51;;41074:18;41095:17;:26;41113:7;41095:26;;;;;;;;;;;;41074:47;;41242:14;41228:10;:28;41224:328;;41273:19;41295:12;:18;41308:4;41295:18;;;;;;;;;;;;;;;:34;41314:14;41295:34;;;;;;;;;;;;41273:56;;41379:11;41346:12;:18;41359:4;41346:18;;;;;;;;;;;;;;;:30;41365:10;41346:30;;;;;;;;;;;:44;;;;41496:10;41463:17;:30;41481:11;41463:30;;;;;;;;;;;:43;;;;41258:294;41224:328;41648:17;:26;41666:7;41648:26;;;;;;;;;;;41641:33;;;41692:12;:18;41705:4;41692:18;;;;;;;;;;;;;;;:34;41711:14;41692:34;;;;;;;;;;;41685:41;;;40827:907;;40746:988;;:::o;42029:1079::-;42282:22;42327:1;42307:10;:17;;;;:21;;;;:::i;:::-;42282:46;;42339:18;42360:15;:24;42376:7;42360:24;;;;;;;;;;;;42339:45;;42711:19;42733:10;42744:14;42733:26;;;;;;;;:::i;:::-;;;;;;;;;;42711:48;;42797:11;42772:10;42783;42772:22;;;;;;;;:::i;:::-;;;;;;;;;:36;;;;42908:10;42877:15;:28;42893:11;42877:28;;;;;;;;;;;:41;;;;43049:15;:24;43065:7;43049:24;;;;;;;;;;;43042:31;;;43084:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;42100:1008;;;42029:1079;:::o;39533:221::-;39618:14;39635:20;39652:2;39635:16;:20::i;:::-;39618:37;;39693:7;39666:12;:16;39679:2;39666:16;;;;;;;;;;;;;;;:24;39683:6;39666:24;;;;;;;;;;;:34;;;;39740:6;39711:17;:26;39729:7;39711:26;;;;;;;;;;;:35;;;;39607:147;39533:221;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:410:1:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:112;;;280:79;;:::i;:::-;249:112;370:41;404:6;399:3;394;370:41;:::i;:::-;90:327;7:410;;;;;:::o;423:412::-;501:5;526:66;542:49;584:6;542:49;:::i;:::-;526:66;:::i;:::-;517:75;;615:6;608:5;601:21;653:4;646:5;642:16;691:3;682:6;677:3;673:16;670:25;667:112;;;698:79;;:::i;:::-;667:112;788:41;822:6;817:3;812;788:41;:::i;:::-;507:328;423:412;;;;;:::o;841:139::-;887:5;925:6;912:20;903:29;;941:33;968:5;941:33;:::i;:::-;841:139;;;;:::o;986:133::-;1029:5;1067:6;1054:20;1045:29;;1083:30;1107:5;1083:30;:::i;:::-;986:133;;;;:::o;1125:137::-;1170:5;1208:6;1195:20;1186:29;;1224:32;1250:5;1224:32;:::i;:::-;1125:137;;;;:::o;1268:141::-;1324:5;1355:6;1349:13;1340:22;;1371:32;1397:5;1371:32;:::i;:::-;1268:141;;;;:::o;1428:338::-;1483:5;1532:3;1525:4;1517:6;1513:17;1509:27;1499:122;;1540:79;;:::i;:::-;1499:122;1657:6;1644:20;1682:78;1756:3;1748:6;1741:4;1733:6;1729:17;1682:78;:::i;:::-;1673:87;;1489:277;1428:338;;;;:::o;1786:340::-;1842:5;1891:3;1884:4;1876:6;1872:17;1868:27;1858:122;;1899:79;;:::i;:::-;1858:122;2016:6;2003:20;2041:79;2116:3;2108:6;2101:4;2093:6;2089:17;2041:79;:::i;:::-;2032:88;;1848:278;1786:340;;;;:::o;2132:139::-;2178:5;2216:6;2203:20;2194:29;;2232:33;2259:5;2232:33;:::i;:::-;2132:139;;;;:::o;2277:329::-;2336:6;2385:2;2373:9;2364:7;2360:23;2356:32;2353:119;;;2391:79;;:::i;:::-;2353:119;2511:1;2536:53;2581:7;2572:6;2561:9;2557:22;2536:53;:::i;:::-;2526:63;;2482:117;2277:329;;;;:::o;2612:474::-;2680:6;2688;2737:2;2725:9;2716:7;2712:23;2708:32;2705:119;;;2743:79;;:::i;:::-;2705:119;2863:1;2888:53;2933:7;2924:6;2913:9;2909:22;2888:53;:::i;:::-;2878:63;;2834:117;2990:2;3016:53;3061:7;3052:6;3041:9;3037:22;3016:53;:::i;:::-;3006:63;;2961:118;2612:474;;;;;:::o;3092:619::-;3169:6;3177;3185;3234:2;3222:9;3213:7;3209:23;3205:32;3202:119;;;3240:79;;:::i;:::-;3202:119;3360:1;3385:53;3430:7;3421:6;3410:9;3406:22;3385:53;:::i;:::-;3375:63;;3331:117;3487:2;3513:53;3558:7;3549:6;3538:9;3534:22;3513:53;:::i;:::-;3503:63;;3458:118;3615:2;3641:53;3686:7;3677:6;3666:9;3662:22;3641:53;:::i;:::-;3631:63;;3586:118;3092:619;;;;;:::o;3717:943::-;3812:6;3820;3828;3836;3885:3;3873:9;3864:7;3860:23;3856:33;3853:120;;;3892:79;;:::i;:::-;3853:120;4012:1;4037:53;4082:7;4073:6;4062:9;4058:22;4037:53;:::i;:::-;4027:63;;3983:117;4139:2;4165:53;4210:7;4201:6;4190:9;4186:22;4165:53;:::i;:::-;4155:63;;4110:118;4267:2;4293:53;4338:7;4329:6;4318:9;4314:22;4293:53;:::i;:::-;4283:63;;4238:118;4423:2;4412:9;4408:18;4395:32;4454:18;4446:6;4443:30;4440:117;;;4476:79;;:::i;:::-;4440:117;4581:62;4635:7;4626:6;4615:9;4611:22;4581:62;:::i;:::-;4571:72;;4366:287;3717:943;;;;;;;:::o;4666:468::-;4731:6;4739;4788:2;4776:9;4767:7;4763:23;4759:32;4756:119;;;4794:79;;:::i;:::-;4756:119;4914:1;4939:53;4984:7;4975:6;4964:9;4960:22;4939:53;:::i;:::-;4929:63;;4885:117;5041:2;5067:50;5109:7;5100:6;5089:9;5085:22;5067:50;:::i;:::-;5057:60;;5012:115;4666:468;;;;;:::o;5140:474::-;5208:6;5216;5265:2;5253:9;5244:7;5240:23;5236:32;5233:119;;;5271:79;;:::i;:::-;5233:119;5391:1;5416:53;5461:7;5452:6;5441:9;5437:22;5416:53;:::i;:::-;5406:63;;5362:117;5518:2;5544:53;5589:7;5580:6;5569:9;5565:22;5544:53;:::i;:::-;5534:63;;5489:118;5140:474;;;;;:::o;5620:327::-;5678:6;5727:2;5715:9;5706:7;5702:23;5698:32;5695:119;;;5733:79;;:::i;:::-;5695:119;5853:1;5878:52;5922:7;5913:6;5902:9;5898:22;5878:52;:::i;:::-;5868:62;;5824:116;5620:327;;;;:::o;5953:349::-;6022:6;6071:2;6059:9;6050:7;6046:23;6042:32;6039:119;;;6077:79;;:::i;:::-;6039:119;6197:1;6222:63;6277:7;6268:6;6257:9;6253:22;6222:63;:::i;:::-;6212:73;;6168:127;5953:349;;;;:::o;6308:509::-;6377:6;6426:2;6414:9;6405:7;6401:23;6397:32;6394:119;;;6432:79;;:::i;:::-;6394:119;6580:1;6569:9;6565:17;6552:31;6610:18;6602:6;6599:30;6596:117;;;6632:79;;:::i;:::-;6596:117;6737:63;6792:7;6783:6;6772:9;6768:22;6737:63;:::i;:::-;6727:73;;6523:287;6308:509;;;;:::o;6823:329::-;6882:6;6931:2;6919:9;6910:7;6906:23;6902:32;6899:119;;;6937:79;;:::i;:::-;6899:119;7057:1;7082:53;7127:7;7118:6;7107:9;7103:22;7082:53;:::i;:::-;7072:63;;7028:117;6823:329;;;;:::o;7158:179::-;7227:10;7248:46;7290:3;7282:6;7248:46;:::i;:::-;7326:4;7321:3;7317:14;7303:28;;7158:179;;;;:::o;7343:118::-;7430:24;7448:5;7430:24;:::i;:::-;7425:3;7418:37;7343:118;;:::o;7497:732::-;7616:3;7645:54;7693:5;7645:54;:::i;:::-;7715:86;7794:6;7789:3;7715:86;:::i;:::-;7708:93;;7825:56;7875:5;7825:56;:::i;:::-;7904:7;7935:1;7920:284;7945:6;7942:1;7939:13;7920:284;;;8021:6;8015:13;8048:63;8107:3;8092:13;8048:63;:::i;:::-;8041:70;;8134:60;8187:6;8134:60;:::i;:::-;8124:70;;7980:224;7967:1;7964;7960:9;7955:14;;7920:284;;;7924:14;8220:3;8213:10;;7621:608;;;7497:732;;;;:::o;8235:109::-;8316:21;8331:5;8316:21;:::i;:::-;8311:3;8304:34;8235:109;;:::o;8350:360::-;8436:3;8464:38;8496:5;8464:38;:::i;:::-;8518:70;8581:6;8576:3;8518:70;:::i;:::-;8511:77;;8597:52;8642:6;8637:3;8630:4;8623:5;8619:16;8597:52;:::i;:::-;8674:29;8696:6;8674:29;:::i;:::-;8669:3;8665:39;8658:46;;8440:270;8350:360;;;;:::o;8716:364::-;8804:3;8832:39;8865:5;8832:39;:::i;:::-;8887:71;8951:6;8946:3;8887:71;:::i;:::-;8880:78;;8967:52;9012:6;9007:3;9000:4;8993:5;8989:16;8967:52;:::i;:::-;9044:29;9066:6;9044:29;:::i;:::-;9039:3;9035:39;9028:46;;8808:272;8716:364;;;;:::o;9086:377::-;9192:3;9220:39;9253:5;9220:39;:::i;:::-;9275:89;9357:6;9352:3;9275:89;:::i;:::-;9268:96;;9373:52;9418:6;9413:3;9406:4;9399:5;9395:16;9373:52;:::i;:::-;9450:6;9445:3;9441:16;9434:23;;9196:267;9086:377;;;;:::o;9469:366::-;9611:3;9632:67;9696:2;9691:3;9632:67;:::i;:::-;9625:74;;9708:93;9797:3;9708:93;:::i;:::-;9826:2;9821:3;9817:12;9810:19;;9469:366;;;:::o;9841:::-;9983:3;10004:67;10068:2;10063:3;10004:67;:::i;:::-;9997:74;;10080:93;10169:3;10080:93;:::i;:::-;10198:2;10193:3;10189:12;10182:19;;9841:366;;;:::o;10213:::-;10355:3;10376:67;10440:2;10435:3;10376:67;:::i;:::-;10369:74;;10452:93;10541:3;10452:93;:::i;:::-;10570:2;10565:3;10561:12;10554:19;;10213:366;;;:::o;10585:::-;10727:3;10748:67;10812:2;10807:3;10748:67;:::i;:::-;10741:74;;10824:93;10913:3;10824:93;:::i;:::-;10942:2;10937:3;10933:12;10926:19;;10585:366;;;:::o;10957:::-;11099:3;11120:67;11184:2;11179:3;11120:67;:::i;:::-;11113:74;;11196:93;11285:3;11196:93;:::i;:::-;11314:2;11309:3;11305:12;11298:19;;10957:366;;;:::o;11329:::-;11471:3;11492:67;11556:2;11551:3;11492:67;:::i;:::-;11485:74;;11568:93;11657:3;11568:93;:::i;:::-;11686:2;11681:3;11677:12;11670:19;;11329:366;;;:::o;11701:::-;11843:3;11864:67;11928:2;11923:3;11864:67;:::i;:::-;11857:74;;11940:93;12029:3;11940:93;:::i;:::-;12058:2;12053:3;12049:12;12042:19;;11701:366;;;:::o;12073:::-;12215:3;12236:67;12300:2;12295:3;12236:67;:::i;:::-;12229:74;;12312:93;12401:3;12312:93;:::i;:::-;12430:2;12425:3;12421:12;12414:19;;12073:366;;;:::o;12445:::-;12587:3;12608:67;12672:2;12667:3;12608:67;:::i;:::-;12601:74;;12684:93;12773:3;12684:93;:::i;:::-;12802:2;12797:3;12793:12;12786:19;;12445:366;;;:::o;12817:::-;12959:3;12980:67;13044:2;13039:3;12980:67;:::i;:::-;12973:74;;13056:93;13145:3;13056:93;:::i;:::-;13174:2;13169:3;13165:12;13158:19;;12817:366;;;:::o;13189:::-;13331:3;13352:67;13416:2;13411:3;13352:67;:::i;:::-;13345:74;;13428:93;13517:3;13428:93;:::i;:::-;13546:2;13541:3;13537:12;13530:19;;13189:366;;;:::o;13561:::-;13703:3;13724:67;13788:2;13783:3;13724:67;:::i;:::-;13717:74;;13800:93;13889:3;13800:93;:::i;:::-;13918:2;13913:3;13909:12;13902:19;;13561:366;;;:::o;13933:::-;14075:3;14096:67;14160:2;14155:3;14096:67;:::i;:::-;14089:74;;14172:93;14261:3;14172:93;:::i;:::-;14290:2;14285:3;14281:12;14274:19;;13933:366;;;:::o;14305:::-;14447:3;14468:67;14532:2;14527:3;14468:67;:::i;:::-;14461:74;;14544:93;14633:3;14544:93;:::i;:::-;14662:2;14657:3;14653:12;14646:19;;14305:366;;;:::o;14677:::-;14819:3;14840:67;14904:2;14899:3;14840:67;:::i;:::-;14833:74;;14916:93;15005:3;14916:93;:::i;:::-;15034:2;15029:3;15025:12;15018:19;;14677:366;;;:::o;15049:::-;15191:3;15212:67;15276:2;15271:3;15212:67;:::i;:::-;15205:74;;15288:93;15377:3;15288:93;:::i;:::-;15406:2;15401:3;15397:12;15390:19;;15049:366;;;:::o;15421:::-;15563:3;15584:67;15648:2;15643:3;15584:67;:::i;:::-;15577:74;;15660:93;15749:3;15660:93;:::i;:::-;15778:2;15773:3;15769:12;15762:19;;15421:366;;;:::o;15793:::-;15935:3;15956:67;16020:2;16015:3;15956:67;:::i;:::-;15949:74;;16032:93;16121:3;16032:93;:::i;:::-;16150:2;16145:3;16141:12;16134:19;;15793:366;;;:::o;16165:::-;16307:3;16328:67;16392:2;16387:3;16328:67;:::i;:::-;16321:74;;16404:93;16493:3;16404:93;:::i;:::-;16522:2;16517:3;16513:12;16506:19;;16165:366;;;:::o;16537:::-;16679:3;16700:67;16764:2;16759:3;16700:67;:::i;:::-;16693:74;;16776:93;16865:3;16776:93;:::i;:::-;16894:2;16889:3;16885:12;16878:19;;16537:366;;;:::o;16909:::-;17051:3;17072:67;17136:2;17131:3;17072:67;:::i;:::-;17065:74;;17148:93;17237:3;17148:93;:::i;:::-;17266:2;17261:3;17257:12;17250:19;;16909:366;;;:::o;17281:::-;17423:3;17444:67;17508:2;17503:3;17444:67;:::i;:::-;17437:74;;17520:93;17609:3;17520:93;:::i;:::-;17638:2;17633:3;17629:12;17622:19;;17281:366;;;:::o;17653:::-;17795:3;17816:67;17880:2;17875:3;17816:67;:::i;:::-;17809:74;;17892:93;17981:3;17892:93;:::i;:::-;18010:2;18005:3;18001:12;17994:19;;17653:366;;;:::o;18025:::-;18167:3;18188:67;18252:2;18247:3;18188:67;:::i;:::-;18181:74;;18264:93;18353:3;18264:93;:::i;:::-;18382:2;18377:3;18373:12;18366:19;;18025:366;;;:::o;18397:::-;18539:3;18560:67;18624:2;18619:3;18560:67;:::i;:::-;18553:74;;18636:93;18725:3;18636:93;:::i;:::-;18754:2;18749:3;18745:12;18738:19;;18397:366;;;:::o;18769:::-;18911:3;18932:67;18996:2;18991:3;18932:67;:::i;:::-;18925:74;;19008:93;19097:3;19008:93;:::i;:::-;19126:2;19121:3;19117:12;19110:19;;18769:366;;;:::o;19141:::-;19283:3;19304:67;19368:2;19363:3;19304:67;:::i;:::-;19297:74;;19380:93;19469:3;19380:93;:::i;:::-;19498:2;19493:3;19489:12;19482:19;;19141:366;;;:::o;19513:::-;19655:3;19676:67;19740:2;19735:3;19676:67;:::i;:::-;19669:74;;19752:93;19841:3;19752:93;:::i;:::-;19870:2;19865:3;19861:12;19854:19;;19513:366;;;:::o;19885:108::-;19962:24;19980:5;19962:24;:::i;:::-;19957:3;19950:37;19885:108;;:::o;19999:118::-;20086:24;20104:5;20086:24;:::i;:::-;20081:3;20074:37;19999:118;;:::o;20123:435::-;20303:3;20325:95;20416:3;20407:6;20325:95;:::i;:::-;20318:102;;20437:95;20528:3;20519:6;20437:95;:::i;:::-;20430:102;;20549:3;20542:10;;20123:435;;;;;:::o;20564:222::-;20657:4;20695:2;20684:9;20680:18;20672:26;;20708:71;20776:1;20765:9;20761:17;20752:6;20708:71;:::i;:::-;20564:222;;;;:::o;20792:640::-;20987:4;21025:3;21014:9;21010:19;21002:27;;21039:71;21107:1;21096:9;21092:17;21083:6;21039:71;:::i;:::-;21120:72;21188:2;21177:9;21173:18;21164:6;21120:72;:::i;:::-;21202;21270:2;21259:9;21255:18;21246:6;21202:72;:::i;:::-;21321:9;21315:4;21311:20;21306:2;21295:9;21291:18;21284:48;21349:76;21420:4;21411:6;21349:76;:::i;:::-;21341:84;;20792:640;;;;;;;:::o;21438:373::-;21581:4;21619:2;21608:9;21604:18;21596:26;;21668:9;21662:4;21658:20;21654:1;21643:9;21639:17;21632:47;21696:108;21799:4;21790:6;21696:108;:::i;:::-;21688:116;;21438:373;;;;:::o;21817:210::-;21904:4;21942:2;21931:9;21927:18;21919:26;;21955:65;22017:1;22006:9;22002:17;21993:6;21955:65;:::i;:::-;21817:210;;;;:::o;22033:313::-;22146:4;22184:2;22173:9;22169:18;22161:26;;22233:9;22227:4;22223:20;22219:1;22208:9;22204:17;22197:47;22261:78;22334:4;22325:6;22261:78;:::i;:::-;22253:86;;22033:313;;;;:::o;22352:419::-;22518:4;22556:2;22545:9;22541:18;22533:26;;22605:9;22599:4;22595:20;22591:1;22580:9;22576:17;22569:47;22633:131;22759:4;22633:131;:::i;:::-;22625:139;;22352:419;;;:::o;22777:::-;22943:4;22981:2;22970:9;22966:18;22958:26;;23030:9;23024:4;23020:20;23016:1;23005:9;23001:17;22994:47;23058:131;23184:4;23058:131;:::i;:::-;23050:139;;22777:419;;;:::o;23202:::-;23368:4;23406:2;23395:9;23391:18;23383:26;;23455:9;23449:4;23445:20;23441:1;23430:9;23426:17;23419:47;23483:131;23609:4;23483:131;:::i;:::-;23475:139;;23202:419;;;:::o;23627:::-;23793:4;23831:2;23820:9;23816:18;23808:26;;23880:9;23874:4;23870:20;23866:1;23855:9;23851:17;23844:47;23908:131;24034:4;23908:131;:::i;:::-;23900:139;;23627:419;;;:::o;24052:::-;24218:4;24256:2;24245:9;24241:18;24233:26;;24305:9;24299:4;24295:20;24291:1;24280:9;24276:17;24269:47;24333:131;24459:4;24333:131;:::i;:::-;24325:139;;24052:419;;;:::o;24477:::-;24643:4;24681:2;24670:9;24666:18;24658:26;;24730:9;24724:4;24720:20;24716:1;24705:9;24701:17;24694:47;24758:131;24884:4;24758:131;:::i;:::-;24750:139;;24477:419;;;:::o;24902:::-;25068:4;25106:2;25095:9;25091:18;25083:26;;25155:9;25149:4;25145:20;25141:1;25130:9;25126:17;25119:47;25183:131;25309:4;25183:131;:::i;:::-;25175:139;;24902:419;;;:::o;25327:::-;25493:4;25531:2;25520:9;25516:18;25508:26;;25580:9;25574:4;25570:20;25566:1;25555:9;25551:17;25544:47;25608:131;25734:4;25608:131;:::i;:::-;25600:139;;25327:419;;;:::o;25752:::-;25918:4;25956:2;25945:9;25941:18;25933:26;;26005:9;25999:4;25995:20;25991:1;25980:9;25976:17;25969:47;26033:131;26159:4;26033:131;:::i;:::-;26025:139;;25752:419;;;:::o;26177:::-;26343:4;26381:2;26370:9;26366:18;26358:26;;26430:9;26424:4;26420:20;26416:1;26405:9;26401:17;26394:47;26458:131;26584:4;26458:131;:::i;:::-;26450:139;;26177:419;;;:::o;26602:::-;26768:4;26806:2;26795:9;26791:18;26783:26;;26855:9;26849:4;26845:20;26841:1;26830:9;26826:17;26819:47;26883:131;27009:4;26883:131;:::i;:::-;26875:139;;26602:419;;;:::o;27027:::-;27193:4;27231:2;27220:9;27216:18;27208:26;;27280:9;27274:4;27270:20;27266:1;27255:9;27251:17;27244:47;27308:131;27434:4;27308:131;:::i;:::-;27300:139;;27027:419;;;:::o;27452:::-;27618:4;27656:2;27645:9;27641:18;27633:26;;27705:9;27699:4;27695:20;27691:1;27680:9;27676:17;27669:47;27733:131;27859:4;27733:131;:::i;:::-;27725:139;;27452:419;;;:::o;27877:::-;28043:4;28081:2;28070:9;28066:18;28058:26;;28130:9;28124:4;28120:20;28116:1;28105:9;28101:17;28094:47;28158:131;28284:4;28158:131;:::i;:::-;28150:139;;27877:419;;;:::o;28302:::-;28468:4;28506:2;28495:9;28491:18;28483:26;;28555:9;28549:4;28545:20;28541:1;28530:9;28526:17;28519:47;28583:131;28709:4;28583:131;:::i;:::-;28575:139;;28302:419;;;:::o;28727:::-;28893:4;28931:2;28920:9;28916:18;28908:26;;28980:9;28974:4;28970:20;28966:1;28955:9;28951:17;28944:47;29008:131;29134:4;29008:131;:::i;:::-;29000:139;;28727:419;;;:::o;29152:::-;29318:4;29356:2;29345:9;29341:18;29333:26;;29405:9;29399:4;29395:20;29391:1;29380:9;29376:17;29369:47;29433:131;29559:4;29433:131;:::i;:::-;29425:139;;29152:419;;;:::o;29577:::-;29743:4;29781:2;29770:9;29766:18;29758:26;;29830:9;29824:4;29820:20;29816:1;29805:9;29801:17;29794:47;29858:131;29984:4;29858:131;:::i;:::-;29850:139;;29577:419;;;:::o;30002:::-;30168:4;30206:2;30195:9;30191:18;30183:26;;30255:9;30249:4;30245:20;30241:1;30230:9;30226:17;30219:47;30283:131;30409:4;30283:131;:::i;:::-;30275:139;;30002:419;;;:::o;30427:::-;30593:4;30631:2;30620:9;30616:18;30608:26;;30680:9;30674:4;30670:20;30666:1;30655:9;30651:17;30644:47;30708:131;30834:4;30708:131;:::i;:::-;30700:139;;30427:419;;;:::o;30852:::-;31018:4;31056:2;31045:9;31041:18;31033:26;;31105:9;31099:4;31095:20;31091:1;31080:9;31076:17;31069:47;31133:131;31259:4;31133:131;:::i;:::-;31125:139;;30852:419;;;:::o;31277:::-;31443:4;31481:2;31470:9;31466:18;31458:26;;31530:9;31524:4;31520:20;31516:1;31505:9;31501:17;31494:47;31558:131;31684:4;31558:131;:::i;:::-;31550:139;;31277:419;;;:::o;31702:::-;31868:4;31906:2;31895:9;31891:18;31883:26;;31955:9;31949:4;31945:20;31941:1;31930:9;31926:17;31919:47;31983:131;32109:4;31983:131;:::i;:::-;31975:139;;31702:419;;;:::o;32127:::-;32293:4;32331:2;32320:9;32316:18;32308:26;;32380:9;32374:4;32370:20;32366:1;32355:9;32351:17;32344:47;32408:131;32534:4;32408:131;:::i;:::-;32400:139;;32127:419;;;:::o;32552:::-;32718:4;32756:2;32745:9;32741:18;32733:26;;32805:9;32799:4;32795:20;32791:1;32780:9;32776:17;32769:47;32833:131;32959:4;32833:131;:::i;:::-;32825:139;;32552:419;;;:::o;32977:::-;33143:4;33181:2;33170:9;33166:18;33158:26;;33230:9;33224:4;33220:20;33216:1;33205:9;33201:17;33194:47;33258:131;33384:4;33258:131;:::i;:::-;33250:139;;32977:419;;;:::o;33402:::-;33568:4;33606:2;33595:9;33591:18;33583:26;;33655:9;33649:4;33645:20;33641:1;33630:9;33626:17;33619:47;33683:131;33809:4;33683:131;:::i;:::-;33675:139;;33402:419;;;:::o;33827:::-;33993:4;34031:2;34020:9;34016:18;34008:26;;34080:9;34074:4;34070:20;34066:1;34055:9;34051:17;34044:47;34108:131;34234:4;34108:131;:::i;:::-;34100:139;;33827:419;;;:::o;34252:222::-;34345:4;34383:2;34372:9;34368:18;34360:26;;34396:71;34464:1;34453:9;34449:17;34440:6;34396:71;:::i;:::-;34252:222;;;;:::o;34480:129::-;34514:6;34541:20;;:::i;:::-;34531:30;;34570:33;34598:4;34590:6;34570:33;:::i;:::-;34480:129;;;:::o;34615:75::-;34648:6;34681:2;34675:9;34665:19;;34615:75;:::o;34696:307::-;34757:4;34847:18;34839:6;34836:30;34833:56;;;34869:18;;:::i;:::-;34833:56;34907:29;34929:6;34907:29;:::i;:::-;34899:37;;34991:4;34985;34981:15;34973:23;;34696:307;;;:::o;35009:308::-;35071:4;35161:18;35153:6;35150:30;35147:56;;;35183:18;;:::i;:::-;35147:56;35221:29;35243:6;35221:29;:::i;:::-;35213:37;;35305:4;35299;35295:15;35287:23;;35009:308;;;:::o;35323:132::-;35390:4;35413:3;35405:11;;35443:4;35438:3;35434:14;35426:22;;35323:132;;;:::o;35461:114::-;35528:6;35562:5;35556:12;35546:22;;35461:114;;;:::o;35581:98::-;35632:6;35666:5;35660:12;35650:22;;35581:98;;;:::o;35685:99::-;35737:6;35771:5;35765:12;35755:22;;35685:99;;;:::o;35790:113::-;35860:4;35892;35887:3;35883:14;35875:22;;35790:113;;;:::o;35909:184::-;36008:11;36042:6;36037:3;36030:19;36082:4;36077:3;36073:14;36058:29;;35909:184;;;;:::o;36099:168::-;36182:11;36216:6;36211:3;36204:19;36256:4;36251:3;36247:14;36232:29;;36099:168;;;;:::o;36273:169::-;36357:11;36391:6;36386:3;36379:19;36431:4;36426:3;36422:14;36407:29;;36273:169;;;;:::o;36448:148::-;36550:11;36587:3;36572:18;;36448:148;;;;:::o;36602:305::-;36642:3;36661:20;36679:1;36661:20;:::i;:::-;36656:25;;36695:20;36713:1;36695:20;:::i;:::-;36690:25;;36849:1;36781:66;36777:74;36774:1;36771:81;36768:107;;;36855:18;;:::i;:::-;36768:107;36899:1;36896;36892:9;36885:16;;36602:305;;;;:::o;36913:185::-;36953:1;36970:20;36988:1;36970:20;:::i;:::-;36965:25;;37004:20;37022:1;37004:20;:::i;:::-;36999:25;;37043:1;37033:35;;37048:18;;:::i;:::-;37033:35;37090:1;37087;37083:9;37078:14;;36913:185;;;;:::o;37104:348::-;37144:7;37167:20;37185:1;37167:20;:::i;:::-;37162:25;;37201:20;37219:1;37201:20;:::i;:::-;37196:25;;37389:1;37321:66;37317:74;37314:1;37311:81;37306:1;37299:9;37292:17;37288:105;37285:131;;;37396:18;;:::i;:::-;37285:131;37444:1;37441;37437:9;37426:20;;37104:348;;;;:::o;37458:191::-;37498:4;37518:20;37536:1;37518:20;:::i;:::-;37513:25;;37552:20;37570:1;37552:20;:::i;:::-;37547:25;;37591:1;37588;37585:8;37582:34;;;37596:18;;:::i;:::-;37582:34;37641:1;37638;37634:9;37626:17;;37458:191;;;;:::o;37655:96::-;37692:7;37721:24;37739:5;37721:24;:::i;:::-;37710:35;;37655:96;;;:::o;37757:90::-;37791:7;37834:5;37827:13;37820:21;37809:32;;37757:90;;;:::o;37853:149::-;37889:7;37929:66;37922:5;37918:78;37907:89;;37853:149;;;:::o;38008:126::-;38045:7;38085:42;38078:5;38074:54;38063:65;;38008:126;;;:::o;38140:77::-;38177:7;38206:5;38195:16;;38140:77;;;:::o;38223:154::-;38307:6;38302:3;38297;38284:30;38369:1;38360:6;38355:3;38351:16;38344:27;38223:154;;;:::o;38383:307::-;38451:1;38461:113;38475:6;38472:1;38469:13;38461:113;;;38560:1;38555:3;38551:11;38545:18;38541:1;38536:3;38532:11;38525:39;38497:2;38494:1;38490:10;38485:15;;38461:113;;;38592:6;38589:1;38586:13;38583:101;;;38672:1;38663:6;38658:3;38654:16;38647:27;38583:101;38432:258;38383:307;;;:::o;38696:320::-;38740:6;38777:1;38771:4;38767:12;38757:22;;38824:1;38818:4;38814:12;38845:18;38835:81;;38901:4;38893:6;38889:17;38879:27;;38835:81;38963:2;38955:6;38952:14;38932:18;38929:38;38926:84;;;38982:18;;:::i;:::-;38926:84;38747:269;38696:320;;;:::o;39022:281::-;39105:27;39127:4;39105:27;:::i;:::-;39097:6;39093:40;39235:6;39223:10;39220:22;39199:18;39187:10;39184:34;39181:62;39178:88;;;39246:18;;:::i;:::-;39178:88;39286:10;39282:2;39275:22;39065:238;39022:281;;:::o;39309:233::-;39348:3;39371:24;39389:5;39371:24;:::i;:::-;39362:33;;39417:66;39410:5;39407:77;39404:103;;;39487:18;;:::i;:::-;39404:103;39534:1;39527:5;39523:13;39516:20;;39309:233;;;:::o;39548:176::-;39580:1;39597:20;39615:1;39597:20;:::i;:::-;39592:25;;39631:20;39649:1;39631:20;:::i;:::-;39626:25;;39670:1;39660:35;;39675:18;;:::i;:::-;39660:35;39716:1;39713;39709:9;39704:14;;39548:176;;;;:::o;39730:180::-;39778:77;39775:1;39768:88;39875:4;39872:1;39865:15;39899:4;39896:1;39889:15;39916:180;39964:77;39961:1;39954:88;40061:4;40058:1;40051:15;40085:4;40082:1;40075:15;40102:180;40150:77;40147:1;40140:88;40247:4;40244:1;40237:15;40271:4;40268:1;40261:15;40288:180;40336:77;40333:1;40326:88;40433:4;40430:1;40423:15;40457:4;40454:1;40447:15;40474:180;40522:77;40519:1;40512:88;40619:4;40616:1;40609:15;40643:4;40640:1;40633:15;40660:180;40708:77;40705:1;40698:88;40805:4;40802:1;40795:15;40829:4;40826:1;40819:15;40846:117;40955:1;40952;40945:12;40969:117;41078:1;41075;41068:12;41092:117;41201:1;41198;41191:12;41215:117;41324:1;41321;41314:12;41338:102;41379:6;41430:2;41426:7;41421:2;41414:5;41410:14;41406:28;41396:38;;41338:102;;;:::o;41446:167::-;41586:19;41582:1;41574:6;41570:14;41563:43;41446:167;:::o;41619:173::-;41759:25;41755:1;41747:6;41743:14;41736:49;41619:173;:::o;41798:230::-;41938:34;41934:1;41926:6;41922:14;41915:58;42007:13;42002:2;41994:6;41990:15;41983:38;41798:230;:::o;42034:237::-;42174:34;42170:1;42162:6;42158:14;42151:58;42243:20;42238:2;42230:6;42226:15;42219:45;42034:237;:::o;42277:225::-;42417:34;42413:1;42405:6;42401:14;42394:58;42486:8;42481:2;42473:6;42469:15;42462:33;42277:225;:::o;42508:178::-;42648:30;42644:1;42636:6;42632:14;42625:54;42508:178;:::o;42692:164::-;42832:16;42828:1;42820:6;42816:14;42809:40;42692:164;:::o;42862:223::-;43002:34;42998:1;42990:6;42986:14;42979:58;43071:6;43066:2;43058:6;43054:15;43047:31;42862:223;:::o;43091:175::-;43231:27;43227:1;43219:6;43215:14;43208:51;43091:175;:::o;43272:231::-;43412:34;43408:1;43400:6;43396:14;43389:58;43481:14;43476:2;43468:6;43464:15;43457:39;43272:231;:::o;43509:243::-;43649:34;43645:1;43637:6;43633:14;43626:58;43718:26;43713:2;43705:6;43701:15;43694:51;43509:243;:::o;43758:176::-;43898:28;43894:1;43886:6;43882:14;43875:52;43758:176;:::o;43940:229::-;44080:34;44076:1;44068:6;44064:14;44057:58;44149:12;44144:2;44136:6;44132:15;44125:37;43940:229;:::o;44175:228::-;44315:34;44311:1;44303:6;44299:14;44292:58;44384:11;44379:2;44371:6;44367:15;44360:36;44175:228;:::o;44409:175::-;44549:27;44545:1;44537:6;44533:14;44526:51;44409:175;:::o;44590:182::-;44730:34;44726:1;44718:6;44714:14;44707:58;44590:182;:::o;44778:231::-;44918:34;44914:1;44906:6;44902:14;44895:58;44987:14;44982:2;44974:6;44970:15;44963:39;44778:231;:::o;45015:182::-;45155:34;45151:1;45143:6;45139:14;45132:58;45015:182;:::o;45203:228::-;45343:34;45339:1;45331:6;45327:14;45320:58;45412:11;45407:2;45399:6;45395:15;45388:36;45203:228;:::o;45437:234::-;45577:34;45573:1;45565:6;45561:14;45554:58;45646:17;45641:2;45633:6;45629:15;45622:42;45437:234;:::o;45677:168::-;45817:20;45813:1;45805:6;45801:14;45794:44;45677:168;:::o;45851:220::-;45991:34;45987:1;45979:6;45975:14;45968:58;46060:3;46055:2;46047:6;46043:15;46036:28;45851:220;:::o;46077:236::-;46217:34;46213:1;46205:6;46201:14;46194:58;46286:19;46281:2;46273:6;46269:15;46262:44;46077:236;:::o;46319:231::-;46459:34;46455:1;46447:6;46443:14;46436:58;46528:14;46523:2;46515:6;46511:15;46504:39;46319:231;:::o;46556:171::-;46696:23;46692:1;46684:6;46680:14;46673:47;46556:171;:::o;46733:177::-;46873:29;46869:1;46861:6;46857:14;46850:53;46733:177;:::o;46916:170::-;47056:22;47052:1;47044:6;47040:14;47033:46;46916:170;:::o;47092:167::-;47232:19;47228:1;47220:6;47216:14;47209:43;47092:167;:::o;47265:122::-;47338:24;47356:5;47338:24;:::i;:::-;47331:5;47328:35;47318:63;;47377:1;47374;47367:12;47318:63;47265:122;:::o;47393:116::-;47463:21;47478:5;47463:21;:::i;:::-;47456:5;47453:32;47443:60;;47499:1;47496;47489:12;47443:60;47393:116;:::o;47515:120::-;47587:23;47604:5;47587:23;:::i;:::-;47580:5;47577:34;47567:62;;47625:1;47622;47615:12;47567:62;47515:120;:::o;47641:122::-;47714:24;47732:5;47714:24;:::i;:::-;47707:5;47704:35;47694:63;;47753:1;47750;47743:12;47694:63;47641:122;:::o

Swarm Source

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